forked from Siyalatas/PKs_Rebalancing
-
Notifications
You must be signed in to change notification settings - Fork 13
/
mod_tileset.json
2198 lines (2198 loc) · 126 KB
/
mod_tileset.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
[
{
"type": "mod_tileset",
"compatibility": [ "UNDEAD_PEOPLE_BASE", "UNDEAD_PEOPLE", "MshockXottoplus" ],
"tiles-new": [
{
"file": "pks_rebalancing_normal.png",
"tiles": [
{ "id": "hammer", "fg": 1, "rotates": false },
{ "id": "overlay_wielded_hammer", "fg": 2, "rotates": false },
{ "id": "wasp_sting", "fg": 3, "rotates": false },
{ "id": "overlay_wielded_wasp_sting", "fg": 4, "rotates": false },
{ "id": "acid", "fg": 5, "rotates": false },
{ "id": "bg_car", "fg": 6, "rotates": false },
{ "id": "bg_dirt", "fg": 7, "rotates": false },
{ "id": "bg_metal_block", "fg": 8, "rotates": false },
{ "id": "bg_shaddow_custom1", "fg": 9, "rotates": false },
{ "id": "bg_shaddow_custom2", "fg": 10, "rotates": false },
{ "id": "bg_shaddow_custom3", "fg": 11, "rotates": false },
{ "id": "bg_shaddow_custom5", "fg": 12, "rotates": false },
{ "id": "bg_shadow_item", "fg": 13, "rotates": false },
{ "id": "bg_shadow_normal", "fg": 14, "rotates": false },
{ "id": "bg_snow", "fg": 15, "rotates": false },
{ "id": "bg_t_dirt10", "fg": 16, "rotates": true },
{ "id": "bg_t_dirt11", "fg": 17, "rotates": true },
{ "id": "bg_t_dirt12", "fg": 18, "rotates": true },
{ "id": "bg_t_dirt2", "fg": 19, "rotates": true },
{ "id": "bg_t_dirt3", "fg": 20, "rotates": true },
{ "id": "bg_t_dirt4", "fg": 21, "rotates": true },
{ "id": "bg_t_dirt5", "fg": 22, "rotates": true },
{ "id": "bg_t_dirt6", "fg": 23, "rotates": true },
{ "id": "bg_t_dirt7", "fg": 24, "rotates": true },
{ "id": "bg_t_dirt8", "fg": 25, "rotates": true },
{ "id": "bg_t_dirt9", "fg": 26, "rotates": true },
{ "id": "bg_t_floor", "fg": 27, "rotates": false },
{ "id": "bg_t_sidewalk", "fg": 28, "rotates": false },
{ "id": "energy_drink_atomic", "fg": 29, "rotates": false },
{ "id": "lemonlime", "fg": 30, "rotates": false },
{ "id": "plut_slurry", "fg": 31 },
{ "id": "sewage", "fg": 32, "rotates": false },
{ "id": "water_sewage", "fg": 33 },
{ "id": "acidbomb_large", "fg": 34 },
{ "id": "acidbomb_small", "fg": 35 },
{ "id": "bfg_shell", "fg": 36, "rotates": false },
{ "id": "bfg_shell_act", "fg": 37, "rotates": false },
{ "id": "bomblet_acid", "fg": 38 },
{ "id": "bomblet_casing", "fg": 39, "rotates": false },
{ "id": "bomblet_explosive", "fg": 40 },
{ "id": "bomblet_fire", "fg": 41 },
{ "id": "bomblet_frag", "fg": 42 },
{ "id": "bomblet_stun", "fg": 43 },
{ "id": "bomblet_stun_act", "fg": 44 },
{ "id": "brute_shot_mag", "fg": 45, "rotates": false },
{ "id": "chime_scrap", "fg": 46, "rotates": false },
{ "id": "chime_scrap_act", "fg": 47, "rotates": false },
{ "id": "molotov_micro", "fg": 48, "rotates": false },
{ "id": "molotov_micro_act", "fg": 49, "rotates": false },
{ "id": "shot_410", "fg": 50, "bg": 13, "rotates": false },
{ "id": "shot_410_flechette", "fg": 51, "bg": 13, "rotates": false },
{ "id": "shot_410_flechette_reloaded", "fg": 52, "bg": 13, "rotates": false },
{ "id": "shot_410_hull", "fg": 53, "bg": 13, "rotates": false },
{ "id": "shot_410_inc", "fg": 54, "bg": 13, "rotates": false },
{ "id": "shot_410_inc_reloaded", "fg": 55, "bg": 13, "rotates": false },
{ "id": "shot_410_reloaded", "fg": 56, "bg": 13, "rotates": false },
{ "id": "shot_410_slug", "fg": 57, "bg": 13, "rotates": false },
{ "id": "shot_410_slug_reloaded", "fg": 58, "bg": 13, "rotates": false },
{ "id": "water_smoke", "fg": 59 },
{ "id": "bomblet_archdemon", "fg": 60, "rotates": false },
{ "id": "bomblet_archvile", "fg": 61, "rotates": false },
{ "id": "bomblet_archvile_act", "fg": 62, "rotates": false },
{ "id": "bomblet_chickenbot", "fg": 63, "rotates": false },
{ "id": "bomblet_chickenbot_act", "fg": 64, "rotates": false },
{ "id": "bomblet_vile", "fg": 65, "rotates": false },
{ "id": "bomblet_vile_act", "fg": 66 },
{ "id": "cyber_rocket", "fg": 67, "rotates": false },
{ "id": "flaming_ball", "fg": 68 },
{ "id": "flaming_skull", "fg": 69, "rotates": false },
{ "id": "hell_laser", "fg": 70 },
{ "id": "hell_laser_queen", "fg": 71 },
{ "id": "hell_napalm", "fg": 72 },
{ "id": "hell_plasma_b", "fg": 73, "rotates": false },
{ "id": "hell_plasma_c", "fg": 74, "rotates": false },
{ "id": "hell_plasma_k", "fg": 75, "rotates": false },
{ "id": "armguard_larmor_mod", "fg": 76, "bg": 13 },
{ "id": "overlay_worn_armguard_larmor_mod", "fg": 77, "rotates": false },
{ "id": "bandolier_bomblet", "fg": 78 },
{ "id": "helmet_bone_megabear", "fg": 79, "rotates": false },
{ "id": "overlay_worn_helmet_bone_megabear", "fg": 80, "rotates": false },
{ "id": "kevlar_tee", "fg": 81, "rotates": false },
{ "id": "overlay_worn_kevlar_tee", "fg": 82, "rotates": false },
{ "id": "megaarmor_armguards_1", "fg": 83, "rotates": false },
{ "id": "overlay_worn_megaarmor_armguards_1", "fg": 84, "rotates": false },
{ "id": "megaarmor_boots_1", "fg": 85, "rotates": false },
{ "id": "overlay_worn_megaarmor_boots_1", "fg": 86, "rotates": false },
{ "id": "megaarmor_gloves_1", "fg": 87 },
{ "id": "overlay_worn_megaarmor_gloves_1", "fg": 88, "rotates": false },
{ "id": "megaarmor_head_1", "fg": 89, "rotates": false },
{ "id": "overlay_worn_megaarmor_head_1", "fg": 90, "rotates": false },
{ "id": "megaarmor_leggings_1", "fg": 91, "bg": 13, "rotates": false },
{ "id": "overlay_worn_megaarmor_leggings_1", "fg": 92, "rotates": false },
{ "id": "megaarmor_torso_1", "fg": 93, "rotates": false },
{ "id": "overlay_worn_megaarmor_torso_1", "fg": 94, "rotates": false },
{ "id": "megaarmor_torso_2", "fg": 95, "bg": 13, "rotates": false },
{ "id": "overlay_worn_megaarmor_torso_2", "fg": 96, "rotates": false },
{ "id": "megaarmor_torso_3", "fg": 97, "rotates": false },
{ "id": "overlay_worn_megaarmor_torso_3", "fg": 98, "rotates": false },
{ "id": "megaarmor_torso_3_act", "fg": 99, "rotates": false },
{ "id": "overlay_worn_megaarmor_torso_3_act", "fg": 100, "rotates": false },
{ "id": "sac_purse", "fg": 101, "bg": 13, "rotates": false },
{ "id": "overlay_worn_sac_purse", "fg": 102, "rotates": false },
{ "id": "sac_purse_ankle", "fg": 103, "rotates": false },
{ "id": "sac_purse_arm", "fg": 104, "rotates": false },
{ "id": "overlay_worn_sac_purse_arm", "fg": 105, "rotates": false },
{ "id": "sac_purse_clean_water", "fg": 106, "rotates": false },
{ "id": "sac_purse_clean_water_ankle", "fg": 107, "rotates": false },
{ "id": "sac_purse_clean_water_arm", "fg": 108, "rotates": false },
{ "id": "sac_purse_clean_water_leg", "fg": 109, "rotates": false },
{ "id": "sac_purse_leg", "fg": 110, "rotates": false },
{ "id": "overlay_worn_sac_purse_leg", "fg": 111, "rotates": false },
{ "id": "swat_shield", "fg": 112, "rotates": false },
{ "id": "overlay_worn_swat_shield", "fg": 113, "rotates": false },
{ "id": "swat_shield_act", "fg": 114, "rotates": false },
{ "id": "overlay_worn_swat_shield_act", "fg": 115, "rotates": false },
{ "id": "turtleneck", "fg": 116, "rotates": false },
{ "id": "overlay_worn_turtleneck", "fg": 117, "rotates": false },
{ "id": "turtleneck_rolled", "fg": 118, "rotates": false },
{ "id": "overlay_worn_turtleneck_rolled", "fg": 119, "rotates": false },
{ "id": "vest_leather_zuicide_short", "fg": 120, "rotates": false },
{ "id": "overlay_worn_vest_leather_zuicide_short", "fg": 121, "rotates": false },
{ "id": "vest_leather_zuicide_short_active", "fg": 122, "rotates": false },
{ "id": "overlay_worn_vest_leather_zuicide_short_active", "fg": 123, "rotates": false },
{ "id": "diamond_dental_grill", "fg": 124, "rotates": false },
{ "id": "overlay_worn_diamond_dental_grill", "fg": 125, "rotates": false },
{ "id": "dive_bag", "fg": 126 },
{ "id": "overlay_worn_dive_bag", "fg": 127, "rotates": false },
{ "id": "diving_watch", "fg": 128 },
{ "id": "duster", "fg": 129, "bg": 13, "rotates": false },
{ "id": "overlay_worn_duster", "fg": 130, "rotates": false },
{ "id": "duster_survivor", "fg": 131, "bg": 13 },
{ "id": "overlay_worn_duster_survivor", "fg": 132, "rotates": false },
{ "id": "fancy_sunglasses", "fg": 133, "bg": 13, "rotates": false },
{ "id": "overlay_worn_fancy_sunglasses", "fg": 134, "rotates": false },
{ "id": "fireman_belt", "fg": 135 },
{ "id": "overlay_worn_fireman_belt", "fg": 136, "rotates": false },
{ "id": "fitover_sunglasses", "fg": 137, "rotates": false },
{ "id": "overlay_worn_fitover_sunglasses", "fg": 138, "rotates": false },
{ "id": "fur_cat_ears", "fg": 139, "bg": 13, "rotates": false },
{ "id": "overlay_worn_fur_cat_ears", "fg": 140, "rotates": false },
{ "id": "fur_cat_tail", "fg": 141, "bg": 13, "rotates": false },
{ "id": "overlay_worn_fur_cat_tail", "fg": 142, "rotates": false },
{ "id": "glasses_bal", "fg": 143, "bg": 13, "rotates": false },
{ "id": "overlay_worn_glasses_bal", "fg": 144, "rotates": false },
{ "id": "glasses_bifocal", "fg": 145 },
{ "id": "overlay_worn_glasses_bifocal", "fg": 146, "rotates": false },
{ "id": "glasses_eye", "fg": 147 },
{ "id": "overlay_worn_glasses_eye", "fg": 148, "rotates": false },
{ "id": "glasses_monocle", "fg": 149, "bg": 13, "rotates": false },
{ "id": "overlay_worn_glasses_monocle", "fg": 150, "rotates": false },
{ "id": "glasses_reading", "fg": 151, "rotates": false },
{ "id": "overlay_worn_glasses_reading", "fg": 152, "rotates": false },
{ "id": "glasses_safety", "fg": 153, "bg": 13, "rotates": false },
{ "id": "overlay_worn_glasses_safety", "fg": 154, "rotates": false },
{ "id": "goggles_ski", "fg": 155, "bg": 13, "rotates": false },
{ "id": "overlay_worn_goggles_ski", "fg": 156, "rotates": false },
{ "id": "goggles_swim", "fg": 157, "bg": 13, "rotates": false },
{ "id": "overlay_worn_goggles_swim", "fg": 158, "rotates": false },
{ "id": "goggles_welding", "fg": 159, "bg": 13, "rotates": false },
{ "id": "overlay_worn_goggles_welding", "fg": 160, "rotates": false },
{ "id": "gold_dental_grill", "fg": 161, "rotates": false },
{ "id": "overlay_worn_gold_dental_grill", "fg": 162, "rotates": false },
{ "id": "gold_watch", "fg": 163, "rotates": false },
{ "id": "harmonica_holder", "fg": 164, "bg": 13, "rotates": false },
{ "id": "overlay_worn_harmonica_holder", "fg": 165, "rotates": false },
{ "id": "jacket_leather_mod", "fg": 166, "rotates": false },
{ "id": "overlay_worn_jacket_leather_mod", "fg": 167, "rotates": false },
{ "id": "leather_cat_ears", "fg": 168, "bg": 13, "rotates": false },
{ "id": "overlay_worn_leather_cat_ears", "fg": 169, "rotates": false },
{ "id": "leather_cat_tail", "fg": 170, "bg": 13, "rotates": false },
{ "id": "overlay_worn_leather_cat_tail", "fg": 171, "rotates": false },
{ "id": "mask_dust", "fg": 172, "rotates": false },
{ "id": "overlay_worn_mask_dust", "fg": 173, "rotates": false },
{ "id": "mask_filter", "fg": 174, "rotates": false },
{ "id": "overlay_worn_mask_filter", "fg": 175, "rotates": false },
{ "id": "rad_monitor", "fg": 176, "bg": 13, "rotates": false },
{ "id": "rx11_stimpack", "fg": 177 },
{ "id": "sf_watch", "fg": 178, "rotates": false },
{ "id": "sleeveless_duster", "fg": 179, "bg": 13 },
{ "id": "overlay_worn_sleeveless_duster", "fg": 180, "rotates": false },
{ "id": "sleeveless_duster_survivor", "fg": 181, "bg": 13 },
{ "id": "overlay_worn_sleeveless_duster_survivor", "fg": 182, "rotates": false },
{ "id": "sunglasses", "fg": 183, "rotates": false },
{ "id": "overlay_worn_sunglasses", "fg": 184, "rotates": false },
{ "id": "survivor_goggles", "fg": 185 },
{ "id": "overlay_worn_survivor_goggles", "fg": 186, "rotates": false },
{ "id": "vest_leather_mod", "fg": 187, "bg": 13, "rotates": false },
{ "id": "overlay_worn_vest_leather_mod", "fg": 188, "rotates": false },
{ "id": "wearable_rx12", "fg": 189 },
{ "id": "wristwatch", "fg": 190, "rotates": false },
{ "id": "bot_acidic_pk", "fg": 191 },
{ "id": "bot_ant_acid_ultralisk", "fg": 192 },
{ "id": "bot_blind", "fg": 193 },
{ "id": "bot_cacodemon", "fg": 194 },
{ "id": "bot_cacodemon_revive", "fg": 195 },
{ "id": "bot_cherub", "fg": 196 },
{ "id": "bot_cherub_fly", "fg": 197 },
{ "id": "bot_churl_revive", "fg": 198 },
{ "id": "bot_cyberdemon", "fg": 199 },
{ "id": "bot_fungal_boil", "fg": 200 },
{ "id": "bot_grabber", "fg": 201 },
{ "id": "bot_hell_baron", "fg": 202 },
{ "id": "bot_hell_knight", "fg": 203 },
{ "id": "bot_hell_knight_revive", "fg": 204 },
{ "id": "bot_hollow", "fg": 205 },
{ "id": "bot_imp", "fg": 206 },
{ "id": "bot_imp_black", "fg": 207 },
{ "id": "bot_imp_revive", "fg": 208 },
{ "id": "bot_lostsoul", "fg": 209 },
{ "id": "bot_mancubus", "fg": 210 },
{ "id": "bot_mechaspider", "fg": 211 },
{ "id": "bot_pinky", "fg": 212 },
{ "id": "bot_pinky_revive", "fg": 213 },
{ "id": "bot_rat", "fg": 214 },
{ "id": "bot_revenant", "fg": 215 },
{ "id": "bot_shady", "fg": 216 },
{ "id": "bot_spider_trapdoor_giant", "fg": 217 },
{ "id": "bot_spider_trapdoor_giant_guardian", "fg": 218 },
{ "id": "bot_spider_web_omega", "fg": 219 },
{ "id": "bot_spider_web_s", "fg": 220 },
{ "id": "bot_thing_head", "fg": 221 },
{ "id": "bot_thing_spider", "fg": 222 },
{ "id": "bot_trapdoor_s", "fg": 223 },
{ "id": "bot_tripod", "fg": 224, "rotates": false },
{ "id": "antidote_badpoison", "fg": 225 },
{ "id": "antidote_posion", "fg": 226 },
{ "id": "berserker_drug", "fg": 227 },
{ "id": "berserker_drug_act", "fg": 228 },
{ "id": "clay_boiled", "fg": 229 },
{ "id": "clay_lump", "fg": 230, "bg": 13, "rotates": false },
{ "id": "dr_stem_cell", "fg": 231, "rotates": false },
{ "id": "fertilizer_chelated", "fg": 232, "rotates": false },
{ "id": "fish", "fg": 233, "bg": 13, "rotates": false },
{ "id": "flu_shot", "fg": 234 },
{ "id": "fresh_fries_big", "fg": 235, "rotates": false },
{ "id": "gummy_vitamins", "fg": 236, "bg": 13, "rotates": false },
{ "id": "homebrew_antiseptic", "fg": 237, "rotates": false },
{ "id": "human_flesh", "fg": 238, "rotates": true },
{ "id": "meat", "fg": 239, "bg": 13, "rotates": false },
{ "id": "medical_tape", "fg": 240, "rotates": false },
{ "id": "medikit", "fg": 241, "bg": 13, "rotates": false },
{ "id": "offal", "fg": 242 },
{ "id": "prussian_blue", "fg": 243, "bg": 13, "rotates": false },
{ "id": "stamina_vial", "fg": 244, "rotates": false },
{ "id": "stomach", "fg": 245, "bg": 13, "rotates": false },
{ "id": "vitamins", "fg": 246, "bg": 13, "rotates": false },
{ "id": "water", "fg": 247, "rotates": false },
{ "id": "water_clean", "fg": 248, "rotates": false },
{ "id": "water_mineral", "fg": 249 },
{ "id": "egg_wasp", "fg": 250, "rotates": false },
{ "id": "fighter_sting_juice", "fg": 251, "rotates": false },
{ "id": "jar_spider_steak_pickled", "fg": 252, "rotates": false },
{ "id": "megabear_skull_clean", "fg": 253, "rotates": false },
{ "id": "megabear_skull_picked", "fg": 254, "rotates": false },
{ "id": "megabear_skull_unclean", "fg": 255, "rotates": false },
{ "id": "plant_sac", "fg": 256 },
{ "id": "royal_jelly_sap", "fg": 257, "rotates": false },
{ "id": "sac_empty", "fg": 258, "rotates": false },
{ "id": "sac_treated", "fg": 259, "rotates": false },
{ "id": "spider_brain", "fg": 260, "rotates": false },
{ "id": "spider_steak", "fg": 261, "rotates": false },
{ "id": "spider_steak_cooked", "fg": 262, "rotates": false },
{ "id": "spider_steak_fried", "fg": 263, "rotates": false },
{ "id": "spider_steak_pickled", "fg": 264, "rotates": false },
{ "id": "spider_steak_sandwich", "fg": 265, "rotates": false },
{ "id": "spider_steak_soup", "fg": 266, "rotates": false },
{ "id": "triffid_sap", "fg": 267, "rotates": false },
{ "id": "triffid_sap_thrown", "fg": 268, "rotates": false },
{ "id": "wasp_glue", "fg": 269 },
{ "id": "wasp_glue_super", "fg": 270 },
{ "id": "manhack_firebomb", "fg": 271, "rotates": false },
{ "id": "manhack_firebomb_act", "fg": 272, "rotates": false },
{ "id": "soulbomb", "fg": 273, "rotates": false },
{ "id": "soulbomb_on", "fg": 274, "rotates": false },
{ "id": "battery", "fg": 275, "rotates": false },
{ "id": "diesel", "fg": 276, "rotates": false },
{ "id": "gasoline", "fg": 277, "rotates": false },
{ "id": "plut_cell", "fg": 278, "rotates": false },
{ "id": "plut_slurry_dense", "fg": 279, "bg": [ 5, 29, 30, 32, 33, 31, 279 ] },
{ "id": "410_lever", "fg": 280, "rotates": false },
{ "id": "overlay_wielded_410_lever", "fg": 281, "rotates": false },
{ "id": "410_revolver", "fg": 282 },
{ "id": "overlay_wielded_410_revolver", "fg": 283, "rotates": false },
{ "id": "BFG", "fg": 284, "rotates": false },
{ "id": "overlay_wielded_BFG", "fg": 285, "rotates": false },
{ "id": "bomblet_launcher_brute", "fg": 286, "rotates": false },
{ "id": "overlay_wielded_bomblet_launcher_brute", "fg": 287, "rotates": false },
{ "id": "bomblet_launcher_double", "fg": 288, "rotates": false },
{ "id": "overlay_wielded_bomblet_launcher_double", "fg": 289, "rotates": false },
{ "id": "bomblet_launcher_dualshot", "fg": 290, "rotates": false },
{ "id": "overlay_wielded_bomblet_launcher_dualshot", "fg": 291, "rotates": false },
{ "id": "bomblet_launcher_rotary", "fg": 292 },
{ "id": "overlay_wielded_bomblet_launcher_rotary", "fg": 293, "rotates": false },
{ "id": "bomblet_launcher_single", "fg": 294, "rotates": false },
{ "id": "overlay_wielded_bomblet_launcher_single", "fg": 295, "rotates": false },
{ "id": "bomblet_undermod", "fg": 296, "rotates": false },
{ "id": "ithaca_doom", "fg": 297, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_ithaca_doom", "fg": 298, "rotates": false },
{ "id": "ithaca_doom_dual", "fg": 299 },
{ "id": "overlay_wielded_ithaca_doom_dual", "fg": 300, "rotates": false },
{ "id": "shockcannon", "fg": 301, "rotates": false },
{ "id": "overlay_wielded_shockcannon", "fg": 302, "rotates": false },
{ "id": "shockcannon_plut", "fg": 303, "rotates": false },
{ "id": "overlay_wielded_shockcannon_plut", "fg": 304, "rotates": false },
{ "id": "shockcannon_ups", "fg": 305, "rotates": false },
{ "id": "overlay_wielded_shockcannon_ups", "fg": 306, "rotates": false },
{ "id": "bomblet_launcher_chickenbot", "fg": 307, "rotates": false },
{ "id": "hell_ball", "fg": 308, "rotates": false },
{ "id": "hell_ball1", "fg": 308, "rotates": false },
{ "id": "hell_ball2", "fg": 308, "rotates": false },
{ "id": "hell_bomblet_launcher_rotary1", "fg": 312, "rotates": false },
{ "id": "hell_bomblet_launcher_rotary2", "fg": 312, "rotates": false },
{ "id": "hell_bomblet_launcher_single", "fg": 312, "rotates": false },
{ "id": "hell_laser_gun", "fg": 309, "rotates": false },
{ "id": "hell_laser_gun_queen", "fg": 310, "rotates": false },
{ "id": "hell_laser_napalm", "fg": 311, "rotates": false },
{ "id": "hell_launcher", "fg": 312, "rotates": false },
{ "id": "hell_plasma", "fg": 313, "rotates": false },
{ "id": "hell_plasma1", "fg": 313, "rotates": false },
{ "id": "hell_plasma2", "fg": 313, "rotates": false },
{ "id": "hell_plasma3", "fg": 313, "rotates": false },
{ "id": "cell_phone_flashlight", "fg": 314, "rotates": false },
{ "id": "handflare", "fg": 315, "rotates": false },
{ "id": "overlay_wielded_handflare", "fg": 316, "rotates": false },
{ "id": "handflare_act", "fg": 317, "rotates": false },
{ "id": "handflare_lit", "fg": 318, "rotates": false },
{ "id": "overlay_wielded_handflare_lit", "fg": 319, "rotates": false },
{ "id": "ax", "fg": 320, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_ax", "fg": 321, "rotates": false },
{ "id": "bagh_nakha", "fg": 322, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_bagh_nakha", "fg": 323, "rotates": false },
{ "id": "baton-extended", "fg": 324, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_baton-extended", "fg": 325, "rotates": false },
{ "id": "battleaxe", "fg": 326, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_battleaxe", "fg": 327, "rotates": false },
{ "id": "battletorch", "fg": 328, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_battletorch", "fg": 329, "rotates": false },
{ "id": "battletorch_done", "fg": 330, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_battletorch_done", "fg": 331, "rotates": false },
{ "id": "battletorch_lit", "fg": 332, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_battletorch_lit", "fg": 333, "rotates": false },
{ "id": "bat_metal", "fg": 334, "rotates": false },
{ "id": "overlay_wielded_bat_metal", "fg": 335, "rotates": false },
{ "id": "bio_claws_weapon", "fg": 336, "rotates": false },
{ "id": "overlay_wielded_bio_claws_weapon", "fg": 337, "rotates": false },
{ "id": "bokken", "fg": 338 },
{ "id": "overlay_wielded_bokken", "fg": 339, "rotates": false },
{ "id": "bowling_pin", "fg": 340 },
{ "id": "overlay_wielded_bowling_pin", "fg": 341, "rotates": false },
{ "id": "broadfire_off", "fg": 342, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_broadfire_off", "fg": 343, "rotates": false },
{ "id": "broadfire_on", "fg": 344, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_broadfire_on", "fg": 345, "rotates": false },
{ "id": "broadsword", "fg": 346, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_broadsword", "fg": 347, "rotates": false },
{ "id": "broom", "fg": 348, "rotates": false },
{ "id": "overlay_wielded_broom", "fg": 349, "rotates": false },
{ "id": "bwirebat", "fg": 350 },
{ "id": "overlay_wielded_bwirebat", "fg": 351, "rotates": false },
{ "id": "candlestick", "fg": 352, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_candlestick", "fg": 353, "rotates": false },
{ "id": "cestus", "fg": 354, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_cestus", "fg": 355, "rotates": false },
{ "id": "copper_ax", "fg": 356, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_copper_ax", "fg": 357, "rotates": false },
{ "id": "crowbar", "fg": 358, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_crowbar", "fg": 359, "rotates": false },
{ "id": "cudgel", "fg": 360, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_cudgel", "fg": 361, "rotates": false },
{ "id": "cutlass", "fg": 362, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_cutlass", "fg": 363, "rotates": false },
{ "id": "cutlass_fake", "fg": 364, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_cutlass_fake", "fg": 365, "rotates": false },
{ "id": "cutlass_inferior", "fg": 366, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_cutlass_inferior", "fg": 367, "rotates": false },
{ "id": "estoc", "fg": 368, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_estoc", "fg": 369, "rotates": false },
{ "id": "estoc_fake", "fg": 370, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_estoc_fake", "fg": 371, "rotates": false },
{ "id": "fencing_epee", "fg": 372, "bg": 13, "rotates": false },
{ "id": "fencing_foil", "fg": 373, "rotates": false },
{ "id": "fencing_sabre", "fg": 374, "bg": 13, "rotates": false },
{ "id": "firekatana_off", "fg": 375, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_firekatana_off", "fg": 376, "rotates": false },
{ "id": "firekatana_on", "fg": 377, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_firekatana_on", "fg": 378, "rotates": false },
{ "id": "firemachete_off", "fg": 379, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_firemachete_off", "fg": 380, "rotates": false },
{ "id": "firemachete_on", "fg": 381, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_firemachete_on", "fg": 382, "rotates": false },
{ "id": "fire_ax", "fg": 383, "rotates": false },
{ "id": "overlay_wielded_fire_ax", "fg": 384, "rotates": false },
{ "id": "glass_macuahuitl", "fg": 385, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_glass_macuahuitl", "fg": 386, "rotates": false },
{ "id": "halligan", "fg": 387, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_halligan", "fg": 388, "rotates": false },
{ "id": "hammer_sledge", "fg": 389, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_hammer_sledge", "fg": 390, "rotates": false },
{ "id": "hatchet", "fg": 391, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_hatchet", "fg": 392, "rotates": false },
{ "id": "hoe", "fg": 393, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_hoe", "fg": 394, "rotates": false },
{ "id": "homewrecker", "fg": 395, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_homewrecker", "fg": 396, "rotates": false },
{ "id": "iceaxe", "fg": 397, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_iceaxe", "fg": 398, "rotates": false },
{ "id": "i_staff", "fg": 399, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_i_staff", "fg": 400, "rotates": false },
{ "id": "katana", "fg": 401, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_katana", "fg": 402, "rotates": false },
{ "id": "katana_fake", "fg": 403, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_katana_fake", "fg": 404, "rotates": false },
{ "id": "katana_inferior", "fg": 405, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_katana_inferior", "fg": 406, "rotates": false },
{ "id": "knife_combat", "fg": 407, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_knife_combat", "fg": 408, "rotates": false },
{ "id": "knife_hunting", "fg": 409, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_knife_hunting", "fg": 410, "rotates": false },
{ "id": "knife_rambo", "fg": 411, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_knife_rambo", "fg": 412, "rotates": false },
{ "id": "knife_rm42", "fg": 413, "rotates": false },
{ "id": "overlay_wielded_knife_rm42", "fg": 414, "rotates": false },
{ "id": "knife_trench", "fg": 415, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_knife_trench", "fg": 416, "rotates": false },
{ "id": "kris", "fg": 417 },
{ "id": "overlay_wielded_kris", "fg": 418, "rotates": false },
{ "id": "kris_fake", "fg": 419 },
{ "id": "overlay_wielded_kris_fake", "fg": 420, "rotates": false },
{ "id": "kukri", "fg": 421, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_kukri", "fg": 422, "rotates": false },
{ "id": "l-stick", "fg": 423, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_l-stick", "fg": 424, "rotates": false },
{ "id": "l-stick_on", "fg": 425, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_l-stick_on", "fg": 426, "rotates": false },
{ "id": "lajatang", "fg": 427 },
{ "id": "overlay_wielded_lajatang", "fg": 428, "rotates": false },
{ "id": "mace", "fg": 429, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_mace", "fg": 430, "rotates": false },
{ "id": "machete", "fg": 431, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_machete", "fg": 432, "rotates": false },
{ "id": "makeshift_hammer", "fg": 433, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_makeshift_hammer", "fg": 434, "rotates": false },
{ "id": "mjolnir", "fg": 435, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_mjolnir", "fg": 436, "rotates": false },
{ "id": "mop", "fg": 437, "rotates": false },
{ "id": "overlay_wielded_mop", "fg": 438, "rotates": false },
{ "id": "morningstar", "fg": 439, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_morningstar", "fg": 440, "rotates": false },
{ "id": "nailbat", "fg": 441, "rotates": false },
{ "id": "overlay_wielded_nailbat", "fg": 442, "rotates": false },
{ "id": "pickaxe", "fg": 443, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_pickaxe", "fg": 444, "rotates": false },
{ "id": "pipe_solid", "fg": 445, "rotates": false },
{ "id": "overlay_wielded_pipe_solid", "fg": 446, "rotates": false },
{ "id": "pipe_solid_spear", "fg": 447, "rotates": false },
{ "id": "overlay_wielded_pipe_solid_spear", "fg": 448, "rotates": false },
{ "id": "pointy_stick", "fg": 449, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_pointy_stick", "fg": 450, "rotates": false },
{ "id": "PR24-extended", "fg": 451 },
{ "id": "overlay_wielded_PR24-extended", "fg": 452, "rotates": false },
{ "id": "primitive_axe", "fg": 453, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_primitive_axe", "fg": 454, "rotates": false },
{ "id": "primitive_hammer", "fg": 455, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_primitive_hammer", "fg": 456, "rotates": false },
{ "id": "punch_dagger", "fg": 457, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_punch_dagger", "fg": 458, "rotates": false },
{ "id": "qiang", "fg": 459, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_qiang", "fg": 460, "rotates": false },
{ "id": "q_staff", "fg": 461, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_q_staff", "fg": 462, "rotates": false },
{ "id": "rapier", "fg": 463, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_rapier", "fg": 464, "rotates": false },
{ "id": "rapier_fake", "fg": 465, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_rapier_fake", "fg": 466, "rotates": false },
{ "id": "rock_sock", "fg": 467, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_rock_sock", "fg": 468, "rotates": false },
{ "id": "scalpel", "fg": 469, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_scalpel", "fg": 470, "rotates": false },
{ "id": "shocktonfa_off", "fg": 471, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_shocktonfa_off", "fg": 472, "rotates": false },
{ "id": "shocktonfa_on", "fg": 473, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_shocktonfa_on", "fg": 474, "rotates": false },
{ "id": "shock_staff", "fg": 475, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_shock_staff", "fg": 476, "rotates": false },
{ "id": "shovel", "fg": 477, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_shovel", "fg": 478, "rotates": false },
{ "id": "spear_copper", "fg": 479, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_spear_copper", "fg": 480, "rotates": false },
{ "id": "spear_knife", "fg": 481, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_spear_knife", "fg": 482, "rotates": false },
{ "id": "spear_pipe", "fg": 483, "rotates": false },
{ "id": "overlay_wielded_spear_pipe", "fg": 484, "rotates": false },
{ "id": "spear_steel", "fg": 485, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_spear_steel", "fg": 486, "rotates": false },
{ "id": "spear_wood", "fg": 487, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_spear_wood", "fg": 488, "rotates": false },
{ "id": "switchblade", "fg": 489, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_switchblade", "fg": 490, "rotates": false },
{ "id": "sword_nail", "fg": 491, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_sword_nail", "fg": 492, "rotates": false },
{ "id": "tanto", "fg": 493, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_tanto", "fg": 494, "rotates": false },
{ "id": "tonfa", "fg": 495, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_tonfa", "fg": 496, "rotates": false },
{ "id": "tonfa_wood", "fg": 497, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_tonfa_wood", "fg": 498, "rotates": false },
{ "id": "torch", "fg": 499, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_torch", "fg": 500, "rotates": false },
{ "id": "torch_lit", "fg": 501, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_torch_lit", "fg": 502, "rotates": false },
{ "id": "wakizashi", "fg": 503, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_wakizashi", "fg": 504, "rotates": false },
{ "id": "wakizashi_fake", "fg": 505, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_wakizashi_fake", "fg": 506, "rotates": false },
{ "id": "wakizashi_inferior", "fg": 507, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_wakizashi_inferior", "fg": 508, "rotates": false },
{ "id": "warhammer", "fg": 509, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_warhammer", "fg": 510, "rotates": false },
{ "id": "wrench", "fg": 511, "rotates": false },
{ "id": "overlay_wielded_wrench", "fg": 512, "rotates": false },
{ "id": "iv_purifier", "fg": 513, "rotates": false },
{ "id": "mutagen", "fg": 514, "rotates": false },
{ "id": "mutagen_alpha", "fg": 515, "rotates": false },
{ "id": "mutagen_beast", "fg": 516, "rotates": false },
{ "id": "mutagen_bird", "fg": 517, "rotates": false },
{ "id": "mutagen_cattle", "fg": 518, "rotates": false },
{ "id": "mutagen_cephalopod", "fg": 519, "rotates": false },
{ "id": "mutagen_chimera", "fg": 520, "rotates": false },
{ "id": "mutagen_elfa", "fg": 521, "rotates": false },
{ "id": "mutagen_feline", "fg": 522, "rotates": false },
{ "id": "mutagen_fish", "fg": 523, "rotates": false },
{ "id": "mutagen_insect", "fg": 524, "rotates": false },
{ "id": "mutagen_lizard", "fg": 525, "rotates": false },
{ "id": "mutagen_lupine", "fg": 526, "rotates": false },
{ "id": "mutagen_medical", "fg": 527, "rotates": false },
{ "id": "mutagen_plant", "fg": 528, "rotates": false },
{ "id": "mutagen_raptor", "fg": 529, "rotates": false },
{ "id": "mutagen_rat", "fg": 530, "rotates": false },
{ "id": "mutagen_slime", "fg": 531, "rotates": false },
{ "id": "mutagen_spider", "fg": 532, "rotates": false },
{ "id": "mutagen_troglobite", "fg": 533, "rotates": false },
{ "id": "mutagen_ursine", "fg": 534, "rotates": false },
{ "id": "purifier", "fg": 535, "rotates": false },
{ "id": "bot_fungal_boil_egg", "fg": 536, "rotates": false },
{ "id": "bot_manhack_fire", "fg": 537 },
{ "id": "bot_manhack_missile", "fg": 538, "rotates": false },
{ "id": "bot_robot_drone", "fg": 539, "rotates": false },
{ "id": "bot_turret_shockcannon", "fg": 540, "bg": 12, "rotates": false },
{ "id": "broken_manhack_fire", "fg": 541 },
{ "id": "broken_robot_drone", "fg": 542, "rotates": false },
{ "id": "broken_soulcube", "fg": 543, "rotates": false },
{ "id": "candle_smoke", "fg": 544, "bg": 13, "rotates": false },
{ "id": "candle_smoke_lit", "fg": 545, "bg": 13, "rotates": false },
{ "id": "diveknife", "fg": 546, "rotates": false },
{ "id": "overlay_wielded_diveknife", "fg": 547, "rotates": false },
{ "id": "e_tool_chinese", "fg": 548, "bg": 13, "rotates": false },
{ "id": "overlay_wielded_e_tool_chinese", "fg": 549, "rotates": false },
{ "id": "fridge_cargo", "fg": 550, "rotates": false },
{
"id": "vp_fridge_cargo",
"fg": 551,
"rotates": false,
"multitile": true,
"additional_tiles": [ { "id": "broken", "fg": 552 } ]
},
{ "id": "pokeball", "fg": 553, "rotates": false },
{ "id": "ref_lighter_dare", "fg": 554, "bg": 13, "rotates": false },
{ "id": "ref_lighter_string", "fg": 555, "rotates": false },
{ "id": "overlay_worn_ref_lighter_string", "fg": 556, "rotates": false },
{ "id": "rocket_core", "fg": 557, "rotates": false },
{ "id": "rocket_core_act", "fg": 558, "rotates": false },
{ "id": "smoke_machine", "fg": 559, "rotates": false },
{ "id": "smoke_machine_act", "fg": 560, "rotates": false },
{ "id": "smoke_machine_unpreped", "fg": 561, "rotates": false },
{ "id": "soulcube", "fg": 562, "rotates": false },
{ "id": "soulcube_charging", "fg": 563, "rotates": false },
{ "id": "soulcube_on", "fg": 564, "rotates": false },
{ "id": "spess_chunk", "fg": 565, "rotates": false },
{ "id": "triffid_sap_grenade", "fg": 566, "rotates": false },
{ "id": "triffid_sap_grenade_act", "fg": 567, "rotates": false },
{ "id": "pipe_launcher40mm", "fg": 568, "bg": 13, "rotates": false },
{ "id": "popcan_stove", "fg": 569 },
{ "id": "vp_aisle_lights", "fg": 570, "rotates": true },
{ "id": "vp_bfg_mounted", "fg": 571 },
{
"id": "vp_frame_handle",
"fg": 572,
"rotates": true,
"multitile": true,
"additional_tiles": [ { "id": "broken", "fg": 573, "bg": 572 } ]
},
{ "id": "horn_bicycle", "fg": 574, "rotates": false },
{ "id": "overlay_wielded_horn_bicycle", "fg": 575, "rotates": false },
{ "id": "vp_horn_bicycle", "fg": 576, "rotates": false },
{ "id": "recharge_station", "fg": 577, "rotates": false },
{
"id": "vp_recharge_station",
"fg": 578,
"bg": 6,
"rotates": false,
"multitile": true,
"additional_tiles": [ { "id": "broken", "fg": 579, "bg": [ 578, 577 ] } ]
},
{ "id": "vp_roof_cloth", "fg": 580, "rotates": false },
{ "id": "saddle", "fg": 581, "bg": 13, "rotates": false },
{ "id": "vp_saddle", "fg": 582, "rotates": true },
{ "id": "vp_shockcannon_mounted", "fg": 583, "rotates": true },
{ "id": "vp_storage_battery_removable", "fg": 584, "bg": 13, "rotates": false },
{ "id": "vp_wing_mirror", "fg": 585, "rotates": true },
{ "id": "locket_lucy", "fg": 586, "rotates": false },
{ "id": "mon_ant", "fg": 587, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant", "fg": 588, "rotates": false },
{ "id": "mon_ant_acid", "fg": 589, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_acid", "fg": 590, "rotates": false },
{ "id": "mon_ant_acid_kwama", "fg": 591, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_acid_kwama", "fg": 592, "rotates": false },
{ "id": "mon_ant_acid_larva", "fg": 593, "rotates": false },
{ "id": "corpse_mon_ant_acid_larva", "fg": 594, "rotates": false },
{ "id": "mon_ant_acid_queen", "fg": 595, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_acid_queen", "fg": 596, "rotates": false },
{ "id": "mon_ant_acid_soldier", "fg": 597, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_acid_soldier", "fg": 598, "rotates": false },
{ "id": "mon_ant_acid_terminal", "fg": 599, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_acid_terminal", "fg": 600, "rotates": false },
{ "id": "mon_ant_larva", "fg": 601, "rotates": false },
{ "id": "corpse_mon_ant_larva", "fg": 602, "rotates": false },
{ "id": "mon_ant_male", "fg": 603, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_male", "fg": 604, "rotates": false },
{ "id": "mon_ant_queen", "fg": 605, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_queen", "fg": 606, "rotates": false },
{ "id": "mon_ant_queen_young", "fg": 607, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_queen_young", "fg": 608, "rotates": false },
{ "id": "mon_ant_scrib", "fg": 609, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_scrib", "fg": 610, "rotates": false },
{ "id": "mon_ant_soldier", "fg": 611, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_soldier", "fg": 612, "rotates": false },
{ "id": "mon_ant_soldier_pk", "fg": 613, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_soldier_pk", "fg": 614, "rotates": false },
{ "id": "mon_ant_soldier_pk_weak", "fg": 615, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_soldier_pk_weak", "fg": 616, "rotates": false },
{ "id": "mon_ant_soldier_terminal", "fg": 617, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_soldier_terminal", "fg": 618, "rotates": false },
{ "id": "mon_ant_terminal", "fg": 619, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_terminal", "fg": 620, "rotates": false },
{ "id": "mon_blob", "fg": 621, "rotates": false },
{ "id": "mon_blob_large", "fg": 622, "bg": 14, "rotates": false },
{ "id": "mon_blob_small", "fg": 623, "rotates": false },
{ "id": "mon_cult_slave", "fg": 624, "bg": 14, "rotates": false },
{ "id": "corpse_mon_cult_slave", "fg": 625 },
{ "id": "mon_homunculus", "fg": 626, "bg": 14, "rotates": false },
{ "id": "corpse_mon_homunculus", "fg": 627, "rotates": false },
{ "id": "mon_legion", "fg": 628, "bg": 14, "rotates": false },
{ "id": "mon_nuculais", "fg": 629, "bg": 14, "rotates": false },
{
"id": "mon_shadow",
"fg": [
{ "weight": 1, "sprite": 630 },
{ "weight": 1, "sprite": 641 },
{ "weight": 1, "sprite": 652 },
{ "weight": 1, "sprite": 657 },
{ "weight": 1, "sprite": 658 },
{ "weight": 1, "sprite": 659 },
{ "weight": 1, "sprite": 660 },
{ "weight": 1, "sprite": 661 },
{ "weight": 1, "sprite": 662 },
{ "weight": 1, "sprite": 631 },
{ "weight": 1, "sprite": 632 },
{ "weight": 1, "sprite": 633 },
{ "weight": 1, "sprite": 634 },
{ "weight": 1, "sprite": 635 },
{ "weight": 1, "sprite": 636 },
{ "weight": 1, "sprite": 637 },
{ "weight": 1, "sprite": 638 },
{ "weight": 1, "sprite": 639 },
{ "weight": 1, "sprite": 640 },
{ "weight": 1, "sprite": 642 },
{ "weight": 1, "sprite": 643 },
{ "weight": 1, "sprite": 644 },
{ "weight": 1, "sprite": 645 },
{ "weight": 1, "sprite": 646 },
{ "weight": 1, "sprite": 647 },
{ "weight": 1, "sprite": 648 },
{ "weight": 1, "sprite": 649 },
{ "weight": 1, "sprite": 650 },
{ "weight": 1, "sprite": 651 },
{ "weight": 1, "sprite": 653 },
{ "weight": 1, "sprite": 654 },
{ "weight": 1, "sprite": 655 },
{ "weight": 1, "sprite": 656 }
],
"rotates": false
},
{ "id": "mon_cacodemon", "fg": 663, "bg": 14, "rotates": false },
{ "id": "corpse_mon_cacodemon", "fg": 664 },
{ "id": "mon_cherub", "fg": 665, "bg": 14, "rotates": false },
{ "id": "mon_cherub_fly", "fg": 666, "bg": 14, "rotates": false },
{ "id": "mon_doom_archvile", "fg": 667, "rotates": false },
{ "id": "corpse_mon_doom_archvile", "fg": 668 },
{ "id": "mon_doom_archvile_2", "fg": 669, "rotates": false },
{ "id": "corpse_mon_doom_archvile_2", "fg": 670 },
{ "id": "mon_doom_archvile_3", "fg": 671, "rotates": false },
{ "id": "corpse_mon_doom_archvile_3", "fg": 672 },
{ "id": "mon_doom_archvile_4", "fg": 673, "rotates": false },
{ "id": "corpse_mon_doom_archvile_4", "fg": 674 },
{ "id": "mon_doom_archvile_5", "fg": 675, "bg": 14, "rotates": false },
{ "id": "corpse_mon_doom_archvile_5", "fg": 676 },
{ "id": "mon_doom_churl", "fg": 677, "bg": 14, "rotates": false },
{ "id": "corpse_mon_doom_churl", "fg": 678 },
{ "id": "mon_doom_cur", "fg": 679, "bg": 14, "rotates": false },
{ "id": "corpse_mon_doom_cur", "fg": 680 },
{ "id": "mon_doom_sacrifice", "fg": 681, "bg": 14, "rotates": false },
{ "id": "corpse_mon_doom_sacrifice", "fg": 682 },
{ "id": "mon_doom_slave", "fg": 683, "bg": 14, "rotates": false },
{ "id": "corpse_mon_doom_slave", "fg": 684 },
{ "id": "mon_hell_baron", "fg": 685, "bg": 14, "rotates": false },
{ "id": "corpse_mon_hell_baron", "fg": 686 },
{ "id": "mon_hell_knight", "fg": 687, "bg": 14, "rotates": false },
{ "id": "corpse_mon_hell_knight", "fg": 688 },
{ "id": "mon_imp", "fg": 689, "bg": 14, "rotates": false },
{ "id": "corpse_mon_imp", "fg": 690 },
{ "id": "mon_imp_black", "fg": 691, "bg": 14, "rotates": false },
{ "id": "corpse_mon_imp_black", "fg": 692 },
{ "id": "mon_lostsoul", "fg": 693, "bg": 14, "rotates": false },
{ "id": "corpse_mon_lostsoul", "fg": 694 },
{ "id": "mon_lostsoul_mount", "fg": 695, "bg": 14, "rotates": false },
{ "id": "corpse_mon_lostsoul_mount", "fg": 696 },
{ "id": "mon_mancubus", "fg": 697, "bg": 14, "rotates": false },
{ "id": "corpse_mon_mancubus", "fg": 698 },
{ "id": "mon_pinky", "fg": 699, "bg": 14, "rotates": false },
{ "id": "corpse_mon_pinky", "fg": 700 },
{ "id": "corpse_mon_revenant", "fg": 701 },
{ "id": "mon_soulcube", "fg": 702, "rotates": false },
{ "id": "mon_cacodemon_revive", "fg": 703, "bg": 14, "rotates": false },
{ "id": "corpse_mon_cacodemon_revive", "fg": 704 },
{ "id": "mon_doom_archvile_queen", "fg": 705, "bg": 14, "rotates": false },
{ "id": "corpse_mon_doom_archvile_queen", "fg": 706 },
{ "id": "mon_doom_churl_revive", "fg": 707, "bg": 14, "rotates": false },
{ "id": "corpse_mon_doom_churl_revive", "fg": 708 },
{ "id": "mon_hell_knight_revive", "fg": 709, "bg": 14, "rotates": false },
{ "id": "corpse_mon_hell_knight_revive", "fg": 710 },
{ "id": "mon_imp_revive", "fg": 711, "bg": 14, "rotates": false },
{ "id": "corpse_mon_imp_revive", "fg": 712 },
{ "id": "mon_pinky_revive", "fg": 713, "bg": 14, "rotates": false },
{ "id": "corpse_mon_pinky_revive", "fg": 714 },
{ "id": "mon_fish_eel_large", "fg": 715, "rotates": false },
{ "id": "corpse_mon_fish_eel_large", "fg": 716 },
{ "id": "mon_fish_flying", "fg": 717, "rotates": false },
{ "id": "corpse_mon_fish_flying", "fg": 718 },
{ "id": "mon_fish_lobster_giant", "fg": 719, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fish_lobster_giant", "fg": 720 },
{ "id": "mon_mutant_carp", "fg": 721, "rotates": false },
{ "id": "corpse_mon_mutant_carp", "fg": 722 },
{ "id": "mon_mutant_salmon", "fg": 723, "rotates": false },
{ "id": "corpse_mon_mutant_salmon", "fg": 724 },
{ "id": "mon_ant_fungus", "fg": 725, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ant_fungus", "fg": 726, "rotates": false },
{ "id": "mon_boomer_fungus", "fg": 727, "bg": 14, "rotates": false },
{ "id": "corpse_mon_boomer_fungus", "fg": 728, "rotates": false },
{ "id": "mon_fant", "fg": 729, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fant", "fg": 730 },
{ "id": "mon_fardigrade", "fg": 731, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fardigrade", "fg": 732 },
{ "id": "mon_feer", "fg": 733, "bg": 14, "rotates": false },
{ "id": "corpse_mon_feer", "fg": 734 },
{ "id": "mon_finebeast", "fg": 735, "bg": 14, "rotates": false },
{ "id": "corpse_mon_finebeast", "fg": 736 },
{ "id": "mon_finecraft", "fg": 737, "bg": 14, "rotates": false },
{ "id": "mon_fionaea", "fg": 738, "rotates": false },
{ "id": "corpse_mon_fionaea", "fg": 739 },
{ "id": "mon_folf", "fg": 740, "bg": 14, "rotates": false },
{ "id": "corpse_mon_folf", "fg": 741 },
{ "id": "mon_foose", "fg": 742, "bg": 14, "rotates": false },
{ "id": "corpse_mon_foose", "fg": 743 },
{ "id": "mon_fougar", "fg": 744, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fougar", "fg": 745 },
{ "id": "mon_fungaloid", "fg": 746, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fungaloid", "fg": 747, "rotates": false },
{ "id": "mon_fungaloid_pk", "fg": 748, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fungaloid_pk", "fg": 749 },
{ "id": "mon_fungaloid_young", "fg": 750, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fungaloid_young", "fg": 751, "rotates": false },
{ "id": "mon_fungal_hedgerow", "fg": 752, "bg": 14, "rotates": false },
{ "id": "mon_fungal_wall", "fg": 753, "bg": 14, "rotates": false },
{ "id": "mon_fungus_boil", "fg": 754, "bg": 14, "rotates": false },
{ "id": "mon_fungus_pig", "fg": 755, "bg": 14, "rotates": false },
{ "id": "corpse_mon_fungus_pig", "fg": 756 },
{
"id": "mon_furvivor",
"fg": [
{ "weight": 111, "sprite": 757 },
{ "weight": 111, "sprite": 758 },
{ "weight": 111, "sprite": 759 },
{ "weight": 111, "sprite": 760 },
{ "weight": 111, "sprite": 761 },
{ "weight": 111, "sprite": 762 },
{ "weight": 111, "sprite": 763 }
],
"bg": 14,
"rotates": false
},
{ "id": "corpse_mon_furvivor", "fg": 764 },
{ "id": "mon_furvivor_deagle", "fg": 765, "bg": 14, "rotates": false },
{ "id": "corpse_mon_furvivor_deagle", "fg": 766 },
{ "id": "mon_furvivor_glock", "fg": 767, "bg": 14, "rotates": false },
{ "id": "corpse_mon_furvivor_glock", "fg": 768 },
{ "id": "mon_furvivor_pk", "fg": 769, "bg": 14, "rotates": false },
{ "id": "corpse_mon_furvivor_pk", "fg": 770 },
{ "id": "mon_furvivor_shotgun", "fg": 771, "bg": 14, "rotates": false },
{ "id": "corpse_mon_furvivor_shotgun", "fg": 772 },
{ "id": "mon_furvivor_smg", "fg": 773, "bg": 14, "rotates": false },
{ "id": "corpse_mon_furvivor_smg", "fg": 774 },
{ "id": "mon_marloss_man", "fg": 775, "bg": 14, "rotates": false },
{ "id": "mon_spore", "fg": 776, "rotates": false },
{ "id": "mon_zombie_electric_fungal", "fg": 777, "bg": 14, "rotates": false },
{ "id": "corpse_mon_zombie_electric_fungal", "fg": 778 },
{ "id": "mon_zombie_fungus", "fg": 779, "bg": 14, "rotates": false },
{ "id": "corpse_mon_zombie_fungus", "fg": 780, "rotates": false },
{ "id": "mon_bee", "fg": 781, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bee", "fg": 782, "rotates": false },
{ "id": "mon_bee_king", "fg": 783, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bee_king", "fg": 784, "rotates": false },
{ "id": "mon_bee_larvae", "fg": 785, "rotates": false },
{ "id": "corpse_mon_bee_larvae", "fg": 786, "rotates": false },
{ "id": "mon_bee_queen", "fg": 787, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bee_queen", "fg": 788, "rotates": false },
{ "id": "mon_bee_scout", "fg": 789, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bee_scout", "fg": 790, "rotates": false },
{ "id": "mon_bee_soldier", "fg": 791, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bee_soldier", "fg": 792, "rotates": false },
{ "id": "mon_butterfly", "fg": 793, "bg": 14, "rotates": false },
{ "id": "corpse_mon_butterfly", "fg": 794 },
{ "id": "mon_caterpillar", "fg": 795, "bg": 14, "rotates": false },
{ "id": "corpse_mon_caterpillar", "fg": 796 },
{ "id": "mon_centipede_giant", "fg": 797, "rotates": false },
{ "id": "corpse_mon_centipede_giant", "fg": 798, "rotates": false },
{ "id": "mon_maggot", "fg": 799, "rotates": false },
{ "id": "corpse_mon_maggot", "fg": 800 },
{ "id": "mon_mosquito_giant", "fg": 801, "bg": 14, "rotates": false },
{ "id": "corpse_mon_mosquito_giant", "fg": 802, "rotates": false },
{ "id": "mon_moth", "fg": 803, "bg": 14, "rotates": false },
{ "id": "corpse_mon_moth", "fg": 804 },
{ "id": "mon_pupae", "fg": 805, "bg": 14, "rotates": false },
{ "id": "corpse_mon_pupae", "fg": 806 },
{ "id": "mon_pupae_pk", "fg": 807, "bg": 14, "rotates": false },
{ "id": "corpse_mon_pupae_pk", "fg": 808 },
{ "id": "mon_slug_giant", "fg": 809, "rotates": false },
{ "id": "corpse_mon_slug_giant", "fg": 810, "rotates": false },
{ "id": "mon_spider_cellar_giant", "fg": 811, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_cellar_giant", "fg": 812, "rotates": false },
{ "id": "mon_spider_jumping_giant", "fg": 813, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_jumping_giant", "fg": 814, "bg": 14, "rotates": false },
{ "id": "mon_spider_jumping_giant_acid", "fg": 815, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_jumping_giant_acid", "fg": 816, "rotates": false },
{ "id": "mon_spider_trapdoor_giant", "fg": 817, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_trapdoor_giant", "fg": 818, "bg": 14, "rotates": false },
{ "id": "mon_spider_trapdoor_giant_guardian", "fg": 819, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_trapdoor_giant_guardian", "fg": 820, "rotates": false },
{ "id": "mon_spider_trapdoor_giant_pk", "fg": 821, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_trapdoor_giant_pk", "fg": 822, "rotates": false },
{ "id": "mon_spider_trapdoor_giant_s", "fg": 823, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_trapdoor_giant_s", "fg": 824, "rotates": false },
{ "id": "mon_spider_web", "fg": 825, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_web", "fg": 826, "rotates": false },
{ "id": "mon_spider_web_alpha", "fg": 827, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_web_alpha", "fg": 828, "rotates": false },
{ "id": "mon_spider_web_mu", "fg": 829, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_web_mu", "fg": 830, "rotates": false },
{ "id": "mon_spider_web_omega", "fg": 831, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_web_omega", "fg": 832, "rotates": false },
{ "id": "mon_spider_web_queen", "fg": 833, "bg": 14, "rotates": false },
{ "id": "mon_spider_web_s", "fg": 834, "rotates": false },
{ "id": "corpse_mon_spider_web_s", "fg": 835, "rotates": false },
{ "id": "mon_spider_widow_giant", "fg": 836, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_widow_giant", "fg": 837, "rotates": false },
{ "id": "mon_spider_wolf_giant", "fg": 838, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_wolf_giant", "fg": 839, "rotates": false },
{ "id": "mon_spider_wolf_giant_pk", "fg": 840, "bg": 14, "rotates": false },
{ "id": "corpse_mon_spider_wolf_giant_pk", "fg": 841, "rotates": false },
{ "id": "mon_tardigrade", "fg": 842, "bg": 14, "rotates": false },
{ "id": "corpse_mon_tardigrade", "fg": 843, "rotates": false },
{ "id": "mon_trapdoor_egg", "fg": 844, "rotates": false },
{ "id": "mon_trapdoor_queen", "fg": 845, "bg": 14, "rotates": false },
{ "id": "mon_wasp", "fg": 846, "bg": 14, "rotates": false },
{ "id": "corpse_mon_wasp", "fg": 847, "rotates": false },
{ "id": "mon_wasp_larvae", "fg": 848, "rotates": false },
{ "id": "corpse_mon_wasp_larvae", "fg": 849, "rotates": false },
{ "id": "mon_wasp_queen", "fg": 850 },
{ "id": "corpse_mon_wasp_queen", "fg": 851, "rotates": false },
{ "id": "mon_bear", "fg": 852, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bear", "fg": 853, "rotates": false },
{ "id": "mon_bear_mega_baby", "fg": 854, "bg": 14 },
{ "id": "corpse_mon_bear_mega_baby", "fg": 855 },
{ "id": "mon_bear_pk", "fg": 856, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bear_pk", "fg": 857, "rotates": false },
{ "id": "mon_bear_weak", "fg": 858, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bear_weak", "fg": 859, "rotates": false },
{ "id": "mon_bjay", "fg": 860, "bg": 14, "rotates": false },
{ "id": "corpse_mon_bjay", "fg": 861, "rotates": false },
{ "id": "mon_black_rat", "fg": 862, "bg": 14, "rotates": false },
{ "id": "corpse_mon_black_rat", "fg": 863, "rotates": false },
{ "id": "mon_cougar", "fg": 864, "bg": 14, "rotates": false },
{ "id": "corpse_mon_cougar", "fg": 865, "rotates": false },
{ "id": "mon_cougar_pk", "fg": 866, "rotates": false },
{ "id": "corpse_mon_cougar_pk", "fg": 867, "rotates": false },
{ "id": "mon_cougar_weak", "fg": 868, "rotates": false },
{ "id": "corpse_mon_cougar_weak", "fg": 869, "rotates": false },
{ "id": "mon_cow", "fg": 870, "bg": 14, "rotates": false },
{ "id": "corpse_mon_cow", "fg": 871, "rotates": false },
{ "id": "mon_coyote", "fg": 872, "bg": 14, "rotates": false },
{ "id": "corpse_mon_coyote", "fg": 873, "rotates": false },
{ "id": "mon_coyote_small", "fg": 874, "bg": 14, "rotates": false },
{ "id": "corpse_mon_coyote_small", "fg": 875, "rotates": false },
{ "id": "mon_deer_rutting", "fg": 876, "bg": 14, "rotates": false },
{ "id": "corpse_mon_deer_rutting", "fg": 877, "rotates": false },
{ "id": "mon_deer_small", "fg": 878, "bg": 14, "rotates": false },
{ "id": "corpse_mon_deer_small", "fg": 879, "rotates": false },
{ "id": "mon_dog", "fg": 880, "rotates": false },
{ "id": "corpse_mon_dog", "fg": 881, "rotates": false },
{ "id": "mon_dog_large", "fg": 882, "bg": 14, "rotates": false },
{ "id": "corpse_mon_dog_large", "fg": 883, "rotates": false },
{ "id": "mon_frog_giant", "fg": 884, "bg": 11, "rotates": false },
{ "id": "corpse_mon_frog_giant", "fg": 885, "rotates": false },
{ "id": "mon_gator", "fg": 886, "bg": 10, "rotates": false },
{ "id": "corpse_mon_gator", "fg": 887, "rotates": false },
{ "id": "mon_goat", "fg": 888, "bg": 14, "rotates": false },
{ "id": "corpse_mon_goat", "fg": 889, "rotates": false },
{ "id": "mon_gull", "fg": 890, "bg": 14, "rotates": false },
{ "id": "corpse_mon_gull", "fg": 891, "rotates": false },
{ "id": "mon_hallu_mannequin", "fg": 892 },
{ "id": "mon_horse", "fg": 893, "bg": 14, "rotates": false },
{ "id": "corpse_mon_horse", "fg": 894, "rotates": false },
{ "id": "mon_mole_large", "fg": 895, "bg": 14, "rotates": false },
{ "id": "corpse_mon_mole_large", "fg": 896, "rotates": false },
{ "id": "mon_moose", "fg": 897, "bg": 14, "rotates": false },
{ "id": "corpse_mon_moose", "fg": 898, "rotates": false },
{ "id": "mon_moose_pk", "fg": 899, "bg": 14, "rotates": false },
{ "id": "corpse_mon_moose_pk", "fg": 900, "rotates": false },
{ "id": "mon_moose_weak", "fg": 901, "bg": 14, "rotates": false },
{ "id": "corpse_mon_moose_weak", "fg": 902, "rotates": false },
{ "id": "mon_null", "fg": 903, "rotates": false },
{ "id": "mon_pidgeon", "fg": 904, "bg": 14, "rotates": false },
{ "id": "corpse_mon_pidgeon", "fg": 905, "rotates": false },
{ "id": "mon_pig", "fg": 906, "bg": 14, "rotates": false },
{ "id": "corpse_mon_pig", "fg": 907, "rotates": false },
{ "id": "corpse_mon_pig_saber", "fg": 908, "rotates": false },
{ "id": "mon_rattlesnake", "fg": 909, "bg": 9, "rotates": false },
{ "id": "corpse_mon_rattlesnake", "fg": 910, "rotates": false },
{ "id": "mon_rattlesnake_giant", "fg": 911, "bg": 10, "rotates": false },
{ "id": "corpse_mon_rattlesnake_giant", "fg": 912, "rotates": false },
{ "id": "mon_rat_king", "fg": 913, "bg": 14, "rotates": false },
{ "id": "mon_robin", "fg": 914, "bg": 14, "rotates": false },
{ "id": "corpse_mon_robin", "fg": 915, "rotates": false },
{ "id": "mon_sewer_rat", "fg": 916, "bg": 14, "rotates": false },
{ "id": "corpse_mon_sewer_rat", "fg": 917, "rotates": false },
{ "id": "mon_skunk", "fg": 918, "bg": 14, "rotates": false },
{ "id": "corpse_mon_skunk", "fg": 919, "rotates": false },
{ "id": "mon_wolf", "fg": 920, "bg": 14, "rotates": false },
{ "id": "corpse_mon_wolf", "fg": 921, "rotates": false },
{ "id": "mon_bat_vampire", "fg": 922, "rotates": false },
{ "id": "corpse_mon_bat_vampire", "fg": 923, "rotates": false },
{ "id": "mon_chud", "fg": 924, "bg": 14, "rotates": false },
{ "id": "corpse_mon_chud", "fg": 925, "rotates": false },
{ "id": "mon_coyote_wolf", "fg": 926, "bg": 14, "rotates": false },
{ "id": "corpse_mon_coyote_wolf", "fg": 927, "rotates": false },
{ "id": "mon_coyote_wolf_zerg", "fg": 928, "bg": 14, "rotates": false },
{ "id": "corpse_mon_coyote_wolf_zerg", "fg": 929, "rotates": false },
{ "id": "mon_crawler", "fg": 930, "bg": 14, "rotates": false },
{ "id": "corpse_mon_crawler", "fg": 931, "rotates": false },
{ "id": "mon_dermatik", "fg": 932, "bg": 14, "rotates": false },
{ "id": "corpse_mon_dermatik", "fg": 933, "rotates": false },
{ "id": "mon_dermatik_larva", "fg": 934, "rotates": false },
{ "id": "corpse_mon_dermatik_larva", "fg": 935, "rotates": false },
{ "id": "mon_dog_thing", "fg": 936, "bg": 14, "rotates": false },
{ "id": "mon_donatello", "fg": 937, "bg": 14, "rotates": false },
{ "id": "corpse_mon_donatello", "fg": 938, "rotates": false },
{ "id": "mon_giant_crayfish", "fg": 939, "rotates": false },
{ "id": "corpse_mon_giant_crayfish", "fg": 940, "rotates": false },
{ "id": "mon_graboid", "fg": 941, "bg": 14, "rotates": false },
{ "id": "mon_halfworm", "fg": 942, "rotates": false },
{ "id": "corpse_mon_halfworm", "fg": 943, "rotates": false },
{ "id": "mon_human_snail", "fg": 944, "bg": 14, "rotates": false },
{ "id": "corpse_mon_human_snail", "fg": 945, "rotates": false },
{ "id": "mon_leonardo", "fg": 946, "bg": 14, "rotates": false },
{ "id": "corpse_mon_leonardo", "fg": 947, "rotates": false },
{ "id": "mon_michelangelo", "fg": 948, "bg": 14, "rotates": false },
{ "id": "corpse_mon_michelangelo", "fg": 949, "rotates": false },
{ "id": "mon_one_eye", "fg": 950, "bg": 14, "rotates": false },
{ "id": "corpse_mon_one_eye", "fg": 951, "rotates": false },
{ "id": "mon_raphael", "fg": 952, "bg": 14, "rotates": false },
{ "id": "corpse_mon_raphael", "fg": 953, "rotates": false },
{ "id": "mon_ratman_ninja", "fg": 954, "bg": 14, "rotates": false },
{ "id": "corpse_mon_ratman_ninja", "fg": 955, "rotates": false },