forked from abma/Balanced-Annihilation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodoptions.lua
389 lines (384 loc) · 12.4 KB
/
modoptions.lua
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
--see engineoptions.lua for explanantion
local options={
{
key = "StartingResources",
name = "Starting Resources",
desc = "Sets storage and amount of resources that players will start with",
type = "section",
},
{
key="ba_modes",
name="Balanced Annihilation - Game Modes",
desc="Balanced Annihilation - Game Modes",
type="section",
},
{
key="ba_options",
name="Balanced Annihilation - Options",
desc="Balanced Annihilation - Options",
type="section",
},
{
key="deathmode",
name="Game End Mode",
desc="What it takes to eliminate a team",
type="list",
def="com",
section="ba_modes",
items={
{key="neverend", name="None", desc="Teams are never eliminated"},
{key="com", name="Kill all enemy Commanders", desc="When a team has no Commanders left, it loses"},
{key="killall", name="Kill everything", desc="Every last unit must be eliminated, no exceptions!"},
}
},
{
key = 'mo_armageddontime',
name = 'Armageddon time (minutes)',
desc = 'At armageddon every immobile unit is destroyed and you fight to the death with what\'s left! (0=off)',
type = 'number',
section= 'ba_modes',
def = 0,
min = 0,
max = 120,
step = 1,
},
{
key = "mo_ffa",
name = "FFA Mode",
desc = "Units with no player control are removed/destroyed \nUse FFA spawning mode",
type = "bool",
def = false,
section= "ba_modes",
},
{
key = 'mo_coop',
name = 'Cooperative mode',
desc = 'Adds extra commanders to id-sharing teams, 1 com per player',
type = 'bool',
def = false,
section= 'ba_modes',
},
{
key = 'mo_seaplatforms',
name = 'Sea Platforms',
desc = 'Enables or disables the sea platform in Consul/Freaker and Naval Engineers/Seaplanes buildlists',
type = 'list',
def = 'enabled',
section= 'ba_modes',
items={
{key="disabled", name="Disabled", desc=""},
{key="enabled", name="Enabled", desc="Enables the sea platform in Consul/Freaker and Naval Engineers/Seaplanes buildlists"},
}
},
{
key = "shareddynamicalliancevictory",
name = "Dynamic Ally Victory",
desc = "Ingame alliance should count for game over condition.",
type = "bool",
section= 'ba_modes',
def = false,
},
{
key = "mo_preventcombomb",
name = "1v1 Mode (Prevent Combombs)",
desc = "Commanders survive DGuns and other commanders explosions",
type = "bool",
def = false,
section= "ba_modes",
},
{
key="mo_transportenemy",
name="Enemy Transporting",
desc="Toggle which enemy units you can kidnap with an air transport",
type="list",
def="notcoms",
section="ba_options",
items={
{key="notcoms", name="All But Commanders", desc="Only commanders are immune to napping"},
{key="none", name="Disallow All", desc="No enemy units can be napped"},
}
},
{
key = "mo_enemycomcount",
name = "Enemy Com Counter",
desc = "Tells each team the total number of commanders alive in enemy teams",
type = "bool",
def = true,
section= "ba_others",
},
{
key = 'FixedAllies',
name = 'Fixed ingame alliances',
desc = 'Disables the possibility of players to dynamically change alliances ingame',
type = 'bool',
def = true,
section= "ba_others",
},
{
key = "mo_no_close_spawns",
name = "No close spawns",
desc = "Prevents players startpoints being placed close together (on large enough maps)",
type = "bool",
def = true,
section= "ba_options",
},
{
key = "mo_heatmap",
name = "HeatMap",
desc = "Attemps to prevents unit paths to cross",
type = "bool",
def = true,
section= "ba_options",
},
{
key = "mo_newbie_placer",
name = "Newbie Placer",
desc = "Chooses a startpoint and a random faction for all rank 1 accounts (online only)",
type = "bool",
def = false,
section= "ba_options",
},
{
key = "critters",
name = 'Enable cute animals?',
desc = "On some maps critters will they wiggle and wubble around\nkey: critters",
type = "bool",
def = true,
section= "ba_others",
},
{
key = 'critters_multiplier',
name = 'How many cute amimals?)',
desc = 'This multiplier will be applied on the amount of critters a map will end up with',
type = 'number',
section= 'ba_others',
def = 1,
min = 0.2,
max = 2,
step = 0.2,
},
{
key="ba_enhancements_misc",
name="Balanced Annihilation - Gameplay Enhancements: Miscellaneous",
desc="Balanced Annihilation - Gameplay Enhancements: Miscellaneous",
type="section",
},
--{
--key = "logicalbuildtime",
--name = "Logical and meaningful buildtimes",
--desc = "Changes the default meaningless buildtimes to be in seconds, so that when a unit's buildtime is shown, that buildtime is representative of seconds taken to build that unit.",
--type="list",
--def="disabled",
--section= "ba_enhancements_misc",
--items={
-- {key="disabled", name="Disabled", desc=""},
-- {key="enabled", name="Enabled", desc="Changes the default meaningless buildtimes to be in seconds, so that when a unit's buildtime is shown, that buildtime is representative of seconds taken to build that unit."},
--}
--},
{
key = "firethroughfriendly",
name = "Fire Through Friendly Units",
desc = "Causes weapons not to collide with nor avoid friendly units resulting in very TA style gameplay. Also fixes unit hitspheres. *Note* Balanced Annihilation is one of very few games that cause friendly units to block fire.",
type="list",
def="disabled",
section= "ba_enhancements_misc",
items={
{key="disabled", name="Disabled", desc=""},
{key="enabled", name="Enabled", desc="Causes weapons not to collide with nor avoid friendly units, resulting in very TA style gameplay and promotes unit/group micro."},
}
},
{
key = "smallfeaturenoblock",
name = "Set small features to non-blocking status",
desc = "Small rocks/trees/unit wrecks will no longer block unit pathing",
type="list",
def="enabled",
section= "ba_enhancements_misc",
items={
{key="disabled", name="Disabled", desc=""},
{key="enabled", name="Enabled", desc="Small 2x2 rocks/trees/unit wrecks will no longer block unit pathing"},
}
},
-- Control Victory Options
{
key = 'controlvictoryoptions',
name = 'Control Victory Options',
desc = 'Allows you to control at a granular level the individual options for Control Point Victory',
type = 'section',
},
{
key="scoremode",
name="Scoring Mode (Control Victory Points)",
desc="Defines how the game is played",
type="list",
def="disabled",
section="controlvictoryoptions",
items={
{key="disabled", name="Disabled", desc="Disable Control Points as a victory condition."},
{key="countdown", name="Countdown", desc="A Control Point decreases all opponents' scores, zero means defeat."},
{key="tugofwar", name="Tug of War", desc="A Control Point steals enemy score, zero means defeat."},
{key="domination", name="Domination", desc="Holding all Control Points will grant 1000 score, first to reach the score limit wins."},
}
},
{
key = 'limitscore',
name = 'Total Score',
desc = 'Total score amount available.',
type = 'number',
section= 'controlvictoryoptions',
def = 3500,
min = 500,
max = 5000,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = "numberofcontrolpoints",
name = "Set number of Control Points on the map",
desc = "Sets the number of control points on the map and scales the total score amount to match. Has no effect if Preset map configs are enabled.",
section= "controlvictoryoptions",
type="list",
def="7",
section= "controlvictoryoptions",
items={
{key="7", name="7", desc=""},
{key="13", name="13", desc=""},
{key="19", name="19", desc=""},
{key="25", name="25", desc=""},
}
},
{
key = "usemapconfig",
name = "Use preset map-specific Control Point locations?",
desc = "Should the control point config for this map be used instead of autogenerated control points?",
type="list",
def="disabled",
section= "controlvictoryoptions",
items={
{key="disabled", name="Disabled", desc="This will tell the game to use autogenerated control points."},
{key="enabled", name="Enabled", desc="This will tell the game to use preset map control points (Set via map config)."},
}
},
{
key = 'captureradius',
name = 'Capture Radius',
desc = 'Radius around a point in which to capture it.',
type = 'number',
section= 'controlvictoryoptions',
def = 500,
min = 100,
max = 1000,
step = 25, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'capturetime',
name = 'Capture Time',
desc = 'Time to capture a point.',
type = 'number',
section= 'controlvictoryoptions',
def = 30,
min = 1,
max = 60,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'capturebonus',
name = 'Capture Bonus',
desc = 'Percentage of how much faster capture takes place by adding more units.',
type = 'number',
section= 'controlvictoryoptions',
def = 5,
min = 1,
max = 100,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'decapspeed',
name = 'De-Cap Speed',
desc = 'Speed multiplier for neutralizing an enemy point.',
type = 'number',
section= 'controlvictoryoptions',
def = 2,
min = 1,
max = 3,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'starttime',
name = 'Start Time',
desc = 'The time when capturing can start.',
type = 'number',
section= 'controlvictoryoptions',
def = 0,
min = 0,
max = 300,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'metalperpoint',
name = 'Metal given to each player per captured point',
desc = 'Each player on an allyteam that has captured a point will receive this amount of resources per point captured per second',
type = 'number',
section= 'controlvictoryoptions',
def = 0,
min = 0,
max = 20,
step = 0.1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'energyperpoint',
name = 'Energy given to each player per captured point',
desc = 'Each player on an allyteam that has captured a point will receive this amount of resources per point captured per second',
type = 'number',
section= 'controlvictoryoptions',
def = 0,
min = 0,
max = 20,
step = 0.1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'dominationscoretime',
name = 'Domination Score Time',
desc = 'Time needed holding all points to score in multi domination.',
type = 'number',
section= 'controlvictoryoptions',
def = 30,
min = 1,
max = 60,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'tugofwarmodifier',
name = 'Tug of War Modifier',
desc = 'The amount of score transfered between opponents when points are captured is multiplied by this amount.',
type = 'number',
section= 'controlvictoryoptions',
def = 2,
min = 0,
max = 6,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
{
key = 'dominationscore',
name = 'Score awarded for Domination',
desc = 'The amount of score awarded when you have scored a domination.',
type = 'number',
section= 'controlvictoryoptions',
def = 1000,
min = 500,
max = 1000,
step = 1, -- quantization is aligned to the def value
-- (step <= 0) means that there is no quantization
},
-- End Control Victory Options
}
return options