-
Notifications
You must be signed in to change notification settings - Fork 8
/
.sbproj
561 lines (561 loc) · 16.8 KB
/
.sbproj
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
{
"Title": "Grubs",
"Type": "game",
"Org": "apetavern",
"Ident": "grubs",
"Schema": 1,
"IncludeSourceFiles": false,
"Resources": "*.vmdl_c.png\n*.vmdl.png\n*.sdflayer\nfonts/*\ntextures/*\nmaterials/reticle/*",
"PackageReferences": [],
"EditorReferences": null,
"IsWhitelistDisabled": false,
"Metadata": {
"MapList": [
"apetavern.gr_beach"
],
"MaxPlayers": 16,
"MinPlayers": 0,
"GameNetworkType": "Multiplayer",
"MapSelect": "Hidden",
"RankType": "None",
"PerMapRanking": false,
"LeaderboardType": "None",
"GameCategory": "None",
"Compiler": {
"RootNamespace": "Grubs",
"DefineConstants": "SANDBOX;ADDON;DEBUG",
"NoWarn": "1701;1702;1591;1998",
"WarningsAsErrors": "",
"Whitelist": true,
"AssemblyReferences": [],
"IgnoreFolders": [
"editor",
"unittest"
],
"DistinctAssemblyReferences": []
},
"GameSettings": {
"grubs_game": {
"DisplayType": "Choice",
"Choices": [
{
"Value": "ffa",
"Name": "Free For All"
},
{
"Value": "tdm",
"Name": "Team Deathmatch"
}
],
"ConVarName": "grubs_game",
"DisplayName": "Gamemode",
"DefaultValue": "ffa",
"Description": ""
},
"minimum_players": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "minimum_players",
"DisplayName": "Minimum Players",
"DefaultValue": "0",
"Description": "The minimum amount of players you need to play the game.",
"Minimum": 2,
"Maximum": 99
},
"maximum_players": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "maximum_players",
"DisplayName": "Maximum Players",
"DefaultValue": "4",
"Description": "The maximum amount of players that can play the game.",
"Minimum": 2,
"Maximum": 100
},
"grub_count": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "grub_count",
"DisplayName": "Grub Count",
"DefaultValue": "4",
"Description": "The amount of Grubs each team will have.",
"Minimum": 1,
"Maximum": 100
},
"turn_duration": {
"DisplayType": "Float",
"Choices": [],
"ConVarName": "turn_duration",
"DisplayName": "Turn Duration",
"DefaultValue": "60",
"Description": "The max time in seconds that a turn will last.",
"Minimum": 1,
"Maximum": 60
},
"wind_enabled": {
"DisplayType": "Boolean",
"Choices": [],
"ConVarName": "wind_enabled",
"DisplayName": "Wind Enabled",
"DefaultValue": "true",
"Description": "Whether or not the wind system is enabled."
},
"wind_force": {
"DisplayType": "Float",
"Choices": [],
"ConVarName": "wind_force",
"DisplayName": "Wind Force",
"DefaultValue": "0.1",
"Description": "The amount of force a single step of wind will have.",
"Minimum": 0.1,
"Maximum": 1
},
"crate_weapon_chance": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "crate_weapon_chance",
"DisplayName": "Weapon Crate Chance",
"DefaultValue": "10",
"Description": "The percent chance that a weapon crate will spawn at the end of every turn.",
"Maximum": 100
},
"crate_health_chance": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "crate_health_chance",
"DisplayName": "Health Crate Chance",
"DefaultValue": "5",
"Description": "The percent chance that a health crate will spawn at the end of every turn.",
"Maximum": 100
},
"movement_grace": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "movement_grace",
"DisplayName": "Movement Grace Period",
"DefaultValue": "5",
"Description": "The amount of seconds a Grub will get to move after using their weapon.",
"Maximum": 60
},
"terrain_file": {
"Choices": [],
"ConVarName": "terrain_file",
"DisplayName": "Terrain File",
"DefaultValue": "",
"Description": "The path to a custom Grubs map to use instead of random generation. This file is only needed on the server host."
},
"terrain_type": {
"DisplayType": "Choice",
"Choices": [
{
"Value": "None",
"Name": "None"
},
{
"Value": "Dirt",
"Name": "Dirt"
},
{
"Value": "Sand",
"Name": "Sand"
},
{
"Value": "Lava",
"Name": "Lava"
}
],
"ConVarName": "terrain_type",
"DisplayName": "Terrain Type",
"DefaultValue": "Sand",
"Description": "The type of material to be applied to the terrain."
},
"terrain_border": {
"DisplayType": "Boolean",
"Choices": [],
"ConVarName": "terrain_border",
"DisplayName": "Terrain Border",
"DefaultValue": "false",
"Description": "Whether the terrain should have a border or not."
},
"terrain_altered": {
"DisplayType": "Boolean",
"Choices": [],
"ConVarName": "terrain_altered",
"DisplayName": "Use Altered Terrain",
"DefaultValue": "true",
"Description": "Altered terrain is curated to look more like little islands with a height threshold so the terrain does not fill up the entire grid. We recommend using it."
},
"terrain_dilation": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "terrain_dilation",
"DisplayName": "Terrain Dilation Amount",
"DefaultValue": "1",
"Description": "The amount the terrain is dilated. The blobs in the terrain are extruded a certain number of times. Only applicable when Altered Terrain is enabled.",
"Maximum": 10
},
"terrain_resolution": {
"DisplayType": "Float",
"Choices": [],
"ConVarName": "terrain_resolution",
"DisplayName": "Terrain Resolution",
"DefaultValue": "0.5",
"Description": "The resolution of the noise for the terrain. Lower means less blobs, and higher means more blobs.",
"Maximum": 1
},
"terrain_scale": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "terrain_scale",
"DisplayName": "Terrain Scale",
"DefaultValue": "15",
"Description": "Represents the size of a single point of terrain. A higher scale means the terrain is larger in the world.",
"Minimum": 5,
"Maximum": 50
},
"terrain_width": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "terrain_width",
"DisplayName": "Terrain Width",
"DefaultValue": "320",
"Description": "The width of the terrain grid. The higher this is, the slower performance will be during terrain updates.",
"Minimum": 50,
"Maximum": 500
},
"terrain_height": {
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "terrain_height",
"DisplayName": "Terrain Height",
"DefaultValue": "180",
"Description": "The height of the terrain grid. The higher this is, the slower performance will be during terrain updates.",
"Minimum": 50,
"Maximum": 500
}
},
"ControlModes": {
"Keyboard": true,
"Gamepad": true
},
"ParentPackage": "",
"PackageSettings": [
{
"DisplayType": "Choice",
"Choices": [
{
"Value": "FreeForAll",
"Name": "Free For All"
}
],
"ConVarName": "grubs_game",
"DisplayName": "Gamemode",
"DefaultValue": "FreeForAll",
"Description": "",
"Group": "Game"
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "minimum_players",
"DisplayName": "Minimum Players",
"DefaultValue": "2",
"Description": "The minimum amount of players you need to play the game.",
"Group": "Game",
"Minimum": 2,
"Maximum": 99
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "maximum_players",
"DisplayName": "Maximum Players",
"DefaultValue": "8",
"Description": "The maximum amount of players that can play the game.",
"Group": "Game",
"Minimum": 2,
"Maximum": 8
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "grub_count",
"DisplayName": "Grub Count",
"DefaultValue": "2.3223982",
"Description": "The amount of Grubs each team will have.",
"Group": "Game",
"Minimum": 1,
"Maximum": 8
},
{
"DisplayType": "Float",
"Choices": [],
"ConVarName": "turn_duration",
"DisplayName": "Turn Duration",
"DefaultValue": "45",
"Description": "The max time in seconds that a turn will last.",
"Group": "Game",
"Minimum": 1,
"Maximum": 180
},
{
"DisplayType": "Boolean",
"Choices": [],
"ConVarName": "wind_enabled",
"DisplayName": "Wind Enabled",
"DefaultValue": "true",
"Description": "Whether or not the wind system is enabled.",
"Group": "Game"
},
{
"DisplayType": "Float",
"Choices": [],
"ConVarName": "wind_force",
"DisplayName": "Wind Force",
"DefaultValue": "0.1",
"Description": "The amount of force a single step of wind will have.",
"Group": "Game",
"Minimum": 0.1,
"Maximum": 1
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "crate_weapon_chance",
"DisplayName": "Weapon Crate Chance",
"DefaultValue": "10",
"Description": "The percent chance that a weapon crate will spawn at the end of every turn.",
"Group": "Crates",
"Maximum": 100
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "crate_health_chance",
"DisplayName": "Health Crate Chance",
"DefaultValue": "5",
"Description": "The percent chance that a health crate will spawn at the end of every turn.",
"Group": "Crates",
"Maximum": 100
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "movement_grace",
"DisplayName": "Movement Grace Period",
"DefaultValue": "4",
"Description": "The amount of seconds a Grub will get to move after using their weapon.",
"Group": "Game",
"Maximum": 60
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "terrain_length",
"DisplayName": "Terrain Length",
"DefaultValue": "2048",
"Description": "The length of the terrain.",
"Group": "Terrain",
"Minimum": 512,
"Maximum": 4096
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "terrain_height",
"DisplayName": "Terrain Height",
"DefaultValue": "1024",
"Description": "The height of the terrain.",
"Group": "Terrain",
"Minimum": 256,
"Maximum": 2048
},
{
"DisplayType": "Float",
"Choices": [],
"ConVarName": "terrain_noise_zoom",
"DisplayName": "Terrain Zoom",
"DefaultValue": "2",
"Description": "The amount of zoom applied to the Perlin noise.",
"Group": "Terrain",
"Minimum": 1,
"Maximum": 5,
"Step": 1
},
{
"DisplayType": "Choice",
"Choices": [
{
"Value": "0",
"Name": "Generated"
},
{
"Value": "1",
"Name": "Texture"
}
],
"ConVarName": "terrain_type",
"DisplayName": "Terrain Type",
"DefaultValue": "0",
"Description": "The type of terrain to be used, currently between random generated noise and texture (experimental).",
"Group": "Terrain"
},
{
"DisplayType": "Choice",
"Choices": [
{
"Value": "0",
"Name": "Grubs"
},
{
"Value": "1",
"Name": "Islands"
},
{
"Value": "2",
"Name": "AntFarm"
},
{
"Value": "3",
"Name": "Cavern"
},
{
"Value": "4",
"Name": "Bunkers"
},
{
"Value": "5",
"Name": "AICavern"
},
{
"Value": "6",
"Name": "Hightower"
}
],
"ConVarName": "terrain_texture",
"DisplayName": "Terrain Texture",
"DefaultValue": "0",
"Description": "The prefabricated texture to use for the terrain.",
"Group": "Terrain"
},
{
"DisplayType": "Choice",
"Choices": [
{
"Value": "0",
"Name": "Sand"
},
{
"Value": "1",
"Name": "Dirt"
},
{
"Value": "2",
"Name": "Cereal"
}
],
"ConVarName": "terrain_environment_type",
"DisplayName": "Terrain Environment Type",
"DefaultValue": "0",
"Description": "The type of environment to be used for the terrain.",
"Group": "Terrain"
},
{
"DisplayType": "Float",
"Choices": [],
"ConVarName": "terrain_amplitude",
"DisplayName": "Terrain Amplitude",
"DefaultValue": "48",
"Description": "The strength of the curves in the terrain\u0027s heightmap.",
"Group": "Terrain",
"Minimum": 16,
"Maximum": 128,
"Step": 1
},
{
"DisplayType": "Float",
"Choices": [],
"ConVarName": "terrain_frequency",
"DisplayName": "Terrain Frequency",
"DefaultValue": "0.5",
"Description": "The frequency of the curves in the terrain\u0027s heightmap.",
"Group": "Terrain",
"Minimum": 0.1,
"Maximum": 10,
"Step": 0.1
},
{
"DisplayType": "Boolean",
"Choices": [],
"ConVarName": "gr_spawn_late_joiners",
"DisplayName": "Spawn Late Joiners",
"DefaultValue": "false",
"Description": "Spawns a single worm at a random location for players who join late instead of them being a spectator.",
"Group": "Game"
},
{
"DisplayType": "Integer",
"Choices": [],
"ConVarName": "gr_sd_delay",
"DisplayName": "Sudden Death Delay",
"DefaultValue": "6",
"Description": "The amount of rounds to be played before Sudden Death begins.",
"Group": "Sudden Death",
"Minimum": 1,
"Maximum": 40
},
{
"DisplayType": "Choice",
"Choices": [
{
"Value": "15",
"Name": "Low"
},
{
"Value": "30",
"Name": "Medium"
},
{
"Value": "50",
"Name": "High"
}
],
"ConVarName": "gr_sd_aggression",
"DisplayName": "Sudden Death Aggression",
"DefaultValue": "30",
"Description": "How harshly Sudden Death affects the terrain.",
"Group": "Sudden Death"
},
{
"DisplayType": "Boolean",
"Choices": [],
"ConVarName": "gr_sd_onehealth",
"DisplayName": "One Health",
"DefaultValue": "false",
"Description": "Should all Grubs have their health set to 1 when Sudden Death begins?",
"Group": "Sudden Death"
}
],
"CsProjName": "",
"Summary": "A worms-inspired artillery game for s\u0026box with randomly generated levels.",
"Description": "Grubs (in development) by Ape Tavern\n\nLeave your feedback @ discord.gg/apetavern\n\nCredits:\nGooman\nTrundler\nMatt944\nShadowBrain\nxezno\nJammie\nmatek\nWillow\nPukes\n\nSpecial thanks for Ziks for 2D SDF Terrain library!",
"Public": true,
"ReplaceTags": "",
"HttpAllowList": null,
"LaunchConfigs": [
{
"Name": "Grubs Dev",
"GameIdent": "apetavern.grubs#local",
"MapName": "apetavern.gr_beach",
"MaxPlayers": 8,
"GameSettings": {},
"Addons": "",
"PreLaunchCommand": "",
"PostLaunchCommand": ""
}
],
"TickRate": 120,
"StartupScene": "scenes/main_menu.scene",
"LaunchMode": "Normal"
}
}