rust-map-parser 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. rust_map_parser-0.1.0.dist-info/METADATA +538 -0
  2. rust_map_parser-0.1.0.dist-info/RECORD +110 -0
  3. rust_map_parser-0.1.0.dist-info/WHEEL +5 -0
  4. rust_map_parser-0.1.0.dist-info/licenses/LICENSE +21 -0
  5. rust_map_parser-0.1.0.dist-info/top_level.txt +1 -0
  6. rustmap/__init__.py +44 -0
  7. rustmap/config.py +236 -0
  8. rustmap/data/__init__.py +1 -0
  9. rustmap/data/monument_metadata.json +954 -0
  10. rustmap/data/no_build_zones.json +9543 -0
  11. rustmap/data/prefab_manifest.json +242637 -0
  12. rustmap/data/spawn_rules.json +3308 -0
  13. rustmap/data/tunnel_tiles/__init__.py +1 -0
  14. rustmap/data/tunnel_tiles/template_000__curve-nw-0.png +0 -0
  15. rustmap/data/tunnel_tiles/template_001__curve-nw-1.png +0 -0
  16. rustmap/data/tunnel_tiles/template_002__intersection-bb1-n.png +0 -0
  17. rustmap/data/tunnel_tiles/template_003__intersection-bb4-n.png +0 -0
  18. rustmap/data/tunnel_tiles/template_004__intersection-b5-n.png +0 -0
  19. rustmap/data/tunnel_tiles/template_005__intersection-b3-n.png +0 -0
  20. rustmap/data/tunnel_tiles/template_006__intersection-b2-n.png +0 -0
  21. rustmap/data/tunnel_tiles/template_007__intersection-bb2-n.png +0 -0
  22. rustmap/data/tunnel_tiles/template_008__intersection-b6-n.png +0 -0
  23. rustmap/data/tunnel_tiles/template_009__intersection-bb3-n.png +0 -0
  24. rustmap/data/tunnel_tiles/template_010__intersection-b4-n.png +0 -0
  25. rustmap/data/tunnel_tiles/template_011__intersection-bb6-n.png +0 -0
  26. rustmap/data/tunnel_tiles/template_012__intersection-n.png +0 -0
  27. rustmap/data/tunnel_tiles/template_013__intersection-b1-n.png +0 -0
  28. rustmap/data/tunnel_tiles/template_014__intersection-bb5-n.png +0 -0
  29. rustmap/data/tunnel_tiles/template_015__station-sn-0.png +0 -0
  30. rustmap/data/tunnel_tiles/template_016__straight-sn-3.png +0 -0
  31. rustmap/data/tunnel_tiles/template_017__straight-sn-2.png +0 -0
  32. rustmap/data/tunnel_tiles/template_018__station-sn-1.png +0 -0
  33. rustmap/data/tunnel_tiles/template_019__straight-sn-0.png +0 -0
  34. rustmap/data/tunnel_tiles/template_020__straight-sn-1.png +0 -0
  35. rustmap/data/tunnel_tiles/template_021__station-sn-3.png +0 -0
  36. rustmap/data/tunnel_tiles/template_022__straight-sn-4.png +0 -0
  37. rustmap/data/tunnel_tiles/template_023__station-sn-2.png +0 -0
  38. rustmap/data/tunnel_tiles/template_024__straight-sn-5.png +0 -0
  39. rustmap/data/tunnel_tiles/template_025__curve-ne-1.png +0 -0
  40. rustmap/data/tunnel_tiles/template_026__curve-ne-0.png +0 -0
  41. rustmap/data/tunnel_tiles/template_027__intersection.png +0 -0
  42. rustmap/data/tunnel_tiles/template_028__intersection-bb2-s.png +0 -0
  43. rustmap/data/tunnel_tiles/template_029__intersection-b2-s.png +0 -0
  44. rustmap/data/tunnel_tiles/template_030__intersection-b6-s.png +0 -0
  45. rustmap/data/tunnel_tiles/template_031__intersection-bb5-s.png +0 -0
  46. rustmap/data/tunnel_tiles/template_032__intersection-bb1-s.png +0 -0
  47. rustmap/data/tunnel_tiles/template_033__intersection-s.png +0 -0
  48. rustmap/data/tunnel_tiles/template_034__intersection-b1-s.png +0 -0
  49. rustmap/data/tunnel_tiles/template_035__intersection-bb6-s.png +0 -0
  50. rustmap/data/tunnel_tiles/template_036__intersection-b5-s.png +0 -0
  51. rustmap/data/tunnel_tiles/template_037__intersection-bb4-s.png +0 -0
  52. rustmap/data/tunnel_tiles/template_038__intersection-b3-s.png +0 -0
  53. rustmap/data/tunnel_tiles/template_039__intersection-bb3-s.png +0 -0
  54. rustmap/data/tunnel_tiles/template_040__intersection-b4-s.png +0 -0
  55. rustmap/data/tunnel_tiles/template_041__straight-we-3.png +0 -0
  56. rustmap/data/tunnel_tiles/template_042__station-we-1.png +0 -0
  57. rustmap/data/tunnel_tiles/template_043__straight-we-5.png +0 -0
  58. rustmap/data/tunnel_tiles/template_044__straight-we-4.png +0 -0
  59. rustmap/data/tunnel_tiles/template_045__station-we-2.png +0 -0
  60. rustmap/data/tunnel_tiles/template_046__station-we-3.png +0 -0
  61. rustmap/data/tunnel_tiles/template_047__station-we-0.png +0 -0
  62. rustmap/data/tunnel_tiles/template_048__straight-we-2.png +0 -0
  63. rustmap/data/tunnel_tiles/template_049__straight-we-1.png +0 -0
  64. rustmap/data/tunnel_tiles/template_050__straight-we-0.png +0 -0
  65. rustmap/data/tunnel_tiles/template_051__curve-se-0.png +0 -0
  66. rustmap/data/tunnel_tiles/template_052__curve-se-1.png +0 -0
  67. rustmap/data/tunnel_tiles/template_053__intersection-bb3-w.png +0 -0
  68. rustmap/data/tunnel_tiles/template_054__intersection-w.png +0 -0
  69. rustmap/data/tunnel_tiles/template_055__intersection-bb5-w.png +0 -0
  70. rustmap/data/tunnel_tiles/template_056__intersection-b5-w.png +0 -0
  71. rustmap/data/tunnel_tiles/template_057__intersection-b1-w.png +0 -0
  72. rustmap/data/tunnel_tiles/template_058__intersection-bb1-w.png +0 -0
  73. rustmap/data/tunnel_tiles/template_059__intersection-bb4-w.png +0 -0
  74. rustmap/data/tunnel_tiles/template_060__intersection-b4-w.png +0 -0
  75. rustmap/data/tunnel_tiles/template_061__intersection-b6-w.png +0 -0
  76. rustmap/data/tunnel_tiles/template_062__intersection-bb2-w.png +0 -0
  77. rustmap/data/tunnel_tiles/template_063__intersection-b3-w.png +0 -0
  78. rustmap/data/tunnel_tiles/template_064__intersection-b2-w.png +0 -0
  79. rustmap/data/tunnel_tiles/template_065__intersection-bb6-w.png +0 -0
  80. rustmap/data/tunnel_tiles/template_066__curve-sw-0.png +0 -0
  81. rustmap/data/tunnel_tiles/template_067__curve-sw-1.png +0 -0
  82. rustmap/data/tunnel_tiles/template_068__intersection-bb3-e.png +0 -0
  83. rustmap/data/tunnel_tiles/template_069__intersection-bb6-e.png +0 -0
  84. rustmap/data/tunnel_tiles/template_070__intersection-b4-e.png +0 -0
  85. rustmap/data/tunnel_tiles/template_071__intersection-b6-e.png +0 -0
  86. rustmap/data/tunnel_tiles/template_072__intersection-b5-e.png +0 -0
  87. rustmap/data/tunnel_tiles/template_073__intersection-b1-e.png +0 -0
  88. rustmap/data/tunnel_tiles/template_074__intersection-b3-e.png +0 -0
  89. rustmap/data/tunnel_tiles/template_075__intersection-bb2-e.png +0 -0
  90. rustmap/data/tunnel_tiles/template_076__intersection-e.png +0 -0
  91. rustmap/data/tunnel_tiles/template_077__intersection-bb1-e.png +0 -0
  92. rustmap/data/tunnel_tiles/template_078__intersection-bb4-e.png +0 -0
  93. rustmap/data/tunnel_tiles/template_079__intersection-b2-e.png +0 -0
  94. rustmap/data/tunnel_tiles/template_080__intersection-bb5-e.png +0 -0
  95. rustmap/data/tunnel_tiles/tiles.json +997 -0
  96. rustmap/exporter.py +409 -0
  97. rustmap/layers.py +323 -0
  98. rustmap/monument_assets.py +145 -0
  99. rustmap/monuments.py +226 -0
  100. rustmap/no_build.py +288 -0
  101. rustmap/no_build_assets.py +303 -0
  102. rustmap/parser.py +297 -0
  103. rustmap/png.py +18 -0
  104. rustmap/populations.py +361 -0
  105. rustmap/prefabs.py +281 -0
  106. rustmap/renderer.py +460 -0
  107. rustmap/resources.py +26 -0
  108. rustmap/tunnel_assets.py +398 -0
  109. rustmap/tunnels.py +417 -0
  110. rustmap/validation.py +106 -0
@@ -0,0 +1,3308 @@
1
+ {
2
+ "schema_version": 1,
3
+ "sources": {
4
+ "content_bundle": {
5
+ "path": "Bundles/shared/content.bundle",
6
+ "size": 4412718160,
7
+ "mtime_ns": 1783536348287478600
8
+ },
9
+ "maps_bundle": {
10
+ "path": "Bundles/maps/maps.bundle",
11
+ "size": 114147120,
12
+ "mtime_ns": 1783116536193229800
13
+ }
14
+ },
15
+ "spawn_handler": {
16
+ "handler_count": 1,
17
+ "selected_path_id": 213,
18
+ "selected_population_count": 103,
19
+ "regular_population_count": 76,
20
+ "convar_population_count": 27
21
+ },
22
+ "rule_count": 134,
23
+ "active_rule_count": 103,
24
+ "heatmap_categories": {
25
+ "bear": [
26
+ "assets/rust.ai/agents/bear/bear.population.asset",
27
+ "assets/rust.ai/agents/bear/polarbear.population.asset"
28
+ ],
29
+ "berries": [
30
+ "assets/content/properties/spawnpopulation/jungle-plant-berry-blue.asset",
31
+ "assets/content/properties/spawnpopulation/jungle-plant-berry-green.asset",
32
+ "assets/content/properties/spawnpopulation/jungle-plant-berry-red.asset",
33
+ "assets/content/properties/spawnpopulation/jungle-plant-berry-white.asset",
34
+ "assets/content/properties/spawnpopulation/jungle-plant-berry-yellow.asset",
35
+ "assets/content/properties/spawnpopulation/plant-berry-blue.asset",
36
+ "assets/content/properties/spawnpopulation/plant-berry-green.asset",
37
+ "assets/content/properties/spawnpopulation/plant-berry-red.asset",
38
+ "assets/content/properties/spawnpopulation/plant-berry-white.asset",
39
+ "assets/content/properties/spawnpopulation/plant-berry-yellow.asset"
40
+ ],
41
+ "boar": [
42
+ "assets/rust.ai/agents/boar/boar.population.asset"
43
+ ],
44
+ "chicken": [
45
+ "assets/rust.ai/agents/chicken/chicken.population.asset"
46
+ ],
47
+ "corn": [
48
+ "assets/content/properties/spawnpopulation/plant-corn.asset"
49
+ ],
50
+ "crocodile": [
51
+ "assets/rust.ai/agents/crocodile/crocodile.population.asset"
52
+ ],
53
+ "flowers": [
54
+ "assets/content/properties/spawnpopulation/plant-orchid.asset",
55
+ "assets/content/properties/spawnpopulation/plant-rose.asset",
56
+ "assets/content/properties/spawnpopulation/plant-sunflower.asset"
57
+ ],
58
+ "hab": [
59
+ "assets/prefabs/deployable/hot air balloon/hab.population.asset"
60
+ ],
61
+ "hemp": [
62
+ "assets/content/properties/spawnpopulation/collectable-resource-hemp.asset",
63
+ "assets/content/properties/spawnpopulation/jungle-collectable-resource-hemp.asset"
64
+ ],
65
+ "horse": [
66
+ "assets/content/vehicles/horse/ridablehorse.population.asset"
67
+ ],
68
+ "junkpiles": [
69
+ "assets/content/properties/spawnpopulation/junkpiles.asset",
70
+ "assets/content/properties/spawnpopulation/junkpiles_water.asset"
71
+ ],
72
+ "logs": [
73
+ "assets/content/properties/spawnpopulation/driftwood.asset",
74
+ "assets/content/properties/spawnpopulation/logs_dry.asset",
75
+ "assets/content/properties/spawnpopulation/logs_snow.asset",
76
+ "assets/content/properties/spawnpopulation/logs_wet.asset",
77
+ "assets/content/properties/spawnpopulation/wood_log_pile.asset"
78
+ ],
79
+ "modularcar": [
80
+ "assets/content/vehicles/modularcar/modularcar.population.asset"
81
+ ],
82
+ "mushroom": [
83
+ "assets/content/properties/spawnpopulation/collectable-food-mushroom.asset"
84
+ ],
85
+ "ores": [
86
+ "assets/content/properties/spawnpopulation/ores.asset",
87
+ "assets/content/properties/spawnpopulation/ores_sand.asset",
88
+ "assets/content/properties/spawnpopulation/ores_snow.asset",
89
+ "assets/content/properties/spawnpopulation/v3_ores_jungle.asset"
90
+ ],
91
+ "pedalbike": [
92
+ "assets/content/vehicles/bikes/pedalbikes_world.population.asset"
93
+ ],
94
+ "potato": [
95
+ "assets/content/properties/spawnpopulation/plant-potato.asset"
96
+ ],
97
+ "pumpkin": [
98
+ "assets/content/properties/spawnpopulation/plant-pumpkin.asset"
99
+ ],
100
+ "rowboat": [
101
+ "assets/content/vehicles/boats/rowboat/rowboat.population.asset"
102
+ ],
103
+ "snake": [
104
+ "assets/rust.ai/agents/snake/snake.population.asset"
105
+ ],
106
+ "stag": [
107
+ "assets/rust.ai/agents/stag/stag.population.asset"
108
+ ],
109
+ "tiger": [
110
+ "assets/rust.ai/agents/tiger/tiger.population.asset"
111
+ ],
112
+ "wheat": [
113
+ "assets/content/properties/spawnpopulation/plant-wheat.asset"
114
+ ],
115
+ "wolf": [
116
+ "assets/rust.ai/agents/wolf/wolf.population.asset"
117
+ ],
118
+ "wood": [
119
+ "assets/content/properties/spawnpopulation/collectable-resource-wood.asset"
120
+ ]
121
+ },
122
+ "rules": [
123
+ {
124
+ "asset_path": "assets/content/properties/spawnpopulation/collectable-food-coconut.asset",
125
+ "name": "collectable-food-coconut",
126
+ "class_name": "DensitySpawnPopulation",
127
+ "active": false,
128
+ "resource_folder": "collectable/coconuts",
129
+ "resources": [],
130
+ "target_density": 80.0,
131
+ "scale_with_large_maps": false,
132
+ "scale_with_spawn_filter": false,
133
+ "splat_mask": -1,
134
+ "biome_mask": 32,
135
+ "topology_any": 8192,
136
+ "topology_all": 0,
137
+ "topology_not": 33376258,
138
+ "filter_cutoff": 0.0,
139
+ "filter_radius": 0.0,
140
+ "filter_out_tutorial_islands": false,
141
+ "filter_out_monuments": [],
142
+ "align_to_normal": true,
143
+ "npc_radius_check_distance": 0.0,
144
+ "population_convar": null
145
+ },
146
+ {
147
+ "asset_path": "assets/content/properties/spawnpopulation/collectable-food-mushroom.asset",
148
+ "name": "collectable-food-mushroom",
149
+ "class_name": "DensitySpawnPopulation",
150
+ "active": true,
151
+ "resource_folder": "collectable/mushrooms",
152
+ "resources": [],
153
+ "target_density": 80.0,
154
+ "scale_with_large_maps": false,
155
+ "scale_with_spawn_filter": false,
156
+ "splat_mask": 32,
157
+ "biome_mask": -10,
158
+ "topology_any": 32,
159
+ "topology_all": 0,
160
+ "topology_not": 33385094,
161
+ "filter_cutoff": 0.0,
162
+ "filter_radius": 0.0,
163
+ "filter_out_tutorial_islands": false,
164
+ "filter_out_monuments": [],
165
+ "align_to_normal": true,
166
+ "npc_radius_check_distance": 0.0,
167
+ "population_convar": null
168
+ },
169
+ {
170
+ "asset_path": "assets/content/properties/spawnpopulation/collectable-resource-hemp.asset",
171
+ "name": "collectable-resource-hemp",
172
+ "class_name": "DensitySpawnPopulation",
173
+ "active": true,
174
+ "resource_folder": "collectable/hemp",
175
+ "resources": [],
176
+ "target_density": 80.0,
177
+ "scale_with_large_maps": false,
178
+ "scale_with_spawn_filter": false,
179
+ "splat_mask": 49,
180
+ "biome_mask": 6,
181
+ "topology_any": 33,
182
+ "topology_all": 0,
183
+ "topology_not": 33385110,
184
+ "filter_cutoff": 0.0,
185
+ "filter_radius": 0.0,
186
+ "filter_out_tutorial_islands": false,
187
+ "filter_out_monuments": [],
188
+ "align_to_normal": false,
189
+ "npc_radius_check_distance": 0.0,
190
+ "population_convar": null
191
+ },
192
+ {
193
+ "asset_path": "assets/content/properties/spawnpopulation/collectable-resource-stone.asset",
194
+ "name": "collectable-resource-stone",
195
+ "class_name": "DensitySpawnPopulation",
196
+ "active": true,
197
+ "resource_folder": "",
198
+ "resources": [
199
+ "c937d9a36edab4a40a016e6833a10c99",
200
+ "fc7237aac2ea6c5449d212f3013d922e",
201
+ "0aab5e7ed8ce31b44b65be4ae79dd64d",
202
+ "e322157e427075d4eb5b573e72fcd51f"
203
+ ],
204
+ "target_density": 160.0,
205
+ "scale_with_large_maps": false,
206
+ "scale_with_spawn_filter": false,
207
+ "splat_mask": -201,
208
+ "biome_mask": -9,
209
+ "topology_any": 33,
210
+ "topology_all": 0,
211
+ "topology_not": 33385110,
212
+ "filter_cutoff": 0.0,
213
+ "filter_radius": 0.0,
214
+ "filter_out_tutorial_islands": false,
215
+ "filter_out_monuments": [],
216
+ "align_to_normal": true,
217
+ "npc_radius_check_distance": 0.0,
218
+ "population_convar": null
219
+ },
220
+ {
221
+ "asset_path": "assets/content/properties/spawnpopulation/collectable-resource-wood.asset",
222
+ "name": "collectable-resource-wood",
223
+ "class_name": "DensitySpawnPopulation",
224
+ "active": true,
225
+ "resource_folder": "",
226
+ "resources": [
227
+ "e322157e427075d4eb5b573e72fcd51f"
228
+ ],
229
+ "target_density": 40.0,
230
+ "scale_with_large_maps": false,
231
+ "scale_with_spawn_filter": false,
232
+ "splat_mask": 48,
233
+ "biome_mask": -9,
234
+ "topology_any": 4358507,
235
+ "topology_all": 0,
236
+ "topology_not": 29190804,
237
+ "filter_cutoff": 0.0,
238
+ "filter_radius": 0.0,
239
+ "filter_out_tutorial_islands": false,
240
+ "filter_out_monuments": [],
241
+ "align_to_normal": true,
242
+ "npc_radius_check_distance": 0.0,
243
+ "population_convar": null
244
+ },
245
+ {
246
+ "asset_path": "assets/content/properties/spawnpopulation/divesites.asset",
247
+ "name": "divesites",
248
+ "class_name": "DensitySpawnPopulation",
249
+ "active": true,
250
+ "resource_folder": "",
251
+ "resources": [
252
+ "e8d8b9f4297df2547a44a440ca515cd4",
253
+ "0643372b2bd842c4b8cdc6c060e42289",
254
+ "0bff9ae75d5a3374fa81f434337f667e"
255
+ ],
256
+ "target_density": 8.0,
257
+ "scale_with_large_maps": false,
258
+ "scale_with_spawn_filter": false,
259
+ "splat_mask": -1,
260
+ "biome_mask": -9,
261
+ "topology_any": 262528,
262
+ "topology_all": 0,
263
+ "topology_not": 82944,
264
+ "filter_cutoff": 0.0,
265
+ "filter_radius": 0.0,
266
+ "filter_out_tutorial_islands": false,
267
+ "filter_out_monuments": [],
268
+ "align_to_normal": false,
269
+ "npc_radius_check_distance": 0.0,
270
+ "population_convar": null
271
+ },
272
+ {
273
+ "asset_path": "assets/content/properties/spawnpopulation/driftwood.asset",
274
+ "name": "driftwood",
275
+ "class_name": "DensitySpawnPopulation",
276
+ "active": true,
277
+ "resource_folder": "resource/driftwood",
278
+ "resources": [],
279
+ "target_density": 5000.0,
280
+ "scale_with_large_maps": true,
281
+ "scale_with_spawn_filter": true,
282
+ "splat_mask": 5,
283
+ "biome_mask": -1,
284
+ "topology_any": 24,
285
+ "topology_all": 0,
286
+ "topology_not": 2752418,
287
+ "filter_cutoff": 0.0,
288
+ "filter_radius": 0.0,
289
+ "filter_out_tutorial_islands": false,
290
+ "filter_out_monuments": [],
291
+ "align_to_normal": true,
292
+ "npc_radius_check_distance": 0.0,
293
+ "population_convar": null
294
+ },
295
+ {
296
+ "asset_path": "assets/content/properties/spawnpopulation/ghostship_ocean.asset",
297
+ "name": "ghostship_ocean",
298
+ "class_name": "DensitySpawnPopulation",
299
+ "active": false,
300
+ "resource_folder": "",
301
+ "resources": [
302
+ "52c1977de7a417f45a00a3a758ac0040"
303
+ ],
304
+ "target_density": 8.0,
305
+ "scale_with_large_maps": false,
306
+ "scale_with_spawn_filter": false,
307
+ "splat_mask": -1,
308
+ "biome_mask": -9,
309
+ "topology_any": 128,
310
+ "topology_all": 0,
311
+ "topology_not": 0,
312
+ "filter_cutoff": 0.0,
313
+ "filter_radius": 0.0,
314
+ "filter_out_tutorial_islands": true,
315
+ "filter_out_monuments": [],
316
+ "align_to_normal": false,
317
+ "npc_radius_check_distance": 0.0,
318
+ "population_convar": null
319
+ },
320
+ {
321
+ "asset_path": "assets/content/properties/spawnpopulation/hapisspecific/hapis_ores.asset",
322
+ "name": "hapis_ores",
323
+ "class_name": "DensitySpawnPopulation",
324
+ "active": false,
325
+ "resource_folder": "resource/ores",
326
+ "resources": [],
327
+ "target_density": 55.0,
328
+ "scale_with_large_maps": true,
329
+ "scale_with_spawn_filter": false,
330
+ "splat_mask": -1,
331
+ "biome_mask": 6,
332
+ "topology_any": 4194304,
333
+ "topology_all": 0,
334
+ "topology_not": 3407262,
335
+ "filter_cutoff": 0.0,
336
+ "filter_radius": 0.0,
337
+ "filter_out_tutorial_islands": false,
338
+ "filter_out_monuments": [],
339
+ "align_to_normal": true,
340
+ "npc_radius_check_distance": 0.0,
341
+ "population_convar": null
342
+ },
343
+ {
344
+ "asset_path": "assets/content/properties/spawnpopulation/hapisspecific/hapis_ores_sand.asset",
345
+ "name": "hapis_ores_sand",
346
+ "class_name": "DensitySpawnPopulation",
347
+ "active": false,
348
+ "resource_folder": "resource/ores_sand",
349
+ "resources": [],
350
+ "target_density": 15.0,
351
+ "scale_with_large_maps": true,
352
+ "scale_with_spawn_filter": false,
353
+ "splat_mask": 4,
354
+ "biome_mask": 1,
355
+ "topology_any": 4194304,
356
+ "topology_all": 0,
357
+ "topology_not": 3407262,
358
+ "filter_cutoff": 0.0,
359
+ "filter_radius": 0.0,
360
+ "filter_out_tutorial_islands": false,
361
+ "filter_out_monuments": [],
362
+ "align_to_normal": true,
363
+ "npc_radius_check_distance": 0.0,
364
+ "population_convar": null
365
+ },
366
+ {
367
+ "asset_path": "assets/content/properties/spawnpopulation/hapisspecific/hapis_ores_snow.asset",
368
+ "name": "hapis_ores_snow",
369
+ "class_name": "DensitySpawnPopulation",
370
+ "active": false,
371
+ "resource_folder": "resource/ores_snow",
372
+ "resources": [],
373
+ "target_density": 30.0,
374
+ "scale_with_large_maps": true,
375
+ "scale_with_spawn_filter": false,
376
+ "splat_mask": 2,
377
+ "biome_mask": 8,
378
+ "topology_any": 4194336,
379
+ "topology_all": 0,
380
+ "topology_not": 3407262,
381
+ "filter_cutoff": 0.0,
382
+ "filter_radius": 0.0,
383
+ "filter_out_tutorial_islands": false,
384
+ "filter_out_monuments": [],
385
+ "align_to_normal": true,
386
+ "npc_radius_check_distance": 0.0,
387
+ "population_convar": null
388
+ },
389
+ {
390
+ "asset_path": "assets/content/properties/spawnpopulation/jungle-collectable-resource-hemp.asset",
391
+ "name": "jungle-collectable-resource-hemp",
392
+ "class_name": "DensitySpawnPopulation",
393
+ "active": true,
394
+ "resource_folder": "collectable/hemp",
395
+ "resources": [],
396
+ "target_density": 80.0,
397
+ "scale_with_large_maps": false,
398
+ "scale_with_spawn_filter": false,
399
+ "splat_mask": 49,
400
+ "biome_mask": 16,
401
+ "topology_any": 33,
402
+ "topology_all": 0,
403
+ "topology_not": 33385110,
404
+ "filter_cutoff": 0.0,
405
+ "filter_radius": 0.0,
406
+ "filter_out_tutorial_islands": false,
407
+ "filter_out_monuments": [],
408
+ "align_to_normal": false,
409
+ "npc_radius_check_distance": 0.0,
410
+ "population_convar": null
411
+ },
412
+ {
413
+ "asset_path": "assets/content/properties/spawnpopulation/jungle-plant-berry-blue.asset",
414
+ "name": "jungle-plant-berry-blue",
415
+ "class_name": "DensitySpawnPopulation",
416
+ "active": true,
417
+ "resource_folder": "collectable/berry-blue",
418
+ "resources": [],
419
+ "target_density": 10.0,
420
+ "scale_with_large_maps": false,
421
+ "scale_with_spawn_filter": false,
422
+ "splat_mask": 48,
423
+ "biome_mask": 16,
424
+ "topology_any": 32,
425
+ "topology_all": 0,
426
+ "topology_not": 33385094,
427
+ "filter_cutoff": 0.0,
428
+ "filter_radius": 0.0,
429
+ "filter_out_tutorial_islands": false,
430
+ "filter_out_monuments": [],
431
+ "align_to_normal": true,
432
+ "npc_radius_check_distance": 0.0,
433
+ "population_convar": null
434
+ },
435
+ {
436
+ "asset_path": "assets/content/properties/spawnpopulation/jungle-plant-berry-green.asset",
437
+ "name": "jungle-plant-berry-green",
438
+ "class_name": "DensitySpawnPopulation",
439
+ "active": true,
440
+ "resource_folder": "collectable/berry-green",
441
+ "resources": [],
442
+ "target_density": 10.0,
443
+ "scale_with_large_maps": false,
444
+ "scale_with_spawn_filter": false,
445
+ "splat_mask": 48,
446
+ "biome_mask": 16,
447
+ "topology_any": 32,
448
+ "topology_all": 0,
449
+ "topology_not": 33385094,
450
+ "filter_cutoff": 0.0,
451
+ "filter_radius": 0.0,
452
+ "filter_out_tutorial_islands": false,
453
+ "filter_out_monuments": [],
454
+ "align_to_normal": true,
455
+ "npc_radius_check_distance": 0.0,
456
+ "population_convar": null
457
+ },
458
+ {
459
+ "asset_path": "assets/content/properties/spawnpopulation/jungle-plant-berry-red.asset",
460
+ "name": "jungle-plant-berry-red",
461
+ "class_name": "DensitySpawnPopulation",
462
+ "active": true,
463
+ "resource_folder": "collectable/berry-red",
464
+ "resources": [],
465
+ "target_density": 10.0,
466
+ "scale_with_large_maps": false,
467
+ "scale_with_spawn_filter": false,
468
+ "splat_mask": 48,
469
+ "biome_mask": 16,
470
+ "topology_any": 32,
471
+ "topology_all": 0,
472
+ "topology_not": 33385094,
473
+ "filter_cutoff": 0.0,
474
+ "filter_radius": 0.0,
475
+ "filter_out_tutorial_islands": false,
476
+ "filter_out_monuments": [],
477
+ "align_to_normal": true,
478
+ "npc_radius_check_distance": 0.0,
479
+ "population_convar": null
480
+ },
481
+ {
482
+ "asset_path": "assets/content/properties/spawnpopulation/jungle-plant-berry-white.asset",
483
+ "name": "jungle-plant-berry-white",
484
+ "class_name": "DensitySpawnPopulation",
485
+ "active": true,
486
+ "resource_folder": "collectable/berry-white",
487
+ "resources": [],
488
+ "target_density": 10.0,
489
+ "scale_with_large_maps": false,
490
+ "scale_with_spawn_filter": false,
491
+ "splat_mask": 48,
492
+ "biome_mask": 16,
493
+ "topology_any": 32,
494
+ "topology_all": 0,
495
+ "topology_not": 33385094,
496
+ "filter_cutoff": 0.0,
497
+ "filter_radius": 0.0,
498
+ "filter_out_tutorial_islands": false,
499
+ "filter_out_monuments": [],
500
+ "align_to_normal": true,
501
+ "npc_radius_check_distance": 0.0,
502
+ "population_convar": null
503
+ },
504
+ {
505
+ "asset_path": "assets/content/properties/spawnpopulation/jungle-plant-berry-yellow.asset",
506
+ "name": "jungle-plant-berry-yellow",
507
+ "class_name": "DensitySpawnPopulation",
508
+ "active": true,
509
+ "resource_folder": "collectable/berry-yellow",
510
+ "resources": [],
511
+ "target_density": 10.0,
512
+ "scale_with_large_maps": false,
513
+ "scale_with_spawn_filter": false,
514
+ "splat_mask": 48,
515
+ "biome_mask": 16,
516
+ "topology_any": 32,
517
+ "topology_all": 0,
518
+ "topology_not": 33385094,
519
+ "filter_cutoff": 0.0,
520
+ "filter_radius": 0.0,
521
+ "filter_out_tutorial_islands": false,
522
+ "filter_out_monuments": [],
523
+ "align_to_normal": true,
524
+ "npc_radius_check_distance": 0.0,
525
+ "population_convar": null
526
+ },
527
+ {
528
+ "asset_path": "assets/content/properties/spawnpopulation/junkpiles.asset",
529
+ "name": "junkpiles",
530
+ "class_name": "DensitySpawnPopulation",
531
+ "active": true,
532
+ "resource_folder": "",
533
+ "resources": [
534
+ "aedb70e8747badc439255373126020af",
535
+ "178f714ebbf91cd42942193db5843a4f",
536
+ "f42385454bdd0554ca2ed90e8aa45fec",
537
+ "a64b882fe6a18284fb247048517a154a",
538
+ "d7d75c26c0afb1a4793bd137edcaca8c",
539
+ "9ed7c91e305375149b944bd3118f1be6",
540
+ "6a262db4175c7d442ac599fde4300930",
541
+ "2b03e1b070d42ef4db2c896cc96a84e0",
542
+ "06dab853de6b1ad46b674747d0563f1f",
543
+ "fe33cbefe84a23245ae00cf3d7db95e7"
544
+ ],
545
+ "target_density": 50.0,
546
+ "scale_with_large_maps": false,
547
+ "scale_with_spawn_filter": false,
548
+ "splat_mask": -1,
549
+ "biome_mask": -1,
550
+ "topology_any": 4096,
551
+ "topology_all": 0,
552
+ "topology_not": 33378198,
553
+ "filter_cutoff": 0.0,
554
+ "filter_radius": 0.0,
555
+ "filter_out_tutorial_islands": false,
556
+ "filter_out_monuments": [],
557
+ "align_to_normal": false,
558
+ "npc_radius_check_distance": 0.0,
559
+ "population_convar": null
560
+ },
561
+ {
562
+ "asset_path": "assets/content/properties/spawnpopulation/junkpiles_water.asset",
563
+ "name": "junkpiles_water",
564
+ "class_name": "DensitySpawnPopulation",
565
+ "active": true,
566
+ "resource_folder": "",
567
+ "resources": [
568
+ "4eb8ebc2ba5d7764ca16f6ef762d8f35",
569
+ "4a3d18a4777da634b9ae19e1db1b9a34",
570
+ "2b99060259cb1314488119f6fdefd236"
571
+ ],
572
+ "target_density": 8.0,
573
+ "scale_with_large_maps": false,
574
+ "scale_with_spawn_filter": false,
575
+ "splat_mask": -1,
576
+ "biome_mask": -9,
577
+ "topology_any": 262144,
578
+ "topology_all": 0,
579
+ "topology_not": 0,
580
+ "filter_cutoff": 0.0,
581
+ "filter_radius": 0.0,
582
+ "filter_out_tutorial_islands": true,
583
+ "filter_out_monuments": [],
584
+ "align_to_normal": false,
585
+ "npc_radius_check_distance": 0.0,
586
+ "population_convar": null
587
+ },
588
+ {
589
+ "asset_path": "assets/content/properties/spawnpopulation/logs_dry.asset",
590
+ "name": "logs_dry",
591
+ "class_name": "DensitySpawnPopulation",
592
+ "active": true,
593
+ "resource_folder": "resource/logs_dry",
594
+ "resources": [],
595
+ "target_density": 2500.0,
596
+ "scale_with_large_maps": true,
597
+ "scale_with_spawn_filter": true,
598
+ "splat_mask": -1,
599
+ "biome_mask": -12,
600
+ "topology_any": 96,
601
+ "topology_all": 0,
602
+ "topology_not": 4029062,
603
+ "filter_cutoff": 0.0,
604
+ "filter_radius": 0.0,
605
+ "filter_out_tutorial_islands": false,
606
+ "filter_out_monuments": [],
607
+ "align_to_normal": false,
608
+ "npc_radius_check_distance": 0.0,
609
+ "population_convar": null
610
+ },
611
+ {
612
+ "asset_path": "assets/content/properties/spawnpopulation/logs_snow.asset",
613
+ "name": "logs_snow",
614
+ "class_name": "DensitySpawnPopulation",
615
+ "active": true,
616
+ "resource_folder": "resource/logs_snow",
617
+ "resources": [],
618
+ "target_density": 2500.0,
619
+ "scale_with_large_maps": true,
620
+ "scale_with_spawn_filter": true,
621
+ "splat_mask": 2,
622
+ "biome_mask": -8,
623
+ "topology_any": 96,
624
+ "topology_all": 0,
625
+ "topology_not": 4029062,
626
+ "filter_cutoff": 0.0,
627
+ "filter_radius": 0.0,
628
+ "filter_out_tutorial_islands": false,
629
+ "filter_out_monuments": [],
630
+ "align_to_normal": false,
631
+ "npc_radius_check_distance": 0.0,
632
+ "population_convar": null
633
+ },
634
+ {
635
+ "asset_path": "assets/content/properties/spawnpopulation/logs_wet.asset",
636
+ "name": "logs_wet",
637
+ "class_name": "DensitySpawnPopulation",
638
+ "active": true,
639
+ "resource_folder": "resource/logs_wet",
640
+ "resources": [],
641
+ "target_density": 2500.0,
642
+ "scale_with_large_maps": true,
643
+ "scale_with_spawn_filter": true,
644
+ "splat_mask": -1,
645
+ "biome_mask": -14,
646
+ "topology_any": 96,
647
+ "topology_all": 0,
648
+ "topology_not": 4029062,
649
+ "filter_cutoff": 0.0,
650
+ "filter_radius": 0.0,
651
+ "filter_out_tutorial_islands": false,
652
+ "filter_out_monuments": [],
653
+ "align_to_normal": false,
654
+ "npc_radius_check_distance": 0.0,
655
+ "population_convar": null
656
+ },
657
+ {
658
+ "asset_path": "assets/content/properties/spawnpopulation/loot.asset",
659
+ "name": "loot",
660
+ "class_name": "DensitySpawnPopulation",
661
+ "active": true,
662
+ "resource_folder": "resource/loot",
663
+ "resources": [],
664
+ "target_density": 25.0,
665
+ "scale_with_large_maps": false,
666
+ "scale_with_spawn_filter": false,
667
+ "splat_mask": -1,
668
+ "biome_mask": -1,
669
+ "topology_any": 1024,
670
+ "topology_all": 0,
671
+ "topology_not": 32328326,
672
+ "filter_cutoff": 0.0,
673
+ "filter_radius": 0.0,
674
+ "filter_out_tutorial_islands": false,
675
+ "filter_out_monuments": [],
676
+ "align_to_normal": true,
677
+ "npc_radius_check_distance": 0.0,
678
+ "population_convar": null
679
+ },
680
+ {
681
+ "asset_path": "assets/content/properties/spawnpopulation/ores.asset",
682
+ "name": "ores",
683
+ "class_name": "DensitySpawnPopulation",
684
+ "active": true,
685
+ "resource_folder": "resource/ores",
686
+ "resources": [],
687
+ "target_density": 1700.0,
688
+ "scale_with_large_maps": true,
689
+ "scale_with_spawn_filter": true,
690
+ "splat_mask": -1,
691
+ "biome_mask": 6,
692
+ "topology_any": 20972032,
693
+ "topology_all": 0,
694
+ "topology_not": 3923354,
695
+ "filter_cutoff": 0.0,
696
+ "filter_radius": 0.0,
697
+ "filter_out_tutorial_islands": false,
698
+ "filter_out_monuments": [],
699
+ "align_to_normal": true,
700
+ "npc_radius_check_distance": 0.0,
701
+ "population_convar": null
702
+ },
703
+ {
704
+ "asset_path": "assets/content/properties/spawnpopulation/ores_sand.asset",
705
+ "name": "ores_sand",
706
+ "class_name": "DensitySpawnPopulation",
707
+ "active": true,
708
+ "resource_folder": "resource/ores_sand",
709
+ "resources": [],
710
+ "target_density": 1750.0,
711
+ "scale_with_large_maps": true,
712
+ "scale_with_spawn_filter": true,
713
+ "splat_mask": 204,
714
+ "biome_mask": 1,
715
+ "topology_any": 20972032,
716
+ "topology_all": 0,
717
+ "topology_not": 3923354,
718
+ "filter_cutoff": 0.0,
719
+ "filter_radius": 0.0,
720
+ "filter_out_tutorial_islands": false,
721
+ "filter_out_monuments": [],
722
+ "align_to_normal": true,
723
+ "npc_radius_check_distance": 0.0,
724
+ "population_convar": null
725
+ },
726
+ {
727
+ "asset_path": "assets/content/properties/spawnpopulation/ores_snow.asset",
728
+ "name": "ores_snow",
729
+ "class_name": "DensitySpawnPopulation",
730
+ "active": true,
731
+ "resource_folder": "resource/ores_snow",
732
+ "resources": [],
733
+ "target_density": 1000.0,
734
+ "scale_with_large_maps": true,
735
+ "scale_with_spawn_filter": true,
736
+ "splat_mask": 202,
737
+ "biome_mask": 8,
738
+ "topology_any": 20972032,
739
+ "topology_all": 0,
740
+ "topology_not": 3923354,
741
+ "filter_cutoff": 0.0,
742
+ "filter_radius": 0.0,
743
+ "filter_out_tutorial_islands": false,
744
+ "filter_out_monuments": [],
745
+ "align_to_normal": true,
746
+ "npc_radius_check_distance": 0.0,
747
+ "population_convar": null
748
+ },
749
+ {
750
+ "asset_path": "assets/content/properties/spawnpopulation/plant-berry-black.asset",
751
+ "name": "plant-berry-black",
752
+ "class_name": "DensitySpawnPopulation",
753
+ "active": false,
754
+ "resource_folder": "collectable/berry-black",
755
+ "resources": [],
756
+ "target_density": 10.0,
757
+ "scale_with_large_maps": false,
758
+ "scale_with_spawn_filter": false,
759
+ "splat_mask": 48,
760
+ "biome_mask": -10,
761
+ "topology_any": 32,
762
+ "topology_all": 0,
763
+ "topology_not": 33385094,
764
+ "filter_cutoff": 0.0,
765
+ "filter_radius": 0.0,
766
+ "filter_out_tutorial_islands": false,
767
+ "filter_out_monuments": [],
768
+ "align_to_normal": true,
769
+ "npc_radius_check_distance": 0.0,
770
+ "population_convar": null
771
+ },
772
+ {
773
+ "asset_path": "assets/content/properties/spawnpopulation/plant-berry-blue.asset",
774
+ "name": "plant-berry-blue",
775
+ "class_name": "DensitySpawnPopulation",
776
+ "active": true,
777
+ "resource_folder": "collectable/berry-blue",
778
+ "resources": [],
779
+ "target_density": 10.0,
780
+ "scale_with_large_maps": false,
781
+ "scale_with_spawn_filter": false,
782
+ "splat_mask": 48,
783
+ "biome_mask": 6,
784
+ "topology_any": 32,
785
+ "topology_all": 0,
786
+ "topology_not": 33385094,
787
+ "filter_cutoff": 0.0,
788
+ "filter_radius": 0.0,
789
+ "filter_out_tutorial_islands": false,
790
+ "filter_out_monuments": [],
791
+ "align_to_normal": true,
792
+ "npc_radius_check_distance": 0.0,
793
+ "population_convar": null
794
+ },
795
+ {
796
+ "asset_path": "assets/content/properties/spawnpopulation/plant-berry-green.asset",
797
+ "name": "plant-berry-green",
798
+ "class_name": "DensitySpawnPopulation",
799
+ "active": true,
800
+ "resource_folder": "collectable/berry-green",
801
+ "resources": [],
802
+ "target_density": 10.0,
803
+ "scale_with_large_maps": false,
804
+ "scale_with_spawn_filter": false,
805
+ "splat_mask": 48,
806
+ "biome_mask": 6,
807
+ "topology_any": 32,
808
+ "topology_all": 0,
809
+ "topology_not": 33385094,
810
+ "filter_cutoff": 0.0,
811
+ "filter_radius": 0.0,
812
+ "filter_out_tutorial_islands": false,
813
+ "filter_out_monuments": [],
814
+ "align_to_normal": true,
815
+ "npc_radius_check_distance": 0.0,
816
+ "population_convar": null
817
+ },
818
+ {
819
+ "asset_path": "assets/content/properties/spawnpopulation/plant-berry-red.asset",
820
+ "name": "plant-berry-red",
821
+ "class_name": "DensitySpawnPopulation",
822
+ "active": true,
823
+ "resource_folder": "collectable/berry-red",
824
+ "resources": [],
825
+ "target_density": 10.0,
826
+ "scale_with_large_maps": false,
827
+ "scale_with_spawn_filter": false,
828
+ "splat_mask": 48,
829
+ "biome_mask": 6,
830
+ "topology_any": 32,
831
+ "topology_all": 0,
832
+ "topology_not": 33385094,
833
+ "filter_cutoff": 0.0,
834
+ "filter_radius": 0.0,
835
+ "filter_out_tutorial_islands": false,
836
+ "filter_out_monuments": [],
837
+ "align_to_normal": true,
838
+ "npc_radius_check_distance": 0.0,
839
+ "population_convar": null
840
+ },
841
+ {
842
+ "asset_path": "assets/content/properties/spawnpopulation/plant-berry-white.asset",
843
+ "name": "plant-berry-white",
844
+ "class_name": "DensitySpawnPopulation",
845
+ "active": true,
846
+ "resource_folder": "collectable/berry-white",
847
+ "resources": [],
848
+ "target_density": 10.0,
849
+ "scale_with_large_maps": false,
850
+ "scale_with_spawn_filter": false,
851
+ "splat_mask": 48,
852
+ "biome_mask": 6,
853
+ "topology_any": 32,
854
+ "topology_all": 0,
855
+ "topology_not": 33385094,
856
+ "filter_cutoff": 0.0,
857
+ "filter_radius": 0.0,
858
+ "filter_out_tutorial_islands": false,
859
+ "filter_out_monuments": [],
860
+ "align_to_normal": true,
861
+ "npc_radius_check_distance": 0.0,
862
+ "population_convar": null
863
+ },
864
+ {
865
+ "asset_path": "assets/content/properties/spawnpopulation/plant-berry-yellow.asset",
866
+ "name": "plant-berry-yellow",
867
+ "class_name": "DensitySpawnPopulation",
868
+ "active": true,
869
+ "resource_folder": "collectable/berry-yellow",
870
+ "resources": [],
871
+ "target_density": 10.0,
872
+ "scale_with_large_maps": false,
873
+ "scale_with_spawn_filter": false,
874
+ "splat_mask": 48,
875
+ "biome_mask": 6,
876
+ "topology_any": 32,
877
+ "topology_all": 0,
878
+ "topology_not": 33385094,
879
+ "filter_cutoff": 0.0,
880
+ "filter_radius": 0.0,
881
+ "filter_out_tutorial_islands": false,
882
+ "filter_out_monuments": [],
883
+ "align_to_normal": true,
884
+ "npc_radius_check_distance": 0.0,
885
+ "population_convar": null
886
+ },
887
+ {
888
+ "asset_path": "assets/content/properties/spawnpopulation/plant-corn.asset",
889
+ "name": "plant-corn",
890
+ "class_name": "DensitySpawnPopulation",
891
+ "active": true,
892
+ "resource_folder": "collectable/corn",
893
+ "resources": [],
894
+ "target_density": 10.0,
895
+ "scale_with_large_maps": false,
896
+ "scale_with_spawn_filter": false,
897
+ "splat_mask": 48,
898
+ "biome_mask": -9,
899
+ "topology_any": 163840,
900
+ "topology_all": 0,
901
+ "topology_not": 33385374,
902
+ "filter_cutoff": 0.0,
903
+ "filter_radius": 0.0,
904
+ "filter_out_tutorial_islands": false,
905
+ "filter_out_monuments": [],
906
+ "align_to_normal": false,
907
+ "npc_radius_check_distance": 0.0,
908
+ "population_convar": null
909
+ },
910
+ {
911
+ "asset_path": "assets/content/properties/spawnpopulation/plant-orchid.asset",
912
+ "name": "plant-orchid",
913
+ "class_name": "DensitySpawnPopulation",
914
+ "active": true,
915
+ "resource_folder": "collectable/orchid",
916
+ "resources": [],
917
+ "target_density": 2.0,
918
+ "scale_with_large_maps": false,
919
+ "scale_with_spawn_filter": false,
920
+ "splat_mask": 48,
921
+ "biome_mask": -10,
922
+ "topology_any": 32,
923
+ "topology_all": 0,
924
+ "topology_not": 33385094,
925
+ "filter_cutoff": 0.0,
926
+ "filter_radius": 0.0,
927
+ "filter_out_tutorial_islands": false,
928
+ "filter_out_monuments": [],
929
+ "align_to_normal": true,
930
+ "npc_radius_check_distance": 0.0,
931
+ "population_convar": null
932
+ },
933
+ {
934
+ "asset_path": "assets/content/properties/spawnpopulation/plant-potato.asset",
935
+ "name": "plant-potato",
936
+ "class_name": "DensitySpawnPopulation",
937
+ "active": true,
938
+ "resource_folder": "collectable/potato",
939
+ "resources": [],
940
+ "target_density": 10.0,
941
+ "scale_with_large_maps": false,
942
+ "scale_with_spawn_filter": false,
943
+ "splat_mask": 32,
944
+ "biome_mask": -10,
945
+ "topology_any": 32,
946
+ "topology_all": 0,
947
+ "topology_not": 33385094,
948
+ "filter_cutoff": 0.0,
949
+ "filter_radius": 0.0,
950
+ "filter_out_tutorial_islands": false,
951
+ "filter_out_monuments": [],
952
+ "align_to_normal": true,
953
+ "npc_radius_check_distance": 0.0,
954
+ "population_convar": null
955
+ },
956
+ {
957
+ "asset_path": "assets/content/properties/spawnpopulation/plant-pumpkin.asset",
958
+ "name": "plant-pumpkin",
959
+ "class_name": "DensitySpawnPopulation",
960
+ "active": true,
961
+ "resource_folder": "collectable/pumpkin",
962
+ "resources": [],
963
+ "target_density": 10.0,
964
+ "scale_with_large_maps": false,
965
+ "scale_with_spawn_filter": false,
966
+ "splat_mask": 48,
967
+ "biome_mask": -9,
968
+ "topology_any": 163840,
969
+ "topology_all": 0,
970
+ "topology_not": 33385374,
971
+ "filter_cutoff": 0.0,
972
+ "filter_radius": 0.0,
973
+ "filter_out_tutorial_islands": false,
974
+ "filter_out_monuments": [],
975
+ "align_to_normal": true,
976
+ "npc_radius_check_distance": 0.0,
977
+ "population_convar": null
978
+ },
979
+ {
980
+ "asset_path": "assets/content/properties/spawnpopulation/plant-rose.asset",
981
+ "name": "plant-rose",
982
+ "class_name": "DensitySpawnPopulation",
983
+ "active": true,
984
+ "resource_folder": "collectable/rose",
985
+ "resources": [],
986
+ "target_density": 3.0,
987
+ "scale_with_large_maps": false,
988
+ "scale_with_spawn_filter": false,
989
+ "splat_mask": 48,
990
+ "biome_mask": -10,
991
+ "topology_any": 32,
992
+ "topology_all": 0,
993
+ "topology_not": 33385094,
994
+ "filter_cutoff": 0.0,
995
+ "filter_radius": 0.0,
996
+ "filter_out_tutorial_islands": false,
997
+ "filter_out_monuments": [],
998
+ "align_to_normal": true,
999
+ "npc_radius_check_distance": 0.0,
1000
+ "population_convar": null
1001
+ },
1002
+ {
1003
+ "asset_path": "assets/content/properties/spawnpopulation/plant-sunflower.asset",
1004
+ "name": "plant-sunflower",
1005
+ "class_name": "DensitySpawnPopulation",
1006
+ "active": true,
1007
+ "resource_folder": "collectable/sunflower",
1008
+ "resources": [],
1009
+ "target_density": 4.0,
1010
+ "scale_with_large_maps": false,
1011
+ "scale_with_spawn_filter": false,
1012
+ "splat_mask": 48,
1013
+ "biome_mask": -10,
1014
+ "topology_any": 32,
1015
+ "topology_all": 0,
1016
+ "topology_not": 33385094,
1017
+ "filter_cutoff": 0.0,
1018
+ "filter_radius": 0.0,
1019
+ "filter_out_tutorial_islands": false,
1020
+ "filter_out_monuments": [],
1021
+ "align_to_normal": true,
1022
+ "npc_radius_check_distance": 0.0,
1023
+ "population_convar": null
1024
+ },
1025
+ {
1026
+ "asset_path": "assets/content/properties/spawnpopulation/plant-wheat.asset",
1027
+ "name": "plant-wheat",
1028
+ "class_name": "DensitySpawnPopulation",
1029
+ "active": true,
1030
+ "resource_folder": "collectable/wheat",
1031
+ "resources": [],
1032
+ "target_density": 10.0,
1033
+ "scale_with_large_maps": false,
1034
+ "scale_with_spawn_filter": false,
1035
+ "splat_mask": 48,
1036
+ "biome_mask": -9,
1037
+ "topology_any": 163840,
1038
+ "topology_all": 0,
1039
+ "topology_not": 33385374,
1040
+ "filter_cutoff": 0.0,
1041
+ "filter_radius": 0.0,
1042
+ "filter_out_tutorial_islands": false,
1043
+ "filter_out_monuments": [],
1044
+ "align_to_normal": false,
1045
+ "npc_radius_check_distance": 0.0,
1046
+ "population_convar": null
1047
+ },
1048
+ {
1049
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arctic_forest.asset",
1050
+ "name": "procmap_v3_arctic_forest",
1051
+ "class_name": "DensitySpawnPopulation",
1052
+ "active": true,
1053
+ "resource_folder": "resource/v3_arctic_forestside",
1054
+ "resources": [],
1055
+ "target_density": 1000.0,
1056
+ "scale_with_large_maps": true,
1057
+ "scale_with_spawn_filter": true,
1058
+ "splat_mask": 18,
1059
+ "biome_mask": 8,
1060
+ "topology_any": 1,
1061
+ "topology_all": 0,
1062
+ "topology_not": 2968062,
1063
+ "filter_cutoff": 0.0,
1064
+ "filter_radius": 2.0,
1065
+ "filter_out_tutorial_islands": false,
1066
+ "filter_out_monuments": [],
1067
+ "align_to_normal": false,
1068
+ "npc_radius_check_distance": 0.0,
1069
+ "population_convar": null
1070
+ },
1071
+ {
1072
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arctic_forest_saplings.asset",
1073
+ "name": "procmap_v3_arctic_forest_saplings",
1074
+ "class_name": "DensitySpawnPopulation",
1075
+ "active": true,
1076
+ "resource_folder": "resource/v3_arctic_forest_saplings",
1077
+ "resources": [],
1078
+ "target_density": 7500.0,
1079
+ "scale_with_large_maps": true,
1080
+ "scale_with_spawn_filter": true,
1081
+ "splat_mask": 50,
1082
+ "biome_mask": 8,
1083
+ "topology_any": 96,
1084
+ "topology_all": 0,
1085
+ "topology_not": 7949714,
1086
+ "filter_cutoff": 0.0,
1087
+ "filter_radius": 2.0,
1088
+ "filter_out_tutorial_islands": false,
1089
+ "filter_out_monuments": [],
1090
+ "align_to_normal": false,
1091
+ "npc_radius_check_distance": 0.0,
1092
+ "population_convar": null
1093
+ },
1094
+ {
1095
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arctic_forest_snow.asset",
1096
+ "name": "procmap_v3_arctic_forest_snow",
1097
+ "class_name": "DensitySpawnPopulation",
1098
+ "active": true,
1099
+ "resource_folder": "resource/v3_arctic_forest",
1100
+ "resources": [],
1101
+ "target_density": 10000.0,
1102
+ "scale_with_large_maps": true,
1103
+ "scale_with_spawn_filter": true,
1104
+ "splat_mask": 2,
1105
+ "biome_mask": 8,
1106
+ "topology_any": 32,
1107
+ "topology_all": 0,
1108
+ "topology_not": 4016607,
1109
+ "filter_cutoff": 0.0,
1110
+ "filter_radius": 2.0,
1111
+ "filter_out_tutorial_islands": false,
1112
+ "filter_out_monuments": [],
1113
+ "align_to_normal": false,
1114
+ "npc_radius_check_distance": 0.0,
1115
+ "population_convar": null
1116
+ },
1117
+ {
1118
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arid_cactus.asset",
1119
+ "name": "procmap_v3_arid_cactus",
1120
+ "class_name": "DensitySpawnPopulation",
1121
+ "active": true,
1122
+ "resource_folder": "resource/v3_arid_cactus",
1123
+ "resources": [],
1124
+ "target_density": 2000.0,
1125
+ "scale_with_large_maps": true,
1126
+ "scale_with_spawn_filter": true,
1127
+ "splat_mask": 5,
1128
+ "biome_mask": 1,
1129
+ "topology_any": 1,
1130
+ "topology_all": 0,
1131
+ "topology_not": 4024966,
1132
+ "filter_cutoff": 0.0,
1133
+ "filter_radius": 2.0,
1134
+ "filter_out_tutorial_islands": false,
1135
+ "filter_out_monuments": [],
1136
+ "align_to_normal": false,
1137
+ "npc_radius_check_distance": 0.0,
1138
+ "population_convar": null
1139
+ },
1140
+ {
1141
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arid_palm_beach.asset",
1142
+ "name": "procmap_v3_arid_palm_beach",
1143
+ "class_name": "DensitySpawnPopulation",
1144
+ "active": true,
1145
+ "resource_folder": "resource/v3_arid_beachside",
1146
+ "resources": [],
1147
+ "target_density": 9000.0,
1148
+ "scale_with_large_maps": true,
1149
+ "scale_with_spawn_filter": true,
1150
+ "splat_mask": 4,
1151
+ "biome_mask": 1,
1152
+ "topology_any": 163848,
1153
+ "topology_all": 0,
1154
+ "topology_not": 4025223,
1155
+ "filter_cutoff": 0.0,
1156
+ "filter_radius": 2.0,
1157
+ "filter_out_tutorial_islands": false,
1158
+ "filter_out_monuments": [],
1159
+ "align_to_normal": false,
1160
+ "npc_radius_check_distance": 0.0,
1161
+ "population_convar": null
1162
+ },
1163
+ {
1164
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arid_palms_dense.asset",
1165
+ "name": "procmap_v3_arid_palms_dense",
1166
+ "class_name": "DensitySpawnPopulation",
1167
+ "active": true,
1168
+ "resource_folder": "resource/v3_arid_forest",
1169
+ "resources": [],
1170
+ "target_density": 5000.0,
1171
+ "scale_with_large_maps": true,
1172
+ "scale_with_spawn_filter": true,
1173
+ "splat_mask": 20,
1174
+ "biome_mask": 1,
1175
+ "topology_any": 245768,
1176
+ "topology_all": 0,
1177
+ "topology_not": 4008695,
1178
+ "filter_cutoff": 0.0,
1179
+ "filter_radius": 2.0,
1180
+ "filter_out_tutorial_islands": false,
1181
+ "filter_out_monuments": [],
1182
+ "align_to_normal": false,
1183
+ "npc_radius_check_distance": 0.0,
1184
+ "population_convar": null
1185
+ },
1186
+ {
1187
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arid_palms_light.asset",
1188
+ "name": "procmap_v3_arid_palms_light",
1189
+ "class_name": "DensitySpawnPopulation",
1190
+ "active": true,
1191
+ "resource_folder": "resource/v3_arid_field",
1192
+ "resources": [],
1193
+ "target_density": 600.0,
1194
+ "scale_with_large_maps": true,
1195
+ "scale_with_spawn_filter": true,
1196
+ "splat_mask": 16,
1197
+ "biome_mask": 1,
1198
+ "topology_any": 163915,
1199
+ "topology_all": 0,
1200
+ "topology_not": 4025014,
1201
+ "filter_cutoff": 0.0,
1202
+ "filter_radius": 2.0,
1203
+ "filter_out_tutorial_islands": false,
1204
+ "filter_out_monuments": [],
1205
+ "align_to_normal": false,
1206
+ "npc_radius_check_distance": 0.0,
1207
+ "population_convar": null
1208
+ },
1209
+ {
1210
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_arid_palms_superdense.asset",
1211
+ "name": "procmap_v3_arid_palms_superdense",
1212
+ "class_name": "DensitySpawnPopulation",
1213
+ "active": true,
1214
+ "resource_folder": "resource/v3_arid_forest",
1215
+ "resources": [],
1216
+ "target_density": 10000.0,
1217
+ "scale_with_large_maps": true,
1218
+ "scale_with_spawn_filter": true,
1219
+ "splat_mask": 32,
1220
+ "biome_mask": 1,
1221
+ "topology_any": 4325416,
1222
+ "topology_all": 0,
1223
+ "topology_not": 4024452,
1224
+ "filter_cutoff": 0.0,
1225
+ "filter_radius": 2.0,
1226
+ "filter_out_tutorial_islands": false,
1227
+ "filter_out_monuments": [],
1228
+ "align_to_normal": false,
1229
+ "npc_radius_check_distance": 0.0,
1230
+ "population_convar": null
1231
+ },
1232
+ {
1233
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arctic_field.asset",
1234
+ "name": "procmap_v3_bushes_arctic_field",
1235
+ "class_name": "DensitySpawnPopulation",
1236
+ "active": true,
1237
+ "resource_folder": "resource/v3_bushes_arctic",
1238
+ "resources": [],
1239
+ "target_density": 2000.0,
1240
+ "scale_with_large_maps": true,
1241
+ "scale_with_spawn_filter": true,
1242
+ "splat_mask": 2,
1243
+ "biome_mask": 8,
1244
+ "topology_any": 1,
1245
+ "topology_all": 0,
1246
+ "topology_not": 36522482,
1247
+ "filter_cutoff": 0.0,
1248
+ "filter_radius": 0.0,
1249
+ "filter_out_tutorial_islands": false,
1250
+ "filter_out_monuments": [],
1251
+ "align_to_normal": false,
1252
+ "npc_radius_check_distance": 0.0,
1253
+ "population_convar": null
1254
+ },
1255
+ {
1256
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arctic_forest.asset",
1257
+ "name": "procmap_v3_bushes_arctic_forest",
1258
+ "class_name": "DensitySpawnPopulation",
1259
+ "active": true,
1260
+ "resource_folder": "resource/v3_bushes_arctic_forest",
1261
+ "resources": [],
1262
+ "target_density": 2000.0,
1263
+ "scale_with_large_maps": true,
1264
+ "scale_with_spawn_filter": true,
1265
+ "splat_mask": 50,
1266
+ "biome_mask": 8,
1267
+ "topology_any": 32,
1268
+ "topology_all": 0,
1269
+ "topology_not": 19745234,
1270
+ "filter_cutoff": 0.0,
1271
+ "filter_radius": 0.0,
1272
+ "filter_out_tutorial_islands": false,
1273
+ "filter_out_monuments": [],
1274
+ "align_to_normal": false,
1275
+ "npc_radius_check_distance": 0.0,
1276
+ "population_convar": null
1277
+ },
1278
+ {
1279
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arctic_forestside.asset",
1280
+ "name": "procmap_v3_bushes_arctic_forestside",
1281
+ "class_name": "DensitySpawnPopulation",
1282
+ "active": true,
1283
+ "resource_folder": "resource/v3_bushes_arctic_forest",
1284
+ "resources": [],
1285
+ "target_density": 10000.0,
1286
+ "scale_with_large_maps": true,
1287
+ "scale_with_spawn_filter": true,
1288
+ "splat_mask": 52,
1289
+ "biome_mask": 8,
1290
+ "topology_any": 64,
1291
+ "topology_all": 0,
1292
+ "topology_not": 2967986,
1293
+ "filter_cutoff": 0.0,
1294
+ "filter_radius": 0.0,
1295
+ "filter_out_tutorial_islands": false,
1296
+ "filter_out_monuments": [],
1297
+ "align_to_normal": false,
1298
+ "npc_radius_check_distance": 0.0,
1299
+ "population_convar": null
1300
+ },
1301
+ {
1302
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arctic_railside.asset",
1303
+ "name": "procmap_v3_bushes_arctic_railside",
1304
+ "class_name": "DensitySpawnPopulation",
1305
+ "active": true,
1306
+ "resource_folder": "resource/v3_bushes_arctic_forest",
1307
+ "resources": [],
1308
+ "target_density": 0.0,
1309
+ "scale_with_large_maps": true,
1310
+ "scale_with_spawn_filter": true,
1311
+ "splat_mask": 247,
1312
+ "biome_mask": 8,
1313
+ "topology_any": 1048576,
1314
+ "topology_all": 0,
1315
+ "topology_not": 2710466,
1316
+ "filter_cutoff": 0.0,
1317
+ "filter_radius": 0.0,
1318
+ "filter_out_tutorial_islands": false,
1319
+ "filter_out_monuments": [],
1320
+ "align_to_normal": false,
1321
+ "npc_radius_check_distance": 0.0,
1322
+ "population_convar": null
1323
+ },
1324
+ {
1325
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arid_desert.asset",
1326
+ "name": "procmap_v3_bushes_arid_desert",
1327
+ "class_name": "DensitySpawnPopulation",
1328
+ "active": true,
1329
+ "resource_folder": "resource/v3_bushes_arid_desert",
1330
+ "resources": [],
1331
+ "target_density": 7000.0,
1332
+ "scale_with_large_maps": true,
1333
+ "scale_with_spawn_filter": true,
1334
+ "splat_mask": 4,
1335
+ "biome_mask": 1,
1336
+ "topology_any": 4194305,
1337
+ "topology_all": 0,
1338
+ "topology_not": 53308402,
1339
+ "filter_cutoff": 0.5,
1340
+ "filter_radius": 0.0,
1341
+ "filter_out_tutorial_islands": false,
1342
+ "filter_out_monuments": [],
1343
+ "align_to_normal": false,
1344
+ "npc_radius_check_distance": 0.0,
1345
+ "population_convar": null
1346
+ },
1347
+ {
1348
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arid_dry.asset",
1349
+ "name": "procmap_v3_bushes_arid_dry",
1350
+ "class_name": "DensitySpawnPopulation",
1351
+ "active": true,
1352
+ "resource_folder": "resource/v3_bushes_arid_dry",
1353
+ "resources": [],
1354
+ "target_density": 500.0,
1355
+ "scale_with_large_maps": true,
1356
+ "scale_with_spawn_filter": true,
1357
+ "splat_mask": 52,
1358
+ "biome_mask": 1,
1359
+ "topology_any": 4194401,
1360
+ "topology_all": 0,
1361
+ "topology_not": 53308306,
1362
+ "filter_cutoff": 0.0,
1363
+ "filter_radius": 0.0,
1364
+ "filter_out_tutorial_islands": false,
1365
+ "filter_out_monuments": [],
1366
+ "align_to_normal": false,
1367
+ "npc_radius_check_distance": 0.0,
1368
+ "population_convar": null
1369
+ },
1370
+ {
1371
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arid_dry_railside.asset",
1372
+ "name": "procmap_v3_bushes_arid_dry_railside",
1373
+ "class_name": "DensitySpawnPopulation",
1374
+ "active": true,
1375
+ "resource_folder": "resource/v3_bushes_arid_dry",
1376
+ "resources": [],
1377
+ "target_density": 0.0,
1378
+ "scale_with_large_maps": true,
1379
+ "scale_with_spawn_filter": true,
1380
+ "splat_mask": 48,
1381
+ "biome_mask": 1,
1382
+ "topology_any": 1048576,
1383
+ "topology_all": 0,
1384
+ "topology_not": 2710402,
1385
+ "filter_cutoff": 0.0,
1386
+ "filter_radius": 0.0,
1387
+ "filter_out_tutorial_islands": false,
1388
+ "filter_out_monuments": [],
1389
+ "align_to_normal": false,
1390
+ "npc_radius_check_distance": 0.0,
1391
+ "population_convar": null
1392
+ },
1393
+ {
1394
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arid_grass.asset",
1395
+ "name": "procmap_v3_bushes_arid_grass",
1396
+ "class_name": "DensitySpawnPopulation",
1397
+ "active": true,
1398
+ "resource_folder": "resource/v3_bushes_arid_grass",
1399
+ "resources": [],
1400
+ "target_density": 5000.0,
1401
+ "scale_with_large_maps": true,
1402
+ "scale_with_spawn_filter": true,
1403
+ "splat_mask": 48,
1404
+ "biome_mask": 1,
1405
+ "topology_any": 4194401,
1406
+ "topology_all": 0,
1407
+ "topology_not": 53308306,
1408
+ "filter_cutoff": 0.0,
1409
+ "filter_radius": 0.0,
1410
+ "filter_out_tutorial_islands": false,
1411
+ "filter_out_monuments": [],
1412
+ "align_to_normal": false,
1413
+ "npc_radius_check_distance": 0.0,
1414
+ "population_convar": null
1415
+ },
1416
+ {
1417
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_arid_ocotillo.asset",
1418
+ "name": "procmap_v3_bushes_arid_ocotillo",
1419
+ "class_name": "DensitySpawnPopulation",
1420
+ "active": true,
1421
+ "resource_folder": "resource/v3_bushes_arid_ocotillo",
1422
+ "resources": [],
1423
+ "target_density": 500.0,
1424
+ "scale_with_large_maps": true,
1425
+ "scale_with_spawn_filter": true,
1426
+ "splat_mask": 52,
1427
+ "biome_mask": 1,
1428
+ "topology_any": 4194401,
1429
+ "topology_all": 0,
1430
+ "topology_not": 53308306,
1431
+ "filter_cutoff": 0.0,
1432
+ "filter_radius": 0.0,
1433
+ "filter_out_tutorial_islands": false,
1434
+ "filter_out_monuments": [],
1435
+ "align_to_normal": false,
1436
+ "npc_radius_check_distance": 0.0,
1437
+ "population_convar": null
1438
+ },
1439
+ {
1440
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_jungle_forest.asset",
1441
+ "name": "procmap_v3_bushes_jungle_forest",
1442
+ "class_name": "DensitySpawnPopulation",
1443
+ "active": false,
1444
+ "resource_folder": "resource/v3_bushes_jungle",
1445
+ "resources": [],
1446
+ "target_density": 40000.0,
1447
+ "scale_with_large_maps": true,
1448
+ "scale_with_spawn_filter": true,
1449
+ "splat_mask": 48,
1450
+ "biome_mask": 16,
1451
+ "topology_any": 33554464,
1452
+ "topology_all": 0,
1453
+ "topology_not": 7949970,
1454
+ "filter_cutoff": 0.0,
1455
+ "filter_radius": 2.0,
1456
+ "filter_out_tutorial_islands": false,
1457
+ "filter_out_monuments": [],
1458
+ "align_to_normal": false,
1459
+ "npc_radius_check_distance": 0.0,
1460
+ "population_convar": null
1461
+ },
1462
+ {
1463
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_temp_field.asset",
1464
+ "name": "procmap_v3_bushes_temp_field",
1465
+ "class_name": "DensitySpawnPopulation",
1466
+ "active": true,
1467
+ "resource_folder": "resource/v3_bushes_temp",
1468
+ "resources": [],
1469
+ "target_density": 2000.0,
1470
+ "scale_with_large_maps": true,
1471
+ "scale_with_spawn_filter": true,
1472
+ "splat_mask": 16,
1473
+ "biome_mask": 2,
1474
+ "topology_any": 4194305,
1475
+ "topology_all": 0,
1476
+ "topology_not": 53308402,
1477
+ "filter_cutoff": 0.0,
1478
+ "filter_radius": 0.0,
1479
+ "filter_out_tutorial_islands": false,
1480
+ "filter_out_monuments": [],
1481
+ "align_to_normal": false,
1482
+ "npc_radius_check_distance": 0.0,
1483
+ "population_convar": null
1484
+ },
1485
+ {
1486
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_temp_forest.asset",
1487
+ "name": "procmap_v3_bushes_temp_forest",
1488
+ "class_name": "DensitySpawnPopulation",
1489
+ "active": true,
1490
+ "resource_folder": "resource/v3_bushes_temp",
1491
+ "resources": [],
1492
+ "target_density": 750.0,
1493
+ "scale_with_large_maps": true,
1494
+ "scale_with_spawn_filter": true,
1495
+ "splat_mask": 48,
1496
+ "biome_mask": 2,
1497
+ "topology_any": 33554464,
1498
+ "topology_all": 0,
1499
+ "topology_not": 7949970,
1500
+ "filter_cutoff": 0.0,
1501
+ "filter_radius": 0.0,
1502
+ "filter_out_tutorial_islands": false,
1503
+ "filter_out_monuments": [],
1504
+ "align_to_normal": false,
1505
+ "npc_radius_check_distance": 0.0,
1506
+ "population_convar": null
1507
+ },
1508
+ {
1509
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_temp_forestside.asset",
1510
+ "name": "procmap_v3_bushes_temp_forestside",
1511
+ "class_name": "DensitySpawnPopulation",
1512
+ "active": true,
1513
+ "resource_folder": "resource/v3_bushes_temp",
1514
+ "resources": [],
1515
+ "target_density": 7500.0,
1516
+ "scale_with_large_maps": true,
1517
+ "scale_with_spawn_filter": true,
1518
+ "splat_mask": 48,
1519
+ "biome_mask": 2,
1520
+ "topology_any": 64,
1521
+ "topology_all": 0,
1522
+ "topology_not": 3754882,
1523
+ "filter_cutoff": 0.0,
1524
+ "filter_radius": 0.0,
1525
+ "filter_out_tutorial_islands": false,
1526
+ "filter_out_monuments": [],
1527
+ "align_to_normal": false,
1528
+ "npc_radius_check_distance": 0.0,
1529
+ "population_convar": null
1530
+ },
1531
+ {
1532
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_temp_railside.asset",
1533
+ "name": "procmap_v3_bushes_temp_railside",
1534
+ "class_name": "DensitySpawnPopulation",
1535
+ "active": true,
1536
+ "resource_folder": "resource/v3_bushes_temp",
1537
+ "resources": [],
1538
+ "target_density": 0.0,
1539
+ "scale_with_large_maps": true,
1540
+ "scale_with_spawn_filter": true,
1541
+ "splat_mask": 247,
1542
+ "biome_mask": 2,
1543
+ "topology_any": 1048576,
1544
+ "topology_all": 0,
1545
+ "topology_not": 2710466,
1546
+ "filter_cutoff": 0.0,
1547
+ "filter_radius": 0.0,
1548
+ "filter_out_tutorial_islands": false,
1549
+ "filter_out_monuments": [],
1550
+ "align_to_normal": false,
1551
+ "npc_radius_check_distance": 0.0,
1552
+ "population_convar": null
1553
+ },
1554
+ {
1555
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_temp_waterside.asset",
1556
+ "name": "procmap_v3_bushes_temp_waterside",
1557
+ "class_name": "DensitySpawnPopulation",
1558
+ "active": true,
1559
+ "resource_folder": "resource/v3_bushes_temp",
1560
+ "resources": [],
1561
+ "target_density": 10000.0,
1562
+ "scale_with_large_maps": true,
1563
+ "scale_with_spawn_filter": true,
1564
+ "splat_mask": 16,
1565
+ "biome_mask": 2,
1566
+ "topology_any": 163864,
1567
+ "topology_all": 0,
1568
+ "topology_not": 36261506,
1569
+ "filter_cutoff": 0.0,
1570
+ "filter_radius": 0.0,
1571
+ "filter_out_tutorial_islands": false,
1572
+ "filter_out_monuments": [],
1573
+ "align_to_normal": false,
1574
+ "npc_radius_check_distance": 0.0,
1575
+ "population_convar": null
1576
+ },
1577
+ {
1578
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_tundra_field.asset",
1579
+ "name": "procmap_v3_bushes_tundra_field",
1580
+ "class_name": "DensitySpawnPopulation",
1581
+ "active": true,
1582
+ "resource_folder": "resource/v3_bushes_tundra",
1583
+ "resources": [],
1584
+ "target_density": 2000.0,
1585
+ "scale_with_large_maps": true,
1586
+ "scale_with_spawn_filter": true,
1587
+ "splat_mask": 16,
1588
+ "biome_mask": 4,
1589
+ "topology_any": 4194305,
1590
+ "topology_all": 0,
1591
+ "topology_not": 53308402,
1592
+ "filter_cutoff": 0.0,
1593
+ "filter_radius": 0.0,
1594
+ "filter_out_tutorial_islands": false,
1595
+ "filter_out_monuments": [],
1596
+ "align_to_normal": false,
1597
+ "npc_radius_check_distance": 0.0,
1598
+ "population_convar": null
1599
+ },
1600
+ {
1601
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_bushes_tundra_railside.asset",
1602
+ "name": "procmap_v3_bushes_tundra_railside",
1603
+ "class_name": "DensitySpawnPopulation",
1604
+ "active": true,
1605
+ "resource_folder": "resource/v3_bushes_tundra",
1606
+ "resources": [],
1607
+ "target_density": 0.0,
1608
+ "scale_with_large_maps": true,
1609
+ "scale_with_spawn_filter": true,
1610
+ "splat_mask": 247,
1611
+ "biome_mask": 4,
1612
+ "topology_any": 1048576,
1613
+ "topology_all": 0,
1614
+ "topology_not": 2710466,
1615
+ "filter_cutoff": 0.0,
1616
+ "filter_radius": 0.0,
1617
+ "filter_out_tutorial_islands": false,
1618
+ "filter_out_monuments": [],
1619
+ "align_to_normal": false,
1620
+ "npc_radius_check_distance": 0.0,
1621
+ "population_convar": null
1622
+ },
1623
+ {
1624
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_jungle_forest.asset",
1625
+ "name": "procmap_v3_jungle_forest",
1626
+ "class_name": "DensitySpawnPopulation",
1627
+ "active": true,
1628
+ "resource_folder": "resource/v3_jungle_forest",
1629
+ "resources": [],
1630
+ "target_density": 10000.0,
1631
+ "scale_with_large_maps": true,
1632
+ "scale_with_spawn_filter": true,
1633
+ "splat_mask": 48,
1634
+ "biome_mask": 16,
1635
+ "topology_any": 32,
1636
+ "topology_all": 32,
1637
+ "topology_not": 2975966,
1638
+ "filter_cutoff": 0.0,
1639
+ "filter_radius": 2.0,
1640
+ "filter_out_tutorial_islands": false,
1641
+ "filter_out_monuments": [],
1642
+ "align_to_normal": false,
1643
+ "npc_radius_check_distance": 0.0,
1644
+ "population_convar": null
1645
+ },
1646
+ {
1647
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_jungle_forest_saplings.asset",
1648
+ "name": "procmap_v3_jungle_forest_saplings",
1649
+ "class_name": "DensitySpawnPopulation",
1650
+ "active": true,
1651
+ "resource_folder": "resource/v3_jungle_forest_saplings",
1652
+ "resources": [],
1653
+ "target_density": 13500.0,
1654
+ "scale_with_large_maps": true,
1655
+ "scale_with_spawn_filter": true,
1656
+ "splat_mask": 48,
1657
+ "biome_mask": 16,
1658
+ "topology_any": 96,
1659
+ "topology_all": 0,
1660
+ "topology_not": 2707346,
1661
+ "filter_cutoff": 0.0,
1662
+ "filter_radius": 2.0,
1663
+ "filter_out_tutorial_islands": false,
1664
+ "filter_out_monuments": [],
1665
+ "align_to_normal": false,
1666
+ "npc_radius_check_distance": 0.0,
1667
+ "population_convar": null
1668
+ },
1669
+ {
1670
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_temp_beachforest_small.asset",
1671
+ "name": "procmap_v3_temp_beachforest_small",
1672
+ "class_name": "DensitySpawnPopulation",
1673
+ "active": true,
1674
+ "resource_folder": "resource/v3_temp_beachside",
1675
+ "resources": [],
1676
+ "target_density": 7000.0,
1677
+ "scale_with_large_maps": true,
1678
+ "scale_with_spawn_filter": true,
1679
+ "splat_mask": 16,
1680
+ "biome_mask": 2,
1681
+ "topology_any": 163848,
1682
+ "topology_all": 0,
1683
+ "topology_not": 7170183,
1684
+ "filter_cutoff": 0.0,
1685
+ "filter_radius": 2.0,
1686
+ "filter_out_tutorial_islands": false,
1687
+ "filter_out_monuments": [],
1688
+ "align_to_normal": false,
1689
+ "npc_radius_check_distance": 0.0,
1690
+ "population_convar": null
1691
+ },
1692
+ {
1693
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_temp_field_large.asset",
1694
+ "name": "procmap_v3_temp_field_large",
1695
+ "class_name": "DensitySpawnPopulation",
1696
+ "active": true,
1697
+ "resource_folder": "resource/v3_temp_field_large",
1698
+ "resources": [],
1699
+ "target_density": 200.0,
1700
+ "scale_with_large_maps": true,
1701
+ "scale_with_spawn_filter": true,
1702
+ "splat_mask": 16,
1703
+ "biome_mask": 2,
1704
+ "topology_any": 1077936641,
1705
+ "topology_all": 0,
1706
+ "topology_not": 54356474,
1707
+ "filter_cutoff": 0.0,
1708
+ "filter_radius": 2.0,
1709
+ "filter_out_tutorial_islands": false,
1710
+ "filter_out_monuments": [],
1711
+ "align_to_normal": false,
1712
+ "npc_radius_check_distance": 0.0,
1713
+ "population_convar": null
1714
+ },
1715
+ {
1716
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_temp_field_small.asset",
1717
+ "name": "procmap_v3_temp_field_small",
1718
+ "class_name": "DensitySpawnPopulation",
1719
+ "active": true,
1720
+ "resource_folder": "resource/v3_temp_field",
1721
+ "resources": [],
1722
+ "target_density": 3000.0,
1723
+ "scale_with_large_maps": true,
1724
+ "scale_with_spawn_filter": true,
1725
+ "splat_mask": 16,
1726
+ "biome_mask": 2,
1727
+ "topology_any": 4194305,
1728
+ "topology_all": 0,
1729
+ "topology_not": 53308402,
1730
+ "filter_cutoff": 0.0,
1731
+ "filter_radius": 2.0,
1732
+ "filter_out_tutorial_islands": false,
1733
+ "filter_out_monuments": [],
1734
+ "align_to_normal": false,
1735
+ "npc_radius_check_distance": 0.0,
1736
+ "population_convar": null
1737
+ },
1738
+ {
1739
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_temp_forest.asset",
1740
+ "name": "procmap_v3_temp_forest",
1741
+ "class_name": "DensitySpawnPopulation",
1742
+ "active": true,
1743
+ "resource_folder": "resource/v3_temp_forest_pine",
1744
+ "resources": [],
1745
+ "target_density": 20000.0,
1746
+ "scale_with_large_maps": true,
1747
+ "scale_with_spawn_filter": true,
1748
+ "splat_mask": 48,
1749
+ "biome_mask": 2,
1750
+ "topology_any": 32,
1751
+ "topology_all": 32,
1752
+ "topology_not": 36530398,
1753
+ "filter_cutoff": 0.0,
1754
+ "filter_radius": 2.0,
1755
+ "filter_out_tutorial_islands": false,
1756
+ "filter_out_monuments": [],
1757
+ "align_to_normal": false,
1758
+ "npc_radius_check_distance": 0.0,
1759
+ "population_convar": null
1760
+ },
1761
+ {
1762
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_temp_forest_deciduous.asset",
1763
+ "name": "procmap_v3_temp_forest_deciduous",
1764
+ "class_name": "DensitySpawnPopulation",
1765
+ "active": true,
1766
+ "resource_folder": "resource/v3_temp_forest",
1767
+ "resources": [],
1768
+ "target_density": 20000.0,
1769
+ "scale_with_large_maps": true,
1770
+ "scale_with_spawn_filter": true,
1771
+ "splat_mask": 48,
1772
+ "biome_mask": 2,
1773
+ "topology_any": 33554432,
1774
+ "topology_all": 0,
1775
+ "topology_not": 2975966,
1776
+ "filter_cutoff": 0.0,
1777
+ "filter_radius": 2.0,
1778
+ "filter_out_tutorial_islands": false,
1779
+ "filter_out_monuments": [],
1780
+ "align_to_normal": false,
1781
+ "npc_radius_check_distance": 0.0,
1782
+ "population_convar": null
1783
+ },
1784
+ {
1785
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_temp_forest_small.asset",
1786
+ "name": "procmap_v3_temp_forest_small",
1787
+ "class_name": "DensitySpawnPopulation",
1788
+ "active": true,
1789
+ "resource_folder": "resource/v3_temp_forestside_pine",
1790
+ "resources": [],
1791
+ "target_density": 10000.0,
1792
+ "scale_with_large_maps": true,
1793
+ "scale_with_spawn_filter": true,
1794
+ "splat_mask": 48,
1795
+ "biome_mask": 2,
1796
+ "topology_any": 64,
1797
+ "topology_all": 0,
1798
+ "topology_not": 36530366,
1799
+ "filter_cutoff": 0.0,
1800
+ "filter_radius": 2.0,
1801
+ "filter_out_tutorial_islands": false,
1802
+ "filter_out_monuments": [],
1803
+ "align_to_normal": false,
1804
+ "npc_radius_check_distance": 0.0,
1805
+ "population_convar": null
1806
+ },
1807
+ {
1808
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_temp_forest_small_deciduous.asset",
1809
+ "name": "procmap_v3_temp_forest_small_deciduous",
1810
+ "class_name": "DensitySpawnPopulation",
1811
+ "active": true,
1812
+ "resource_folder": "resource/v3_temp_forestside",
1813
+ "resources": [],
1814
+ "target_density": 15000.0,
1815
+ "scale_with_large_maps": true,
1816
+ "scale_with_spawn_filter": true,
1817
+ "splat_mask": 48,
1818
+ "biome_mask": 2,
1819
+ "topology_any": 33554496,
1820
+ "topology_all": 33554432,
1821
+ "topology_not": 2975934,
1822
+ "filter_cutoff": 0.0,
1823
+ "filter_radius": 2.0,
1824
+ "filter_out_tutorial_islands": false,
1825
+ "filter_out_monuments": [],
1826
+ "align_to_normal": false,
1827
+ "npc_radius_check_distance": 0.0,
1828
+ "population_convar": null
1829
+ },
1830
+ {
1831
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_tundra_field.asset",
1832
+ "name": "procmap_v3_tundra_field",
1833
+ "class_name": "DensitySpawnPopulation",
1834
+ "active": true,
1835
+ "resource_folder": "resource/v3_tundra_field",
1836
+ "resources": [],
1837
+ "target_density": 800.0,
1838
+ "scale_with_large_maps": true,
1839
+ "scale_with_spawn_filter": true,
1840
+ "splat_mask": 16,
1841
+ "biome_mask": 4,
1842
+ "topology_any": 4194305,
1843
+ "topology_all": 0,
1844
+ "topology_not": 2975994,
1845
+ "filter_cutoff": 0.0,
1846
+ "filter_radius": 2.0,
1847
+ "filter_out_tutorial_islands": false,
1848
+ "filter_out_monuments": [],
1849
+ "align_to_normal": false,
1850
+ "npc_radius_check_distance": 0.0,
1851
+ "population_convar": null
1852
+ },
1853
+ {
1854
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_tundra_field_pines.asset",
1855
+ "name": "procmap_v3_tundra_field_pines",
1856
+ "class_name": "DensitySpawnPopulation",
1857
+ "active": true,
1858
+ "resource_folder": "resource/v3_tundra_field_pines",
1859
+ "resources": [],
1860
+ "target_density": 2250.0,
1861
+ "scale_with_large_maps": true,
1862
+ "scale_with_spawn_filter": true,
1863
+ "splat_mask": 16,
1864
+ "biome_mask": 4,
1865
+ "topology_any": 1,
1866
+ "topology_all": 0,
1867
+ "topology_not": 2975994,
1868
+ "filter_cutoff": 0.0,
1869
+ "filter_radius": 2.0,
1870
+ "filter_out_tutorial_islands": false,
1871
+ "filter_out_monuments": [],
1872
+ "align_to_normal": false,
1873
+ "npc_radius_check_distance": 0.0,
1874
+ "population_convar": null
1875
+ },
1876
+ {
1877
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_tundra_forest.asset",
1878
+ "name": "procmap_v3_tundra_forest",
1879
+ "class_name": "DensitySpawnPopulation",
1880
+ "active": true,
1881
+ "resource_folder": "resource/v3_tundra_forest",
1882
+ "resources": [],
1883
+ "target_density": 25000.0,
1884
+ "scale_with_large_maps": true,
1885
+ "scale_with_spawn_filter": true,
1886
+ "splat_mask": 32,
1887
+ "biome_mask": 4,
1888
+ "topology_any": 32,
1889
+ "topology_all": 0,
1890
+ "topology_not": 2975898,
1891
+ "filter_cutoff": 0.0,
1892
+ "filter_radius": 2.0,
1893
+ "filter_out_tutorial_islands": false,
1894
+ "filter_out_monuments": [],
1895
+ "align_to_normal": false,
1896
+ "npc_radius_check_distance": 0.0,
1897
+ "population_convar": null
1898
+ },
1899
+ {
1900
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_tundra_forest_saplings.asset",
1901
+ "name": "procmap_v3_tundra_forest_saplings",
1902
+ "class_name": "DensitySpawnPopulation",
1903
+ "active": true,
1904
+ "resource_folder": "resource/v3_tundra_forest_saplings",
1905
+ "resources": [],
1906
+ "target_density": 12000.0,
1907
+ "scale_with_large_maps": true,
1908
+ "scale_with_spawn_filter": true,
1909
+ "splat_mask": 48,
1910
+ "biome_mask": 4,
1911
+ "topology_any": 96,
1912
+ "topology_all": 0,
1913
+ "topology_not": 2707346,
1914
+ "filter_cutoff": 0.0,
1915
+ "filter_radius": 2.0,
1916
+ "filter_out_tutorial_islands": false,
1917
+ "filter_out_monuments": [],
1918
+ "align_to_normal": false,
1919
+ "npc_radius_check_distance": 0.0,
1920
+ "population_convar": null
1921
+ },
1922
+ {
1923
+ "asset_path": "assets/content/properties/spawnpopulation/procmap_v3_tundra_forest_small.asset",
1924
+ "name": "procmap_v3_tundra_forest_small",
1925
+ "class_name": "DensitySpawnPopulation",
1926
+ "active": true,
1927
+ "resource_folder": "resource/v3_tundra_forestside",
1928
+ "resources": [],
1929
+ "target_density": 13000.0,
1930
+ "scale_with_large_maps": true,
1931
+ "scale_with_spawn_filter": true,
1932
+ "splat_mask": 48,
1933
+ "biome_mask": 4,
1934
+ "topology_any": 64,
1935
+ "topology_all": 0,
1936
+ "topology_not": 2975898,
1937
+ "filter_cutoff": 0.0,
1938
+ "filter_radius": 2.0,
1939
+ "filter_out_tutorial_islands": false,
1940
+ "filter_out_monuments": [],
1941
+ "align_to_normal": false,
1942
+ "npc_radius_check_distance": 0.0,
1943
+ "population_convar": null
1944
+ },
1945
+ {
1946
+ "asset_path": "assets/content/properties/spawnpopulation/shore_crate.asset",
1947
+ "name": "shore_crate",
1948
+ "class_name": "DensitySpawnPopulation",
1949
+ "active": true,
1950
+ "resource_folder": "",
1951
+ "resources": [
1952
+ "c5ad5fd472ff47d48ba094bbe707a5ca"
1953
+ ],
1954
+ "target_density": 800.0,
1955
+ "scale_with_large_maps": true,
1956
+ "scale_with_spawn_filter": true,
1957
+ "splat_mask": -1,
1958
+ "biome_mask": 6,
1959
+ "topology_any": 201326592,
1960
+ "topology_all": 536871184,
1961
+ "topology_not": 269216770,
1962
+ "filter_cutoff": 0.0,
1963
+ "filter_radius": 0.0,
1964
+ "filter_out_tutorial_islands": false,
1965
+ "filter_out_monuments": [],
1966
+ "align_to_normal": true,
1967
+ "npc_radius_check_distance": 0.0,
1968
+ "population_convar": null
1969
+ },
1970
+ {
1971
+ "asset_path": "assets/content/properties/spawnpopulation/swamp-trees.asset",
1972
+ "name": "swamp-trees",
1973
+ "class_name": "DensitySpawnPopulation",
1974
+ "active": true,
1975
+ "resource_folder": "resource/swamp-trees",
1976
+ "resources": [],
1977
+ "target_density": 10000.0,
1978
+ "scale_with_large_maps": true,
1979
+ "scale_with_spawn_filter": true,
1980
+ "splat_mask": -1,
1981
+ "biome_mask": -1,
1982
+ "topology_any": 8192,
1983
+ "topology_all": 1028,
1984
+ "topology_not": 1089329562,
1985
+ "filter_cutoff": 0.0,
1986
+ "filter_radius": 0.0,
1987
+ "filter_out_tutorial_islands": false,
1988
+ "filter_out_monuments": [],
1989
+ "align_to_normal": false,
1990
+ "npc_radius_check_distance": 0.0,
1991
+ "population_convar": null
1992
+ },
1993
+ {
1994
+ "asset_path": "assets/content/properties/spawnpopulation/v3_arctic_forest.asset",
1995
+ "name": "v3_arctic_forest",
1996
+ "class_name": "DensitySpawnPopulation",
1997
+ "active": false,
1998
+ "resource_folder": "resource/v3_arctic_forest",
1999
+ "resources": [],
2000
+ "target_density": 40000.0,
2001
+ "scale_with_large_maps": true,
2002
+ "scale_with_spawn_filter": true,
2003
+ "splat_mask": 32,
2004
+ "biome_mask": 8,
2005
+ "topology_any": 4294967295,
2006
+ "topology_all": 0,
2007
+ "topology_not": 3767190,
2008
+ "filter_cutoff": 0.10000000149011612,
2009
+ "filter_radius": 0.0,
2010
+ "filter_out_tutorial_islands": false,
2011
+ "filter_out_monuments": [],
2012
+ "align_to_normal": false,
2013
+ "npc_radius_check_distance": 0.0,
2014
+ "population_convar": null
2015
+ },
2016
+ {
2017
+ "asset_path": "assets/content/properties/spawnpopulation/v3_arctic_forest_saplings.asset",
2018
+ "name": "v3_arctic_forest_saplings",
2019
+ "class_name": "DensitySpawnPopulation",
2020
+ "active": false,
2021
+ "resource_folder": "resource/v3_arctic_forest_saplings",
2022
+ "resources": [],
2023
+ "target_density": 30000.0,
2024
+ "scale_with_large_maps": true,
2025
+ "scale_with_spawn_filter": true,
2026
+ "splat_mask": 50,
2027
+ "biome_mask": 8,
2028
+ "topology_any": 96,
2029
+ "topology_all": 0,
2030
+ "topology_not": 6901650,
2031
+ "filter_cutoff": 0.0,
2032
+ "filter_radius": 0.0,
2033
+ "filter_out_tutorial_islands": false,
2034
+ "filter_out_monuments": [],
2035
+ "align_to_normal": false,
2036
+ "npc_radius_check_distance": 0.0,
2037
+ "population_convar": null
2038
+ },
2039
+ {
2040
+ "asset_path": "assets/content/properties/spawnpopulation/v3_arid_beachside.asset",
2041
+ "name": "v3_arid_beachside",
2042
+ "class_name": "DensitySpawnPopulation",
2043
+ "active": false,
2044
+ "resource_folder": "resource/v3_arid_beachside",
2045
+ "resources": [],
2046
+ "target_density": 15000.0,
2047
+ "scale_with_large_maps": true,
2048
+ "scale_with_spawn_filter": true,
2049
+ "splat_mask": 16,
2050
+ "biome_mask": 1,
2051
+ "topology_any": 163848,
2052
+ "topology_all": 0,
2053
+ "topology_not": 8126358,
2054
+ "filter_cutoff": 0.20000000298023224,
2055
+ "filter_radius": 0.0,
2056
+ "filter_out_tutorial_islands": false,
2057
+ "filter_out_monuments": [],
2058
+ "align_to_normal": false,
2059
+ "npc_radius_check_distance": 0.0,
2060
+ "population_convar": null
2061
+ },
2062
+ {
2063
+ "asset_path": "assets/content/properties/spawnpopulation/v3_arid_cactus.asset",
2064
+ "name": "v3_arid_cactus",
2065
+ "class_name": "DensitySpawnPopulation",
2066
+ "active": false,
2067
+ "resource_folder": "resource/v3_arid_cactus",
2068
+ "resources": [],
2069
+ "target_density": 2000.0,
2070
+ "scale_with_large_maps": true,
2071
+ "scale_with_spawn_filter": true,
2072
+ "splat_mask": 21,
2073
+ "biome_mask": 1,
2074
+ "topology_any": 4294967295,
2075
+ "topology_all": 0,
2076
+ "topology_not": 8126358,
2077
+ "filter_cutoff": 0.20000000298023224,
2078
+ "filter_radius": 0.0,
2079
+ "filter_out_tutorial_islands": false,
2080
+ "filter_out_monuments": [],
2081
+ "align_to_normal": false,
2082
+ "npc_radius_check_distance": 0.0,
2083
+ "population_convar": null
2084
+ },
2085
+ {
2086
+ "asset_path": "assets/content/properties/spawnpopulation/v3_arid_field.asset",
2087
+ "name": "v3_arid_field",
2088
+ "class_name": "DensitySpawnPopulation",
2089
+ "active": false,
2090
+ "resource_folder": "resource/v3_arid_field",
2091
+ "resources": [],
2092
+ "target_density": 1500.0,
2093
+ "scale_with_large_maps": true,
2094
+ "scale_with_spawn_filter": true,
2095
+ "splat_mask": 16,
2096
+ "biome_mask": 1,
2097
+ "topology_any": 1073741825,
2098
+ "topology_all": 0,
2099
+ "topology_not": 8126358,
2100
+ "filter_cutoff": 0.20000000298023224,
2101
+ "filter_radius": 0.0,
2102
+ "filter_out_tutorial_islands": false,
2103
+ "filter_out_monuments": [],
2104
+ "align_to_normal": false,
2105
+ "npc_radius_check_distance": 0.0,
2106
+ "population_convar": null
2107
+ },
2108
+ {
2109
+ "asset_path": "assets/content/properties/spawnpopulation/v3_arid_forest.asset",
2110
+ "name": "v3_arid_forest",
2111
+ "class_name": "DensitySpawnPopulation",
2112
+ "active": false,
2113
+ "resource_folder": "resource/v3_arid_forest",
2114
+ "resources": [],
2115
+ "target_density": 22000.0,
2116
+ "scale_with_large_maps": true,
2117
+ "scale_with_spawn_filter": true,
2118
+ "splat_mask": 32,
2119
+ "biome_mask": 1,
2120
+ "topology_any": 4294967295,
2121
+ "topology_all": 0,
2122
+ "topology_not": 3767190,
2123
+ "filter_cutoff": 0.10000000149011612,
2124
+ "filter_radius": 0.0,
2125
+ "filter_out_tutorial_islands": false,
2126
+ "filter_out_monuments": [],
2127
+ "align_to_normal": false,
2128
+ "npc_radius_check_distance": 0.0,
2129
+ "population_convar": null
2130
+ },
2131
+ {
2132
+ "asset_path": "assets/content/properties/spawnpopulation/v3_arid_forestside.asset",
2133
+ "name": "v3_arid_forestside",
2134
+ "class_name": "DensitySpawnPopulation",
2135
+ "active": false,
2136
+ "resource_folder": "resource/v3_arid_forestside",
2137
+ "resources": [],
2138
+ "target_density": 20000.0,
2139
+ "scale_with_large_maps": true,
2140
+ "scale_with_spawn_filter": true,
2141
+ "splat_mask": 48,
2142
+ "biome_mask": 1,
2143
+ "topology_any": 64,
2144
+ "topology_all": 0,
2145
+ "topology_not": 3767190,
2146
+ "filter_cutoff": 0.125,
2147
+ "filter_radius": 0.0,
2148
+ "filter_out_tutorial_islands": false,
2149
+ "filter_out_monuments": [],
2150
+ "align_to_normal": false,
2151
+ "npc_radius_check_distance": 0.0,
2152
+ "population_convar": null
2153
+ },
2154
+ {
2155
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores.asset",
2156
+ "name": "v3_ores",
2157
+ "class_name": "DensitySpawnPopulation",
2158
+ "active": false,
2159
+ "resource_folder": "resource/ores",
2160
+ "resources": [],
2161
+ "target_density": 1500.0,
2162
+ "scale_with_large_maps": true,
2163
+ "scale_with_spawn_filter": true,
2164
+ "splat_mask": 201,
2165
+ "biome_mask": 6,
2166
+ "topology_any": 4194306,
2167
+ "topology_all": 0,
2168
+ "topology_not": 3800976,
2169
+ "filter_cutoff": 0.0,
2170
+ "filter_radius": 0.0,
2171
+ "filter_out_tutorial_islands": false,
2172
+ "filter_out_monuments": [],
2173
+ "align_to_normal": true,
2174
+ "npc_radius_check_distance": 0.0,
2175
+ "population_convar": null
2176
+ },
2177
+ {
2178
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores_jungle.asset",
2179
+ "name": "v3_ores_jungle",
2180
+ "class_name": "DensitySpawnPopulation",
2181
+ "active": true,
2182
+ "resource_folder": "resource/ores",
2183
+ "resources": [],
2184
+ "target_density": 1750.0,
2185
+ "scale_with_large_maps": true,
2186
+ "scale_with_spawn_filter": true,
2187
+ "splat_mask": 249,
2188
+ "biome_mask": 16,
2189
+ "topology_any": 20972032,
2190
+ "topology_all": 0,
2191
+ "topology_not": 3800976,
2192
+ "filter_cutoff": 0.0,
2193
+ "filter_radius": 0.0,
2194
+ "filter_out_tutorial_islands": false,
2195
+ "filter_out_monuments": [],
2196
+ "align_to_normal": true,
2197
+ "npc_radius_check_distance": 0.0,
2198
+ "population_convar": null
2199
+ },
2200
+ {
2201
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores_jungle_nocliff.asset",
2202
+ "name": "v3_ores_jungle_nocliff",
2203
+ "class_name": "DensitySpawnPopulation",
2204
+ "active": false,
2205
+ "resource_folder": "resource/ores",
2206
+ "resources": [],
2207
+ "target_density": 4000.0,
2208
+ "scale_with_large_maps": true,
2209
+ "scale_with_spawn_filter": true,
2210
+ "splat_mask": 249,
2211
+ "biome_mask": 16,
2212
+ "topology_any": 4194304,
2213
+ "topology_all": 0,
2214
+ "topology_not": 3800976,
2215
+ "filter_cutoff": 0.0,
2216
+ "filter_radius": 0.0,
2217
+ "filter_out_tutorial_islands": false,
2218
+ "filter_out_monuments": [],
2219
+ "align_to_normal": true,
2220
+ "npc_radius_check_distance": 0.0,
2221
+ "population_convar": null
2222
+ },
2223
+ {
2224
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores_nocliff.asset",
2225
+ "name": "v3_ores_nocliff",
2226
+ "class_name": "DensitySpawnPopulation",
2227
+ "active": false,
2228
+ "resource_folder": "resource/ores",
2229
+ "resources": [],
2230
+ "target_density": 4000.0,
2231
+ "scale_with_large_maps": true,
2232
+ "scale_with_spawn_filter": true,
2233
+ "splat_mask": 201,
2234
+ "biome_mask": 6,
2235
+ "topology_any": 4194304,
2236
+ "topology_all": 0,
2237
+ "topology_not": 3800976,
2238
+ "filter_cutoff": 0.0,
2239
+ "filter_radius": 0.0,
2240
+ "filter_out_tutorial_islands": false,
2241
+ "filter_out_monuments": [],
2242
+ "align_to_normal": true,
2243
+ "npc_radius_check_distance": 0.0,
2244
+ "population_convar": null
2245
+ },
2246
+ {
2247
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores_sand.asset",
2248
+ "name": "v3_ores_sand",
2249
+ "class_name": "DensitySpawnPopulation",
2250
+ "active": false,
2251
+ "resource_folder": "resource/ores_sand",
2252
+ "resources": [],
2253
+ "target_density": 1500.0,
2254
+ "scale_with_large_maps": true,
2255
+ "scale_with_spawn_filter": true,
2256
+ "splat_mask": 205,
2257
+ "biome_mask": 1,
2258
+ "topology_any": 4194306,
2259
+ "topology_all": 0,
2260
+ "topology_not": 3932048,
2261
+ "filter_cutoff": 0.0,
2262
+ "filter_radius": 0.0,
2263
+ "filter_out_tutorial_islands": false,
2264
+ "filter_out_monuments": [],
2265
+ "align_to_normal": true,
2266
+ "npc_radius_check_distance": 0.0,
2267
+ "population_convar": null
2268
+ },
2269
+ {
2270
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores_sand_nocliff.asset",
2271
+ "name": "v3_ores_sand_nocliff",
2272
+ "class_name": "DensitySpawnPopulation",
2273
+ "active": false,
2274
+ "resource_folder": "resource/ores_sand",
2275
+ "resources": [],
2276
+ "target_density": 2600.0,
2277
+ "scale_with_large_maps": true,
2278
+ "scale_with_spawn_filter": true,
2279
+ "splat_mask": 205,
2280
+ "biome_mask": 1,
2281
+ "topology_any": 4194304,
2282
+ "topology_all": 0,
2283
+ "topology_not": 3932048,
2284
+ "filter_cutoff": 0.0,
2285
+ "filter_radius": 0.0,
2286
+ "filter_out_tutorial_islands": false,
2287
+ "filter_out_monuments": [],
2288
+ "align_to_normal": true,
2289
+ "npc_radius_check_distance": 0.0,
2290
+ "population_convar": null
2291
+ },
2292
+ {
2293
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores_snow.asset",
2294
+ "name": "v3_ores_snow",
2295
+ "class_name": "DensitySpawnPopulation",
2296
+ "active": false,
2297
+ "resource_folder": "resource/ores_snow",
2298
+ "resources": [],
2299
+ "target_density": 2000.0,
2300
+ "scale_with_large_maps": true,
2301
+ "scale_with_spawn_filter": true,
2302
+ "splat_mask": 203,
2303
+ "biome_mask": 8,
2304
+ "topology_any": 4194306,
2305
+ "topology_all": 0,
2306
+ "topology_not": 3932048,
2307
+ "filter_cutoff": 0.0,
2308
+ "filter_radius": 0.0,
2309
+ "filter_out_tutorial_islands": false,
2310
+ "filter_out_monuments": [],
2311
+ "align_to_normal": true,
2312
+ "npc_radius_check_distance": 0.0,
2313
+ "population_convar": null
2314
+ },
2315
+ {
2316
+ "asset_path": "assets/content/properties/spawnpopulation/v3_ores_snow_nocliff.asset",
2317
+ "name": "v3_ores_snow_nocliff",
2318
+ "class_name": "DensitySpawnPopulation",
2319
+ "active": false,
2320
+ "resource_folder": "resource/ores_snow",
2321
+ "resources": [],
2322
+ "target_density": 6000.0,
2323
+ "scale_with_large_maps": true,
2324
+ "scale_with_spawn_filter": true,
2325
+ "splat_mask": 203,
2326
+ "biome_mask": 8,
2327
+ "topology_any": 4194304,
2328
+ "topology_all": 0,
2329
+ "topology_not": 3932048,
2330
+ "filter_cutoff": 0.0,
2331
+ "filter_radius": 0.0,
2332
+ "filter_out_tutorial_islands": false,
2333
+ "filter_out_monuments": [],
2334
+ "align_to_normal": true,
2335
+ "npc_radius_check_distance": 0.0,
2336
+ "population_convar": null
2337
+ },
2338
+ {
2339
+ "asset_path": "assets/content/properties/spawnpopulation/v3_temp_beachside.asset",
2340
+ "name": "v3_temp_beachside",
2341
+ "class_name": "DensitySpawnPopulation",
2342
+ "active": false,
2343
+ "resource_folder": "resource/v3_temp_beachside",
2344
+ "resources": [],
2345
+ "target_density": 150000.0,
2346
+ "scale_with_large_maps": true,
2347
+ "scale_with_spawn_filter": true,
2348
+ "splat_mask": 16,
2349
+ "biome_mask": 2,
2350
+ "topology_any": 163848,
2351
+ "topology_all": 0,
2352
+ "topology_not": 7962518,
2353
+ "filter_cutoff": 0.20000000298023224,
2354
+ "filter_radius": 0.0,
2355
+ "filter_out_tutorial_islands": false,
2356
+ "filter_out_monuments": [],
2357
+ "align_to_normal": false,
2358
+ "npc_radius_check_distance": 0.0,
2359
+ "population_convar": null
2360
+ },
2361
+ {
2362
+ "asset_path": "assets/content/properties/spawnpopulation/v3_temp_field.asset",
2363
+ "name": "v3_temp_field",
2364
+ "class_name": "DensitySpawnPopulation",
2365
+ "active": false,
2366
+ "resource_folder": "resource/v3_temp_field",
2367
+ "resources": [],
2368
+ "target_density": 2500.0,
2369
+ "scale_with_large_maps": true,
2370
+ "scale_with_spawn_filter": true,
2371
+ "splat_mask": 16,
2372
+ "biome_mask": 2,
2373
+ "topology_any": 1073741825,
2374
+ "topology_all": 0,
2375
+ "topology_not": 7962518,
2376
+ "filter_cutoff": 0.20000000298023224,
2377
+ "filter_radius": 0.0,
2378
+ "filter_out_tutorial_islands": false,
2379
+ "filter_out_monuments": [],
2380
+ "align_to_normal": false,
2381
+ "npc_radius_check_distance": 0.0,
2382
+ "population_convar": null
2383
+ },
2384
+ {
2385
+ "asset_path": "assets/content/properties/spawnpopulation/v3_temp_forest.asset",
2386
+ "name": "v3_temp_forest",
2387
+ "class_name": "DensitySpawnPopulation",
2388
+ "active": false,
2389
+ "resource_folder": "resource/v3_temp_forest",
2390
+ "resources": [],
2391
+ "target_density": 30000.0,
2392
+ "scale_with_large_maps": true,
2393
+ "scale_with_spawn_filter": true,
2394
+ "splat_mask": 32,
2395
+ "biome_mask": 2,
2396
+ "topology_any": 4294967295,
2397
+ "topology_all": 0,
2398
+ "topology_not": 3767190,
2399
+ "filter_cutoff": 0.0,
2400
+ "filter_radius": 0.0,
2401
+ "filter_out_tutorial_islands": false,
2402
+ "filter_out_monuments": [],
2403
+ "align_to_normal": false,
2404
+ "npc_radius_check_distance": 0.0,
2405
+ "population_convar": null
2406
+ },
2407
+ {
2408
+ "asset_path": "assets/content/properties/spawnpopulation/v3_temp_forest_pine.asset",
2409
+ "name": "v3_temp_forest_pine",
2410
+ "class_name": "DensitySpawnPopulation",
2411
+ "active": false,
2412
+ "resource_folder": "resource/v3_temp_forest_pine",
2413
+ "resources": [],
2414
+ "target_density": 30000.0,
2415
+ "scale_with_large_maps": true,
2416
+ "scale_with_spawn_filter": true,
2417
+ "splat_mask": 32,
2418
+ "biome_mask": 2,
2419
+ "topology_any": 4294967295,
2420
+ "topology_all": 33554432,
2421
+ "topology_not": 3767190,
2422
+ "filter_cutoff": 0.0,
2423
+ "filter_radius": 0.0,
2424
+ "filter_out_tutorial_islands": false,
2425
+ "filter_out_monuments": [],
2426
+ "align_to_normal": false,
2427
+ "npc_radius_check_distance": 0.0,
2428
+ "population_convar": null
2429
+ },
2430
+ {
2431
+ "asset_path": "assets/content/properties/spawnpopulation/v3_temp_forestside.asset",
2432
+ "name": "v3_temp_forestside",
2433
+ "class_name": "DensitySpawnPopulation",
2434
+ "active": false,
2435
+ "resource_folder": "resource/v3_temp_forestside",
2436
+ "resources": [],
2437
+ "target_density": 10000.0,
2438
+ "scale_with_large_maps": true,
2439
+ "scale_with_spawn_filter": true,
2440
+ "splat_mask": 48,
2441
+ "biome_mask": 2,
2442
+ "topology_any": 64,
2443
+ "topology_all": 0,
2444
+ "topology_not": 3767190,
2445
+ "filter_cutoff": 0.25,
2446
+ "filter_radius": 0.0,
2447
+ "filter_out_tutorial_islands": false,
2448
+ "filter_out_monuments": [],
2449
+ "align_to_normal": false,
2450
+ "npc_radius_check_distance": 0.0,
2451
+ "population_convar": null
2452
+ },
2453
+ {
2454
+ "asset_path": "assets/content/properties/spawnpopulation/v3_tundra_field.asset",
2455
+ "name": "v3_tundra_field",
2456
+ "class_name": "DensitySpawnPopulation",
2457
+ "active": false,
2458
+ "resource_folder": "resource/v3_tundra_field",
2459
+ "resources": [],
2460
+ "target_density": 2500.0,
2461
+ "scale_with_large_maps": true,
2462
+ "scale_with_spawn_filter": true,
2463
+ "splat_mask": 16,
2464
+ "biome_mask": 4,
2465
+ "topology_any": 4294967295,
2466
+ "topology_all": 0,
2467
+ "topology_not": 3767702,
2468
+ "filter_cutoff": 0.20000000298023224,
2469
+ "filter_radius": 0.0,
2470
+ "filter_out_tutorial_islands": false,
2471
+ "filter_out_monuments": [],
2472
+ "align_to_normal": false,
2473
+ "npc_radius_check_distance": 0.0,
2474
+ "population_convar": null
2475
+ },
2476
+ {
2477
+ "asset_path": "assets/content/properties/spawnpopulation/v3_tundra_forest.asset",
2478
+ "name": "v3_tundra_forest",
2479
+ "class_name": "DensitySpawnPopulation",
2480
+ "active": false,
2481
+ "resource_folder": "resource/v3_tundra_forest",
2482
+ "resources": [],
2483
+ "target_density": 50000.0,
2484
+ "scale_with_large_maps": true,
2485
+ "scale_with_spawn_filter": true,
2486
+ "splat_mask": 32,
2487
+ "biome_mask": 4,
2488
+ "topology_any": 4294967295,
2489
+ "topology_all": 0,
2490
+ "topology_not": 3767190,
2491
+ "filter_cutoff": 0.0,
2492
+ "filter_radius": 0.0,
2493
+ "filter_out_tutorial_islands": false,
2494
+ "filter_out_monuments": [],
2495
+ "align_to_normal": false,
2496
+ "npc_radius_check_distance": 0.0,
2497
+ "population_convar": null
2498
+ },
2499
+ {
2500
+ "asset_path": "assets/content/properties/spawnpopulation/v3_tundra_forest_dead.asset",
2501
+ "name": "v3_tundra_forest_dead",
2502
+ "class_name": "DensitySpawnPopulation",
2503
+ "active": false,
2504
+ "resource_folder": "resource/v3_tundra_forest_dead",
2505
+ "resources": [],
2506
+ "target_density": 50000.0,
2507
+ "scale_with_large_maps": true,
2508
+ "scale_with_spawn_filter": true,
2509
+ "splat_mask": 32,
2510
+ "biome_mask": 4,
2511
+ "topology_any": 4294967295,
2512
+ "topology_all": 33554432,
2513
+ "topology_not": 3767190,
2514
+ "filter_cutoff": 0.0,
2515
+ "filter_radius": 0.0,
2516
+ "filter_out_tutorial_islands": false,
2517
+ "filter_out_monuments": [],
2518
+ "align_to_normal": false,
2519
+ "npc_radius_check_distance": 0.0,
2520
+ "population_convar": null
2521
+ },
2522
+ {
2523
+ "asset_path": "assets/content/properties/spawnpopulation/v3_tundra_forest_saplings.asset",
2524
+ "name": "v3_tundra_forest_saplings",
2525
+ "class_name": "DensitySpawnPopulation",
2526
+ "active": false,
2527
+ "resource_folder": "resource/v3_tundra_forest_saplings",
2528
+ "resources": [],
2529
+ "target_density": 30000.0,
2530
+ "scale_with_large_maps": true,
2531
+ "scale_with_spawn_filter": true,
2532
+ "splat_mask": 48,
2533
+ "biome_mask": 4,
2534
+ "topology_any": 96,
2535
+ "topology_all": 0,
2536
+ "topology_not": 6901650,
2537
+ "filter_cutoff": 0.0,
2538
+ "filter_radius": 0.0,
2539
+ "filter_out_tutorial_islands": false,
2540
+ "filter_out_monuments": [],
2541
+ "align_to_normal": false,
2542
+ "npc_radius_check_distance": 0.0,
2543
+ "population_convar": null
2544
+ },
2545
+ {
2546
+ "asset_path": "assets/content/properties/spawnpopulation/v3_tundra_forestside.asset",
2547
+ "name": "v3_tundra_forestside",
2548
+ "class_name": "DensitySpawnPopulation",
2549
+ "active": false,
2550
+ "resource_folder": "resource/v3_tundra_forestside",
2551
+ "resources": [],
2552
+ "target_density": 10000.0,
2553
+ "scale_with_large_maps": true,
2554
+ "scale_with_spawn_filter": true,
2555
+ "splat_mask": 48,
2556
+ "biome_mask": 4,
2557
+ "topology_any": 64,
2558
+ "topology_all": 0,
2559
+ "topology_not": 3767190,
2560
+ "filter_cutoff": 0.125,
2561
+ "filter_radius": 0.0,
2562
+ "filter_out_tutorial_islands": false,
2563
+ "filter_out_monuments": [],
2564
+ "align_to_normal": false,
2565
+ "npc_radius_check_distance": 0.0,
2566
+ "population_convar": null
2567
+ },
2568
+ {
2569
+ "asset_path": "assets/content/properties/spawnpopulation/wood_log_pile.asset",
2570
+ "name": "wood_log_pile",
2571
+ "class_name": "DensitySpawnPopulation",
2572
+ "active": true,
2573
+ "resource_folder": "resource/wood_log_pile",
2574
+ "resources": [],
2575
+ "target_density": 480.0,
2576
+ "scale_with_large_maps": true,
2577
+ "scale_with_spawn_filter": true,
2578
+ "splat_mask": 50,
2579
+ "biome_mask": 14,
2580
+ "topology_any": 8289,
2581
+ "topology_all": 0,
2582
+ "topology_not": 1098644886,
2583
+ "filter_cutoff": 0.0,
2584
+ "filter_radius": 0.0,
2585
+ "filter_out_tutorial_islands": false,
2586
+ "filter_out_monuments": [],
2587
+ "align_to_normal": true,
2588
+ "npc_radius_check_distance": 0.0,
2589
+ "population_convar": null
2590
+ },
2591
+ {
2592
+ "asset_path": "assets/content/vehicles/bikes/motorbikes_monuments.population.asset",
2593
+ "name": "Motorbikes_Monuments.Population",
2594
+ "class_name": "ConvarControlledSpawnPointPopulation",
2595
+ "active": true,
2596
+ "resource_folder": "",
2597
+ "resources": [
2598
+ "fbe584a5a14c12645bdeb022b3763e32",
2599
+ "fdd7d55406198cb40a87ca651535a635"
2600
+ ],
2601
+ "target_density": 1.0,
2602
+ "scale_with_large_maps": true,
2603
+ "scale_with_spawn_filter": true,
2604
+ "splat_mask": -1,
2605
+ "biome_mask": -1,
2606
+ "topology_any": 4294967295,
2607
+ "topology_all": 0,
2608
+ "topology_not": 0,
2609
+ "filter_cutoff": 0.0,
2610
+ "filter_radius": 0.0,
2611
+ "filter_out_tutorial_islands": false,
2612
+ "filter_out_monuments": [],
2613
+ "align_to_normal": false,
2614
+ "npc_radius_check_distance": 0.0,
2615
+ "population_convar": "bike.motorbikemonumentpopulation"
2616
+ },
2617
+ {
2618
+ "asset_path": "assets/content/vehicles/bikes/pedalbikes_monuments.population.asset",
2619
+ "name": "PedalBikes_Monuments.Population",
2620
+ "class_name": "ConvarControlledSpawnPointPopulation",
2621
+ "active": true,
2622
+ "resource_folder": "",
2623
+ "resources": [
2624
+ "1f89aa7a35f15c847b20a1e5eee4d9d1",
2625
+ "77eb9814c5d7db84d9e1c9588ca69259"
2626
+ ],
2627
+ "target_density": 1.0,
2628
+ "scale_with_large_maps": true,
2629
+ "scale_with_spawn_filter": false,
2630
+ "splat_mask": -1,
2631
+ "biome_mask": -1,
2632
+ "topology_any": 4294967295,
2633
+ "topology_all": 0,
2634
+ "topology_not": 0,
2635
+ "filter_cutoff": 0.0,
2636
+ "filter_radius": 0.0,
2637
+ "filter_out_tutorial_islands": false,
2638
+ "filter_out_monuments": [],
2639
+ "align_to_normal": false,
2640
+ "npc_radius_check_distance": 0.0,
2641
+ "population_convar": "bike.pedalmonumentpopulation"
2642
+ },
2643
+ {
2644
+ "asset_path": "assets/content/vehicles/bikes/pedalbikes_world.population.asset",
2645
+ "name": "PedalBikes_World.Population",
2646
+ "class_name": "ConvarControlledSpawnPopulation",
2647
+ "active": true,
2648
+ "resource_folder": "",
2649
+ "resources": [
2650
+ "1f89aa7a35f15c847b20a1e5eee4d9d1",
2651
+ "77eb9814c5d7db84d9e1c9588ca69259"
2652
+ ],
2653
+ "target_density": 0.0,
2654
+ "scale_with_large_maps": false,
2655
+ "scale_with_spawn_filter": false,
2656
+ "splat_mask": -1,
2657
+ "biome_mask": 23,
2658
+ "topology_any": 2048,
2659
+ "topology_all": 0,
2660
+ "topology_not": 1106240414,
2661
+ "filter_cutoff": 0.0,
2662
+ "filter_radius": 0.0,
2663
+ "filter_out_tutorial_islands": false,
2664
+ "filter_out_monuments": [],
2665
+ "align_to_normal": true,
2666
+ "npc_radius_check_distance": 0.0,
2667
+ "population_convar": "bike.pedalroadsidepopulation"
2668
+ },
2669
+ {
2670
+ "asset_path": "assets/content/vehicles/boats/rhib/rhib.population.asset",
2671
+ "name": "RHIB.Population",
2672
+ "class_name": "ConvarControlledSpawnPopulation",
2673
+ "active": true,
2674
+ "resource_folder": "",
2675
+ "resources": [
2676
+ "13e0adb551f9a224aa0fc4059d5b66c1"
2677
+ ],
2678
+ "target_density": 0.0,
2679
+ "scale_with_large_maps": false,
2680
+ "scale_with_spawn_filter": false,
2681
+ "splat_mask": -11,
2682
+ "biome_mask": 5,
2683
+ "topology_any": 128,
2684
+ "topology_all": 128,
2685
+ "topology_not": 24,
2686
+ "filter_cutoff": 0.0,
2687
+ "filter_radius": 0.0,
2688
+ "filter_out_tutorial_islands": false,
2689
+ "filter_out_monuments": [],
2690
+ "align_to_normal": true,
2691
+ "npc_radius_check_distance": 0.0,
2692
+ "population_convar": "rhib.rhibpopulation"
2693
+ },
2694
+ {
2695
+ "asset_path": "assets/content/vehicles/boats/rowboat/rowboat.population.asset",
2696
+ "name": "Rowboat.Population",
2697
+ "class_name": "ConvarControlledSpawnPopulation",
2698
+ "active": true,
2699
+ "resource_folder": "",
2700
+ "resources": [
2701
+ "f712b6b209b81ac47b292a1127bd3f2a"
2702
+ ],
2703
+ "target_density": 0.0,
2704
+ "scale_with_large_maps": false,
2705
+ "scale_with_spawn_filter": false,
2706
+ "splat_mask": -11,
2707
+ "biome_mask": -9,
2708
+ "topology_any": 246016,
2709
+ "topology_all": 16,
2710
+ "topology_not": 520,
2711
+ "filter_cutoff": 0.0,
2712
+ "filter_radius": 0.0,
2713
+ "filter_out_tutorial_islands": false,
2714
+ "filter_out_monuments": [
2715
+ 10
2716
+ ],
2717
+ "align_to_normal": true,
2718
+ "npc_radius_check_distance": 0.0,
2719
+ "population_convar": "motorrowboat.population"
2720
+ },
2721
+ {
2722
+ "asset_path": "assets/content/vehicles/boats/tugboat/tugboat.population.asset",
2723
+ "name": "Tugboat.Population",
2724
+ "class_name": "SpawnPointSpawnPopulation",
2725
+ "active": true,
2726
+ "resource_folder": "",
2727
+ "resources": [
2728
+ "29acd8dc16324f143bcc55af22afea9f"
2729
+ ],
2730
+ "target_density": 0.0,
2731
+ "scale_with_large_maps": false,
2732
+ "scale_with_spawn_filter": false,
2733
+ "splat_mask": -1,
2734
+ "biome_mask": -1,
2735
+ "topology_any": 4294967295,
2736
+ "topology_all": 4294967295,
2737
+ "topology_not": 0,
2738
+ "filter_cutoff": 0.0,
2739
+ "filter_radius": 0.0,
2740
+ "filter_out_tutorial_islands": false,
2741
+ "filter_out_monuments": [],
2742
+ "align_to_normal": false,
2743
+ "npc_radius_check_distance": 0.0,
2744
+ "population_convar": null
2745
+ },
2746
+ {
2747
+ "asset_path": "assets/content/vehicles/horse/ridablehorse.population.asset",
2748
+ "name": "RidableHorse.Population",
2749
+ "class_name": "ConvarControlledSpawnPopulation",
2750
+ "active": true,
2751
+ "resource_folder": "",
2752
+ "resources": [
2753
+ "e635c98b3caa1a343bbb77bc03d382a7"
2754
+ ],
2755
+ "target_density": 1.0,
2756
+ "scale_with_large_maps": false,
2757
+ "scale_with_spawn_filter": false,
2758
+ "splat_mask": -1,
2759
+ "biome_mask": 3,
2760
+ "topology_any": 4294967295,
2761
+ "topology_all": 0,
2762
+ "topology_not": 1106079654,
2763
+ "filter_cutoff": 0.0,
2764
+ "filter_radius": 0.0,
2765
+ "filter_out_tutorial_islands": false,
2766
+ "filter_out_monuments": [],
2767
+ "align_to_normal": false,
2768
+ "npc_radius_check_distance": 0.0,
2769
+ "population_convar": "ridablehorse.population"
2770
+ },
2771
+ {
2772
+ "asset_path": "assets/content/vehicles/minicopter/minicopter.population.asset",
2773
+ "name": "Minicopter.Population",
2774
+ "class_name": "ConvarControlledSpawnPopulation",
2775
+ "active": true,
2776
+ "resource_folder": "",
2777
+ "resources": [
2778
+ "afb814eae94f9474780bd8b61e4393f7"
2779
+ ],
2780
+ "target_density": 0.0,
2781
+ "scale_with_large_maps": false,
2782
+ "scale_with_spawn_filter": false,
2783
+ "splat_mask": -1,
2784
+ "biome_mask": 7,
2785
+ "topology_any": 2048,
2786
+ "topology_all": 0,
2787
+ "topology_not": 1106240414,
2788
+ "filter_cutoff": 0.0,
2789
+ "filter_radius": 0.0,
2790
+ "filter_out_tutorial_islands": false,
2791
+ "filter_out_monuments": [],
2792
+ "align_to_normal": true,
2793
+ "npc_radius_check_distance": 0.0,
2794
+ "population_convar": "minicopter.population"
2795
+ },
2796
+ {
2797
+ "asset_path": "assets/content/vehicles/modularcar/modularcar.population.asset",
2798
+ "name": "ModularCar.Population",
2799
+ "class_name": "ConvarControlledSpawnPopulation",
2800
+ "active": true,
2801
+ "resource_folder": "",
2802
+ "resources": [
2803
+ "52d0fc8560c966646b697970479360ae",
2804
+ "95ddd047b4e0e1e45a229161f1992bf1",
2805
+ "4acd795ede9b77e41b0d9a0852a9e11e"
2806
+ ],
2807
+ "target_density": 0.0,
2808
+ "scale_with_large_maps": true,
2809
+ "scale_with_spawn_filter": false,
2810
+ "splat_mask": -1,
2811
+ "biome_mask": 23,
2812
+ "topology_any": 6144,
2813
+ "topology_all": 0,
2814
+ "topology_not": 1106240414,
2815
+ "filter_cutoff": 0.0,
2816
+ "filter_radius": 0.0,
2817
+ "filter_out_tutorial_islands": false,
2818
+ "filter_out_monuments": [],
2819
+ "align_to_normal": true,
2820
+ "npc_radius_check_distance": 0.0,
2821
+ "population_convar": "modularcar.population"
2822
+ },
2823
+ {
2824
+ "asset_path": "assets/content/vehicles/scrap heli carrier/scraptransporthelicopter.population.asset",
2825
+ "name": "ScrapTransportHelicopter.Population",
2826
+ "class_name": "ConvarControlledSpawnPopulation",
2827
+ "active": true,
2828
+ "resource_folder": "",
2829
+ "resources": [
2830
+ "47b87597f1c7f7944bb25bf6d9dafd0b"
2831
+ ],
2832
+ "target_density": 0.0,
2833
+ "scale_with_large_maps": false,
2834
+ "scale_with_spawn_filter": false,
2835
+ "splat_mask": -1,
2836
+ "biome_mask": 7,
2837
+ "topology_any": 2049,
2838
+ "topology_all": 0,
2839
+ "topology_not": 1106240414,
2840
+ "filter_cutoff": 0.0,
2841
+ "filter_radius": 0.0,
2842
+ "filter_out_tutorial_islands": false,
2843
+ "filter_out_monuments": [],
2844
+ "align_to_normal": true,
2845
+ "npc_radius_check_distance": 0.0,
2846
+ "population_convar": "scraptransporthelicopter.population"
2847
+ },
2848
+ {
2849
+ "asset_path": "assets/content/vehicles/trains/traincars.population.asset",
2850
+ "name": "traincars.population",
2851
+ "class_name": "ConvarControlledSpawnPopulationRail",
2852
+ "active": true,
2853
+ "resource_folder": "",
2854
+ "resources": [
2855
+ "0a72a3bb4de6596468d08349b4f17c03",
2856
+ "7019c92281a01cb458a2ba0cddf1f556",
2857
+ "8fd9fb8f5e6c5da4a87daffbb0c0f8b2",
2858
+ "b04124e051323b347943a1565114229f",
2859
+ "9293979e4e839b3478cc47570519f5bf",
2860
+ "8ccd4f8bd5617894789f92bb4966e09a",
2861
+ "9d217baae904f2547982f002c6befe34",
2862
+ "962b852def7d4fa498e6cf77a4c14503",
2863
+ "605d6341b338cc747a0254828c2c195b",
2864
+ "6a2271c6ab709f6499f6737305732e05"
2865
+ ],
2866
+ "target_density": 0.0,
2867
+ "scale_with_large_maps": true,
2868
+ "scale_with_spawn_filter": false,
2869
+ "splat_mask": -1,
2870
+ "biome_mask": -1,
2871
+ "topology_any": 4294967295,
2872
+ "topology_all": 0,
2873
+ "topology_not": 6645634,
2874
+ "filter_cutoff": 0.0,
2875
+ "filter_radius": 0.0,
2876
+ "filter_out_tutorial_islands": false,
2877
+ "filter_out_monuments": [],
2878
+ "align_to_normal": false,
2879
+ "npc_radius_check_distance": 0.0,
2880
+ "population_convar": "traincar.population"
2881
+ },
2882
+ {
2883
+ "asset_path": "assets/prefabs/deployable/hot air balloon/hab.population.asset",
2884
+ "name": "HAB.Population",
2885
+ "class_name": "ConvarControlledSpawnPopulation",
2886
+ "active": true,
2887
+ "resource_folder": "",
2888
+ "resources": [
2889
+ "9018a7b6164ecbb4e82b44e22a69bb36"
2890
+ ],
2891
+ "target_density": 0.0,
2892
+ "scale_with_large_maps": false,
2893
+ "scale_with_spawn_filter": false,
2894
+ "splat_mask": 247,
2895
+ "biome_mask": 11,
2896
+ "topology_any": 1052673,
2897
+ "topology_all": 0,
2898
+ "topology_not": 15712698,
2899
+ "filter_cutoff": 0.0,
2900
+ "filter_radius": 0.0,
2901
+ "filter_out_tutorial_islands": false,
2902
+ "filter_out_monuments": [],
2903
+ "align_to_normal": true,
2904
+ "npc_radius_check_distance": 0.0,
2905
+ "population_convar": "hotairballoon.population"
2906
+ },
2907
+ {
2908
+ "asset_path": "assets/prefabs/missions/portal/halloweendungeon.population.asset",
2909
+ "name": "HalloweenDungeon.population",
2910
+ "class_name": "ConvarControlledSpawnPopulation",
2911
+ "active": true,
2912
+ "resource_folder": "",
2913
+ "resources": [
2914
+ "assets/prefabs/missions/portal/halloweenportalentry.prefab"
2915
+ ],
2916
+ "target_density": 0.0,
2917
+ "scale_with_large_maps": true,
2918
+ "scale_with_spawn_filter": false,
2919
+ "splat_mask": 247,
2920
+ "biome_mask": 27,
2921
+ "topology_any": 1052673,
2922
+ "topology_all": 0,
2923
+ "topology_not": 15712698,
2924
+ "filter_cutoff": 0.0,
2925
+ "filter_radius": 0.0,
2926
+ "filter_out_tutorial_islands": true,
2927
+ "filter_out_monuments": [],
2928
+ "align_to_normal": false,
2929
+ "npc_radius_check_distance": 0.0,
2930
+ "population_convar": "halloweendungeon.population"
2931
+ },
2932
+ {
2933
+ "asset_path": "assets/prefabs/missions/portal/xmasdungeon.population.asset",
2934
+ "name": "XmasDungeon.population",
2935
+ "class_name": "ConvarControlledSpawnPopulation",
2936
+ "active": true,
2937
+ "resource_folder": "",
2938
+ "resources": [
2939
+ "assets/prefabs/missions/portal/xmasportalentry.prefab"
2940
+ ],
2941
+ "target_density": 0.0,
2942
+ "scale_with_large_maps": true,
2943
+ "scale_with_spawn_filter": false,
2944
+ "splat_mask": 247,
2945
+ "biome_mask": 11,
2946
+ "topology_any": 1052673,
2947
+ "topology_all": 0,
2948
+ "topology_not": 15712698,
2949
+ "filter_cutoff": 0.0,
2950
+ "filter_radius": 0.0,
2951
+ "filter_out_tutorial_islands": true,
2952
+ "filter_out_monuments": [],
2953
+ "align_to_normal": false,
2954
+ "npc_radius_check_distance": 0.0,
2955
+ "population_convar": "xmasdungeon.xmaspopulation"
2956
+ },
2957
+ {
2958
+ "asset_path": "assets/prefabs/npc/murderer/murderer.population.asset",
2959
+ "name": "Murderer.Population",
2960
+ "class_name": "ConvarControlledSpawnPopulation",
2961
+ "active": true,
2962
+ "resource_folder": "",
2963
+ "resources": [
2964
+ "8cfa5cd3f5fe38a49a18836d5830c711"
2965
+ ],
2966
+ "target_density": 0.0,
2967
+ "scale_with_large_maps": false,
2968
+ "scale_with_spawn_filter": false,
2969
+ "splat_mask": -1,
2970
+ "biome_mask": -1,
2971
+ "topology_any": 529408,
2972
+ "topology_all": 0,
2973
+ "topology_not": 32858758,
2974
+ "filter_cutoff": 0.0,
2975
+ "filter_radius": 0.0,
2976
+ "filter_out_tutorial_islands": true,
2977
+ "filter_out_monuments": [],
2978
+ "align_to_normal": false,
2979
+ "npc_radius_check_distance": 0.0,
2980
+ "population_convar": "halloween.murdererpopulation"
2981
+ },
2982
+ {
2983
+ "asset_path": "assets/prefabs/npc/scarecrow/scarecrow.population.asset",
2984
+ "name": "Scarecrow.Population",
2985
+ "class_name": "ConvarControlledSpawnPopulation",
2986
+ "active": true,
2987
+ "resource_folder": "",
2988
+ "resources": [
2989
+ "8cfa5cd3f5fe38a49a18836d5830c711"
2990
+ ],
2991
+ "target_density": 0.0,
2992
+ "scale_with_large_maps": false,
2993
+ "scale_with_spawn_filter": false,
2994
+ "splat_mask": -1,
2995
+ "biome_mask": -1,
2996
+ "topology_any": 529408,
2997
+ "topology_all": 0,
2998
+ "topology_not": 32858758,
2999
+ "filter_cutoff": 0.0,
3000
+ "filter_radius": 0.0,
3001
+ "filter_out_tutorial_islands": true,
3002
+ "filter_out_monuments": [],
3003
+ "align_to_normal": false,
3004
+ "npc_radius_check_distance": 0.0,
3005
+ "population_convar": "halloween.scarecrowpopulation"
3006
+ },
3007
+ {
3008
+ "asset_path": "assets/prefabs/tools/metaldetector/metaldetectorsource.population.asset",
3009
+ "name": "MetalDetectorSource.Population",
3010
+ "class_name": "ConvarControlledSpawnPopulation",
3011
+ "active": true,
3012
+ "resource_folder": "",
3013
+ "resources": [
3014
+ "f997faf236a25ae43a12cd53b96ed596"
3015
+ ],
3016
+ "target_density": 1.0,
3017
+ "scale_with_large_maps": true,
3018
+ "scale_with_spawn_filter": true,
3019
+ "splat_mask": -1,
3020
+ "biome_mask": 23,
3021
+ "topology_any": 4294967295,
3022
+ "topology_all": 0,
3023
+ "topology_not": 1101884550,
3024
+ "filter_cutoff": 0.0,
3025
+ "filter_radius": 0.0,
3026
+ "filter_out_tutorial_islands": false,
3027
+ "filter_out_monuments": [],
3028
+ "align_to_normal": false,
3029
+ "npc_radius_check_distance": 0.0,
3030
+ "population_convar": "metaldetectorsource.population"
3031
+ },
3032
+ {
3033
+ "asset_path": "assets/rust.ai/agents/bear/bear.population.asset",
3034
+ "name": "Bear.Population",
3035
+ "class_name": "ConvarControlledSpawnPopulation",
3036
+ "active": true,
3037
+ "resource_folder": "",
3038
+ "resources": [
3039
+ "474e6c0bbf83ade469475e9638458536"
3040
+ ],
3041
+ "target_density": 0.0,
3042
+ "scale_with_large_maps": false,
3043
+ "scale_with_spawn_filter": false,
3044
+ "splat_mask": -1,
3045
+ "biome_mask": 6,
3046
+ "topology_any": 4294967295,
3047
+ "topology_all": 0,
3048
+ "topology_not": 32862110,
3049
+ "filter_cutoff": 0.0,
3050
+ "filter_radius": 0.0,
3051
+ "filter_out_tutorial_islands": false,
3052
+ "filter_out_monuments": [],
3053
+ "align_to_normal": false,
3054
+ "npc_radius_check_distance": 0.0,
3055
+ "population_convar": "bear.population"
3056
+ },
3057
+ {
3058
+ "asset_path": "assets/rust.ai/agents/bear/polarbear.population.asset",
3059
+ "name": "PolarBear.Population",
3060
+ "class_name": "ConvarControlledSpawnPopulation",
3061
+ "active": true,
3062
+ "resource_folder": "",
3063
+ "resources": [
3064
+ "d30224e941f892d468d938f9d1770c0a"
3065
+ ],
3066
+ "target_density": 0.0,
3067
+ "scale_with_large_maps": false,
3068
+ "scale_with_spawn_filter": false,
3069
+ "splat_mask": 2,
3070
+ "biome_mask": 8,
3071
+ "topology_any": 4294967295,
3072
+ "topology_all": 0,
3073
+ "topology_not": 32862110,
3074
+ "filter_cutoff": 0.0,
3075
+ "filter_radius": 0.0,
3076
+ "filter_out_tutorial_islands": false,
3077
+ "filter_out_monuments": [],
3078
+ "align_to_normal": false,
3079
+ "npc_radius_check_distance": 0.0,
3080
+ "population_convar": "polarbear.population"
3081
+ },
3082
+ {
3083
+ "asset_path": "assets/rust.ai/agents/boar/boar.population.asset",
3084
+ "name": "Boar.Population",
3085
+ "class_name": "ConvarControlledSpawnPopulation",
3086
+ "active": true,
3087
+ "resource_folder": "",
3088
+ "resources": [
3089
+ "3b32aa4e0470c964e81710cf43fae89c"
3090
+ ],
3091
+ "target_density": 0.0,
3092
+ "scale_with_large_maps": false,
3093
+ "scale_with_spawn_filter": false,
3094
+ "splat_mask": -1,
3095
+ "biome_mask": 3,
3096
+ "topology_any": 4294967295,
3097
+ "topology_all": 0,
3098
+ "topology_not": 32862110,
3099
+ "filter_cutoff": 0.0,
3100
+ "filter_radius": 0.0,
3101
+ "filter_out_tutorial_islands": false,
3102
+ "filter_out_monuments": [],
3103
+ "align_to_normal": false,
3104
+ "npc_radius_check_distance": 0.0,
3105
+ "population_convar": "boar.population"
3106
+ },
3107
+ {
3108
+ "asset_path": "assets/rust.ai/agents/chicken/chicken.population.asset",
3109
+ "name": "Chicken.Population",
3110
+ "class_name": "ConvarControlledSpawnPopulation",
3111
+ "active": true,
3112
+ "resource_folder": "",
3113
+ "resources": [
3114
+ "b5e4491ef69d0b34fbfd146fc42680ca"
3115
+ ],
3116
+ "target_density": 0.0,
3117
+ "scale_with_large_maps": false,
3118
+ "scale_with_spawn_filter": false,
3119
+ "splat_mask": 53,
3120
+ "biome_mask": 2,
3121
+ "topology_any": 4294967295,
3122
+ "topology_all": 0,
3123
+ "topology_not": 32862110,
3124
+ "filter_cutoff": 0.0,
3125
+ "filter_radius": 0.0,
3126
+ "filter_out_tutorial_islands": false,
3127
+ "filter_out_monuments": [],
3128
+ "align_to_normal": false,
3129
+ "npc_radius_check_distance": 0.0,
3130
+ "population_convar": "chicken.population"
3131
+ },
3132
+ {
3133
+ "asset_path": "assets/rust.ai/agents/crocodile/crocodile.population.asset",
3134
+ "name": "Crocodile.Population",
3135
+ "class_name": "ConvarControlledSpawnPopulation",
3136
+ "active": true,
3137
+ "resource_folder": "",
3138
+ "resources": [
3139
+ "048db67c886316749918045386856c38"
3140
+ ],
3141
+ "target_density": 0.0,
3142
+ "scale_with_large_maps": true,
3143
+ "scale_with_spawn_filter": false,
3144
+ "splat_mask": -1,
3145
+ "biome_mask": 16,
3146
+ "topology_any": 172032,
3147
+ "topology_all": 0,
3148
+ "topology_not": 0,
3149
+ "filter_cutoff": 0.0,
3150
+ "filter_radius": 0.0,
3151
+ "filter_out_tutorial_islands": false,
3152
+ "filter_out_monuments": [],
3153
+ "align_to_normal": false,
3154
+ "npc_radius_check_distance": 300.0,
3155
+ "population_convar": "crocodile.population"
3156
+ },
3157
+ {
3158
+ "asset_path": "assets/rust.ai/agents/panther/panther.population.asset",
3159
+ "name": "Panther.Population",
3160
+ "class_name": "ConvarControlledSpawnPopulation",
3161
+ "active": true,
3162
+ "resource_folder": "",
3163
+ "resources": [
3164
+ "76af23f200a61cb43965384d835beb1d"
3165
+ ],
3166
+ "target_density": 0.0,
3167
+ "scale_with_large_maps": true,
3168
+ "scale_with_spawn_filter": false,
3169
+ "splat_mask": -1,
3170
+ "biome_mask": 16,
3171
+ "topology_any": 4294967295,
3172
+ "topology_all": 0,
3173
+ "topology_not": 32862110,
3174
+ "filter_cutoff": 0.0,
3175
+ "filter_radius": 0.0,
3176
+ "filter_out_tutorial_islands": false,
3177
+ "filter_out_monuments": [],
3178
+ "align_to_normal": false,
3179
+ "npc_radius_check_distance": 300.0,
3180
+ "population_convar": "panther.population"
3181
+ },
3182
+ {
3183
+ "asset_path": "assets/rust.ai/agents/snake/snake.population.asset",
3184
+ "name": "Snake.Population",
3185
+ "class_name": "ConvarControlledSpawnPopulation",
3186
+ "active": true,
3187
+ "resource_folder": "",
3188
+ "resources": [
3189
+ "4e528186547e61647b6761984940e69b"
3190
+ ],
3191
+ "target_density": 0.0,
3192
+ "scale_with_large_maps": false,
3193
+ "scale_with_spawn_filter": false,
3194
+ "splat_mask": -1,
3195
+ "biome_mask": 16,
3196
+ "topology_any": 4294967295,
3197
+ "topology_all": 0,
3198
+ "topology_not": 32853918,
3199
+ "filter_cutoff": 0.0,
3200
+ "filter_radius": 0.0,
3201
+ "filter_out_tutorial_islands": false,
3202
+ "filter_out_monuments": [],
3203
+ "align_to_normal": false,
3204
+ "npc_radius_check_distance": 0.0,
3205
+ "population_convar": "snakehazard.population"
3206
+ },
3207
+ {
3208
+ "asset_path": "assets/rust.ai/agents/stag/stag.population.asset",
3209
+ "name": "Stag.Population",
3210
+ "class_name": "ConvarControlledSpawnPopulation",
3211
+ "active": true,
3212
+ "resource_folder": "",
3213
+ "resources": [
3214
+ "ddb72bbbf5e93b24fb91a61be7c2cdb6"
3215
+ ],
3216
+ "target_density": 0.0,
3217
+ "scale_with_large_maps": false,
3218
+ "scale_with_spawn_filter": false,
3219
+ "splat_mask": 48,
3220
+ "biome_mask": -10,
3221
+ "topology_any": 4294967295,
3222
+ "topology_all": 0,
3223
+ "topology_not": 32862086,
3224
+ "filter_cutoff": 0.0,
3225
+ "filter_radius": 0.0,
3226
+ "filter_out_tutorial_islands": false,
3227
+ "filter_out_monuments": [],
3228
+ "align_to_normal": false,
3229
+ "npc_radius_check_distance": 0.0,
3230
+ "population_convar": "stag.population"
3231
+ },
3232
+ {
3233
+ "asset_path": "assets/rust.ai/agents/tiger/tiger.population.asset",
3234
+ "name": "Tiger.Population",
3235
+ "class_name": "ConvarControlledSpawnPopulation",
3236
+ "active": true,
3237
+ "resource_folder": "",
3238
+ "resources": [
3239
+ "4c045ae392bb40a43b3ad75659ff4bf3"
3240
+ ],
3241
+ "target_density": 0.0,
3242
+ "scale_with_large_maps": true,
3243
+ "scale_with_spawn_filter": false,
3244
+ "splat_mask": -1,
3245
+ "biome_mask": 16,
3246
+ "topology_any": 4294967295,
3247
+ "topology_all": 0,
3248
+ "topology_not": 32862110,
3249
+ "filter_cutoff": 0.0,
3250
+ "filter_radius": 0.0,
3251
+ "filter_out_tutorial_islands": false,
3252
+ "filter_out_monuments": [],
3253
+ "align_to_normal": false,
3254
+ "npc_radius_check_distance": 300.0,
3255
+ "population_convar": "tiger.population"
3256
+ },
3257
+ {
3258
+ "asset_path": "assets/rust.ai/agents/wolf/wolf.population.asset",
3259
+ "name": "Wolf.Population",
3260
+ "class_name": "ConvarControlledSpawnPopulation",
3261
+ "active": true,
3262
+ "resource_folder": "",
3263
+ "resources": [
3264
+ "9c8a7439490b5cf4e9361297713771ce"
3265
+ ],
3266
+ "target_density": 0.0,
3267
+ "scale_with_large_maps": true,
3268
+ "scale_with_spawn_filter": false,
3269
+ "splat_mask": -9,
3270
+ "biome_mask": 7,
3271
+ "topology_any": 4294967295,
3272
+ "topology_all": 0,
3273
+ "topology_not": 32862110,
3274
+ "filter_cutoff": 0.0,
3275
+ "filter_radius": 0.0,
3276
+ "filter_out_tutorial_islands": false,
3277
+ "filter_out_monuments": [],
3278
+ "align_to_normal": false,
3279
+ "npc_radius_check_distance": 0.0,
3280
+ "population_convar": "wolf2.population"
3281
+ },
3282
+ {
3283
+ "asset_path": "assets/rust.ai/agents/zombie/zombie.population.asset",
3284
+ "name": "Zombie.Population",
3285
+ "class_name": "ConvarControlledSpawnPopulation",
3286
+ "active": true,
3287
+ "resource_folder": "",
3288
+ "resources": [
3289
+ "dbb54e7099dce59408e4bef32603cdfc"
3290
+ ],
3291
+ "target_density": 0.0,
3292
+ "scale_with_large_maps": true,
3293
+ "scale_with_spawn_filter": false,
3294
+ "splat_mask": -1,
3295
+ "biome_mask": -1,
3296
+ "topology_any": 4294967295,
3297
+ "topology_all": 0,
3298
+ "topology_not": 32861830,
3299
+ "filter_cutoff": 0.0,
3300
+ "filter_radius": 0.0,
3301
+ "filter_out_tutorial_islands": true,
3302
+ "filter_out_monuments": [],
3303
+ "align_to_normal": false,
3304
+ "npc_radius_check_distance": 0.0,
3305
+ "population_convar": "zombie.population"
3306
+ }
3307
+ ]
3308
+ }