-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScienceLab.lua
More file actions
182 lines (182 loc) · 3.24 KB
/
ScienceLab.lua
File metadata and controls
182 lines (182 loc) · 3.24 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
PlaceObj("BuildingTemplate", {
"name",
"ScienceLab",
"file_name",
"ScienceLab"
}, {
PlaceObj("BuildingProperties", {
"Model",
"ScienceLab",
"Name",
T({
6470,
"Science Lab"
}),
"NamePlural",
T({
11690,
"Science Labs"
}),
"Description",
T({
6471,
"An indoor playground full of rats, cheese, guinea pigs, cool looking liquids and bored smart people trying to devise new ways to play with them."
}),
"MenuText",
T({
6472,
"Generates Research Points. Improves effectiveness of other science buildings nearby."
}),
"BaseBudgetMin",
200,
"BaseBudgetMax",
420,
"BasePowerCons",
110,
"asphalt_road",
true,
"TerrainName",
"square1"
}),
PlaceObj("ApplyModifier", {
"Affected",
"Research Buildings",
"Radius",
20000,
"PropName",
"InherentEffectiveness",
"Description",
T({
6473,
"Science Lab"
}),
"Value",
20
}),
PlaceObj("Construction", {
"Category",
"researcheducation",
"Position",
8,
"ConstructionCost",
22000,
"ConstructionPoints",
820,
"Era",
4
}),
PlaceObj("Funding", {
"Type",
"ResearchPoints",
"BaseAmount",
140
}),
PlaceObj("Liberty", {
"BaseAmount",
20,
"Radius",
10000
}),
PlaceObj("StandingComponent", {
"Type",
"religious",
"Amount",
-10
}),
PlaceObj("StandingComponent", {
"Type",
"environmentalists",
"Amount",
-5
}),
PlaceObj("Workplace", {
"BaseMaxWorkers",
6,
"BaseInherentEducationRequired",
4,
"BaseInherentJobQuality",
60,
"Manageable",
true,
"WorkerProfession",
"Scientist"
}),
PlaceObj("Upgrade", {
"Id",
"Extreme Testing",
"Name",
T({
6474,
"Extreme Testing"
}),
"Rollover",
T({
6475,
"Effectiveness is increased by 20 (max 60) for each nearby Electronics Factory."
}),
"StartTurnedOn",
false,
"Cost",
4500,
"StartingEra",
4
}),
PlaceObj("ApplyModifier", {
"EnabledBy",
"Extreme Testing",
"PropName",
"InherentEffectiveness",
"Description",
T({
6476,
"Extreme Testing Upgrade"
}),
"Value",
20,
"ScaleFactor",
"building_count",
"ScaleLabel",
"ElectronicsFactory",
"ScaleLabelRadius",
15000,
"Cap",
60
}),
PlaceObj("Upgrade", {
"Id",
"Small Softon Collider",
"Name",
T({
6477,
"Small Hadron Collider"
}),
"Rollover",
T({
6478,
"Effectiveness is increased by 50, but the Science Lab begins to consume an extra 500 MW of electricity."
}),
"StartTurnedOn",
false,
"Cost",
3600,
"BasePowerConsumed",
500,
"StartingEra",
4
}),
PlaceObj("ApplyModifier", {
"EnabledBy",
"Small Softon Collider",
"PropName",
"InherentEffectiveness",
"Description",
T({
6479,
"Small Hadron Collider Upgrade"
}),
"Percent",
true,
"Value",
50
})
})