-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
1227 lines (1092 loc) · 85.7 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"info" : {
"name" : "Swamp Biome + Firefly Clan + Beast Tamer",
"namespace" : "swamp_goblins",
"version" : 3,
"steam_file_id" : "1620908839"
},
"dependencies": [
"rayyas_children",
"northern_alliance",
"stonehearth_ace"
],
"default_locale": "en",
"client_init_script" : "file(swamp_goblins_client)",
"server_init_script" : "file(swamp_goblins_server)",
"aliases":{
"actions:get_food_from_storage":"file(ai/actions/eat/get_food_from_storage.lua)",
"actions:get_food_on_ground": "file(ai/actions/eat/get_food_on_ground_action.lua)",
"actions:memorialize_death": "file(ai/actions/memorialize_death_action.lua)",
"actions:health:rest_when_injured": "file(ai/actions/health/rest_when_injured_action.lua)",
"actions:play_music": "file(ai/actions/music/play_music.lua)",
"actions:play_instrument": "file(ai/actions/music/play_instrument.lua)",
"actions:create_audience": "file(ai/actions/music/create_audience.lua)",
"actions:goto_music": "file(ai/actions/music/goto_music.lua)",
"actions:enjoy_music": "file(ai/actions/music/enjoy_music.lua)",
"actions:lay_egg": "file(ai/actions/lay_egg/lay_egg.lua)",
"actions:create_egg": "file(ai/actions/lay_egg/create_egg.lua)",
"actions:summon": "file(ai/actions/summon/summon.lua)",
"actions:summon:despawn": "file(ai/actions/summon/despawn.lua)",
"actions:combat:darts": "file(ai/actions/combat/darts.lua)",
"actions:combat:darts:path_to_target": "file(ai/actions/combat/path_to_target.lua)",
"actions:combat:darts:chase_entity_until_targetable": "file(ai/actions/combat/chase_entity_until_targetable.lua)",
"actions:combat:darts:move_to_targetable_location": "file(ai/actions/combat/move_to_targetable_location.lua)",
"actions:combat:darts:move_to_targetable_location2":"file(ai/actions/combat/move_to_targetable_location2.lua)",
"actions:combat:darts:from_current_location": "file(ai/actions/combat/from_current_location.lua)",
"actions:combat:darts:check_entity_targetable": "file(ai/actions/combat/check_entity_targetable.lua)",
"actions:weather:charge_weather_stone": "file(ai/actions/weather/charge_weather_stone.lua)",
"actions:weather:use_weather_stone": "file(ai/actions/weather/use_weather_stone.lua)",
"ai_pack:change_weather":"file(ai/packs/change_weather.json)",
"ai_pack:lay_egg": "file(ai/packs/lay_egg.json)",
"ai_pack:music": "file(ai/packs/music.json)",
"ai_pack:summon": "file(ai/packs/summon_ai_pack.json)",
"ai_pack:ranged_darts": "file(ai/packs/ranged_darts.json)",
"task_groups:beekeeping": "file(ai/task_groups/beekeeping.lua)",
"task_groups:change_weather": "file(ai/task_groups/change_weather.lua)",
"task_groups:lay_egg": "file(ai/task_groups/lay_egg.lua)",
"task_groups:music": "file(ai/task_groups/music.lua)",
"armor:boots_overrider":"file(entities/armor/boots_overrider)",
"armor:fiber_armor": "file(entities/armor/fiber_armor)",
"armor:flower_helmet": "file(entities/armor/flower_helmet)",
"armor:mushroom_shield":"file(entities/armor/mushroom_shield)",
"armor:log_armor": "file(entities/armor/log_armor)",
"armor:log_helmet": "file(entities/armor/log_helmet)",
"armor:mask_shield": "file(entities/armor/mask_shield)",
"armor:leather_armor": "file(entities/armor/leather_armor)",
"armor:leather_helmet": "file(entities/armor/leather_helmet)",
"armor:leather_shield": "file(entities/armor/leather_shield)",
"armor:varanus_armor": "file(entities/armor/varanus_armor)",
"armor:varanus_helmet": "file(entities/armor/varanus_helmet)",
"armor:varanus_shield": "file(entities/armor/varanus_shield)",
"armor:clan_armor": "file(entities/armor/clan_armor)",
"armor:clan_banner": "file(entities/armor/clan_banner)",
"armor:clan_helmet": "file(entities/armor/clan_helmet)",
"armor:party_goblin_hat":"file(entities/armor/party_goblin_hat)",
"armor:spirit_armor":"file(entities/armor/spirit_armor)",
"armor:full_leather_helmet":"file(entities/armor/full_leather_helmet)",
"armor:horn_helmet": "file(entities/armor/horn_helmet)",
"armor:ruler_outfit":"file(jobs/ruler/outfit)",
"baby:bottle": "file(entities/baby/bottle)",
"baby:bottle2": "file(entities/baby/bottle2)",
"baby:blanket": "file(entities/baby/blanket)",
"baby:blanket2":"file(entities/baby/blanket2)",
"baby:toy": "file(entities/baby/toy)",
"baby:toy2": "file(entities/baby/toy2)",
"beast_tamer:claw": "file(jobs/beast_tamer/beast_tamer_claw)",
"beast_tamer:talisman": "file(jobs/beast_tamer/beast_tamer_flute)",
"beast_tamer:abilities:summon_poyos": "file(jobs/beast_tamer/beast_tamer_abilities/summon_poyos.json)",
"beast_tamer:abilities:summon_wildlife": "file(jobs/beast_tamer/beast_tamer_abilities/summon_wildlife.json)",
"beast_tamer:abilities:summon_traps": "file(jobs/beast_tamer/beast_tamer_abilities/summon_traps.json)",
"beast_tamer:abilities:summon_varanus": "file(jobs/beast_tamer/beast_tamer_abilities/summon_varanus.json)",
"beast_tamer:abilities:summon_firefly": "file(jobs/beast_tamer/beast_tamer_abilities/summon_firefly.json)",
"beast_tamer:abilities:summon_dragon_aura": "file(jobs/beast_tamer/beast_tamer_abilities/summon_dragon_aura.json)",
"beast_tamer:abilities:summon_big_wolf": "file(jobs/beast_tamer/beast_tamer_abilities/summon_big_wolf.json)",
"beast_tamer:summons":"file(jobs/beast_tamer/summons.json)",
"biome:swamp": "file(data/biome/swamp.json)",
"bonesmith:saw": "file(jobs/bonesmith/bonesmith_saw)",
"bonesmith:talisman": "file(jobs/bonesmith/bonesmith_saw/bonesmith_saw_talisman.json)",
"bonesmith:workbench": "file(jobs/bonesmith/bonesmith_workbench)",
"bonesmith:weaving_table": "file(jobs/bonesmith/weaving_table)",
"boulder:large_1": "file(entities/boulders/large_boulder/large_boulder_1.json)",
"boulder:large_2": "file(entities/boulders/large_boulder/large_boulder_2.json)",
"boulder:medium_1": "file(entities/boulders/medium_boulder/medium_boulder_1.json)",
"boulder:medium_2": "file(entities/boulders/medium_boulder/medium_boulder_2.json)",
"boulder:medium_3": "file(entities/boulders/medium_boulder/medium_boulder_3.json)",
"boulder:small": "file(entities/boulders/small_boulder)",
"buffs:body_up": "file(data/buffs/body_up)",
"buffs:chatty": "file(data/buffs/chatty)",
"buffs:combat_basics": "file(data/buffs/combat_basics)",
"buffs:despawn": "file(data/buffs/despawn)",
"buffs:despawn:in_2h": "file(data/buffs/despawn/despawn_in_2h.json)",
"buffs:firefly_confusion": "file(data/buffs/firefly_confusion)",
"buffs:heal_aura": "file(data/buffs/heal_aura)",
"buffs:pause_hungry": "file(data/buffs/pause_hungry)",
"buffs:poison": "file(data/buffs/poison)",
"buffs:poison:add": "file(data/buffs/poison/poison_add.json)",
"buffs:poison:resist": "file(data/buffs/poison/resist.json)",
"buffs:rage_over_time": "file(data/buffs/rage_over_time)",
"buffs:rage_over_time:add": "file(data/buffs/rage_over_time/rage_over_time_add.json)",
"buffs:self_aid": "file(data/buffs/self_aid)",
"buffs:slow_dart": "file(data/buffs/slow_dart)",
"buffs:town_bonus:book":"file(data/buffs/town_bonus/book.json)",
"buffs:town_bonus:tall":"file(data/buffs/town_bonus/tall.json)",
"buffs:trapped": "file(data/buffs/trapped)",
"buffs:wounds:resist": "file(data/buffs/wounds/resist.json)",
"buffs:baby:blanket": "file(data/buffs/baby/blanket.json)",
"buffs:baby:bottle": "file(data/buffs/baby/bottle.json)",
"buffs:baby:toy": "file(data/buffs/baby/toy.json)",
"buffs:potions:body": "file(data/buffs/potions/body)",
"buffs:potions:mind": "file(data/buffs/potions/mind)",
"buffs:potions:spirit": "file(data/buffs/potions/spirit)",
"buffs:potions:speed": "file(data/buffs/potions/speed)",
"buff_scripts:rage_over_time": "file(data/buffs/rage_over_time/rage_over_time.lua)",
"buff_scripts:poison": "file(data/buffs/poison/poison.lua)",
"buffs:tower:egg":"file(tower_defense/data/buffs/egg)",
"buffs:tower:egg_hatch":"file(tower_defense/data/buffs/egg/egg_hatch.json)",
"build:brushes:pattern:fiber_dotted": "file(data/build/brushes/pattern/fiber_dotted.qb)",
"build:brushes:pattern:fiber_diagonal": "file(data/build/brushes/pattern/fiber_diagonal.qb)",
"build:brushes:pattern:fiber_checker": "file(data/build/brushes/pattern/fiber_checker.qb)",
"build:brushes:wall:white_stripes": "file(data/build/brushes/wall/white_stripes.qb)",
"build:brushes:roof:green_stripes": "file(data/build/brushes/roof/green_stripes.qb)",
"build:brushes:roof:purple_stripes": "file(data/build/brushes/roof/purple_stripes.qb)",
"build:brushes:roof:white_stripes": "file(data/build/brushes/roof/white_stripes.qb)",
"build:prototypes:ladder": "file(data/build/prototypes/ladder/ladder.json)",
"camp_hearth": "file(entities/decoration/firepit_skulls)",
"camp_standard": "file(entities/gizmos/camp_standard)",
"goblin_camp_standard": "file(entities/gizmos/goblin_camp_standard)",
"varanus_camp_standard":"file(entities/gizmos/varanus_camp_standard)",
"goblinpedia":"file(entities/gizmos/goblinpedia)",
"commands:glory_wave:abandon": "file(data/commands/glory_wave/abandon.json)",
"commands:glory_wave:spawn": "file(data/commands/glory_wave/spawn.json)",
"commands:weather_stone:charge":"file(data/commands/weather_stone/charge.json)",
"commands:weather_stone:use": "file(data/commands/weather_stone/use.json)",
"commands:enable_egg_spot": "file(data/commands/enable_egg_spot)",
"commands:cancel_egg_spot": "file(data/commands/enable_egg_spot/cancel_egg_spot.json)",
"commands:goblinpedia": "file(data/commands/goblinpedia)",
"commands:market": "file(data/commands/market)",
"commands:travel": "file(data/commands/travel)",
"commands:music": "file(data/commands/music)",
"commands:shrine:summon_allied_fighters": "file(data/commands/shrine/summon_allied_fighters.json)",
"commands:shrine:summon_allied_workers": "file(data/commands/shrine/summon_allied_workers.json)",
"commands:swap_entity": "file(data/commands/swap_entity)",
"commands:transform:build_well_roof_clay": "file(data/commands/transform/build_well_roof_clay.json)",
"commands:transform:build_well_wood": "file(data/commands/transform/build_well_wood.json)",
"construction:ladder": "file(entities/construction/ladder)",
"construction:brick_fence": "file(entities/construction/brick_fence)",
"construction:brick_fence_half":"file(entities/construction/brick_fence_half)",
"construction:brick_fence_end": "file(entities/construction/brick_fence_end)",
"construction:brick_fence_gate":"file(entities/construction/brick_fence_gate)",
"construction:clay_fence": "file(entities/construction/clay_fence)",
"construction:clay_fence_half": "file(entities/construction/clay_fence_half)",
"construction:clay_fence_end": "file(entities/construction/clay_fence_end)",
"construction:goblin_barricade": "file(entities/construction/goblin_barricade)",
"construction:goblin_barricade_single": "file(entities/construction/goblin_barricade_single)",
"construction:goblin_barricade_gate": "file(entities/construction/goblin_barricade_gate)",
"construction:clay_water_well": "file(entities/construction/clay_water_well)",
"construction:wooden_water_well": "file(entities/construction/wooden_water_well)",
"consumables:potions:small_healing":"file(entities/consumables/potions/small_healing)",
"consumables:potions:large_healing":"file(entities/consumables/potions/large_healing)",
"consumables:potions:appearance": "file(entities/consumables/potions/appearance)",
"consumables:potions:body": "file(entities/consumables/potions/body)",
"consumables:potions:mind": "file(entities/consumables/potions/mind)",
"consumables:potions:spirit": "file(entities/consumables/potions/spirit)",
"consumables:potions:happy": "file(entities/consumables/potions/happy)",
"consumables:potions:memory": "file(entities/consumables/potions/memory)",
"consumables:potions:speed": "file(entities/consumables/potions/speed)",
"consumables:potions:teleport": "file(entities/consumables/potions/teleport)",
"consumables:scripts:appearance": "file(entities/consumables/scripts/appearance.lua)",
"consumables:scripts:happy": "file(entities/consumables/scripts/happy.lua)",
"consumables:scripts:memory": "file(entities/consumables/scripts/memory.lua)",
"consumables:scripts:teleport": "file(entities/consumables/scripts/teleport.lua)",
"consumables:seeds:cattail": "file(entities/consumables/seeds/cattail)",
"consumables:seeds:giple": "file(entities/consumables/seeds/giple)",
"consumables:seeds:mangrove_halfsize": "file(entities/consumables/seeds/mangrove_halfsize)",
"consumables:seeds:swamp_mushroom": "file(entities/consumables/seeds/swamp_mushroom)",
"containers:chest": "file(entities/containers/chest)",
"containers:clay_chest": "file(entities/containers/clay_chest)",
"containers:embark_wagon": "file(entities/containers/embark_wagon)",
"containers:giant_bag": "file(entities/containers/giant_bag)",
"containers:input_bin:clay": "file(entities/containers/input_bin_clay)",
"containers:input_bin:wood": "file(entities/containers/input_bin_wood)",
"containers:input_shelf:ground:wood": "file(entities/containers/input_shelf_ground_wood)",
"containers:input_shelf:wall:wood": "file(entities/containers/input_shelf_wall_wood)",
"containers:market_shelf:clay": "file(entities/containers/market_shelf_clay)",
"containers:output_box:wood": "file(entities/containers/output_box_wood)",
"containers:small_bag": "file(entities/containers/small_bag)",
"containers:stone_chest": "file(entities/containers/stone_chest)",
"containers:small_urn": "file(entities/containers/small_urn)",
"containers:large_urn": "file(entities/containers/large_urn)",
"color_map:goblin":"file(data/materials/color_maps/goblin_color_map.json)",
"color_map:magic":"file(data/materials/color_maps/magic.json)",
"critters:dragonfly": "file(entities/critters/dragonfly)",
"critters:firefly": "file(entities/critters/firefly)",
"critters:frog": "file(entities/critters/frog)",
"critters:kobold_wolf": "file(entities/critters/kobold_wolf)",
"crops:cattail_crop": "file(entities/crops/cattail_crop)",
"crops:mushroom_crop": "file(entities/crops/mushroom_crop)",
"crops:mangrove_crop": "file(entities/crops/mangrove_halfsize_crop)",
"crops:violet_crop": "file(entities/crops/violet_crop)",
"crops:giple_crop": "file(entities/crops/giple_crop)",
"data:gm_index": "file(data/gm/gm_index.json)",
"data:goblinpedia": "file(data/goblinpedia)",
"data:sound_constants": "file(data/sounds/sound_constants.json)",
"data:trapping:all_trappable_animals":"file(data/trapping/all_trappable_animals.json)",
"decoration:awning": "file(entities/decoration/awning)",
"decoration:banner_wall_small": "file(entities/decoration/banner_wall_small)",
"decoration:pole_banner": "file(entities/decoration/pole_banner)",
"decoration:big_firefly_essense": "file(entities/decoration/big_firefly_essense)",
"decoration:certificate": "file(entities/decoration/certificate)",
"decoration:fiber_rug": "file(entities/decoration/fiber_rug)",
"decoration:goblin_market": "file(entities/decoration/goblin_market)",
"decoration:goblin_market_stall": "file(entities/decoration/goblin_market_stall)",
"decoration:goblin_large_totem": "file(entities/decoration/goblin_large_totem)",
"decoration:goblin_small_totem": "file(entities/decoration/goblin_small_totem)",
"decoration:hourglass": "file(entities/decoration/hourglass)",
"decoration:hearth:nature": "file(entities/decoration/hearth/nature)",
"decoration:hearth:warrior": "file(entities/decoration/hearth/warrior)",
"decoration:landmarker": "file(entities/decoration/landmarker)",
"decoration:landmarker:old": "file(entities/decoration/landmarker/old_landmarker.json)",
"decoration:lamp:clay": "file(entities/decoration/clay_lamp)",
"decoration:lamppost": "file(entities/decoration/lamppost)",
"decoration:large_candle": "file(entities/decoration/large_candle)",
"decoration:mini_fountain": "file(entities/decoration/mini_fountain)",
"decoration:mushroom_target": "file(entities/decoration/mushroom_target)",
"decoration:small_candle": "file(entities/decoration/small_candle)",
"decoration:wall_candle": "file(entities/decoration/wall_candle)",
"decoration:potted_cattail": "file(entities/decoration/potted_cattail)",
"decoration:potted_giple": "file(entities/decoration/potted_giple)",
"decoration:potted_sapling": "file(entities/decoration/potted_sapling)",
"decoration:clay_potted_cattail": "file(entities/decoration/clay_potted/cattail)",
"decoration:clay_potted_giple": "file(entities/decoration/clay_potted/giple)",
"decoration:clay_potted_sapling": "file(entities/decoration/clay_potted/sapling)",
"decoration:shrine:book": "file(entities/decoration/shrine/book)",
"decoration:shrine:book:blessed": "file(entities/decoration/shrine/book/blessed.json)",
"decoration:shrine:tall": "file(entities/decoration/shrine/tall)",
"decoration:shrine:tall:blessed": "file(entities/decoration/shrine/tall/blessed.json)",
"decoration:clay_sign:goblin": "file(entities/decoration/clay_sign/goblin)",
"decoration:clay_sign:hammer": "file(entities/decoration/clay_sign/hammer)",
"decoration:clay_sign:mug": "file(entities/decoration/clay_sign/mug)",
"decoration:clay_sign:mushroom":"file(entities/decoration/clay_sign/mushroom)",
"decoration:clay_sign:pot": "file(entities/decoration/clay_sign/pot)",
"decoration:clay_sign:poyo": "file(entities/decoration/clay_sign/poyo)",
"decoration:clay_sign:saw": "file(entities/decoration/clay_sign/saw)",
"decoration:clay_sign:tree": "file(entities/decoration/clay_sign/tree)",
"decoration:clay_sign:varanus": "file(entities/decoration/clay_sign/varanus)",
"decoration:stone_sign:goblin": "file(entities/decoration/stone_sign/goblin)",
"decoration:stone_sign:hammer": "file(entities/decoration/stone_sign/hammer)",
"decoration:stone_sign:mug": "file(entities/decoration/stone_sign/mug)",
"decoration:stone_sign:mushroom": "file(entities/decoration/stone_sign/mushroom)",
"decoration:stone_sign:pot": "file(entities/decoration/stone_sign/pot)",
"decoration:stone_sign:poyo": "file(entities/decoration/stone_sign/poyo)",
"decoration:stone_sign:saw": "file(entities/decoration/stone_sign/saw)",
"decoration:stone_sign:tree": "file(entities/decoration/stone_sign/tree)",
"decoration:stone_sign:varanus": "file(entities/decoration/stone_sign/varanus)",
"decoration:wood_sign:goblin": "file(entities/decoration/wood_sign/goblin)",
"decoration:wood_sign:hammer": "file(entities/decoration/wood_sign/hammer)",
"decoration:wood_sign:mug": "file(entities/decoration/wood_sign/mug)",
"decoration:wood_sign:mushroom": "file(entities/decoration/wood_sign/mushroom)",
"decoration:wood_sign:pot": "file(entities/decoration/wood_sign/pot)",
"decoration:wood_sign:poyo": "file(entities/decoration/wood_sign/poyo)",
"decoration:wood_sign:saw": "file(entities/decoration/wood_sign/saw)",
"decoration:wood_sign:tree": "file(entities/decoration/wood_sign/tree)",
"decoration:wood_sign:varanus": "file(entities/decoration/wood_sign/varanus)",
"decoration:stone_brazier": "file(entities/decoration/stone_brazier)",
"decoration:tower_brazier": "file(entities/decoration/tower_brazier)",
"decoration:brazier_large": "file(entities/decoration/brazier_large)",
"decoration:tombstone": "file(entities/decoration/tombstone)",
"decoration:travel_stall": "file(entities/decoration/travel_stall)",
"decoration:wall_lamp": "file(entities/decoration/wall_lamp)",
"decoration:wall_fountain:clay": "file(entities/decoration/clay_wall_fountain)",
"decoration:wall_fountain:stone": "file(entities/decoration/stone_wall_fountain)",
"decoration:wall_fountain:wood": "file(entities/decoration/wood_wall_fountain)",
"decoration:wall_mask": "file(entities/decoration/wall_mask)",
"decoration:wall_ring": "file(entities/decoration/wall_ring)",
"decoration:windchime": "file(entities/decoration/windchime)",
"decoration:window_box:clay": "file(entities/decoration/window_box_clay)",
"decoration:window_box:wood": "file(entities/decoration/window_box_wood)",
"decoration:window_mushroom_box:clay": "file(entities/decoration/window_mushroom_box_clay)",
"decoration:window_mushroom_box:wood": "file(entities/decoration/window_mushroom_box_wood)",
"decoration:rabbit_statue": "file(entities/rabbit/rabbit_statue)",
"effects:egg_pedestal": "file(data/effects/egg_pedestal)",
"effects:firefly_effect": "file(data/effects/firefly_effect)",
"effects:brewing_stand_effect": "file(data/effects/firefly_effect/brewing_stand_effect.json)",
"effects:firefly_essense_effect": "file(data/effects/firefly_effect/firefly_essense_effect.json)",
"effects:firefly_golem_head": "file(data/effects/firefly_effect/firefly_golem_head.json)",
"effects:big_firefly_essense": "file(data/effects/firefly_effect/big_firefly_essense.json)",
"effects:buff:firefly_confusion": "file(data/effects/firefly_effect/firefly_confusion.json)",
"effects:firefly_shield":"file(data/effects/firefly_shield)",
"effects:firefly_token:crafting": "file(data/effects/firefly_token/crafting.json)",
"effects:firefly_token:jewel": "file(data/effects/firefly_token/jewel.json)",
"effects:green_fire:smaller_candle":"file(data/effects/green_fire/candle/smaller_candle.json)",
"effects:green_fire:small_candle": "file(data/effects/green_fire/candle/small_candle.json)",
"effects:green_fire:large_candle": "file(data/effects/green_fire/candle/large_candle.json)",
"effects:green_fire:brazier": "file(data/effects/green_fire/brazier)",
"effects:green_fire:tower_brazier": "file(data/effects/green_fire/tower_brazier)",
"effects:green_fire:brazier_firepit": "file(data/effects/green_fire/brazier_firepit)",
"effects:hourglass": "file(data/effects/hourglass)",
"effects:lamp":"file(data/effects/lamp)",
"effects:music:bongo_2": "file(data/effects/music/bongo_2.json)",
"effects:music:bongo_3": "file(data/effects/music/bongo_3.json)",
"effects:music:bongo_4": "file(data/effects/music/bongo_4.json)",
"effects:music:bongo_5": "file(data/effects/music/bongo_5.json)",
"effects:music:xylophone_1":"file(data/effects/music/xylophone_1.json)",
"effects:music:xylophone_4":"file(data/effects/music/xylophone_4.json)",
"effects:shaman_workbench_effect":"file(data/effects/shaman_workbench_effect)",
"effects:upgraded_staff":"file(data/effects/spirit_walker/upgraded_staff.json)",
"effects:shrine:book": "file(data/effects/shrine/book.json)",
"effects:shrine:book:blessed": "file(data/effects/shrine/book_blessed.json)",
"effects:shrine:tall": "file(data/effects/shrine/tall.json)",
"effects:shrine:tall:blessed": "file(data/effects/shrine/tall_blessed.json)",
"effects:spirit:armor": "file(data/effects/spirit/armor.json)",
"effects:spirit:ball": "file(data/effects/spirit/ball.json)",
"effects:spirit:poof": "file(data/effects/spirit/poof.json)",
"effects:spirit:big_g": "file(data/effects/spirit/big_g.json)",
"effects:spirit:dragon_aura": "file(data/effects/spirit/dragon_aura.json)",
"effects:spirit:goblin_spirit": "file(data/effects/spirit/goblin_spirit.json)",
"effects:poison_spiral":"file(data/effects/poison_spiral)",
"effects:hearth":"file(data/effects/hearth)",
"effects:hearth_human":"file(data/effects/hearth/hearth_human.json)",
"effects:water:mini_fountain":"file(data/effects/water/mini_fountain.json)",
"effects:water:wall_fountain":"file(data/effects/water/wall_fountain.json)",
"effects:weather_stone:charging": "file(data/effects/weather_stone/charging.json)",
"effects:weather_stone:waiting": "file(data/effects/weather_stone/waiting.json)",
"earthmaster:chisel": "file(jobs/earthmaster/earthmaster_chisel)",
"earthmaster:talisman": "file(jobs/earthmaster/earthmaster_chisel/earthmaster_chisel_talisman.json)",
"earthmaster:workbench": "file(jobs/earthmaster/mason_pedestal)",
"earthmaster:crusher": "file(jobs/earthmaster/crusher)",
"earthmaster:magmasmith_workbench": "file(jobs/earthmaster/magmasmith_workbench)",
"earthmaster:potter_workbench": "file(jobs/earthmaster/potter_workbench)",
"earthmaster:potter_kiln": "file(jobs/earthmaster/potter_kiln)",
"earthmaster:upgraded_outfit":"file(jobs/earthmaster/upgraded_outfit)",
"food:edible_for_goblins": "file(entities/food/edible_for_goblins.json)",
"food:fake_vegetables": "file(entities/food/fake_vegetables)",
"food:fake_vegetables_serving": "file(entities/food/fake_vegetables_serving)",
"food:frog_jerky": "file(entities/food/frog_jerky)",
"food:frog_jerky_serving": "file(entities/food/frog_jerky/serving.json)",
"food:mushroom": "file(entities/food/mushroom)",
"food:mushroom_serving":"file(entities/food/mushroom/serving.json)",
"food:plate_of_mushrooms": "file(entities/food/plate_of_mushrooms)",
"food:plate_of_mushrooms_serving": "file(entities/food/plate_of_mushrooms/serving.json)",
"furniture:clay:bed": "file(entities/furniture/clay/bed)",
"furniture:clay:chair": "file(entities/furniture/clay/chair)",
"furniture:clay:table": "file(entities/furniture/clay/table)",
"furniture:mushroom:bed": "file(entities/furniture/mushroom/bed)",
"furniture:mushroom:chair": "file(entities/furniture/mushroom/chair)",
"furniture:mushroom:table": "file(entities/furniture/mushroom/table)",
"furniture:stone:bed": "file(entities/furniture/stone/bed)",
"furniture:stone:bench": "file(entities/furniture/stone/bench)",
"furniture:stone:chair": "file(entities/furniture/stone/chair)",
"furniture:stone:table": "file(entities/furniture/stone/table)",
"furniture:stone:throne": "file(entities/furniture/stone/throne)",
"furniture:wood:chair": "file(entities/furniture/wood/chair)",
"furniture:wood:table": "file(entities/furniture/wood/table)",
"furniture:hammock": "file(entities/furniture/hammock)",
"furniture:swing": "file(entities/furniture/swing)",
"furniture:wood_bench": "file(entities/furniture/wood_bench)",
"furniture:wood_throne": "file(entities/furniture/wood_throne)",
"gizmos:egg_basket": "file(entities/gizmos/egg_basket)",
"gizmos:egg_pedestal_stone": "file(entities/gizmos/egg_pedestal_stone)",
"gizmos:egg_pedestal_clay": "file(entities/gizmos/egg_pedestal_clay)",
"gizmos:firefly_shield": "file(entities/gizmos/firefly_shield)",
"gizmos:firefly_shield:off":"file(entities/gizmos/firefly_shield/firefly_shield_off.json)",
"gizmos:safety_standard:wood": "file(entities/gizmos/safety_standard_wood)",
"gizmos:safety_standard:stone": "file(entities/gizmos/safety_standard_stone)",
"gizmos:safety_standard:clay": "file(entities/gizmos/safety_standard_clay)",
"goblins:egg": "file(entities/goblins/egg)",
"goblins:baby": "file(entities/goblins/baby)",
"goblins:goblin": "file(entities/goblins/goblin.json)",
"goblins:goblin_npc": "file(entities/goblins/goblin_npc.json)",
"goblins:goblin:customizations":"file(entities/goblins/customizations.json)",
"humans:nina":"file(entities/humans/nina)",
"humans:male":"file(entities/humans/male)",
"humans:female":"file(entities/humans/female)",
"humans:hearth":"file(entities/humans/hearth)",
"jobs:index": "file(jobs/goblin_index.json)",
"jobs:goblin_beast_tamer": "file(jobs/beast_tamer/goblin_beast_tamer_description.json)",
"jobs:beast_tamer": "file(jobs/beast_tamer/beast_tamer_description.json)",
"jobs:bonesmith": "file(jobs/bonesmith/bonesmith_description.json)",
"jobs:earthmaster": "file(jobs/earthmaster/earthmaster_description.json)",
"jobs:scavenger": "file(jobs/scavenger/scavenger_description.json)",
"jobs:shaman": "file(jobs/shaman/shaman_description.json)",
"jobs:spirit_walker": "file(jobs/spirit_walker/spirit_walker_description.json)",
"jobs:warrior": "file(jobs/warrior/warrior_description.json)",
"jobs:worker": "file(jobs/worker/worker_description.json)",
"jobs:npc:baby": "file(jobs/npc_baby/npc_baby_description.json)",
"jobs:npc:firefly_golem": "file(jobs/npc_firefly_golem/npc_firefly_golem_description.json)",
"kingdoms:celebration_npcs": "file(services/server/population/data/celebration_npcs.json)",
"kingdoms:firefly_clan": "file(data/firefly_clan_population.json)",
"kingdoms:firefly_human_encounter": "file(services/server/population/data/firefly_human_encounter.json)",
"kingdoms:warrior_hearth": "file(services/server/population/data/warrior_hearth.json)",
"landmark_blocks": "file(data/terrain/landmark_blocks.json)",
"landmark:firefly_nest": "file(entities/landmark/firefly_nest)",
"landmark:giant_mushroom": "file(entities/landmark/giant_mushroom)",
"landmark:mushroom_stone": "file(entities/landmark/mushroom_stone)",
"landmark:varanus_nest": "file(entities/landmark/varanus_nest)",
"landmark:king_stone": "file(entities/landmark/king_stone)",
"landmark:minerals": "file(entities/landmark/minerals)",
"landmark:waterfall": "file(entities/landmark/waterfall)",
"loot_bag:swamp:tree_random": "file(data/loot_bag/tree_random.json)",
"mixins:base_goblin":"file(mixins/base_goblin)",
"mixins:base_goblin_npc":"file(mixins/base_goblin_npc)",
"mixins:encounter:bear_raid":"file(mixins/encounter/mixin_bear_raid.json)",
"mixins:sign:wood": "file(mixins/sign/wood.json)",
"mixins:sign:wood_ghost": "file(mixins/sign/wood_ghost.json)",
"mixins:sign:wood_recipe": "file(mixins/sign/wood_recipe.json)",
"mixins:sign:stone": "file(mixins/sign/stone.json)",
"mixins:sign:stone_ghost": "file(mixins/sign/stone_ghost.json)",
"mixins:sign:stone_recipe": "file(mixins/sign/stone_recipe.json)",
"mixins:sign:clay": "file(mixins/sign/clay.json)",
"mixins:sign:clay_ghost": "file(mixins/sign/clay_ghost.json)",
"mixins:sign:clay_recipe": "file(mixins/sign/clay_recipe.json)",
"monsters:bear": "file(entities/monsters/bear)",
"monsters:bear:teeth_weapon": "file(entities/monsters/bear/bear_teeth.json)",
"monsters:bear:weak_teeth_weapon": "file(entities/monsters/bear/weak_bear_teeth.json)",
"monsters:doodles_egg_raider": "file(entities/monsters/doodles_egg_raider)",
"monsters:doodles_giant_egg_raider":"file(entities/monsters/doodles_egg_raider/giant.json)",
"monsters:golems:firefly_golem": "file(entities/monsters/golems/firefly_golem)",
"monsters:golems:firefly_golem:effect": "file(entities/monsters/golems/firefly_golem/effect.json)",
"monsters:swamp_zilla": "file(entities/monsters/swamp_zilla)",
"monsters:varanus": "file(entities/monsters/varanus_nest/varanus.json)",
"monsters:varanus_nest": "file(entities/monsters/varanus_nest)",
"monster_tuning:egg_raid": "file(data/monster_tuning/egg_raid)",
"monster_tuning:forest:easy_bear": "file(data/monster_tuning/forest/easy_bear.json)",
"monster_tuning:forest:medium_bear":"file(data/monster_tuning/forest/medium_bear.json)",
"monster_tuning:forest:giant_bear": "file(data/monster_tuning/forest/giant_bear.json)",
"monster_tuning:forest:insane_bear":"file(data/monster_tuning/forest/insane_bear.json)",
"monster_tuning:firefly_human_encounter:worker": "file(data/monster_tuning/firefly_human_encounter/worker.json)",
"monster_tuning:firefly_human_encounter:trapper": "file(data/monster_tuning/firefly_human_encounter/trapper.json)",
"monster_tuning:firefly_human_encounter:footman": "file(data/monster_tuning/firefly_human_encounter/footman.json)",
"monster_tuning:firefly_human_encounter:knight": "file(data/monster_tuning/firefly_human_encounter/knight.json)",
"monster_tuning:firefly_human_encounter:nina": "file(data/monster_tuning/firefly_human_encounter/nina.json)",
"monster_tuning:orcs:easy_footman": "file(data/monster_tuning/orcs/easy_footman.json)",
"monster_tuning:shrine:summon_allies": "file(data/monster_tuning/shrine/summon_allies.json)",
"monster_tuning:warrior_hearth:waves": "file(data/monster_tuning/warrior_hearth/waves.json)",
"monster_tuning:warrior_hearth:firefly:worker": "file(data/monster_tuning/warrior_hearth/firefly/worker.json)",
"monster_tuning:warrior_hearth:firefly:warrior": "file(data/monster_tuning/warrior_hearth/firefly/warrior.json)",
"monster_tuning:warrior_hearth:firefly:beast_tamer": "file(data/monster_tuning/warrior_hearth/firefly/beast_tamer.json)",
"monster_tuning:warrior_hearth:firefly:spirit_walker": "file(data/monster_tuning/warrior_hearth/firefly/spirit_walker.json)",
"monster_tuning:warrior_hearth:hearthling:archer": "file(data/monster_tuning/warrior_hearth/hearthling/archer.json)",
"monster_tuning:warrior_hearth:hearthling:cleric": "file(data/monster_tuning/warrior_hearth/hearthling/cleric.json)",
"monster_tuning:warrior_hearth:hearthling:footman": "file(data/monster_tuning/warrior_hearth/hearthling/footman.json)",
"monster_tuning:warrior_hearth:hearthling:knight": "file(data/monster_tuning/warrior_hearth/hearthling/knight.json)",
"monster_tuning:warrior_hearth:hearthling:paladin": "file(data/monster_tuning/warrior_hearth/hearthling/paladin.json)",
"monster_tuning:warrior_hearth:orc:cleric": "file(data/monster_tuning/warrior_hearth/orc/cleric.json)",
"monster_tuning:warrior_hearth:orc:footman": "file(data/monster_tuning/warrior_hearth/orc/footman.json)",
"monster_tuning:warrior_hearth:orc:kobold": "file(data/monster_tuning/warrior_hearth/orc/kobold.json)",
"monster_tuning:warrior_hearth:orc:ogre": "file(data/monster_tuning/warrior_hearth/orc/ogre.json)",
"monster_tuning:warrior_hearth:orc:warchief": "file(data/monster_tuning/warrior_hearth/orc/warchief.json)",
"monster_tuning:warrior_hearth:vanilla_goblin:boss": "file(data/monster_tuning/warrior_hearth/vanilla_goblin/boss.json)",
"monster_tuning:warrior_hearth:vanilla_goblin:wolf": "file(data/monster_tuning/warrior_hearth/vanilla_goblin/wolf.json)",
"monster_tuning:warrior_hearth:vanilla_goblin:thief": "file(data/monster_tuning/warrior_hearth/vanilla_goblin/thief.json)",
"monster_tuning:warrior_hearth:vanilla_goblin:marauder":"file(data/monster_tuning/warrior_hearth/vanilla_goblin/marauder.json)",
"music:audience": "file(entities/music/audience)",
"music:bongo": "file(entities/music/bongo)",
"music:xylophone": "file(entities/music/xylophone)",
"music:tier_1:day:allada": "file(data/music/day_music/allada.ogg)",
"music:tier_1:day:night-cave": "file(data/music/day_music/night-cave.ogg)",
"music:tier_1:day:silver-flame":"file(data/music/day_music/silver-flame.ogg)",
"music:tier_1:day:zanzibar": "file(data/music/day_music/zanzibar.ogg)",
"music:tier_2:day:infados": "file(data/music/day_music/infados.ogg)",
"music:tier_2:day:nightdreams": "file(data/music/day_music/nightdreams.ogg)",
"music:tier_2:day:river-fire": "file(data/music/day_music/river-fire.ogg)",
"music:tier_2:day:truth-in-the-stones": "file(data/music/day_music/truth-in-the-stones.ogg)",
"music:tier_3:day:anglozulu": "file(data/music/day_music/anglozulu.ogg)",
"music:tier_3:day:dubakupado": "file(data/music/day_music/dubakupado.ogg)",
"music:tier_3:day:rite-of-passage": "file(data/music/day_music/rite-of-passage.ogg)",
"music:tier_3:day:slow-heat": "file(data/music/day_music/slow-heat.ogg)",
"music:tier_1:night:accralate": "file(data/music/night_music/accralate.ogg)",
"music:tier_1:night:artifact": "file(data/music/night_music/artifact.ogg)",
"music:tier_1:night:kumasi": "file(data/music/night_music/kumasi.ogg)",
"music:tier_1:night:whimsy": "file(data/music/night_music/whimsy.ogg)",
"music:tier_2:night:adding-the-sun":"file(data/music/night_music/adding-the-sun.ogg)",
"music:tier_2:night:at-the-shore": "file(data/music/night_music/at-the-shore.ogg)",
"music:tier_2:night:birch-run": "file(data/music/night_music/birch-run.ogg)",
"music:tier_2:night:stompdance": "file(data/music/night_music/stompdance.ogg)",
"music:tier_3:night:bumba-crossing":"file(data/music/night_music/bumba-crossing.ogg)",
"music:tier_3:night:digya": "file(data/music/night_music/digya.ogg)",
"music:tier_3:night:energizing": "file(data/music/night_music/energizing.ogg)",
"music:tier_3:night:lotus": "file(data/music/night_music/lotus.ogg)",
"npc:merchants:firefly":"file(entities/npc/merchants/firefly.json)",
"plants:cattail": "file(entities/plants/cattail)",
"plants:cattail:seed": "file(entities/plants/cattail/seed)",
"plants:cattail:sprout":"file(entities/plants/cattail/sprout)",
"plants:giant_flower": "file(entities/plants/giant_flower)",
"plants:giant_flower:seed": "file(entities/plants/giant_flower/seed)",
"plants:giant_flower:sprout": "file(entities/plants/giant_flower/sprout)",
"plants:lilypad": "file(entities/plants/lilypad)",
"plants:lilypad:small": "file(entities/plants/lilypad/small_lilypad.json)",
"plants:lilypad:medium":"file(entities/plants/lilypad/medium_lilypad.json)",
"plants:lilypad:large": "file(entities/plants/lilypad/large_lilypad.json)",
"plants:log": "file(entities/plants/log)",
"plants:small_mushroom": "file(entities/plants/small_mushroom)",
"plants:mushroom": "file(entities/plants/mushroom)",
"plants:tall_mushroom": "file(entities/plants/tall_mushroom)",
"plants:mushroom_garden": "file(entities/plants/mushroom_garden)",
"plants:stone_mushroom_garden": "file(entities/plants/stone_mushroom_garden)",
"plants:clay_mushroom_garden": "file(entities/plants/clay_mushroom_garden)",
"portals:clay_door": "file(entities/construction/clay_door)",
"portals:clay_window_frame": "file(entities/construction/clay_window_frame)",
"portals:clay_window_frame_wide": "file(entities/construction/clay_window_frame_wide)",
"portals:stone_door": "file(entities/construction/stone_door)",
"portals:stone_window": "file(entities/construction/stone_window)",
"portals:wooden_door": "file(entities/construction/wooden_door)",
"portals:wooden_door_frame": "file(entities/construction/wooden_door_frame)",
"portals:wooden_double_door": "file(entities/construction/wooden_double_door)",
"portals:curtains_door": "file(entities/construction/curtains_door)",
"portals:wooden_window_frame": "file(entities/construction/wooden_window_frame)",
"portals:wooden_window_frame_wide": "file(entities/construction/wooden_window_frame_wide)",
"portals:wooden_window_frame_tall": "file(entities/construction/wooden_window_frame_tall)",
"refined:fiber":"file(entities/refined/fiber)",
"refined:jewel":"file(entities/refined/jewel)",
"resources:bear_pelt": "file(entities/resources/pelt/bear_pelt)",
"resources:cattail": "file(entities/resources/cattail)",
"resources:firefly_essense":"file(entities/resources/firefly_essense)",
"resources:giant_flower": "file(entities/resources/giant_flower)",
"scavenger:talisman": "file(jobs/scavenger/scavenger_backpack/scavenger_backpack_talisman.json)",
"shaman:dreamcatcher": "file(jobs/shaman/dreamcatcher)",
"shaman:talisman": "file(jobs/shaman/dreamcatcher/dreamcatcher_talisman.json)",
"shaman:workbench": "file(jobs/shaman/shaman_workbench)",
"shaman:firefly_token": "file(jobs/shaman/shaman_firefly_token)",
"shaman:egg_pedestal": "file(jobs/shaman/egg_pedestal)",
"shaman:brewing_stand": "file(jobs/shaman/brewing_stand)",
"skeletons:humanoid:baby":"file(data/rigs/entities/humans/skeletons/baby.json)",
"sounds:bongo_1": "file(data/sounds/instruments/bongo/bongo_1.ogg)",
"sounds:bongo_2": "file(data/sounds/instruments/bongo/bongo_2.ogg)",
"sounds:bongo_3": "file(data/sounds/instruments/bongo/bongo_3.ogg)",
"sounds:bongo_4": "file(data/sounds/instruments/bongo/bongo_4.ogg)",
"sounds:bongo_5": "file(data/sounds/instruments/bongo/bongo_5.ogg)",
"sounds:bongo_6": "file(data/sounds/instruments/bongo/bongo_6.ogg)",
"sounds:bongo_7": "file(data/sounds/instruments/bongo/bongo_7.ogg)",
"sounds:bongo_8": "file(data/sounds/instruments/bongo/bongo_8.ogg)",
"sounds:bongo_9": "file(data/sounds/instruments/bongo/bongo_9.ogg)",
"sounds:bongo_10": "file(data/sounds/instruments/bongo/bongo_10.ogg)",
"sounds:bongo_11": "file(data/sounds/instruments/bongo/bongo_11.ogg)",
"sounds:bongo_12": "file(data/sounds/instruments/bongo/bongo_12.ogg)",
"sounds:bongo_13": "file(data/sounds/instruments/bongo/bongo_13.ogg)",
"sounds:bongo_14": "file(data/sounds/instruments/bongo/bongo_14.ogg)",
"sounds:bongo_15": "file(data/sounds/instruments/bongo/bongo_15.ogg)",
"sounds:bongo_16": "file(data/sounds/instruments/bongo/bongo_16.ogg)",
"sounds:bongo_17": "file(data/sounds/instruments/bongo/bongo_17.ogg)",
"sounds:bongo_18": "file(data/sounds/instruments/bongo/bongo_18.ogg)",
"sounds:bongo_19": "file(data/sounds/instruments/bongo/bongo_19.ogg)",
"sounds:bongo_20": "file(data/sounds/instruments/bongo/bongo_20.ogg)",
"sounds:bongo_21": "file(data/sounds/instruments/bongo/bongo_21.ogg)",
"sounds:bongo_22": "file(data/sounds/instruments/bongo/bongo_22.ogg)",
"sounds:bongo_23": "file(data/sounds/instruments/bongo/bongo_23.ogg)",
"sounds:bongo_24": "file(data/sounds/instruments/bongo/bongo_24.ogg)",
"sounds:bongo_25": "file(data/sounds/instruments/bongo/bongo_25.ogg)",
"sounds:bongo_26": "file(data/sounds/instruments/bongo/bongo_26.ogg)",
"sounds:bongo_27": "file(data/sounds/instruments/bongo/bongo_27.ogg)",
"sounds:bongo_29": "file(data/sounds/instruments/bongo/bongo_29.ogg)",
"sounds:bongo_30": "file(data/sounds/instruments/bongo/bongo_30.ogg)",
"sounds:bongo_31": "file(data/sounds/instruments/bongo/bongo_31.ogg)",
"sounds:bongo_32": "file(data/sounds/instruments/bongo/bongo_32.ogg)",
"sounds:bongo_33": "file(data/sounds/instruments/bongo/bongo_33.ogg)",
"sounds:bongo_34": "file(data/sounds/instruments/bongo/bongo_34.ogg)",
"sounds:bongo_35": "file(data/sounds/instruments/bongo/bongo_35.ogg)",
"sounds:bongo_36": "file(data/sounds/instruments/bongo/bongo_36.ogg)",
"sounds:bongo_37": "file(data/sounds/instruments/bongo/bongo_37.ogg)",
"sounds:bongo_38": "file(data/sounds/instruments/bongo/bongo_38.ogg)",
"sounds:bongo_39": "file(data/sounds/instruments/bongo/bongo_39.ogg)",
"sounds:xylophone_1": "file(data/sounds/instruments/xylophone/xylophone_1.ogg)",
"sounds:xylophone_2": "file(data/sounds/instruments/xylophone/xylophone_2.ogg)",
"sounds:xylophone_3": "file(data/sounds/instruments/xylophone/xylophone_3.ogg)",
"sounds:xylophone_4": "file(data/sounds/instruments/xylophone/xylophone_4.ogg)",
"spirit_walker:staff": "file(jobs/spirit_walker/spirit_walker_staff)",
"spirit_walker:upgraded_staff": "file(jobs/spirit_walker/upgraded_staff)",
"spirit_walker:talisman": "file(jobs/spirit_walker/spirit_walker_staff/spirit_walker_staff_talisman.json)",
"spirit_walker:abilities:summon_spirits": "file(jobs/spirit_walker/spirit_walker_abilities/summon_spirits.json)",
"spirit_walker:abilities:spirit_ball": "file(jobs/spirit_walker/spirit_walker_abilities/spirit_ball.json)",
"spirit_walker:abilities:summon_big_g": "file(jobs/spirit_walker/spirit_walker_abilities/summon_big_g.json)",
"summons:big_g": "file(entities/summons/big_g)",
"summons:goblin_spirit":"file(entities/summons/goblin_spirit)",
"summons:beetle": "file(entities/summons/critters/beetle.json)",
"summons:bitsy_ant": "file(entities/summons/critters/bitsy_ant.json)",
"summons:doodles": "file(entities/summons/critters/doodles.json)",
"summons:frog": "file(entities/summons/critters/frog.json)",
"summons:poyo": "file(entities/summons/critters/poyo.json)",
"summons:rabbit": "file(entities/summons/critters/rabbit.json)",
"summons:racoon": "file(entities/summons/critters/racoon.json)",
"summons:red_fox_wolf": "file(entities/summons/critters/red_fox_wolf.json)",
"summons:squirrel": "file(entities/summons/critters/squirrel.json)",
"summons:varanus": "file(entities/summons/varanus)",
"summons:dragon_aura": "file(entities/summons/dragon_aura)",
"summons:big_wolf": "file(entities/summons/big_wolf)",
"summons:trap": "file(entities/summons/trap)",
"terrain:water_negative_pathfind":"file(entities/terrain/water_negative_pathfind)",
"trait_replacer": "file(data/traits/trait_replacer.json)",
"traits_index": "file(data/traits/traits_index.json)",
"traits:deviant_pigment": "file(data/traits/deviant_pigment)",
"traits:firefly_chaser": "file(data/traits/firefly_chaser)",
"traits:frog_companion": "file(data/traits/frog_companion)",
"traits:wolf_companion": "file(data/traits/wolf_companion)",
"traits:party_goblin": "file(data/traits/party_goblin)",
"traits:passion_beast_tamer": "file(data/traits/passion_beast_tamer)",
"traits:passion_bonesmith": "file(data/traits/passion_bonesmith)",
"traits:passion_earthmaster": "file(data/traits/passion_earthmaster)",
"traits:passion_shaman": "file(data/traits/passion_shaman)",
"traits:passion_spirit_walker": "file(data/traits/passion_spirit_walker)",
"traits:passion_warrior": "file(data/traits/passion_warrior)",
"trees:bogger:small": "file(entities/trees/bogger)",
"trees:bogger:small:stump": "file(entities/trees/bogger/stump.json)",
"trees:bogger:bud": "file(entities/trees/bogger/bud/bogger_plant_bud.json)",
"trees:bogger:seed": "file(entities/trees/bogger/seed/bogger_seed.json)",
"trees:bogger:sprout": "file(entities/trees/bogger/sprout/bogger_sprout.json)",
"trees:bogger:stem": "file(entities/trees/bogger/stem/bogger_plant_stem.json)",
"trees:cypress:small": "file(entities/trees/cypress)",
"trees:cypress:medium": "file(entities/trees/cypress/cypress_medium.json)",
"trees:cypress:medium:stump": "file(entities/trees/cypress/cypress_medium_stump.json)",
"trees:cypress:large": "file(entities/trees/cypress/cypress_large.json)",
"trees:cypress:large:stump": "file(entities/trees/cypress/cypress_large_stump.json)",
"trees:cypress:bud": "file(entities/trees/cypress/bud/cypress_plant_bud.json)",
"trees:cypress:seed": "file(entities/trees/cypress/seed/cypress_seed.json)",
"trees:cypress:sprout": "file(entities/trees/cypress/sprout/cypress_sprout.json)",
"trees:cypress:stem": "file(entities/trees/cypress/stem/cypress_plant_stem.json)",
"trees:dead:small": "file(entities/trees/dead)",
"trees:dead:small:stump": "file(entities/trees/dead/dead_stump.json)",
"trees:dead:medium": "file(entities/trees/dead/dead_medium.json)",
"trees:dead:medium:stump": "file(entities/trees/dead/dead_medium_stump.json)",
"trees:dead:large": "file(entities/trees/dead/dead_large.json)",
"trees:dead:large:stump": "file(entities/trees/dead/dead_large_stump.json)",
"trees:mangrove:small": "file(entities/trees/mangrove)",
"trees:mangrove:small:stump": "file(entities/trees/mangrove/stump.json)",
"trees:mangrove:bud": "file(entities/trees/mangrove/bud/mangrove_plant_bud.json)",
"trees:mangrove:seed": "file(entities/trees/mangrove/seed/mangrove_seed.json)",
"trees:mangrove:sprout": "file(entities/trees/mangrove/sprout/mangrove_sprout.json)",
"trees:mangrove:stem": "file(entities/trees/mangrove/stem/mangrove_plant_stem.json)",
"trees:swirl:small": "file(entities/trees/swirl)",
"trees:swirl:medium": "file(entities/trees/swirl/swirl_medium.json)",
"trees:swirl:large": "file(entities/trees/swirl/swirl_large.json)",
"warrior:talisman": "file(jobs/warrior/warrior_horn/warrior_horn_talisman.json)",
"warrior:abilities:multiple_targets": "file(jobs/warrior/warrior_abilities/multiple_targets.json)",
"warrior:abilities:poison_darts": "file(jobs/warrior/warrior_abilities/poison_darts.json)",
"weapons:crude_wooden_club":"file(entities/weapons/crude_wooden_club)",
"weapons:spear": "file(entities/weapons/spear)",
"weapons:crude_axe": "file(entities/weapons/crude_axe)",
"weapons:skull_basher": "file(entities/weapons/skull_basher)",
"weapons:stone_maul": "file(entities/weapons/stone_maul)",
"weapons:giant_bone_mace": "file(entities/weapons/giant_bone_mace)",
"weapons:giant_bone_axe": "file(entities/weapons/giant_bone_axe)",
"weapons:dart_tube": "file(entities/weapons/dart_tube)",
"weapons:poison_dart": "file(entities/weapons/poison_dart)",
"weapons:spirit_ball": "file(entities/weapons/spirit_ball)",
"weapons:stick": "file(entities/weapons/stick)",
"weapons:magma_sword": "file(entities/weapons/magma_sword)",
"weapons:paladin:bronze_mace": "file(entities/weapons/paladin/bronze_mace.json)",
"weapons:paladin:iron_mace": "file(entities/weapons/paladin/iron_mace.json)",
"weapons:paladin:stone_maul": "file(entities/weapons/paladin/stone_maul.json)",
"weather_stone":"file(entities/manipulation/weather_stone)",
"weather:foggy": "file(data/weather/foggy)",
"sky_settings:foggy": "file(data/weather/foggy/foggy_sky_settings.json)",
"worker:upgraded_outfit":"file(jobs/worker/upgraded_outfit)",
"worker:abilities:goblin":"file(jobs/worker/goblin_worker_abilities.json)",
"data:kingdom_level_costs:firefly_clan":"file(tower_defense/data/kingdoms/level_costs/firefly_clan.json)",
"towers:beast_tamer": "file(tower_defense/towers/beast_tamer)",
"towers:bonesmith": "file(tower_defense/towers/bonesmith)",
"towers:earthmaster": "file(tower_defense/towers/earthmaster)",
"towers:shaman": "file(tower_defense/towers/shaman)",
"towers:spirit_walker": "file(tower_defense/towers/spirit_walker)",
"towers:trapper": "file(tower_defense/towers/trapper)",
"towers:warrior": "file(tower_defense/towers/warrior)",
"towers:worker": "file(tower_defense/towers/worker)",
"towers:egg": "file(tower_defense/towers/egg.json)",
"towers:beast_tamer:weapon": "file(tower_defense/towers/beast_tamer/weapon.json)",
"towers:bonesmith:weapon": "file(tower_defense/towers/bonesmith/weapon.json)",
"towers:earthmaster:weapon": "file(tower_defense/towers/earthmaster/weapon.json)",
"towers:shaman:weapon": "file(tower_defense/towers/shaman/weapon.json)",
"towers:spirit_walker:weapon": "file(tower_defense/towers/spirit_walker/weapon.json)",
"towers:trapper:weapon": "file(tower_defense/towers/trapper/weapon.json)",
"towers:warrior:weapon": "file(tower_defense/towers/warrior/weapon.json)",
"towers:worker:weapon": "file(tower_defense/towers/worker/weapon.json)",
"towers:beast_tamer:weapon_damage": "file(tower_defense/towers/beast_tamer/weapon_damage.json)",
"towers:beast_tamer:weapon_utility": "file(tower_defense/towers/beast_tamer/weapon_utility.json)",
"towers:bonesmith:weapon_damage": "file(tower_defense/towers/bonesmith/weapon_damage.json)",
"towers:bonesmith:weapon_utility": "file(tower_defense/towers/bonesmith/weapon_utility.json)",
"towers:earthmaster:weapon_damage": "file(tower_defense/towers/earthmaster/weapon_damage.json)",
"towers:earthmaster:weapon_utility": "file(tower_defense/towers/earthmaster/weapon_utility.json)",
"towers:spirit_walker:weapon_damage": "file(tower_defense/towers/spirit_walker/weapon_damage.json)",
"towers:spirit_walker:weapon_utility": "file(tower_defense/towers/spirit_walker/weapon_utility.json)",
"towers:trapper:weapon_damage": "file(tower_defense/towers/trapper/weapon_damage.json)",
"towers:trapper:weapon_utility": "file(tower_defense/towers/trapper/weapon_utility.json)",
"towers:warrior:weapon_damage": "file(tower_defense/towers/warrior/weapon_damage.json)",
"towers:warrior:weapon_utility": "file(tower_defense/towers/warrior/weapon_utility.json)",
"towers:worker:weapon_utility": "file(tower_defense/towers/worker/weapon_utility.json)"
},
"deprecated_aliases":{
"consumables:appearance_potion":"file(entities/gizmos/deprecated)",
"consumables:body_potion": "file(entities/gizmos/deprecated)",
"consumables:mind_potion": "file(entities/gizmos/deprecated)",
"consumables:spirit_potion": "file(entities/gizmos/deprecated)",
"consumables:happy_potion": "file(entities/gizmos/deprecated)",
"consumables:memory_potion": "file(entities/gizmos/deprecated)",
"consumables:small_healing": "file(entities/gizmos/deprecated)",
"consumables:large_healing": "file(entities/gizmos/deprecated)",
"consumables:speed_potion": "file(entities/gizmos/deprecated)",
"consumables:teleport_potion": "file(entities/gizmos/deprecated)"
},
"mixintos" : {
"stonehearth:ai_pack:free_time": "file(ai/packs/free_time_ai_pack.json)",
"stonehearth_ace:beehive": "file(entities/critters/beehive/beehive.json)",
"stonehearth:biome:index": "file(data/biome/index.json)",
"candledark:buffs:plagued":"file(candledark/plagued.json)",
"stonehearth:build:brushes" : "file(data/build/building_brushes.json)",
"stonehearth:building_templates:index": "file(data/saved_objects/building_templates_index.json)",
"archipelago_biome:building_templates:index": "file(data/saved_objects/fisher_templates.json)",
"trapper_plus:building_templates:index": "file(data/saved_objects/trapper_plus_templates.json)",
"stonehearth_ace:beekeeping_hat:simple": "file(jobs/common/simple_beekeeping_hat)",
"stonehearth_ace:combat:outfit:freezing": "file(jobs/common/freezing_combat_outfit)",
"stonehearth_ace:field_work:outfit:freezing": "file(jobs/common/freezing_field_work_outfit)",
"stonehearth_ace:construction:simple:water_well": "file(entities/construction/simple_water_well)",
"stonehearth:data:constants": "file(data/constants.json)",
"extra_map_options:data:extra_map_options":"file(data/extra_map_options.json)",
"archipelago_biome:data:fishing": "file(data/fishing)",
"stonehearth_ace:data:herbalist_planter:allowed_crops": "file(data/herbalist_planters/allowed_crops.json)",
"stonehearth_ace:data:herbalist_planter:crops": "file(data/herbalist_planters/crops.json)",
"stonehearth:data:gm_index": "swamp_goblins:data:gm_index",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/discovery_arc.json":"file(data/gm/campaigns/amberstone/arcs/trigger/discovery/discovery_arc.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/quest_entry.json":"file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/quest_entry.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/stage_transition_generator.json":"file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/stage_transition_generator.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/02_hello/02a_hello_friend_intro.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/02_hello/02a_hello_friend_intro.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/11_shook_down/11_shook_down_intro.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/11_shook_down/11_shook_down_intro.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/12_heirbloom/12_heirbloom_entry.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/12_heirbloom/12_heirbloom_entry.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/14_chase_scene/14_chase_scene_intro.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/14_chase_scene/14_chase_scene_intro.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/15_crystal_charging/15_crystal_charging_intro.json":"file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/15_crystal_charging/15_crystal_charging_intro.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/23_borrow_crafter/23_borrow_crafter_entry.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/23_borrow_crafter/23_borrow_crafter_entry.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/23_borrow_crafter/borrow_intro_trapper.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/23_borrow_crafter/borrow_intro_trapper.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/20_partnership/20_partnership_set_stage.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/20_partnership/20_partnership_set_stage.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/30_geomancy/30_geomancy_set_stage.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/30_geomancy/30_geomancy_set_stage.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/40_recipe_sharing/40_recipe_sharing_set_stage.json":"file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/40_recipe_sharing/40_recipe_sharing_set_stage.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/50_titan/50_titan_set_stage.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/50_titan/50_titan_set_stage.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/50_titan/50_titan_dialog.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/50_titan/50_titan_dialog.json)",
"stonehearth/data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/50_titan/59_wait_group_titan_already_killed.json": "file(data/gm/campaigns/amberstone/arcs/trigger/discovery/encounters/50_titan/59_wait_group_titan_already_killed.json)",
"stonehearth:gm:campaigns:arcs:ambient_threats": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/ambient_threats_arc.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/randomize_daily_threat.json": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/randomize_daily_threat.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/randomize_advanced_threats.json":"file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/randomize_advanced_threats.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/easy_raids.json": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/easy_raids.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/medium_raids.json": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/medium_raids.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/hard_raids.json": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/hard_raids.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/epic_1_raids.json": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/epic_1_raids.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/epic_2_raids.json": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/epic_2_raids.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/epic_4_raids.json": "file(data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/trash_mobs/raid_difficulty/epic_4_raids.json)",
"stonehearth/data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/dragonborn_king_arc.json": "file(data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/dragonborn_king_arc.json)",
"stonehearth/data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/encounters/spawn_enemy_entities.json": "file(data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/encounters/spawn_enemy_entities.json)",
"stonehearth/data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/encounters/wait_for_enemy_death.json": "file(data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/encounters/wait_for_enemy_death.json)",
"stonehearth/data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/encounters/dialog_thank_player_for_help.json": "file(data/gm/campaigns/dragonborn_king/arcs/trigger/dragonborn_king/encounters/dialog_thank_player_for_help.json)",
"stonehearth_ace/data/gm/campaigns/friendly_strangers/arcs/trigger/encounters/wait_for_fisher_requirements.json": "file(data/gm/campaigns/friendly_strangers/arcs/trigger/encounters/wait_for_stranger_requirements.json)",
"stonehearth_ace/data/gm/campaigns/friendly_strangers/arcs/trigger/encounters/wait_for_healer_requirements.json": "file(data/gm/campaigns/friendly_strangers/arcs/trigger/encounters/wait_for_stranger_requirements.json)",
"stonehearth_ace/data/gm/campaigns/friendly_strangers/arcs/trigger/encounters/wait_for_smith_requirements.json": "file(data/gm/campaigns/friendly_strangers/arcs/trigger/encounters/wait_for_stranger_requirements.json)",
"stonehearth/data/gm/campaigns/orc_war/arcs/trigger/old_khan/encounters/grant_orc_citizen.json": "file(data/gm/campaigns/orc_war/arcs/trigger/old_khan/encounters/add_beast_tamer_job.json)",
"stonehearth/data/gm/campaigns/orc_war/arcs/trigger/old_khan/encounters/grant_recurring_orc_citizen.json": "file(data/gm/campaigns/orc_war/arcs/trigger/old_khan/encounters/add_beast_tamer_job.json)",
"stonehearth/data/gm/campaigns/trader/trader_campaign.json": "file(data/gm/campaigns/trader/trader_campaign.json)",
"stonehearth/data/gm/campaigns/trader/arcs/caravan_shops_arc.json": "file(data/gm/campaigns/trader/arcs/caravan_shops_arc.json)",
"stonehearth/data/gm/campaigns/trader/arcs/encounters/tier_1_shops/tier_1_shops.json": "file(data/gm/campaigns/trader/arcs/encounters/tier_1_shops)",
"stonehearth/data/gm/campaigns/trader/arcs/encounters/tier_2_shops/tier_2_shops.json": "file(data/gm/campaigns/trader/arcs/encounters/tier_2_shops)",
"stonehearth/data/gm/campaigns/trader/arcs/encounters/tier_3_shops/tier_3_shops.json": "file(data/gm/campaigns/trader/arcs/encounters/tier_3_shops)",
"rayyas_children/data/gm/campaigns/trader/arcs/caravan_shops_arc.json": "file(data/gm/campaigns/trader/arcs/caravan_shops_arc.json)",
"rayyas_children/data/gm/campaigns/trader/arcs/encounters/tier_1_shops/tier_1_shops.json": "file(data/gm/campaigns/trader/arcs/encounters/tier_1_shops)",
"rayyas_children/data/gm/campaigns/trader/arcs/encounters/tier_2_shops/tier_2_shops.json": "file(data/gm/campaigns/trader/arcs/encounters/tier_2_shops)",
"rayyas_children/data/gm/campaigns/trader/arcs/encounters/tier_3_shops/tier_3_shops.json": "file(data/gm/campaigns/trader/arcs/encounters/tier_3_shops)",
"stonehearth/data/gm/campaigns/trader/arcs/encounters/returning_crop_trader_encounter.json": "file(data/gm/campaigns/trader/arcs/encounters/returning_crop_trader_encounter.json)",
"rayyas_children/data/gm/campaigns/trader/arcs/encounters/returning_crop_trader_encounter.json":"file(data/gm/campaigns/trader/arcs/encounters/returning_crop_trader_encounter.json)",
"stonehearth/data/gm/campaigns/trader/arcs/encounters/na_returning_crop_trader_encounter.json": "file(data/gm/campaigns/trader/arcs/encounters/returning_crop_trader_encounter.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/goblin_raider_camp.json":"file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth/data/gm/campaigns/ambient_threats/arcs/trigger/ambient_threats/encounters/goblin_thief_camp.json": "file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth/data/gm/campaigns/game_events/arcs/trigger/game_events/encounters/generate_daily_report.json": "file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth/data/gm/campaigns/goblin_war/goblin_war_campaign.json": "file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth/data/gm/campaigns/orc_war/orc_war_campaign.json": "file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth/data/gm/campaigns/trader/arcs/encounters/tier_1_shops/weapon_armor_shop_1.json": "file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth_ace:mixins:encounter:goblin_raid": "file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth_ace/data/gm/campaigns/bonecarving/bonecarving_campaign.json": "file(data/gm/campaigns/remove_firefly_clan.json)",
"stonehearth_ace:data:merchants:exotic_goods": "file(data/mercantile/merchants/exotic_goods.json)",
"stonehearth:data:npc_index": "file(data/npc_index.json)",
"stonehearth:data:resource_constants": "file(data/resource_constants.json)",
"stonehearth:data:sound_constants": "swamp_goblins:data:sound_constants",
"stonehearth:data:thoughts": "file(data/happiness/thoughts.json)",
"stonehearth/data/ui/start_menu.json":"file(data/ui/start_menu.json)",
"stonehearth:farmer:initial_crops": "file(services/server/farming/data/initial_crops.json)",
"stonehearth:farmer:all_crops": "file(services/server/farming/data/all_crops.json)",
"archipelago_biome:food:big_fish": "swamp_goblins:food:edible_for_goblins",
"archipelago_biome:food:crab": "swamp_goblins:food:edible_for_goblins",
"archipelago_biome:food:fish": "swamp_goblins:food:edible_for_goblins",
"archipelago_biome:food:nemo": "swamp_goblins:food:edible_for_goblins",
"archipelago_biome:food:tropical_fish": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:egg": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:egg_large": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:mutton": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:pork": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:poultry_large": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:poyo_meat": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:sausage": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:varanus_meat": "swamp_goblins:food:edible_for_goblins",
"stonehearth:food:venison": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:duck_meat": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:egg:duck": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:fish_meat": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:fish_meat:carp": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:fish_meat:catfish": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:fish_meat:salmon": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:fish_meat:trout": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:food:steak": "swamp_goblins:food:edible_for_goblins",
"stonehearth_ace:gizmos:brass_training_dummy": "file(entities/gizmos/training_dummy)",
"stonehearth_ace:gizmos:clay_training_dummy": "file(entities/gizmos/training_dummy)",
"stonehearth_ace:gizmos:stone_training_dummy": "file(entities/gizmos/training_dummy)",
"stonehearth_ace:gizmos:training_dummy": "file(entities/gizmos/training_dummy)",
"stonehearth:kingdoms:forest": "file(services/server/population/data/forest_population.json)",
"stonehearth:kingdoms:human_npcs": "file(services/server/population/data/human_npc_population.json)",
"stonehearth:jobs:index": "file(jobs/index.json)",
"swamp_goblins:jobs:bonesmith": "stonehearth_ace/swamp_goblins/jobs/common/ace_description.json",
"swamp_goblins:jobs:earthmaster":[
"stonehearth_ace/swamp_goblins/jobs/common/ace_description.json",
"stonehearth_ace/swamp_goblins/jobs/earthmaster/ace_earthmaster_description.json"
],
"swamp_goblins:jobs:shaman":[
"stonehearth_ace/swamp_goblins/jobs/common/ace_description.json",
"stonehearth_ace/swamp_goblins/jobs/shaman/ace_shaman_description.json"
],
"swamp_goblins:jobs:worker": "stonehearth_ace/swamp_goblins/jobs/common/ace_description.json",
"stonehearth:jobs:trapper": "file(jobs/trapper/trapper_description.json)",
"nordlingmod:jobs:ruler_firefly": "file(jobs/ruler/ruler_description_firefly.json)",
"swamp_goblins:jobs:npc:firefly_golem": "stonehearth_ace/swamp_goblins/jobs/common/ace_description.json",
"swamp_goblins/jobs/bonesmith/bonesmith_abilities/bonesmith_abilities.json": "stonehearth_ace/swamp_goblins/jobs/common/ace_abilities.json",
"swamp_goblins/jobs/earthmaster/earthmaster_abilities/earthmaster_abilities.json": "stonehearth_ace/swamp_goblins/jobs/common/ace_abilities.json",
"swamp_goblins/jobs/scavenger/scavenger_abilities/scavenger_abilities.json": "stonehearth_ace/swamp_goblins/jobs/common/ace_abilities.json",
"swamp_goblins/jobs/shaman/shaman_abilities/shaman_abilities.json":[
"stonehearth_ace/swamp_goblins/jobs/common/ace_abilities.json",
"stonehearth_ace/swamp_goblins/jobs/shaman/shaman_abilities/ace_abilities.json"
],
"swamp_goblins/jobs/worker/goblin_worker_abilities.json": "stonehearth_ace/swamp_goblins/jobs/common/ace_abilities.json",
"swamp_goblins/jobs/warrior/warrior_abilities/warrior_abilities.json":"stonehearth_ace/swamp_goblins/jobs/footman/ace_footman_abilities.json",
"stonehearth/jobs/carpenter/recipes/recipes.json": "file(jobs/carpenter/recipes)",
"stonehearth/jobs/engineer/recipes/recipes.json": "file(jobs/engineer/recipes)",
"stonehearth/jobs/herbalist/recipes/recipes.json": "file(jobs/herbalist/recipes)",
"stonehearth/jobs/geomancer/recipes/geomancer_recipes.json":"file(jobs/geomancer/recipes)",
"stonehearth/jobs/weaver/recipes/recipes.json": "file(jobs/weaver/recipes)",
"swamp_goblins/jobs/bonesmith/recipes/recipes.json":"stonehearth_ace/swamp_goblins/jobs/bonesmith/ace_recipes/ace_recipes.json",
"swamp_goblins/jobs/shaman/recipes/recipes.json":[
"stonehearth_ace/swamp_goblins/jobs/shaman/ace_recipes/ace_recipes.json",
"candledark/swamp_goblins/jobs/herbalist/recipes/recipes.json"
],
"stonehearth_ace:herbalist:bee_skep": "file(jobs/herbalist/herbalist_bee_skep/herbalist_bee_skep.json)",
"stonehearth_ace:herbalist:bee_skep:empty": "file(jobs/herbalist/herbalist_bee_skep/herbalist_bee_skep_empty.json)",
"stonehearth:geomancer:outfit": "file(jobs/geomancer/geomancer_outfit)",
"stonehearth_ace/jobs/geomancer/geomancer_outfit/geomancer_outfit_hat/geomancer_outfit_hat.json":"file(jobs/geomancer/geomancer_outfit/geomancer_outfit_hat.json)",
"stonehearth:trapper:outfit": "file(jobs/trapper/trapper_outfit)",
"stonehearth:mixins:worker_outfit": "file(jobs/worker/worker_outfit/mixin_worker_outfit.json)",
"swamp_goblins:worker:upgraded_outfit":"stonehearth_ace/swamp_goblins/jobs/worker/upgraded_outfit/ace_buffs.json",
"stonehearth:blacksmith:forge": "file(jobs/earthmaster/magmasmith_workbench/equivalents.json)",
"stonehearth:blacksmith:workbench": "file(jobs/earthmaster/magmasmith_workbench/equivalents.json)",
"stonehearth:carpenter:toolbench": "file(jobs/bonesmith/bonesmith_workbench/equivalents.json)",
"stonehearth:carpenter:workbench": "file(jobs/bonesmith/bonesmith_workbench/equivalents.json)",
"stonehearth:cook:workbench": "file(jobs/shaman/shaman_workbench/equivalents.json)",
"stonehearth:herbalist:workbench": "file(jobs/shaman/shaman_workbench/equivalents.json)",
"stonehearth:mason:pedestal": "file(jobs/earthmaster/mason_pedestal/equivalents.json)",
"stonehearth:mason:workbench": "file(jobs/earthmaster/mason_pedestal/equivalents.json)",
"stonehearth:potter:kiln": "file(jobs/earthmaster/potter_kiln/equivalents.json)",
"stonehearth:potter:workbench": "file(jobs/earthmaster/potter_workbench/equivalents.json)",
"stonehearth:weaver:workbench": "file(jobs/bonesmith/weaving_table/equivalents.json)",
"stonehearth_ace:mason:workbench_bone": "file(jobs/bonesmith/bonesmith_workbench/equivalents.json)",
"stonehearth:monsters:avian:duckduck": "file(entities/monsters/avian/nerf.json)",
"stonehearth:monsters:avian:ostrich": "file(entities/monsters/avian/nerf.json)",
"stonehearth_ace:mixins:market_stall:tier_1": "file(mixins/market_stall/market_stall_tier_1.json)",
"stonehearth_ace:mixins:market_stall:tier_2": "file(mixins/market_stall/market_stall_tier_2.json)",
"stonehearth_ace:mixins:market_stall:tier_3": "file(mixins/market_stall/market_stall_tier_3.json)",
"stonehearth:personal_logs:dreams": "file(data/personality/dreams.json)",
"stonehearth:playable_kingdom_index": "file(data/playable_kingdom_index.json)",
"stonehearth:scenarios:scenario_index": "file(scenarios/scenario_index.json)",
"stonehearth/scenarios/static/beetle_nest/beetle_nest.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/doodles_nest/doodles_nest.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/duckduck_nest/duckduck_nest.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/ostrich_nest/ostrich_nest.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_cave_lake.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_cave_ore_bad_omen.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_cave_ore_lucky_strike.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_cave_ore_small_strike.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_cave_pattern_lucky_snake.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_cave_pattern_ugly_duckling.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_cave_sanctuary.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_ruin_building.json":"file(scenarios/static/add_to_swamp_too.json)",
"stonehearth/scenarios/static/landmarks/64x_ruin_building_cellar.json":"file(scenarios/static/add_to_swamp_too.json)",