-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcosts.cfg
108 lines (101 loc) · 1.76 KB
/
costs.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//general cost adjustments
//Nom-O-Matic 25000 same cost as 25000-I
//not more cost effective than Nom-o-Matic 5000
@PART[USILS_Greenhouse_Cupola]:AFTER[UmbraSpaceIndustries]
{
@cost = 3000
@entryCost = 5000
}
//greenhouse tech cost too linPower
@PART[USILS_Greenhouse_MiniCupola]
{
@entryCost = 3000
}
@PART[USILS_Greenhouse_Inline]
{
@entryCost = 8000
}
//RT-500 too cheap
@PART[USILS_Recycler]:AFTER[UmbraSpaceIndustries]
{
@cost = 500
}
//RT-5000 too low tech cost
@PART[USILS_LgRecycler]
{
@entryCost = 10000
}
//fertlizer to supplies turns a profit
@RESOURCE_DEFINITION[Supplies]
{
@unitCost = 0.1
}
@RESOURCE_DEFINITION[Fertilizer]
{
@unitCost = 1.2
}
//tanks for life support/fertiliser are free when empty
//changes to cost also need adjusting
@PART[LifeSupportMiniPack]:AFTER[UmbraSpaceIndustries]
{
@cost = 110
}
@PART[FertilizerMiniPack]:AFTER[UmbraSpaceIndustries]
{
@cost = 220
}
@PART[LS_Tank_125]:AFTER[UmbraSpaceIndustries]
{
@cost = 450
}
@PART[Fert_Tank_125]:AFTER[UmbraSpaceIndustries]
{
@cost = 1000
}
@PART[LS_Tank_250]:AFTER[UmbraSpaceIndustries]
{
@cost = 3450
@entryCost = 5000
}
@PART[Fert_Tank_250]:AFTER[UmbraSpaceIndustries]
{
@cost = 8400
@entryCost = 5000
}
@PART[LS_Tank_375]:AFTER[UmbraSpaceIndustries]
{
@cost = 10500
@entryCost = 8000
}
@PART[Fert_Tank_375]:AFTER[UmbraSpaceIndustries]
{
@cost = 27000
@entryCost = 8000
}
//rapier engine unlock cost is too cheap
@PART[RAPIER]
{
@entryCost = 200000
}
//battery costs are inconsistent
//making the cost per unit of charge slowly decrease with increased capacity
@PART[batteryPack]
{
@cost = 120
}
@PART[batteryBankMini]
{
@cost = 220
}
@PART[ksp_r_largeBatteryPack]
{
@cost = 400
}
@PART[batteryBank]
{
@cost = 950
}
@PART[batteryBankLarge]
{
@cost = 3600
}