-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrary.lua
More file actions
104 lines (104 loc) · 1.9 KB
/
Library.lua
File metadata and controls
104 lines (104 loc) · 1.9 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
PlaceObj("BuildingTemplate", {
"name",
"Library",
"file_name",
"Library"
}, {
PlaceObj("BuildingProperties", {
"Model",
"Library",
"Name",
T({6128, "Library"}),
"NamePlural",
T({11578, "Libraries"}),
"Description",
T({
6129,
"Libraries are infinite source of books which can be taken by everyone and returned by no one. In hard times the libraries help the creation of picturesque book BBQs which warm the rejoicing crowds."
}),
"MenuText",
T({
6130,
"Generates Research Points."
}),
"BaseBudgetMin",
40,
"BaseBudgetMax",
160,
"asphalt_road",
true,
"TerrainName",
"square1"
}),
PlaceObj("Construction", {
"Category",
"researcheducation",
"ConstructionCost",
5000,
"ConstructionPoints",
380,
"ScaffoldingBoxType",
"wood"
}),
PlaceObj("Funding", {
"Type",
"ResearchPoints",
"BaseAmount",
50
}),
PlaceObj("Liberty", {
"BaseAmount",
20,
"Radius",
10000
}),
PlaceObj("Workplace", {
"BaseMaxWorkers",
3,
"BaseInherentEducationRequired",
4,
"BaseInherentJobQuality",
50,
"Manageable",
true,
"WorkerProfession",
"Scientist"
}),
PlaceObj("Upgrade", {
"Id",
"Academic Department",
"Name",
T({
6131,
"Academic Department"
}),
"Rollover",
T({
6132,
"The Library generates 25% more Research Points."
}),
"StartTurnedOn",
false,
"Cost",
2000,
"StartingEra",
2
}),
PlaceObj("ApplyModifier", {
"EnabledBy",
"Academic Department",
"Category",
"Funding",
"PropName",
"Amount",
"Description",
T({
6133,
"Academic Department Upgrade"
}),
"Percent",
true,
"Value",
25
})
})