diff --git a/Makefile b/Makefile index 752b83f9f2c23..ece8d169321f7 100644 --- a/Makefile +++ b/Makefile @@ -188,6 +188,13 @@ ifneq (,$(findstring clang,$(COMPILER))) CLANG = $(COMPILER) endif +# Windows sets the OS environment variable so we can cheaply test for it. +ifneq (,$(findstring Windows_NT,$(OS))) + IS_WINDOWS_HOST = 1 +else + IS_WINDOWS_HOST = 0 +endif + OS = $(shell uname -s) ifneq ($(findstring Darwin,$(OS)),) @@ -1164,11 +1171,28 @@ etags: $(ASTYLE_SOURCES) etags $^ ./tools/json_tools/cddatags.py +ifneq ($(IS_WINDOWS_HOST),1) +# Parallel astyle for posix hosts where fork and filesystem are cheap. + ASTYLE_CHECK_STAMPS = $(sort $(patsubst %,$(ODIR)/%.astyle-check-stamp,$(ASTYLE_SOURCES))) astyle: $(ASTYLE_CHECK_STAMPS) $(ASTYLE_CHECK_STAMPS): $(ODIR)/%.astyle-check-stamp : % $(ASTYLE_BINARY) --options=.astylerc -n $< && mkdir -p $(@D) && touch $@ +else +# Serial astyle for Windows hosts which processes all files in one invocation. + +astyle: $(ODIR)/.astyle-check-stamp +$(ODIR)/.astyle-check-stamp: $(ASTYLE_SOURCES) + $(ASTYLE_BINARY) --options=.astylerc -n $? + mkdir -p $(@D) && touch $@ + +endif + +astyle-all: $(ASTYLE_SOURCES) + $(ASTYLE_BINARY) --options=.astylerc -n $(ASTYLE_SOURCES) + mkdir -p $(ODIR) && touch $(ODIR)/.astyle-check-stamp + # Test whether the system has a version of astyle that supports --dry-run ifeq ($(shell if $(ASTYLE_BINARY) -Q -X --dry-run src/game.h > /dev/null; then echo foo; fi),foo) ASTYLE_CHECK=$(shell $(ASTYLE_BINARY) --options=.astylerc --dry-run -X -Q --ascii $(ASTYLE_SOURCES)) diff --git a/build-scripts/build.sh b/build-scripts/build.sh index ca16077437ed9..e47175495b23a 100755 --- a/build-scripts/build.sh +++ b/build-scripts/build.sh @@ -45,7 +45,11 @@ function run_test { set -eo pipefail test_exit_code=0 sed_exit_code=0 exit_code=0 - $WINE $1 --min-duration 0.2 --use-colour yes --rng-seed time $EXTRA_TEST_OPTS $4 $5 "$2" 2>&1 | sed -E 's/^(::(warning|error|debug)[^:]*::)?/\1'"$3"'/' || test_exit_code="${PIPESTATUS[0]}" sed_exit_code="${PIPESTATUS[1]}" + test_bin=$1 + prefix=$2 + shift 2 + + $WINE "$test_bin" --min-duration 0.2 --use-colour yes --rng-seed time $EXTRA_TEST_OPTS "$@" 2>&1 | sed -E 's/^(::(warning|error|debug)[^:]*::)?/\1'"$prefix"'/' || test_exit_code="${PIPESTATUS[0]}" sed_exit_code="${PIPESTATUS[1]}" if [ "$test_exit_code" -ne "0" ] then echo "$3test exited with code $test_exit_code" @@ -183,8 +187,8 @@ then make -j$num_jobs cd .. # Run regular tests - [ -f "${bin_path}cata_test" ] && parallel --verbose --linebuffer "run_test $(printf %q "${bin_path}")'/cata_test' {} '('{}')=> ' --user-dir=test_user_dir_{#}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" - [ -f "${bin_path}cata_test-tiles" ] && parallel --verbose --linebuffer "run_test $(printf %q "${bin_path}")'/cata_test-tiles' {} '('{}')=> ' --user-dir=test_user_dir_{#}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" + [ -f "${bin_path}cata_test" ] && parallel --verbose --linebuffer "run_test $(printf %q "${bin_path}")'/cata_test' '('{}')=> ' --user-dir=test_user_dir_{#} {}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" + [ -f "${bin_path}cata_test-tiles" ] && parallel --verbose --linebuffer "run_test $(printf %q "${bin_path}")'/cata_test-tiles' '('{}')=> ' --user-dir=test_user_dir_{#} {}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" fi elif [ "$NATIVE" == "android" ] then @@ -205,10 +209,10 @@ else export ASAN_OPTIONS=detect_odr_violation=1 export UBSAN_OPTIONS=print_stacktrace=1 - parallel -j "$num_test_jobs" --verbose --linebuffer "run_test './tests/cata_test' {} '('{}')=> ' --user-dir=test_user_dir_{#}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" + parallel -j "$num_test_jobs" --verbose --linebuffer "run_test './tests/cata_test' '('{}')=> ' --user-dir=test_user_dir_{#} {}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" if [ -n "$MODS" ] then - parallel -j "$num_test_jobs" --verbose --linebuffer "run_test './tests/cata_test '$(printf %q "${MODS}") {} 'Mods-('{}')=> ' --user-dir=modded_{#}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" + parallel -j "$num_test_jobs" --verbose --linebuffer "run_test './tests/cata_test' 'Mods-('{}')=> ' $(printf %q "${MODS}") --user-dir=modded_{#} {}" ::: "crafting_skill_gain" "[slow] ~crafting_skill_gain" "~[slow] ~[.]" fi if [ -n "$TEST_STAGE" ] @@ -220,7 +224,7 @@ else ./build-scripts/get_all_mods.py | \ while read mods do - run_test './tests/cata_test '~*' ' --user-dir=all_modded --mods='"${mods}"' + run_test ./tests/cata_test '(all_mods)=> ' '~*' --user-dir=all_modded --mods="${mods}" done fi fi diff --git a/data/json/bionics.json b/data/json/bionics.json index 2cb6284f8e166..f48452e12acf0 100644 --- a/data/json/bionics.json +++ b/data/json/bionics.json @@ -42,12 +42,14 @@ { "id": "bio_armor_arms", "type": "bionic", - "name": { "str": "Alloy Plating - Arms" }, - "description": "The flesh on your arms has been surgically replaced by alloy plating. Provides passive protection and can be used in conjunction with bionic martial arts.", - "occupied_bodyparts": [ [ "arm_l", 4 ], [ "arm_r", 4 ] ], - "bash_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ] ], - "cut_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ] ], - "bullet_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ] ], + "name": { "str": "Intradermal Alloy - Arms" }, + "description": "An advanced protective meshwork has been woven into the flesh on your arms and hands, protecting them from physical trauma.", + "occupied_bodyparts": [ [ "arm_l", 4 ], [ "arm_r", 4 ], [ "hand_l", 1 ], [ "hand_r", 1 ] ], + "bash_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ], [ "hand_l", 3 ], [ "hand_r", 3 ] ], + "cut_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ], [ "hand_l", 3 ], [ "hand_r", 3 ] ], + "bullet_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ], [ "hand_l", 3 ], [ "hand_r", 3 ] ], + "encumbrance": [ [ "arm_l", 1 ], [ "arm_r", 1 ], [ "hand_l", 1 ], [ "hand_r", 1 ] ], + "cant_remove_reason": "The Intradermal Alloy is too thoroughly entwined with %1$s to be removed safely.", "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], "mutation_conflicts": [ "THICKSKIN", @@ -118,7 +120,26 @@ "CLAWS_TENTACLES", "ACIDPROOF", "TOXICFLESH", - "FRESHWATEROSMOSIS" + "FRESHWATEROSMOSIS", + "PAWS", + "PAWS_LARGE", + "NAILS", + "TALONS", + "CLAWS", + "CLAWS_RETRACT", + "CLAWS_RAT", + "CLAWS_ST", + "WEBBED", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR", + "PAWS_LITTLE", + "BOVINE_BULK", + "BOVINE_BULK2", + "FAT", + "SLIME_SPRAY", + "MUCUS_SECRETION", + "MUCUS_SECRETION2" ] }, { @@ -131,18 +152,22 @@ "bash_protec": [ [ "eyes", 3 ] ], "cut_protec": [ [ "eyes", 3 ] ], "bullet_protec": [ [ "eyes", 3 ] ], - "mutation_conflicts": [ "COMPOUND_EYES", "CEPH_VISION", "CEPH_EYES", "EYEBULGE" ], + "encumbrance": [ [ "eyes", 1 ] ], + "mutation_conflicts": [ "COMPOUND_EYES", "CEPH_VISION", "CEPH_EYES", "EYEBULGE", "EYESTALKS1", "EYESTALKS2" ], + "cant_remove_reason": "The Intradermal Plating is too thoroughly entwined with %1$s to be removed safely.", "social_modifiers": { "intimidate": 10 } }, { "id": "bio_armor_head", "type": "bionic", - "name": { "str": "Alloy Plating - head" }, - "description": "The flesh on your head has been surgically replaced by alloy plating, protecting both your head and jaw regions.", + "name": { "str": "Intradermal Alloy - head" }, + "description": "An advanced protective meshwork has been woven into the flesh on your head and jaw region, protecting your skull from physical trauma.", "occupied_bodyparts": [ [ "head", 3 ], [ "mouth", 1 ] ], "bash_protec": [ [ "head", 3 ], [ "mouth", 3 ] ], "cut_protec": [ [ "head", 3 ], [ "mouth", 3 ] ], "bullet_protec": [ [ "head", 3 ], [ "mouth", 3 ] ], + "encumbrance": [ [ "head", 1 ] ], + "cant_remove_reason": "The Intradermal Alloy is too thoroughly entwined with %1$s to be removed safely.", "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], "mutation_conflicts": [ "THICKSKIN", @@ -220,18 +245,48 @@ "MUZZLE_BEAR", "MUZZLE_RAT", "MUZZLE_LONG", - "PROBISCIS" + "PROBISCIS", + "MOUTH_FLAPS", + "MOUTH_TENTACLES", + "MANDIBLES", + "FANGS_SPIDER", + "BEAK", + "BEAK_PECK", + "BEAK_HUM", + "GIZZARD", + "FELINE_EARS", + "CANINE_EARS", + "LUPINE_EARS", + "RABBIT_EARS", + "MOUSE_EARS", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR", + "RABBIT_NOSE", + "SLIT_NOSTRILS", + "WHISKERS", + "WHISKERS_RAT", + "PAWS_LITTLE", + "BOVINE_BULK", + "BOVINE_BULK2", + "FAT", + "SLIME_SPRAY", + "MUCUS_SECRETION", + "MUCUS_SECRETION2", + "WIDE_MOUTH" ] }, { "id": "bio_armor_legs", "type": "bionic", - "name": { "str": "Alloy Plating - Legs" }, - "description": "The flesh on your legs has been surgically replaced by alloy plating. Provides passive protection and can be used in conjunction with bionic martial arts.", - "occupied_bodyparts": [ [ "leg_l", 6 ], [ "leg_r", 6 ] ], - "bash_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ] ], - "cut_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ] ], - "bullet_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ] ], + "name": { "str": "Intradermal Alloy - Legs" }, + "description": "An advanced protective meshwork has been woven into the flesh on your legs and feet, protecting them from physical trauma.", + "occupied_bodyparts": [ [ "leg_l", 6 ], [ "leg_r", 6 ], [ "foot_l", 1 ], [ "foot_r", 1 ] ], + "bash_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ], [ "foot_l", 3 ], [ "foot_r", 3 ] ], + "cut_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ], [ "foot_l", 3 ], [ "foot_r", 3 ] ], + "bullet_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ], [ "foot_l", 3 ], [ "foot_r", 3 ] ], + "encumbrance": [ [ "leg_l", 1 ], [ "leg_r", 1 ], [ "foot_l", 1 ], [ "foot_r", 1 ] ], + "cant_remove_reason": "The Intradermal Alloy is too thoroughly entwined with %1$s to be removed safely.", "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], "mutation_conflicts": [ "THICKSKIN", @@ -300,19 +355,38 @@ "TAIL_STING", "TAIL_CLUB", "LEG_TENTACLES", - "LEG_TENT_BRACE" + "LEG_TENT_BRACE", + "RAP_TALONS", + "HOOVES", + "PADDED_FEET", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR", + "TAIL_RABBIT", + "RABBIT_FEET", + "PAWS_LITTLE", + "BOVINE_BULK", + "BOVINE_BULK2", + "FAT", + "SLIME_SPRAY", + "GASTROPOD_FOOT", + "GASTROPOD_BALANCE", + "MUCUS_SECRETION", + "MUCUS_SECRETION2" ] }, { "id": "bio_armor_torso", "type": "bionic", - "name": { "str": "Alloy Plating - torso" }, - "description": "The flesh on your torso has been surgically replaced by alloy plating, protecting it from physical trauma.", + "name": { "str": "Intradermal Alloy - torso" }, + "description": "An advanced protective meshwork has been woven into the flesh on your torso, protecting it from physical trauma.", "occupied_bodyparts": [ [ "torso", 10 ] ], "bash_protec": [ [ "torso", 3 ] ], "cut_protec": [ [ "torso", 3 ] ], "bullet_protec": [ [ "torso", 3 ] ], + "encumbrance": [ [ "torso", 3 ] ], "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], + "cant_remove_reason": "The Intradermal Alloy is too thoroughly entwined with %1$s to be removed safely.", "canceled_mutations": [ "VINES1", "VINES2", "VINES3" ], "mutation_conflicts": [ "THICKSKIN", @@ -377,7 +451,19 @@ "ARACHNID_ARMS_OK", "CLAWS_TENTACLES", "SHELL", - "SHELL2" + "SHELL2", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR", + "PAWS_LITTLE", + "BOVINE_BULK", + "BOVINE_BULK2", + "FAT", + "SLIME_SPRAY", + "INSECT_RESEVOIR", + "MUCUS_SECRETION", + "MUCUS_SECRETION2", + "SHELL3" ] }, { @@ -924,7 +1010,7 @@ "type": "bionic", "name": { "str": "Itchy Metal Thing" }, "description": "A bionic of some sort, so badly installed that you cannot even tell what it was originally supposed to be. Sometimes it itches horribly.", - "occupied_bodyparts": [ [ "torso", 3 ], [ "head", 2 ], [ "hand_l", 1 ], [ "hand_r", 1 ] ], + "occupied_bodyparts": [ [ "torso", 3 ], [ "head", 2 ] ], "flags": [ "BIONIC_FAULTY" ] }, { @@ -1476,7 +1562,7 @@ "description": "Your leg joints have been equipped with servomotors that provide power-assisted movement. Movement takes less effort when this bionic is online. However, when it's offline it will hamper your movement, as you struggle against its moving parts.", "occupied_bodyparts": [ [ "leg_l", 12 ], [ "leg_r", 12 ] ], "flags": [ "BIONIC_TOGGLED" ], - "mutation_conflicts": [ "LEG_TENTACLES", "LEG_TENT_BRACE" ], + "mutation_conflicts": [ "LEG_TENTACLES", "LEG_TENT_BRACE", "GASTROPOD_FOOT", "GASTROPOD_BALANCE" ], "enchantments": [ { "condition": "ACTIVE", "values": [ { "value": "MOVE_COST", "multiply": -0.1 } ] }, { "condition": "INACTIVE", "values": [ { "value": "MOVE_COST", "multiply": 0.1 } ] } diff --git a/data/json/effect_on_condition.json b/data/json/effect_on_condition.json index eaa049997e9ec..cde0c57a6395a 100644 --- a/data/json/effect_on_condition.json +++ b/data/json/effect_on_condition.json @@ -2,7 +2,7 @@ { "type": "effect_on_condition", "id": "scenario_bad_day", - "scenario_specific": true, + "eoc_type": "SCENARIO_SPECIFIC", "effect": [ { "u_add_effect": "flu", "intensity": 1, "duration": "1000 minutes" }, { "u_add_effect": "drunk", "intensity": 1, "duration": "270 minutes" }, @@ -18,7 +18,7 @@ { "type": "effect_on_condition", "id": "scenario_infected", - "scenario_specific": true, + "eoc_type": "SCENARIO_SPECIFIC", "effect": [ { "u_add_effect": "infected", "intensity": 1, "duration": "PERMANENT", "target_part": "RANDOM" }, { "assign_mission": "MISSION_INFECTED_START_FIND_ANTIBIOTICS" } @@ -27,7 +27,7 @@ { "type": "effect_on_condition", "id": "scenario_fungal_infection", - "scenario_specific": true, + "eoc_type": "SCENARIO_SPECIFIC", "effect": [ { "u_add_effect": "effect_fungus", "intensity": 1, "duration": "PERMANENT", "target_part": "RANDOM" } ] }, { diff --git a/data/json/furniture_and_terrain/furniture-storage.json b/data/json/furniture_and_terrain/furniture-storage.json index 246bb731fcc60..4fbf3fc4b92d5 100644 --- a/data/json/furniture_and_terrain/furniture-storage.json +++ b/data/json/furniture_and_terrain/furniture-storage.json @@ -1285,7 +1285,12 @@ "required_str": 12, "max_volume": "1000 L", "flags": [ "CONTAINER", "SEALED", "BLOCKSDOOR", "MOUNTABLE", "FLAT_SURF" ], - "examine_action": "locked_object", + "prying": { + "result": "f_metal_crate_o", + "message": "You wrench open the metal crate.", + "byproducts": [ { "item": "sheet_metal", "count": 1 } ], + "prying_data": { "difficulty": 4, "prying_level": 1, "noisy": true, "failure": "The lid is sealed more tightly than you thought." } + }, "bash": { "str_min": 30, "str_max": 150, diff --git a/data/json/furniture_and_terrain/furniture-tools.json b/data/json/furniture_and_terrain/furniture-tools.json index 739518a26b41f..16898484afd20 100644 --- a/data/json/furniture_and_terrain/furniture-tools.json +++ b/data/json/furniture_and_terrain/furniture-tools.json @@ -538,6 +538,33 @@ }, "crafting_pseudo_item": "fake_drill_press" }, + { + "type": "furniture", + "id": "f_firefly_terrarium", + "name": "firefly terrarium", + "description": "While many survivors would have focused on trying to bring back electric lights, whomever lives here has apparently decided to make use of the changes wrought by the cataclysm to provide light. This vivarium contains soil, strange plants you don't recognize immediately, and most strikingly, a giant mutant firefly.", + "symbol": "#", + "color": "light_green", + "move_cost_mod": 3, + "coverage": 30, + "required_str": 6, + "light_emitted": 25, + "flags": [ "TRANSPARENT", "NOITEM", "BLOCKSDOOR" ], + "bash": { + "str_min": 20, + "str_max": 30, + "sound_fail": "smash!", + "items": [ + { "item": "glass_shard", "count": [ 8, 12 ] }, + { "item": "alien_fern", "count": [ 0, 3 ] }, + { "item": "mutant_meat", "count": [ 2, 4 ] }, + { "item": "material_soil", "count": [ 2, 10 ] }, + { "item": "mutant_bug_hydrogen_sacs", "count": [ 0, 2 ] }, + { "item": "egg_firefly", "count": [ 0, 1 ] }, + { "item": "mutant_bug_organs", "charges": [ 0, 5 ] } + ] + } + }, { "type": "furniture", "id": "f_tablesaw", diff --git a/data/json/furniture_and_terrain/terrain-doors.json b/data/json/furniture_and_terrain/terrain-doors.json index 30ab3012d69ff..d34648d1631f1 100644 --- a/data/json/furniture_and_terrain/terrain-doors.json +++ b/data/json/furniture_and_terrain/terrain-doors.json @@ -2419,6 +2419,11 @@ "roof": "t_flat_roof", "flags": [ "NOITEM", "REDUCE_SCENT", "OPENCLOSE_INSIDE", "CONNECT_TO_WALL", "LOCKED", "BLOCK_WIND", "PICKABLE" ], "open": "t_door_metal_o", + "prying": { + "result": "t_door_metal_o", + "message": "You pry open the metal door.", + "prying_data": { "difficulty": 8, "prying_level": 4, "noisy": true, "failure": "The metal door is too thick." } + }, "examine_action": "locked_object_pickable", "oxytorch": { "result": "t_mdoor_frame", diff --git a/data/json/furniture_and_terrain/terrain-floors-outdoors.json b/data/json/furniture_and_terrain/terrain-floors-outdoors.json index e2ffb212f0da2..3041d735febd6 100644 --- a/data/json/furniture_and_terrain/terrain-floors-outdoors.json +++ b/data/json/furniture_and_terrain/terrain-floors-outdoors.json @@ -146,7 +146,20 @@ "move_cost": 0, "roof": "t_rock_floor", "flags": [ "NOITEM", "SUPPORTS_ROOF", "WALL" ], - "examine_action": "fault" + "examine_action": { + "type": "effect_on_condition", + "effect_on_conditions": [ + { + "id": "EOC_TERRAIN_FAULT", + "effect": [ + { + "u_message": "This wall is perfectly vertical. Odd, twisted holes are set in it, leading as far back into the solid rock as you can see. The holes are humanoid in shape, but with long, twisted, distended limbs.", + "popup": true + } + ] + } + ] + } }, { "type": "terrain", diff --git a/data/json/furniture_and_terrain/terrain-flora.json b/data/json/furniture_and_terrain/terrain-flora.json index 94f8fbf72f4da..62daa2a1d0d9b 100644 --- a/data/json/furniture_and_terrain/terrain-flora.json +++ b/data/json/furniture_and_terrain/terrain-flora.json @@ -344,6 +344,26 @@ "items": [ { "item": "stick_long", "count": [ 0, 5 ] } ] } }, + { + "type": "terrain", + "id": "t_mega_fern", + "name": "mega fern", + "looks_like": "t_tree_young", + "description": "A gigantic fern like nothing you've seen before. The leaves are a bright scarlet color with a net like structure of green veins. The multipronged trunks appear to have the consistency of balsa wood.", + "symbol": "1", + "color": [ "red_green", "red_green", "red_green", "brown" ], + "//": "barren in winter", + "move_cost": 4, + "flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "NOITEM", "YOUNG", "REDUCE_SCENT" ], + "bash": { + "str_min": 4, + "str_max": 50, + "sound": "crunch!", + "sound_fail": "whack!", + "ter_set": "t_dirt", + "items": [ { "item": "alien_fern", "count": [ 0, 5 ] } ] + } + }, { "type": "terrain", "id": "t_tree_apple", diff --git a/data/json/hobbies.json b/data/json/hobbies.json index 34c43218c5462..7521369d2a7ea 100644 --- a/data/json/hobbies.json +++ b/data/json/hobbies.json @@ -56,6 +56,25 @@ "traits": [ "DISORGANIZED" ], "addictions": [ { "intensity": 20, "type": "alcohol" } ] }, + { + "type": "profession", + "subtype": "hobby", + "id": "sleepingpillhead", + "name": "Sleeping Pill Reliance", + "description": "You had difficulties falling asleep, so you started taking those sleeping pills. Problem is, now you can not fall asleep without them anymore and the Cataclysm does complicate the matter.", + "points": -1, + "addictions": [ { "intensity": 10, "type": "sleeping pill" } ] + }, + { + "type": "profession", + "subtype": "hobby", + "id": "caffeine_junkie", + "name": "Caffeine Junkie", + "description": "Coffee was your day-to-day companion in surviving your job, but getting caffeine into your body will be much harder now.", + "points": -1, + "traits": [ "STIMBOOST" ], + "addictions": [ { "intensity": 10, "type": "caffeine" } ] + }, { "type": "profession", "subtype": "hobby", @@ -121,7 +140,7 @@ "subtype": "hobby", "id": "loves_books", "name": "Loves Books", - "description": "You love reading, you just never seemed to have enough time. Maybe the cataclysm is a blessing in disguise.", + "description": "You love reading, you just never seemed to have enough time. Maybe the Cataclysm is a blessing in disguise.", "points": 1, "traits": [ "LOVES_BOOKS" ] }, diff --git a/data/json/itemgroups/Food/food.json b/data/json/itemgroups/Food/food.json index 2b92f7bd11743..ea2285f84eac3 100644 --- a/data/json/itemgroups/Food/food.json +++ b/data/json/itemgroups/Food/food.json @@ -514,6 +514,7 @@ { "item": "water_clean", "prob": 90 }, { "item": "water_mineral", "prob": 10 }, { "item": "sandwich_deluxe", "prob": 20 }, + { "item": "sandwich_reuben", "prob": 10 }, { "item": "sandwich_veggy", "prob": 30 }, { "item": "sandwich_cucumber", "prob": 25 }, { "item": "oj", "prob": 50 }, diff --git a/data/json/itemgroups/SUS/domestic.json b/data/json/itemgroups/SUS/domestic.json index 78bd751e90887..e5316d1d67c49 100644 --- a/data/json/itemgroups/SUS/domestic.json +++ b/data/json/itemgroups/SUS/domestic.json @@ -633,10 +633,13 @@ { "item": "soap_holder", "prob": 40 }, { "item": "razor_shaving", "count": [ 1, 2 ], "prob": 20 }, { "item": "cotton_ball", "prob": 50 }, + { "item": "comb_lice", "prob": 2 }, { "item": "bleach", "prob": 15, "charges-min": 1 }, { "item": "ammonia", "prob": 20, "charges-min": 1 }, { "item": "string_floss", "count": [ 1, 2 ], "prob": 60 }, - { "item": "toothbrush_plain", "count": [ 1, 3 ], "prob": 45 } + { "item": "toothbrush_plain", "count": [ 1, 3 ], "prob": 45 }, + { "item": "dentures", "count": [ 1, 2 ], "prob": 15 }, + { "item": "toothbrush_electric", "count": [ 1, 3 ], "prob": 25 } ] }, { @@ -654,6 +657,7 @@ ], "prob": 95 }, + { "item": "comb_lice", "prob": 10 }, { "item": "eyedrops", "prob": 15 }, { "item": "pepto", "prob": 70, "charges-min": 1, "container-item": "bottle_plastic_small" }, { "item": "inhaler", "prob": 25, "charges-min": 10, "charges-max": 100 }, @@ -755,6 +759,8 @@ "subtype": "collection", "entries": [ { "item": "soap", "count": [ 1, 4 ], "prob": 70, "charges": [ 1, 10 ] }, + { "item": "liquid_soap", "count": [ 1, 6 ], "prob": 70, "charges-min": 1 }, + { "item": "bath_toy", "count": [ 1, 4 ], "prob": 40 }, { "distribution": [ { "item": "razor_shaving", "count": [ 1, 2 ], "prob": 50 }, diff --git a/data/json/itemgroups/SUS/fridges.json b/data/json/itemgroups/SUS/fridges.json index 75a7f9e8b6fe8..35f35646f4217 100644 --- a/data/json/itemgroups/SUS/fridges.json +++ b/data/json/itemgroups/SUS/fridges.json @@ -896,6 +896,7 @@ { "item": "sandwich_jam", "charges-min": 1, "prob": 6 }, { "item": "sandwich_cheese", "charges-min": 1, "prob": 6 }, { "item": "sandwich_deluxe", "charges-min": 1, "prob": 6 }, + { "item": "sandwich_reuben", "charges-min": 1, "prob": 3 }, { "item": "sandwich_pb", "charges-min": 1, "prob": 6 }, { "item": "sandwich_pbj", "charges-min": 1, "prob": 6 }, { "item": "fish_sandwich", "charges-min": 1, "prob": 6 }, diff --git a/data/json/itemgroups/collections_domestic.json b/data/json/itemgroups/collections_domestic.json index 66f53430a31dc..ddbdf117e131f 100644 --- a/data/json/itemgroups/collections_domestic.json +++ b/data/json/itemgroups/collections_domestic.json @@ -4,7 +4,14 @@ "//": "Mundane household items that might be found in or around a shower or bath.", "type": "item_group", "subtype": "distribution", - "items": [ [ "rag", 40 ], [ "towel", 30 ], { "item": "soap", "prob": 10, "charges": [ 1, 10 ] }, [ "bathroom_scale", 20 ] ] + "items": [ + { "item": "rag", "prob": 40 }, + { "item": "bath_toy", "count": [ 1, 4 ], "prob": 10 }, + { "item": "bathroom_scale", "prob": 20 }, + { "item": "liquid_soap", "count": [ 1, 4 ], "prob": 70, "charges-min": 1 }, + { "item": "towel", "prob": 30 }, + { "item": "soap", "prob": 10, "charges": [ 1, 10 ] } + ] }, { "id": "kitchen_counters", diff --git a/data/json/items/armor/belts.json b/data/json/items/armor/belts.json index 511313389f82a..79daf85850c22 100644 --- a/data/json/items/armor/belts.json +++ b/data/json/items/armor/belts.json @@ -172,87 +172,6 @@ "flags": [ "WAIST", "WATER_FRIENDLY" ], "armor": [ { "encumbrance": [ 2, 5 ], "coverage": 5, "covers": [ "torso" ] } ] }, - { - "id": "survivor_belt_notools", - "type": "ARMOR", - "name": { "str": "survivor belt" }, - "description": "A custom-built leather belt covered with pouches, with a sheath to carry a smaller blade and a holster to carry a pistol. Durable and carefully crafted to be comfortable to wear. Activate to sheathe/draw a weapon.", - "weight": "1549 g", - "volume": "2250 ml", - "price": 15000, - "price_postapoc": 2500, - "material": [ "leather" ], - "symbol": "[", - "looks_like": "holster", - "color": "brown", - "material_thickness": 2, - "pocket_data": [ - { - "holster": true, - "min_item_volume": "250 ml", - "max_contains_volume": "1 L", - "max_contains_weight": "2 kg", - "max_item_length": "70 cm", - "moves": 20, - "flag_restriction": [ "SHEATH_KNIFE" ] - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1000 g", - "max_item_length": "13 cm", - "moves": 50 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1000 g", - "max_item_length": "13 cm", - "moves": 50 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1000 g", - "max_item_length": "13 cm", - "moves": 50 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1000 g", - "max_item_length": "13 cm", - "moves": 50 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1000 g", - "max_item_length": "13 cm", - "moves": 50 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1000 g", - "max_item_length": "13 cm", - "moves": 50 - }, - { - "magazine_well": "350 ml", - "pocket_type": "CONTAINER", - "holster": true, - "min_item_volume": "300 ml", - "max_contains_volume": "1000 ml", - "max_contains_weight": "2 kg", - "max_item_length": "30 cm", - "moves": 50 - } - ], - "use_action": { "type": "holster", "holster_prompt": "Store item", "holster_msg": "You put your %1$s in your %2$s" }, - "flags": [ "WATER_FRIENDLY", "STURDY", "WAIST" ], - "armor": [ { "encumbrance": [ 2, 6 ], "coverage": 15, "covers": [ "torso" ] } ] - }, { "id": "tool_belt", "type": "ARMOR", diff --git a/data/json/items/armor/bespoke_armor/custom_bodysuits.json b/data/json/items/armor/bespoke_armor/custom_bodysuits.json new file mode 100644 index 0000000000000..7fe1584082a97 --- /dev/null +++ b/data/json/items/armor/bespoke_armor/custom_bodysuits.json @@ -0,0 +1,312 @@ +[ + { + "id": "armor_nomad", + "type": "ARMOR", + "name": { "str": "nomad gear" }, + "description": "A makeshift outfit made from pre-Cataclysm clothing designed for long travels. It has a lot of storage space.", + "weight": "5830 g", + "volume": "7500 ml", + "price": 35000, + "price_postapoc": 1750, + "to_hit": -3, + "material": [ "cotton", "leather" ], + "symbol": "[", + "looks_like": "touring_suit", + "color": "light_red", + "armor": [ + { "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 10, 16 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 95, "encumbrance": [ 10, 14 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 95, "encumbrance": [ 10, 13 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "8 L", "max_contains_weight": "16 kg", "moves": 150 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 } + ], + "warmth": 40, + "material_thickness": 5, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 1, + "flags": [ "VARSIZE", "POCKETS" ] + }, + { + "id": "armor_nomad_light", + "type": "ARMOR", + "name": { "str": "light nomad gear" }, + "description": "A light makeshift outfit made from pre-Cataclysm clothing designed for long summer travels. It offers less storage space and armor compared to regular nomad gear.", + "weight": "3200 g", + "volume": "6500 ml", + "price": 29500, + "price_postapoc": 1250, + "to_hit": -4, + "material": [ "cotton" ], + "looks_like": "armor_nomad", + "symbol": "[", + "color": "light_gray", + "armor": [ + { "covers": [ "torso" ], "coverage": 80, "encumbrance": [ 8, 12 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 80, "encumbrance": [ 8, 12 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 80, "encumbrance": [ 8, 10 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 } + ], + "warmth": 10, + "material_thickness": 4, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 1, + "flags": [ "VARSIZE", "POCKETS" ] + }, + { + "id": "armor_scavenger", + "type": "ARMOR", + "name": { "str": "scavenger gear" }, + "description": "A sturdy scavenger's outfit made from refitted pre-Cataclysm protective gear. It has a lot of storage space.", + "weight": "7915 g", + "volume": "7500 ml", + "price": 180000, + "price_postapoc": 2000, + "to_hit": -3, + "material": [ "kevlar_layered", "cotton" ], + "symbol": "[", + "looks_like": "armor_nomad", + "color": "green", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 15, 26 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 15, 19 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 15, 15 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "8 L", "max_contains_weight": "16 kg", "moves": 150 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 100 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 100 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 } + ], + "warmth": 40, + "material_thickness": 5, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 2, + "flags": [ "VARSIZE", "POCKETS", "STURDY", "WATERPROOF" ] + }, + { + "id": "lsurvivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "light survivor suit" }, + "description": "A lightweight, hand-built combination armor made from a cut-down bulletproof vest and a reinforced fabric jumpsuit. Protects from the elements as well as from harm.", + "weight": "5100 g", + "volume": "10500 ml", + "price": 110000, + "price_postapoc": 5000, + "material": [ "kevlar_layered", "cotton" ], + "symbol": "[", + "looks_like": "survivor_suit", + "color": "green", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 7, 15 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 7, 7 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 7, 7 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } + ], + "warmth": 15, + "material_thickness": 4, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + }, + { + "id": "xl_lsurvivor_suit", + "type": "ARMOR", + "name": { "str": "XL light survivor suit" }, + "copy-from": "lsurvivor_suit", + "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY", "OVERSIZE" ] + }, + { + "id": "survivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor suit" }, + "description": "A hand-built combination armor made from a bulletproof vest and a reinforced leather jumpsuit. Protects from the elements as well as from harm.", + "weight": "6800 g", + "volume": "11500 ml", + "price": 150000, + "price_postapoc": 5000, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "looks_like": "touring_suit", + "color": "brown", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 12, 20 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 12, 17 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 12, 12 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } + ], + "warmth": 15, + "material_thickness": 4, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + }, + { + "id": "xlsurvivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "XL survivor suit" }, + "description": "A massive hand-built combination armor made from a bulletproof vest and a reinforced leather jumpsuit. Protects from the elements as well as from harm.", + "weight": "12400 g", + "volume": "18 L", + "price": 150000, + "price_postapoc": 4000, + "to_hit": -3, + "bashing": 6, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "looks_like": "survivor_suit", + "color": "brown", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 17, 30 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 17, 22 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 17, 17 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } + ], + "warmth": 15, + "material_thickness": 4, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 3, + "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + }, + { + "id": "wsurvivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "winter survivor suit" }, + "description": "A warm and heavy hand-built combination armor made from a reinforced bulletproof vest and an insulated leather jumpsuit. Protects from the elements as well as from harm.", + "weight": "7800 g", + "volume": "14 L", + "price": 200000, + "price_postapoc": 5000, + "to_hit": -3, + "bashing": 6, + "material": [ "kevlar_layered", "fur" ], + "symbol": "[", + "looks_like": "survivor_suit", + "color": "light_gray", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 20, 28 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 20, 25 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 20, 20 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } + ], + "warmth": 75, + "material_thickness": 5, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 5, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + }, + { + "id": "xl_wsurvivor_suit", + "type": "ARMOR", + "name": { "str": "XL winter survivor suit" }, + "copy-from": "wsurvivor_suit", + "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY", "OVERSIZE" ] + }, + { + "id": "wsurvivor_suit_nofur", + "type": "ARMOR", + "name": { "str": "winter survivor suit" }, + "description": "A warm and heavy hand-built combination armor made from a reinforced bulletproof vest and a faux fur insulated leather jumpsuit. Protects from the elements as well as from harm.", + "copy-from": "wsurvivor_suit", + "material": [ "kevlar_layered", "faux_fur" ], + "symbol": "[", + "warmth": 65, + "looks_like": "survivor_suit", + "color": "pink" + }, + { + "id": "xl_wsurvivor_suit_nofur", + "type": "ARMOR", + "name": { "str": "XL winter survivor suit" }, + "copy-from": "wsurvivor_suit", + "material": [ "kevlar_layered", "faux_fur" ], + "description": "A warm, heavy and oversized hand-built combination armor made from a reinforced bulletproof vest and a faux fur insulated leather jumpsuit. Protects from the elements as well as from harm.", + "color": "pink", + "warmth": 65, + "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY", "OVERSIZE" ] + }, + { + "id": "h20survivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor wetsuit" }, + "description": "A lightweight, hand-built combination armor made from a cut-down bulletproof vest and a reinforced neoprene wetsuit. Protects from the elements as well as from harm.", + "weight": "6400 g", + "volume": "7 L", + "price": 110000, + "price_postapoc": 5000, + "to_hit": -3, + "bashing": 6, + "material": [ "kevlar", "plastic", "neoprene" ], + "symbol": "[", + "looks_like": "wetsuit", + "color": "dark_gray", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 10, 16 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 10, 14 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 10, 10 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 200 } + ], + "warmth": 15, + "material_thickness": 3, + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATER_FRIENDLY", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + } +] diff --git a/data/json/items/armor/bespoke_armor/custom_boots.json b/data/json/items/armor/bespoke_armor/custom_boots.json new file mode 100644 index 0000000000000..8d4b66a566ba2 --- /dev/null +++ b/data/json/items/armor/bespoke_armor/custom_boots.json @@ -0,0 +1,152 @@ +[ + { + "id": "boots_lsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of light survivor boots", "str_pl": "pairs of light survivor boots" }, + "description": "A pair of customized, Kevlar-armored cloth boots. Favoring comfort over protection, these boots will keep you moving and agile, even when knee-deep in the dead.", + "weight": "1120 g", + "volume": "2 L", + "price": 24000, + "price_postapoc": 5000, + "to_hit": -1, + "bashing": 1, + "material": [ "kevlar", "cotton" ], + "symbol": "[", + "looks_like": "boots_combat", + "color": "green", + "warmth": 15, + "material_thickness": 4, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 18, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] + }, + { + "id": "xl_boots_lsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL light survivor boots", "str_pl": "pairs of XL light survivor boots" }, + "copy-from": "boots_lsurvivor", + "proportional": { "weight": 1.4, "volume": 1.4 }, + "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] + }, + { + "id": "boots_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of survivor boots", "str_pl": "pairs of survivor boots" }, + "description": "A pair of customized leather boots armored with Kevlar. Balancing comfort and protection, these boots will keep you alive, even when knee-deep in the dead.", + "weight": "1330 g", + "volume": "2500 ml", + "price": 24000, + "price_postapoc": 6000, + "to_hit": -1, + "bashing": 1, + "material": [ "kevlar", "leather" ], + "symbol": "[", + "looks_like": "boots_combat", + "color": "brown", + "warmth": 15, + "material_thickness": 3.5, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 24, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] + }, + { + "id": "boots_xlsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of XL survivor boots", "str_pl": "pairs of XL survivor boots" }, + "description": "A massive pair of customized leather boots armored with Kevlar. Balancing comfort and protection, these boots will keep you alive even when knee-deep in the dead.", + "weight": "2460 g", + "volume": "5 L", + "price": 24000, + "price_postapoc": 4000, + "to_hit": -1, + "bashing": 1, + "material": [ "kevlar", "leather" ], + "symbol": "[", + "looks_like": "boots_combat", + "color": "brown", + "warmth": 15, + "material_thickness": 4, + "environmental_protection": 3, + "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 38, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] + }, + { + "id": "boots_wsurvivor_nofur", + "type": "ARMOR", + "name": { "str": "pair of faux fur winter survivor boots", "str_pl": "pairs of faux fur winter survivor boots" }, + "description": "A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur lining, these will keep you alive even when knee-deep in the dead.", + "copy-from": "boots_wsurvivor", + "material": [ "kevlar", "faux_fur" ], + "symbol": "[", + "warmth": 50, + "looks_like": "boots_fur", + "color": "pink" + }, + { + "id": "xl_boots_wsurvivor_nofur", + "type": "ARMOR", + "name": { "str": "pair of XL faux fur winter survivor boots", "str_pl": "pairs of XL faux fur winter survivor boots" }, + "copy-from": "boots_wsurvivor", + "material": [ "kevlar", "faux_fur" ], + "description": "A pair of customized and oversized Kevlar-armored boots. Warm thanks to a faux-fur lining, these will keep you alive even when knee-deep in the dead.", + "color": "pink", + "warmth": 50, + "proportional": { "weight": 1.3, "volume": 1.3 }, + "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] + }, + { + "id": "boots_wsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of winter survivor boots", "str_pl": "pairs of winter survivor boots" }, + "description": "A pair of customized, Kevlar-armored boots. Warm thanks to the real fur lining, these will keep you alive, even when knee-deep in the dead.", + "weight": "1760 g", + "volume": "3500 ml", + "price": 24000, + "price_postapoc": 6000, + "to_hit": -1, + "bashing": 1, + "material": [ "kevlar", "fur" ], + "symbol": "[", + "looks_like": "boots_fur", + "color": "light_gray", + "warmth": 75, + "material_thickness": 5, + "environmental_protection": 5, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 38, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] + }, + { + "id": "xl_boots_wsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL winter survivor boots", "str_pl": "pairs of XL winter survivor boots" }, + "copy-from": "boots_wsurvivor", + "proportional": { "weight": 1.3, "volume": 1.3 }, + "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] + }, + { + "id": "boots_h20survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of survivor wetsuit boots", "str_pl": "pairs of survivor wetsuit boots" }, + "description": "A pair of customized, Kevlar-armored neoprene boots. These will keep you dry and alive, come hell or high water.", + "weight": "1180 g", + "volume": "1500 ml", + "price": 24000, + "price_postapoc": 6000, + "to_hit": -1, + "bashing": 1, + "material": [ "kevlar", "plastic", "neoprene" ], + "symbol": "[", + "looks_like": "boots_bunker", + "color": "dark_gray", + "warmth": 15, + "material_thickness": 3, + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY" ], + "armor": [ { "encumbrance": 32, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] + } +] diff --git a/data/json/items/armor/bespoke_armor/custom_gloves.json b/data/json/items/armor/bespoke_armor/custom_gloves.json new file mode 100644 index 0000000000000..dc88c1cd4b47c --- /dev/null +++ b/data/json/items/armor/bespoke_armor/custom_gloves.json @@ -0,0 +1,204 @@ +[ + { + "id": "gloves_lsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of light survivor gloves", "str_pl": "pairs of light survivor gloves" }, + "description": "A pair of customized, Kevlar-armored cloth gloves. These are designed for comfort first.", + "weight": "190 g", + "volume": "750 ml", + "price": 18000, + "price_postapoc": 2000, + "to_hit": 2, + "material": [ "kevlar_layered", "cotton" ], + "symbol": "[", + "looks_like": "gloves_survivor", + "color": "green", + "warmth": 15, + "material_thickness": 1, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 10, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "xl_gloves_lsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL light survivor gloves", "str_pl": "pairs of XL light survivor gloves" }, + "copy-from": "gloves_lsurvivor", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF" ] + }, + { + "id": "gloves_lsurvivor_fingerless", + "type": "ARMOR", + "looks_like": "gloves_lsurvivor", + "category": "armor", + "name": { "str": "pair of fingerless light survivor gloves", "str_pl": "pairs of fingerless light survivor gloves" }, + "description": "A pair of customized, Kevlar-armored cloth gloves without fingers. These are designed for comfort first.", + "weight": "160 g", + "volume": "700 ml", + "price": 16000, + "price_postapoc": 2000, + "to_hit": 2, + "material": [ "kevlar_layered", "cotton" ], + "symbol": "[", + "color": "green", + "warmth": 12, + "material_thickness": 1, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "ALLOWS_NATURAL_ATTACKS" ], + "armor": [ { "encumbrance": 8, "coverage": 85, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "xl_gloves_lsurvivor_fingerless", + "type": "ARMOR", + "name": { "str": "pair of XL fingerless light survivor gloves", "str_pl": "pairs of XL fingerless light survivor gloves" }, + "copy-from": "gloves_lsurvivor_fingerless", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF", "ALLOWS_NATURAL_ATTACKS" ] + }, + { + "id": "gloves_survivor_fingerless", + "type": "ARMOR", + "looks_like": "gloves_survivor", + "category": "armor", + "name": { "str": "pair of fingerless survivor gloves", "str_pl": "pairs of fingerless survivor gloves" }, + "description": "A pair of customized, Kevlar-armored leather gloves without fingers. These strike a balance between comfort and protection.", + "weight": "200 g", + "volume": "700 ml", + "price": 16000, + "price_postapoc": 2000, + "to_hit": 2, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "color": "brown", + "warmth": 12, + "material_thickness": 3, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "ALLOWS_NATURAL_ATTACKS", "ALLOWS_TALONS" ], + "armor": [ { "encumbrance": 16, "coverage": 85, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "xl_gloves_survivor_fingerless", + "type": "ARMOR", + "name": { "str": "pair of XL fingerless survivor gloves", "str_pl": "pairs of XL fingerless survivor gloves" }, + "copy-from": "gloves_survivor_fingerless", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF", "ALLOWS_NATURAL_ATTACKS" ] + }, + { + "id": "gloves_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of survivor gloves", "str_pl": "pairs of survivor gloves" }, + "description": "A pair of customized, Kevlar-armored leather gloves. These strike a balance between comfort and protection.", + "weight": "230 g", + "volume": "750 ml", + "price": 18000, + "price_postapoc": 2000, + "to_hit": 2, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "looks_like": "fire_gauntlets", + "color": "brown", + "warmth": 15, + "material_thickness": 3, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "xl_gloves_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of XL survivor gloves", "str_pl": "pairs of XL survivor gloves" }, + "description": "A massive pair of customized, Kevlar-armored leather gloves. These strike a balance between protection and comfort.", + "weight": "480 g", + "volume": "1500 ml", + "price": 18000, + "price_postapoc": 1500, + "to_hit": 2, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "looks_like": "gloves_survivor", + "color": "brown", + "warmth": 15, + "material_thickness": 2, + "environmental_protection": 3, + "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "gloves_wsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of winter survivor gloves", "str_pl": "pairs of winter survivor gloves" }, + "description": "A pair of customized, Kevlar-armored gloves. These are lined with real fur.", + "weight": "300 g", + "volume": "1250 ml", + "price": 18000, + "price_postapoc": 2500, + "to_hit": 2, + "material": [ "kevlar_layered", "fur" ], + "symbol": "[", + "looks_like": "gloves_winter", + "color": "light_gray", + "warmth": 75, + "material_thickness": 4, + "environmental_protection": 5, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 37, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "xl_gloves_wsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL winter survivor gloves", "str_pl": "pairs of XL winter survivor gloves" }, + "copy-from": "gloves_wsurvivor", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OVERSIZE" ] + }, + { + "id": "gloves_wsurvivor_nofur", + "type": "ARMOR", + "name": { "str": "pair of faux fur winter survivor gloves", "str_pl": "pairs of faux fur winter survivor gloves" }, + "description": "A pair of customized, Kevlar-armored gloves. These are lined with faux-fur.", + "copy-from": "gloves_wsurvivor", + "material": [ "kevlar_layered", "faux_fur" ], + "symbol": "[", + "looks_like": "gloves_winter", + "color": "pink", + "warmth": 60 + }, + { + "id": "xl_gloves_wsurvivor_nofur", + "type": "ARMOR", + "name": { "str": "pair of XL faux fur winter survivor gloves", "str_pl": "pairs of XL faux fur winter survivor gloves" }, + "copy-from": "gloves_wsurvivor_nofur", + "material": [ "kevlar_layered", "faux_fur" ], + "description": "A pair of customized and oversized Kevlar-armored gloves. These are lined with faux-fur.", + "color": "pink", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OVERSIZE" ] + }, + { + "id": "gloves_h20survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of survivor wetsuit gloves", "str_pl": "pairs of survivor wetsuit gloves" }, + "description": "A pair of customized, Kevlar armored neoprene gloves, modified to be easy to wear while providing maximum protection under extreme conditions.", + "weight": "390 g", + "volume": "750 ml", + "price": 18000, + "price_postapoc": 2000, + "to_hit": 2, + "material": [ "kevlar", "plastic", "neoprene" ], + "symbol": "[", + "looks_like": "gloves_rubber", + "color": "dark_gray", + "warmth": 15, + "material_thickness": 1, + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY" ], + "armor": [ { "encumbrance": 25, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + } +] diff --git a/data/json/items/armor/bespoke_armor/custom_headgear.json b/data/json/items/armor/bespoke_armor/custom_headgear.json new file mode 100644 index 0000000000000..6eb37d4e53edd --- /dev/null +++ b/data/json/items/armor/bespoke_armor/custom_headgear.json @@ -0,0 +1,220 @@ +[ + { + "id": "helmet_nomad", + "type": "ARMOR", + "name": { "str": "nomad cowl" }, + "description": "A makeshift cowl with protection for the eyes from rain and sun, designed for long travels.", + "weight": "470 g", + "volume": "2500 ml", + "price": 25000, + "price_postapoc": 250, + "to_hit": -3, + "material": [ "cotton", "leather" ], + "symbol": "[", + "looks_like": "balclava", + "color": "white", + "armor": [ + { "covers": [ "head" ], "coverage": 95, "encumbrance": 20 }, + { "covers": [ "eyes", "mouth" ], "coverage": 95, "encumbrance": 5 } + ], + "warmth": 35, + "material_thickness": 3, + "environmental_protection": 4, + "flags": [ "VARSIZE", "WATERPROOF", "SUN_GLASSES" ] + }, + { + "id": "xl_helmet_nomad", + "type": "ARMOR", + "copy-from": "helmet_nomad", + "name": { "str": "nomad cowl XL" }, + "description": "A makeshift cowl with protection for the eyes from rain and sun, designed for long travels. Designed for a gigantic wanderer.", + "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "SUN_GLASSES", "OVERSIZE" ] + }, + { + "id": "hood_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor hood" }, + "description": "A customized armored leather and Kevlar hood, designed to balance comfort and protection.", + "weight": "820 g", + "volume": "2 L", + "price": 58000, + "price_postapoc": 4000, + "to_hit": -1, + "bashing": 10, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "looks_like": "hood_rain", + "color": "brown", + "warmth": 15, + "material_thickness": 4, + "environmental_protection": 3, + "techniques": [ "WBLOCK_1" ], + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], + "armor": [ { "encumbrance": 25, "coverage": 100, "covers": [ "head" ] } ] + }, + { + "id": "hood_wsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "winter survivor hood" }, + "description": "A customized armored Kevlar hood. Warm thanks to the real fur lining.", + "weight": "870 g", + "volume": "1500 ml", + "price": 58000, + "price_postapoc": 3500, + "to_hit": -1, + "bashing": 10, + "material": [ "kevlar_layered", "fur" ], + "symbol": "[", + "looks_like": "hood_survivor", + "color": "light_gray", + "warmth": 75, + "material_thickness": 5, + "environmental_protection": 5, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], + "armor": [ { "encumbrance": 37, "coverage": 100, "covers": [ "head" ] } ] + }, + { + "id": "xl_hood_wsurvivor", + "type": "ARMOR", + "copy-from": "hood_wsurvivor", + "name": { "str": "XL winter survivor hood" }, + "description": "A customized and oversized armored Kevlar hood. Warm thanks to the real fur lining.", + "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] + }, + { + "id": "hood_xlsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "XL survivor hood" }, + "description": "A massive customized armored leather and Kevlar hood, designed to balance comfort and protection.", + "weight": "1640 g", + "volume": "4500 ml", + "price": 58000, + "price_postapoc": 2500, + "to_hit": -1, + "bashing": 10, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "looks_like": "hood_survivor", + "color": "brown", + "warmth": 15, + "material_thickness": 3, + "environmental_protection": 3, + "techniques": [ "WBLOCK_1" ], + "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], + "armor": [ { "encumbrance": 40, "coverage": 100, "covers": [ "head" ] } ] + }, + { + "id": "hood_lsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "light survivor hood" }, + "description": "A customized armored cloth and Kevlar hood, light yet durable.", + "weight": "628 g", + "volume": "750 ml", + "price": 58000, + "price_postapoc": 3000, + "to_hit": -1, + "bashing": 10, + "material": [ "kevlar_layered", "cotton" ], + "symbol": "[", + "looks_like": "hood_survivor", + "color": "green", + "warmth": 10, + "material_thickness": 4, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], + "armor": [ { "encumbrance": 15, "coverage": 100, "covers": [ "head" ] } ] + }, + { + "id": "xl_hood_lsurvivor", + "type": "ARMOR", + "copy-from": "hood_lsurvivor", + "name": { "str": "XL light survivor hood" }, + "description": "A customized and oversized armored cloth and Kevlar hood, light yet durable.", + "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] + }, + { + "id": "hood_wsurvivor_nofur", + "type": "ARMOR", + "name": { "str": "winter faux fur survivor hood" }, + "description": "A customized armored Kevlar hood. Warm thanks to the faux-fur lining.", + "copy-from": "hood_wsurvivor", + "material": [ "kevlar_layered", "faux_fur" ], + "symbol": "[", + "warmth": 65, + "looks_like": "hood_survivor", + "color": "pink" + }, + { + "id": "xl_hood_wsurvivor_nofur", + "type": "ARMOR", + "copy-from": "hood_wsurvivor", + "material": [ "kevlar_layered", "faux_fur" ], + "color": "pink", + "warmth": 65, + "name": { "str": "XL faux fur winter survivor hood" }, + "description": "A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur lining.", + "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] + }, + { + "id": "hood_h20survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor wetsuit hood" }, + "description": "A customized armored neoprene and Kevlar hood, very strong and durable.", + "weight": "860 g", + "volume": "1500 ml", + "price": 58000, + "price_postapoc": 1500, + "to_hit": -1, + "bashing": 10, + "material": [ "kevlar", "plastic", "neoprene" ], + "symbol": "[", + "looks_like": "wetsuit_hood", + "color": "dark_gray", + "warmth": 15, + "material_thickness": 3, + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY", "OUTER", "HELMET_COMPAT" ], + "armor": [ { "encumbrance": 25, "coverage": 100, "covers": [ "head" ] } ] + }, + { + "id": "helmet_scavenger", + "type": "ARMOR", + "name": { "str": "scavenger cowl" }, + "description": "A sturdy protective cowl extending down to the neck, fitted with a respirator and eye protection. For dangerous scavenging ventures.", + "weight": "695 g", + "volume": "2500 ml", + "price": 55000, + "price_postapoc": 3500, + "to_hit": -3, + "material": [ "kevlar_layered", "cotton" ], + "symbol": "[", + "looks_like": "mask_gas", + "color": "white", + "armor": [ + { "covers": [ "head" ], "coverage": 100, "encumbrance": 23 }, + { "covers": [ "eyes", "mouth" ], "coverage": 100, "encumbrance": 5 } + ], + "warmth": 40, + "material_thickness": 3, + "environmental_protection": 7, + "flags": [ "VARSIZE", "STURDY", "WATERPROOF", "SUN_GLASSES" ] + }, + { + "id": "xl_helmet_scavenger", + "type": "ARMOR", + "copy-from": "helmet_scavenger", + "name": { "str": "XL scavenger cowl" }, + "description": "A sturdy protective cowl extending down to the neck, fitted with a respirator and eye protection. For oversized dangerous scavenging ventures.", + "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, + "extend": { "flags": [ "OVERSIZE" ] } + } +] diff --git a/data/json/items/armor/bespoke_armor/custom_legs.json b/data/json/items/armor/bespoke_armor/custom_legs.json new file mode 100644 index 0000000000000..955f1e66f1831 --- /dev/null +++ b/data/json/items/armor/bespoke_armor/custom_legs.json @@ -0,0 +1,163 @@ +[ + { + "id": "lsurvivor_pants", + "type": "ARMOR", + "category": "armor", + "name": { "str_sp": "light survivor cargo pants" }, + "description": "Lightweight, Kevlar armored cargo pants designed to hold as much as possible. Strong and mostly waterproof.", + "weight": "920 g", + "volume": "3500 ml", + "price": 40000, + "price_postapoc": 1500, + "material": [ "kevlar_layered", "cotton" ], + "symbol": "[", + "looks_like": "pants_survivor", + "color": "green", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1000 ml", + "max_contains_weight": "2 kg", + "max_item_length": "21 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1000 ml", + "max_contains_weight": "2 kg", + "max_item_length": "21 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1 kg", + "max_item_length": "15 cm", + "moves": 100 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1 kg", + "max_item_length": "15 cm", + "moves": 100 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "500 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 100 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "500 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 100 + } + ], + "warmth": 12, + "material_thickness": 3, + "environmental_protection": 1, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "RAINPROOF", "STURDY" ], + "armor": [ { "encumbrance": [ 8, 16 ], "coverage": 95, "covers": [ "leg_l", "leg_r" ] } ] + }, + { + "id": "xl_lsurvivor_pants", + "type": "ARMOR", + "copy-from": "lsurvivor_pants", + "name": { "str_sp": "XL light survivor cargo pants" }, + "description": "Lightweight, Kevlar armored cargo pants designed to hold as much as possible. Strong and mostly waterproof and sized for larger than average.", + "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "RAINPROOF", "STURDY", "OVERSIZE" ] + }, + { + "id": "pants_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str_sp": "survivor cargo pants" }, + "description": "A pair of Kevlar armored pants covered with pouches and pockets. Custom-built to be durable, comfortable, and easy to wear.", + "weight": "2100 g", + "volume": "3 L", + "price": 38000, + "price_postapoc": 2000, + "material": [ "cotton", "kevlar_layered" ], + "symbol": "[", + "looks_like": "pants_army", + "color": "green", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1250 ml", + "max_contains_weight": "3 kg", + "max_item_length": "21 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1250 ml", + "max_contains_weight": "3 kg", + "max_item_length": "21 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "2 kg", + "max_item_length": "15 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "2 kg", + "max_item_length": "15 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "2 kg", + "max_item_length": "15 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "2 kg", + "max_item_length": "15 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "500 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 100 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "500 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 100 + } + ], + "warmth": 15, + "material_thickness": 4, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 3, + "flags": [ "VARSIZE", "POCKETS", "STURDY", "WATERPROOF" ], + "armor": [ { "encumbrance": [ 10, 20 ], "coverage": 100, "covers": [ "leg_l", "leg_r" ] } ] + }, + { + "id": "xl_pants_survivor", + "type": "ARMOR", + "copy-from": "pants_survivor", + "name": { "str_sp": "XL survivor cargo pants" }, + "description": "A pair of oversized Kevlar armored pants covered with pouches and pockets. Custom-built to be durable, comfortable, and easy to wear.", + "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "STURDY", "OVERSIZE" ] + } +] diff --git a/data/json/items/armor/bespoke_armor/custom_overcoats.json b/data/json/items/armor/bespoke_armor/custom_overcoats.json new file mode 100644 index 0000000000000..a8bb2606b7cb0 --- /dev/null +++ b/data/json/items/armor/bespoke_armor/custom_overcoats.json @@ -0,0 +1,214 @@ +[ + { + "id": "duster_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor duster" }, + "description": "A Kevlar armored custom full-length duster, covered with pouches and pockets. Comfortable, durable, and great for storage.", + "weight": "2592 g", + "volume": "9500 ml", + "price": 40000, + "price_postapoc": 8000, + "to_hit": -1, + "material": [ "cotton", "kevlar_layered" ], + "symbol": "[", + "looks_like": "duster_leather", + "color": "brown", + "armor": [ + { "covers": [ "torso" ], "coverage": 85, "encumbrance": [ 7, 13 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 85, "encumbrance": [ 7, 9 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 85, "encumbrance": [ 7, 7 ] } + ], + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "3 L", + "max_contains_weight": "6 kg", + "max_item_length": "31 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "3 L", + "max_contains_weight": "6 kg", + "max_item_length": "31 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1 L", + "max_contains_weight": "2 kg", + "max_item_length": "25 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1 L", + "max_contains_weight": "2 kg", + "max_item_length": "25 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 120 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 120 + } + ], + "warmth": 10, + "material_thickness": 3, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 3, + "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ] + }, + { + "id": "xl_duster_survivor", + "type": "ARMOR", + "name": { "str": "XL survivor duster" }, + "copy-from": "duster_survivor", + "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER", "OVERSIZE" ] + }, + { + "id": "sleeveless_duster_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "sleeveless survivor duster" }, + "//": "The general guideline for sleeveless dusters is the components, volume, weight, time to craft, and value are 15% lower (rounded down) than the original. Making it from an original takes 50% the time.", + "description": "A custom Kevlar armored full-length duster without sleeves, covered with pouches and pockets. Comfortable, durable, and great for storage.", + "weight": "2203 g", + "volume": "8 L", + "price": 34000, + "price_postapoc": 4500, + "to_hit": -1, + "material": [ "cotton", "kevlar_layered" ], + "symbol": "[", + "looks_like": "duster_survivor", + "color": "brown", + "armor": [ + { "covers": [ "torso" ], "coverage": 85, "encumbrance": [ 7, 13 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 85, "encumbrance": [ 7, 9 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 } + ], + "warmth": 10, + "material_thickness": 2, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 3, + "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ] + }, + { + "id": "trenchcoat_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor trenchcoat" }, + "description": "A Kevlar armored custom trenchcoat, covered with pouches and pockets. Comfortable, durable, and great for storage.", + "weight": "1920 g", + "volume": "7 L", + "price": 40000, + "price_postapoc": 8000, + "to_hit": -1, + "material": [ "cotton", "kevlar_layered" ], + "symbol": "[", + "looks_like": "trenchcoat", + "color": "brown", + "armor": [ + { "covers": [ "torso" ], "coverage": 85, "encumbrance": [ 7, 15 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 85, "encumbrance": [ 7, 7 ] } + ], + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "3 L", + "max_contains_weight": "6 kg", + "max_item_length": "31 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "3 L", + "max_contains_weight": "6 kg", + "max_item_length": "31 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1 L", + "max_contains_weight": "2 kg", + "max_item_length": "25 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1 L", + "max_contains_weight": "2 kg", + "max_item_length": "25 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 120 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1 kg", + "max_item_length": "13 cm", + "moves": 120 + } + ], + "warmth": 10, + "material_thickness": 3, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 3, + "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ] + }, + { + "id": "sleeveless_trenchcoat_survivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "sleeveless survivor trenchcoat" }, + "//": "The general guideline for sleeveless trenchcoats is the components, volume, weight, time to craft, and value are 15% lower (rounded down) than the original. Making it from an original takes 50% the time.", + "description": "A custom Kevlar armored trenchcoat without sleeves, covered with pouches and pockets. Comfortable, durable, and great for storage.", + "weight": "1632 g", + "volume": "6 L", + "price": 34000, + "price_postapoc": 500, + "to_hit": -1, + "material": [ "cotton", "kevlar_layered" ], + "symbol": "[", + "looks_like": "sleeveless_duster_survivor", + "color": "brown", + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 } + ], + "warmth": 10, + "material_thickness": 3, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 3, + "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ], + "armor": [ { "encumbrance": [ 7, 15 ], "coverage": 85, "covers": [ "torso" ] } ] + } +] diff --git a/data/json/items/armor/bespoke_armor/custom_storage.json b/data/json/items/armor/bespoke_armor/custom_storage.json new file mode 100644 index 0000000000000..51493f7da4695 --- /dev/null +++ b/data/json/items/armor/bespoke_armor/custom_storage.json @@ -0,0 +1,114 @@ +[ + { + "id": "survivor_duffel_bag", + "type": "ARMOR", + "name": { "str": "survivor duffel bag" }, + "description": "A custom-built heavy duffel bag. Durable and carefully crafted to hold as much stuff as possible.", + "weight": "1000 g", + "volume": "7875 ml", + "price": 24000, + "price_postapoc": 3250, + "material": [ "leather", "cotton" ], + "symbol": "[", + "looks_like": "rucksack", + "color": "dark_gray", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "38 L", + "max_contains_weight": "60 kg", + "max_item_length": "60 cm", + "magazine_well": "7500 ml", + "moves": 300 + } + ], + "warmth": 10, + "material_thickness": 2, + "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED", "OVERSIZE" ], + "armor": [ { "encumbrance": [ 8, 30 ], "coverage": 40, "covers": [ "torso" ] } ] + }, + { + "id": "survivor_pack", + "type": "ARMOR", + "name": { "str": "survivor backpack" }, + "description": "A custom-built backpack. Durable and carefully crafted to hold as much stuff as possible.", + "weight": "600 g", + "volume": "5250 ml", + "price": 24000, + "price_postapoc": 2250, + "material": [ "leather", "cotton" ], + "symbol": "[", + "looks_like": "backpack", + "color": "brown", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "30 L", + "max_contains_weight": "32 kg", + "max_item_length": "50 cm", + "magazine_well": "5 L", + "moves": 300 + } + ], + "warmth": 6, + "material_thickness": 2, + "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED" ], + "armor": [ { "encumbrance": [ 3, 24 ], "coverage": 30, "covers": [ "torso" ] } ] + }, + { + "id": "survivor_rucksack", + "type": "ARMOR", + "name": { "str": "survivor rucksack" }, + "description": "A custom-built heavy backpack. Durable and carefully crafted to hold as much stuff as possible.", + "weight": "800 g", + "volume": "10 L", + "price": 24000, + "price_postapoc": 3000, + "material": [ "leather", "cotton" ], + "symbol": "[", + "looks_like": "rucksack", + "color": "dark_gray", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "35 L", + "max_contains_weight": "40 kg", + "max_item_length": "55 cm", + "magazine_well": "6 L", + "moves": 300 + } + ], + "warmth": 8, + "material_thickness": 2, + "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED", "OVERSIZE" ], + "armor": [ { "encumbrance": [ 3, 28 ], "coverage": 40, "covers": [ "torso" ] } ] + }, + { + "id": "survivor_runner_pack", + "type": "ARMOR", + "name": { "str": "survivor runner pack" }, + "description": "A custom-built lightweight runner pack. Durable and carefully crafted to hold as much stuff as possible.", + "weight": "440 g", + "volume": "4200 ml", + "price": 24000, + "price_postapoc": 2500, + "material": [ "leather", "cotton" ], + "symbol": "[", + "looks_like": "backpack", + "color": "brown", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "max_contains_volume": "20 L", + "max_contains_weight": "16 kg", + "max_item_length": "40 cm", + "magazine_well": "4 L", + "moves": 250 + } + ], + "warmth": 2, + "material_thickness": 2, + "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED" ], + "armor": [ { "encumbrance": [ 3, 12 ], "coverage": 30, "covers": [ "torso" ] } ] + } +] diff --git a/data/json/items/armor/bespoke_armor/cuttingroom.json b/data/json/items/armor/bespoke_armor/cuttingroom.json new file mode 100644 index 0000000000000..18689b2fabb37 --- /dev/null +++ b/data/json/items/armor/bespoke_armor/cuttingroom.json @@ -0,0 +1,294 @@ +[ + { + "id": "boots_fsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of survivor fireboots", "str_pl": "pairs of survivor fireboots" }, + "description": "A pair of customized, Kevlar-armored Nomex boots. These will keep you alive, even when knee-deep in the flames.", + "weight": "1980 g", + "volume": "3 L", + "price": 24000, + "price_postapoc": 6000, + "to_hit": -1, + "bashing": 1, + "material": [ "kevlar", "nomex" ], + "symbol": "[", + "looks_like": "boots_combat", + "color": "light_gray", + "warmth": 15, + "material_thickness": 5, + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 35, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] + }, + { + "id": "xl_boots_fsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL survivor fireboots", "str_pl": "pairs of XL survivor fireboots" }, + "copy-from": "boots_fsurvivor", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] + }, + { + "id": "boots_hsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of heavy survivor boots", "str_pl": "pairs of heavy survivor boots" }, + "description": "A pair of customized Kevlar boots that are heavily armored with steel. Favoring protection over comfort, these will keep you alive, especially when knee-deep in the dead.", + "weight": "2254 g", + "volume": "3 L", + "price": 24000, + "price_postapoc": 8000, + "to_hit": -1, + "bashing": 1, + "material": [ "kevlar", "steel" ], + "symbol": "[", + "looks_like": "boots_combat", + "color": "dark_gray", + "warmth": 15, + "material_thickness": 5, + "environmental_protection": 5, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 35, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] + }, + { + "id": "xl_boots_hsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL heavy survivor boots", "str_pl": "pairs of XL heavy survivor boots" }, + "copy-from": "boots_hsurvivor", + "proportional": { "weight": 1.2, "volume": 1.2 }, + "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] + }, + { + "id": "gloves_hsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of heavy survivor gloves", "str_pl": "pairs of heavy survivor gloves" }, + "description": "A pair of customized, steel-backed Kevlar gloves. These are designed for protection first.", + "weight": "1344 g", + "volume": "1 L", + "price": 18000, + "price_postapoc": 3000, + "to_hit": 2, + "material": [ "kevlar_layered", "steel" ], + "symbol": "[", + "looks_like": "fire_gauntlets", + "color": "dark_gray", + "warmth": 15, + "material_thickness": 4, + "environmental_protection": 5, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "xl_gloves_hsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL heavy survivor gloves", "str_pl": "pairs of XL heavy survivor gloves" }, + "copy-from": "gloves_hsurvivor", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF" ] + }, + { + "id": "gloves_fsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "pair of survivor firegloves", "str_pl": "pairs of survivor firegloves" }, + "description": "A pair of customized, Kevlar-armored Nomex gloves. These are a post-apocalyptic extension of what firefighters wore pre-Cataclysm.", + "weight": "410 g", + "volume": "1 L", + "price": 18000, + "price_postapoc": 2500, + "to_hit": 2, + "material": [ "kevlar_layered", "nomex" ], + "symbol": "[", + "looks_like": "fire_gauntlets", + "color": "light_gray", + "warmth": 15, + "material_thickness": 3, + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], + "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] + }, + { + "id": "xl_gloves_fsurvivor", + "type": "ARMOR", + "name": { "str": "pair of XL survivor firegloves", "str_pl": "pairs of XL survivor firegloves" }, + "copy-from": "gloves_fsurvivor", + "proportional": { "weight": 1.5, "volume": 1.5 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF" ] + }, + { + "id": "hood_fsurvivor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor firehood" }, + "description": "A customized armored Nomex and Kevlar hood, strong and durable.", + "weight": "1220 g", + "volume": "1500 ml", + "price": 58000, + "price_postapoc": 4000, + "to_hit": -1, + "bashing": 10, + "material": [ "kevlar_layered", "nomex" ], + "symbol": "[", + "looks_like": "hood_survivor", + "color": "light_gray", + "warmth": 15, + "material_thickness": 5, + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], + "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "head" ] } ] + }, + { + "id": "xl_hood_fsurvivor", + "type": "ARMOR", + "copy-from": "hood_fsurvivor", + "name": { "str": "XL survivor firehood" }, + "description": "A customized armored Nomex and Kevlar hood, very strong and durable. Made in Muspelheim.", + "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] + }, + { + "id": "fsurvivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "survivor firesuit" }, + "description": "Heavy, hand-built combination armor made from a cut-down bulletproof vest and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from fire and the elements.", + "weight": "6800 g", + "volume": "11500 ml", + "price": 200000, + "price_postapoc": 5000, + "to_hit": -3, + "bashing": 6, + "material": [ "kevlar_layered", "nomex" ], + "symbol": "[", + "looks_like": "survivor_suit", + "color": "light_gray", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 10, 26 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 10, 14 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 10, 10 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 } + ], + "warmth": 15, + "material_thickness": 4, + "valid_mods": [ "steel_padded" ], + "environmental_protection": 10, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "RAINPROOF", "STURDY" ] + }, + { + "id": "xl_fsurvivor_suit", + "type": "ARMOR", + "name": { "str": "XL survivor firesuit" }, + "copy-from": "fsurvivor_suit", + "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF", "POCKETS", "STURDY", "OVERSIZE" ] + }, + { + "id": "hsurvivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "heavy survivor suit" }, + "description": "A heavy, hand-built combination armor made from a reinforced bulletproof vest and a metal-plated leather jumpsuit. Protects from the elements as well as from harm.", + "weight": "15500 g", + "volume": "12 L", + "price": 200000, + "price_postapoc": 7000, + "to_hit": -3, + "bashing": 6, + "material": [ "kevlar_layered", "steel", "leather" ], + "symbol": "[", + "looks_like": "survivor_suit", + "color": "dark_gray", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 17, 31 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 17, 21 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 17, 17 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 } + ], + "warmth": 15, + "material_thickness": 6, + "environmental_protection": 3, + "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + }, + { + "id": "xlhsurvivor_suit", + "type": "ARMOR", + "category": "armor", + "name": { "str": "XL heavy survivor suit" }, + "description": "A massive, heavy, hand-built combination armor made from a reinforced bulletproof vest and a metal-plated leather jumpsuit. Protects from the elements as well as from harm.", + "weight": "20500 g", + "volume": "18750 ml", + "price": 200000, + "price_postapoc": 5000, + "to_hit": -3, + "bashing": 6, + "material": [ "kevlar_layered", "steel", "leather" ], + "symbol": "[", + "looks_like": "hsurvivor_suit", + "color": "dark_gray", + "armor": [ + { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 22, 39 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 22, 28 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 22, 22 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } + ], + "warmth": 15, + "material_thickness": 6, + "environmental_protection": 3, + "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + }, + { + "id": "lsurvivor_armor", + "type": "ARMOR", + "category": "armor", + "name": { "str": "light survivor body armor" }, + "description": "Lightweight, custom-built body armor made from Kevlar and tough fabric. Mostly waterproof.", + "weight": "3000 g", + "volume": "6 L", + "price": 60000, + "price_postapoc": 4000, + "material": [ "kevlar", "cotton" ], + "symbol": "[", + "looks_like": "lsurvivor_suit", + "color": "green", + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "700 ml", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "700 ml", "max_contains_weight": "3 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 } + ], + "warmth": 15, + "material_thickness": 4, + "environmental_protection": 1, + "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF", "STURDY" ], + "armor": [ { "encumbrance": [ 8, 16 ], "coverage": 95, "covers": [ "torso" ] } ] + }, + { + "id": "xl_lsurvivor_armor", + "type": "ARMOR", + "name": { "str": "XL light survivor body armor" }, + "copy-from": "lsurvivor_armor", + "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF", "STURDY", "OVERSIZE" ] + } +] diff --git a/data/json/items/armor/bespoke_armor/utility.json b/data/json/items/armor/bespoke_armor/utility.json new file mode 100644 index 0000000000000..b40fdf4ee33e0 --- /dev/null +++ b/data/json/items/armor/bespoke_armor/utility.json @@ -0,0 +1,163 @@ +[ + { + "id": "survivor_belt_notools", + "type": "ARMOR", + "name": { "str": "survivor belt" }, + "description": "A custom-built leather belt covered with pouches, with a sheath to carry a smaller blade and a holster to carry a pistol. Durable and carefully crafted to be comfortable to wear. Activate to sheathe/draw a weapon.", + "weight": "1549 g", + "volume": "2250 ml", + "price": 15000, + "price_postapoc": 2500, + "material": [ "leather" ], + "symbol": "[", + "looks_like": "holster", + "color": "brown", + "material_thickness": 2, + "pocket_data": [ + { + "holster": true, + "min_item_volume": "250 ml", + "max_contains_volume": "1 L", + "max_contains_weight": "2 kg", + "max_item_length": "70 cm", + "moves": 20, + "flag_restriction": [ "SHEATH_KNIFE" ] + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1000 g", + "max_item_length": "13 cm", + "moves": 50 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1000 g", + "max_item_length": "13 cm", + "moves": 50 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1000 g", + "max_item_length": "13 cm", + "moves": 50 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1000 g", + "max_item_length": "13 cm", + "moves": 50 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1000 g", + "max_item_length": "13 cm", + "moves": 50 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "800 ml", + "max_contains_weight": "1000 g", + "max_item_length": "13 cm", + "moves": 50 + }, + { + "magazine_well": "350 ml", + "pocket_type": "CONTAINER", + "holster": true, + "min_item_volume": "300 ml", + "max_contains_volume": "1000 ml", + "max_contains_weight": "2 kg", + "max_item_length": "30 cm", + "moves": 50 + } + ], + "use_action": { "type": "holster", "holster_prompt": "Store item", "holster_msg": "You put your %1$s in your %2$s" }, + "flags": [ "WATER_FRIENDLY", "STURDY", "WAIST" ], + "armor": [ { "encumbrance": [ 2, 6 ], "coverage": 15, "covers": [ "torso" ] } ] + }, + { + "id": "survivor_goggles", + "type": "ARMOR", + "name": { "str": "survivor goggles", "str_pl": "pairs of survivor goggles" }, + "description": "A custom-built pair of armored goggles with tinted lenses. Comfortable and built to last, they provide excellent protection from environmental dangers.", + "weight": "212 g", + "volume": "250 ml", + "price": 7500, + "price_postapoc": 3000, + "to_hit": -2, + "material": [ "kevlar_layered", "leather" ], + "symbol": "[", + "looks_like": "glasses_bal", + "color": "dark_gray", + "warmth": 5, + "material_thickness": 4, + "environmental_protection": 15, + "qualities": [ [ "GLARE", 1 ] ], + "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "OVERSIZE", "VARSIZE", "STURDY" ], + "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "eyes" ] } ] + }, + { + "id": "survivor_vest", + "type": "ARMOR", + "name": { "str": "survivor harness", "str_pl": "survivor harnesses" }, + "description": "A custom-built light harness covered with pouches and including an integral tactical sling for a small rifle or other such weapon. Durable and carefully crafted to be comfortable to wear. Activate to holster/draw your weapon.", + "weight": "320 g", + "volume": "1250 ml", + "price": 20000, + "price_postapoc": 4000, + "material": [ "leather", "cotton" ], + "symbol": "[", + "looks_like": "tacvest", + "color": "green", + "material_thickness": 2, + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "holster": true, + "min_item_volume": "1000 ml", + "max_contains_volume": "8 L", + "max_contains_weight": "8200 g", + "max_item_length": "120 cm", + "moves": 50 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1500 ml", + "max_contains_weight": "5 kg", + "max_item_length": "20 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1500 ml", + "max_contains_weight": "5 kg", + "max_item_length": "20 cm", + "moves": 80 + }, + { + "pocket_type": "CONTAINER", + "max_contains_volume": "1500 ml", + "max_contains_weight": "5 kg", + "max_item_length": "20 cm", + "moves": 80 + } + ], + "use_action": { "type": "holster" }, + "flags": [ "WATER_FRIENDLY", "STURDY", "WAIST" ], + "armor": [ { "encumbrance": [ 4, 12 ], "coverage": 20, "covers": [ "torso" ] } ] + }, + { + "id": "xl_survivor_vest", + "type": "ARMOR", + "copy-from": "survivor_vest", + "name": { "str": "XL survivor harness", "str_pl": "XL survivor harnesses" }, + "description": "A custom-built light harness covered with pouches and including an integral tactical sling for a small rifle or other such weapon. Durable and carefully crafted to be comfortable to wear and fitting the largest forms. Activate to holster/draw your weapon.", + "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, + "flags": [ "WATER_FRIENDLY", "WAIST", "STURDY", "OVERSIZE" ] + } +] diff --git a/data/json/items/armor/boots.json b/data/json/items/armor/boots.json index 519bb2799d902..77d4dcb401bc5 100644 --- a/data/json/items/armor/boots.json +++ b/data/json/items/armor/boots.json @@ -197,36 +197,6 @@ "flags": [ "OUTER", "STURDY" ], "armor": [ { "encumbrance": 10, "coverage": 15, "covers": [ "foot_l", "foot_r" ] } ] }, - { - "id": "boots_fsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of survivor fireboots", "str_pl": "pairs of survivor fireboots" }, - "description": "A pair of customized, Kevlar-armored Nomex boots. These will keep you alive, even when knee-deep in the flames.", - "weight": "1980 g", - "volume": "3 L", - "price": 24000, - "price_postapoc": 6000, - "to_hit": -1, - "bashing": 1, - "material": [ "kevlar", "nomex" ], - "symbol": "[", - "looks_like": "boots_combat", - "color": "light_gray", - "warmth": 15, - "material_thickness": 5, - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 35, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] - }, - { - "id": "xl_boots_fsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL survivor fireboots", "str_pl": "pairs of XL survivor fireboots" }, - "copy-from": "boots_fsurvivor", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] - }, { "id": "boots_fur", "type": "ARMOR", @@ -256,52 +226,6 @@ "proportional": { "weight": 1.15, "volume": 1.15 }, "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE" ] }, - { - "id": "boots_wsurvivor_nofur", - "type": "ARMOR", - "name": { "str": "pair of faux fur winter survivor boots", "str_pl": "pairs of faux fur winter survivor boots" }, - "description": "A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur lining, these will keep you alive even when knee-deep in the dead.", - "copy-from": "boots_wsurvivor", - "material": [ "kevlar", "faux_fur" ], - "symbol": "[", - "warmth": 50, - "looks_like": "boots_fur", - "color": "pink" - }, - { - "id": "xl_boots_wsurvivor_nofur", - "type": "ARMOR", - "name": { "str": "pair of XL faux fur winter survivor boots", "str_pl": "pairs of XL faux fur winter survivor boots" }, - "copy-from": "boots_wsurvivor", - "material": [ "kevlar", "faux_fur" ], - "description": "A pair of customized and oversized Kevlar-armored boots. Warm thanks to a faux-fur lining, these will keep you alive even when knee-deep in the dead.", - "color": "pink", - "warmth": 50, - "proportional": { "weight": 1.3, "volume": 1.3 }, - "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] - }, - { - "id": "boots_h20survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of survivor wetsuit boots", "str_pl": "pairs of survivor wetsuit boots" }, - "description": "A pair of customized, Kevlar-armored neoprene boots. These will keep you dry and alive, come hell or high water.", - "weight": "1180 g", - "volume": "1500 ml", - "price": 24000, - "price_postapoc": 6000, - "to_hit": -1, - "bashing": 1, - "material": [ "kevlar", "plastic", "neoprene" ], - "symbol": "[", - "looks_like": "boots_bunker", - "color": "dark_gray", - "warmth": 15, - "material_thickness": 3, - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY" ], - "armor": [ { "encumbrance": 32, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] - }, { "id": "boots_hiking", "repairs_like": "boots_larmor", @@ -324,36 +248,6 @@ "flags": [ "VARSIZE", "WATERPROOF" ], "armor": [ { "encumbrance": 12, "coverage": 95, "covers": [ "foot_l", "foot_r" ] } ] }, - { - "id": "boots_hsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of heavy survivor boots", "str_pl": "pairs of heavy survivor boots" }, - "description": "A pair of customized Kevlar boots that are heavily armored with steel. Favoring protection over comfort, these will keep you alive, especially when knee-deep in the dead.", - "weight": "2254 g", - "volume": "3 L", - "price": 24000, - "price_postapoc": 8000, - "to_hit": -1, - "bashing": 1, - "material": [ "kevlar", "steel" ], - "symbol": "[", - "looks_like": "boots_combat", - "color": "dark_gray", - "warmth": 15, - "material_thickness": 5, - "environmental_protection": 5, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 35, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] - }, - { - "id": "xl_boots_hsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL heavy survivor boots", "str_pl": "pairs of XL heavy survivor boots" }, - "copy-from": "boots_hsurvivor", - "proportional": { "weight": 1.2, "volume": 1.2 }, - "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] - }, { "id": "boots_larmor", "type": "ARMOR", @@ -384,36 +278,6 @@ "proportional": { "weight": 1.3, "volume": 1.3 }, "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] }, - { - "id": "boots_lsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of light survivor boots", "str_pl": "pairs of light survivor boots" }, - "description": "A pair of customized, Kevlar-armored cloth boots. Favoring comfort over protection, these boots will keep you moving and agile, even when knee-deep in the dead.", - "weight": "1120 g", - "volume": "2 L", - "price": 24000, - "price_postapoc": 5000, - "to_hit": -1, - "bashing": 1, - "material": [ "kevlar", "cotton" ], - "symbol": "[", - "looks_like": "boots_combat", - "color": "green", - "warmth": 15, - "material_thickness": 4, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 18, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] - }, - { - "id": "xl_boots_lsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL light survivor boots", "str_pl": "pairs of XL light survivor boots" }, - "copy-from": "boots_lsurvivor", - "proportional": { "weight": 1.4, "volume": 1.4 }, - "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] - }, { "id": "boots_plate", "type": "ARMOR", @@ -541,28 +405,6 @@ "flags": [ "NONCONDUCTIVE", "WATERPROOF", "VARSIZE" ], "armor": [ { "encumbrance": 8, "coverage": 80, "covers": [ "foot_l", "foot_r" ] } ] }, - { - "id": "boots_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of survivor boots", "str_pl": "pairs of survivor boots" }, - "description": "A pair of customized leather boots armored with Kevlar. Balancing comfort and protection, these boots will keep you alive, even when knee-deep in the dead.", - "weight": "1330 g", - "volume": "2500 ml", - "price": 24000, - "price_postapoc": 6000, - "to_hit": -1, - "bashing": 1, - "material": [ "kevlar", "leather" ], - "symbol": "[", - "looks_like": "boots_combat", - "color": "brown", - "warmth": 15, - "material_thickness": 3.5, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 24, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] - }, { "id": "boots_western", "copy-from": "boots", @@ -607,58 +449,6 @@ "proportional": { "weight": 1.3, "volume": 1.3 }, "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE" ] }, - { - "id": "boots_wsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of winter survivor boots", "str_pl": "pairs of winter survivor boots" }, - "description": "A pair of customized, Kevlar-armored boots. Warm thanks to the real fur lining, these will keep you alive, even when knee-deep in the dead.", - "weight": "1760 g", - "volume": "3500 ml", - "price": 24000, - "price_postapoc": 6000, - "to_hit": -1, - "bashing": 1, - "material": [ "kevlar", "fur" ], - "symbol": "[", - "looks_like": "boots_fur", - "color": "light_gray", - "warmth": 75, - "material_thickness": 5, - "environmental_protection": 5, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 38, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] - }, - { - "id": "xl_boots_wsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL winter survivor boots", "str_pl": "pairs of XL winter survivor boots" }, - "copy-from": "boots_wsurvivor", - "proportional": { "weight": 1.3, "volume": 1.3 }, - "flags": [ "VARSIZE", "WATERPROOF", "OVERSIZE", "STURDY" ] - }, - { - "id": "boots_xlsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of XL survivor boots", "str_pl": "pairs of XL survivor boots" }, - "description": "A massive pair of customized leather boots armored with Kevlar. Balancing comfort and protection, these boots will keep you alive even when knee-deep in the dead.", - "weight": "2460 g", - "volume": "5 L", - "price": 24000, - "price_postapoc": 4000, - "to_hit": -1, - "bashing": 1, - "material": [ "kevlar", "leather" ], - "symbol": "[", - "looks_like": "boots_combat", - "color": "brown", - "warmth": 15, - "material_thickness": 4, - "environmental_protection": 3, - "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 38, "coverage": 100, "covers": [ "foot_l", "foot_r" ] } ] - }, { "id": "cleats", "repairs_like": "boots_larmor", diff --git a/data/json/items/armor/coats.json b/data/json/items/armor/coats.json index de420bdfa6330..40b31ccee0166 100644 --- a/data/json/items/armor/coats.json +++ b/data/json/items/armor/coats.json @@ -606,84 +606,6 @@ "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, "flags": [ "VARSIZE", "POCKETS", "OUTER", "WATERPROOF", "RAINPROOF", "OVERSIZE" ] }, - { - "id": "duster_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor duster" }, - "description": "A Kevlar armored custom full-length duster, covered with pouches and pockets. Comfortable, durable, and great for storage.", - "weight": "2592 g", - "volume": "9500 ml", - "price": 40000, - "price_postapoc": 8000, - "to_hit": -1, - "material": [ "cotton", "kevlar_layered" ], - "symbol": "[", - "looks_like": "duster_leather", - "color": "brown", - "armor": [ - { "covers": [ "torso" ], "coverage": 85, "encumbrance": [ 7, 13 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 85, "encumbrance": [ 7, 9 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 85, "encumbrance": [ 7, 7 ] } - ], - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "3 L", - "max_contains_weight": "6 kg", - "max_item_length": "31 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "3 L", - "max_contains_weight": "6 kg", - "max_item_length": "31 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1 L", - "max_contains_weight": "2 kg", - "max_item_length": "25 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1 L", - "max_contains_weight": "2 kg", - "max_item_length": "25 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 120 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 120 - } - ], - "warmth": 10, - "material_thickness": 3, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 3, - "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ] - }, - { - "id": "xl_duster_survivor", - "type": "ARMOR", - "name": { "str": "XL survivor duster" }, - "copy-from": "duster_survivor", - "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER", "OVERSIZE" ] - }, { "id": "greatcoat", "type": "ARMOR", @@ -1839,40 +1761,6 @@ "valid_mods": [ "steel_padded" ], "flags": [ "VARSIZE", "POCKETS", "OUTER", "WATERPROOF", "RAINPROOF" ] }, - { - "id": "sleeveless_duster_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "sleeveless survivor duster" }, - "//": "The general guideline for sleeveless dusters is the components, volume, weight, time to craft, and value are 15% lower (rounded down) than the original. Making it from an original takes 50% the time.", - "description": "A custom Kevlar armored full-length duster without sleeves, covered with pouches and pockets. Comfortable, durable, and great for storage.", - "weight": "2203 g", - "volume": "8 L", - "price": 34000, - "price_postapoc": 4500, - "to_hit": -1, - "material": [ "cotton", "kevlar_layered" ], - "symbol": "[", - "looks_like": "duster_survivor", - "color": "brown", - "armor": [ - { "covers": [ "torso" ], "coverage": 85, "encumbrance": [ 7, 13 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 85, "encumbrance": [ 7, 9 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 } - ], - "warmth": 10, - "material_thickness": 2, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 3, - "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ] - }, { "id": "sleeveless_trenchcoat", "type": "ARMOR", @@ -1972,37 +1860,6 @@ "flags": [ "VARSIZE", "POCKETS", "OUTER" ], "armor": [ { "encumbrance": [ 8, 17 ], "coverage": 90, "covers": [ "torso" ] } ] }, - { - "id": "sleeveless_trenchcoat_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "sleeveless survivor trenchcoat" }, - "//": "The general guideline for sleeveless trenchcoats is the components, volume, weight, time to craft, and value are 15% lower (rounded down) than the original. Making it from an original takes 50% the time.", - "description": "A custom Kevlar armored trenchcoat without sleeves, covered with pouches and pockets. Comfortable, durable, and great for storage.", - "weight": "1632 g", - "volume": "6 L", - "price": 34000, - "price_postapoc": 500, - "to_hit": -1, - "material": [ "cotton", "kevlar_layered" ], - "symbol": "[", - "looks_like": "sleeveless_duster_survivor", - "color": "brown", - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 } - ], - "warmth": 10, - "material_thickness": 3, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 3, - "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ], - "armor": [ { "encumbrance": [ 7, 15 ], "coverage": 85, "covers": [ "torso" ] } ] - }, { "id": "sleeveless_tunic", "type": "ARMOR", @@ -2147,75 +2004,6 @@ "valid_mods": [ "steel_padded" ], "flags": [ "VARSIZE", "POCKETS", "OUTER" ] }, - { - "id": "trenchcoat_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor trenchcoat" }, - "description": "A Kevlar armored custom trenchcoat, covered with pouches and pockets. Comfortable, durable, and great for storage.", - "weight": "1920 g", - "volume": "7 L", - "price": 40000, - "price_postapoc": 8000, - "to_hit": -1, - "material": [ "cotton", "kevlar_layered" ], - "symbol": "[", - "looks_like": "trenchcoat", - "color": "brown", - "armor": [ - { "covers": [ "torso" ], "coverage": 85, "encumbrance": [ 7, 15 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 85, "encumbrance": [ 7, 7 ] } - ], - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "3 L", - "max_contains_weight": "6 kg", - "max_item_length": "31 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "3 L", - "max_contains_weight": "6 kg", - "max_item_length": "31 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1 L", - "max_contains_weight": "2 kg", - "max_item_length": "25 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1 L", - "max_contains_weight": "2 kg", - "max_item_length": "25 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 120 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 120 - } - ], - "warmth": 10, - "material_thickness": 3, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 3, - "flags": [ "VARSIZE", "POCKETS", "HOOD", "COLLAR", "STURDY", "WATERPROOF", "RAINPROOF", "OUTER" ] - }, { "id": "tunic", "type": "ARMOR", diff --git a/data/json/items/armor/eyewear.json b/data/json/items/armor/eyewear.json index fc9c14d567679..f7d2bd98ea85e 100644 --- a/data/json/items/armor/eyewear.json +++ b/data/json/items/armor/eyewear.json @@ -294,27 +294,6 @@ "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "FRAGILE" ], "armor": [ { "encumbrance": 1, "coverage": 85, "covers": [ "eyes" ] } ] }, - { - "id": "survivor_goggles", - "type": "ARMOR", - "name": { "str": "survivor goggles", "str_pl": "pairs of survivor goggles" }, - "description": "A custom-built pair of armored goggles with tinted lenses. Comfortable and built to last, they provide excellent protection from environmental dangers.", - "weight": "212 g", - "volume": "250 ml", - "price": 7500, - "price_postapoc": 3000, - "to_hit": -2, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "looks_like": "glasses_bal", - "color": "dark_gray", - "warmth": 5, - "material_thickness": 4, - "environmental_protection": 15, - "qualities": [ [ "GLARE", 1 ] ], - "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "OVERSIZE", "VARSIZE", "STURDY" ], - "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "eyes" ] } ] - }, { "id": "sunglasses_bifocal", "repairs_like": "survivor_goggles", diff --git a/data/json/items/armor/gloves.json b/data/json/items/armor/gloves.json index d0ea8dccff1d1..a3e308e4d06ad 100644 --- a/data/json/items/armor/gloves.json +++ b/data/json/items/armor/gloves.json @@ -267,35 +267,6 @@ "flags": [ "VARSIZE", "ALLOWS_NATURAL_ATTACKS", "ALLOWS_TALONS" ], "armor": [ { "encumbrance": 3, "coverage": 50, "covers": [ "hand_l", "hand_r" ] } ] }, - { - "id": "gloves_fsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of survivor firegloves", "str_pl": "pairs of survivor firegloves" }, - "description": "A pair of customized, Kevlar-armored Nomex gloves. These are a post-apocalyptic extension of what firefighters wore pre-Cataclysm.", - "weight": "410 g", - "volume": "1 L", - "price": 18000, - "price_postapoc": 2500, - "to_hit": 2, - "material": [ "kevlar_layered", "nomex" ], - "symbol": "[", - "looks_like": "fire_gauntlets", - "color": "light_gray", - "warmth": 15, - "material_thickness": 3, - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] - }, - { - "id": "xl_gloves_fsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL survivor firegloves", "str_pl": "pairs of XL survivor firegloves" }, - "copy-from": "gloves_fsurvivor", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF" ] - }, { "id": "gloves_fur", "type": "ARMOR", @@ -322,58 +293,6 @@ "proportional": { "weight": 1.6, "volume": 1.6 }, "flags": [ "WATERPROOF" ] }, - { - "id": "gloves_wsurvivor_nofur", - "type": "ARMOR", - "name": { "str": "pair of faux fur winter survivor gloves", "str_pl": "pairs of faux fur winter survivor gloves" }, - "description": "A pair of customized, Kevlar-armored gloves. These are lined with faux-fur.", - "copy-from": "gloves_wsurvivor", - "material": [ "kevlar_layered", "faux_fur" ], - "symbol": "[", - "looks_like": "gloves_winter", - "color": "pink", - "warmth": 60 - }, - { - "id": "xl_gloves_wsurvivor_nofur", - "type": "ARMOR", - "name": { "str": "pair of XL faux fur winter survivor gloves", "str_pl": "pairs of XL faux fur winter survivor gloves" }, - "copy-from": "gloves_wsurvivor_nofur", - "material": [ "kevlar_layered", "faux_fur" ], - "description": "A pair of customized and oversized Kevlar-armored gloves. These are lined with faux-fur.", - "color": "pink", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OVERSIZE" ] - }, - { - "id": "gloves_hsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of heavy survivor gloves", "str_pl": "pairs of heavy survivor gloves" }, - "description": "A pair of customized, steel-backed Kevlar gloves. These are designed for protection first.", - "weight": "1344 g", - "volume": "1 L", - "price": 18000, - "price_postapoc": 3000, - "to_hit": 2, - "material": [ "kevlar_layered", "steel" ], - "symbol": "[", - "looks_like": "fire_gauntlets", - "color": "dark_gray", - "warmth": 15, - "material_thickness": 4, - "environmental_protection": 5, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] - }, - { - "id": "xl_gloves_hsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL heavy survivor gloves", "str_pl": "pairs of XL heavy survivor gloves" }, - "copy-from": "gloves_hsurvivor", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF" ] - }, { "id": "glove_jackson", "repairs_like": "gloves_light", @@ -476,93 +395,6 @@ "proportional": { "weight": 2, "volume": 2 }, "flags": [ "SKINTIGHT", "OVERSIZE", "WATER_FRIENDLY" ] }, - { - "id": "gloves_lsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of light survivor gloves", "str_pl": "pairs of light survivor gloves" }, - "description": "A pair of customized, Kevlar-armored cloth gloves. These are designed for comfort first.", - "weight": "190 g", - "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, - "to_hit": 2, - "material": [ "kevlar_layered", "cotton" ], - "symbol": "[", - "looks_like": "gloves_survivor", - "color": "green", - "warmth": 15, - "material_thickness": 1, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 10, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] - }, - { - "id": "xl_gloves_lsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL light survivor gloves", "str_pl": "pairs of XL light survivor gloves" }, - "copy-from": "gloves_lsurvivor", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF" ] - }, - { - "id": "gloves_lsurvivor_fingerless", - "type": "ARMOR", - "looks_like": "gloves_lsurvivor", - "category": "armor", - "name": { "str": "pair of fingerless light survivor gloves", "str_pl": "pairs of fingerless light survivor gloves" }, - "description": "A pair of customized, Kevlar-armored cloth gloves without fingers. These are designed for comfort first.", - "weight": "160 g", - "volume": "700 ml", - "price": 16000, - "price_postapoc": 2000, - "to_hit": 2, - "material": [ "kevlar_layered", "cotton" ], - "symbol": "[", - "color": "green", - "warmth": 12, - "material_thickness": 1, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "ALLOWS_NATURAL_ATTACKS" ], - "armor": [ { "encumbrance": 8, "coverage": 85, "covers": [ "hand_l", "hand_r" ] } ] - }, - { - "id": "xl_gloves_lsurvivor_fingerless", - "type": "ARMOR", - "name": { "str": "pair of XL fingerless light survivor gloves", "str_pl": "pairs of XL fingerless light survivor gloves" }, - "copy-from": "gloves_lsurvivor_fingerless", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF", "ALLOWS_NATURAL_ATTACKS" ] - }, - { - "id": "gloves_survivor_fingerless", - "type": "ARMOR", - "looks_like": "gloves_survivor", - "category": "armor", - "name": { "str": "pair of fingerless survivor gloves", "str_pl": "pairs of fingerless survivor gloves" }, - "description": "A pair of customized, Kevlar-armored leather gloves without fingers. These strike a balance between comfort and protection.", - "weight": "200 g", - "volume": "700 ml", - "price": 16000, - "price_postapoc": 2000, - "to_hit": 2, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "color": "brown", - "warmth": 12, - "material_thickness": 3, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "ALLOWS_NATURAL_ATTACKS", "ALLOWS_TALONS" ], - "armor": [ { "encumbrance": 16, "coverage": 85, "covers": [ "hand_l", "hand_r" ] } ] - }, - { - "id": "xl_gloves_survivor_fingerless", - "type": "ARMOR", - "name": { "str": "pair of XL fingerless survivor gloves", "str_pl": "pairs of XL fingerless survivor gloves" }, - "copy-from": "gloves_survivor_fingerless", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "WATERPROOF", "ALLOWS_NATURAL_ATTACKS" ] - }, { "id": "gloves_medical", "repairs_like": "gloves_light", @@ -634,27 +466,6 @@ "flags": [ "WATERPROOF" ], "armor": [ { "encumbrance": 4, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] }, - { - "id": "gloves_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of survivor gloves", "str_pl": "pairs of survivor gloves" }, - "description": "A pair of customized, Kevlar-armored leather gloves. These strike a balance between comfort and protection.", - "weight": "230 g", - "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, - "to_hit": 2, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "looks_like": "fire_gauntlets", - "color": "brown", - "warmth": 15, - "material_thickness": 3, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] - }, { "id": "gloves_tactical", "repairs_like": "gloves_survivor", @@ -839,56 +650,6 @@ "flags": [ "SKINTIGHT", "OVERSIZE", "ALLOWS_NATURAL_ATTACKS", "ALLOWS_TALONS" ], "armor": [ { "encumbrance": 2, "coverage": 50, "covers": [ "hand_l", "hand_r" ] } ] }, - { - "id": "gloves_wsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of winter survivor gloves", "str_pl": "pairs of winter survivor gloves" }, - "description": "A pair of customized, Kevlar-armored gloves. These are lined with real fur.", - "weight": "300 g", - "volume": "1250 ml", - "price": 18000, - "price_postapoc": 2500, - "to_hit": 2, - "material": [ "kevlar_layered", "fur" ], - "symbol": "[", - "looks_like": "gloves_winter", - "color": "light_gray", - "warmth": 75, - "material_thickness": 4, - "environmental_protection": 5, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 37, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] - }, - { - "id": "xl_gloves_wsurvivor", - "type": "ARMOR", - "name": { "str": "pair of XL winter survivor gloves", "str_pl": "pairs of XL winter survivor gloves" }, - "copy-from": "gloves_wsurvivor", - "proportional": { "weight": 1.5, "volume": 1.5 }, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OVERSIZE" ] - }, - { - "id": "xl_gloves_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of XL survivor gloves", "str_pl": "pairs of XL survivor gloves" }, - "description": "A massive pair of customized, Kevlar-armored leather gloves. These strike a balance between protection and comfort.", - "weight": "480 g", - "volume": "1500 ml", - "price": 18000, - "price_postapoc": 1500, - "to_hit": 2, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "looks_like": "gloves_survivor", - "color": "brown", - "warmth": 15, - "material_thickness": 2, - "environmental_protection": 3, - "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "STURDY" ], - "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] - }, { "id": "long_glove_white", "repairs_like": "arm_warmers", diff --git a/data/json/items/armor/helmets.json b/data/json/items/armor/helmets.json index 3138bb8268ec4..f9d8c03ca4b45 100644 --- a/data/json/items/armor/helmets.json +++ b/data/json/items/armor/helmets.json @@ -192,7 +192,7 @@ "name": { "str": "XL barbute helm" }, "description": "A medieval helmet that provides excellent protection for the head, with a Y shaped opening for the face. This one is ogre sized.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_bike", @@ -247,7 +247,7 @@ "name": { "str": "XL chitinous helmet" }, "description": "A helmet made from giant insects for giant humanoids.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "WATERPROOF", "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_conical", @@ -277,7 +277,7 @@ "name": { "str": "XL conical helm" }, "description": "A helmet made for a giant Mongolian warrior from a pulp novel.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_acidchitin", @@ -299,7 +299,7 @@ "name": { "str": "XL biosilicified chitin helmet" }, "description": "A helmet made from giant acidic insects for giant humanoids.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "WATERPROOF", "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_football", @@ -353,7 +353,7 @@ "name": { "str": "galea XL", "str_pl": "galeae XL" }, "description": "An Imperial Roman helmet, with distinct projections protecting the sides of the head built for a Titan.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_kabuto", @@ -389,7 +389,7 @@ "name": { "str": "kabuto XL" }, "description": "A medieval Japanese helmet with a scowling facemask, fit for an Oni.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_larmor", @@ -418,7 +418,7 @@ "name": { "str": "XL leather armor helmet" }, "description": "A thick leather helmet that provides excellent protection for the head. This one is quite large.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_skull", @@ -571,39 +571,7 @@ "name": { "str": "XL nasal helm" }, "description": "An early medieval helmet with a projection guarding the nose, to better protect the face without obstructing vision. Proper Jotunn gear, unlike the stereotypical horned helm.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE" ] - }, - { - "id": "helmet_nomad", - "type": "ARMOR", - "name": { "str": "nomad cowl" }, - "description": "A makeshift cowl with protection for the eyes from rain and sun, designed for long travels.", - "weight": "470 g", - "volume": "2500 ml", - "price": 25000, - "price_postapoc": 250, - "to_hit": -3, - "material": [ "cotton", "leather" ], - "symbol": "[", - "looks_like": "balclava", - "color": "white", - "armor": [ - { "covers": [ "head" ], "coverage": 95, "encumbrance": 20 }, - { "covers": [ "eyes", "mouth" ], "coverage": 95, "encumbrance": 5 } - ], - "warmth": 35, - "material_thickness": 3, - "environmental_protection": 4, - "flags": [ "VARSIZE", "WATERPROOF", "SUN_GLASSES" ] - }, - { - "id": "xl_helmet_nomad", - "type": "ARMOR", - "copy-from": "helmet_nomad", - "name": { "str": "nomad cowl XL" }, - "description": "A makeshift cowl with protection for the eyes from rain and sun, designed for long travels. Designed for a gigantic wanderer.", - "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "SUN_GLASSES", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_plate", @@ -638,7 +606,7 @@ "name": { "str": "XL great helm" }, "description": "A medieval helmet that provides excellent protection to the entire head, at the cost of great encumbrance. Larger than average.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "HELMET_COMPAT", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_kettle", @@ -669,39 +637,7 @@ "name": { "str": "XL kettle helmet" }, "description": "A wide brimmed helmet that looks somewhat like a metal cowboy hat. Sadly, it won't help protect your eyes from the sun. This one is larger than average.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "OVERSIZE" ] - }, - { - "id": "helmet_scavenger", - "type": "ARMOR", - "name": { "str": "scavenger cowl" }, - "description": "A sturdy protective cowl extending down to the neck, fitted with a respirator and eye protection. For dangerous scavenging ventures.", - "weight": "695 g", - "volume": "2500 ml", - "price": 55000, - "price_postapoc": 3500, - "to_hit": -3, - "material": [ "kevlar_layered", "cotton" ], - "symbol": "[", - "looks_like": "mask_gas", - "color": "white", - "armor": [ - { "covers": [ "head" ], "coverage": 100, "encumbrance": 23 }, - { "covers": [ "eyes", "mouth" ], "coverage": 100, "encumbrance": 5 } - ], - "warmth": 40, - "material_thickness": 3, - "environmental_protection": 7, - "flags": [ "VARSIZE", "STURDY", "WATERPROOF", "SUN_GLASSES" ] - }, - { - "id": "xl_helmet_scavenger", - "type": "ARMOR", - "copy-from": "helmet_scavenger", - "name": { "str": "XL scavenger cowl" }, - "description": "A sturdy protective cowl extending down to the neck, fitted with a respirator and eye protection. For oversized dangerous scavenging ventures.", - "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "WATERPROOF", "SUN_GLASSES", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_scrap", @@ -735,7 +671,7 @@ "name": { "str": "XL scrap helmet" }, "description": "An oversized helmet made from scraps of metal secured by simple strings.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "OUTER", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "helmet_skid", @@ -813,7 +749,7 @@ "name": { "str": "XL Corinthian helm" }, "description": "An ancient Greek bronze helmet that provides excellent protection for the head, with slits for the eyes and mouth. Of godlike proportions.", "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE" ] + "extend": { "flags": [ "OVERSIZE" ] } }, { "id": "pot_xlhelmet", @@ -828,7 +764,7 @@ "symbol": "[", "looks_like": "pot_helmet", "copy-from": "pot_helmet", - "flags": [ "OVERSIZE" ], + "extend": { "flags": [ "OVERSIZE" ] }, "armor": [ { "encumbrance": 50, "coverage": 55, "covers": [ "head" ] } ] } ] diff --git a/data/json/items/armor/holster.json b/data/json/items/armor/holster.json index 272cd3fba1045..f162a5a36613a 100644 --- a/data/json/items/armor/holster.json +++ b/data/json/items/armor/holster.json @@ -294,65 +294,6 @@ "flags": [ "SKINTIGHT", "WATER_FRIENDLY" ], "armor": [ { "encumbrance": [ 1, 3 ], "coverage": 5, "covers": [ "leg_l", "leg_r" ] } ] }, - { - "id": "survivor_vest", - "type": "ARMOR", - "name": { "str": "survivor harness", "str_pl": "survivor harnesses" }, - "description": "A custom-built light harness covered with pouches and including an integral tactical sling for a small rifle or other such weapon. Durable and carefully crafted to be comfortable to wear. Activate to holster/draw your weapon.", - "weight": "320 g", - "volume": "1250 ml", - "price": 20000, - "price_postapoc": 4000, - "material": [ "leather", "cotton" ], - "symbol": "[", - "looks_like": "tacvest", - "color": "green", - "material_thickness": 2, - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "holster": true, - "min_item_volume": "1000 ml", - "max_contains_volume": "8 L", - "max_contains_weight": "8200 g", - "max_item_length": "120 cm", - "moves": 50 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1500 ml", - "max_contains_weight": "5 kg", - "max_item_length": "20 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1500 ml", - "max_contains_weight": "5 kg", - "max_item_length": "20 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1500 ml", - "max_contains_weight": "5 kg", - "max_item_length": "20 cm", - "moves": 80 - } - ], - "use_action": { "type": "holster" }, - "flags": [ "WATER_FRIENDLY", "STURDY", "WAIST" ], - "armor": [ { "encumbrance": [ 4, 12 ], "coverage": 20, "covers": [ "torso" ] } ] - }, - { - "id": "xl_survivor_vest", - "type": "ARMOR", - "copy-from": "survivor_vest", - "name": { "str": "XL survivor harness", "str_pl": "XL survivor harnesses" }, - "description": "A custom-built light harness covered with pouches and including an integral tactical sling for a small rifle or other such weapon. Durable and carefully crafted to be comfortable to wear and fitting the largest forms. Activate to holster/draw your weapon.", - "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, - "flags": [ "WATER_FRIENDLY", "WAIST", "STURDY", "OVERSIZE" ] - }, { "id": "XL_holster", "type": "ARMOR", diff --git a/data/json/items/armor/hoods.json b/data/json/items/armor/hoods.json index 753335f74ace0..e7c613377d092 100644 --- a/data/json/items/armor/hoods.json +++ b/data/json/items/armor/hoods.json @@ -50,92 +50,6 @@ "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT" ] }, - { - "id": "hood_fsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor firehood" }, - "description": "A customized armored Nomex and Kevlar hood, strong and durable.", - "weight": "1220 g", - "volume": "1500 ml", - "price": 58000, - "price_postapoc": 4000, - "to_hit": -1, - "bashing": 10, - "material": [ "kevlar_layered", "nomex" ], - "symbol": "[", - "looks_like": "hood_survivor", - "color": "light_gray", - "warmth": 15, - "material_thickness": 5, - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], - "armor": [ { "encumbrance": 30, "coverage": 100, "covers": [ "head" ] } ] - }, - { - "id": "xl_hood_fsurvivor", - "type": "ARMOR", - "copy-from": "hood_fsurvivor", - "name": { "str": "XL survivor firehood" }, - "description": "A customized armored Nomex and Kevlar hood, very strong and durable. Made in Muspelheim.", - "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] - }, - { - "id": "hood_lsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "light survivor hood" }, - "description": "A customized armored cloth and Kevlar hood, light yet durable.", - "weight": "628 g", - "volume": "750 ml", - "price": 58000, - "price_postapoc": 3000, - "to_hit": -1, - "bashing": 10, - "material": [ "kevlar_layered", "cotton" ], - "symbol": "[", - "looks_like": "hood_survivor", - "color": "green", - "warmth": 10, - "material_thickness": 4, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], - "armor": [ { "encumbrance": 15, "coverage": 100, "covers": [ "head" ] } ] - }, - { - "id": "xl_hood_lsurvivor", - "type": "ARMOR", - "copy-from": "hood_lsurvivor", - "name": { "str": "XL light survivor hood" }, - "description": "A customized and oversized armored cloth and Kevlar hood, light yet durable.", - "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] - }, - { - "id": "hood_wsurvivor_nofur", - "type": "ARMOR", - "name": { "str": "winter faux fur survivor hood" }, - "description": "A customized armored Kevlar hood. Warm thanks to the faux-fur lining.", - "copy-from": "hood_wsurvivor", - "material": [ "kevlar_layered", "faux_fur" ], - "symbol": "[", - "warmth": 65, - "looks_like": "hood_survivor", - "color": "pink" - }, - { - "id": "xl_hood_wsurvivor_nofur", - "type": "ARMOR", - "copy-from": "hood_wsurvivor", - "material": [ "kevlar_layered", "faux_fur" ], - "color": "pink", - "warmth": 65, - "name": { "str": "XL faux fur winter survivor hood" }, - "description": "A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur lining.", - "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] - }, { "id": "hood_rain", "type": "ARMOR", @@ -155,83 +69,6 @@ "flags": [ "WATERPROOF", "OUTER", "HELMET_COMPAT" ], "armor": [ { "coverage": 100, "covers": [ "head" ] } ] }, - { - "id": "hood_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor hood" }, - "description": "A customized armored leather and Kevlar hood, designed to balance comfort and protection.", - "weight": "820 g", - "volume": "2 L", - "price": 58000, - "price_postapoc": 4000, - "to_hit": -1, - "bashing": 10, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "looks_like": "hood_rain", - "color": "brown", - "warmth": 15, - "material_thickness": 4, - "environmental_protection": 3, - "techniques": [ "WBLOCK_1" ], - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], - "armor": [ { "encumbrance": 25, "coverage": 100, "covers": [ "head" ] } ] - }, - { - "id": "hood_wsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "winter survivor hood" }, - "description": "A customized armored Kevlar hood. Warm thanks to the real fur lining.", - "weight": "870 g", - "volume": "1500 ml", - "price": 58000, - "price_postapoc": 3500, - "to_hit": -1, - "bashing": 10, - "material": [ "kevlar_layered", "fur" ], - "symbol": "[", - "looks_like": "hood_survivor", - "color": "light_gray", - "warmth": 75, - "material_thickness": 5, - "environmental_protection": 5, - "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], - "armor": [ { "encumbrance": 37, "coverage": 100, "covers": [ "head" ] } ] - }, - { - "id": "xl_hood_wsurvivor", - "type": "ARMOR", - "copy-from": "hood_wsurvivor", - "name": { "str": "XL winter survivor hood" }, - "description": "A customized and oversized armored Kevlar hood. Warm thanks to the real fur lining.", - "proportional": { "weight": 1.25, "volume": 1.3, "price": 1.25 }, - "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "HELMET_COMPAT", "OUTER", "WATERPROOF" ] - }, - { - "id": "hood_xlsurvivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "XL survivor hood" }, - "description": "A massive customized armored leather and Kevlar hood, designed to balance comfort and protection.", - "weight": "1640 g", - "volume": "4500 ml", - "price": 58000, - "price_postapoc": 2500, - "to_hit": -1, - "bashing": 10, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "looks_like": "hood_survivor", - "color": "brown", - "warmth": 15, - "material_thickness": 3, - "environmental_protection": 3, - "techniques": [ "WBLOCK_1" ], - "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "STURDY", "OUTER", "HELMET_COMPAT" ], - "armor": [ { "encumbrance": 40, "coverage": 100, "covers": [ "head" ] } ] - }, { "id": "nomex_hood", "type": "ARMOR", diff --git a/data/json/items/armor/legs_armor.json b/data/json/items/armor/legs_armor.json index c3b63ef8ee24b..e977c77d89ab2 100644 --- a/data/json/items/armor/legs_armor.json +++ b/data/json/items/armor/legs_armor.json @@ -428,79 +428,6 @@ "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, "flags": [ "BELTED", "OVERSIZE", "NONCONDUCTIVE" ] }, - { - "id": "lsurvivor_pants", - "type": "ARMOR", - "category": "armor", - "name": { "str_sp": "light survivor cargo pants" }, - "description": "Lightweight, Kevlar armored cargo pants designed to hold as much as possible. Strong and mostly waterproof.", - "weight": "920 g", - "volume": "3500 ml", - "price": 40000, - "price_postapoc": 1500, - "material": [ "kevlar_layered", "cotton" ], - "symbol": "[", - "looks_like": "pants_survivor", - "color": "green", - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1000 ml", - "max_contains_weight": "2 kg", - "max_item_length": "21 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1000 ml", - "max_contains_weight": "2 kg", - "max_item_length": "21 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1 kg", - "max_item_length": "15 cm", - "moves": 100 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "1 kg", - "max_item_length": "15 cm", - "moves": 100 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "500 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 100 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "500 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 100 - } - ], - "warmth": 12, - "material_thickness": 3, - "environmental_protection": 1, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "RAINPROOF", "STURDY" ], - "armor": [ { "encumbrance": [ 8, 16 ], "coverage": 95, "covers": [ "leg_l", "leg_r" ] } ] - }, - { - "id": "xl_lsurvivor_pants", - "type": "ARMOR", - "copy-from": "lsurvivor_pants", - "name": { "str_sp": "XL light survivor cargo pants" }, - "description": "Lightweight, Kevlar armored cargo pants designed to hold as much as possible. Strong and mostly waterproof and sized for larger than average.", - "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "RAINPROOF", "STURDY", "OVERSIZE" ] - }, { "id": "motorbike_pants", "repairs_like": "survivor_suit", @@ -521,94 +448,6 @@ "flags": [ "VARSIZE", "WATERPROOF" ], "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "leg_l", "leg_r" ] } ] }, - { - "id": "pants_survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str_sp": "survivor cargo pants" }, - "description": "A pair of Kevlar armored pants covered with pouches and pockets. Custom-built to be durable, comfortable, and easy to wear.", - "weight": "2100 g", - "volume": "3 L", - "price": 38000, - "price_postapoc": 2000, - "material": [ "cotton", "kevlar_layered" ], - "symbol": "[", - "looks_like": "pants_army", - "color": "green", - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1250 ml", - "max_contains_weight": "3 kg", - "max_item_length": "21 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "1250 ml", - "max_contains_weight": "3 kg", - "max_item_length": "21 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "2 kg", - "max_item_length": "15 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "2 kg", - "max_item_length": "15 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "2 kg", - "max_item_length": "15 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "800 ml", - "max_contains_weight": "2 kg", - "max_item_length": "15 cm", - "moves": 80 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "500 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 100 - }, - { - "pocket_type": "CONTAINER", - "max_contains_volume": "500 ml", - "max_contains_weight": "1 kg", - "max_item_length": "13 cm", - "moves": 100 - } - ], - "warmth": 15, - "material_thickness": 4, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 3, - "flags": [ "VARSIZE", "POCKETS", "STURDY", "WATERPROOF" ], - "armor": [ { "encumbrance": [ 10, 20 ], "coverage": 100, "covers": [ "leg_l", "leg_r" ] } ] - }, - { - "id": "xl_pants_survivor", - "type": "ARMOR", - "copy-from": "pants_survivor", - "name": { "str_sp": "XL survivor cargo pants" }, - "description": "A pair of oversized Kevlar armored pants covered with pouches and pockets. Custom-built to be durable, comfortable, and easy to wear.", - "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "STURDY", "OVERSIZE" ] - }, { "id": "trousers_eod", "type": "ARMOR", diff --git a/data/json/items/armor/storage.json b/data/json/items/armor/storage.json index 639f68b0d0ce5..277aac054675e 100644 --- a/data/json/items/armor/storage.json +++ b/data/json/items/armor/storage.json @@ -1255,118 +1255,6 @@ "flags": [ "OVERSIZE", "BELTED", "RESTRICT_HANDS", "WATER_FRIENDLY" ], "armor": [ { "encumbrance": 50, "coverage": 5, "covers": [ "arm_l", "arm_r", "hand_l", "hand_r", "leg_l", "leg_r" ] } ] }, - { - "id": "survivor_duffel_bag", - "type": "ARMOR", - "name": { "str": "survivor duffel bag" }, - "description": "A custom-built heavy duffel bag. Durable and carefully crafted to hold as much stuff as possible.", - "weight": "1000 g", - "volume": "7875 ml", - "price": 24000, - "price_postapoc": 3250, - "material": [ "leather", "cotton" ], - "symbol": "[", - "looks_like": "rucksack", - "color": "dark_gray", - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "38 L", - "max_contains_weight": "60 kg", - "max_item_length": "60 cm", - "magazine_well": "7500 ml", - "moves": 300 - } - ], - "warmth": 10, - "material_thickness": 2, - "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED", "OVERSIZE" ], - "armor": [ { "encumbrance": [ 8, 30 ], "coverage": 40, "covers": [ "torso" ] } ] - }, - { - "id": "survivor_pack", - "type": "ARMOR", - "name": { "str": "survivor backpack" }, - "description": "A custom-built backpack. Durable and carefully crafted to hold as much stuff as possible.", - "weight": "600 g", - "volume": "5250 ml", - "price": 24000, - "price_postapoc": 2250, - "material": [ "leather", "cotton" ], - "symbol": "[", - "looks_like": "backpack", - "color": "brown", - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "30 L", - "max_contains_weight": "32 kg", - "max_item_length": "50 cm", - "magazine_well": "5 L", - "moves": 300 - } - ], - "warmth": 6, - "material_thickness": 2, - "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED" ], - "armor": [ { "encumbrance": [ 3, 24 ], "coverage": 30, "covers": [ "torso" ] } ] - }, - { - "id": "survivor_rucksack", - "type": "ARMOR", - "name": { "str": "survivor rucksack" }, - "description": "A custom-built heavy backpack. Durable and carefully crafted to hold as much stuff as possible.", - "weight": "800 g", - "volume": "10 L", - "price": 24000, - "price_postapoc": 3000, - "material": [ "leather", "cotton" ], - "symbol": "[", - "looks_like": "rucksack", - "color": "dark_gray", - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "35 L", - "max_contains_weight": "40 kg", - "max_item_length": "55 cm", - "magazine_well": "6 L", - "moves": 300 - } - ], - "warmth": 8, - "material_thickness": 2, - "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED", "OVERSIZE" ], - "armor": [ { "encumbrance": [ 3, 28 ], "coverage": 40, "covers": [ "torso" ] } ] - }, - { - "id": "survivor_runner_pack", - "type": "ARMOR", - "name": { "str": "survivor runner pack" }, - "description": "A custom-built lightweight runner pack. Durable and carefully crafted to hold as much stuff as possible.", - "weight": "440 g", - "volume": "4200 ml", - "price": 24000, - "price_postapoc": 2500, - "material": [ "leather", "cotton" ], - "symbol": "[", - "looks_like": "backpack", - "color": "brown", - "pocket_data": [ - { - "pocket_type": "CONTAINER", - "max_contains_volume": "20 L", - "max_contains_weight": "16 kg", - "max_item_length": "40 cm", - "magazine_well": "4 L", - "moves": 250 - } - ], - "warmth": 2, - "material_thickness": 2, - "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED" ], - "armor": [ { "encumbrance": [ 3, 12 ], "coverage": 30, "covers": [ "torso" ] } ] - }, { "id": "swag_bag", "type": "ARMOR", diff --git a/data/json/items/armor/suits_protection.json b/data/json/items/armor/suits_protection.json index 6ad25516c267a..98fa970514c1b 100644 --- a/data/json/items/armor/suits_protection.json +++ b/data/json/items/armor/suits_protection.json @@ -221,81 +221,6 @@ "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, "flags": [ "VARSIZE", "OUTER", "STURDY", "OVERSIZE" ] }, - { - "id": "armor_nomad", - "type": "ARMOR", - "name": { "str": "nomad gear" }, - "description": "A makeshift outfit made from pre-Cataclysm clothing designed for long travels. It has a lot of storage space.", - "weight": "5830 g", - "volume": "7500 ml", - "price": 35000, - "price_postapoc": 1750, - "to_hit": -3, - "material": [ "cotton", "leather" ], - "symbol": "[", - "looks_like": "touring_suit", - "color": "light_red", - "armor": [ - { "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 10, 16 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 95, "encumbrance": [ 10, 14 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 95, "encumbrance": [ 10, 13 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "8 L", "max_contains_weight": "16 kg", "moves": 150 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 } - ], - "warmth": 40, - "material_thickness": 5, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 1, - "flags": [ "VARSIZE", "POCKETS" ] - }, - { - "id": "armor_nomad_light", - "type": "ARMOR", - "name": { "str": "light nomad gear" }, - "description": "A light makeshift outfit made from pre-Cataclysm clothing designed for long summer travels. It offers less storage space and armor compared to regular nomad gear.", - "weight": "3200 g", - "volume": "6500 ml", - "price": 29500, - "price_postapoc": 1250, - "to_hit": -4, - "material": [ "cotton" ], - "looks_like": "armor_nomad", - "symbol": "[", - "color": "light_gray", - "armor": [ - { "covers": [ "torso" ], "coverage": 80, "encumbrance": [ 8, 12 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 80, "encumbrance": [ 8, 12 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 80, "encumbrance": [ 8, 10 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 } - ], - "warmth": 10, - "material_thickness": 4, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 1, - "flags": [ "VARSIZE", "POCKETS" ] - }, { "id": "armor_plarmor", "type": "ARMOR", @@ -431,39 +356,6 @@ "flags": [ "VARSIZE", "STURDY", "OUTER" ], "armor": [ { "encumbrance": 15, "coverage": 85, "covers": [ "torso", "leg_l", "leg_r", "arm_l", "arm_r", "hand_l", "hand_r" ] } ] }, - { - "id": "armor_scavenger", - "type": "ARMOR", - "name": { "str": "scavenger gear" }, - "description": "A sturdy scavenger's outfit made from refitted pre-Cataclysm protective gear. It has a lot of storage space.", - "weight": "7915 g", - "volume": "7500 ml", - "price": 180000, - "price_postapoc": 2000, - "to_hit": -3, - "material": [ "kevlar_layered", "cotton" ], - "symbol": "[", - "looks_like": "armor_nomad", - "color": "green", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 15, 26 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 15, 19 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 15, 15 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "8 L", "max_contains_weight": "16 kg", "moves": 150 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 100 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "4 L", "max_contains_weight": "8 kg", "moves": 100 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "2 kg", "moves": 80 } - ], - "warmth": 40, - "material_thickness": 5, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 2, - "flags": [ "VARSIZE", "POCKETS", "STURDY", "WATERPROOF" ] - }, { "id": "armor_scrapsuit", "type": "ARMOR", @@ -679,73 +571,6 @@ "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF", "GAS_PROOF", "STURDY", "OVERSIZE" ] }, - { - "id": "fsurvivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor firesuit" }, - "description": "Heavy, hand-built combination armor made from a cut-down bulletproof vest and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from fire and the elements.", - "weight": "6800 g", - "volume": "11500 ml", - "price": 200000, - "price_postapoc": 5000, - "to_hit": -3, - "bashing": 6, - "material": [ "kevlar_layered", "nomex" ], - "symbol": "[", - "looks_like": "survivor_suit", - "color": "light_gray", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 10, 26 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 10, 14 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 10, 10 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 } - ], - "warmth": 15, - "material_thickness": 4, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "RAINPROOF", "STURDY" ] - }, - { - "id": "xl_fsurvivor_suit", - "type": "ARMOR", - "name": { "str": "XL survivor firesuit" }, - "copy-from": "fsurvivor_suit", - "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF", "POCKETS", "STURDY", "OVERSIZE" ] - }, - { - "id": "wsurvivor_suit_nofur", - "type": "ARMOR", - "name": { "str": "winter survivor suit" }, - "description": "A warm and heavy hand-built combination armor made from a reinforced bulletproof vest and a faux fur insulated leather jumpsuit. Protects from the elements as well as from harm.", - "copy-from": "wsurvivor_suit", - "material": [ "kevlar_layered", "faux_fur" ], - "symbol": "[", - "warmth": 65, - "looks_like": "survivor_suit", - "color": "pink" - }, - { - "id": "xl_wsurvivor_suit_nofur", - "type": "ARMOR", - "name": { "str": "XL winter survivor suit" }, - "copy-from": "wsurvivor_suit", - "material": [ "kevlar_layered", "faux_fur" ], - "description": "A warm, heavy and oversized hand-built combination armor made from a reinforced bulletproof vest and a faux fur insulated leather jumpsuit. Protects from the elements as well as from harm.", - "color": "pink", - "warmth": 65, - "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY", "OVERSIZE" ] - }, { "id": "gambeson", "type": "ARMOR", @@ -800,76 +625,6 @@ } ] }, - { - "id": "hsurvivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "heavy survivor suit" }, - "description": "A heavy, hand-built combination armor made from a reinforced bulletproof vest and a metal-plated leather jumpsuit. Protects from the elements as well as from harm.", - "weight": "15500 g", - "volume": "12 L", - "price": 200000, - "price_postapoc": 7000, - "to_hit": -3, - "bashing": 6, - "material": [ "kevlar_layered", "steel", "leather" ], - "symbol": "[", - "looks_like": "survivor_suit", - "color": "dark_gray", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 17, 31 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 17, 21 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 17, 17 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 120 } - ], - "warmth": 15, - "material_thickness": 6, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] - }, - { - "id": "lsurvivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "light survivor suit" }, - "description": "A lightweight, hand-built combination armor made from a cut-down bulletproof vest and a reinforced fabric jumpsuit. Protects from the elements as well as from harm.", - "weight": "5100 g", - "volume": "10500 ml", - "price": 110000, - "price_postapoc": 5000, - "material": [ "kevlar_layered", "cotton" ], - "symbol": "[", - "looks_like": "survivor_suit", - "color": "green", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 7, 15 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 7, 7 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 7, 7 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } - ], - "warmth": 15, - "material_thickness": 4, - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] - }, - { - "id": "xl_lsurvivor_suit", - "type": "ARMOR", - "name": { "str": "XL light survivor suit" }, - "copy-from": "lsurvivor_suit", - "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY", "OVERSIZE" ] - }, { "id": "nomex_suit", "type": "ARMOR", @@ -985,37 +740,6 @@ "material_thickness": 2, "flags": [ "VARSIZE", "FANCY", "POCKETS" ] }, - { - "id": "survivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor suit" }, - "description": "A hand-built combination armor made from a bulletproof vest and a reinforced leather jumpsuit. Protects from the elements as well as from harm.", - "weight": "6800 g", - "volume": "11500 ml", - "price": 150000, - "price_postapoc": 5000, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "looks_like": "touring_suit", - "color": "brown", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 12, 20 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 12, 17 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 12, 12 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } - ], - "warmth": 15, - "material_thickness": 4, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 3, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] - }, { "id": "swat_armor", "repairs_like": "survivor_suit", @@ -1079,114 +803,6 @@ "environmental_protection": 2, "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF" ] }, - { - "id": "wsurvivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "winter survivor suit" }, - "description": "A warm and heavy hand-built combination armor made from a reinforced bulletproof vest and an insulated leather jumpsuit. Protects from the elements as well as from harm.", - "weight": "7800 g", - "volume": "14 L", - "price": 200000, - "price_postapoc": 5000, - "to_hit": -3, - "bashing": 6, - "material": [ "kevlar_layered", "fur" ], - "symbol": "[", - "looks_like": "survivor_suit", - "color": "light_gray", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 20, 28 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 20, 25 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 20, 20 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } - ], - "warmth": 75, - "material_thickness": 5, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 5, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] - }, - { - "id": "xl_wsurvivor_suit", - "type": "ARMOR", - "name": { "str": "XL winter survivor suit" }, - "copy-from": "wsurvivor_suit", - "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY", "OVERSIZE" ] - }, - { - "id": "xlsurvivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "XL survivor suit" }, - "description": "A massive hand-built combination armor made from a bulletproof vest and a reinforced leather jumpsuit. Protects from the elements as well as from harm.", - "weight": "12400 g", - "volume": "18 L", - "price": 150000, - "price_postapoc": 4000, - "to_hit": -3, - "bashing": 6, - "material": [ "kevlar_layered", "leather" ], - "symbol": "[", - "looks_like": "survivor_suit", - "color": "brown", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 17, 30 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 17, 22 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 17, 17 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } - ], - "warmth": 15, - "material_thickness": 4, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 3, - "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] - }, - { - "id": "xlhsurvivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "XL heavy survivor suit" }, - "description": "A massive, heavy, hand-built combination armor made from a reinforced bulletproof vest and a metal-plated leather jumpsuit. Protects from the elements as well as from harm.", - "weight": "20500 g", - "volume": "18750 ml", - "price": 200000, - "price_postapoc": 5000, - "to_hit": -3, - "bashing": 6, - "material": [ "kevlar_layered", "steel", "leather" ], - "symbol": "[", - "looks_like": "hsurvivor_suit", - "color": "dark_gray", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 22, 39 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 22, 28 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 22, 22 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } - ], - "warmth": 15, - "material_thickness": 6, - "environmental_protection": 3, - "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] - }, { "id": "mil_flight_suit", "type": "ARMOR", diff --git a/data/json/items/armor/swimming.json b/data/json/items/armor/swimming.json index 0570c1cf90e2e..4643ac31fef33 100644 --- a/data/json/items/armor/swimming.json +++ b/data/json/items/armor/swimming.json @@ -95,82 +95,6 @@ "flags": [ "VARSIZE", "WATER_FRIENDLY", "SKINTIGHT" ], "armor": [ { "encumbrance": 10, "coverage": 100, "covers": [ "head" ] } ] }, - { - "id": "hood_h20survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor wetsuit hood" }, - "description": "A customized armored neoprene and Kevlar hood, very strong and durable.", - "weight": "860 g", - "volume": "1500 ml", - "price": 58000, - "price_postapoc": 1500, - "to_hit": -1, - "bashing": 10, - "material": [ "kevlar", "plastic", "neoprene" ], - "symbol": "[", - "looks_like": "wetsuit_hood", - "color": "dark_gray", - "warmth": 15, - "material_thickness": 3, - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY", "OUTER", "HELMET_COMPAT" ], - "armor": [ { "encumbrance": 25, "coverage": 100, "covers": [ "head" ] } ] - }, - { - "id": "h20survivor_suit", - "type": "ARMOR", - "category": "armor", - "name": { "str": "survivor wetsuit" }, - "description": "A lightweight, hand-built combination armor made from a cut-down bulletproof vest and a reinforced neoprene wetsuit. Protects from the elements as well as from harm.", - "weight": "6400 g", - "volume": "7 L", - "price": 110000, - "price_postapoc": 5000, - "to_hit": -3, - "bashing": 6, - "material": [ "kevlar", "plastic", "neoprene" ], - "symbol": "[", - "looks_like": "wetsuit", - "color": "dark_gray", - "armor": [ - { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 10, 16 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 10, 14 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 10, 10 ] } - ], - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "2 L", "max_contains_weight": "6 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "3 L", "max_contains_weight": "6 kg", "moves": 200 } - ], - "warmth": 15, - "material_thickness": 3, - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATER_FRIENDLY", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] - }, - { - "id": "gloves_h20survivor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "pair of survivor wetsuit gloves", "str_pl": "pairs of survivor wetsuit gloves" }, - "description": "A pair of customized, Kevlar armored neoprene gloves, modified to be easy to wear while providing maximum protection under extreme conditions.", - "weight": "390 g", - "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, - "to_hit": 2, - "material": [ "kevlar", "plastic", "neoprene" ], - "symbol": "[", - "looks_like": "gloves_rubber", - "color": "dark_gray", - "warmth": 15, - "material_thickness": 1, - "environmental_protection": 10, - "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY" ], - "armor": [ { "encumbrance": 25, "coverage": 100, "covers": [ "hand_l", "hand_r" ] } ] - }, { "id": "wetsuit_spring", "type": "ARMOR", diff --git a/data/json/items/armor/torso_armor.json b/data/json/items/armor/torso_armor.json index 7a50fa9da7b05..247c67d81e9d0 100644 --- a/data/json/items/armor/torso_armor.json +++ b/data/json/items/armor/torso_armor.json @@ -423,42 +423,6 @@ "flags": [ "STURDY", "SKINTIGHT" ], "armor": [ { "encumbrance": 5, "coverage": 85, "covers": [ "torso" ] } ] }, - { - "id": "lsurvivor_armor", - "type": "ARMOR", - "category": "armor", - "name": { "str": "light survivor body armor" }, - "description": "Lightweight, custom-built body armor made from Kevlar and tough fabric. Mostly waterproof.", - "weight": "3000 g", - "volume": "6 L", - "price": 60000, - "price_postapoc": 4000, - "material": [ "kevlar", "cotton" ], - "symbol": "[", - "looks_like": "lsurvivor_suit", - "color": "green", - "pocket_data": [ - { "pocket_type": "CONTAINER", "max_contains_volume": "700 ml", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "700 ml", "max_contains_weight": "3 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "500 ml", "max_contains_weight": "2 kg", "moves": 80 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 }, - { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 120 } - ], - "warmth": 15, - "material_thickness": 4, - "environmental_protection": 1, - "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF", "STURDY" ], - "armor": [ { "encumbrance": [ 8, 16 ], "coverage": 95, "covers": [ "torso" ] } ] - }, - { - "id": "xl_lsurvivor_armor", - "type": "ARMOR", - "name": { "str": "XL light survivor body armor" }, - "copy-from": "lsurvivor_armor", - "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, - "flags": [ "VARSIZE", "WATERPROOF", "RAINPROOF", "STURDY", "OVERSIZE" ] - }, { "id": "motorbike_armor", "repairs_like": "survivor_suit", diff --git a/data/json/items/bionics.json b/data/json/items/bionics.json index 55804719bbd22..c96bfa215a553 100644 --- a/data/json/items/bionics.json +++ b/data/json/items/bionics.json @@ -71,10 +71,10 @@ "id": "bio_armor_arms", "copy-from": "bionic_general_npc_usable", "type": "BIONIC_ITEM", - "name": { "str": "Arms Alloy Plating CBM" }, - "description": "Alloy plating that replaces the flesh on the user's arms. Provides passive protection and can be used in conjunction with bionic martial arts.", + "name": { "str": "Arms Intradermal Alloy CBM" }, + "description": "An advanced protective mesh that weaves into the user's flesh. Provides passive protection at the cost of some encumbrance and can be used in conjunction with bionic martial arts.", "price": 350000, - "difficulty": 3, + "difficulty": 6, "installation_data": "AID_bio_armor_arms" }, { @@ -92,34 +92,34 @@ "id": "bio_armor_head", "copy-from": "bionic_general_npc_usable", "type": "BIONIC_ITEM", - "name": { "str": "Head Alloy Plating CBM" }, + "name": { "str": "Head Intradermal Alloy CBM" }, "looks_like": "bio_int_enhancer", - "description": "Alloy plating that replaces the flesh on the user's head, protecting both their head and jaw regions.", + "description": "An advanced protective mesh that weaves into the user's flesh, protecting both their head and jaw regions at the cost of some encumbrance.", "price": 350000, "weight": "1000 g", - "difficulty": 5 + "difficulty": 6 }, { "id": "bio_armor_legs", "copy-from": "bionic_general_npc_usable", "type": "BIONIC_ITEM", - "name": { "str": "Legs Alloy Plating CBM" }, + "name": { "str": "Legs Intradermal Alloy CBM" }, "looks_like": "bio_int_enhancer", - "description": "Alloy plating that replaces the flesh on the user's legs. Provides passive protection and can be used in conjunction with bionic martial arts.", + "description": "An advanced protective mesh that weaves into the user's flesh. Provides passive protection at the cost of some encumbrance and can be used in conjunction with bionic martial arts.", "price": 350000, - "difficulty": 3, + "difficulty": 6, "installation_data": "AID_bio_armor_legs" }, { "id": "bio_armor_torso", "copy-from": "bionic_general_npc_usable", "type": "BIONIC_ITEM", - "name": { "str": "Torso Alloy Plating CBM" }, + "name": { "str": "Torso Intradermal Alloy CBM" }, "looks_like": "bio_int_enhancer", - "description": "Alloy plating that replaces the flesh on the user's torso, protecting it from physical trauma.", + "description": "An advanced protective mesh that weaves into the user's flesh, protecting it from physical trauma at the cost of some encumbrance.", "price": 350000, "weight": "3000 g", - "difficulty": 4 + "difficulty": 6 }, { "id": "bio_batteries", diff --git a/data/json/items/chemicals_and_resources.json b/data/json/items/chemicals_and_resources.json index b59e02143a81d..9ac16ae236d22 100644 --- a/data/json/items/chemicals_and_resources.json +++ b/data/json/items/chemicals_and_resources.json @@ -1745,5 +1745,26 @@ "price": 100, "price_postapoc": 5, "count": 100 + }, + { + "type": "COMESTIBLE", + "id": "liquid_soap", + "name": { "str_sp": "liquid soap" }, + "weight": "260 g", + "color": "light_cyan", + "container": "bottle_bathroom", + "sealed": false, + "comestible_type": "DRINK", + "symbol": "~", + "quench": -90, + "healthy": -20, + "description": "Liquid soap.", + "price": 0, + "price_postapoc": 0, + "volume": "250 ml", + "phase": "liquid", + "category": "chems", + "freezing_point": -2, + "fun": -50 } ] diff --git a/data/json/items/comestibles/sandwich.json b/data/json/items/comestibles/sandwich.json index 5c63db38b7143..d5f15912db35a 100644 --- a/data/json/items/comestibles/sandwich.json +++ b/data/json/items/comestibles/sandwich.json @@ -51,6 +51,36 @@ "fun": 12, "vitamins": [ [ "vitA", 8 ], [ "vitC", 26 ], [ "calcium", 8 ], [ "iron", 49 ], [ "vitB", 389 ] ] }, + { + "type": "COMESTIBLE", + "id": "sandwich_reuben", + "name": { "str": "reuben sandwich", "str_pl": "reuben sandwiches" }, + "conditional_names": [ + { + "type": "COMPONENT_ID", + "condition": "mutant", + "name": { "str": "\"fauxben\" sandwich", "str_pl": "\"fauxben\" sandwiches" } + } + ], + "weight": "292 g", + "color": "brown", + "spoils_in": "1 day 8 hours", + "container": "wrapper", + "comestible_type": "FOOD", + "symbol": "%", + "quench": 2, + "healthy": 1, + "calories": 449, + "description": "A pre-cataclysm classic probably made with significant substitions. Key components are the special sauce and sauerkraut, with bread, meat, and cheese fried in a pan.", + "price": 1200, + "price_postapoc": 300, + "material": [ "flesh", "veggy", "wheat", "milk" ], + "primary_material": "processed_food", + "volume": "250 ml", + "charges": 2, + "fun": 14, + "vitamins": [ [ "vitA", 8 ], [ "vitC", 26 ], [ "calcium", 8 ], [ "iron", 49 ], [ "vitB", 389 ] ] + }, { "type": "COMESTIBLE", "id": "sandwich_cucumber", diff --git a/data/json/items/generic/bathroom_house.json b/data/json/items/generic/bathroom_house.json index 6dbc2f6bff637..915a415c068dd 100644 --- a/data/json/items/generic/bathroom_house.json +++ b/data/json/items/generic/bathroom_house.json @@ -233,5 +233,102 @@ "material": [ "steel", "plastic" ], "bashing": 3, "to_hit": 1 + }, + { + "id": "comb_lice", + "name": { "str": "lice comb" }, + "type": "GENERIC", + "description": "A stainless-steel comb with spiral grooved teeth designed to remove pesky parasites from hair. Even just thinking about it makes you itch.", + "symbol": "c", + "material": [ "steel" ], + "copy-from": "base_toiletries" + }, + { + "id": "bath_toy", + "name": { "str": "bath toy" }, + "type": "GENERIC", + "description": "A plastic floating bath toy.", + "symbol": "w", + "color": "yellow", + "material": [ "rubber" ], + "copy-from": "base_toiletries", + "weight": "55 mg", + "volume": "53 ml", + "snippet_category": [ + { "id": "btoy1", "text": "A plastic floating bath toy." }, + { "id": "btoy2", "text": "A yellow rubber duck. Designed to dropped in the bath." }, + { "id": "btoy3", "text": "A black rubber duck with large white eyes. Designed to dropped in the bath." }, + { "id": "btoy4", "text": "A small green dinosaur with a wide grin. Designed for bath time." } + ] + }, + { + "id": "toothbrush_electric", + "name": { "str": "electric toothbrush", "str_pl": "electric toothbrushes" }, + "type": "GENERIC", + "description": "A plastic electric toothbrush.", + "symbol": "/", + "material": [ "plastic" ], + "copy-from": "base_toiletries", + "weight": "140 g", + "volume": "107 ml", + "pocket_data": [ + { + "pocket_type": "MAGAZINE_WELL", + "rigid": true, + "flag_restriction": [ "BATTERY_LIGHT", "BATTERY_ULTRA_LIGHT" ], + "default_magazine": "light_battery_cell" + } + ] + }, + { + "id": "bottle_bathroom", + "type": "GENERIC", + "category": "container", + "name": { "str": "plastic bottle" }, + "description": "A squeezable used bottle to hold various bathroom soaps", + "weight": "130 g", + "volume": "502 ml", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "airtight": true, + "watertight": true, + "rigid": true, + "max_contains_volume": "500 ml", + "max_item_volume": "17 ml", + "max_contains_weight": "1250 g", + "sealed_data": { "spoil_multiplier": 0.5 }, + "moves": 400 + } + ], + "price": 0, + "price_postapoc": 10, + "to_hit": 1, + "material": [ "plastic" ], + "ascii_picture": "plastic_bottle", + "symbol": ")", + "color": "light_cyan", + "snippet_category": [ + { "id": "bbottle_1", "text": "A bottle for special shampoo for dyed hair." }, + { "id": "bbottle_2", "text": "A plain white bottle made to contain the cheapest shampoo." }, + { "id": "bbottle_3", "text": "A bottle for body wash. This one is called 'Afrika'." }, + { "id": "bbottle_4", "text": "A bottle for hair conditioner." }, + { "id": "bbottle_5", "text": "A colorful bottle of body and hair wash marketed for children." }, + { "id": "bbottle_6", "text": "A plain white bottle made to contain the cheapest shampoo." }, + { "id": "bbottle_7", "text": "A plain white bottle made to contain the cheapest hair conditioner." }, + { "id": "bbottle_8", "text": "A plain white bottle made to contain the cheapest shower jell." } + ] + }, + { + "id": "dentures", + "name": { "str": "set of dentures", "str_pl": "sets of dentures" }, + "type": "GENERIC", + "description": "A standard set of prosthetic teeth. Pretty useless to anyone aside from its owner.", + "symbol": "c", + "material": [ "plastic" ], + "color": "pink", + "weight": "124 mg", + "volume": "5 ml", + "copy-from": "base_toiletries" } ] diff --git a/data/json/items/melee/bludgeons.json b/data/json/items/melee/bludgeons.json index d3d24ea0a45b9..5dbb8b4370813 100644 --- a/data/json/items/melee/bludgeons.json +++ b/data/json/items/melee/bludgeons.json @@ -207,6 +207,7 @@ "ascii_picture": "bokken", "techniques": [ "RAPID", "WBLOCK_2", "SWEEP" ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "weight": "1133 g", "volume": "2 L", "longest_side": "100 cm", @@ -322,6 +323,7 @@ "material": [ "wood", "aluminum" ], "techniques": [ "WBLOCK_1" ], "flags": [ "NONCONDUCTIVE", "CRUTCHES" ], + "weapon_category": [ "BATONS" ], "volume": "1 L", "longest_side": "80 cm", "bashing": 10, @@ -399,6 +401,7 @@ "longest_side": "20 cm", "cutting": 6, "flags": [ "SHEATH_KNIFE", "CONDUCTIVE", "FRAGILE_MELEE" ], + "weapon_category": [ "SHIVS" ], "qualities": [ [ "BUTCHER", -18 ] ] }, { @@ -547,6 +550,7 @@ "material": [ "wood", "iron" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], + "weapon_category": [ "QUARTERSTAVES" ], "weight": "1750 g", "volume": "1550 ml", "longest_side": "180 cm", @@ -583,6 +587,7 @@ "type": "transform" }, "flags": [ "DURABLE_MELEE", "SHEATH_SPEAR" ], + "weapon_category": [ "QUARTERSTAVES" ], "pocket_data": [ { "pocket_type": "MAGAZINE_WELL", @@ -918,6 +923,7 @@ "material": [ "wood" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], + "weapon_category": [ "QUARTERSTAVES" ], "weight": "1500 g", "volume": "1500 ml", "longest_side": "180 cm", @@ -960,7 +966,8 @@ "bashing": 1, "cutting": 3, "to_hit": -3, - "flags": [ "STAB", "SHEATH_KNIFE", "CONDUCTIVE" ] + "flags": [ "STAB", "SHEATH_KNIFE", "CONDUCTIVE" ], + "weapon_category": [ "SHIVS" ] }, { "id": "shillelagh", @@ -973,6 +980,7 @@ "material": [ "wood" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "DURABLE_MELEE", "BELT_CLIP" ], + "weapon_category": [ "BATONS" ], "weight": "910 g", "volume": "1500 ml", "longest_side": "100 cm", @@ -992,6 +1000,7 @@ "material": [ "lead", "wood" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE", "BELT_CLIP" ], + "weapon_category": [ "BATONS" ], "weight": "1135 g", "volume": "1500 ml", "longest_side": "100 cm", @@ -1011,6 +1020,7 @@ "material": [ "wood" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "FRAGILE_MELEE", "BELT_CLIP" ], + "weapon_category": [ "BATONS" ], "weight": "850 g", "volume": "1500 ml", "longest_side": "100 cm", @@ -1041,6 +1051,7 @@ "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "use_action": [ "TAZER" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "WATER_BREAK" ], + "weapon_category": [ "QUARTERSTAVES" ], "pocket_data": [ { "pocket_type": "MAGAZINE_WELL", diff --git a/data/json/items/melee/fake.json b/data/json/items/melee/fake.json index 63ba02954d5f6..40549fc4eedd5 100644 --- a/data/json/items/melee/fake.json +++ b/data/json/items/melee/fake.json @@ -12,6 +12,7 @@ "bashing": 8, "cutting": 16, "flags": [ "STAB", "NO_UNWIELD", "UNBREAKABLE_MELEE", "TRADER_AVOID" ], + "weapon_category": [ "CLAWS" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 12 ] ] }, { diff --git a/data/json/items/melee/swords_and_blades.json b/data/json/items/melee/swords_and_blades.json index 393de246b95aa..db42e9bab6106 100644 --- a/data/json/items/melee/swords_and_blades.json +++ b/data/json/items/melee/swords_and_blades.json @@ -15,6 +15,7 @@ "to_hit": 1, "price_postapoc": 50, "flags": [ "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "techniques": [ "WBLOCK_1" ] }, { @@ -32,7 +33,8 @@ "cutting": 4, "to_hit": 2, "price_postapoc": 100, - "techniques": [ "WBLOCK_1" ] + "techniques": [ "WBLOCK_1" ], + "weapon_category": [ "MEDIUM_SWORDS" ] }, { "type": "GENERIC", @@ -50,6 +52,7 @@ "to_hit": 1, "price_postapoc": 250, "flags": [ "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "qualities": [ [ "BUTCHER", -50 ] ], "techniques": [ "WBLOCK_1" ] }, @@ -326,7 +329,8 @@ "color": "light_gray", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -27 ] ], "techniques": [ "WBLOCK_1" ], - "flags": [ "SHEATH_SWORD" ] + "flags": [ "SHEATH_SWORD" ], + "weapon_category": [ "BLADED_FARMING" ] }, { "id": "machete", @@ -347,7 +351,8 @@ "color": "dark_gray", "techniques": [ "WBLOCK_2" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 15 ] ], - "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ] + "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "BLADED_FARMING" ] }, { "id": "machete_gimmick", @@ -366,7 +371,8 @@ "cutting": 15, "material": [ "steel" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ], [ "SAW_W", 1 ], [ "DIG", 1 ], [ "PRY", 1 ] ], - "flags": [ "SHEATH_SWORD", "FRAGILE_MELEE" ] + "flags": [ "SHEATH_SWORD", "FRAGILE_MELEE" ], + "weapon_category": [ "BLADED_FARMING" ] }, { "id": "cavalry_sabre", @@ -387,6 +393,7 @@ "techniques": [ "WBLOCK_2", "RAPID" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "category": "weapons" }, { @@ -443,6 +450,7 @@ "price_postapoc": 4000, "material": [ "steel" ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "techniques": [ "WBLOCK_2" ], "weight": "800 g", "volume": "2 L", @@ -491,6 +499,7 @@ "material": [ "iron" ], "techniques": [ "WBLOCK_2" ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "weight": "1133 g", "volume": "2 L", "longest_side": "90 cm", @@ -587,6 +596,7 @@ "price_postapoc": 6000, "material": [ "steel" ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "LONG_SWORDS" ], "techniques": [ "WBLOCK_2" ], "weight": "1814 g", "volume": "2750 ml", @@ -642,7 +652,8 @@ "cutting": 29, "to_hit": 2, "category": "weapons", - "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ] + "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], + "weapon_category": [ "MEDIUM_SWORDS" ] }, { "id": "arming_sword_fake", @@ -691,7 +702,8 @@ "color": "yellow", "techniques": [ "WBLOCK_2" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], - "flags": [ "SHEATH_SWORD", "DURABLE_MELEE" ] + "flags": [ "SHEATH_SWORD", "DURABLE_MELEE" ], + "weapon_category": [ "SHORT_SWORDS" ] }, { "id": "khopesh", @@ -711,7 +723,8 @@ "color": "yellow", "techniques": [ "WBLOCK_2", "DEF_DISARM" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], - "flags": [ "DURABLE_MELEE" ] + "flags": [ "DURABLE_MELEE" ], + "weapon_category": [ "BLADED_FARMING" ] }, { "id": "dao", @@ -731,7 +744,8 @@ "color": "yellow", "techniques": [ "WBLOCK_2" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], - "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ] + "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ] }, { "id": "survivor_machete", @@ -752,7 +766,8 @@ "color": "dark_gray", "techniques": [ "WBLOCK_2", "RAPID" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 10 ] ], - "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ] + "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "BLADED_FARMING" ] }, { "id": "sword_bayonet", @@ -832,6 +847,7 @@ "techniques": [ "RAPID", "WBLOCK_2" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 13 ] ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "SHORT_SWORDS" ], "category": "weapons" }, { @@ -886,6 +902,7 @@ "proportional": { "bashing": 8, "cutting": 0.24 }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "extend": { "flags": [ "FRAGILE_MELEE" ] }, + "weapon_category": [ "KNIVES" ], "material": [ "budget_steel" ], "to_hit": 1, "price": 900, @@ -937,6 +954,7 @@ "techniques": [ "WBLOCK_1", "RAPID", "WIDE", "BRUTAL" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 10 ] ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD", "ALWAYS_TWOHAND" ], + "weapon_category": [ "LONG_SWORDS" ], "category": "weapons" }, { @@ -1179,6 +1197,7 @@ "techniques": [ "WBLOCK_2" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 9 ] ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "category": "weapons" }, { @@ -1260,6 +1279,7 @@ "techniques": [ "RAPID", "WBLOCK_2" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 9 ] ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "MEDIUM_SWORDS" ], "category": "weapons" }, { @@ -1443,6 +1463,7 @@ "techniques": [ "WBLOCK_2" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 9 ] ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], + "weapon_category": [ "SHORT_SWORDS" ], "category": "weapons" }, { @@ -1598,6 +1619,7 @@ "bashing": 2, "cutting": 15, "flags": [ "DURABLE_MELEE" ], + "weapon_category": [ "CLAWS" ], "price": 20000, "price_postapoc": 250, "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 14 ] ] diff --git a/data/json/items/ranged/slings.json b/data/json/items/ranged/slings.json index 2dd5affe133b4..09ac007f5e1ec 100644 --- a/data/json/items/ranged/slings.json +++ b/data/json/items/ranged/slings.json @@ -72,6 +72,7 @@ "ALWAYS_TWOHAND", "WATERPROOF_GUN" ], + "weapon_category": [ "QUARTERSTAVES" ], "ammo_effects": [ "NEVER_MISFIRES", "NO_PENETRATE_OBSTACLES" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "skill": "throw", diff --git a/data/json/items/resources/alien.json b/data/json/items/resources/alien.json index 08462ea32cddd..36ef69feca883 100644 --- a/data/json/items/resources/alien.json +++ b/data/json/items/resources/alien.json @@ -29,6 +29,23 @@ "color": "light_blue", "flags": [ "NO_SALVAGE" ] }, + { + "type": "GENERIC", + "id": "alien_fern", + "symbol": "y", + "color": "red_green", + "name": { "str": "alien fern branch", "str_pl": "alien fern branches" }, + "description": "A branching trunk of leaves from a mega fern, about two feet long and a couple of feet across in diameter measuring the leaves. Maybe one day you'll think of something to make with a giant fern.", + "material": [ "wood" ], + "flags": [ "TRADER_AVOID", "FIREWOOD" ], + "weight": "80 g", + "volume": "5000 ml", + "longest_side": "260 cm", + "looks_like": "stick", + "bashing": 1, + "to_hit": -3, + "category": "spare_parts" + }, { "type": "GENERIC", "id": "exodii_chassis", diff --git a/data/json/items/resources/metal.json b/data/json/items/resources/metal.json index 90d264cbc2e5c..f35c51e86b5e6 100644 --- a/data/json/items/resources/metal.json +++ b/data/json/items/resources/metal.json @@ -13,6 +13,7 @@ "material": [ "steel" ], "qualities": [ [ "HAMMER", 1 ] ], "techniques": [ "WBLOCK_1" ], + "weapon_category": [ "BATONS" ], "volume": "370 ml", "bashing": 12, "price": 7500, @@ -67,6 +68,7 @@ "symbol": "/", "material": [ "copper" ], "techniques": [ "WBLOCK_1" ], + "weapon_category": [ "BATONS" ], "volume": "370 ml", "bashing": 5, "price": 7500, diff --git a/data/json/items/resources/misc.json b/data/json/items/resources/misc.json index bef73a1420e55..329f07d6cdd8f 100644 --- a/data/json/items/resources/misc.json +++ b/data/json/items/resources/misc.json @@ -12,6 +12,7 @@ "volume": "250 ml", "cutting": 10, "flags": [ "SPEAR" ], + "weapon_category": [ "SHIVS" ], "price": 3000, "price_postapoc": 0 }, @@ -61,6 +62,7 @@ "volume": "250 ml", "cutting": 8, "flags": [ "SPEAR", "SHEATH_KNIFE" ], + "weapon_category": [ "SHIVS" ], "price": 500, "price_postapoc": 0 }, @@ -248,6 +250,7 @@ "volume": "250 ml", "cutting": 8, "flags": [ "SPEAR", "SHEATH_KNIFE" ], + "weapon_category": [ "SHIVS" ], "price": 1000, "price_postapoc": 0 }, diff --git a/data/json/items/resources/wood.json b/data/json/items/resources/wood.json index 9f0d412197594..444e9c53c2a31 100644 --- a/data/json/items/resources/wood.json +++ b/data/json/items/resources/wood.json @@ -44,6 +44,7 @@ "material": [ "wood" ], "techniques": [ "WBLOCK_1" ], "flags": [ "TRADER_AVOID", "FIREWOOD" ], + "weapon_category": [ "BATONS" ], "weight": "1500 g", "volume": "2500 ml", "longest_side": "130 cm", diff --git a/data/json/items/tool/knives.json b/data/json/items/tool/knives.json index deb245bbbb905..557e7ae2fb341 100644 --- a/data/json/items/tool/knives.json +++ b/data/json/items/tool/knives.json @@ -95,7 +95,8 @@ "symbol": ";", "color": "light_gray", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 11 ] ], - "flags": [ "STAB", "SHEATH_KNIFE" ] + "flags": [ "STAB", "SHEATH_KNIFE" ], + "weapon_category": [ "KNIVES" ] }, { "id": "boxcutter", diff --git a/data/json/items/tool/landscaping.json b/data/json/items/tool/landscaping.json index 1b6f8b8512ea8..235c5a086dc52 100644 --- a/data/json/items/tool/landscaping.json +++ b/data/json/items/tool/landscaping.json @@ -205,7 +205,8 @@ "color": "light_gray", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 7 ] ], "techniques": [ "WBLOCK_1" ], - "flags": [ "DURABLE_MELEE" ] + "flags": [ "DURABLE_MELEE" ], + "weapon_category": [ "BLADED_FARMING" ] }, { "id": "trimmer_off", diff --git a/data/json/items/tool/misc.json b/data/json/items/tool/misc.json index 52cd3d840415b..9c80a29f9d199 100644 --- a/data/json/items/tool/misc.json +++ b/data/json/items/tool/misc.json @@ -780,7 +780,7 @@ "symbol": "/", "color": "magenta", "techniques": [ "WBLOCK_1" ], - "flags": [ "STAB", "RAIN_PROTECT", "SHEATH_SWORD" ] + "flags": [ "STAB", "RAIN_PROTECT", "SHEATH_SWORD", "FRAGILE_MELEE" ] }, { "id": "vortex_stone", diff --git a/data/json/items/tool/pets.json b/data/json/items/tool/pets.json index 89311b9c99d2e..4d52615f829e7 100644 --- a/data/json/items/tool/pets.json +++ b/data/json/items/tool/pets.json @@ -124,6 +124,38 @@ "color": "brown", "looks_like": "pet_carrier" }, + { + "id": "terrarium", + "type": "TOOL", + "name": { "str": "glass terrarium" }, + "description": "A glass container meant to hold plants and/or insects. They come in a variety of sizes.", + "weight": "5 kg", + "volume": "37 L", + "price": 800, + "price_postapoc": 50, + "material": [ "glass" ], + "symbol": "#", + "color": "white_yellow", + "properties": [ [ "creature_size_capacity", "TINY" ] ], + "looks_like": "pet_carrier", + "use_action": [ "CAPTURE_MONSTER_ACT" ], + "flags": [ "TRADER_AVOID" ] + }, + { + "id": "firefly_terrarium", + "type": "TOOL", + "name": { "str": "survivor giant firefly lamp" }, + "description": "Some enterprising survivor has decided to turn this terrarium into a light source, using what appear to be a giant firefly and triffid vegetation.", + "weight": "30 kg", + "volume": "37 L", + "price": 800, + "price_postapoc": 1200, + "material": [ "glass" ], + "symbol": "#", + "color": "white_yellow", + "use_action": { "type": "deploy_furn", "furn_type": "f_firefly_terrarium" }, + "looks_like": "pet_carrier" + }, { "id": "dog_whistle_wood", "type": "TOOL", diff --git a/data/json/items/tool/science.json b/data/json/items/tool/science.json index 8691bdfb40443..13818a1d1f254 100644 --- a/data/json/items/tool/science.json +++ b/data/json/items/tool/science.json @@ -1332,10 +1332,25 @@ "type": "TOOL", "name": { "str_sp": "Mi-go Biotech" }, "conditional_names": [ - { "type": "VAR", "condition": "npctalk_var_DISPLAY_NAME_MORALE", "name": { "str_sp": "%s (happy)" } }, - { "type": "VAR", "condition": "npctalk_var_DISPLAY_NAME_FOCUS", "name": { "str_sp": "%s (focus)" } }, - { "type": "VAR", "condition": "npctalk_var_DISPLAY_NAME_PAIN", "name": { "str_sp": "%s (pain relief)" } }, - { "type": "VAR", "condition": "npctalk_var_DISPLAY_NAME_FATIGUE", "name": { "str_sp": "%s (wake up)" } } + { "type": "VAR", "condition": "npctalk_var_mbt_f_function", "value": "morale", "name": { "str_sp": "%s (happy)" } }, + { + "type": "VAR", + "condition": "npctalk_var_mbt_f_function", + "value": "focus", + "name": { "str_sp": "%s (focus)" } + }, + { + "type": "VAR", + "condition": "npctalk_var_mbt_f_function", + "value": "pain", + "name": { "str_sp": "%s (pain relief)" } + }, + { + "type": "VAR", + "condition": "npctalk_var_mbt_f_function", + "value": "fatigue", + "name": { "str_sp": "%s (wake up)" } + } ], "description": "A piece of mi-go biotechnology.", "weight": "1 g", @@ -1366,20 +1381,20 @@ }, { "id": "EOC_MIGO_BIO_TECH_SETUP", - "condition": { "not": { "npc_has_var": "function_set", "type": "migo_bio_tech", "context": "bio_tech", "value": "yes" } }, + "condition": { "not": { "npc_has_var": "function_set", "type": "mbt", "context": "f", "value": "yes" } }, "effect": [ - { "npc_add_var": "function_set", "type": "migo_bio_tech", "context": "bio_tech", "value": "yes" }, + { "npc_add_var": "function_set", "type": "mbt", "context": "f", "value": "yes" }, { "npc_add_var": "function", - "type": "migo_bio_tech", - "context": "bio_tech", + "type": "mbt", + "context": "f", "possible_values": [ "morale", "focus", "pain", "fatigue" ] } ] }, { "id": "EOC_MIGO_BIO_TECH_MORALE", - "condition": { "npc_has_var": "function", "type": "migo_bio_tech", "context": "bio_tech", "value": "morale" }, + "condition": { "npc_has_var": "function", "type": "mbt", "context": "f", "value": "morale" }, "effect": [ { "u_message": "You feel amazing!" }, { @@ -1388,35 +1403,28 @@ "max_bonus": 50, "duration": "12 hours", "decay_start": "10 hours" - }, - { "npc_add_var": "MORALE", "type": "DISPLAY", "context": "NAME", "value": "" } + } ] }, { "id": "EOC_MIGO_BIO_TECH_FOCUS", - "condition": { "npc_has_var": "function", "type": "migo_bio_tech", "context": "bio_tech", "value": "focus" }, - "effect": [ - { "u_message": "You feel incredibly focused!" }, - { "arithmetic": [ { "u_val": "focus" }, "+=", { "const": 30 } ] }, - { "npc_add_var": "FOCUS", "type": "DISPLAY", "context": "NAME", "value": "" } - ] + "condition": { "npc_has_var": "function", "type": "mbt", "context": "f", "value": "focus" }, + "effect": [ { "u_message": "You feel incredibly focused!" }, { "arithmetic": [ { "u_val": "focus" }, "+=", { "const": 30 } ] } ] }, { "id": "EOC_MIGO_BIO_TECH_PAIN", - "condition": { "npc_has_var": "function", "type": "migo_bio_tech", "context": "bio_tech", "value": "pain" }, + "condition": { "npc_has_var": "function", "type": "mbt", "context": "f", "value": "pain" }, "effect": [ { "u_message": "You feel your aches and pains fade away!" }, - { "arithmetic": [ { "u_val": "pain" }, "-=", { "const": 30 } ] }, - { "npc_add_var": "PAIN", "type": "DISPLAY", "context": "NAME", "value": "" } + { "arithmetic": [ { "u_val": "pain" }, "-=", { "const": 30 } ] } ] }, { "id": "EOC_MIGO_BIO_TECH_FATIGUE", - "condition": { "npc_has_var": "function", "type": "migo_bio_tech", "context": "bio_tech", "value": "fatigue" }, + "condition": { "npc_has_var": "function", "type": "mbt", "context": "f", "value": "fatigue" }, "effect": [ { "u_message": "You instantly feel more awake!" }, - { "arithmetic": [ { "u_val": "fatigue" }, "-=", { "const": 30 } ] }, - { "npc_add_var": "FATIGUE", "type": "DISPLAY", "context": "NAME", "value": "" } + { "arithmetic": [ { "u_val": "fatigue" }, "-=", { "const": 30 } ] } ] } ] diff --git a/data/json/items/tool/stationary.json b/data/json/items/tool/stationary.json index 7587c554a859f..a90efaa947395 100644 --- a/data/json/items/tool/stationary.json +++ b/data/json/items/tool/stationary.json @@ -63,7 +63,8 @@ "symbol": ",", "color": "light_red", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 3 ] ], - "flags": [ "STAB", "BELT_CLIP", "SHEATH_KNIFE" ] + "flags": [ "STAB", "BELT_CLIP", "SHEATH_KNIFE" ], + "weapon_category": [ "SHIVS" ] }, { "id": "pen", diff --git a/data/json/items/tool/workshop.json b/data/json/items/tool/workshop.json index b37652f07fbce..59f5034475b92 100644 --- a/data/json/items/tool/workshop.json +++ b/data/json/items/tool/workshop.json @@ -368,7 +368,8 @@ "color": "brown", "qualities": [ [ "HAMMER", 3 ], [ "PRY", 1 ], [ "HAMMER_FINE", 1 ], [ "PRYING_NAIL", 1 ] ], "use_action": [ "HAMMER", "CROWBAR" ], - "flags": [ "BELT_CLIP", "NONCONDUCTIVE" ] + "flags": [ "BELT_CLIP", "NONCONDUCTIVE" ], + "weapon_category": [ "BATONS" ] }, { "id": "hand_drill", @@ -830,7 +831,8 @@ "symbol": ";", "color": "yellow", "qualities": [ [ "SCREW", 1 ] ], - "flags": [ "SPEAR", "BELT_CLIP" ] + "flags": [ "SPEAR", "BELT_CLIP" ], + "weapon_category": [ "SHIVS" ] }, { "id": "screwdriver_set", @@ -1189,7 +1191,8 @@ "symbol": ";", "color": "light_gray", "qualities": [ [ "WRENCH", 2 ], [ "WRENCH_FINE", 1 ], [ "WHEEL_FAST", 1 ] ], - "flags": [ "BELT_CLIP" ] + "flags": [ "BELT_CLIP" ], + "weapon_category": [ "BATONS" ] }, { "id": "makeshift_hose", diff --git a/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_concrete.json b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_concrete.json new file mode 100644 index 0000000000000..805d6408ffb68 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_concrete.json @@ -0,0 +1,170 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wvw+wvw", + "......w", + "......v", + " ", + " ", + " ", + " " + ], + "palettes": [ "fbmk_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_concrete" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_2_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + " ", + " ", + " ", + "w.....+", + "......v", + "......w", + "w+wwwww" + ], + "palettes": [ "fbmk_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_2_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_2_concrete" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_smoking_area_concrete", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "w,,,w", + "v,,,,", + "+,,,,", + "v,,,,", + "w,,,w" + ], + "palettes": [ "fbmk_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_smoking_area_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_smoking_area_concrete" ], "x": 15, "y": 18 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_pantry_concrete", + "object": { + "mapgensize": [ 9, 9 ], + "rows": [ + "wwwwwwwww", + "w........", + "w........", + "w........", + "w........", + "w........", + "wwwwwwwww", + " ", + " " + ], + "palettes": [ "fbmk_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_pantry_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_pantry_concrete" ], "x": 0, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_1_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".....w ", + ".....v ", + "..... ", + "..... ", + "..... ", + "..... ", + "wwvw+ " + ], + "palettes": [ "fbmk_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_1_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_1_concrete" ], "x": 10, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_2_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + "wwvw " + ], + "palettes": [ "fbmk_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_2_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_2_concrete" ], "x": 6, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_brewery_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w....w ", + "w....w ", + "w....+ ", + "w....w ", + "w....w ", + "w....w ", + "wwwwvw " + ], + "palettes": [ "fbmk_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_brewery_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_brewery_concrete" ], "x": 0, "y": 16 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_log.json b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_log.json new file mode 100644 index 0000000000000..79a1d4a8c1b12 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_log.json @@ -0,0 +1,170 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wvw+wvw", + "......w", + "......v", + " ", + " ", + " ", + " " + ], + "palettes": [ "fbmk_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_log" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_2_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + " ", + " ", + " ", + "w.....+", + "......v", + "......w", + "w+wwwww" + ], + "palettes": [ "fbmk_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_2_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_2_log" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_smoking_area_log", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "w,,,w", + "v,,,,", + "+,,,,", + "v,,,,", + "w,,,w" + ], + "palettes": [ "fbmk_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_smoking_area_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_smoking_area_log" ], "x": 15, "y": 18 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_pantry_log", + "object": { + "mapgensize": [ 9, 9 ], + "rows": [ + "wwwwwwwww", + "w........", + "w........", + "w........", + "w........", + "w........", + "wwwwwwwww", + " ", + " " + ], + "palettes": [ "fbmk_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_pantry_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_pantry_log" ], "x": 0, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_1_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".....w ", + ".....v ", + "..... ", + "..... ", + "..... ", + "..... ", + "wwvw+ " + ], + "palettes": [ "fbmk_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_1_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_1_log" ], "x": 10, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_2_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + "wwvw " + ], + "palettes": [ "fbmk_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_2_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_2_log" ], "x": 6, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_brewery_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w....w ", + "w....w ", + "w....+ ", + "w....w ", + "w....w ", + "w....w ", + "wwwwvw " + ], + "palettes": [ "fbmk_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_brewery_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_brewery_log" ], "x": 0, "y": 16 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_metal.json b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_metal.json new file mode 100644 index 0000000000000..3fccecdfd7068 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_metal.json @@ -0,0 +1,170 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wvw+wvw", + "......w", + "......v", + " ", + " ", + " ", + " " + ], + "palettes": [ "fbmk_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_metal" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_2_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + " ", + " ", + " ", + "w.....+", + "......v", + "......w", + "w+wwwww" + ], + "palettes": [ "fbmk_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_2_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_2_metal" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_smoking_area_metal", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "w,,,w", + "v,,,,", + "+,,,,", + "v,,,,", + "w,,,w" + ], + "palettes": [ "fbmk_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_smoking_area_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_smoking_area_metal" ], "x": 15, "y": 18 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_pantry_metal", + "object": { + "mapgensize": [ 9, 9 ], + "rows": [ + "wwwwwwwww", + "w........", + "w........", + "w........", + "w........", + "w........", + "wwwwwwwww", + " ", + " " + ], + "palettes": [ "fbmk_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_pantry_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_pantry_metal" ], "x": 0, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_1_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".....w ", + ".....v ", + "..... ", + "..... ", + "..... ", + "..... ", + "wwvw+ " + ], + "palettes": [ "fbmk_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_1_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_1_metal" ], "x": 10, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_2_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + "wwvw " + ], + "palettes": [ "fbmk_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_2_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_2_metal" ], "x": 6, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_brewery_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w....w ", + "w....w ", + "w....+ ", + "w....w ", + "w....w ", + "w....w ", + "wwwwvw " + ], + "palettes": [ "fbmk_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_brewery_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_brewery_metal" ], "x": 0, "y": 16 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_migo_resin.json b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_migo_resin.json new file mode 100644 index 0000000000000..802c00f61e49e --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_migo_resin.json @@ -0,0 +1,170 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wvw+wvw", + "......w", + "......v", + " ", + " ", + " ", + " " + ], + "palettes": [ "fbmk_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_migo_resin" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_2_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + " ", + " ", + " ", + "w.....+", + "......v", + "......w", + "w+wwwww" + ], + "palettes": [ "fbmk_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_2_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_2_migo_resin" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_smoking_area_migo_resin", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "w,,,w", + "v,,,,", + "+,,,,", + "v,,,,", + "w,,,w" + ], + "palettes": [ "fbmk_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_smoking_area_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_smoking_area_migo_resin" ], "x": 15, "y": 18 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_pantry_migo_resin", + "object": { + "mapgensize": [ 9, 9 ], + "rows": [ + "wwwwwwwww", + "w........", + "w........", + "w........", + "w........", + "w........", + "wwwwwwwww", + " ", + " " + ], + "palettes": [ "fbmk_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_pantry_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_pantry_migo_resin" ], "x": 0, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_1_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".....w ", + ".....v ", + "..... ", + "..... ", + "..... ", + "..... ", + "wwvw+ " + ], + "palettes": [ "fbmk_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_1_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_1_migo_resin" ], "x": 10, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_2_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + "wwvw " + ], + "palettes": [ "fbmk_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_2_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_2_migo_resin" ], "x": 6, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_brewery_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w....w ", + "w....w ", + "w....+ ", + "w....w ", + "w....w ", + "w....w ", + "wwwwvw " + ], + "palettes": [ "fbmk_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_brewery_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_brewery_migo_resin" ], "x": 0, "y": 16 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_rammed_earth.json b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_rammed_earth.json new file mode 100644 index 0000000000000..0a69dad1fbc9c --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_canteen/version_2/modular_canteen_rammed_earth.json @@ -0,0 +1,170 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wvw+wvw", + "......w", + "......v", + " ", + " ", + " ", + " " + ], + "palettes": [ "fbmk_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_rammed_earth" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_room_2_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + " ", + " ", + " ", + "w.....+", + "......v", + "......w", + "w+wwwww" + ], + "palettes": [ "fbmk_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_2_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_room_2_rammed_earth" ], "x": 9, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_smoking_area_rammed_earth", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "w,,,w", + "v,,,,", + "+,,,,", + "v,,,,", + "w,,,w" + ], + "palettes": [ "fbmk_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_smoking_area_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_smoking_area_rammed_earth" ], "x": 15, "y": 18 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_pantry_rammed_earth", + "object": { + "mapgensize": [ 9, 9 ], + "rows": [ + "wwwwwwwww", + "w........", + "w........", + "w........", + "w........", + "w........", + "wwwwwwwww", + " ", + " " + ], + "palettes": [ "fbmk_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_pantry_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_pantry_rammed_earth" ], "x": 0, "y": 9 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_1_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".....w ", + ".....v ", + "..... ", + "..... ", + "..... ", + "..... ", + "wwvw+ " + ], + "palettes": [ "fbmk_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_1_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_1_rammed_earth" ], "x": 10, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_dining_2_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + ".... ", + "wwvw " + ], + "palettes": [ "fbmk_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_dining_2_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_dining_2_rammed_earth" ], "x": 6, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmk_2_brewery_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w....w ", + "w....w ", + "w....+ ", + "w....w ", + "w....w ", + "w....w ", + "wwwwvw " + ], + "palettes": [ "fbmk_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmk_2_brewery_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmk_2_brewery_rammed_earth" ], "x": 0, "y": 16 } ] } + } +] diff --git a/data/json/mapgen/basecamps/modular_farm/version_2/modular_farm_common.json b/data/json/mapgen/basecamps/expansion/modular_farm/version_2/modular_farm_common.json similarity index 100% rename from data/json/mapgen/basecamps/modular_farm/version_2/modular_farm_common.json rename to data/json/mapgen/basecamps/expansion/modular_farm/version_2/modular_farm_common.json diff --git a/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_common.json b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_common.json new file mode 100644 index 0000000000000..a6da6b56abe50 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_common.json @@ -0,0 +1,204 @@ +[ + { + "type": "palette", + "id": "fbmg_2_common_palette", + "terrain": { "p": "t_palisade", "P": "t_palisade_pulley", "G": "t_palisade_gate", ";": "t_dirt", ",": "t_dirtfloor" }, + "furniture": { "c": "f_counter", "I": "f_rack" } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2", + "object": { + "mapgensize": [ 24, 24 ], + "rows": [ + " ; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + " " + ], + "palettes": [ "fbmg_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "faction_base_garage_2_0", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_furniture", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_counter", "x": 1, "y": 17 }, + { "point": "furniture", "id": "f_counter", "x": 1, "y": 18 }, + { "point": "furniture", "id": "f_rack", "x": 1, "y": 20 }, + { "point": "furniture", "id": "f_rack", "x": 1, "y": 21 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_3", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + " ", + " " + ], + "palettes": [ "fbmg_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_3", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_3" ], "x": 6, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_6", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + " ", + " ", + " " + ], + "palettes": [ "fbmg_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_6", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_6" ], "x": 6, "y": 11 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_gate_2", + "method": "json", + "object": { + "set": [ + { "point": "terrain", "id": "t_palisade", "x": 1, "y": 10 }, + { "line": "terrain", "id": "t_palisade_gate", "x": 2, "x2": 17, "y": 10, "y2": 10 }, + { "point": "terrain", "id": "t_palisade", "x": 18, "y": 10 }, + { "point": "terrain", "id": "t_palisade_pulley", "x": 18, "y": 9 }, + { "point": "terrain", "id": "t_palisade_pulley", "x": 18, "y": 11 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_9", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + " ", + " ", + " " + ], + "palettes": [ "fbmg_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_9", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_9" ], "x": 6, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_gate_3", + "method": "json", + "object": { + "set": [ + { "point": "terrain", "id": "t_palisade", "x": 1, "y": 5 }, + { "line": "terrain", "id": "t_palisade_gate", "x": 2, "x2": 17, "y": 5, "y2": 5 }, + { "point": "terrain", "id": "t_palisade", "x": 18, "y": 5 }, + { "point": "terrain", "id": "t_palisade_pulley", "x": 18, "y": 4 }, + { "point": "terrain", "id": "t_palisade_pulley", "x": 18, "y": 6 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_12", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + ",,,,,,,,", + " ", + " ", + " ", + " " + ], + "palettes": [ "fbmg_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_12", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_12" ], "x": 6, "y": 2 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_gate_4", + "method": "json", + "object": { + "set": [ + { "point": "terrain", "id": "t_palisade", "x": 1, "y": 1 }, + { "line": "terrain", "id": "t_palisade_gate", "x": 2, "x2": 17, "y": 1, "y2": 1 }, + { "point": "terrain", "id": "t_palisade", "x": 18, "y": 1 }, + { "point": "terrain", "id": "t_palisade_pulley", "x": 18, "y": 0 }, + { "point": "terrain", "id": "t_palisade_pulley", "x": 18, "y": 2 } + ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_palettes.json b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_palettes.json new file mode 100644 index 0000000000000..679e28745427a --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_palettes.json @@ -0,0 +1,98 @@ +[ + { + "type": "palette", + "id": "fbmg_2_2_common_palette", + "terrain": { + "d": "t_door_c", + "B": "t_grass", + "o": "t_window_no_curtains", + "w": "t_wall_wood", + ".": "t_floor", + ",": "t_dirtfloor", + "S": "t_dirtfloor", + "U": "t_rootcellar", + ";": "t_dirt" + }, + "furniture": { + "b": "f_bench", + "t": "f_table", + "K": "f_kiln_empty", + "a": "f_stool", + "r": "f_rack_wood", + "R": "f_rack", + "h": "f_chair", + "S": "f_smoking_rack", + "V": "f_fvat_empty", + "B": "f_birdbath", + "H": "f_butcher_rack", + "c": "f_counter", + "p": "f_planter", + "T": "f_standing_tank", + "I": "f_rack", + "D": "f_still", + "s": "f_woodstove", + "M": "f_wind_mill", + "e": "f_bookcase" + } + }, + { + "type": "palette", + "id": "fbmg_2_2_concrete_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_thconc_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_sconc_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmg_2_2_log_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_log" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmg_2_2_metal_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_scrap_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_scrap_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmg_2_2_migo_resin_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor_resin", "+": "t_resin_hole_c", "v": "t_wall_resin_cage", "w": "t_wall_resin" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmg_2_2_rammed_earth_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_window_empty", + "w": "t_wall_rammed_earth" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmg_2_2_rock_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_rock_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmg_2_2_wad_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_wall_wattle_half", + "w": "t_wall_wattle" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmg_2_2_wood_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_wood" }, + "furniture": { } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_wad.json b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_wad.json new file mode 100644 index 0000000000000..6f95f8c49aac4 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_wad.json @@ -0,0 +1,249 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_1_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "ww,,,, ", + "w,,,,, ", + "w,,,,, ", + "w,,,,, ", + "w,,,,, ", + "w,,,,, ", + "ww " + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_1_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_1_wad" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_2_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ",,,,ww ", + ",,,,,w ", + ",,,,,v ", + ",,,,,w ", + ",,,,,+ ", + ",,,,,w ", + " ww " + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_2_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_2_wad" ], "x": 14, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_wall_1_wad", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + " ", + " ", + " ", + " ", + "wvwwv" + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_wall_2_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " ", + " ", + " ", + " ", + " ", + "wwvwwv" + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_wall_3_wad", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + " ", + " ", + " ", + " ", + "wwvw+" + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_wall_wad", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbmg_2_wall_1_wad" ], "x": 2, "y": 18 }, + { "chunks": [ "fbmg_2_wall_2_wad" ], "x": 7, "y": 17 }, + { "chunks": [ "fbmg_2_wall_3_wad" ], "x": 13, "y": 18 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_4_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "w ", + "w,,,,,", + "w,,,,,", + "w,,,,,", + "w,,,,,", + "w,,,,," + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_4_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_4_wad" ], "x": 0, "y": 10 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_5_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w", + ",,,,,w", + ",,,,,v", + ",,,,,w", + ",,,,,w", + ",,,,,v" + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_5_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_5_wad" ], "x": 14, "y": 10 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_7_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "w ", + "w,,,,,", + "w,,,,,", + "w,,,,,", + "w,,,,,", + " w,,,," + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_7_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_7_wad" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_8_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w", + ",,,,,v", + ",,,,,w", + ",,,,,w", + ",,,,,v", + ",,,,w " + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_8_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_8_wad" ], "x": 14, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_10_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "w ", + "w,,,,,", + "w,,,,,", + "w,,,,,", + " w,,,,", + " " + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_10_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_10_wad" ], "x": 0, "y": 1 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_11_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w", + ",,,,,w", + ",,,,,w", + ",,,,,w", + ",,,,w ", + " " + ], + "palettes": [ "fbmg_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_11_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_11_wad" ], "x": 14, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_wood.json b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_wood.json new file mode 100644 index 0000000000000..29aaabc32144b --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_garage/version_2/modular_garage_wood.json @@ -0,0 +1,249 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_1_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "ww,,,, ", + "w,,,,, ", + "w,,,,, ", + "w,,,,, ", + "w,,,,, ", + "w,,,,, ", + "ww " + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_1_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_1_wood" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_2_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + ",,,,ww ", + ",,,,,w ", + ",,,,,v ", + ",,,,,w ", + ",,,,,+ ", + ",,,,,w ", + " ww " + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_2_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_2_wood" ], "x": 14, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_wall_1_wood", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + " ", + " ", + " ", + " ", + "wvwwv" + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_wall_2_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " ", + " ", + " ", + " ", + " ", + "wwvwwv" + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_wall_3_wood", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + " ", + " ", + " ", + " ", + "wwvw+" + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_wall_wood", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbmg_2_wall_1_wood" ], "x": 2, "y": 18 }, + { "chunks": [ "fbmg_2_wall_2_wood" ], "x": 7, "y": 17 }, + { "chunks": [ "fbmg_2_wall_3_wood" ], "x": 13, "y": 18 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_4_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "w ", + "w,,,,,", + "w,,,,,", + "w,,,,,", + "w,,,,,", + "w,,,,," + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_4_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_4_wood" ], "x": 0, "y": 10 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_5_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w", + ",,,,,w", + ",,,,,v", + ",,,,,w", + ",,,,,w", + ",,,,,v" + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_5_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_5_wood" ], "x": 14, "y": 10 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_7_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "w ", + "w,,,,,", + "w,,,,,", + "w,,,,,", + "w,,,,,", + " w,,,," + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_7_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_7_wood" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_8_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w", + ",,,,,v", + ",,,,,w", + ",,,,,w", + ",,,,,v", + ",,,,w " + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_8_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_8_wood" ], "x": 14, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_10_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "w ", + "w,,,,,", + "w,,,,,", + "w,,,,,", + " w,,,,", + " " + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_10_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_10_wood" ], "x": 0, "y": 1 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmg_2_11_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w", + ",,,,,w", + ",,,,,w", + ",,,,,w", + ",,,,w ", + " " + ], + "palettes": [ "fbmg_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmg_2_11_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmg_2_11_wood" ], "x": 14, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/bugs/ants.json b/data/json/mapgen/bugs/ants.json index 9f1475d8e57d7..063cdf803c616 100644 --- a/data/json/mapgen/bugs/ants.json +++ b/data/json/mapgen/bugs/ants.json @@ -38,6 +38,16 @@ } } }, + { + "//": "slopes up to anthill entrance to be used where appropriate", + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "ant_up_to_surface", + "object": { "mapgensize": [ 2, 2 ], "rows": [ + ">>", + ">>" + ], "terrain": { ">": "t_slope_up" } } + }, { "//": "walls of ant tunnel that can shift from side to side to make the tunnel wind", "type": "mapgen", @@ -236,18 +246,6 @@ "object": { "fill_ter": "t_dirt_underground", "rows": [ - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", - "####### #######", "########################", "########################", "########################", @@ -259,22 +257,34 @@ "########################", "########################", "########################", - "########################" + "########################", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######", + "####### #######" ], "terrain": { "#": "t_soil" }, "place_nested": [ - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 0 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 1 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 2 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 3 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 4 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 5 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 6 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 7 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 8 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 9 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 10 }, - { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 11 } + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 12 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 13 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 14 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 15 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 16 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 17 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 18 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 19 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 20 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 21 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 22 }, + { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 23 } ] } }, @@ -451,6 +461,7 @@ ], "terrain": { "#": "t_soil" }, "place_nested": [ + { "chunks": [ "ant_up_to_surface" ], "joins": { "above": "tunnel_to_surface" }, "x": 11, "y": 11 }, { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 0 }, { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 1 }, { "chunks": [ "ant_tunnel_bounds_h" ], "x": [ 4, 6 ], "y": 2 }, diff --git a/data/json/mapgen/cabin.json b/data/json/mapgen/cabin.json index 3b12ca07a1a59..7c52dc66b53ce 100644 --- a/data/json/mapgen/cabin.json +++ b/data/json/mapgen/cabin.json @@ -860,7 +860,7 @@ "...___#15SFR &# BB#_....", "...___w2 R# BBw_....", "..____w3 CC + D#_....", - "..____#y ll #####%....", + "..____#y ll x#####%....", "..____+ + D#_....", "...___#cttc#+## BBw_....", "...___#cttc# T# BB#_....", @@ -886,8 +886,10 @@ [ "t_tree_pine", 2 ], [ "t_underbrush", 3 ] ], - "_": [ "t_dirt", [ "t_grass", 6 ] ] + "_": [ "t_dirt", [ "t_grass", 6 ] ], + "x": "t_floor" }, + "furniture": { "x": "f_firefly_terrarium" }, "place_monster": [ { "monster": "mon_rabbit", "x": 8, "y": 21, "repeat": [ 3, 6 ] } ], "place_npcs": [ { "class": "warrener", "x": 9, "y": 17 } ] } diff --git a/data/json/mapgen/exodii/exodii_base.json b/data/json/mapgen/exodii/exodii_base.json index f789d08d16862..e549bad5a9034 100644 --- a/data/json/mapgen/exodii/exodii_base.json +++ b/data/json/mapgen/exodii/exodii_base.json @@ -24,11 +24,11 @@ " ,,..#####################........##################..................,,,,,,,,,,,, ", " ,,,.###################################################..........###......,,,,,,,,, , ", " ,,..##################xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx##........####........,,,,,,,, ", - ", ,,,,.###################x#~~~######x||||||||||#||||||||x#####...#######.........,,,,,,,, ", - " ,,..###################x#~Ĝ~###Ğ##x|LṪƤṪṪṪƥṪ|#|LUUUUL|x####################.....,,,,,,, ", - " ,,.########xxxxxxxxx##xx#_/_##_/##x|c_/___/_|#|U____U|x######################......,,,, ", - " ,,.#######xx|||||||xxxx##//_##//c#x|c_/////c|#|U____U|x#########################.....,,, ", - " ,,.#######x||ϟ_ϟ_ϟ||#|||L/__##/_c#x|c__/___c|#|LU__UL|x############################...,, ", + ", ,,,,.###################x##########x||||||||||#||||||||x#####...#######.........,,,,,,,, ", + " ,,..###################x#~~~###Ğ##x|LṪƤṪṪṪƥṪ|#|LUUUUL|x####################.....,,,,,,, ", + " ,,.########xxxxxxxxx##xx#~Ĝ~##_/##x|c_/___/_|#|U____U|x######################......,,,, ", + " ,,.#######xx|||||||xxxx##_/_##//c#x|c_/////c|#|U____U|x#########################.....,,, ", + " ,,.#######x||ϟ_ϟ_ϟ||#|||L//_##/_c#x|c__/___c|#|LU__UL|x############################...,, ", " ,,,.######xx|///////|||L||/__#L/_c##||__/UUU|||||U__U||x##############################..,, ", " ,,..#####x||ϟ_ϟ_ϟ_ϟ||///||M||||M||ɱɱ|mm|||||L|L||mm|||x###############################.., ", " ,,...#####x|L/_/_/_/_m_<_m___________________________T|x################################.,, ", @@ -129,22 +129,22 @@ { "type": "NPC_INVESTIGATE_ONLY", "faction": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "faction_owner": [ - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 72, 95 ] } + { "id": "exodii", "x": [ 0, 23 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "palettes": [ "exodii_palette" ], "terrain": { @@ -180,7 +180,7 @@ "object": { "fill_ter": "t_scrap_floor", "rows": [ - "........................x.......................x.......................x.......................", + "................................................................................................", "................................................................................................", "................................................................................................", "................................................................................................", @@ -247,14 +247,14 @@ ".............||__MT]j w ;;iiikiii;;ii # |]]|ϟ__////_______________M__T] ;; !!.......", ".............]___||] ;;iiiii;;ii ###S |ϟ///__////____________|__T] ;; !........", "............||____M;;;;;;;;;;;;;iii;;ii ###### w|ϟ_____/_LƤṪṪṪcCUUUR___|||]] ;; !........", - "............]_s___| L;;;;;;;ii ####### |ϟ_____//______________| ;; |!........", - "............]_____| ;;|MM|;;;;######## |ϟ______/______________| ;; !.........", - "............|_s___| ;||__| ``####### |ϟ_____//cccCCCccCcc___| ;; !!.........", - "............]_____| ;]TT|| ##``###### |ϟ_____/_______________| ;; !..........", - "............]_s___| S ;]]]| ###`# #### |ϟ_____////____________| ;;;||||!..........", - "............|]]|__| ; ####;; # |ϟ_______LƤṪṪṪƤṪṪṪƤL___| ;|M|_s]...........", + "............]_s___||||||| L;;;;;;;ii ####### |ϟ_____//______________| ;; |!........", + "............]_____|@ m;;;;;;|MM|;;;;######## |ϟ______/______________| ;; !.........", + "............|_s___| | ;||__| ``####### |ϟ_____//cccCCCccCcc___| ;; !!.........", + "............]_____| ] ;]TT|| ##``###### |ϟ_____/_______________| ;; !..........", + "............]_s___| ] ;]]]| ###`# #### |ϟ_____////____________| ;;;||||!..........", + "............|]]|__||||||| ; ####;; # |ϟ_______LƤṪṪṪƤṪṪṪƤL___| ;|M|_s]...........", "...............|]]| ;;; S####jj;; |ϟ_____________________| ;;M____]...........", - "..................!!!! ;; ; #####ljj; |ϟ_____W______________R| ;||____]...........", + "..................!!!!S ;; ; #####ljj; |ϟ_____W______________R| ;||____]...........", ".....................!! ;;S ; L#|||##lj; w ||mm|mm||||||||||||||||| ;|____||...........", "......................! ;; #|m|##|>|##lj; L];;!;;rrrrrrrrrrrrrr! ;|___s]............", "......................!! ; ##|_|##|_|##;;;;;;;;;; ];;!;;;;;;;;;;;;;;rr! ;|_s|]|............", @@ -297,23 +297,24 @@ { "type": "NPC_INVESTIGATE_ONLY", "faction": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "faction_owner": [ - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 72, 95 ] } + { "id": "exodii", "x": [ 0, 23 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], + "nested": { "@": { "chunks": [ "rubik_store_base" ] } }, "terrain": { " ": "t_rock_floor_no_roof", ";": "t_metal_floor_no_roof", @@ -480,22 +481,22 @@ { "type": "NPC_INVESTIGATE_ONLY", "faction": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "faction_owner": [ - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 72, 95 ] } + { "id": "exodii", "x": [ 0, 23 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "terrain": { " ": "t_rock_floor_no_roof", @@ -662,22 +663,22 @@ { "type": "NPC_INVESTIGATE_ONLY", "faction": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "faction_owner": [ - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 72, 95 ] } + { "id": "exodii", "x": [ 0, 23 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "terrain": { " ": "t_rock_floor_no_roof", @@ -844,22 +845,22 @@ { "type": "NPC_INVESTIGATE_ONLY", "faction": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "faction_owner": [ - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 0, 23 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 24, 47 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 48, 71 ], "y": [ 72, 95 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 0, 23 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 24, 47 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 48, 71 ] }, - { "id": "free_merchants", "x": [ 72, 95 ], "y": [ 72, 95 ] } + { "id": "exodii", "x": [ 0, 23 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 0, 23 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 24, 47 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 48, 71 ], "y": [ 72, 95 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 0, 23 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 24, 47 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 48, 71 ] }, + { "id": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], "terrain": { ".": "t_open_air", "[": "t_open_air" }, "furniture": { "[": "f_scrap_bridge" } diff --git a/data/json/mapgen/exodii/exodii_nested.json b/data/json/mapgen/exodii/exodii_nested.json new file mode 100644 index 0000000000000..0d8a55037c674 --- /dev/null +++ b/data/json/mapgen/exodii/exodii_nested.json @@ -0,0 +1,43 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "rubik_store_base", + "//": "Rubik's store in the exodii main base", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "T__c_", + "1__cc", + "L____", + "2345T", + "|||||" + ], + "place_npcs": [ { "class": "exodii_merchant", "x": 2, "y": 1 } ], + "terrain": { "_": "t_metal_floor", "|": "t_junk_wall", "T": "t_metal_floor" }, + "monster": { "T": { "monster": "mon_exodii_turret" } }, + "mapping": { + "1": { "terrain": "t_metal_floor", "furniture": "f_locker", "items": [ { "item": "EXODII_Shop_Tier0", "chance": 95 } ] }, + "2": { "terrain": "t_metal_floor", "furniture": "f_locker", "items": [ { "item": "EXODII_Shop_Tier0", "chance": 95 } ] }, + "3": { "terrain": "t_metal_floor", "furniture": "f_locker", "items": [ { "item": "EXODII_Shop_Tier0", "chance": 95 } ] }, + "4": { "terrain": "t_metal_floor", "furniture": "f_locker", "items": [ { "item": "EXODII_Shop_Tier0", "chance": 95 } ] }, + "5": { "terrain": "t_metal_floor", "furniture": "f_locker", "items": [ { "item": "EXODII_Shop_Tier0", "chance": 95 } ] }, + "c": { "terrain": "t_metal_floor", "furniture": "f_metal_table" }, + "L": { "terrain": "t_metal_floor", "furniture": "f_exodii_lamp" } + } + } + }, + { + "type": "mapgen", + "method": "json", + "update_mapgen_id": "tier1_CBM_shop_update", + "//": "Fill lockers with CBMs from Tier1.", + "object": { + "place_items": [ + { "item": "EXODII_CBM_Store_Tier1", "x": 19, "y": 21, "chance": 100, "repeat": [ 2, 4 ] }, + { "item": "EXODII_CBM_Store_Tier1", "x": [ 19, 22 ], "y": 23, "chance": 90, "repeat": [ 3, 8 ] } + ], + "faction_owner": [ { "id": "exodii", "x": 19, "y": 21 }, { "id": "exodii", "x": [ 19, 22 ], "y": 23 } ] + } + } +] diff --git a/data/json/mapgen/faction_buildings.json b/data/json/mapgen/faction_buildings.json index 9ae3a227197d3..f35c830e0c49e 100644 --- a/data/json/mapgen/faction_buildings.json +++ b/data/json/mapgen/faction_buildings.json @@ -2625,5 +2625,42 @@ ], "palettes": [ "acidia_camp_palette" ] } + }, + { + "type": "mapgen", + "om_terrain": [ "faction_base_garage_2_0" ], + "method": "json", + "weight": 250, + "object": { + "faction_owner": [ { "id": "your_followers", "x": [ 0, 23 ], "y": [ 0, 23 ] } ], + "fill_ter": "t_floor", + "rows": [ + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,," + ], + "palettes": [ "acidia_camp_palette" ] + } } ] diff --git a/data/json/mapgen/field_baseball.json b/data/json/mapgen/field_baseball.json index 81ee812b9977f..8491b4b19dac8 100644 --- a/data/json/mapgen/field_baseball.json +++ b/data/json/mapgen/field_baseball.json @@ -7,35 +7,35 @@ "object": { "rows": [ "rrrrrrrrrrrrr...7.22.......666666666666666666667", - "yrrryrrryrrry...72222..............2BIIIIIIIII27", - "yrrryrrryrrry...72222..............2222222222227", - "yrrryrrryrrry...722222222222222222222IIIIIIIII27", - "yrrryrrryrrry...72222666666666.................7", - "yrrryrrryrrry...722227...x...7........--------.7", - "yyyyyyyyyyyyy66672222..xxxxx..........| IIIII|.7", - "222222222222222222222.xxyxyxxxxxxxxxxxxxxxxxx..7", - "....3..33..33.3..22....xyyyx...................7", - "...........----2222....x...x...................7", - "...........| +2222...x.....x..................7", - "...........| |......x.......x.................7", - "66666666666----.....x.........x................7", - "7..................x...........x...............7", - "7.................x.............x..............7", - "7................x...............x.............7", - "7...............x.................x............7", - "7..............x...................x...........7", - "7.............y..........y..........y..........7", - "7..............x...................x...........7", - "7...............x.................x............7", - "7................x...............x.............7", - "7.................x.............x..............7", - "7..................x...........x...............7", - "7...................x.........x................7", - "7....................x.......x.................7", - "7.....................x.....x..................7", - "7......................x...x...................7", - "7.......................x.x....................7", - "7........................y.....................7", + "yrrryrrryrrry.3.72222.....3..3..3..............7", + "yrrryrrryrrry...72222..............222||||||||.7", + "yrrryrrryrrry.3.7222222222222222222222+ FH|.7", + "yrrryrrryrrry...72222666666666.....222|GGGG H|.7", + "yrrryrrryrrry...722227...x...7.|||||||||||||||.7", + "yyyyyyyyyyyyy66672222..xxxxx...|IIIIII|IIIIII|.7", + "222222222222222222222.xxxxxxxxxxxxxxxxxxxxxxx..7", + "6666666666666666.22....xx~xx...................7", + "72BJJJJJJJJJ2222222...xxx.xxx..................7", + "7222222222222222222..xx.....xx.................7", + "72BJJJJJJJJJ2226....xx.......xx................7", + "6666666666666666...xx.........xx...............7", + "7.................xx...........xx..............7", + "7................xx.............xx.............7", + "7...............xx...............xx............7", + "7..............xx.................xx...........7", + "7.............xx...................xx..........7", + "7.............~x.........Y.........x~..........7", + "7.............xx...................xx..........7", + "7..............xx.................xx...........7", + "7...............xx...............xx............7", + "7................xx.............xx.............7", + "7.................xx...........xx..............7", + "7..................xx.........xx...............7", + "7...................xx.......xx................7", + "7....................xx.....xx.................7", + "7.....................xx...xx..................7", + "7......................xxxxx...................7", + "7.......................x~x....................7", "7..............................................7", "7..............................................7", "7..............................................7", @@ -76,40 +76,26 @@ "terrain": { " ": "t_floor", "+": "t_door_c", - "x": "t_dirtfloor", - "-": "t_wall_h", - ".": "t_grass", - "1": "t_window", - "2": "t_sidewalk", + "x": "t_dirt", + ".": "t_region_groundcover_urban", + "2": "t_concrete", "3": "t_tree_young", "4": "t_chaingate_l", - "5": "t_wall_wood", - "6": "t_chainfence_h", - "7": "t_chainfence_v", - "A": "t_floor", - "B": "t_sidewalk", - "C": "t_floor", - "D": "t_floor", - "E": "t_dirtfloor", + "6": "t_chainfence", + "7": "t_chainfence", + "B": "t_concrete", "F": "t_floor", - "G": "t_dirtfloor", + "G": "t_floor", "H": "t_floor", - "I": "t_floor", + "I": "t_dirtfloor", + "J": "t_concrete", + "Y": "t_dirtmound", "r": "t_pavement", "y": "t_pavement_y", - "|": "t_wall_v" + "~": "t_sand", + "|": "t_concrete_wall" }, - "furniture": { - "A": "f_rack", - "B": "f_trashcan", - "C": "f_counter", - "D": "f_sink", - "E": "f_sink", - "F": "f_chair", - "G": "f_locker", - "H": "f_table", - "I": "f_bench" - } + "furniture": { "B": "f_trashcan", "F": "f_stool", "G": "f_locker", "H": "f_table", "I": "f_bench", "J": "f_bench" } }, { "id": "baseball_equip", diff --git a/data/json/mapgen/map_extras/marloss_voice.json b/data/json/mapgen/map_extras/marloss_voice.json new file mode 100644 index 0000000000000..88356615adec2 --- /dev/null +++ b/data/json/mapgen/map_extras/marloss_voice.json @@ -0,0 +1,50 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "marloss_zealot", + "object": { "mapgensize": [ 1, 1 ], "place_monster": [ { "monster": "mon_marloss_zealot_f", "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "marloss_zealot", + "object": { "mapgensize": [ 1, 1 ], "place_monster": [ { "monster": "mon_marloss_zealot_m", "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "update_mapgen_id": "mx_marloss_pilgrimage", + "object": { + "rows": [ + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " 2 ", + " ", + " 2 2 ", + " ", + " 2 1 2 ", + " ", + " 2 2 ", + " ", + " 2 ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " " + ], + "terrain": { "1": "t_null" }, + "npcs": { "1": { "class": "marloss_voice" } }, + "nested": { "2": { "chunks": [ [ "marloss_zealot", 50 ], [ "null", 50 ] ] } } + } + } +] diff --git a/data/json/mapgen/microlab/microlab_connector.json b/data/json/mapgen/microlab/microlab_connector.json index 180fe707cc3b6..b1dc37e5fd069 100644 --- a/data/json/mapgen/microlab/microlab_connector.json +++ b/data/json/mapgen/microlab/microlab_connector.json @@ -77,7 +77,7 @@ "om_terrain": [ "microlab_sub_station" ], "weight": 1000, "object": { - "fill_ter": "t_concrete", + "fill_ter": "t_strconc_floor", "rows": [ "##| |##", "##|^ |##", @@ -104,6 +104,10 @@ "##########|22|##########", "##########| |##########" ], + "place_nested": [ + { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab" } }, + { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab" } } + ], "palettes": [ "microlab" ], "terrain": { "G": "t_card_science" }, "items": { @@ -118,7 +122,7 @@ "om_terrain": [ "microlab_generic_sub_entry" ], "weight": 1000, "object": { - "fill_ter": "t_concrete", + "fill_ter": "t_strconc_floor", "rows": [ "||||||||||| |||||||||||", " cc c | |^BBB| ", @@ -145,6 +149,12 @@ " cc cc 2 |c ccccc ", " | | " ], + "place_nested": [ + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], "palettes": [ "microlab" ], "terrain": { "G": "t_card_science" }, "items": { @@ -158,7 +168,7 @@ "om_terrain": [ [ "microlab_generic_surface_connector" ] ], "method": "json", "object": { - "fill_ter": "t_concrete", + "fill_ter": "t_strconc_floor", "rows": [ " | | |cccc| ", " |=[==| |||||| ", @@ -185,6 +195,12 @@ " cc r|B [ ^|eeeeee|#|", " | |22|||||||||||" ], + "place_nested": [ + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], "palettes": [ "microlab" ], "terrain": { "e": "t_elevator", "E": "t_elevator_control" }, "items": { @@ -199,7 +215,7 @@ "om_terrain": [ [ "microlab_generic_vent_shaft_connector" ] ], "method": "json", "object": { - "fill_ter": "t_concrete", + "fill_ter": "t_strconc_floor", "rows": [ " | | |cccc| ", " |=[==| |||||| ", @@ -226,6 +242,12 @@ " cc r|B [ [ ^|#|", " |||||| |||||||||||" ], + "place_nested": [ + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], "palettes": [ "microlab" ], "terrain": { "p": "t_sewage_pipe", "w": "t_water_pool_shallow", "S": "t_sewage_pump" }, "furniture": { "%": "f_machinery_heavy" }, diff --git a/data/json/mapgen/microlab/microlab_generic.json b/data/json/mapgen/microlab/microlab_generic.json index 9e5be8662c5c0..b7f2afbcbf9dc 100644 --- a/data/json/mapgen/microlab/microlab_generic.json +++ b/data/json/mapgen/microlab/microlab_generic.json @@ -1,10 +1,25 @@ [ { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], "method": "json", + "om_terrain": [ [ "microlab_generic" ] ], "object": { "fill_ter": "t_strconc_floor", + "place_nested": [ + { "chunks": [ "microlab_generic_tile" ], "x": 0, "y": 0 }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ] + } + }, + { + "type": "mapgen", + "nested_mapgen_id": "microlab_generic_tile", + "method": "json", + "object": { + "mapgensize": [ 24, 24 ], "rows": [ " cc | 2 |rrrr| ", " cc ==[==| |||||| ", @@ -37,10 +52,46 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], + "rows": [ + " cc | 2 |rrrr| ", + " cc ==[==| |||||| ", + " = | |i l|r i ", + " [ |22|i l|r c ", + " FFFF= | |i l|r c ", + "||||||||||| ||2|||| ", + " F|F |####| | c ", + " F|F |||||| | c ", + " F|F |???? | i ", + " | | Y", + "|5|||| dddddd |2|||", + " 2 Y dh^ d | ", + " 2 Y d ^hd | ", + "|2|||| dddddd |(((|", + " r| 2 ", + "cc r|???? |^ ", + "cc hc|||||| | h ", + " c|FFF|N | |6tt ", + "|||||||22|| ||((22|||||", + " | | |FF| ", + " c6 6c | |c | | ", + " cc cc | |6h ", + " cc cc | |c ccccc ", + " |22| " + ], + "palettes": [ "microlab" ], + "items": { "l": { "item": "cleaning", "chance": 50, "repeat": [ 1, 3 ] } } + } + }, + { + "type": "mapgen", + "nested_mapgen_id": "microlab_generic_tile", + "method": "json", + "object": { + "mapgensize": [ 24, 24 ], "rows": [ " cc | | |FFFF|6 ", " cc F| ||||||6 h ", @@ -72,10 +123,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc | c| |c c| c ", " cc | c| |||||| c ", @@ -107,10 +158,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc c|c | |r F| ", " cc | |r F| c ", @@ -143,10 +194,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc c|c | |c F|c ", " cc | |c F|c c ", @@ -181,10 +232,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc c|r r| | c|c ", " |||||||||| | ccc|c c ", @@ -216,10 +267,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc c|c c| | cc | ", " |||||||||| | cc | c c ", @@ -251,10 +302,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc c| | | cc | ", " ||||||22|| | cc | c c ", @@ -286,10 +337,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc c|cccc| | cc | ", " |||||||||| | cc c c c ", @@ -321,10 +372,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | cc | ", " | cc | | cc | c c ", @@ -356,10 +407,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | cc | ", " cc | cc | | cc | c c ", @@ -391,10 +442,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | cc | ", " cc | cc | |||||| c c ", @@ -428,10 +479,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | | ", " 2 c| |cccc| cc ", @@ -463,10 +514,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " |c c| | | ", " cccc|c c| | | c c ", diff --git a/data/json/mapgen/microlab/microlab_generic_edge.json b/data/json/mapgen/microlab/microlab_generic_edge.json index 2925d1439e890..c7426807842d3 100644 --- a/data/json/mapgen/microlab/microlab_generic_edge.json +++ b/data/json/mapgen/microlab/microlab_generic_edge.json @@ -8,6 +8,12 @@ "set": [ { "line": "terrain", "id": "t_concrete_wall", "x": 0, "y": 0, "x2": 23, "y2": 0 } ] } }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "concrete_corner", + "object": { "mapgensize": [ 1, 1 ], "set": [ { "point": "terrain", "id": "t_concrete_wall", "x": 0, "y": 0 } ] } + }, { "type": "mapgen", "method": "json", @@ -19,10 +25,33 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], "method": "json", + "om_terrain": [ [ "microlab_generic_edge" ] ], "object": { "fill_ter": "t_strconc_floor", + "place_nested": [ + { "chunks": [ "microlab_generic_edge_tile" ], "x": 0, "y": 0 }, + { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, + { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, + { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, + { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } }, + { "else_chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab" } }, + { "else_chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab" } }, + { "else_chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab" } }, + { "else_chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ] + } + }, + { + "type": "mapgen", + "nested_mapgen_id": "microlab_generic_edge_tile", + "method": "json", + "object": { + "mapgensize": [ 24, 24 ], "rows": [ " | | | ", " cc c 2 2 2 ", @@ -49,21 +78,15 @@ " cc cc 2 |c ccccc ", " | | " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | ", " cc c 2 2 2 ", @@ -90,21 +113,15 @@ " cc cc | |c ccccc ", " | 5 " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ "||||||||||| | | ", "|#########| 2 2 ", @@ -131,21 +148,15 @@ " c| ll| |ll |c ", " |||||| ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ "||||||||||| | | ", "|tRt yyyy| 2 2 ", @@ -172,21 +183,15 @@ " c c| 2 2 FF|UU ", " | | | | " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ "||||||||||| | | ", "|OOOOOOOOO| 2 2 ", @@ -213,21 +218,15 @@ " c c| 2 2 F|c ", " | | | | " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | | ", " U|||||||| |tt 2 ", @@ -254,21 +253,15 @@ " U|||||||| |@D t|U ", " | | ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | ", " cccc U| |c hc|UUU ", @@ -295,21 +288,15 @@ " c UUUcc| |@D t|U ", " |||||||| ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | | | ", " U h U| |U U|U ", @@ -336,21 +323,15 @@ " c |c cc c| | |U ", " | | ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc | | | ", " 6|||||||| |U U|c hc ", @@ -377,21 +358,15 @@ " 2 c|U U| |FFFFF|U ", " | | ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc | | | ", " 6|||||||| |U U|c hc ", @@ -418,21 +393,15 @@ " | c|U U| |FFFFF|U ", " | | ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc | | | ", " 6|||||||| |U U|c hc ", @@ -459,21 +428,15 @@ " | c|U U| |^BBB^|U ", " | | ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_edge" ] ], + "nested_mapgen_id": "microlab_generic_edge_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc | | | ", " 6|||||||| |U U|c hc ", @@ -500,12 +463,6 @@ " U |UU U| |^BBB^|U ", " | | ||||||| " ], - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, - { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } } - ], "palettes": [ "microlab" ] } } diff --git a/data/json/mapgen/microlab/microlab_hallway.json b/data/json/mapgen/microlab/microlab_hallway.json index 12bb1d220293e..7047ac80d7677 100644 --- a/data/json/mapgen/microlab/microlab_hallway.json +++ b/data/json/mapgen/microlab/microlab_hallway.json @@ -1,7 +1,7 @@ [ { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway" ] ], + "om_terrain": [ [ "microlab_generic_hallway_straight" ] ], "method": "json", "object": { "fill_ter": "t_strconc_floor", @@ -31,13 +31,19 @@ " cc | PP PP PP |F c ", " | PP PP PP | " ], + "place_nested": [ + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], "palettes": [ "microlab" ], "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway" ] ], + "om_terrain": [ [ "microlab_generic_hallway_straight" ] ], "method": "json", "object": { "fill_ter": "t_strconc_floor", @@ -67,13 +73,19 @@ " F| PP PP |F c ", " F| PP PP PP | " ], + "place_nested": [ + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], "palettes": [ "microlab" ], "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway" ] ], + "om_terrain": [ [ "microlab_generic_hallway_straight" ] ], "method": "json", "object": { "fill_ter": "t_strconc_floor", @@ -109,7 +121,7 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway" ] ], + "om_terrain": [ [ "microlab_generic_hallway_straight" ] ], "method": "json", "object": { "fill_ter": "t_strconc_floor", @@ -139,35 +151,41 @@ " cc | PP PP PP |F i ", " | PP PP PP | " ], + "place_nested": [ + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], "palettes": [ "microlab" ], "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } } }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway" ] ], + "om_terrain": [ [ "microlab_generic_hallway_curved" ] ], "method": "json", "object": { "fill_ter": "t_strconc_floor", "rows": [ - " cc c| PP PP PP |c c ", - " cc c| PP PP PP |c ", - " c| PP PP PP |cci ", - " |||| PP PP PP ||||F ", - " F|XX= PP PP PP =XX|F ", - "|||XX= PP PP PP =XX|||", - " F|=== PP PP PP ===|c ", - " F|? PP PP PP ?|c ", - " F|?Y PP PP PP Y?|i ", - " |??? ???|c ", - "|5|||| ||||||", - " 2 2 ", - " 2 2 ", - "|2|||| ||2|||", - " hc|b bb bb b|c ", - "cc c|b bb bb b|6 ", - "cc 6|b bb bb b|c c ", - " | |ciccc", + " cc c||||||||||||||c c ", + " cc c|############|c ", + " c|############|cci ", + " |||||||||||||||||c h ", + " F|XXXXXXXXXXXXXXX|cccc ", + "|||XX=============||||||", + " F|XX= d ", + " F|XX= hd PPPPPP", + " F|XX= dd6d PPPPPP", + " |XX= ", + "|5|||| PPPP ", + " 2 PPPP PPPPPP", + " 2 PPPP PPPPPP", + "|2|||| PPPP ", + " hc| ", + "cc c| PPPPPP", + "cc 6| PPPPPP", + " | ", "|2|||| PP PP PP ||||||", " ch | PP PP PP | ", " cc | PP PP PP |F i ", @@ -175,6 +193,84 @@ " cc | PP PP PP |F i ", " | PP PP PP | " ], + "place_nested": [ + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], + "palettes": [ "microlab" ], + "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } + } + }, + { + "type": "mapgen", + "om_terrain": [ [ "microlab_generic_hallway_tee" ] ], + "method": "json", + "object": { + "fill_ter": "t_strconc_floor", + "rows": [ + " cc |||||| |||||| ", + " cc 2 [ [ 2 ", + " | = = | ", + " ||||||||||||||||||||F ", + " F|XXXXXXXXXXXXXXXXXX|F ", + "|||==================|||", + " Y Y ", + "PPPPPP PPPPPPPPPP PPPPP", + "PPPPPP PPPPPPPPPP PPPPP", + " ", + "====== PP ==== PP ======", + "=XXXX= PP =XX= PP =XXXX=", + "=XXXX= PP =XX= PP =XXXX=", + "====== PP ==== PP ======", + " PP PP ", + "PPPPP PP PP PP PPPPP", + "PPPPP PP PP PP PPPPP", + " Y PP PP Y ", + "|||=== PP ==== PP ===|||", + " F|XX=YPP =XX= PPY=XX|c ", + " F|||| PP =XX= PP ||||c ", + " icc| PP ==== PP |F cc ", + " F| PP PP |F c ", + " F| PP PP PP | " + ], + "palettes": [ "microlab" ], + "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } + } + }, + { + "type": "mapgen", + "om_terrain": [ [ "microlab_generic_hallway_four_way" ] ], + "method": "json", + "object": { + "fill_ter": "t_strconc_floor", + "rows": [ + " cc | PP PP | ", + " cc | PP PP | ", + " | PP ==== PP | ", + " |||| PP =XX= PP ||||F ", + " F|XX=YPP =XX= PP =XX|F ", + "|||=== PP ==== PP ===|||", + " Y PP PP Y ", + "PPPPPP PP PP PP PPPPP", + "PPPPPP PP PP PP PPPPP", + " PP PP ", + "====== PP ==== PP ======", + "=XXXX= PP =XX= PP =XXXX=", + "=XXXX= PP =XX= PP =XXXX=", + "====== PP ==== PP ======", + " PP PP ", + "PPPPP PP PP PP PPPPP", + "PPPPP PP PP PP PPPPP", + " Y PP PP Y ", + "|||=== PP ==== PP ===|||", + " F|XX=YPP =XX= PPY=XX|c ", + " F|||| PP =XX= PP ||||c ", + " icc| PP ==== PP |F cc ", + " F| PP PP |F c ", + " F| PP PP PP | " + ], "palettes": [ "microlab" ], "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } } diff --git a/data/json/mapgen/microlab/microlab_hallway_start.json b/data/json/mapgen/microlab/microlab_hallway_start.json index c06185287253e..eb97f2c685796 100644 --- a/data/json/mapgen/microlab/microlab_hallway_start.json +++ b/data/json/mapgen/microlab/microlab_hallway_start.json @@ -1,10 +1,33 @@ [ { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway_start" ] ], "method": "json", + "om_terrain": "microlab_generic_hallway_end", "object": { "fill_ter": "t_strconc_floor", + "place_nested": [ + { "chunks": [ "microlab_generic_end_tile" ], "x": 0, "y": 0 }, + { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab_rock_border" } }, + { "chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, + { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab_rock_border" } }, + { "chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } }, + { "else_chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": "microlab" } }, + { "else_chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab" } }, + { "else_chunks": [ "concrete_wall_ew" ], "x": 0, "y": 23, "neighbors": { "south": "microlab" } }, + { "else_chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ] + } + }, + { + "type": "mapgen", + "nested_mapgen_id": "microlab_generic_end_tile", + "method": "json", + "object": { + "mapgensize": [ 24, 24 ], "rows": [ " cc | PP YY PP | ", " cc | PP YY PP | ", @@ -37,10 +60,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway_start" ] ], + "nested_mapgen_id": "microlab_generic_end_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " c h| PP PP PP |c ", " cccc| PP PP PP |c6h ", @@ -73,10 +96,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway_start" ] ], + "nested_mapgen_id": "microlab_generic_end_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " c h| PP PP PP |c ", " cccc| PP PP PP |c6h ", @@ -109,10 +132,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic_hallway_start" ] ], + "nested_mapgen_id": "microlab_generic_end_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " c h| PP PP PP |c ", " cccc| PP PP PP |c6h ", @@ -122,9 +145,9 @@ "|||XX= PPPPPPPPPP =XX||2", " F|||| PPPPPPPPPP ||||F ", " F|htth htth|F ", - " F|htth V||||V htth|F ", - " | ^|##|^ |F ", - "|||||||(((||||(((||||||2", + " F|htth |||| htth|F ", + " | |##| |F ", + "||||||| |||| ||||||2", " 2YPPPPPPPPPPY2 ", " 2YPPPPPPPPPPY2 ", "||| |||||h h||||||2((|", @@ -142,5 +165,49 @@ "palettes": [ "microlab" ], "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } } + }, + { + "type": "mapgen", + "om_terrain": [ [ "microlab_generic_hallway_blind_end" ] ], + "method": "json", + "object": { + "fill_ter": "t_strconc_floor", + "rows": [ + "|||||| PP PP PP ||||||", + "|####| PP PP PP |####|", + "|#|||| PP |||| PP ||||#|", + "|#|XX= PP |##| PP =XX|#|", + "|#|XX= PP |||| PP =XX|#|", + "|#|XX= PPPPPPPPPP =XX|#|", + "|#|||| PPPPPPPPPP ||||#|", + "|#|htth htth|#|", + "|#|htth |||| htth|#|", + "|#| |##| |#|", + "||||||| |||| |||||||", + " 2YPPPPPPPPPPY2 ", + " 2YPPPPPPPPPPY2 ", + "|2||||||||h h|||||||(2|", + " c|B ^=h h=BB^|c ", + " hc|hd = PP = h|c c ", + " hc|dd = PP = dd|c c ", + " c|h [ PP [ h|c ", + "|2||||||||=[[=||||||||2|", + " h6|^ PP ^|FFF ", + " cc c|B h B| ", + " cc c|B d6dd B| c ", + " F|B h B|c c ", + "||||||||||||||||||||||||" + ], + "place_nested": [ + { "else_chunks": [ "concrete_wall_ns" ], "x": 23, "y": 0, "neighbors": { "east": "microlab_rock_border" } }, + { "else_chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "west": "microlab_rock_border" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 0, "neighbors": { "north_west": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 0, "neighbors": { "north_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 23, "y": 23, "neighbors": { "south_east": "microlab" } }, + { "else_chunks": [ "concrete_corner" ], "x": 0, "y": 23, "neighbors": { "south_west": "microlab" } } + ], + "palettes": [ "microlab" ], + "terrain": { "X": "t_region_shrub_decorative", "P": "t_carpet_concrete_red" } + } } ] diff --git a/data/json/mapgen/microlab/microlab_shifting_hall.json b/data/json/mapgen/microlab/microlab_shifting_hall.json index 8cae799323930..9369ed0a9a07d 100644 --- a/data/json/mapgen/microlab/microlab_shifting_hall.json +++ b/data/json/mapgen/microlab/microlab_shifting_hall.json @@ -44,7 +44,7 @@ " " ], "palettes": [ "microlab" ], - "terrain": { ".": "t_strconc_floor", "S": "t_strconc_floor" }, + "terrain": { ".": "t_strconc_floor", "S": "t_strconc_floor", "^": "t_strconc_floor" }, "traps": { "T": "tr_microlab_shifting_hall_2" }, "signs": { "S": { @@ -93,10 +93,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc | | cc | ", " 2 2 2 | c c ", diff --git a/data/json/mapgen/microlab/microlab_special_tiles.json b/data/json/mapgen/microlab/microlab_special_tiles.json index 16ca68f98560e..36eb657028631 100644 --- a/data/json/mapgen/microlab/microlab_special_tiles.json +++ b/data/json/mapgen/microlab/microlab_special_tiles.json @@ -13,10 +13,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc | c| |c c|r ", " cc | c| |c c|r c ", @@ -52,10 +52,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc | | cc | ", " 2 2 2 | c c ", @@ -92,10 +92,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc 2 2 cc | ", " | |^^| |cccc ", @@ -132,10 +132,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " cc | c| |c c|r ", " cc | c| u|c c|r c ", @@ -175,10 +175,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ " | cc 2 2 cc | ", " | |^^| |cccc ", @@ -231,10 +231,10 @@ }, { "type": "mapgen", - "om_terrain": [ [ "microlab_generic" ] ], + "nested_mapgen_id": "microlab_generic_tile", "method": "json", "object": { - "fill_ter": "t_strconc_floor", + "mapgensize": [ 24, 24 ], "rows": [ "^|FFF|c c| |c c| ", " |||||||||| |||||||||| ", diff --git a/data/json/mapgen/park.json b/data/json/mapgen/park.json index 4c2234d421fa3..df8b9afb5ea60 100644 --- a/data/json/mapgen/park.json +++ b/data/json/mapgen/park.json @@ -6,7 +6,6 @@ "//": "Playground", "weight": 500, "object": { - "rotation": [ 0, 3 ], "fill_ter": "t_region_groundcover_urban", "rows": [ "''''''''''''''''''''''''", @@ -35,7 +34,7 @@ "''''''''''''''''''''''''" ], "palettes": [ "park_scenic_palette" ], - "monsters": { "'": { "monster": "GROUP_PARK_PLAYGROUND", "chance": 140 } }, + "monsters": { "'": { "monster": "GROUP_PARK_PLAYGROUND", "chance": 60 } }, "vehicles": { "'": { "vehicle": "park_playground_vehicles", "chance": 1 } } } }, @@ -47,7 +46,6 @@ "weight": 700, "object": { "fill_ter": "t_pavement", - "rotation": [ 0, 3 ], "rows": [ " ", " |||||||||||||||||||||| ", @@ -89,7 +87,6 @@ "weight": 500, "object": { "fill_ter": "t_pavement", - "rotation": [ 0, 3 ], "rows": [ " ", " |||||||||||||||||||||& ", @@ -128,7 +125,6 @@ "weight": 300, "object": { "fill_ter": "t_region_groundcover_urban", - "rotation": [ 0, 3 ], "rows": [ "&bbb bbb&", " ,,,,,,,,,[,,,,,,,,, ", @@ -169,16 +165,15 @@ "weight": 500, "object": { "fill_ter": "t_grass", - "rotation": [ 0, 3 ], "rows": [ " ...... ", " zzzzzzzz....zzzzzzzz ", " z .. z ", - " z ,bTb,.. t *`* z ", + " z ,bTb,.. t **`** z ", " z t ,bTb,.. *```* z ", " z & ..........````` z ", " z ,,..,, .. *```* z ", - " z bb.,,, .. *`* z ", + " z bb.,,, .. **`** z ", " z TT.,,, .... . z ", ".z bb. .ssss. . t z.", ".. ,,. .ss~~ss. . ..", @@ -186,12 +181,12 @@ ".........s~~~~s.........", ".. . .ss~~ss. . ..", ".z . .ssss. . z.", - " z . .... . # z ", + " z . .... . z ", " z t . t .. . b z ", " z .. .. .. b z ", - " z fss............ # z ", + " z fss............ z ", " z sAs t .. z ", - " z fsf .. #bb# t z ", + " z fsf .. bb t z ", " z .. z ", " zzzzzzzz....zzzzzzzz ", " ...... " @@ -210,7 +205,6 @@ "weight": 500, "object": { "fill_ter": "t_grass", - "rotation": [ 0, 3 ], "rows": [ " , z ...... z , ", ", zzz .o..o. zzz, ", @@ -250,7 +244,6 @@ "weight": 500, "object": { "fill_ter": "t_region_groundcover_urban", - "rotation": [ 0, 3 ], "rows": [ "__________|++|__________", "__zzzzzzzz|,,|Pzzzzzzz__", @@ -364,8 +357,8 @@ { "chance": 10, "item": "field", "x": 2, "y": 16 }, { "chance": 10, "item": "field", "x": 1, "y": 13 } ], - "monsters": { "'": { "monster": "GROUP_PARK_SCENIC", "chance": 100 }, "s": { "monster": "GROUP_PARK_SCENIC", "chance": 40 } }, - "vehicles": { "'": { "vehicle": "park_playground_vehicles", "chance": 1 }, "p": { "vehicle": "suburban_home", "chance": 1 } } + "monsters": { "'": { "monster": "GROUP_PARK_SCENIC", "chance": 30 }, "s": { "monster": "GROUP_PARK_SCENIC", "chance": 20 } }, + "vehicles": { "s": { "vehicle": "park_playground_vehicles", "chance": 1 }, "p": { "vehicle": "suburban_home", "chance": 1 } } } }, { @@ -438,7 +431,7 @@ "___t'ggggggg$'''''q]]]]'", "'''''ghhhhhg$'b_''q+:x]'", "'''''ggggggg$'b'_'q]5X]'", - "'''_'ghhhhhg''b'_'q]]]]'", + "'''_'ggggggg''b'_'q]]]]'", "'''''ggggggg$'b'''q]5X]'", "'t'''ghhhhhg'_b_''q+:x]'", "_''''ggggggg$''''_q]]]]'", @@ -448,7 +441,7 @@ "'''''gmgmgmg$$ggggg'''''", "''''_gmmmgmg''ggggg$'b'_", "_''_'ggggggg$$ggggg''b''", - "'t'_'gmmmmmg$'ggggg$_b''", + "'t'_'ggggggg$'ggggg$_b''", "t''''ggggggg''ggggg''''_", "''t''''$'$'$''$'''$_'_''", "'_'_t'''_'_''__''_'''''_", @@ -493,11 +486,11 @@ "''''''''sss'''''u''_____", "'''''''''sss''''''___'u'", "'''0:::0''ss''''___'''''", - "''0|l:l|0'sss'___'''bbb'", + "''0ll:ll0'sss'___'''bbb'", "'':l:::l:'sss''_''''''''", "'':::::::'ssss'''''&c'''", "'':l:::l:_sssss'''''''''", - "''0|l:l|0'ss_sss'''bbb''", + "''0ll:ll0'ss_sss'''bbb''", "'''0:::0'sss''ssssssssss", "''''''''sss''''sssssssss", "'''''''ssss'''''sssd''''", diff --git a/data/json/mapgen_palettes/triffid.json b/data/json/mapgen_palettes/triffid.json index e7505d16bfa36..4f0b41f204241 100644 --- a/data/json/mapgen_palettes/triffid.json +++ b/data/json/mapgen_palettes/triffid.json @@ -3,7 +3,7 @@ "type": "palette", "id": "triffid", "terrain": { - " ": "t_region_groundcover_urban", + " ": [ "t_region_groundcover_urban", "t_mega_fern" ], "#": "t_triffid_bark_wall", "C": "t_barkfloor", "~": "t_triffid_wood_wall", @@ -29,6 +29,7 @@ "t_tree_willow", "t_tree_hickory", "t_tree_young", + "t_mega_fern", "t_underbrush", "t_shrub" ] diff --git a/data/json/martialarts.json b/data/json/martialarts.json index d9901e0affe9e..439537c2266fa 100644 --- a/data/json/martialarts.json +++ b/data/json/martialarts.json @@ -310,60 +310,7 @@ "tec_eskrima_low", "tec_eskrima_combination" ], - "weapons": [ - "2x4", - "bagh_nakha", - "baton-extended", - "bee_sting", - "bone_knife", - "bowling_pin", - "butterfly_swords", - "cane", - "copper_knife", - "cudgel", - "cu_pipe", - "diveknife", - "fighter_sting", - "glass_shiv", - "hammer", - "knife_baselard", - "knife_combat", - "knife_hunting", - "knife_trench", - "kukri", - "knife_rambo", - "knife_rm42", - "machete", - "machete_gimmick", - "makeshift_knife", - "makeshift_machete", - "pipe", - "pockknife", - "pool_cue", - "PR24-extended", - "primitive_knife", - "primitive_hammer", - "punch_dagger", - "scissors", - "screwdriver", - "sharp_toothbrush", - "shillelagh", - "shillelagh_fake", - "shillelagh_weighted", - "shocktonfa_off", - "shocktonfa_on", - "stick", - "survivor_machete", - "switchblade", - "tanto", - "tanto_inferior", - "tanto_fake", - "tonfa", - "tonfa_wood", - "umbrella", - "wasp_sting", - "wrench" - ] + "weapon_category": [ "KNIVES", "BATONS", "BLADED_FARMING", "CLAWS", "SHIVS" ] }, { "type": "martial_art", @@ -652,7 +599,7 @@ "description": "You are ready. Attack and claim your prey!\n\n+25% bonus to all damage.\nLasts 1 turn.", "skill_requirements": [ { "name": "unarmed", "level": 3 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_leopard_onmove1" ], + "required_buffs_all": [ "buff_leopard_onmove1" ], "buff_duration": 1, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 }, @@ -804,6 +751,7 @@ "unarmed_allowed": true, "melee_allowed": true, "buff_duration": 3, + "persists": true, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 0.67 }, { "stat": "damage", "type": "cut", "scale": 0.67 }, @@ -837,82 +785,7 @@ } ], "techniques": [ "tec_ninjutsu_swift", "tec_ninjutsu_takedown", "tec_ninjutsu_precise" ], - "weapons": [ - "arming_sword", - "arming_sword_inferior", - "arming_sword_fake", - "bio_blade_weapon", - "bio_claws_weapon", - "bokken", - "bokken_inferior", - "bokken_fake", - "bone_knife", - "broadsword", - "broadsword_inferior", - "broadsword_fake", - "butterfly_swords", - "cavalry_sabre", - "cavalry_sabre_fake", - "copper_knife", - "cutlass_fake", - "cutlass_inferior", - "cutlass", - "dao", - "diveknife", - "i_staff", - "jian", - "jian_inferior", - "jian_fake", - "katana", - "katana_inferior", - "katana_fake", - "kirpan", - "knife_baselard", - "knife_combat", - "knife_hunting", - "knife_rambo", - "knife_rm42", - "knife_trench", - "kirpan_cheap", - "kris", - "kukri", - "khopesh", - "longsword", - "longsword_inferior", - "longsword_fake", - "l-stick", - "l-stick_on", - "machete", - "machete_gimmick", - "makeshift_machete", - "makeshift_knife", - "nodachi", - "nodachi_inferior", - "nodachi_fake", - "q_staff", - "staff_sling", - "scimitar", - "scimitar_fake", - "scimitar_inferior", - "shillelagh", - "shillelagh_fake", - "shillelagh_weighted", - "shock_staff", - "sickle", - "survivor_machete", - "switchblade", - "sword_bayonet", - "sword_crude", - "sword_nail", - "sword_wood", - "sword_xiphos", - "tanto", - "tanto_inferior", - "tanto_fake", - "wakizashi", - "wakizashi_inferior", - "wakizashi_fake" - ] + "weapon_category": [ "MEDIUM_SWORDS", "LONG_SWORDS", "SHORT_SWORDS", "KNIVES", "QUARTERSTAVES", "BLADED_FARMING", "CLAWS" ] }, { "type": "martial_art", @@ -943,6 +816,7 @@ "description": "Blackened like darkness,\nnightmares approach from all sides.\nFlee at any cost!\n\n-5.0 Dodge skill.\nLasts 1 turn.", "melee_allowed": true, "buff_duration": 1, + "persists": true, "flat_bonuses": [ { "stat": "dodge", "scale": -5.0 } ] } ], @@ -954,6 +828,7 @@ "melee_allowed": true, "buff_duration": 1, "max_stacks": 5, + "persists": true, "flat_bonuses": [ { "stat": "dodge", "scale": -1.0 }, { "stat": "damage", "type": "cut", "scale": -1.0 }, @@ -1028,7 +903,7 @@ "description": "You got your opponent right where you want them!\n\n+20% bash damage.\nLasts 1 turn.", "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_pankration_ondodge" ], + "required_buffs_all": [ "buff_pankration_ondodge" ], "buff_duration": 1, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.2 } ] } diff --git a/data/json/martialarts_fictional.json b/data/json/martialarts_fictional.json index 6295fa0353c15..9e92bd3e0ef7e 100644 --- a/data/json/martialarts_fictional.json +++ b/data/json/martialarts_fictional.json @@ -202,6 +202,7 @@ "unarmed_allowed": true, "buff_duration": 6, "max_stacks": 6, + "persists": true, "flat_bonuses": [ { "stat": "armor", "type": "bash", "scale": -1.0 }, { "stat": "armor", "type": "cut", "scale": -1.0 }, @@ -459,7 +460,7 @@ "messages": [ "You lash out at %s with a Viper Bite", " lash out at %s with a Viper Bite" ], "skill_requirements": [ { "name": "unarmed", "level": 2 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_venom_snake_ondodge1" ], + "required_buffs_all": [ "buff_venom_snake_ondodge1" ], "crit_tec": true, "stun_dur": 2, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.33 } ] @@ -515,7 +516,7 @@ "messages": [ "You stun %s with your Pincer Fist", " jabs %s with a Pincer Fist" ], "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_scorpion_onmove" ], + "required_buffs_all": [ "buff_scorpion_onmove" ], "stun_dur": 1, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ] }, diff --git a/data/json/monsters/feral_humans.json b/data/json/monsters/feral_humans.json index fc2f1e2edc547..d1323a5d0cbef 100644 --- a/data/json/monsters/feral_humans.json +++ b/data/json/monsters/feral_humans.json @@ -180,7 +180,7 @@ "move_cost": 150, "gun_type": "m9", "ammo_type": "9mm", - "fake_skills": [ [ "gun", 1 ], [ "handgun", 2 ] ], + "fake_skills": [ [ "gun", 1 ], [ "pistol", 2 ] ], "fake_dex": 8, "fake_per": 10, "ranges": [ [ 0, 14, "DEFAULT" ] ], diff --git a/data/json/monsters/misc.json b/data/json/monsters/misc.json index b1b3b60e45d67..f66ce145667d6 100644 --- a/data/json/monsters/misc.json +++ b/data/json/monsters/misc.json @@ -28,6 +28,46 @@ "regeneration_modifiers": [ [ "onfire", -5 ], [ "corroding", 5 ] ], "flags": [ "IMMOBILE", "NOT_HALLUCINATION", "FILTHY" ] }, + { + "id": "weakpoint_mon", + "type": "MONSTER", + "name": { "str": "weakpoint monster" }, + "description": "This monster exists only for weakpoint testing purposes.", + "default_faction": "", + "species": [ "ZOMBIE" ], + "volume": "62500 ml", + "weight": "81500 g", + "hp": 10000, + "speed": 100, + "material": [ "flesh" ], + "symbol": "X", + "color": "white", + "aggression": 100, + "morale": 100, + "melee_cut": 0, + "vision_day": 1, + "armor_bullet": 100, + "weakpoints": [ + { + "name": "the belly", + "armor_mult": { "bullet": 0.5 }, + "armor_penalty": { "bullet": 25 }, + "coverage": 25, + "required_effects": [ "stunned" ] + }, + { + "name": "the knee", + "armor_mult": { "bullet": 0.0 }, + "armor_penalty": { "bullet": 0 }, + "damage_mult": { "all": 2.0 }, + "coverage": 25, + "effects": [ { "effect": "stunned", "duration": [ 1, 3 ], "chance": 50, "message": "The %s is disorientated." } ] + } + ], + "harvest": "exempt", + "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, + "flags": [ "IMMOBILE", "NOT_HALLUCINATION", "FILTHY" ] + }, { "id": "mon_dragon_dummy", "type": "MONSTER", diff --git a/data/json/mutations/cybernetic_traits.json b/data/json/mutations/cybernetic_traits.json new file mode 100644 index 0000000000000..532a387aa8ca5 --- /dev/null +++ b/data/json/mutations/cybernetic_traits.json @@ -0,0 +1,49 @@ +[ + { + "type": "mutation_type", + "id": "Cyberframe" + }, + { + "type": "mutation_type", + "id": "Cybernetic" + }, + { + "type": "mutation", + "id": "CBM_Interface", + "name": { "str": "Standard Neurobionic Interface" }, + "points": 0, + "description": "You have a matrix in your central nervous system that acts as a universal control and installation bus for compact bionic modules.", + "valid": false, + "purifiable": false, + "types": [ "Cybernetic" ] + }, + { + "type": "mutation", + "id": "EXODII_BODY_1", + "flags": [ "Exodii_Body" ], + "name": { "str": "Exodii cyborg framework - style 1a" }, + "points": 0, + "visibility": 4, + "ugliness": 4, + "mixed_effect": true, + "description": "Your brain and some of your organs are shielded in a nice tough bipedal walker frame.", + "valid": false, + "purifiable": false, + "types": [ "Cyberframe", "Cybernetic" ], + "passive_mods": { "str_mod": 4, "dex_mod": 4 }, + "hp_adjustment": 20, + "restricts_gear": [ "torso", "leg_l", "leg_r", "arm_l", "arm_r", "hand_l", "hand_r", "head", "foot_l", "foot_r" ], + "armor": [ + { + "parts": [ "torso", "head", "arm_l", "arm_r", "hand_l", "hand_r", "leg_l", "leg_r", "foot_l", "foot_r", "mouth" ], + "cut": 30, + "bash": 30, + "stab": 30, + "bullet": 25, + "acid": 25, + "electric": 5 + } + ], + "weight_capacity_modifier": 3 + } +] diff --git a/data/json/mutations/mutation_category.json b/data/json/mutations/mutation_category.json index c4168ae7ae02e..8d672a041e415 100644 --- a/data/json/mutations/mutation_category.json +++ b/data/json/mutations/mutation_category.json @@ -97,7 +97,7 @@ "threshold_mut": "THRESH_BEAST", "mutagen_message": "Your heart races and you see blood for a moment.", "iv_message": "Your heart races wildly as the injection takes hold.", - "memorial_message": "Embraced his bestial nature." + "memorial_message": "Embraced their bestial nature." }, { "type": "mutation_category", diff --git a/data/json/mutations/mutation_ordering.json b/data/json/mutations/mutation_ordering.json index 1e243ed177ac3..378d6da5f4b0f 100644 --- a/data/json/mutations/mutation_ordering.json +++ b/data/json/mutations/mutation_ordering.json @@ -205,7 +205,8 @@ { "id": [ "PROF_CYBERCOP", "PROF_FED", "PROF_PD_DET", "PROF_POLICE", "PROF_SWAT", "PHEROMONE_INSECT" ], "order": 8500 - } + }, + { "id": [ "EXODII_BODY_1" ], "order": 10000 } ] } ] diff --git a/data/json/mutations/mutations.json b/data/json/mutations/mutations.json index 7bf6f1d6e70f0..e3ea7e749559d 100644 --- a/data/json/mutations/mutations.json +++ b/data/json/mutations/mutations.json @@ -27,13 +27,11 @@ "triggers": [ [ { - "trigger_type": "MOOD", - "threshold_low": 20, + "condition": { "compare_int": [ { "u_val": "morale" }, { "const": 20 } ], "op": ">" }, "msg_on": { "text": "You're so happy, you're glowing!", "rating": "mixed" } }, { - "trigger_type": "HUNGER", - "threshold_low": 110, + "condition": { "compare_int": [ { "u_val": "hunger" }, { "const": 110 } ], "op": ">" }, "msg_on": { "text": "You're feeling hungry; time to lure some prey!", "rating": "mixed" } } ] @@ -50,10 +48,12 @@ "valid": false, "triggers": [ [ - { "trigger_type": "MOOD", "threshold_low": 20, "msg_off": { "text": "Your glow fades.", "rating": "mixed" } }, { - "trigger_type": "HUNGER", - "threshold_low": 110, + "condition": { "compare_int": [ { "u_val": "morale" }, { "const": 20 } ], "op": ">" }, + "msg_off": { "text": "Your glow fades.", "rating": "mixed" } + }, + { + "condition": { "compare_int": [ { "u_val": "hunger" }, { "const": 110 } ], "op": ">" }, "msg_off": { "text": "Your glow fades.", "rating": "mixed" } } ] @@ -137,16 +137,18 @@ "triggers": [ [ { - "trigger_type": "MOOD", - "threshold_high": -50, + "condition": { "compare_int": [ { "u_val": "morale" }, { "const": -50 } ], "op": "<" }, "msg_on": { "text": "Everything is terrible and this makes you so ANGRY!", "rating": "mixed" } } ], [ { - "trigger_type": "TIME", - "threshold_low": 21, - "threshold_high": 6, + "condition": { + "or": [ + { "compare_int": [ { "u_val": "hour" }, { "const": 6 } ], "op": "<" }, + { "compare_int": [ { "u_val": "hour" }, { "const": 21 } ], "op": ">" } + ] + }, "msg_on": { "text": "Everything is terrible and this makes you so ANGRY!", "rating": "mixed" } } ] @@ -165,9 +167,12 @@ "triggers": [ [ { - "trigger_type": "TIME", - "threshold_low": 6, - "threshold_high": 21, + "condition": { + "and": [ + { "compare_int": [ { "u_val": "hour" }, { "const": 6 } ], "op": ">" }, + { "compare_int": [ { "u_val": "hour" }, { "const": 21 } ], "op": "<" } + ] + }, "msg_on": { "text": "As the morning comes, you return back to normal.", "rating": "good" } } ] @@ -267,7 +272,10 @@ "leads_to": [ "NIGHT_RAIDER" ], "category": [ "INSECT", "TROGLOBITE", "RAT" ], "enchantments": [ - { "condition": "UNDERGROUND", "values": [ { "value": "BONUS_BLOCK", "add": 1 }, { "value": "BONUS_DODGE", "add": 1 } ] } + { + "condition": { "compare_int": [ { "u_val": "pos_z" }, { "const": 0 } ], "op": "<" }, + "values": [ { "value": "BONUS_BLOCK", "add": 1 }, { "value": "BONUS_DODGE", "add": 1 } ] + } ] }, { @@ -279,7 +287,7 @@ "category": [ "TROGLOBITE" ], "enchantments": [ { - "condition": "NIGHT", + "condition": { "not": "is_day" }, "values": [ { "value": "FOOTSTEP_NOISE", "multiply": 0.5 }, { "value": "ATTACK_NOISE", "multiply": 0.8 } ] } ] @@ -354,7 +362,12 @@ "description": "You always sleep better surrounded by earth.", "cancels": [ "INSOMNIA" ], "category": [ "BATRACHIAN" ], - "enchantments": [ { "condition": "UNDERGROUND", "values": [ { "value": "SLEEPY", "add": 20 } ] } ] + "enchantments": [ + { + "condition": { "compare_int": [ { "u_val": "pos_z" }, { "const": 0 } ], "op": "<" }, + "values": [ { "value": "SLEEPY", "add": 20 } ] + } + ] }, { "type": "mutation", @@ -365,7 +378,7 @@ "cancels": [ "INSOMNIA" ], "threshreq": [ "THRESH_FISH", "THRESH_BATRACHIAN" ], "category": [ "BATRACHIAN", "FISH" ], - "enchantments": [ { "condition": "UNDERWATER", "values": [ { "value": "SLEEPY", "add": 40 } ] } ] + "enchantments": [ { "condition": "u_is_underwater", "values": [ { "value": "SLEEPY", "add": 40 } ] } ] }, { "type": "mutation", diff --git a/data/json/npcs/exodii/exodii_merchant_definitions.json b/data/json/npcs/exodii/exodii_merchant_definitions.json new file mode 100644 index 0000000000000..e7b37284c49a7 --- /dev/null +++ b/data/json/npcs/exodii/exodii_merchant_definitions.json @@ -0,0 +1,54 @@ +[ + { + "type": "npc", + "id": "exodii_merchant", + "name_suffix": "Cyborg", + "class": "NC_EXODII_TYPE_1_Merchant", + "name_unique": "Rubik", + "attitude": 0, + "mission": 3, + "chat": "TALK_EXODII_MERCHANT", + "faction": "exodii" + }, + { + "type": "npc_class", + "id": "NC_EXODII_TYPE_1_Merchant", + "name": { "str": "Cyborg, type 1" }, + "job_description": "I'm a cyborg.", + "traits": [ { "trait": "EXODII_BODY_1" } ], + "common": false, + "bonus_str": { "rng": [ 0, 6 ] }, + "bonus_dex": { "rng": [ 0, 6 ] }, + "bonus_int": { "rng": [ 0, 2 ] }, + "bonus_per": { "rng": [ 0, 4 ] }, + "shopkeeper_item_group": "EXODII_Shop_Tier0", + "carry_override": "NC_EXODII_TYPE_1_carried", + "worn_override": "EMPTY_GROUP", + "skills": [ + { + "skill": "ALL", + "level": { "mul": [ { "one_in": 3 }, { "sum": [ { "dice": [ 2, 2 ] }, { "constant": 0 }, { "one_in": 4 } ] } ] } + }, + { "skill": "mechanics", "bonus": { "one_in": 2 } }, + { "skill": "electronics", "bonus": { "rng": [ 0, 2 ] } }, + { "skill": "gun", "bonus": { "rng": [ 2, 4 ] } }, + { "skill": "rifle", "bonus": { "rng": [ 2, 4 ] } }, + { "skill": "unarmed", "bonus": { "rng": [ 2, 4 ] } }, + { "skill": "speech", "bonus": { "rng": [ 5, 8 ] } } + ] + }, + { + "type": "item_group", + "id": "NC_EXODII_TYPE_1_carried", + "//": "Weapon for rubik.", + "items": [ { "item": "pamd68rubik", "ammo-item": "123ln", "charges": 10 } ] + }, + { + "id": "pamd68rubik", + "copy-from": "pamd68", + "type": "GUN", + "name": { "str": "Rubik's PA md. 68 Battle Rifle" }, + "description": "The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n\nThis particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel.", + "flags": [ "TRADER_AVOID" ] + } +] diff --git a/data/json/npcs/exodii/exodii_merchant_itemlist.json b/data/json/npcs/exodii/exodii_merchant_itemlist.json new file mode 100644 index 0000000000000..f1703056eaf4a --- /dev/null +++ b/data/json/npcs/exodii/exodii_merchant_itemlist.json @@ -0,0 +1,148 @@ +[ + { + "type": "item_group", + "id": "EXODII_Shop_Tier0", + "//": "This stuff should be available in the exodii store from the start.", + "subtype": "collection", + "items": [ + { "item": "pamd68", "prob": 60, "count": [ 1, 2 ] }, + { "item": "pamd71z", "prob": 50, "count": [ 1, 2 ] }, + { "item": "exodiiminimag", "prob": 60, "charges": 0, "count": [ 1, 4 ] }, + { "item": "exodiiBRmag", "prob": 50, "charges": 0, "count": [ 1, 4 ] }, + { "item": "123ln", "container-item": "box_small", "prob": 60, "count": [ 1, 4 ], "sealed": true }, + [ "box_medium", 75 ], + [ "box_large", 25 ], + [ "pipe_fittings", 70 ], + [ "goggles_welding", 50 ], + [ "welding_book", 10 ], + [ "welding_mask", 30 ], + [ "jerrycan", 10 ], + [ "jerrycan_big", 10 ], + [ "metal_tank", 8 ], + [ "metal_tank_little", 8 ], + [ "cu_pipe", 5 ], + [ "eyedrops", 4 ], + [ "plastic_sheet", 10 ] + ] + }, + { + "type": "item_group", + "id": "EXODII_CBM_Store_Tier1", + "//": "These CBMs should be available in the exodii store from the start.", + "items": [ + [ "bio_watch", 10 ], + [ "bio_syringe", 10 ], + [ "bio_power_storage", 30 ], + [ "bio_flashlight", 10 ], + [ "bio_lighter", 10 ], + [ "bio_magnet", 5 ], + [ "bio_alarm", 10 ], + [ "bio_batteries", 10 ], + [ "bio_sunglasses", 10 ], + [ "bio_cable", 5 ], + [ "bio_tattoo_led", 10 ], + [ "bio_meteorologist", 10 ], + [ "bio_soporific", 3 ], + [ "bio_fingerhack", 2 ], + [ "bio_geiger", 5 ], + [ "bio_nostril", 1 ], + [ "bio_voice", 10 ] + ] + }, + { + "type": "item_group", + "id": "EXODII_CBM_Store_Tier2", + "//": "These CBMs should be available in the exodii store after at least 2 weeks and 10 trade interactions on separate days.", + "items": [ + [ "bio_tools", 10 ], + [ "bio_ethanol", 10 ], + [ "bio_eye_optic", 10 ], + [ "bio_surgical_razor", 10 ], + [ "bio_remote", 10 ], + [ "bio_torsionratchet", 10 ], + [ "bio_ears", 10 ], + [ "bio_fuel_cell_gasoline", 10 ], + [ "bio_armor_arms", 10 ], + [ "bio_armor_eyes", 10 ], + [ "bio_armor_head", 10 ], + [ "bio_armor_legs", 10 ], + [ "bio_armor_torso", 10 ], + [ "bio_digestion", 10 ], + [ "bio_infrared", 10 ], + [ "bio_lockpick", 10 ], + [ "bio_night_vision", 10 ], + [ "bio_power_storage_mkII", 10 ], + [ "bio_scent_mask", 10 ], + [ "bio_jointservo", 10 ], + [ "bio_taste_blocker", 10 ] + ] + }, + { + "type": "item_group", + "id": "EXODII_CBM_Store_Tier3", + "//": "These CBMs should be available in the exodii store after at least 4 weeks and 20 trade interactions on separate days.", + "items": [ + [ "bio_blood_filter", 10 ], + [ "bio_purifier", 10 ], + [ "bio_heatsink", 10 ], + [ "bio_climate", 10 ], + [ "bio_leukocyte", 10 ], + [ "bio_adrenaline", 10 ], + [ "bio_blood_anal", 10 ], + [ "bio_carbon", 10 ], + [ "bio_evap", 10 ], + [ "bio_face_mask", 10 ], + [ "bio_gills", 10 ], + [ "bio_hydraulics", 10 ], + [ "bio_membrane", 10 ], + [ "bio_painkiller", 10 ], + [ "bio_radscrubber", 10 ], + [ "bio_weight", 10 ] + ] + }, + { + "type": "item_group", + "id": "EXODII_CBM_Store_Tier4", + "//": "These CBMs should be available in the exodii store after at least 8 weeks and 50 trade interactions on separate days.", + "items": [ + [ "bio_faraday", 10 ], + [ "bio_metabolics", 10 ], + [ "bio_ground_sonar", 10 ], + [ "bio_recycler", 10 ], + [ "bio_uncanny_dodge", 10 ], + [ "bio_eye_enhancer", 10 ], + [ "bio_dex_enhancer", 10 ], + [ "bio_heat_absorb", 10 ], + [ "bio_int_enhancer", 10 ], + [ "bio_memory", 10 ], + [ "bio_speed", 10 ], + [ "bio_str_enhancer", 10 ], + [ "bio_water_extractor", 10 ], + [ "bio_synaptic_regen", 10 ] + ] + }, + { + "type": "item_group", + "id": "EXODII_CBM_unlocks_weapons_light", + "//": "To get items from this group in the exodii CBM store requires finishing missions for their faction and earning their trust", + "items": [ [ "bio_blade", 10 ], [ "bio_claws", 10 ], [ "bio_cqb", 10 ], [ "bio_flashbang", 10 ], [ "bio_razors", 10 ] ] + }, + { + "type": "item_group", + "id": "EXODII_CBM_unlocks_weapons_medium", + "//": "To get items from this group in the exodii CBM store requires finishing missions for their faction and earning their trust", + "items": [ [ "bio_resonator", 10 ], [ "bio_targeting", 15 ], [ "bio_shotgun", 10 ], [ "bio_laser", 5 ], [ "bio_shock", 10 ] ] + }, + { + "type": "item_group", + "id": "EXODII_CBM_unlocks_weapons_heavy", + "//": "To get items from this group in the exodii CBM store requires finishing missions for their faction and earning their trust", + "items": [ + [ "bio_chain_lightning", 15 ], + [ "bio_emp", 1 ], + [ "bio_emp_armgun", 1 ], + [ "bio_railgun", 15 ], + [ "bio_shockwave", 10 ] + ] + } +] diff --git a/data/json/npcs/exodii/exodii_merchant_missions.json b/data/json/npcs/exodii/exodii_merchant_missions.json new file mode 100644 index 0000000000000..198eda432589f --- /dev/null +++ b/data/json/npcs/exodii/exodii_merchant_missions.json @@ -0,0 +1,25 @@ +[ + { + "id": "RUBIK_ANUS_FETICK", + "type": "mission_definition", + "name": { "str": "Bring 6L of anesthetic to Rubik" }, + "goal": "MGOAL_FIND_ITEM", + "difficulty": 2, + "value": 240, + "item": "anesthetic", + "count": 840, + "origins": [ "ORIGIN_SECONDARY" ], + "dialogue": { + "describe": "If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them anus-feticks, one for your thinkin'-meat an' one for our stock.", + "offer": "If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them anus-feticks, one for your thinkin'-meat an' one for our stock.", + "accepted": "King's own luck!", + "rejected": "That be a choice an' you can tass. Come back to this'n if you like.", + "advice": "Check round the chirurgery an' such, I'd razz.", + "inquire": "Us'n waits patient-like for those kits.", + "success": "Fine an' fine. We can pass it in when you like.", + "success_lie": "Fine an' fine. We can pass it in when you like.", + "failure": "Fine an' fine. Come back to this'n if you like to try again." + }, + "end": { "effect": [ { "u_add_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" } ] } + } +] diff --git a/data/json/npcs/exodii/exodii_merchant_talk.json b/data/json/npcs/exodii/exodii_merchant_talk.json new file mode 100644 index 0000000000000..7a9d532561f09 --- /dev/null +++ b/data/json/npcs/exodii/exodii_merchant_talk.json @@ -0,0 +1,711 @@ +[ + { + "//": "table of contents: common response strings appearing in this list of topics", + "id": [ + "TALK_EXODII_MERCHANT_New", + "TALK_EXODII_MERCHANT_Talk", + "TALK_EXODII_MERCHANT_Base2", + "TALK_EXODII_MERCHANT_Dialect_Anglic", + "TALK_EXODII_MERCHANT_DoneTrade", + "TALK_EXODII_MERCHANT_Exodus2", + "TALK_EXODII_MERCHANT_ExodizeNope", + "TALK_EXODII_MERCHANT_Survival2" + ], + "type": "talk_topic", + "responses": [ + { "text": "What've you got for trade?", "effect": "start_trade", "topic": "TALK_EXODII_MERCHANT_DoneTrade" }, + { "text": "I don't understand a word you're saying.", "topic": "TALK_EXODII_MERCHANT_Dialect" }, + { "text": "Are you some kind of robot?", "topic": "TALK_EXODII_MERCHANT_Robot" }, + { + "text": "[int 9] You're called exodii? Does that mean you were driven out of your home?", + "condition": { "u_has_intelligence": 9 }, + "topic": "TALK_EXODII_MERCHANT_Exodii" + }, + { + "text": "What are you doing here?", + "topic": "TALK_EXODII_MERCHANT_Purpose", + "condition": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + }, + { "text": "What kind of place is this?", "topic": "TALK_EXODII_MERCHANT_Base" }, + { + "text": "[per 6] Some of this tech looks… weird.", + "topic": "TALK_EXODII_MERCHANT_Tech", + "condition": { + "and": [ { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" }, { "u_has_perception": 6 } ] + } + }, + { + "text": "You wanted to ask me some questions earlier, and I think I was rude about it. What did you want to ask?", + "condition": { + "and": [ + { "u_has_var": "rubik_intro", "type": "dialogue", "context": "started", "value": "yes" }, + { "not": { "u_has_var": "rubik_intro", "type": "dialogue", "context": "midpoint", "value": "yes" } } + ] + }, + "topic": "TALK_EXODII_MERCHANT_Talk_Intro1b" + }, + { + "text": "Can we continue our conversation about your arrival in this world?", + "condition": { + "and": [ + { "u_has_var": "rubik_intro", "type": "dialogue", "context": "started", "value": "yes" }, + { "u_has_var": "rubik_intro", "type": "dialogue", "context": "midpoint", "value": "yes" }, + { "not": { "u_has_var": "rubik_intro", "type": "dialogue", "context": "completed", "value": "yes" } } + ] + }, + "topic": "TALK_EXODII_MERCHANT_Talk_Intro2a" + }, + { + "text": "Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you know.", + "condition": { "u_has_trait": "DEBUG_NODMG" }, + "topic": "TALK_EXODII_MERCHANT_ExodizeTest" + }, + { + "text": "I think I'm ready to try becoming a cyborg now.", + "condition": { + "and": [ + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" }, + { "not": { "u_has_trait": "CBM_Interface" } } + ] + }, + "topic": "TALK_EXODII_MERCHANT_ExodizeMe2" + }, + { + "text": "Any chance you could help me get some of those sweet bionic upgrades?", + "topic": "TALK_EXODII_MERCHANT_Exodize", + "condition": { + "and": [ + { "u_has_var": "u_knows_about_exodization", "type": "knowledge", "context": "exodiilore", "value": "yes" }, + { + "not": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" }, + { "u_has_trait": "CBM_Interface" } + ] + } + } + ] + } + } + ] + }, + { + "id": "TALK_EXODII_MERCHANT", + "type": "talk_topic", + "dynamic_line": { + "u_has_effect": "u_exodii_interaction_timer_short", + "yes": [ "Back in a blink and a whiff, eh?", "Forgot sommat?", "Ah, a returnin', an I'm ken." ], + "no": { + "u_has_var": "u_met_Rubik", + "type": "general", + "context": "meeting", + "value": "yes", + "yes": [ + "And a fine return, matey.", + "Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?", + "Bright and sunny, you're back! I got goods for ye, if you got goods for me." + ], + "no": "Oy, you ain't dead. Lookin' t'trade?" + } + }, + "speaker_effect": [ + { + "sentinel": "interaction_timer_short", + "condition": { "not": { "u_has_effect": "u_exodii_interaction_timer_short" } }, + "//": "Just coming and saying hi to Rubik regularly will give you a small boost to trust.", + "effect": [ + { "u_add_effect": "u_exodii_interaction_timer_short", "duration": "30 hours" }, + { "u_adjust_var": "exodii_trust", "type": "counter", "context": "exodii", "adjustment": 1 } + ] + }, + { + "sentinel": "interaction_timer_long", + "condition": { "not": { "u_has_effect": "u_exodii_interaction_timer_long" } }, + "//": "Gives you a less frequent boost to trust for regular interactions with the exodii.", + "effect": [ + { "u_add_effect": "u_exodii_interaction_timer_long", "duration": "7 days" }, + { "u_adjust_var": "exodii_trust", "type": "counter", "context": "exodii", "adjustment": 1 } + ] + }, + { + "//": "Check to see if you've sold enough for Rubik's trust in you to increase a bit", + "condition": { + "and": [ + { "compare_int": [ { "u_val": "sold" }, { "const": 20 } ], "op": ">=" }, + { "u_compare_var": "exodii_trust", "type": "counter", "context": "exodii", "op": "<=", "value": 20 } + ] + }, + "effect": [ + { "arithmetic": [ { "u_val": "sold" }, "-=", { "const": 20 } ] }, + { "u_adjust_var": "exodii_trust", "type": "counter", "context": "exodii", "adjustment": 1 } + ] + } + ], + "responses": [ + { + "text": "Who are you? What is this place?", + "topic": "TALK_EXODII_MERCHANT_New", + "condition": { "not": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } }, + "effect": { "u_add_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + }, + { + "text": "I've brought those anaesthetic kits for you. Can you help me out?", + "condition": { "and": [ { "u_has_items": { "item": "anesthetic_kit", "count": 2 } }, { "u_has_mission": "RUBIK_ANUS_FETICK" } ] }, + "effect": [ { "u_sell_item": "anesthetic_kit", "count": 2 }, { "finish_mission": "RUBIK_ANUS_FETICK", "success": true } ], + "topic": "TALK_EXODII_MERCHANT_ExodizeMe2" + }, + { + "text": "I think I'm ready to try becoming a cyborg now.", + "condition": { + "and": [ + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" }, + { "not": { "u_has_trait": "CBM_Interface" } } + ] + }, + "topic": "TALK_EXODII_MERCHANT_ExodizeMe2" + }, + { + "text": "Any chance you could help me get some of those sweet bionic upgrades?", + "topic": "TALK_EXODII_MERCHANT_Exodize", + "condition": { + "and": [ + { "u_has_var": "u_knows_about_exodization", "type": "knowledge", "context": "exodiilore", "value": "yes" }, + { + "not": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" } + ] + } + } + ] + } + }, + { + "text": "What've you got for trade?", + "effect": "start_trade", + "topic": "TALK_EXODII_MERCHANT_DoneTrade", + "condition": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + }, + { + "text": "Actually, I wanted to talk.", + "topic": "TALK_EXODII_MERCHANT_Talk", + "condition": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + }, + { + "text": "Hell no, I'm out of here.", + "condition": { "not": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } }, + "topic": "TALK_DONE" + }, + { + "text": "Just popping in to say hi. See you later, alligator.", + "condition": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" }, + "topic": "TALK_DONE" + } + ] + }, + { + "type": "effect_type", + "id": "u_exodii_interaction_timer_short", + "//": "This prevents you from building trust with the exodii too quickly by just talking to them constantly, and tells Rubik to use a different greeting because he saw you very recently." + }, + { + "type": "effect_type", + "id": "u_exodii_interaction_timer_long", + "//": "This prevents you from building trust with the exodii too quickly by just talking to them constantly." + }, + { + "id": "TALK_EXODII_MERCHANT_New", + "type": "talk_topic", + "dynamic_line": "Us call us the exodii, eh? An' other things, but that'n's good. This're our home, such as it. This'n's monicked as Rubik, and tassed with a trade an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it be.", + "//~": "We call ourselves the exodii, eh? And other things, but that's good. This is our home, such as it is. I'm called Rubik, and I've been assigned to trade with you. Are you looking to trade? We're always looking for scrap, metal and more.", + "responses": [ { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } ] + }, + { + "id": "TALK_EXODII_MERCHANT_DoneTrade", + "type": "talk_topic", + "dynamic_line": [ "Good an' fine, then.", "Have it as ye'll see.", "For a card an' a wink, eh?" ], + "speaker_effect": { + "condition": { + "and": [ + { "compare_int": [ { "u_val": "sold" }, { "const": 20 } ], "op": ">=" }, + { "u_compare_var": "exodii_trust", "type": "counter", "context": "exodii", "op": "<=", "value": 20 } + ] + }, + "effect": [ + { "arithmetic": [ { "u_val": "sold" }, "-=", { "const": 20 } ] }, + { "u_adjust_var": "exodii_trust", "type": "counter", "context": "exodii", "adjustment": 1 } + ] + }, + "responses": [ + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk", + "type": "talk_topic", + "dynamic_line": { + "u_has_var": "rubik_intro", + "type": "dialogue", + "context": "started", + "value": "yes", + "yes": "Sure as you c'n try. Us're not the greatest yarker, nor do it all for gratis, kennit.", + "no": "Oy, c'n I bark you summat first?" + }, + "//~": "Yes: You can surely try. I'm not the greatest speaker, and I won't just chat forever for free, you know. No: Hey, can I ask you something first?", + "speaker_effect": { "effect": { "u_add_var": "rubik_intro", "type": "dialogue", "context": "started", "value": "yes" } }, + "responses": [ + { "text": "Like, ask me a question? Sure, I guess.", "topic": "TALK_EXODII_MERCHANT_Talk_Intro1a" }, + { + "text": "No. I'm too busy to answer your questions, you're supposed to answer mine. I guess I'll head out.", + "topic": "TALK_DONE" + } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro1a", + "type": "talk_topic", + "dynamic_line": "'Ow long's it been since the mess happened?", + "responses": [ { "text": "[Tell them]", "topic": "TALK_EXODII_MERCHANT_Talk_Intro2" } ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro1b", + "type": "talk_topic", + "dynamic_line": "Thank ye. When you an' Rubik first met, howw long'd it been since the mess begun?", + "responses": [ { "text": "[Tell them]", "topic": "TALK_EXODII_MERCHANT_Talk_Intro2" } ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro2", + "type": "talk_topic", + "dynamic_line": "Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be right happy. This is their first jump, and it's a flappin' duck.", + "speaker_effect": { "effect": { "u_add_var": "rubik_intro", "type": "dialogue", "context": "midpoint", "value": "yes" } }, + "responses": [ + { "text": "What makes it such a good jump?", "topic": "TALK_EXODII_MERCHANT_Talk_Intro3" }, + { "text": "Who is Benzete?", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete1" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro2a", + "type": "talk_topic", + "dynamic_line": "So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump.", + "responses": [ + { "text": "What makes it such a good jump?", "topic": "TALK_EXODII_MERCHANT_Talk_Intro3" }, + { "text": "Who is Benzete?", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete1" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro3", + "type": "talk_topic", + "dynamic_line": "Us gotta leave the old world afore it's worn right to the gums, an y'ken, and find a nice twitchy one on t'other side. Your deadland be a brand shiny", + "responses": [ + { "text": "I'm not following that at all.", "topic": "TALK_EXODII_MERCHANT_Talk_Intro3a" }, + { + "text": "[int 9] So you mean, we have a nice, freshly dead world for you to visit?", + "condition": { "u_has_intelligence": 9 }, + "topic": "TALK_EXODII_MERCHANT_Talk_Intro4b" + }, + { "text": "Who is Benzete?", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete1" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro3a", + "type": "talk_topic", + "dynamic_line": "Neverken. Right and so, the enemy is new here, and us'n have a few good hours in the sun beforenext the jump.", + "responses": [ + { + "text": "Oh, you mean you got here early in the cataclysm. Why is that so good?", + "topic": "TALK_EXODII_MERCHANT_Talk_Intro3" + }, + { "text": "Who is Benzete?", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete1" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro4a", + "type": "talk_topic", + "dynamic_line": "That be a part an' switch, but this be'n nice for all, overtop the last jump by heads. Otherlands with fusillies and mobbings, us'n gets a fine change on that.", + "responses": [ + { "text": "I don't know what fusillies and mobbings are.", "topic": "TALK_EXODII_MERCHANT_Talk_Intro5" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro4b", + "type": "talk_topic", + "dynamic_line": "You kennit rightly! That and this be'n nice for all, overtop the last jump by heads. Otherlands with fusillies and mobbings, us'n gets a fine change on that.", + "responses": [ + { + "text": "I don't know what fusillies and mobbings are.", + "condition": { "not": { "u_has_var": "fussily", "type": "dictionary", "context": "known", "value": "yes" } }, + "topic": "TALK_EXODII_MERCHANT_Talk_Intro5" + }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro5", + "type": "talk_topic", + "dynamic_line": "Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon, shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' metal, pushed by burnin' and boomin' from wit'in, kennit?", + "responses": [ + { + "text": "[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?", + "condition": { "u_has_intelligence": 7 }, + "effect": { "u_add_var": "fussily", "type": "dictionary", "context": "known", "value": "yes" }, + "topic": "TALK_EXODII_MERCHANT_Talk_Intro6" + }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_Intro6", + "type": "talk_topic", + "dynamic_line": "Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for crossin' the nation.", + "speaker_effect": { "effect": { "u_add_var": "rubik_intro", "type": "dialogue", "context": "completed", "value": "yes" } }, + "responses": [ + { "text": "Who is benzete?", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete1" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_IntroBenzete1", + "type": "talk_topic", + "dynamic_line": "Them's an otherlander from thrice jumps an' change, wide as the sky. They's got happily on sommat for the tracking, you ken?", + "responses": [ + { "text": "I… didn't really follow that.", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete2" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_IntroBenzete2", + "type": "talk_topic", + "dynamic_line": "Hmm. They… planned out the last jump? Like as an apprentice to the ol' sexten.", + "responses": [ + { "text": "Oh, like a navigator?", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete3" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Talk_IntroBenzete3", + "type": "talk_topic", + "dynamic_line": "Sure an' that's a fine enough word, an I'm ken.", + "responses": [ + { + "text": "You said this was an especially good jump?", + "condition": { "not": { "u_has_var": "rubik_intro", "type": "dialogue", "context": "completed", "value": "yes" } }, + "topic": "TALK_EXODII_MERCHANT_Talk_Intro3" + }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I've gotta go. See you later, Rubik.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Aliens", + "type": "talk_topic", + "dynamic_line": "Yeah, you could call us as it. Us're from otherlands mostlike. Not otherworlds though. Too risky bringin' them squelchies into the fold.", + "responses": [ + { "text": "I don’t know the difference between otherlands and otherworlds.", "topic": "TALK_EXODII_MERCHANT_Aliens2" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Aliens2", + "type": "talk_topic", + "dynamic_line": "Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers you got round and here, eh? Walkin' plants and talkin' mushrooms and whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my Earth be differed. So you's shouldno be asked what the exodii is doin' on Earth, because some is feelin' of us fine an' fine at home, an I'm ken. You's should be askin' what the exodii is doin' razzin up your green and brown.", + "responses": [ + { "text": "OK then, what are you doing 'razzing up our green and brown'.", "topic": "TALK_EXODII_MERCHANT_Purpose2" }, + { "text": "Tell me about your own world.", "topic": "TALK_EXODII_MERCHANT_Home" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Home", + "type": "talk_topic", + "dynamic_line": "*becomes distant for a moment. \"Ah. Home. It were a long time gone, kennit. Your'n be not too far. I… don't think I want to talk 'bout it. Too much metal atwixt now an' then.", + "responses": [ + { "text": "That's rough, maybe we should talk about something else.", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "What are you doing 'razzing up our green and brown'.", "topic": "TALK_EXODII_MERCHANT_Purpose2" }, + { "text": "How did you come to be made of metal like this?", "topic": "TALK_EXODII_MERCHANT_Metal" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Metal", + "type": "talk_topic", + "dynamic_line": "Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if I'm not to join the rank an' file.", + "responses": [ + { + "text": "I think I know what you mean. The only way to survive is to… \"upgrade\". Can you help me with that?", + "topic": "TALK_EXODII_MERCHANT_Exodize", + "condition": { + "not": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" }, + { "u_has_trait": "CBM_Interface" } + ] + } + }, + "effect": { "u_add_var": "u_knows_about_exodization", "type": "knowledge", "context": "exodiilore", "value": "yes" } + }, + { "text": "What are you doing 'razzing up our green and brown'.", "topic": "TALK_EXODII_MERCHANT_Purpose2" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Robot", + "type": "talk_topic", + "dynamic_line": "Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, encased in a shell o' metal an' wire. Not so much flesh as there were. The wire is amixed an' afloat with the flesh, all as one, kennit.", + "speaker_effect": { "effect": { "u_add_var": "rubik_is_cyborg", "type": "knowledge", "context": "exodiilore", "value": "yes" } }, + "responses": [ + { + "text": "[int 9] So you're a cyborg of some kind? That's awesome. How do I become a cyborg?", + "topic": "TALK_EXODII_MERCHANT_Exodize", + "condition": { + "and": [ + { "u_has_intelligence": 9 }, + { + "not": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" }, + { "u_has_trait": "CBM_Interface" } + ] + } + } + ] + }, + "effect": { "u_add_var": "u_knows_about_exodization", "type": "knowledge", "context": "exodiilore", "value": "yes" } + }, + { + "text": "I don't have any idea what you mean. You're kind of a robot, but you're also flesh and blood?", + "topic": "TALK_EXODII_MERCHANT_Robot2" + }, + { "text": "What are you doing 'razzing up our green and brown'.", "topic": "TALK_EXODII_MERCHANT_Purpose2" }, + { "text": "I don't understand a word you're saying.", "topic": "TALK_EXODII_MERCHANT_Dialect" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Robot2", + "type": "talk_topic", + "dynamic_line": "Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were once as a kin, to you be.", + "responses": [ + { "text": "What are you doing 'razzing up our green and brown'.", "topic": "TALK_EXODII_MERCHANT_Purpose2" }, + { "text": "Can we talk about something else? This is confusing.", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "I don't understand a word you're saying.", "topic": "TALK_EXODII_MERCHANT_Dialect" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Base", + "type": "talk_topic", + "dynamic_line": "A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon enough.", + "responses": [ + { "text": "Pack it up? How can you pack up something like this?", "topic": "TALK_EXODII_MERCHANT_Base2" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Base2", + "type": "talk_topic", + "dynamic_line": "For an' how, ye be needin' to think wi' them elevens o' directions, kennit? Us'll open a gate an' wibble-an-wobble. Same as us came.", + "responses": [ + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Dialect", + "type": "talk_topic", + "dynamic_line": "Sure as ye can, at least sommat. Us'n'll try as we might to parley your Anglic, but so ye kennit as us be from otherlands and all, it ain't that simple.", + "responses": [ + { + "text": "[int or per 7] How come you speak English, or uh, 'anglic' like that?", + "condition": { "or": [ { "u_has_intelligence": 7 }, { "u_has_perception": 7 } ] }, + "topic": "TALK_EXODII_MERCHANT_Dialect_Anglic" + }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Exodus", + "type": "talk_topic", + "dynamic_line": "Oh yeah, right and so. Each and every. We wander, we make do. It's a livin'.", + "responses": [ + { "text": "What drove you out?", "topic": "TALK_EXODII_MERCHANT_Exodus2" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Exodus2", + "type": "talk_topic", + "dynamic_line": "Same as you will be, an I'm ken. The enemy. The dead.", + "responses": [ + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Dialect_Anglic", + "type": "talk_topic", + "dynamic_line": "Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o' yarkin'. All an' all from our green an' brown yark like this'n.", + "//~": "I'm a lowlife from old Upper Landing, this is my way of talking. Everyone from where I come from talks like this.", + "responses": [ + { "text": "Tell me about \"ol' Upper Landing\". What was your home like?", "topic": "TALK_EXODII_MERCHANT_Home" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Purpose", + "type": "talk_topic", + "dynamic_line": "Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a jibber that made us ken 'bout your place here, fired up the ol' wibble-wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a good timing this time, I razz you only been dead a few days when we wobbled in. Freshest corpse this'n's seen in a kitchen sink.", + "responses": [ + { "text": "…what?", "topic": "TALK_EXODII_MERCHANT_Purpose_Dialect" }, + { + "text": "[int or per 9] Where did you come from then? Are you aliens or something?", + "condition": { "or": [ { "u_has_intelligence": 9 }, { "u_has_perception": 9 } ] }, + "topic": "TALK_EXODII_MERCHANT_Aliens" + }, + { "text": "Is there anything else you want from this place?", "topic": "TALK_EXODII_MERCHANT_Purpose2" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Purpose_Dialect", + "type": "talk_topic", + "dynamic_line": "Us're here to live and breathe, kennit? After our last otherland got a li'l too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's not so long dead round here jus' yet.", + "//~": "English: We're just here to survive, you understand? Our last world got too overrun with undead. So, we came to a new world. This one. If I'm not mistaken, it's not so long dead around here just yet.", + "responses": [ + { + "text": "[int or per 7] Otherland? Are you aliens or something?", + "condition": { "or": [ { "u_has_intelligence": 7 }, { "u_has_perception": 7 } ] }, + "topic": "TALK_EXODII_MERCHANT_Aliens" + }, + { "text": "Is there anything else you want from this place?", "topic": "TALK_EXODII_MERCHANT_Purpose2" }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Purpose2", + "type": "talk_topic", + "dynamic_line": "Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. Pickin' the scraps, seein' if for your otherland has any tech worth an upside-down. No sense lettin' good scraps go to waste. If we’re lucky, pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our sweet, shattered dreams, suchlike.", + "//~": "English: Aside from just having a safe place to live? We're here to mine, you understand. Picking the scraps, seeing if this world has any tech worth reverse engineering. No sense letting good scraps go to waste. If we're lucky, maybe we'll get some new Exodii before we teleport out. Pickin' up the pieces of our sweet, shattered dreams, such as they are.", + "responses": [ + { + "text": "What do you mean 'go to waste'? The zombies aren't using the scrap, and there's plenty to go around.", + "topic": "TALK_EXODII_MERCHANT_Purpose3" + }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Purpose3", + "type": "talk_topic", + "dynamic_line": "This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't gonna sing along. No cure for these rats and fleas.", + "//~": "English: This is a deadland, don't you see? You've already got an infestation and it's not going away. There's no cure for the zombies.", + "responses": [ + { "text": "What the hell does that mean?", "topic": "TALK_EXODII_MERCHANT_Purpose4" }, + { + "text": "[int 8] Are you saying you think we're doomed? Why would you have come here if there wasn’t some way to survive?", + "condition": { "u_has_intelligence": 8 }, + "topic": "TALK_EXODII_MERCHANT_Survival" + }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Purpose4", + "type": "talk_topic", + "dynamic_line": "Means what it means. Your land's a deadun', still kickin' is all.", + "//~": "English: It means what it means. Your land's dead already, it's just still kicking is all.", + "responses": [ + { + "text": "Are you saying you think we're doomed? Why would you have come here if there wasn’t some way to survive?", + "topic": "TALK_EXODII_MERCHANT_Survival" + }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Survival", + "type": "talk_topic", + "dynamic_line": "Oh, us can wobble along as needs. Sends the scrap back, brings in the foods, and shakes off a willie or three, kennit. No good for you, won’t take too much flesh an' bone.", + "//~": "English: Oh, we can teleport along as we need to. We send the scrap along, then the food, and shake off some baddies, you understand. It's no good for you though, it won't take too much flesh and bone.", + "speaker_effect": { "effect": { "u_add_var": "u_knows_about_exodization", "type": "knowledge", "context": "exodiilore", "value": "yes" } }, + "responses": [ + { + "text": "Well… could you help me fix that?", + "topic": "TALK_EXODII_MERCHANT_Exodize", + "condition": { + "not": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" }, + { "u_has_trait": "CBM_Interface" } + ] + } + } + }, + { + "text": "Wait. I thought you were still flesh and bone, under that metal.", + "topic": "TALK_EXODII_MERCHANT_Survival2", + "condition": { "u_has_var": "rubik_is_cyborg", "type": "knowledge", "context": "exodiilore", "value": "yes" } + }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Survival2", + "type": "talk_topic", + "dynamic_line": "Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep what's Rubik, but the rest is all solid.", + "responses": [ + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Tech", + "type": "talk_topic", + "dynamic_line": "Not to me it don't. We ain't tassed from around here though. Looks fine an' fine to you I'd razz.", + "responses": [ + { + "text": "[int or per 7] Not from around here? Are you aliens or something?", + "condition": { "or": [ { "u_has_intelligence": 7 }, { "u_has_perception": 7 } ] }, + "topic": "TALK_EXODII_MERCHANT_Aliens" + }, + { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + } +] diff --git a/data/json/npcs/exodii/exodii_merchant_talk_exodization.json b/data/json/npcs/exodii/exodii_merchant_talk_exodization.json new file mode 100644 index 0000000000000..cbd5d733cc760 --- /dev/null +++ b/data/json/npcs/exodii/exodii_merchant_talk_exodization.json @@ -0,0 +1,306 @@ +[ + { + "id": "TALK_EXODII_MERCHANT_ExodizeTest", + "type": "talk_topic", + "dynamic_line": "Sure an' I can make you a cyborg, here an' now, since you're a developer an' all.", + "responses": [ + { + "text": "Let's do it.", + "effect": [ + { "u_add_bionic": "bio_power_storage" }, + { "u_add_bionic": "bio_cable" }, + { "u_assign_activity": "ACT_CBM_SURGERY", "duration": "2 hours" }, + { "u_add_effect": "blind", "duration": "2 hours" }, + { "u_add_effect": "deaf", "duration": "2 hours" }, + { "u_add_trait": "CBM_Interface" } + ], + "topic": "TALK_EXODII_MERCHANT_Exodized" + }, + { "text": "I changed my mind. What was it you were saying before?", "topic": "TALK_NONE" }, + { "text": "I changed my mind. I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Exodize", + "type": "talk_topic", + "dynamic_line": { + "compare_int": [ { "u_val": "sold" }, { "const": 100 } ], + "op": ">=", + "yes": "Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as clear-like as this Rubik can. If ye'n use it to put the dead back in the ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh and to the bone, wired into the brain. Ye kennit? If no, us'll speak to the Great Grey for a pint o' the ol' clarity-draught.", + "no": { + "u_compare_var": "exodii_trust", + "type": "counter", + "context": "exodii", + "op": ">=", + "value": 5, + "yes": "Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as clear-like as this Rubik can. If ye'n use it to put the dead back in the ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh and to the bone, wired into the brain. Ye kennit? If no, us'll speak to the Great Grey for a pint o' the ol' clarity-draught.", + "no": "Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap you could bring us a mite and trade, and we'll see if we can fix you good soon and soon. Let no exodii turn away a willin' Benny, and so it is." + } + }, + "//~": "English: Yes: Oh HO! Well, now you're speaking my language. We can fix you up good, if you're willing to pay us back. I'll say it as clearly as I can. If you help us kill the undead, we can help you get fixed up like us, yeah. Stuck right into your flesh and bone and wired into your brain. You understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, well. I'll file that away, so to speak. Maybe you could bring us a little more trade, and we'll fix you up as soon as possible. The exodii won't turn away a willing convert.", + "responses": [ + { + "text": "If I just keep on killing zombies, you'll help turn me into a cyborg? Why are we still yarkin', then? Sign me the heck up.", + "topic": "TALK_EXODII_MERCHANT_ExodizeMe1", + "condition": { + "or": [ + { "compare_int": [ { "u_val": "sold" }, { "const": 100 } ], "op": ">=" }, + { "u_compare_var": "exodii_trust", "type": "counter", "context": "exodii", "op": ">=", "value": 5 } + ] + } + }, + { + "text": "On second thought, I'm not sure I want to let a bunch of unfamiliar alien robots do brain surgery on me.", + "topic": "TALK_EXODII_MERCHANT_ExodizeNope", + "condition": { + "or": [ + { "compare_int": [ { "u_val": "sold" }, { "const": 100 } ], "op": ">=" }, + { "u_compare_var": "exodii_trust", "type": "counter", "context": "exodii", "op": ">=", "value": 5 } + ] + } + }, + { + "text": "Maybe try that clarity-draught?", + "topic": "TALK_EXODII_MERCHANT_ExodizeTranslate", + "condition": { + "or": [ + { "compare_int": [ { "u_val": "sold" }, { "const": 100 } ], "op": ">=" }, + { "u_compare_var": "exodii_trust", "type": "counter", "context": "exodii", "op": ">=", "value": 5 } + ] + } + }, + { + "text": "OK, well, I've got some stuff I could trade right now.", + "effect": "start_trade", + "topic": "TALK_EXODII_MERCHANT_DoneTrade", + "condition": { + "and": [ + { "compare_int": [ { "u_val": "sold" }, { "const": 100 } ], "op": "<" }, + { "u_compare_var": "exodii_trust", "type": "counter", "context": "exodii", "op": "<", "value": 5 } + ] + } + }, + { + "text": "OK, maybe I'll come back when I've traded a bit more.", + "topic": "TALK_DONE", + "condition": { + "and": [ + { "compare_int": [ { "u_val": "sold" }, { "const": 100 } ], "op": "<" }, + { "u_compare_var": "exodii_trust", "type": "counter", "context": "exodii", "op": "<", "value": 5 } + ] + } + } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_ExodizeTranslate", + "type": "talk_topic", + "dynamic_line": "Hmm.\n\n*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n\nIn exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n\n*Rubik's voice takes over again.*\n\nClear as a draught?", + "responses": [ + { + "text": "If I just keep on killing zombies, you'll help turn me into a cyborg? Why are we still yarkin', then? Sign me the heck up.", + "condition": { + "or": [ + { "not": { "u_has_var": "u_declined_exodization", "type": "decisions", "context": "blobpsychosis", "value": "yes" } }, + { + "u_compare_time_since_var": "u_declined_exodization", + "type": "timer", + "context": "blobpsychosis", + "op": ">=", + "time": "2 d" + } + ] + }, + "//": "if you've had some time to think about your previous refusal, or if you never went through the process of refusal and reconsideration, it has no impact on Rubik's opinion of you.", + "topic": "TALK_EXODII_MERCHANT_ExodizeMe1" + }, + { + "text": "If I just keep on killing zombies, you'll help turn me into a cyborg? Why are we still yarkin', then? Sign me the heck up.", + "condition": { + "and": [ + { "u_has_var": "u_declined_exodization", "type": "decisions", "context": "blobpsychosis", "value": "yes" }, + { + "u_compare_time_since_var": "u_declined_exodization", + "type": "timer", + "context": "blobpsychosis", + "op": "<", + "time": "2 d" + } + ] + }, + "//": "If you previously refused exodization and then came back right away having changed your mind, it makes Rubik consider you somewhat flitty and unreliable. This negates your previous trust bonus and adds to the exodii overall psych assessment of your character.", + "effect": [ + { "u_adjust_var": "exodii_trust", "type": "counter", "context": "exodii", "adjustment": -2 }, + { "u_adjust_var": "exodii_psychosis_judgment", "type": "counter", "context": "exodii", "adjustment": 4 } + ], + "topic": "TALK_EXODII_MERCHANT_ExodizeMe1" + }, + { + "text": "On second thought, I'm not sure I want to let a bunch of unfamiliar alien robots do brain surgery on me.", + "topic": "TALK_EXODII_MERCHANT_ExodizeNope" + }, + { + "text": "Why can't you talk that clearly all the time? You have no idea how hard it is to understand your accent, let alone your words.", + "topic": "TALK_EXODII_MERCHANT_ExodizeDialect" + } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_ExodizeDialect", + "type": "talk_topic", + "dynamic_line": "*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep usselves useful, an' keep Great Grey doin' what it's tassed. Asides, yarkin' to the local brights keeps us young an' shines our chrome, an I'm ken.", + "//~": "English: MY accent? You've obviously never had to listen to yourself talk. Great Grey has more important work to do, get it? I have to keep myself useful and keep Gret Grey doing what it's supposed to. Besides, talking to the locals keeps me young and shines my chrome, as I see it.", + "responses": [ + { + "text": "Fine, whatever. It doesn't matter, if you're gonna turn me into a horrifying fusion of machine and human, sign me the heck up.", + "condition": { + "or": [ + { "not": { "u_has_var": "u_declined_exodization", "type": "decisions", "context": "blobpsychosis", "value": "yes" } }, + { + "u_compare_time_since_var": "u_declined_exodization", + "type": "timer", + "context": "blobpsychosis", + "op": ">=", + "time": "2 d" + } + ] + }, + "//": "if you've had some time to think about your previous refusal, or if you never went through the process of refusal and reconsideration, it has no impact on Rubik's opinion of you.", + "topic": "TALK_EXODII_MERCHANT_ExodizeMe1" + }, + { + "text": "Fine, whatever. It doesn't matter, if you're gonna turn me into a horrifying fusion of machine and human, sign me the heck up.", + "condition": { + "and": [ + { "u_has_var": "u_declined_exodization", "type": "decisions", "context": "blobpsychosis", "value": "yes" }, + { + "u_compare_time_since_var": "u_declined_exodization", + "type": "timer", + "context": "blobpsychosis", + "op": "<", + "time": "2 d" + } + ] + }, + "//": "If you previously refused exodization and then came back right away having changed your mind, it makes Rubik consider you somewhat flitty and unreliable. This negates your previous trust bonus and adds to the exodii overall psych assessment of your character.", + "effect": [ + { "u_adjust_var": "exodii_trust", "type": "counter", "context": "exodii", "adjustment": -2 }, + { "u_adjust_var": "exodii_psychosis_judgment", "type": "counter", "context": "exodii", "adjustment": 4 } + ], + "topic": "TALK_EXODII_MERCHANT_ExodizeMe1" + }, + { + "text": "The more I talk to you, the more I'm not sure I want to let a bunch of unfamiliar alien robots do brain surgery on me.", + "topic": "TALK_EXODII_MERCHANT_ExodizeNope" + }, + { "text": "OK, OK. What was it you said? I was distracted by the voice change.", "topic": "TALK_NONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_ExodizeMe1", + "type": "talk_topic", + "dynamic_line": "Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a tiff.", + "//~": "Great, great, great!! Ha! We'll fire up the old meat grinder. Your job is to bring us a bit of good tea. Not literally 'tea' of course. That's my Anglic street slang. I mean the stuff that puts you to sleep for surgery. The Great Grey says your word for it is 'anesthetic'. You bring us two anesthetic kits, we'll fix you up with a wire and everything.", + "responses": [ + { + "text": "Two, uh, anesthetic kits, coming up. Can we talk about something else?", + "condition": { + "not": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" } + ] + } + }, + "effect": { "assign_mission": "RUBIK_ANUS_FETICK" }, + "topic": "TALK_EXODII_MERCHANT_Talk" + }, + { + "text": "Two, uh, anesthetic kits, coming up. I'd better start looking.", + "condition": { + "not": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" } + ] + } + }, + "effect": { "assign_mission": "RUBIK_ANUS_FETICK" }, + "topic": "TALK_DONE" + }, + { + "text": "Something's weird, I shouldn't have ever reached this dialogue option. I'd better go file a bug report.", + "condition": { + "or": [ + { "u_has_mission": "RUBIK_ANUS_FETICK" }, + { "u_has_var": "anusfetick", "type": "mission", "context": "completed", "value": "yes" } + ] + }, + "topic": "TALK_DONE" + } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_ExodizeMe2", + "type": "talk_topic", + "dynamic_line": "Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll rubber up the ol' gristle mill. You jus' set along with ol' Rubik.", + "responses": [ + { + "text": "All right. Let's do this.", + "effect": [ + { "u_add_bionic": "bio_power_storage" }, + { "u_add_bionic": "bio_cable" }, + { "u_assign_activity": "ACT_CBM_SURGERY", "duration": "2 hours" }, + { "u_add_effect": "blind", "duration": "2 hours" }, + { "u_add_effect": "deaf", "duration": "2 hours" }, + { "u_add_trait": "CBM_Interface" } + ], + "topic": "TALK_EXODII_MERCHANT_Exodized" + }, + { "text": "Hold on. I need to rethink it again.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_ExodizeNope", + "type": "talk_topic", + "dynamic_line": "An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here for the long an' short. You get to know us'n better, us'n get to know you better, an' that's a good tassin'.", + "speaker_effect": [ + { + "condition": { "not": { "u_has_var": "u_declined_exodization", "type": "decisions", "context": "blobpsychosis", "value": "yes" } }, + "//": "Rubik considers it a good sign that you might be a bit unsure about diving into exodization.", + "effect": [ + { "u_adjust_var": "exodii_trust", "type": "counter", "context": "exodii", "adjustment": 2 }, + { "u_adjust_var": "exodii_psychosis_judgment", "type": "counter", "context": "exodii", "adjustment": -2 }, + { "u_add_var": "u_declined_exodization", "type": "decisions", "context": "blobpsychosis", "value": "yes" }, + { "u_add_var": "u_declined_exodization", "type": "timer", "context": "blobpsychosis", "time": true } + ] + } + ], + "responses": [ { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } ] + }, + { + "id": "TALK_EXODII_MERCHANT_Exodized", + "type": "talk_topic", + "dynamic_line": "*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n\nYou awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n\n\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"", + "speaker_effect": { "effect": { "mapgen_update": "tier1_CBM_shop_update", "om_terrain": "exodii_base_x0y2z1" } }, + "responses": [ + { "text": "So I'm a cyborg now? I don't really feel much different.", "topic": "TALK_EXODII_MERCHANT_Exodized2" }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "Well, I'd better be going. Thanks for the brain implants. Bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_EXODII_MERCHANT_Exodized2", + "type": "talk_topic", + "dynamic_line": "This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye started, but for the real lemony tarts you'd be wantin' what this'n's got for sale. As us'n can come to see you clairly-like, this'n can be tassed to offer more an' more.", + "responses": [ + { + "text": "So you can sell me more bionics, and as I get to know you better you'll have more? Mind showing me what you've got right now?", + "effect": "start_trade", + "topic": "TALK_EXODII_MERCHANT_DoneTrade" + }, + { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, + { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } + ] + } +] diff --git a/data/json/npcs/holdouts/Mr_Lapin.json b/data/json/npcs/holdouts/Mr_Lapin.json index cadff282dbdbf..84dc5ea58f10d 100644 --- a/data/json/npcs/holdouts/Mr_Lapin.json +++ b/data/json/npcs/holdouts/Mr_Lapin.json @@ -48,6 +48,7 @@ { "text": "You look different?", "topic": "TALK_WARRENER_MUTATION" }, { "text": "Anything I can help with?", "topic": "TALK_MISSION_LIST" }, { "text": "Do you need any resources?", "topic": "TALK_LAPIN_RESOURCES" }, + { "text": "Where did you get that giant firefly terrarium?", "topic": "TALK_LAPIN_FIREFLY" }, { "text": "Well, bye.", "topic": "TALK_DONE" } ] }, @@ -101,6 +102,12 @@ "dynamic_line": "If I teach one hundred people how to raise rabbits, that's potentially a hundred communities given food and fur before those people teach anyone else.", "responses": [ { "text": "That's the most hopeful thing I've heard so far.", "topic": "TALK_WARRENER" } ] }, + { + "type": "talk_topic", + "id": "TALK_LAPIN_FIREFLY", + "dynamic_line": "A traveler brought this to me in return for some rabbits. Said that he'd gotten it from a scientist out in the swamps but it took up too much space in his car.", + "responses": [ { "text": "It's quite unique!", "topic": "TALK_WARRENER" } ] + }, { "type": "talk_topic", "id": "TALK_WARRENER_MUTATION", diff --git a/data/json/obsolete_terrains.json b/data/json/obsolete_terrains.json index 86354178d18c9..1388a02623c58 100644 --- a/data/json/obsolete_terrains.json +++ b/data/json/obsolete_terrains.json @@ -5,6 +5,14 @@ "triffid_grove", "triffid_roots", "triffid_finale", + "microlab_generic_hallway_start_north", + "microlab_generic_hallway_start_east", + "microlab_generic_hallway_start_south", + "microlab_generic_hallway_start_west", + "microlab_generic_hallway_north", + "microlab_generic_hallway_east", + "microlab_generic_hallway_south", + "microlab_generic_hallway_west", "mine_entrance", "mine_shaft", "spiral", diff --git a/data/json/overmap/map_extras.json b/data/json/overmap/map_extras.json index 2780c3085fc3a..4cbad4ba87c3f 100644 --- a/data/json/overmap/map_extras.json +++ b/data/json/overmap/map_extras.json @@ -350,7 +350,7 @@ "type": "map_extra", "name": { "str": "Marloss Pilgrimage" }, "description": "Marloss Pilgrimage is here.", - "generator": { "generator_method": "map_extra_function", "generator_id": "mx_marloss_pilgrimage" }, + "generator": { "generator_method": "update_mapgen", "generator_id": "mx_marloss_pilgrimage" }, "sym": "F", "color": "dark_gray", "autonote": true diff --git a/data/json/overmap/overmap_mutable/microlab_mutable.json b/data/json/overmap/overmap_mutable/microlab_mutable.json new file mode 100644 index 0000000000000..85ce5e593ab60 --- /dev/null +++ b/data/json/overmap/overmap_mutable/microlab_mutable.json @@ -0,0 +1,128 @@ +[ + { + "type": "overmap_special", + "id": "microlab_mutable", + "subtype": "mutable", + "locations": [ "subterranean_empty" ], + "city_distance": [ 25, -1 ], + "city_sizes": [ 0, 20 ], + "occurrences": [ 0, 1 ], + "flags": [ "LAB" ], + "check_for_locations": [ + [ [ 0, 0, 0 ], [ "land" ] ], + [ [ 0, 0, -1 ], [ "subterranean_empty" ] ], + [ [ 0, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 4, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 3, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 2, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 1, 0, -2 ], [ "subterranean_empty" ] ], + [ [ -4, 0, -2 ], [ "subterranean_empty" ] ], + [ [ -3, 0, -2 ], [ "subterranean_empty" ] ], + [ [ -2, 0, -2 ], [ "subterranean_empty" ] ], + [ [ -1, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 0, -4, -2 ], [ "subterranean_empty" ] ], + [ [ 0, -3, -2 ], [ "subterranean_empty" ] ], + [ [ 0, -2, -2 ], [ "subterranean_empty" ] ], + [ [ 0, -1, -2 ], [ "subterranean_empty" ] ], + [ [ 0, 4, -2 ], [ "subterranean_empty" ] ], + [ [ 0, 3, -2 ], [ "subterranean_empty" ] ], + [ [ 0, 2, -2 ], [ "subterranean_empty" ] ], + [ [ 0, 1, -2 ], [ "subterranean_empty" ] ] + ], + "joins": [ + "hallway_to_hallway", + "duct_to_surface", + "duct_to_entrance", + "microlab_to_microlab", + { "id": "hallway_to_microlab", "opposite": "microlab_to_hallway" }, + { "id": "microlab_to_hallway", "opposite": "hallway_to_microlab" }, + "microlab_entry_to_station", + "microlab_station_to_subway" + ], + "overmaps": { + "surface": { "overmap": "lab_subway_vent_shaft_surface", "below": "duct_to_surface", "locations": [ "land" ] }, + "below_entrance": { "overmap": "lab_subway_vent_shaft-1", "above": "duct_to_surface", "below": "duct_to_entrance" }, + "surface_access": { + "overmap": "microlab_generic_vent_shaft_connector", + "above": "duct_to_entrance", + "north": "microlab_to_microlab", + "east": "microlab_to_microlab", + "south": "microlab_to_microlab", + "west": "microlab_to_microlab" + }, + "microlab": { + "overmap": "microlab_generic", + "north": "microlab_to_microlab", + "east": "microlab_to_microlab", + "south": "microlab_to_microlab", + "west": "microlab_to_microlab" + }, + "microlab_edge": { + "overmap": "microlab_generic_edge", + "north": { "id": "microlab_to_microlab", "type": "available" }, + "east": { "id": "microlab_to_microlab", "type": "available" }, + "south": { "id": "microlab_to_microlab", "type": "available" }, + "west": { "id": "microlab_to_microlab", "type": "available" } + }, + "microlab_sub_entry": { + "overmap": "microlab_generic_sub_entry_north", + "north": "microlab_entry_to_station", + "east": "microlab_to_microlab", + "south": "microlab_to_microlab", + "west": "microlab_to_microlab" + }, + "microlab_sub_station": { "overmap": "microlab_sub_station_north", "north": "microlab_station_to_subway", "south": "microlab_entry_to_station" }, + "microlab_subway": { "overmap": "microlab_sub_connector_south", "north": "microlab_station_to_subway" }, + "firebreak": { "overmap": "microlab_generic_firebreak_north", "north": "hallway_to_hallway", "south": "hallway_to_hallway" }, + "hallway_cross": { + "overmap": "microlab_generic_hallway_nesw", + "north": "hallway_to_hallway", + "east": "hallway_to_hallway", + "south": "hallway_to_hallway", + "west": "hallway_to_hallway" + }, + "hallway_straight": { + "overmap": "microlab_generic_hallway_ns", + "north": "hallway_to_hallway", + "east": "microlab_to_microlab", + "south": "hallway_to_hallway", + "west": "microlab_to_microlab" + }, + "hallway_end": { + "overmap": "microlab_generic_hallway_end_north", + "north": "hallway_to_hallway", + "east": "microlab_to_microlab", + "south": "microlab_to_microlab", + "west": "microlab_to_microlab" + }, + "hallway_blind_end": { + "overmap": "microlab_generic_hallway_blind_end_north", + "north": { "id": "hallway_to_hallway" }, + "east": { "id": "microlab_to_microlab", "type": "available" }, + "south": { "id": "microlab_to_microlab", "type": "available" }, + "west": { "id": "microlab_to_microlab", "type": "available" } + } + }, + "root": "surface", + "phases": [ + [ { "overmap": "below_entrance", "max": 1 } ], + [ { "overmap": "surface_access", "max": 1 } ], + [ + { "overmap": "microlab_sub_entry", "max": 1 }, + { "overmap": "microlab_sub_station", "max": 1 }, + { "overmap": "microlab_subway", "max": 1 } + ], + [ { "overmap": "hallway_end", "max": 1 } ], + [ { "overmap": "hallway_straight", "max": 5 } ], + [ { "overmap": "hallway_cross", "max": 1 } ], + [ { "overmap": "hallway_straight", "max": 7 }, { "overmap": "firebreak", "max": 1 } ], + [ { "overmap": "hallway_end", "max": 3 } ], + [ { "overmap": "microlab", "max": 20 } ], + [ + { "overmap": "microlab_edge", "weight": 1000 }, + { "overmap": "hallway_end", "weight": 10 }, + { "overmap": "hallway_blind_end", "weight": 1 } + ] + ] + } +] diff --git a/data/json/overmap/overmap_special/specials.json b/data/json/overmap/overmap_special/specials.json index cc45056304919..2a9b9f27d92ad 100644 --- a/data/json/overmap/overmap_special/specials.json +++ b/data/json/overmap/overmap_special/specials.json @@ -4680,7 +4680,7 @@ { "point": [ 0, 1, -2 ], "overmap": "microlab_generic_edge" }, { "point": [ 1, 1, -2 ], "overmap": "microlab_generic" }, { "point": [ 2, 1, -2 ], "overmap": "microlab_generic" }, - { "point": [ 3, 1, -2 ], "overmap": "microlab_generic_hallway_start_south" }, + { "point": [ 3, 1, -2 ], "overmap": "microlab_generic_hallway_end_south" }, { "point": [ 4, 1, -2 ], "overmap": "microlab_generic" }, { "point": [ 5, 1, -2 ], "overmap": "microlab_generic_edge" }, { "point": [ 6, 1, -2 ], "overmap": "microlab_rock_border" }, @@ -4688,7 +4688,7 @@ { "point": [ 0, 2, -2 ], "overmap": "microlab_generic_edge" }, { "point": [ 1, 2, -2 ], "overmap": "microlab_generic" }, { "point": [ 2, 2, -2 ], "overmap": "microlab_generic" }, - { "point": [ 3, 2, -2 ], "overmap": "microlab_generic_hallway_north" }, + { "point": [ 3, 2, -2 ], "overmap": "microlab_generic_hallway_ns" }, { "point": [ 4, 2, -2 ], "overmap": "microlab_generic" }, { "point": [ 5, 2, -2 ], "overmap": "microlab_generic_edge" }, { "point": [ 6, 2, -2 ], "overmap": "microlab_rock_border" }, @@ -4729,7 +4729,7 @@ { "point": [ 0, 1, -4 ], "overmap": "microlab_generic_edge_room_connector_west" }, { "point": [ 1, 1, -4 ], "overmap": "microlab_generic" }, { "point": [ 2, 1, -4 ], "overmap": "microlab_generic" }, - { "point": [ 3, 1, -4 ], "overmap": "microlab_generic_hallway_start_south" }, + { "point": [ 3, 1, -4 ], "overmap": "microlab_generic_hallway_end_south" }, { "point": [ 4, 1, -4 ], "overmap": "microlab_generic" }, { "point": [ 5, 1, -4 ], "overmap": "microlab_generic_edge" }, { "point": [ 6, 1, -4 ], "overmap": "microlab_rock_border" }, @@ -4737,7 +4737,7 @@ { "point": [ 0, 2, -4 ], "overmap": "microlab_generic_edge" }, { "point": [ 1, 2, -4 ], "overmap": "microlab_generic" }, { "point": [ 2, 2, -4 ], "overmap": "microlab_generic" }, - { "point": [ 3, 2, -4 ], "overmap": "microlab_generic_hallway_north" }, + { "point": [ 3, 2, -4 ], "overmap": "microlab_generic_hallway_ns" }, { "point": [ 4, 2, -4 ], "overmap": "microlab_generic" }, { "point": [ 5, 2, -4 ], "overmap": "microlab_generic_edge" }, { "point": [ 6, 2, -4 ], "overmap": "microlab_rock_border" }, diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json b/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json index 65bab9f349e27..659f930a4f8ab 100644 --- a/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json +++ b/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json @@ -202,10 +202,18 @@ "type": "overmap_terrain", "id": "faction_base_farm_2_0", "copy-from": "faction_base_camp_0", - "name": "farm survey_2", + "name": "farm survey 2", "color": "i_brown", "delete": { "flags": [ "SOURCE_PEOPLE" ] } }, + { + "type": "overmap_terrain", + "id": "faction_base_garage_2_0", + "copy-from": "faction_base_camp_0", + "name": "garage survey 2", + "color": "i_light_gray", + "delete": { "flags": [ "SOURCE_PEOPLE" ] } + }, { "type": "overmap_terrain", "id": "faction_base_helipad_garage_0", diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json b/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json index 392cf01b1ee35..212c52f95bd74 100644 --- a/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json +++ b/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json @@ -5,7 +5,7 @@ "name": "science lab", "sym": "L", "color": "light_blue", - "spawns": { "group": "GROUP_MICROLAB", "population": [ 40, 45 ], "chance": 80 }, + "spawns": { "group": "GROUP_MICROLAB", "population": [ 12, 25 ], "chance": 80 }, "see_cost": 5, "flags": [ "NO_ROTATE", "RISK_HIGH", "SOURCE_CHEMISTRY", "SOURCE_MEDICINE" ] }, @@ -59,11 +59,10 @@ { "type": "overmap_terrain", "id": [ - "microlab_generic_hallway_start", "microlab_generic_firebreak", - "microlab_generic_hallway", "microlab_generic_stairs_down", "microlab_generic_edge_room_connector", + "microlab_generic_hallway_blind_end", "microlab_generic_isolated_stairs_odd", "microlab_generic_isolated_stairs_even", "microlab_generic_isolated_stairs_up", @@ -75,6 +74,15 @@ "see_cost": 5, "flags": [ "RISK_HIGH", "SOURCE_CHEMISTRY", "SOURCE_MEDICINE" ] }, + { + "type": "overmap_terrain", + "id": "microlab_generic_hallway", + "name": "lab hallway", + "color": "light_red", + "see_cost": 5, + "spawns": { "group": "GROUP_LAB", "population": [ 2, 5 ], "chance": 80 }, + "flags": [ "LINEAR" ] + }, { "type": "overmap_terrain", "id": [ "microlab_reactor", "microlab_reactor_b" ], diff --git a/data/json/player_activities.json b/data/json/player_activities.json index 151a13072413c..4d578879e347a 100644 --- a/data/json/player_activities.json +++ b/data/json/player_activities.json @@ -1023,5 +1023,15 @@ "no_resume": true, "refuel_fires": false, "auto_needs": false + }, + { + "id": "ACT_CBM_SURGERY", + "type": "activity_type", + "activity_level": "NO_EXERCISE", + "verb": "being operated on", + "based_on": "time", + "interruptable": false, + "suspendable": false, + "interruptable_with_kb": false } ] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_common.json b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_common.json index a5340652ed112..62708c389df4c 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_common.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_common.json @@ -102,7 +102,7 @@ "type": "recipe", "activity_level": "MODERATE_EXERCISE", "result": "fbmk_2_well", - "description": "We should build a well. This will make cooking more convenient and provides water to support a chef't garden.", + "description": "We should build a well. This will make cooking more convenient and provides water to support a chef's garden.", "category": "CC_BUILDING", "subcategory": "CSC_BUILDING_BASES", "autolearn": false, diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_concrete.json b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_concrete.json new file mode 100644 index 0000000000000..a64be4e77f724 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_concrete.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_1_concrete", + "description": "Let's start building the kitchen concrete walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_concrete", + "blueprint_name": "build the concrete kitchen", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_center" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_2_center_concrete", + "description": "Let's finish the kitchen concrete walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_2_concrete", + "blueprint_name": "finish the concrete kitchen", + "blueprint_requires": [ { "id": "fbmk_2_center" } ], + "blueprint_provides": [ { "id": "fbmk_2_center_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_smoking_area_concrete", + "description": "Let's get this concrete smoking area covered to protect the workers from the weather.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_smoking_area_concrete", + "blueprint_name": "build a concrete roofed area for smoking racks", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_excludes": [ { "id": "fbmk_2_smoking_area" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_pantry_concrete", + "description": "Let's build a concrete wall pantry beside of the kitchen.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_pantry_concrete", + "blueprint_name": "build a concrete pantry", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_pantry_room" } ], + "blueprint_excludes": [ { "id": "fbmk_2_pantry_room" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_1_concrete", + "description": "Let's build the first concrete part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_1_concrete", + "blueprint_name": "build first dining concrete section", + "blueprint_requires": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_2_concrete", + "description": "Let's build the second concrete part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_2_concrete", + "blueprint_name": "build second dining concrete section", + "blueprint_requires": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_brewery_concrete", + "description": "Let's build a the concrete brewery.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_brewery_concrete", + "blueprint_name": "build concrete brewery", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_brewery" } ], + "blueprint_excludes": [ { "id": "fbmk_2_brewery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_log.json b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_log.json new file mode 100644 index 0000000000000..b5a9e5bd3e6d6 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_log.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_1_log", + "description": "Let's start building the kitchen log walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_log", + "blueprint_name": "build the log kitchen", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_center" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_2_center_log", + "description": "Let's finish the kitchen log walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_2_log", + "blueprint_name": "finish the log kitchen", + "blueprint_requires": [ { "id": "fbmk_2_center" } ], + "blueprint_provides": [ { "id": "fbmk_2_center_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_smoking_area_log", + "description": "Let's get this log smoking area covered to protect the workers from the weather.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_smoking_area_log", + "blueprint_name": "build a log roofed area for smoking racks", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_excludes": [ { "id": "fbmk_2_smoking_area" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_pantry_log", + "description": "Let's build a log wall pantry beside of the kitchen.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_pantry_log", + "blueprint_name": "build a log pantry", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_pantry_room" } ], + "blueprint_excludes": [ { "id": "fbmk_2_pantry_room" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_1_log", + "description": "Let's build the first log part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_1_log", + "blueprint_name": "build first dining log section", + "blueprint_requires": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_2_log", + "description": "Let's build the second log part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_2_log", + "blueprint_name": "build second dining log section", + "blueprint_requires": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_brewery_log", + "description": "Let's build a the log brewery.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_brewery_log", + "blueprint_name": "build log brewery", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_brewery" } ], + "blueprint_excludes": [ { "id": "fbmk_2_brewery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_metal.json b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_metal.json new file mode 100644 index 0000000000000..508d098d4b483 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_metal.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_1_metal", + "description": "Let's start building the kitchen metal walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_metal", + "blueprint_name": "build the metal kitchen", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_center" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_2_center_metal", + "description": "Let's finish the kitchen metal walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_2_metal", + "blueprint_name": "finish the metal kitchen", + "blueprint_requires": [ { "id": "fbmk_2_center" } ], + "blueprint_provides": [ { "id": "fbmk_2_center_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_smoking_area_metal", + "description": "Let's get this metal smoking area covered to protect the workers from the weather.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_smoking_area_metal", + "blueprint_name": "build a metal roofed area for smoking racks", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_excludes": [ { "id": "fbmk_2_smoking_area" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_pantry_metal", + "description": "Let's build a metal wall pantry beside of the kitchen.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_pantry_metal", + "blueprint_name": "build a metal pantry", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_pantry_room" } ], + "blueprint_excludes": [ { "id": "fbmk_2_pantry_room" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_1_metal", + "description": "Let's build the first metal part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_1_metal", + "blueprint_name": "build first dining metal section", + "blueprint_requires": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_2_metal", + "description": "Let's build the second metal part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_2_metal", + "blueprint_name": "build second dining metal section", + "blueprint_requires": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_brewery_metal", + "description": "Let's build a the metal brewery.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_brewery_metal", + "blueprint_name": "build metal brewery", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_brewery" } ], + "blueprint_excludes": [ { "id": "fbmk_2_brewery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_migo_resin.json b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_migo_resin.json new file mode 100644 index 0000000000000..1ade0e21961d1 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_migo_resin.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_1_migo_resin", + "description": "Let's start building the kitchen mi-go resin walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_migo_resin", + "blueprint_name": "build the mi-go resin kitchen", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_center" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_2_center_migo_resin", + "description": "Let's finish the kitchen mi-go resin walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_2_migo_resin", + "blueprint_name": "finish the mi-go resin kitchen", + "blueprint_requires": [ { "id": "fbmk_2_center" } ], + "blueprint_provides": [ { "id": "fbmk_2_center_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_smoking_area_migo_resin", + "description": "Let's get this mi-go resin smoking area covered to protect the workers from the weather.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_smoking_area_migo_resin", + "blueprint_name": "build a mi-go resin roofed area for smoking racks", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_excludes": [ { "id": "fbmk_2_smoking_area" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_pantry_migo_resin", + "description": "Let's build a mi-go resin wall pantry beside of the kitchen.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_pantry_migo_resin", + "blueprint_name": "build a mi-go resin pantry", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_pantry_room" } ], + "blueprint_excludes": [ { "id": "fbmk_2_pantry_room" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_1_migo_resin", + "description": "Let's build the first mi-go resin part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_1_migo_resin", + "blueprint_name": "build first dining mi-go resin section", + "blueprint_requires": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_2_migo_resin", + "description": "Let's build the second mi-go resin part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_2_migo_resin", + "blueprint_name": "build second dining mi-go resin section", + "blueprint_requires": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_brewery_migo_resin", + "description": "Let's build a the mi-go resin brewery.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_brewery_migo_resin", + "blueprint_name": "build mi-go resin brewery", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_brewery" } ], + "blueprint_excludes": [ { "id": "fbmk_2_brewery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_rammed_earth.json b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_rammed_earth.json new file mode 100644 index 0000000000000..06ebf20cc64b3 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_canteen/version_2/recipe_modular_canteen_rammed_earth.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_1_rammed_earth", + "description": "Let's start building the kitchen rammed earth walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_rammed_earth", + "blueprint_name": "build the rammed earth kitchen", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_center" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_room_2_center_rammed_earth", + "description": "Let's finish the kitchen rammed earth walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_2_rammed_earth", + "blueprint_name": "finish the rammed earth kitchen", + "blueprint_requires": [ { "id": "fbmk_2_center" } ], + "blueprint_provides": [ { "id": "fbmk_2_center_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_center_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_smoking_area_rammed_earth", + "description": "Let's get this rammed earth smoking area covered to protect the workers from the weather.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_smoking_area_rammed_earth", + "blueprint_name": "build a rammed earth roofed area for smoking racks", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_excludes": [ { "id": "fbmk_2_smoking_area" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_pantry_rammed_earth", + "description": "Let's build a rammed earth wall pantry beside of the kitchen.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_pantry_rammed_earth", + "blueprint_name": "build a rammed earth pantry", + "blueprint_requires": [ { "id": "fbmk_2_center_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_pantry_room" } ], + "blueprint_excludes": [ { "id": "fbmk_2_pantry_room" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_1_rammed_earth", + "description": "Let's build the first rammed earth part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_1_rammed_earth", + "blueprint_name": "build first dining rammed earth section", + "blueprint_requires": [ { "id": "fbmk_2_smoking_area" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_dining_2_rammed_earth", + "description": "Let's build the second rammed earth part of the dining hall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_dining_2_rammed_earth", + "blueprint_name": "build second dining rammed earth section", + "blueprint_requires": [ { "id": "fbmk_2_dining_1" } ], + "blueprint_provides": [ { "id": "fbmk_2_dining_2" } ], + "blueprint_excludes": [ { "id": "fbmk_2_dining_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmk_2_brewery_rammed_earth", + "description": "Let's build a the rammed earth brewery.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmk_2_brewery_rammed_earth", + "blueprint_name": "build rammed earth brewery", + "blueprint_requires": [ { "id": "fbmk_2" } ], + "blueprint_provides": [ { "id": "fbmk_2_brewery" } ], + "blueprint_excludes": [ { "id": "fbmk_2_brewery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/recipe_modular_farm/version_2/recipe_modular_farm_common.json b/data/json/recipes/basecamps/expansion/recipe_modular_farm/version_2/recipe_modular_farm_common.json similarity index 100% rename from data/json/recipes/basecamps/recipe_modular_farm/version_2/recipe_modular_farm_common.json rename to data/json/recipes/basecamps/expansion/recipe_modular_farm/version_2/recipe_modular_farm_common.json diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_common.json b/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_common.json new file mode 100644 index 0000000000000..d7e819605fd85 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_common.json @@ -0,0 +1,246 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_garage_2_0", + "description": "Survey land for a garage.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "skill_used": "fabrication", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "faction_base_garage_2_0", + "blueprint_name": "garage survey", + "time": "3 h", + "blueprint_requires": [ { "id": "not_an_upgrade" } ], + "blueprint_provides": [ { "id": "fbmg_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_3", + "description": "Let's connect the two walls with the missing roof piece.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_3", + "blueprint_name": "build the missing roof section", + "blueprint_requires": [ { "id": "fbmg_2_2" } ], + "blueprint_provides": [ { "id": "fbmg_2_3" } ], + "blueprint_excludes": [ { "id": "fbmg_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_furniture", + "description": "Now that we have some cover, lets build some counters and racks for tools and parts, allowing us to use the Chop Shop.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_furniture", + "blueprint_name": "build some furniture", + "blueprint_requires": [ { "id": "fbmg_2_1" } ], + "blueprint_provides": [ { "id": "fbmg_2_furniture" }, { "id": "dismantling" } ], + "blueprint_excludes": [ { "id": "fbmg_2_furniture" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_6", + "description": "Let's connect the two walls with the missing roof piece.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_6", + "blueprint_name": "build the missing roof section", + "blueprint_requires": [ { "id": "fbmg_2_5" } ], + "blueprint_provides": [ { "id": "fbmg_2_6" } ], + "blueprint_excludes": [ { "id": "fbmg_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_gate_2", + "description": "The garage is big enough. Let's build a palisade gate to allow us to close off the outer end.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_gate_2", + "blueprint_name": "build an outer palisade gate", + "blueprint_requires": [ { "id": "fbmg_2_6" } ], + "blueprint_provides": [ { "id": "fbmg_2_gate_2" } ], + "blueprint_excludes": [ { "id": "fbmg_2_gate_2" }, { "id": "fbmg_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_9", + "description": "Let's connect the two walls with the missing roof piece.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_9", + "blueprint_name": "build the missing roof section", + "blueprint_requires": [ { "id": "fbmg_2_8" } ], + "blueprint_provides": [ { "id": "fbmg_2_9" } ], + "blueprint_excludes": [ { "id": "fbmg_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_gate_3", + "description": "The garage is big enough. Let's build a palisade gate to allow us to close off the outer end.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_gate_3", + "blueprint_name": "build an outer palisade gate", + "blueprint_requires": [ { "id": "fbmg_2_9" } ], + "blueprint_provides": [ { "id": "fbmg_2_gate_3" } ], + "blueprint_excludes": [ { "id": "fbmg_2_gate_3" }, { "id": "fbmg_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_12", + "description": "Let's connect the two walls with the missing roof piece.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_12", + "blueprint_name": "build the missing roof section", + "blueprint_requires": [ { "id": "fbmg_2_11" } ], + "blueprint_provides": [ { "id": "fbmg_2_12" } ], + "blueprint_excludes": [ { "id": "fbmg_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_gate_4", + "description": "Let's finish the garage by building a palisade gate to allow us to close off the outer end.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_gate_4", + "blueprint_name": "build an outer palisade gate", + "blueprint_requires": [ { "id": "fbmg_2_12" } ], + "blueprint_provides": [ { "id": "fbmg_2_gate_4" } ], + "blueprint_excludes": [ { "id": "fbmg_2_gate_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_wad.json b/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_wad.json new file mode 100644 index 0000000000000..2132f2b27271f --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_wad.json @@ -0,0 +1,246 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_1_wad", + "description": "Let's start building the first garage wattle-and-daub wall section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_1_wad", + "blueprint_name": "build the first wattle-and-daub garage section", + "blueprint_requires": [ { "id": "fbmg_2" } ], + "blueprint_provides": [ { "id": "fbmg_2_1" } ], + "blueprint_excludes": [ { "id": "fbmg_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_2_wad", + "description": "Let's build a second garage wattle-and-daub wall section to block the wind from the other direction, making a garage wide enough to handle two normal vehicles or one super sized one.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_2_wad", + "blueprint_name": "build the second wattle-and-daub garage section", + "blueprint_requires": [ { "id": "fbmg_2_1" } ], + "blueprint_provides": [ { "id": "fbmg_2_2" } ], + "blueprint_excludes": [ { "id": "fbmg_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_wall_wad", + "description": "Let's build a wattle-and-daub wall to block the wind from blowing straight through the garage.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "skill_used": "fabrication", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_wall_wad", + "blueprint_name": "build an inner wattle-and-daub wall", + "blueprint_requires": [ { "id": "fbmg_2_3" } ], + "blueprint_provides": [ { "id": "fbmg_2_wall" } ], + "blueprint_excludes": [ { "id": "fbmg_2_wall" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_4_wad", + "description": "Now that we're able to work on short vehicles, let's extend the garage to allow for long ones, using wattle-and-daub.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_4_wad", + "blueprint_name": "extend the first wall using wattle-and-daub", + "blueprint_requires": [ { "id": "fbmg_2_3" } ], + "blueprint_provides": [ { "id": "fbmg_2_4" } ], + "blueprint_excludes": [ { "id": "fbmg_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_5_wad", + "description": "Let's extend the second wall to match the first one, using wattle-and-daub.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_5_wad", + "blueprint_name": "extend the second wall using wattle-and-daub", + "blueprint_requires": [ { "id": "fbmg_2_4" } ], + "blueprint_provides": [ { "id": "fbmg_2_5" } ], + "blueprint_excludes": [ { "id": "fbmg_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_7_wad", + "description": "Now that we're able to work on long vehicles, let's extend the garage to allow for really long ones, or multiple vehicles, using wattle-and-daub.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_7_wad", + "blueprint_name": "extend the first wall using wattle-and-daub", + "blueprint_requires": [ { "id": "fbmg_2_6" } ], + "blueprint_provides": [ { "id": "fbmg_2_7" } ], + "blueprint_excludes": [ { "id": "fbmg_2_7" }, { "id": "fbmg_2_gate_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_8_wad", + "description": "Let's extend the second wall to match the first one, using wattle-and-daub.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_8_wad", + "blueprint_name": "extend the second wall using wattle-and-daub", + "blueprint_requires": [ { "id": "fbmg_2_7" } ], + "blueprint_provides": [ { "id": "fbmg_2_8" } ], + "blueprint_excludes": [ { "id": "fbmg_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_10_wad", + "description": "Let's extent the garage to hangar size, allowing us to work on monster vehicles or a large number of normal ones, using wattle-and-daub.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_10_wad", + "blueprint_name": "extend the first wall using wattle-and-daub", + "blueprint_requires": [ { "id": "fbmg_2_9" } ], + "blueprint_provides": [ { "id": "fbmg_2_10" } ], + "blueprint_excludes": [ { "id": "fbmg_2_10" }, { "id": "fbmg_2_gate_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_11_wad", + "description": "Let's extend the second wall to match the first one, using wattle-and-daub.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_11_wad", + "blueprint_name": "extend the second wall using wattle-and-daub", + "blueprint_requires": [ { "id": "fbmg_2_10" } ], + "blueprint_provides": [ { "id": "fbmg_2_11" } ], + "blueprint_excludes": [ { "id": "fbmg_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_wood.json b/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_wood.json new file mode 100644 index 0000000000000..490a9a93b741d --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_garage/version_2/recipe_modular_garage_wood.json @@ -0,0 +1,246 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_1_wood", + "description": "Let's start building the first garage wood wall section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_1_wood", + "blueprint_name": "build the first wood garage section", + "blueprint_requires": [ { "id": "fbmg_2" } ], + "blueprint_provides": [ { "id": "fbmg_2_1" } ], + "blueprint_excludes": [ { "id": "fbmg_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_2_wood", + "description": "Let's build a second garage wood wall section to block the wind from the other direction, making a garage wide enough to handle two normal vehicles or one super sized one.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_2_wood", + "blueprint_name": "build the second wood garage section", + "blueprint_requires": [ { "id": "fbmg_2_1" } ], + "blueprint_provides": [ { "id": "fbmg_2_2" } ], + "blueprint_excludes": [ { "id": "fbmg_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_wall_wood", + "description": "Let's build a wood wall to block the wind from blowing straight through the garage.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "skill_used": "fabrication", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_wall_wood", + "blueprint_name": "build an inner wood wall", + "blueprint_requires": [ { "id": "fbmg_2_3" } ], + "blueprint_provides": [ { "id": "fbmg_2_wall" } ], + "blueprint_excludes": [ { "id": "fbmg_2_wall" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_4_wood", + "description": "Now that we're able to work on short vehicles, let's extend the garage to allow for long ones, using wood panels.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_4_wood", + "blueprint_name": "extend the first wall using wood panels", + "blueprint_requires": [ { "id": "fbmg_2_3" } ], + "blueprint_provides": [ { "id": "fbmg_2_4" } ], + "blueprint_excludes": [ { "id": "fbmg_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_5_wood", + "description": "Let's extend the second wall to match the first one, using wood panels.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_5_wood", + "blueprint_name": "extend the second wall using wood", + "blueprint_requires": [ { "id": "fbmg_2_4" } ], + "blueprint_provides": [ { "id": "fbmg_2_5" } ], + "blueprint_excludes": [ { "id": "fbmg_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_7_wood", + "description": "Now that we're able to work on long vehicles, let's extend the garage to allow for really long ones, or multiple vehicles, using wood panels.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_7_wood", + "blueprint_name": "extend the first wall using wood panels", + "blueprint_requires": [ { "id": "fbmg_2_6" } ], + "blueprint_provides": [ { "id": "fbmg_2_7" } ], + "blueprint_excludes": [ { "id": "fbmg_2_7" }, { "id": "fbmg_2_gate_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_8_wood", + "description": "Let's extend the second wall to match the first one, using wood panels.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_8_wood", + "blueprint_name": "extend the second wall using wood panels", + "blueprint_requires": [ { "id": "fbmg_2_7" } ], + "blueprint_provides": [ { "id": "fbmg_2_8" } ], + "blueprint_excludes": [ { "id": "fbmg_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_10_wood", + "description": "Let's extent the garage to hangar size, allowing us to work on monster vehicles or a large number of normal ones, using wood panels.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_10_wood", + "blueprint_name": "extend the first wall using wood panels", + "blueprint_requires": [ { "id": "fbmg_2_9" } ], + "blueprint_provides": [ { "id": "fbmg_2_10" } ], + "blueprint_excludes": [ { "id": "fbmg_2_10" }, { "id": "fbmg_2_gate_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmg_2_11_wood", + "description": "Let's extend the second wall to match the first one, using wood panels.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmg_2_11_wood", + "blueprint_name": "extend the second wall using wood panels", + "blueprint_requires": [ { "id": "fbmg_2_10" } ], + "blueprint_provides": [ { "id": "fbmg_2_11" } ], + "blueprint_excludes": [ { "id": "fbmg_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/recipe_groups.json b/data/json/recipes/basecamps/recipe_groups.json index 1d67ab21a63c7..a0096f5c647af 100644 --- a/data/json/recipes/basecamps/recipe_groups.json +++ b/data/json/recipes/basecamps/recipe_groups.json @@ -115,7 +115,16 @@ "description": "Farm version 2. Just plots, fence (optional gate for tractor), no recipes", "om_terrains": [ "field" ] }, - { "id": "faction_base_garage_0", "description": "Garage", "om_terrains": [ "field" ] }, + { + "id": "faction_base_garage_0", + "description": "Garage version 1. Fits reasonably sized vehicles, free space around it", + "om_terrains": [ "field" ] + }, + { + "id": "faction_base_garage_2_0", + "description": "Garage version 2. Maximum width, two lane size, three different lengths", + "om_terrains": [ "field" ] + }, { "id": "faction_base_livestock_0", "description": "Livestock Area", "om_terrains": [ "field" ] }, { "id": "faction_base_saltworks_0", "description": "Saltworks Area", "om_terrains": [ "field" ] }, { "id": "faction_base_storehouse_0", "description": "Central Storage Building", "om_terrains": [ "field" ] }, diff --git a/data/json/recipes/basecamps/recipe_modular_farm/recipe_modular_farm_common.json b/data/json/recipes/basecamps/recipe_modular_farm/recipe_modular_farm_common.json deleted file mode 100644 index 195e77c42f805..0000000000000 --- a/data/json/recipes/basecamps/recipe_modular_farm/recipe_modular_farm_common.json +++ /dev/null @@ -1,18 +0,0 @@ -[ - { - "type": "recipe", - "activity_level": "MODERATE_EXERCISE", - "result": "faction_base_farm_2_0", - "description": "Survey land for a farming area.", - "category": "CC_BUILDING", - "subcategory": "CSC_BUILDING_BASES", - "skill_used": "fabrication", - "autolearn": false, - "never_learn": true, - "construction_blueprint": "faction_base_farm_2_0", - "blueprint_name": "farm area survey", - "time": "3 h", - "blueprint_requires": [ { "id": "not_an_upgrade" } ], - "blueprint_provides": [ { "id": "fbmf_2" } ] - } -] diff --git a/data/json/recipes/recipe_food.json b/data/json/recipes/recipe_food.json index 5d3fc6b5f6111..fa0ed9bac0b52 100644 --- a/data/json/recipes/recipe_food.json +++ b/data/json/recipes/recipe_food.json @@ -4701,6 +4701,7 @@ [ "corn_kernels", 3 ], [ "rehydrated_corn_kernels", 3 ], [ "honeydew", 3 ], + [ "honeycomb", 1 ], [ "can_corn", 3 ] ], [ [ "lye_powder", 20 ] ], @@ -5320,6 +5321,31 @@ ] ] }, + { + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "result": "sandwich_reuben", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "difficulty": 2, + "time": "7 m 30 s", + "autolearn": true, + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 2 } ], + "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "components": [ + [ [ "meat_cooked", 1, "LIST" ] ], + [ [ "cheese", 2 ], [ "cheese_hard", 2 ] ], + [ [ "bread_sandwich", 2, "LIST" ] ], + [ [ "sauerkraut", 1 ] ], + [ [ "ketchup", 1 ] ], + [ [ "onion", 1 ] ], + [ [ "horseradish", 1 ] ], + [ [ "mayonnaise", 1 ] ], + [ [ "seasoning_salt", 5 ] ], + [ [ "hot_sauce", 1 ] ] + ] + }, { "type": "recipe", "activity_level": "LIGHT_EXERCISE", diff --git a/data/json/techniques.json b/data/json/techniques.json index 45237ce283398..af5f67a02153f 100644 --- a/data/json/techniques.json +++ b/data/json/techniques.json @@ -450,7 +450,7 @@ "messages": [ "You sweep kick %s", " sweep kicks %s" ], "skill_requirements": [ { "name": "unarmed", "level": 2 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_capoeira_onmove" ], + "required_buffs_all": [ "buff_capoeira_onmove" ], "weighting": 2, "down_dur": 1, "mult_bonuses": [ { "stat": "movecost", "scale": 0.75 } ] @@ -462,7 +462,7 @@ "messages": [ "You spin kick %s", " spin kicks %s" ], "skill_requirements": [ { "name": "unarmed", "level": 5 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_capoeira_onmove" ], + "required_buffs_all": [ "buff_capoeira_onmove" ], "weighting": 2, "crit_tec": true, "stun_dur": 1, @@ -530,7 +530,7 @@ "messages": [ "You block the attack and send %s spinning", " blocks and spins %s" ], "skill_requirements": [ { "name": "unarmed", "level": 2 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_dragon_onhit" ], + "required_buffs_all": [ "buff_dragon_onhit" ], "block_counter": true, "down_dur": 1, "mult_bonuses": [ @@ -547,7 +547,7 @@ "messages": [ "You dodge the attack and leave %s off balance", " dodges and leaves %s off balance" ], "skill_requirements": [ { "name": "unarmed", "level": 3 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_dragon_onhit" ], + "required_buffs_all": [ "buff_dragon_onhit" ], "dodge_counter": true, "stun_dur": 1, "mult_bonuses": [ @@ -614,7 +614,7 @@ "messages": [ "You combination strike %s", " combination strikes %s" ], "skill_requirements": [ { "name": "melee", "level": 2 } ], "melee_allowed": true, - "req_buffs": [ "buff_eskrima_oncrit" ], + "required_buffs_all": [ "buff_eskrima_oncrit" ], "crit_tec": true, "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 }, @@ -677,7 +677,7 @@ "messages": [ "Your feint leads to a compound attack against %s", "'s feint leads to a compound attack against %s" ], "skill_requirements": [ { "name": "melee", "level": 3 } ], "melee_allowed": true, - "req_buffs": [ "buff_fencing_onmiss" ], + "required_buffs_all": [ "buff_fencing_onmiss" ], "weighting": 4, "crit_ok": true, "mult_bonuses": [ @@ -761,7 +761,7 @@ "messages": [ "You hook and drag %s down", " hooks and drags %s down" ], "skill_requirements": [ { "name": "melee", "level": 3 } ], "melee_allowed": true, - "req_buffs": "buff_medievalpole_onmiss", + "required_buffs_all": "buff_medievalpole_onmiss", "crit_ok": true, "weighting": 2, "down_dur": 2, @@ -1026,7 +1026,7 @@ "messages": [ "You wrestle %s to the ground", " wrestles %s to the ground" ], "skill_requirements": [ { "name": "melee", "level": 4 } ], "melee_allowed": true, - "req_buffs": [ "buff_swordsmanship_onpause" ], + "required_buffs_all": [ "buff_swordsmanship_onpause" ], "mult_bonuses": [ { "stat": "damage", "type": "cut", "scale": 0.5 }, { "stat": "damage", "type": "stab", "scale": 0.33 } ], "crit_tec": true, "down_dur": 2 @@ -1038,7 +1038,7 @@ "messages": [ "You drive the point of your blade into %s", " drives their blade into %s" ], "skill_requirements": [ { "name": "melee", "level": 3 } ], "melee_allowed": true, - "req_buffs": [ "buff_swordsmanship_onpause" ], + "required_buffs_all": [ "buff_swordsmanship_onpause" ], "crit_ok": true, "flat_bonuses": [ { "stat": "arpen", "type": "cut", "scaling-stat": "str", "scale": 1.5 }, @@ -1189,7 +1189,7 @@ "messages": [ "You strike at %s's weaknesses", " strikes %s's weaknesses" ], "skill_requirements": [ { "name": "melee", "level": 5 } ], "melee_allowed": true, - "req_buffs": [ "buff_niten_ondodge" ], + "required_buffs_all": [ "buff_niten_ondodge" ], "crit_ok": true, "stun_dur": 1, "mult_bonuses": [ @@ -1496,7 +1496,7 @@ "messages": [ "You palm strike %s", " palm strikes %s" ], "skill_requirements": [ { "name": "unarmed", "level": 1 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_tai_chi_onpause" ], + "required_buffs_all": [ "buff_tai_chi_onpause" ], "knockback_dist": 1, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ] }, @@ -1520,7 +1520,7 @@ "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, "crit_tec": true, - "req_buffs": [ "buff_tai_chi_onpause" ], + "required_buffs_all": [ "buff_tai_chi_onpause" ], "knockback_dist": 1, "stun_dur": 1, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 2.0 } ] @@ -1560,7 +1560,7 @@ "messages": [ "You force %s back with a vertical straight punch", " forces %s back with a vertical straight punch" ], "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_wingchun_onpause" ], + "required_buffs_all": [ "buff_wingchun_onpause" ], "weighting": 2, "knockback_dist": 1, "knockback_follow": true, @@ -1584,7 +1584,7 @@ "messages": [ "You knock %s back with a solid L-hook", " knocks %s back with a solid L-hook" ], "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, - "req_buffs": [ "buff_wingchun_onpause" ], + "required_buffs_all": [ "buff_wingchun_onpause" ], "weighting": 2, "crit_tec": true, "down_dur": 1, diff --git a/data/mods/Aftershock/items/inactiverobot.json b/data/mods/Aftershock/items/inactiverobot.json index 3551274a7cfd9..e720a4764692e 100644 --- a/data/mods/Aftershock/items/inactiverobot.json +++ b/data/mods/Aftershock/items/inactiverobot.json @@ -437,7 +437,7 @@ "type": "TOOL", "copy-from": "bot_skitterbot_base", "name": "inactive rat snatcher", - "description": "A small hexapod drone designed to hold small pests, folded into a small cube for easy of storage. Its capable of hunting all sorts of small mammals with remarkable efficiency, but shouldn't be expected to handle anything much bigger than a rat.", + "description": "A small hexapod drone designed to hold small pests, folded into a small cube for easy of storage. Its capable of hunting all sorts of small mammals with remarkable efficiency, but shouldn't be expected to handle anything much bigger than a rat.", "color": "dark_gray", "weight": "750 g", "volume": "1 L", diff --git a/data/mods/Aftershock/player/bionics.json b/data/mods/Aftershock/player/bionics.json index 1560dd065947b..9990143e1f9fe 100644 --- a/data/mods/Aftershock/player/bionics.json +++ b/data/mods/Aftershock/player/bionics.json @@ -194,5 +194,381 @@ "stat_bonus": [ [ "INT", -4 ], [ "PER", -2 ] ], "canceled_mutations": [ "INT_UP", "INT_UP_2", "INT_UP_3", "INT_UP_4", "INT_ALPHA" ], "spell_on_activation": { "id": "skullgun_snapback", "hit_self": true } + }, + { + "id": "bio_armor_arms", + "type": "bionic", + "name": { "str": "Intradermal Alloy - Arms" }, + "description": "An advanced protective meshwork has been woven into the flesh on your arms and hands, protecting them from physical trauma.", + "occupied_bodyparts": [ [ "arm_l", 4 ], [ "arm_r", 4 ], [ "hand_l", 1 ], [ "hand_r", 1 ] ], + "bash_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ], [ "hand_l", 3 ], [ "hand_r", 3 ] ], + "cut_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ], [ "hand_l", 3 ], [ "hand_r", 3 ] ], + "bullet_protec": [ [ "arm_l", 3 ], [ "arm_r", 3 ], [ "hand_l", 3 ], [ "hand_r", 3 ] ], + "encumbrance": [ [ "arm_l", 1 ], [ "arm_r", 1 ], [ "hand_l", 1 ], [ "hand_r", 1 ] ], + "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], + "mutation_conflicts": [ + "THICKSKIN", + "THINSKIN", + "ALBINO", + "SKIN_ROUGH", + "M_SKIN", + "M_SKIN2", + "M_SKIN3", + "SCALES", + "THICK_SCALES", + "SLEEK_SCALES", + "FEATHERS", + "DOWN", + "LIGHTFUR", + "FUR", + "URSINE_FUR", + "LUPINE_FUR", + "FELINE_FUR", + "LYNX_FUR", + "CHITIN", + "CHITIN2", + "CHITIN3", + "CHITIN_FUR", + "CHITIN_FUR2", + "CHITIN_FUR3", + "CF_HAIR", + "SPINES", + "QUILLS", + "BARBS", + "PLANTSKIN", + "BARK", + "THORNS", + "LEAVES", + "LEAVES2", + "LEAVES3", + "SLIMY", + "VISCOUS", + "AMORPHOUS", + "BENDY1", + "BENDY2", + "BENDY3", + "WINGS_BIRD", + "WINGS_INSECT", + "LARGE", + "LARGE_OK", + "HUGE", + "HUGE_OK", + "SMALL", + "SMALL2", + "SMALL_OK", + "WINGS_STUB", + "WINGS_BAT", + "WINGS_BUTTERFLY", + "PALE", + "SPOTS", + "SUNBURN", + "SORES", + "CHLOROMORPH", + "ARM_FEATHERS", + "INSECT_ARMS", + "INSECT_ARMS_OK", + "ARACHNID_ARMS", + "ARACHNID_ARMS_OK", + "ARM_TENTACLES", + "ARM_TENTACLES_4", + "ARM_TENTACLES_8", + "CLAWS_TENTACLES", + "ACIDPROOF", + "TOXICFLESH", + "FRESHWATEROSMOSIS", + "PAWS", + "PAWS_LARGE", + "NAILS", + "TALONS", + "CLAWS", + "CLAWS_RETRACT", + "CLAWS_RAT", + "CLAWS_ST", + "WEBBED", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR", + "PAWS_LITTLE" + ] + }, + { + "id": "bio_armor_head", + "type": "bionic", + "name": { "str": "Intradermal Alloy - head" }, + "description": "An advanced protective meshwork has been woven into the flesh on your head and jaw region, protecting your skull from physical trauma.", + "occupied_bodyparts": [ [ "head", 3 ], [ "mouth", 1 ] ], + "bash_protec": [ [ "head", 3 ], [ "mouth", 3 ] ], + "cut_protec": [ [ "head", 3 ], [ "mouth", 3 ] ], + "bullet_protec": [ [ "head", 3 ], [ "mouth", 3 ] ], + "encumbrance": [ [ "head", 1 ] ], + "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], + "mutation_conflicts": [ + "THICKSKIN", + "THINSKIN", + "ALBINO", + "SKIN_ROUGH", + "M_SKIN", + "M_SKIN2", + "M_SKIN3", + "SCALES", + "THICK_SCALES", + "SLEEK_SCALES", + "FEATHERS", + "DOWN", + "LIGHTFUR", + "FUR", + "URSINE_FUR", + "LUPINE_FUR", + "FELINE_FUR", + "LYNX_FUR", + "CHITIN", + "CHITIN2", + "CHITIN3", + "CHITIN_FUR", + "CHITIN_FUR2", + "CHITIN_FUR3", + "CF_HAIR", + "SPINES", + "QUILLS", + "BARBS", + "PLANTSKIN", + "BARK", + "THORNS", + "LEAVES", + "LEAVES2", + "LEAVES3", + "SLIMY", + "VISCOUS", + "AMORPHOUS", + "LARGE", + "LARGE_OK", + "HUGE", + "HUGE_OK", + "SMALL", + "SMALL2", + "SMALL_OK", + "PALE", + "SPOTS", + "SUNBURN", + "SORES", + "CHLOROMORPH", + "ACIDPROOF", + "TOXICFLESH", + "FRESHWATEROSMOSIS", + "BIOLUM0", + "BIOLUM0_active", + "BIOLUM1", + "BIOLUM1_active", + "BIOLUM2", + "BIOLUM2_active", + "GILLS", + "GILLS_CEPH", + "FLOWERS", + "ROSEBUDS", + "HORNS", + "HORNS_CURLED", + "HORNS_POINTED", + "ANTLERS", + "ANTENNAE", + "HEADBUMPS", + "HAIRROOTS", + "SNOUT", + "MINOTAUR", + "MUZZLE", + "MUZZLE_BEAR", + "MUZZLE_RAT", + "MUZZLE_LONG", + "PROBISCIS", + "MOUTH_FLAPS", + "MOUTH_TENTACLES", + "MANDIBLES", + "FANGS_SPIDER", + "BEAK", + "BEAK_PECK", + "BEAK_HUM", + "GIZZARD", + "FELINE_EARS", + "CANINE_EARS", + "LUPINE_EARS", + "RABBIT_EARS", + "MOUSE_EARS", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR", + "RABBIT_NOSE", + "SLIT_NOSTRILS", + "WHISKERS", + "WHISKERS_RAT" + ] + }, + { + "id": "bio_armor_torso", + "type": "bionic", + "name": { "str": "Intradermal Alloy - torso" }, + "description": "An advanced protective meshwork has been woven into the flesh on your torso, protecting it from physical trauma.", + "occupied_bodyparts": [ [ "torso", 10 ] ], + "bash_protec": [ [ "torso", 3 ] ], + "cut_protec": [ [ "torso", 3 ] ], + "bullet_protec": [ [ "torso", 3 ] ], + "encumbrance": [ [ "torso", 3 ] ], + "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], + "canceled_mutations": [ "VINES1", "VINES2", "VINES3" ], + "mutation_conflicts": [ + "THICKSKIN", + "THINSKIN", + "ALBINO", + "SKIN_ROUGH", + "M_SKIN", + "M_SKIN2", + "M_SKIN3", + "SCALES", + "THICK_SCALES", + "SLEEK_SCALES", + "FEATHERS", + "DOWN", + "LIGHTFUR", + "FUR", + "URSINE_FUR", + "LUPINE_FUR", + "FELINE_FUR", + "LYNX_FUR", + "CHITIN", + "CHITIN2", + "CHITIN3", + "CHITIN_FUR", + "CHITIN_FUR2", + "CHITIN_FUR3", + "CF_HAIR", + "SPINES", + "QUILLS", + "BARBS", + "PLANTSKIN", + "BARK", + "THORNS", + "LEAVES", + "LEAVES2", + "LEAVES3", + "SLIMY", + "VISCOUS", + "AMORPHOUS", + "BENDY1", + "BENDY2", + "BENDY3", + "LARGE", + "LARGE_OK", + "HUGE", + "HUGE_OK", + "SMALL", + "SMALL2", + "SMALL_OK", + "PALE", + "SPOTS", + "SUNBURN", + "SORES", + "CHLOROMORPH", + "ACIDPROOF", + "TOXICFLESH", + "FRESHWATEROSMOSIS", + "INK_GLANDS", + "INSECT_ARMS", + "INSECT_ARMS_OK", + "ARACHNID_ARMS", + "ARACHNID_ARMS_OK", + "CLAWS_TENTACLES", + "SHELL", + "SHELL2", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR" + ] + }, + { + "id": "bio_armor_legs", + "type": "bionic", + "name": { "str": "Intradermal Alloy - Legs" }, + "description": "An advanced protective meshwork has been woven into the flesh on your legs and feet, protecting them from physical trauma.", + "occupied_bodyparts": [ [ "leg_l", 6 ], [ "leg_r", 6 ], [ "foot_l", 1 ], [ "foot_r", 1 ] ], + "bash_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ], [ "foot_l", 3 ], [ "foot_r", 3 ] ], + "cut_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ], [ "foot_l", 3 ], [ "foot_r", 3 ] ], + "bullet_protec": [ [ "leg_l", 3 ], [ "leg_r", 3 ], [ "foot_l", 3 ], [ "foot_r", 3 ] ], + "encumbrance": [ [ "leg_l", 1 ], [ "leg_r", 1 ], [ "foot_l", 1 ], [ "foot_r", 1 ] ], + "flags": [ "BIONIC_NPC_USABLE", "BIONIC_SHOCKPROOF" ], + "mutation_conflicts": [ + "THICKSKIN", + "THINSKIN", + "ALBINO", + "SKIN_ROUGH", + "M_SKIN", + "M_SKIN2", + "M_SKIN3", + "SCALES", + "THICK_SCALES", + "SLEEK_SCALES", + "FEATHERS", + "DOWN", + "LIGHTFUR", + "FUR", + "URSINE_FUR", + "LUPINE_FUR", + "FELINE_FUR", + "LYNX_FUR", + "CHITIN", + "CHITIN2", + "CHITIN3", + "CHITIN_FUR", + "CHITIN_FUR2", + "CHITIN_FUR3", + "CF_HAIR", + "SPINES", + "QUILLS", + "BARBS", + "PLANTSKIN", + "BARK", + "THORNS", + "LEAVES", + "LEAVES2", + "LEAVES3", + "SLIMY", + "VISCOUS", + "AMORPHOUS", + "BENDY1", + "BENDY2", + "BENDY3", + "LARGE", + "LARGE_OK", + "HUGE", + "HUGE_OK", + "SMALL", + "SMALL2", + "SMALL_OK", + "PALE", + "SPOTS", + "SUNBURN", + "SORES", + "CHLOROMORPH", + "ACIDPROOF", + "TOXICFLESH", + "FRESHWATEROSMOSIS", + "TAIL_STUB", + "TAIL_FIN", + "TAIL_LONG", + "TAIL_CATTLE", + "TAIL_RAT", + "TAIL_THICK", + "TAIL_RAPTOR", + "TAIL_FLUFFY", + "TAIL_STING", + "TAIL_CLUB", + "LEG_TENTACLES", + "LEG_TENT_BRACE", + "RAP_TALONS", + "HOOVES", + "PADDED_FEET", + "PATCHSKIN1", + "PATCHSKIN2", + "RABBIT_FUR", + "TAIL_RABBIT", + "RABBIT_FEET" + ] } ] diff --git a/data/mods/Aftershock/recipes/recipe_overrides.json b/data/mods/Aftershock/recipes/recipe_overrides.json index 7d1834ca71ac0..591203751b505 100644 --- a/data/mods/Aftershock/recipes/recipe_overrides.json +++ b/data/mods/Aftershock/recipes/recipe_overrides.json @@ -131,8 +131,8 @@ "activity_level": "LIGHT_EXERCISE", "result": "foie_gras", "category": "CC_FOOD", - "skill_used": "cooking", "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", "difficulty": 6, "charges": 1, "time": 20000, diff --git a/data/mods/CrazyCataclysm/crazy_items.json b/data/mods/CrazyCataclysm/crazy_items.json index 63f736e2cd77a..b9b4c43ed6306 100644 --- a/data/mods/CrazyCataclysm/crazy_items.json +++ b/data/mods/CrazyCataclysm/crazy_items.json @@ -120,7 +120,7 @@ "color": "light_gray", "ammo": [ "gasoline" ], "charges_per_use": 1, - "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 }, "watertight": true } ], "techniques": [ "RAPID", "WBLOCK_2" ], "use_action": { "type": "fireweapon_off", @@ -148,7 +148,7 @@ "symbol": "/", "color": "red", "ammo": [ "gasoline" ], - "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 }, "watertight": true } ], "turns_per_charge": 30, "revert_to": "firekatana_off", "techniques": [ "RAPID", "WBLOCK_2" ], @@ -182,7 +182,7 @@ "color": "light_gray", "ammo": [ "gasoline" ], "charges_per_use": 1, - "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 }, "watertight": true } ], "techniques": [ "WBLOCK_1", "WIDE", "BRUTAL", "SWEEP" ], "use_action": { "type": "fireweapon_off", @@ -211,7 +211,7 @@ "symbol": "/", "color": "red", "ammo": [ "gasoline" ], - "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 }, "watertight": true } ], "turns_per_charge": 30, "revert_to": "zweifire_off", "techniques": [ "WBLOCK_1", "WIDE", "BRUTAL", "SWEEP" ], diff --git a/data/mods/Dark-Skies-Above/blacklists/item_blacklist.json b/data/mods/Dark-Skies-Above/blacklists/item_blacklist.json index 2dcfd01d3c861..d3ea7074dd6d8 100644 --- a/data/mods/Dark-Skies-Above/blacklists/item_blacklist.json +++ b/data/mods/Dark-Skies-Above/blacklists/item_blacklist.json @@ -109,7 +109,6 @@ "bio_remote", "bio_resonator", "bio_scent_mask", - "bio_scent_vision", "bio_shock", "bio_shockwave", "bio_shotgun", @@ -134,7 +133,6 @@ "bot_rifleturret", "bot_crows_m240", "bot_turret_riot", - "cerberus_laser", "coilgun", "depowered_armor", "depowered_helmet", @@ -165,13 +163,10 @@ "iv_mutagen_troglobite", "iv_mutagen_ursine", "iv_purifier", - "l_bak_223", - "laser_pack", "laser_rifle", "leg", "light_atomic_battery_cell", "light_minus_atomic_battery_cell", - "lwfeed", "marloss_berry", "marloss_gel", "marloss_scarf", @@ -214,7 +209,6 @@ "purifier", "razorclaw_roe", "rebar_rail", - "rebar_rifle", "recipe_caseless", "reloaded_5x50dart", "resin_chunk", @@ -233,10 +227,7 @@ "rm802", "rm88_battle_rifle", "steel_rail", - "taint_tornado", - "unbio_blaster_gun", "v29", - "v29_cheap", "wine_mycus" ] } diff --git a/data/mods/DinoMod/DESIGN.md b/data/mods/DinoMod/DESIGN.md index a339b560fdf4b..2f3b9ef2a779e 100644 --- a/data/mods/DinoMod/DESIGN.md +++ b/data/mods/DinoMod/DESIGN.md @@ -23,18 +23,28 @@ As of this writing, each dinosaur touches at least ten different JSON files, lis Main DinoMod folder: * cooking_components.json is where you add the dinosaur egg to allow it to be cooked, +* monster_factions.json is where custom dino factions go. Plant eaters are pretty simple but predators have three each usually to manage famiies + +items folder: + * egg.json is where you create the dino egg monstergroups folder: * dinosaur.json is where you add the dinosaur to spawn in special DinoMod locations +* fungi.json is where you add the fungal variant to spawn in fungal locations +* lab.json is where you add the dinosaur if it is not native to North America +* misc.json has all kinds of odd lists, especially for safe, scaveninging, and underground dinos * monstergroups_egg.json is where you add the hatchling to be spawned from its own egg, and from random eggs * wilderness.json is where your dino will be spawned in natural settings. Forests should stay safe. -* zinosaur.json adds the zombified version to zombie spawn lists +* zinosaur.json adds the zombified version to zombie spawn lists and is where the zombie upgrade groups go for now monsters folder: * dinosaur.json is where you finally create the dino itself. copy-from can be a good move to keep things tidy if there is already a similar dino +* fungus.json is where you add the fungal variant * hatchling.json is where freshly hatched dinos go. Tiny dinos grow to adults directly, but larger ones (15 kg or greater) grow into... -* juvenile.json is where juveniles go. They're five times bigger but still pretty tiny by dino standards. They grow to be adults in adult weight in kg divided by six days or one year, whichever is shorter. Sauropods are they exception, they should be 1000 kg and L so they can defend themselves some. +* juvenile.json is where juveniles go. They should be about half adult size and HP. They grow to be adults in adult weight in kg divided by six days or one year, whichever is shorter. * zed-dinosaur.json is where new zombified dinos go. copy-from can be very helpful here. +* zinosaur_burned.json is where the burned zombie variant goes +* zinosaur_upgrade.json is where upgraded versions go diff --git a/data/mods/DinoMod/cooking_components.json b/data/mods/DinoMod/cooking_components.json index 622407340c1cb..f012b7ba759dd 100644 --- a/data/mods/DinoMod/cooking_components.json +++ b/data/mods/DinoMod/cooking_components.json @@ -28,8 +28,10 @@ [ "egg_allosaurus", 1 ], [ "egg_acrocanthosaurus", 1 ], [ "egg_siats", 1 ], - [ "egg_tyrannosaurus", 1 ], + [ "egg_gorgosaurus", 1 ], [ "egg_albertosaurus", 1 ], + [ "egg_qianzhousaurus", 1 ], + [ "egg_tyrannosaurus", 1 ], [ "egg_compsognathus", 1 ], [ "egg_gallimimus", 1 ], [ "egg_velociraptor", 1 ], @@ -37,6 +39,7 @@ [ "egg_deinonychus", 1 ], [ "egg_utahraptor", 1 ], [ "egg_eoraptor", 1 ], + [ "egg_amargasaurus", 1 ], [ "egg_apatosaurus", 1 ], [ "egg_brontosaurus", 1 ], [ "egg_diplodocus", 1 ], @@ -57,6 +60,7 @@ [ "egg_pachycephalosaurus", 1 ], [ "egg_pachyrhinosaurus", 1 ], [ "egg_pentaceratops", 1 ], + [ "egg_kosmoceratops", 1 ], [ "egg_torosaurus", 1 ], [ "egg_triceratops", 1 ], [ "egg_dimorphodon", 1 ], diff --git a/data/mods/DinoMod/items/egg.json b/data/mods/DinoMod/items/egg.json index 0c959971b653d..a729e9323eb22 100644 --- a/data/mods/DinoMod/items/egg.json +++ b/data/mods/DinoMod/items/egg.json @@ -72,10 +72,10 @@ }, { "type": "COMESTIBLE", - "id": "egg_tyrannosaurus", - "name": "tyrannosaurus egg", + "id": "egg_gorgosaurus", + "name": "gorgosaurus egg", "copy-from": "egg_dino", - "rot_spawn": "GROUP_EGG_tyrannosaurus" + "rot_spawn": "GROUP_EGG_gorgosaurus" }, { "type": "COMESTIBLE", @@ -84,6 +84,20 @@ "copy-from": "egg_dino", "rot_spawn": "GROUP_EGG_albertosaurus" }, + { + "type": "COMESTIBLE", + "id": "egg_qianzhousaurus", + "name": "qianzhousaurus egg", + "copy-from": "egg_dino", + "rot_spawn": "GROUP_EGG_qianzhousaurus" + }, + { + "type": "COMESTIBLE", + "id": "egg_tyrannosaurus", + "name": "tyrannosaurus egg", + "copy-from": "egg_dino", + "rot_spawn": "GROUP_EGG_tyrannosaurus" + }, { "type": "COMESTIBLE", "id": "egg_compsognathus", @@ -133,6 +147,13 @@ "copy-from": "egg_dino", "rot_spawn": "GROUP_EGG_eoraptor" }, + { + "type": "COMESTIBLE", + "id": "egg_amargasaurus", + "name": "amargasaurus egg", + "copy-from": "egg_dino", + "rot_spawn": "GROUP_EGG_amargasaurus" + }, { "type": "COMESTIBLE", "id": "egg_apatosaurus", @@ -273,6 +294,13 @@ "copy-from": "egg_dino", "rot_spawn": "GROUP_EGG_pentaceratops" }, + { + "type": "COMESTIBLE", + "id": "egg_kosmoceratops", + "name": "kosmoceratops egg", + "copy-from": "egg_dino", + "rot_spawn": "GROUP_EGG_kosmoceratops" + }, { "type": "COMESTIBLE", "id": "egg_torosaurus", @@ -314,26 +342,5 @@ "name": "mosasaurus egg", "copy-from": "egg_dino", "rot_spawn": "GROUP_EGG_mosasaurus" - }, - { - "type": "COMESTIBLE", - "id": "egg_qianzhousaurus", - "name": "qianzhousaurus egg", - "copy-from": "egg_dino", - "rot_spawn": "GROUP_EGG_qianzhousaurus" - }, - { - "type": "COMESTIBLE", - "id": "egg_amargasaurus", - "name": "amargasaurus egg", - "copy-from": "egg_dino", - "rot_spawn": "GROUP_EGG_amargasaurus" - }, - { - "type": "COMESTIBLE", - "id": "egg_kosmoceratops", - "name": "kosmoceratops egg", - "copy-from": "egg_dino", - "rot_spawn": "GROUP_EGG_kosmoceratops" } ] diff --git a/data/mods/DinoMod/mapgen/church.json b/data/mods/DinoMod/mapgen/church.json index a26227f572272..7ebe88ed818e8 100644 --- a/data/mods/DinoMod/mapgen/church.json +++ b/data/mods/DinoMod/mapgen/church.json @@ -14,18 +14,18 @@ " |W...+.........Dsss ", " ^^|--+-|------+--|^^s ", " ^||yy...rrrr...yy||^s ", - " wp...b.rttr.b....w s ", + " ♡p...b.rttr.b....♡ s ", " |......rrrr......| s ", - " ^w.......rr.......w^s ", + " ^♡.......rr.......♡^s ", " ^|.######rr######.|^s ", - " ^w.......rr.......w^s ", + " ^♡.......rr.......♡^s ", " ^|.######rr######.|^s ", - " w.......rr.......w s ", + " ♡.......rr.......♡ s ", " |.######rr######.| s ", - " ^w.......rr.......w^s ", + " ^♡.......rr.......♡^s ", " ^|.######rr######.|^s ", " ^|y......rr......y|^s ", - " |-w|----rr----|w-| s ", + " |-♡|----rr----|♡-| s ", " ^^|ll| <#..3 ", - " |..#____#..3 ", - " |--######--3 ", - " O O ", - " ", - " " - ], - "palettes": [ "roof_palette" ], - "terrain": { - "O": "t_column", - ".": "t_shingle_flat_roof", - ">": "t_stairs_down", - "<": "t_stairs_up", - "#": "t_wall_w", - "Q": "t_open_air" - } - } - }, - { - "type": "mapgen", - "method": "json", - "om_terrain": "church_steeple", - "object": { - "fill_ter": "t_floor", - "rows": [ - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ##oo## ", - " #____# ", - " o> ": "t_stairs_down", "o": "t_wall_glass", "#": "t_wall_w" } - } - }, - { - "type": "mapgen", - "method": "json", - "om_terrain": "church_steeple_end", - "object": { - "fill_ter": "t_floor", - "rows": [ - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ##oo## ", - " #____# ", - " o_ >o ", - " #____# ", - " ##oo## ", - " ", - " ", - " " - ], - "palettes": [ "roof_palette" ], - "terrain": { ">": "t_stairs_down", "#": "t_wall_w", "o": "t_wall_glass" } - } - }, - { - "type": "mapgen", - "method": "json", - "om_terrain": "church_steeple_roof", - "object": { - "fill_ter": "t_floor", - "rows": [ - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ", - " ...... ", - " ...... ", - " ...... ", - " ...... ", - " ...... ", - " ", - " ", - " " - ], - "palettes": [ "roof_palette" ], - "terrain": { ".": "t_shingle_flat_roof" } - } - }, { "type": "mapgen", "method": "json", diff --git a/data/mods/DinoMod/monster_factions.json b/data/mods/DinoMod/monster_factions.json index 81e351a2d3430..f7eae937ab890 100644 --- a/data/mods/DinoMod/monster_factions.json +++ b/data/mods/DinoMod/monster_factions.json @@ -146,6 +146,25 @@ "base_faction": "very_small_predator", "friendly": [ "tyrannosaurus", "tyrannosaurus_juvenile" ] }, + { + "type": "MONSTER_FACTION", + "name": "gorgosaurus", + "base_faction": "predator_dino", + "by_mood": "gorgosaurus", + "friendly": [ "gorgosaurus_juvenile", "gorgosaurus_hatchling" ] + }, + { + "type": "MONSTER_FACTION", + "name": "gorgosaurus_juvenile", + "base_faction": "small_predator", + "friendly": [ "gorgosaurus", "gorgosaurus_hatchling" ] + }, + { + "type": "MONSTER_FACTION", + "name": "gorgosaurus_hatchling", + "base_faction": "very_small_predator", + "friendly": [ "gorgosaurus", "gorgosaurus_juvenile" ] + }, { "type": "MONSTER_FACTION", "name": "albertosaurus", diff --git a/data/mods/DinoMod/monstergroups/dinosaur.json b/data/mods/DinoMod/monstergroups/dinosaur.json index 9e0ff4b5b5466..5d3001fcac901 100644 --- a/data/mods/DinoMod/monstergroups/dinosaur.json +++ b/data/mods/DinoMod/monstergroups/dinosaur.json @@ -12,8 +12,9 @@ { "monster": "mon_allosaurus", "freq": 8, "cost_multiplier": 30 }, { "monster": "mon_acrocanthosaurus", "freq": 8, "cost_multiplier": 40 }, { "monster": "mon_siats", "freq": 8, "cost_multiplier": 40 }, - { "monster": "mon_tyrannosaurus", "freq": 8, "cost_multiplier": 40 }, + { "monster": "mon_gorgosaurus", "freq": 4, "cost_multiplier": 35 }, { "monster": "mon_albertosaurus", "freq": 4, "cost_multiplier": 35 }, + { "monster": "mon_tyrannosaurus", "freq": 8, "cost_multiplier": 40 }, { "monster": "mon_compsognathus", "freq": 20, "cost_multiplier": 0, "pack_size": [ 4, 12 ] }, { "monster": "mon_gallimimus", "freq": 20, "cost_multiplier": 0, "pack_size": [ 4, 12 ] }, { "monster": "mon_velociraptor", "freq": 15, "cost_multiplier": 10, "pack_size": [ 2, 4 ] }, @@ -121,8 +122,9 @@ { "monster": "mon_allosaurus_hatchling", "freq": 8, "cost_multiplier": 30, "pack_size": [ 1, 2 ] }, { "monster": "mon_acrocanthosaurus_hatchling", "freq": 8, "cost_multiplier": 40, "pack_size": [ 1, 2 ] }, { "monster": "mon_siats_hatchling", "freq": 8, "cost_multiplier": 40, "pack_size": [ 1, 2 ] }, - { "monster": "mon_tyrannosaurus_hatchling", "freq": 8, "cost_multiplier": 40, "pack_size": [ 1, 2 ] }, + { "monster": "mon_gorgosaurus_hatchling", "freq": 4, "cost_multiplier": 35, "pack_size": [ 1, 2 ] }, { "monster": "mon_albertosaurus_hatchling", "freq": 4, "cost_multiplier": 35, "pack_size": [ 1, 2 ] }, + { "monster": "mon_tyrannosaurus_hatchling", "freq": 8, "cost_multiplier": 40, "pack_size": [ 1, 2 ] }, { "monster": "mon_velociraptor_hatchling", "freq": 15, "cost_multiplier": 10, "pack_size": [ 1, 2 ] }, { "monster": "mon_deinonychus_hatchling", "freq": 10, "cost_multiplier": 15, "pack_size": [ 1, 2 ] }, { "monster": "mon_utahraptor_hatchling", "freq": 5, "cost_multiplier": 30 } @@ -191,10 +193,11 @@ "default": "mon_tyrannosaurus", "monsters": [ { "monster": "mon_spinosaurus", "freq": 50, "cost_multiplier": 40 }, - { "monster": "mon_acrocanthosaurus", "freq": 250, "cost_multiplier": 40 }, - { "monster": "mon_siats", "freq": 250, "cost_multiplier": 40 }, - { "monster": "mon_tyrannosaurus", "freq": 250, "cost_multiplier": 40 }, - { "monster": "mon_albertosaurus", "freq": 200, "cost_multiplier": 35 } + { "monster": "mon_acrocanthosaurus", "freq": 150, "cost_multiplier": 40 }, + { "monster": "mon_siats", "freq": 200, "cost_multiplier": 40 }, + { "monster": "mon_gorgosaurus", "freq": 200, "cost_multiplier": 35 }, + { "monster": "mon_albertosaurus", "freq": 200, "cost_multiplier": 35 }, + { "monster": "mon_tyrannosaurus", "freq": 200, "cost_multiplier": 40 } ] }, { diff --git a/data/mods/DinoMod/monstergroups/fungi.json b/data/mods/DinoMod/monstergroups/fungi.json index 5718c90bd1099..d1fe871496a04 100644 --- a/data/mods/DinoMod/monstergroups/fungi.json +++ b/data/mods/DinoMod/monstergroups/fungi.json @@ -9,6 +9,7 @@ { "monster": "mon_zallosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, { "monster": "mon_zacrocanthosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, { "monster": "mon_ziats_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, + { "monster": "mon_zorgosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 72 }, { "monster": "mon_zalbertosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 72 }, { "monster": "mon_zyrannosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, { "monster": "mon_zallimimus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 72 }, @@ -52,6 +53,7 @@ { "monster": "mon_zallosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, { "monster": "mon_zacrocanthosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, { "monster": "mon_ziats_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, + { "monster": "mon_zorgosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 72 }, { "monster": "mon_zalbertosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 72 }, { "monster": "mon_zyrannosaurus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 144 }, { "monster": "mon_zallimimus_fungus", "freq": 1, "cost_multiplier": 0, "starts": 72 }, diff --git a/data/mods/DinoMod/monstergroups/monstergroups_egg.json b/data/mods/DinoMod/monstergroups/monstergroups_egg.json index f4d2f24a16d44..5645efbce49b8 100644 --- a/data/mods/DinoMod/monstergroups/monstergroups_egg.json +++ b/data/mods/DinoMod/monstergroups/monstergroups_egg.json @@ -91,10 +91,10 @@ "monsters": [ { "monster": "mon_siats_hatchling", "freq": 100, "cost_multiplier": 1 } ] }, { - "name": "GROUP_EGG_tyrannosaurus", + "name": "GROUP_EGG_gorgosaurus", "type": "monstergroup", - "default": "mon_tyrannosaurus_hatchling", - "monsters": [ { "monster": "mon_tyrannosaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] + "default": "mon_gorgosaurus_hatchling", + "monsters": [ { "monster": "mon_gorgosaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] }, { "name": "GROUP_EGG_albertosaurus", @@ -102,6 +102,18 @@ "default": "mon_albertosaurus_hatchling", "monsters": [ { "monster": "mon_albertosaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] }, + { + "name": "GROUP_EGG_qianzhousaurus", + "type": "monstergroup", + "default": "mon_qianzhousaurus_hatchling", + "monsters": [ { "monster": "mon_qianzhousaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] + }, + { + "name": "GROUP_EGG_tyrannosaurus", + "type": "monstergroup", + "default": "mon_tyrannosaurus_hatchling", + "monsters": [ { "monster": "mon_tyrannosaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] + }, { "name": "GROUP_EGG_compsognathus", "type": "monstergroup", @@ -144,6 +156,12 @@ "default": "mon_eoraptor_hatchling", "monsters": [ { "monster": "mon_eoraptor_hatchling", "freq": 100, "cost_multiplier": 1 } ] }, + { + "name": "GROUP_EGG_amargasaurus", + "type": "monstergroup", + "default": "mon_amargasaurus_hatchling", + "monsters": [ { "monster": "mon_amargasaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] + }, { "name": "GROUP_EGG_apatosaurus", "type": "monstergroup", @@ -264,6 +282,12 @@ "default": "mon_pentaceratops_hatchling", "monsters": [ { "monster": "mon_pentaceratops_hatchling", "freq": 100, "cost_multiplier": 1 } ] }, + { + "name": "GROUP_EGG_kosmoceratops", + "type": "monstergroup", + "default": "mon_kosmoceratops_hatchling", + "monsters": [ { "monster": "mon_kosmoceratops_hatchling", "freq": 100, "cost_multiplier": 1 } ] + }, { "name": "GROUP_EGG_torosaurus", "type": "monstergroup", @@ -299,23 +323,5 @@ "type": "monstergroup", "default": "mon_mosasaurus_hatchling", "monsters": [ { "monster": "mon_mosasaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] - }, - { - "name": "GROUP_EGG_qianzhousaurus", - "type": "monstergroup", - "default": "mon_qianzhousaurus_hatchling", - "monsters": [ { "monster": "mon_qianzhousaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] - }, - { - "name": "GROUP_EGG_kosmoceratops", - "type": "monstergroup", - "default": "mon_kosmoceratops_hatchling", - "monsters": [ { "monster": "mon_kosmoceratops_hatchling", "freq": 100, "cost_multiplier": 1 } ] - }, - { - "name": "GROUP_EGG_amargasaurus", - "type": "monstergroup", - "default": "mon_amargasaurus_hatchling", - "monsters": [ { "monster": "mon_amargasaurus_hatchling", "freq": 100, "cost_multiplier": 1 } ] } ] diff --git a/data/mods/DinoMod/monstergroups/wilderness.json b/data/mods/DinoMod/monstergroups/wilderness.json index f05f5d7dcabd6..d18223131e572 100644 --- a/data/mods/DinoMod/monstergroups/wilderness.json +++ b/data/mods/DinoMod/monstergroups/wilderness.json @@ -288,6 +288,11 @@ { "monster": "mon_zyrannosaurus", "freq": 2, "cost_multiplier": 80, "starts": 168 }, { "monster": "mon_zyrannosaurus", "freq": 2, "cost_multiplier": 80, "starts": 672 }, { "monster": "mon_zyrannosaurus", "freq": 2, "cost_multiplier": 80, "starts": 2160 }, + { "monster": "mon_gorgosaurus", "freq": 4, "cost_multiplier": 35 }, + { "monster": "mon_zorgosaurus", "freq": 1, "cost_multiplier": 35, "starts": 72 }, + { "monster": "mon_zorgosaurus", "freq": 1, "cost_multiplier": 35, "starts": 168 }, + { "monster": "mon_zorgosaurus", "freq": 1, "cost_multiplier": 35, "starts": 672 }, + { "monster": "mon_zorgosaurus", "freq": 1, "cost_multiplier": 35, "starts": 2160 }, { "monster": "mon_albertosaurus", "freq": 4, "cost_multiplier": 35 }, { "monster": "mon_zalbertosaurus", "freq": 1, "cost_multiplier": 35, "starts": 72 }, { "monster": "mon_zalbertosaurus", "freq": 1, "cost_multiplier": 35, "starts": 168 }, @@ -483,6 +488,8 @@ { "monster": "mon_tyrannosaurus", "freq": 2, "cost_multiplier": 40 }, { "monster": "mon_zyrannosaurus", "freq": 1, "cost_multiplier": 80, "starts": 72 }, { "monster": "mon_zyrannosaurus", "freq": 1, "cost_multiplier": 80, "starts": 672 }, + { "monster": "mon_gorgosaurus", "freq": 1, "cost_multiplier": 35 }, + { "monster": "mon_zorgosaurus", "freq": 1, "cost_multiplier": 35, "starts": 168 }, { "monster": "mon_albertosaurus", "freq": 1, "cost_multiplier": 35 }, { "monster": "mon_zalbertosaurus", "freq": 1, "cost_multiplier": 35, "starts": 168 }, { @@ -776,6 +783,7 @@ { "monster": "mon_acrocanthosaurus", "freq": 400, "cost_multiplier": 40, "conditions": [ "NIGHT" ] }, { "monster": "mon_siats", "freq": 400, "cost_multiplier": 40, "conditions": [ "NIGHT" ] }, { "monster": "mon_tyrannosaurus", "freq": 400, "cost_multiplier": 40, "conditions": [ "NIGHT" ] }, + { "monster": "mon_gorgosaurus", "freq": 200, "cost_multiplier": 35, "conditions": [ "NIGHT" ] }, { "monster": "mon_albertosaurus", "freq": 200, "cost_multiplier": 35, "conditions": [ "NIGHT" ] }, { "monster": "mon_compsognathus", diff --git a/data/mods/DinoMod/monstergroups/zinosaur.json b/data/mods/DinoMod/monstergroups/zinosaur.json index 3dd66ec379781..4cb77ae1d67b7 100644 --- a/data/mods/DinoMod/monstergroups/zinosaur.json +++ b/data/mods/DinoMod/monstergroups/zinosaur.json @@ -10,6 +10,7 @@ { "monster": "mon_zallosaurus", "freq": 80, "cost_multiplier": 60, "starts": 144 }, { "monster": "mon_zacrocanthosaurus", "freq": 80, "cost_multiplier": 60, "starts": 144 }, { "monster": "mon_ziats", "freq": 80, "cost_multiplier": 60, "starts": 144 }, + { "monster": "mon_zorgosaurus", "freq": 40, "cost_multiplier": 70, "starts": 72 }, { "monster": "mon_zalbertosaurus", "freq": 40, "cost_multiplier": 70, "starts": 72 }, { "monster": "mon_zianzhousaurus", "freq": 4, "cost_multiplier": 70, "starts": 72, "pack_size": [ 4, 8 ] }, { "monster": "mon_zyrannosaurus", "freq": 80, "cost_multiplier": 80, "starts": 144 }, @@ -100,6 +101,16 @@ { "monster": "mon_ziats_brute", "freq": 400, "cost_multiplier": 5 } ] }, + { + "type": "monstergroup", + "name": "GROUP_zorgosaurus_UPGRADE", + "default": "mon_sorgosaurus", + "monsters": [ + { "monster": "mon_sorgosaurus", "freq": 400, "cost_multiplier": 5 }, + { "monster": "mon_zorgosaurus_shady", "freq": 300, "cost_multiplier": 5 }, + { "monster": "mon_zorgosaurus_brute", "freq": 300, "cost_multiplier": 5 } + ] + }, { "type": "monstergroup", "name": "GROUP_zalbertosaurus_UPGRADE", @@ -402,6 +413,7 @@ { "monster": "mon_zilophosaurus", "freq": 1, "cost_multiplier": 20, "starts": 72 }, { "monster": "mon_zeratosaurus", "freq": 1, "cost_multiplier": 60, "starts": 72 }, { "monster": "mon_zallosaurus", "freq": 1, "cost_multiplier": 60, "starts": 144 }, + { "monster": "mon_zorgosaurus", "freq": 1, "cost_multiplier": 70, "starts": 72 }, { "monster": "mon_zalbertosaurus", "freq": 1, "cost_multiplier": 70, "starts": 72 }, { "monster": "mon_zallimimus", "freq": 1, "cost_multiplier": 10, "starts": 72 }, { "monster": "mon_zeinonychus", "freq": 1, "cost_multiplier": 30, "starts": 72 }, diff --git a/data/mods/DinoMod/monsters/dinosaur.json b/data/mods/DinoMod/monsters/dinosaur.json index 699fe6349e778..e902231914c07 100644 --- a/data/mods/DinoMod/monsters/dinosaur.json +++ b/data/mods/DinoMod/monsters/dinosaur.json @@ -227,6 +227,22 @@ "reproduction": { "baby_egg": "egg_siats", "baby_count": 3, "baby_timer": 24 }, "flags": [ "SEES", "SMELLS", "HEARS", "ANIMAL", "PATH_AVOID_DANGER_1", "BASHES", "WARM", "KEENNOSE" ] }, + { + "type": "MONSTER", + "id": "mon_gorgosaurus", + "name": { "str_sp": "gorgosaurus" }, + "copy-from": "mon_albertosaurus", + "default_faction": "gorgosaurus", + "morale": 80, + "speed": 60, + "melee_cut": 13, + "dodge": 6, + "hp": 250, + "zombify_into": "mon_zorgosaurus", + "description": "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with two small arms and a feathered mullet and tail.", + "reproduction": { "baby_egg": "egg_gorgosaurus", "baby_count": 3, "baby_timer": 24 }, + "special_attacks": [ [ "GRAB", 10 ], { "type": "bite", "cooldown": 10 }, [ "LUNGE", 15 ] ] + }, { "type": "MONSTER", "id": "mon_albertosaurus", diff --git a/data/mods/DinoMod/monsters/fungus.json b/data/mods/DinoMod/monsters/fungus.json index a4f808161479b..fc0086730f4be 100644 --- a/data/mods/DinoMod/monsters/fungus.json +++ b/data/mods/DinoMod/monsters/fungus.json @@ -113,6 +113,25 @@ "upgrades": { }, "flags": [ "SEES", "SMELLS", "POISON", "STUMBLES", "BASHES", "NO_BREATHE", "FILTHY", "WARM" ] }, + { + "id": "mon_zorgosaurus_fungus", + "type": "MONSTER", + "name": { "str": "fungal gorgosaurus zombie" }, + "description": "Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils now sprout from its mouth, eyes, and other orifices, holding together a shambling mass of mold-covered flesh.", + "copy-from": "mon_zorgosaurus", + "default_faction": "fungus", + "species": [ "FUNGUS" ], + "diff": 2, + "proportional": { "hp": 0.75, "speed": 0.65 }, + "color": "light_gray", + "relative": { "melee_skill": -1, "melee_dice": -1, "melee_dice_sides": 3, "armor_bash": 3 }, + "bleed_rate": 0, + "vision_day": 5, + "vision_night": 5, + "special_attacks": [ [ "FUNGUS", 200 ], { "type": "bite", "cooldown": 20 }, [ "GRAB", 20 ], [ "scratch", 20 ], [ "LUNGE", 20 ] ], + "upgrades": { }, + "flags": [ "SEES", "SMELLS", "POISON", "STUMBLES", "BASHES", "DESTROYS", "NO_BREATHE", "FILTHY", "WARM" ] + }, { "id": "mon_zalbertosaurus_fungus", "type": "MONSTER", diff --git a/data/mods/DinoMod/monsters/hatchling.json b/data/mods/DinoMod/monsters/hatchling.json index 26b1cf76c625b..65659be60ed82 100644 --- a/data/mods/DinoMod/monsters/hatchling.json +++ b/data/mods/DinoMod/monsters/hatchling.json @@ -57,6 +57,14 @@ "default_faction": "siats_hatchling", "upgrades": { "age_grow": 30, "into": "mon_siats_juvenile" } }, + { + "id": "mon_gorgosaurus_hatchling", + "type": "MONSTER", + "copy-from": "mon_compsognathus_hatchling", + "name": "light red and white hatchling", + "default_faction": "gorgosaurus_hatchling", + "upgrades": { "age_grow": 30, "into": "mon_gorgosaurus_juvenile" } + }, { "id": "mon_albertosaurus_hatchling", "type": "MONSTER", @@ -140,6 +148,13 @@ "default_faction": "velociraptor_hatchling", "upgrades": { "age_grow": 20, "into": "mon_velociraptor" } }, + { + "id": "mon_nothronychus_hatchling", + "type": "MONSTER", + "copy-from": "mon_gallimimus_hatchling", + "name": "green and magenta hatchling", + "upgrades": { "age_grow": 40, "into": "mon_nothronychus_juvenile" } + }, { "id": "mon_deinonychus_hatchling", "type": "MONSTER", @@ -166,13 +181,6 @@ "extend": { "flags": [ "DOGFOOD", "CANPLAY" ] }, "upgrades": { "age_grow": 14, "into": "mon_eoraptor" } }, - { - "id": "mon_nothronychus_hatchling", - "type": "MONSTER", - "copy-from": "mon_gallimimus_hatchling", - "name": "green and magenta hatchling", - "upgrades": { "age_grow": 40, "into": "mon_nothronychus_juvenile" } - }, { "id": "mon_amargasaurus_hatchling", "type": "MONSTER", diff --git a/data/mods/DinoMod/monsters/juvenile.json b/data/mods/DinoMod/monsters/juvenile.json index ce4e93d227fb1..45a308848cb55 100644 --- a/data/mods/DinoMod/monsters/juvenile.json +++ b/data/mods/DinoMod/monsters/juvenile.json @@ -9,7 +9,7 @@ "color": "magenta_green", "upgrades": { "age_grow": 65, "into": "mon_dilophosaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY", "SWIMS" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "SWIMS" ] }, { "id": "mon_ceratosaurus_juvenile", @@ -21,7 +21,7 @@ "color": "magenta_green", "upgrades": { "age_grow": 90, "into": "mon_ceratosaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "SWIMS" ] }, { "id": "mon_spinosaurus_juvenile", @@ -30,87 +30,116 @@ "description": "A huge predatory dinosaur juvenile with a large fan on its back.", "default_faction": "spinosaurus_juvenile", "copy-from": "mon_spinosaurus", - "color": "red_white", + "aggression": 50, "hp": 200, "upgrades": { "age_grow": 365, "into": "mon_spinosaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY", "SWIMS" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "SWIMS" ] }, { "id": "mon_allosaurus_juvenile", "type": "MONSTER", - "name": "brown and white two-legged juvenile", - "description": "A small bipedal meat-eating dinosaur juvenile with huge shiny eyes, it could be from a number of different species.", + "name": { "str": "juvenile allosaurus", "str_pl": "juvenile allosauruses" }, + "description": "A large bipedal meat-eating dinosaur juvenile.", "default_faction": "allosaurus_juvenile", - "copy-from": "mon_gallimimus_juvenile", - "color": "brown_white", + "copy-from": "mon_allosaurus", + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, "upgrades": { "age_grow": 150, "into": "mon_allosaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED" ] }, { "id": "mon_acrocanthosaurus_juvenile", "type": "MONSTER", - "name": "brown and white two-legged juvenile", - "description": "A small bipedal meat-eating dinosaur juvenile with huge shiny eyes, it could be from a number of different species.", + "name": "acrocanthosaurus juvenile", + "description": "Large predatory bipedal dinosaur juvenile with a tall ridge running the length of its back covered with heavy muscles.", "default_faction": "acrocanthosaurus_juvenile", - "copy-from": "mon_gallimimus_juvenile", - "color": "brown_white", + "copy-from": "mon_acrocanthosaurus", + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, "upgrades": { "age_grow": 365, "into": "mon_acrocanthosaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED" ] }, { "id": "mon_siats_juvenile", "type": "MONSTER", - "name": "brown and white two-legged juvenile", - "description": "A small bipedal meat-eating dinosaur juvenile with huge shiny eyes, it could be from a number of different species.", + "name": "siats juvenile", + "description": "Large predatory bipedal dinosaur juvenile with long claws and strong arms for grappling.", "default_faction": "siats_juvenile", - "copy-from": "mon_gallimimus_juvenile", - "color": "brown_white", + "copy-from": "mon_siats", + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, "upgrades": { "age_grow": 365, "into": "mon_siats" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED" ] + }, + { + "id": "mon_gorgosaurus_juvenile", + "type": "MONSTER", + "name": "gorgosaurus juvenile", + "description": "Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile forward, with two small arms and a feathered mullet and tail.", + "default_faction": "gorgosaurus_juvenile", + "copy-from": "mon_gorgosaurus", + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, + "upgrades": { "age_grow": 365, "into": "mon_gorgosaurus" }, + "petfood": { "food": [ "DINOFOOD_B" ] }, + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED" ] }, { "id": "mon_albertosaurus_juvenile", "type": "MONSTER", - "name": "red and white two-legged juvenile", - "description": "A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it could be from a number of different species.", + "name": "albertosaurus juvenile", + "description": "Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile forward, with long strong arms and a feathered mullet and tail.", "default_faction": "albertosaurus_juvenile", - "copy-from": "mon_gallimimus_juvenile", - "color": "light_red_white", - "dodge": 5, + "copy-from": "mon_albertosaurus", + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, "upgrades": { "age_grow": 365, "into": "mon_albertosaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED" ] }, { "id": "mon_qianzhousaurus_juvenile", "type": "MONSTER", - "name": "red and white two-legged juvenile", - "copy-from": "mon_gallimimus_juvenile", - "description": "A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it could be from a number of different species.", + "name": "qianzhousaurus juvenile", + "description": "This large, bipedal, feather-covered dinosaur juvenile has a long, gator-like mouth with sharp teeth.", "default_faction": "qianzhousaurus_juvenile", - "color": "light_red_white", - "dodge": 6, + "copy-from": "mon_qianzhousaurus", + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, "upgrades": { "age_grow": 365, "into": "mon_qianzhousaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED" ] }, { "id": "mon_tyrannosaurus_juvenile", "type": "MONSTER", - "name": "red and white two-legged juvenile", + "name": "tyrannosaurus juvenile", "description": "A huge predatory dinosaur juvenile with large sharp teeth.", "default_faction": "tyrannosaurus_juvenile", "copy-from": "mon_tyrannosaurus", - "hp": 200, - "color": "red_white", - "dodge": 5, + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, "upgrades": { "age_grow": 365, "into": "mon_tyrannosaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED" ] }, { "id": "mon_gallimimus_juvenile", @@ -170,8 +199,7 @@ "copy-from": "mon_gallimimus_juvenile", "color": "dark_gray_white", "upgrades": { "age_grow": 80, "into": "mon_utahraptor" }, - "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "CANPLAY" ] + "petfood": { "food": [ "DINOFOOD_B" ] } }, { "id": "mon_amargasaurus_juvenile", @@ -409,19 +437,7 @@ "color": "light_gray_yellow", "upgrades": { "age_grow": 14, "into": "mon_pteranodon" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ - "SEES", - "HEARS", - "SMELLS", - "FLIES", - "ANIMAL", - "PATH_AVOID_DANGER_1", - "WARM", - "CANPLAY", - "NO_BREED", - "CANPLAY", - "HIT_AND_RUN" - ] + "flags": [ "SEES", "HEARS", "SMELLS", "FLIES", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "HIT_AND_RUN" ] }, { "id": "mon_quetzalcoatlus_juvenile", @@ -433,19 +449,7 @@ "color": "light_gray_yellow", "upgrades": { "age_grow": 40, "into": "mon_quetzalcoatlus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ - "SEES", - "HEARS", - "FLIES", - "SMELLS", - "ANIMAL", - "PATH_AVOID_DANGER_1", - "WARM", - "CANPLAY", - "NO_BREED", - "CANPLAY", - "HIT_AND_RUN" - ] + "flags": [ "SEES", "HEARS", "FLIES", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CANPLAY", "NO_BREED", "HIT_AND_RUN" ] }, { "id": "mon_mosasaurus_juvenile", @@ -453,10 +457,13 @@ "name": "mosasaurus juvenile", "description": "A juvenile predatory aquatic reptile with large pointy teeth, but not the largest.", "default_faction": "mosasaurus_juvenile", - "copy-from": "mon_gallimimus_juvenile", - "color": "red_white", + "copy-from": "mon_mosasaurus", + "volume": "750 L", + "weight": "750 kg", + "aggression": 50, + "hp": 100, "upgrades": { "age_grow": 365, "into": "mon_mosasaurus" }, "petfood": { "food": [ "DINOFOOD_B" ] }, - "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "CANPLAY", "NO_BREED", "CANPLAY", "SWIMS", "AQUATIC" ] + "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "CANPLAY", "NO_BREED", "SWIMS", "AQUATIC" ] } ] diff --git a/data/mods/DinoMod/monsters/zed-dinosaur.json b/data/mods/DinoMod/monsters/zed-dinosaur.json index c07867b3fd12c..16221c5dfb6a2 100644 --- a/data/mods/DinoMod/monsters/zed-dinosaur.json +++ b/data/mods/DinoMod/monsters/zed-dinosaur.json @@ -164,6 +164,20 @@ "upgrades": { "half_life": 14, "into_group": "GROUP_ziats_UPGRADE" }, "flags": [ "SEES", "SMELLS", "HEARS", "POISON", "STUMBLES", "BASHES", "NO_BREATHE", "REVIVES", "FILTHY", "WARM" ] }, + { + "type": "MONSTER", + "id": "mon_zorgosaurus", + "name": { "str_sp": "gorgosaurus zombie" }, + "copy-from": "mon_zalbertosaurus", + "speed": 50, + "melee_cut": 13, + "hp": 250, + "description": "Massive jaws drooling black liquid lifted over a huge shuffling dinosaur corpse.", + "special_attacks": [ { "type": "bite", "cooldown": 10 }, [ "GRAB", 15 ], [ "scratch", 20 ], [ "LUNGE", 15 ] ], + "burn_into": "mon_zorgosaurus_scorched", + "fungalize_into": "mon_zorgosaurus_fungus", + "upgrades": { "half_life": 14, "into_group": "GROUP_zorgosaurus_UPGRADE" } + }, { "type": "MONSTER", "id": "mon_zalbertosaurus", diff --git a/data/mods/DinoMod/monsters/zinosaur_burned.json b/data/mods/DinoMod/monsters/zinosaur_burned.json index 9c50478cd281a..a326fb9c0618c 100644 --- a/data/mods/DinoMod/monsters/zinosaur_burned.json +++ b/data/mods/DinoMod/monsters/zinosaur_burned.json @@ -143,6 +143,30 @@ "harvest": "zed_dino_leather", "flags": [ "SEES", "HEARS", "STUMBLES", "POISON", "NO_BREATHE", "REVIVES", "REVIVES_HEALTHY", "NO_NECRO", "FILTHY" ] }, + { + "type": "MONSTER", + "id": "mon_zorgosaurus_scorched", + "name": { "str": "scorched gorgosaurus zombie" }, + "copy-from": "mon_zorgosaurus", + "description": "Heavily-burned zombie dinosaur predator that still reeks of charred meat. Its flesh has mended into a leathery shell.", + "proportional": { "hp": 0.5, "speed": 0.85 }, + "color": "i_brown", + "relative": { + "melee_skill": -2, + "melee_dice_sides": -1, + "armor_bash": 2, + "armor_cut": 9, + "armor_bullet": 7, + "armor_acid": 3, + "armor_fire": 15 + }, + "bleed_rate": 0, + "vision_day": 10, + "special_attacks": [ [ "GRAB", 7 ] ], + "death_function": { "effect": { "id": "death_smokeburst", "hit_self": true }, "message": "A %s explodes!" }, + "harvest": "zed_dino_leather", + "flags": [ "SEES", "HEARS", "STUMBLES", "POISON", "NO_BREATHE", "REVIVES", "REVIVES_HEALTHY", "NO_NECRO", "FILTHY" ] + }, { "type": "MONSTER", "id": "mon_zalbertosaurus_scorched", diff --git a/data/mods/DinoMod/monsters/zinosaur_upgrade.json b/data/mods/DinoMod/monsters/zinosaur_upgrade.json index 2eb90b745ca9f..adbf177b233e7 100644 --- a/data/mods/DinoMod/monsters/zinosaur_upgrade.json +++ b/data/mods/DinoMod/monsters/zinosaur_upgrade.json @@ -144,6 +144,31 @@ "extend": { "flags": [ "GROUP_BASH", "PUSH_MON", "PUSH_VEH" ] }, "categories": [ "DINOSAUR" ] }, + { + "type": "MONSTER", + "id": "mon_zorgosaurus_brute", + "name": { "str": "Gorgosaurus Goliath" }, + "copy-from": "mon_zorgosaurus", + "looks_like": "mon_zyrannosaurus", + "description": "Massive jaws lifted by an upright undead dinosaur body bulging with distended muscles and swollen, festering wounds.", + "diff": 2, + "color": "red", + "proportional": { "hp": 1.5, "speed": 1.5 }, + "relative": { + "melee_dice": 1, + "melee_dice_sides": 5, + "melee_cut": 2, + "armor_bash": 4, + "armor_cut": 6, + "armor_bullet": 5, + "vision_night": 1 + }, + "bleed_rate": 50, + "upgrades": { }, + "special_attacks": [ [ "SMASH", 30 ], [ "GRAB", 7 ] ], + "extend": { "flags": [ "GROUP_BASH", "PUSH_MON", "PUSH_VEH" ] }, + "categories": [ "DINOSAUR" ] + }, { "type": "MONSTER", "id": "mon_zalbertosaurus_brute", @@ -892,10 +917,23 @@ "extend": { "flags": [ "GROUP_BASH", "PUSH_MON", "PUSH_VEH" ] }, "categories": [ "DINOSAUR" ] }, + { + "type": "MONSTER", + "id": "mon_zeratosaurus_shady", + "name": { "str_sp": "shady ceratosaurus zombie" }, + "copy-from": "mon_zeratosaurus", + "color": "light_gray", + "description": "An uncanny shadow envelops this creature. You can make out the outline of an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth.", + "upgrades": { }, + "extend": { "flags": [ "NIGHT_INVISIBILITY" ] }, + "vision_day": 3, + "vision_night": 40, + "categories": [ "DINOSAUR" ] + }, { "type": "MONSTER", "id": "mon_zpinosaurus_shady", - "name": { "str": "Spinosaurus shady zombie" }, + "name": { "str": "shady spinosaurus zombie" }, "copy-from": "mon_zpinosaurus", "color": "light_gray", "description": "An uncanny shadow envelops this creature. You can make out the outline of a huge, bipedal dinosaur with a tattered sail. The head is long and narrow, with a V-shaped snout.", @@ -907,26 +945,25 @@ }, { "type": "MONSTER", - "id": "mon_zyrannosaurus_shady", - "name": { "str_sp": "shady Z-Rex" }, - "copy-from": "mon_zyrannosaurus", - "looks_like": "mon_zyrannosaurus", + "id": "mon_zallosaurus_shady", + "name": { "str_sp": "shady allosaurus zombie" }, + "copy-from": "mon_zallosaurus", "color": "light_gray", - "description": "An uncanny shadow envelops this creature. You can make out the outline of a huge, bipedal dinosaur with feathery edges. The head looks large - lots of big teeth would fit in it.", + "description": "An uncanny shadow envelops this creature. You can make out the outline of a large, bipedal dinosaur with big, sharp teeth.", "upgrades": { }, "extend": { "flags": [ "NIGHT_INVISIBILITY" ] }, "vision_day": 3, - "vision_night": 30, + "vision_night": 40, "categories": [ "DINOSAUR" ] }, { "type": "MONSTER", - "id": "mon_zalbertosaurus_shady", - "name": { "str_sp": "shady Albertosaurus" }, - "copy-from": "mon_zalbertosaurus", + "id": "mon_zorgosaurus_shady", + "name": { "str_sp": "shady gorgosaurus zombie" }, + "copy-from": "mon_zorgosaurus", "looks_like": "mon_zyrannosaurus", "color": "light_gray", - "description": "An uncanny shadow envelops this creature. You can make out the outline of a huge, bipedal dinosaur with feathery edges. The head looks big, and below are long, grasping claws.", + "description": "An uncanny shadow envelops this creature. You can make out the outline of a huge, bipedal dinosaur with feathery edges. The head looks big, like it could hold many enormous sharp teeth.", "upgrades": { }, "extend": { "flags": [ "NIGHT_INVISIBILITY" ] }, "vision_day": 3, @@ -935,34 +972,36 @@ }, { "type": "MONSTER", - "id": "mon_zankylosaurus_shady", - "name": { "str_sp": "shady Ankylosaurus" }, - "copy-from": "mon_zankylosaurus", + "id": "mon_zalbertosaurus_shady", + "name": { "str_sp": "shady albertosaurus zombie" }, + "copy-from": "mon_zalbertosaurus", + "looks_like": "mon_zyrannosaurus", "color": "light_gray", - "description": "An uncanny shadow envelops this creature. You can make out the outline of a large, heavily-armored, four-legged dinosaur with a spiked tail.", + "description": "An uncanny shadow envelops this creature. You can make out the outline of a huge, bipedal dinosaur with feathery edges. The head looks big, and below are long, grasping claws.", "upgrades": { }, "extend": { "flags": [ "NIGHT_INVISIBILITY" ] }, "vision_day": 3, - "vision_night": 40, + "vision_night": 30, "categories": [ "DINOSAUR" ] }, { "type": "MONSTER", - "id": "mon_zallosaurus_shady", - "name": { "str_sp": "shady Allosaurus" }, - "copy-from": "mon_zallosaurus", + "id": "mon_zyrannosaurus_shady", + "name": { "str_sp": "shady Z-Rex" }, + "copy-from": "mon_zyrannosaurus", + "looks_like": "mon_zyrannosaurus", "color": "light_gray", - "description": "An uncanny shadow envelops this creature. You can make out the outline of a large, bipedal dinosaur with big, sharp teeth.", + "description": "An uncanny shadow envelops this creature. You can make out the outline of a huge, bipedal dinosaur with feathery edges. The head looks large - lots of big teeth would fit in it.", "upgrades": { }, "extend": { "flags": [ "NIGHT_INVISIBILITY" ] }, "vision_day": 3, - "vision_night": 40, + "vision_night": 30, "categories": [ "DINOSAUR" ] }, { "type": "MONSTER", "id": "mon_zothronychus_shady", - "name": { "str_sp": "shady Nothronychus" }, + "name": { "str_sp": "shady nothronychus zombie" }, "copy-from": "mon_zothronychus", "color": "light_gray", "description": "An uncanny shadow envelops this creature. You can make out the outline of a bipedal dinosaur with feathery edges. Long claws protrude from its hands.", @@ -975,7 +1014,7 @@ { "type": "MONSTER", "id": "mon_zeinonychus_shady", - "name": { "str_sp": "shady Deinonychus" }, + "name": { "str_sp": "shady deinonychus zombie" }, "copy-from": "mon_zeinonychus", "color": "light_gray", "description": "An uncanny shadow envelops this creature. You can make out the outline of a bipedal dinosaur with feathery edges. Both feet brandish a large, sickle-shaped claw.", @@ -988,7 +1027,7 @@ { "type": "MONSTER", "id": "mon_zutahraptor_shady", - "name": { "str_sp": "shady Utahraptor" }, + "name": { "str_sp": "shady utahraptor zombie" }, "copy-from": "mon_zutahraptor", "color": "light_gray", "description": "An uncanny shadow envelops this creature. You can make out the outline of a big, bipedal dinosaur with feathery edges. Both feet brandish a large, sickle-shaped claw.", @@ -1000,11 +1039,11 @@ }, { "type": "MONSTER", - "id": "mon_zeratosaurus_shady", - "name": { "str_sp": "shady Ceratosaurus" }, - "copy-from": "mon_zeratosaurus", + "id": "mon_zankylosaurus_shady", + "name": { "str_sp": "shady ankylosaurus zombie" }, + "copy-from": "mon_zankylosaurus", "color": "light_gray", - "description": "An uncanny shadow envelops this creature. You can make out the outline of an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth.", + "description": "An uncanny shadow envelops this creature. You can make out the outline of a large, heavily-armored, four-legged dinosaur with a spiked tail.", "upgrades": { }, "extend": { "flags": [ "NIGHT_INVISIBILITY" ] }, "vision_day": 3, @@ -1170,6 +1209,33 @@ "harvest": "mr_bones", "categories": [ "DINOSAUR" ] }, + { + "type": "MONSTER", + "id": "mon_sorgosaurus", + "name": { "str_sp": "skeletal gorgosaurus" }, + "copy-from": "mon_zorgosaurus", + "looks_like": "mon_zyrannosaurus", + "color": "white", + "material": [ "bone" ], + "armor_bash": 0, + "description": "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with black goo.", + "proportional": { "hp": 0.4, "speed": 0.875 }, + "relative": { + "melee_dice": 9, + "melee_dice_sides": 5, + "melee_cut": 7, + "armor_cut": 22, + "armor_bullet": 30, + "armor_stab": 30, + "armor_acid": 3, + "vision_day": -20 + }, + "bleed_rate": 50, + "upgrades": { }, + "extend": { "flags": [ "HARDTOSHOOT" ] }, + "harvest": "mr_bones", + "categories": [ "DINOSAUR" ] + }, { "type": "MONSTER", "id": "mon_salbertosaurus", diff --git a/data/mods/DinoMod/snippets.json b/data/mods/DinoMod/snippets.json index bb9147abc36a4..3ef7a593d3c7b 100644 --- a/data/mods/DinoMod/snippets.json +++ b/data/mods/DinoMod/snippets.json @@ -32,7 +32,11 @@ "id": "note_dinomod_7", "text": "\"What the hell is a brown and magenta 4 legged juvenile?! Fucker took a dozen or more .308 rounds to put down. Gives a ton of fucking meat\"" }, - { "id": "note_dinomod_8", "text": "\"I saw the most beautiful dinosaur today. I must dress her.\"" } + { "id": "note_dinomod_8", "text": "\"I saw the most beautiful dinosaur today. I must dress her.\"" }, + { + "id": "note_dinomod_9", + "text": "\"I saw this one dinosaur and I was like gorge. And then I saw this other dinosaur and I was like gooorge! And then I saw this other one and I was like gorgosaurus! Like for real.\"" + } ] }, { diff --git a/data/mods/Generic_Guns/firearms/gg_firearms_migration.json b/data/mods/Generic_Guns/firearms/gg_firearms_migration.json index 5001ed9968f02..cf3ef23505ec0 100644 --- a/data/mods/Generic_Guns/firearms/gg_firearms_migration.json +++ b/data/mods/Generic_Guns/firearms/gg_firearms_migration.json @@ -295,7 +295,7 @@ "replace": "rifle_sporter" }, { - "id": [ "pamd68", "pamd71z" ], + "id": [ "pamd68", "pamd71z", "pamd68rubik" ], "type": "MIGRATION", "replace": "rifle_assault_foreign" }, diff --git a/data/mods/MMA/martialarts.json b/data/mods/MMA/martialarts.json index c4c1337c7be3c..acaac1e75ae88 100644 --- a/data/mods/MMA/martialarts.json +++ b/data/mods/MMA/martialarts.json @@ -561,8 +561,9 @@ "description": "You are unable to maintain your Surefoot Stance and must stop moving for a short time to regain its benefits.\n\n-10% damage, -2 bash, cut, and stab armor.\nLasts 4 turn.", "melee_allowed": true, "unarmed_allowed": true, - "req_buffs": [ "mma_buff_stone_dragon_onmove1" ], + "required_buffs_all": [ "mma_buff_stone_dragon_onmove1" ], "buff_duration": 4, + "persists": true, "flat_bonuses": [ { "stat": "armor", "type": "bash", "scale": -2.0 }, { "stat": "armor", "type": "cut", "scale": -2.0 }, diff --git a/data/mods/MMA/techniques.json b/data/mods/MMA/techniques.json index 1f811bb8b9d1f..cdc576f762c20 100644 --- a/data/mods/MMA/techniques.json +++ b/data/mods/MMA/techniques.json @@ -80,7 +80,7 @@ ], "skill_requirements": [ { "name": "melee", "level": 4 } ], "melee_allowed": true, - "req_buffs": [ "mma_buff_hylian_onpause" ], + "required_buffs_all": [ "mma_buff_hylian_onpause" ], "crit_ok": true, "aoe": "spin" }, @@ -94,7 +94,7 @@ ], "skill_requirements": [ { "name": "melee", "level": 4 } ], "melee_allowed": true, - "req_buffs": [ "mma_buff_hylian_onpause" ], + "required_buffs_all": [ "mma_buff_hylian_onpause" ], "crit_ok": true, "aoe": "wide" }, @@ -305,7 +305,7 @@ "skill_requirements": [ { "name": "unarmed", "level": 3 } ], "melee_allowed": true, "unarmed_allowed": true, - "req_buffs": [ "mma_buff_setting_sun_onpause" ], + "required_buffs_all": [ "mma_buff_setting_sun_onpause" ], "down_dur": 2, "knockback_dist": 2, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.33 } ] @@ -318,7 +318,7 @@ "skill_requirements": [ { "name": "unarmed", "level": 5 } ], "melee_allowed": true, "unarmed_allowed": true, - "req_buffs": [ "mma_buff_setting_sun_onpause" ], + "required_buffs_all": [ "mma_buff_setting_sun_onpause" ], "crit_tec": true, "down_dur": 2, "knockback_dist": 4, diff --git a/data/mods/National_Guard_Camp/military.json b/data/mods/National_Guard_Camp/military.json index c7bf810ce11aa..f8766ff82ab8d 100644 --- a/data/mods/National_Guard_Camp/military.json +++ b/data/mods/National_Guard_Camp/military.json @@ -85,13 +85,13 @@ "type": "MONSTER", "name": "W11H10", "description": "Wraitheon (11H) Anti-Tank Infantry 10 Level. Part of Wraitheon's series of one-to-one auxiliaries designed to seamlessly integrate with more traditional forces.", - "starting_ammo": { "40mm_incendiary": 8 }, + "starting_ammo": { "40x46mm_m433": 8 }, "special_attacks": [ { "type": "gun", "cooldown": 3, "gun_type": "m320", - "ammo_type": "40mm_incendiary", + "ammo_type": "40x46mm_m433", "fake_skills": [ [ "gun", 1 ], [ "launcher", 1 ] ], "fake_dex": 8, "ranges": [ [ 5, 20, "DEFAULT" ] ] diff --git a/data/mods/TEST_DATA/mutations.json b/data/mods/TEST_DATA/mutations.json index 1ca4c0cd0247e..f178482eca12f 100644 --- a/data/mods/TEST_DATA/mutations.json +++ b/data/mods/TEST_DATA/mutations.json @@ -19,40 +19,41 @@ "triggers": [ [ { - "trigger_type": "MOOD", - "threshold_low": 20, + "condition": { "compare_int": [ { "u_val": "morale" }, { "const": 20 } ], "op": ">" }, "msg_on": { "text": "Your mood is above 20 and triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "MOON", - "threshold_low": 3, - "threshold_high": 5, + "condition": { + "and": [ + { "compare_int": [ { "u_val": "moon" }, { "const": 3 } ], "op": ">" }, + { "compare_int": [ { "u_val": "moon" }, { "const": 5 } ], "op": "<" } + ] + }, "msg_on": { "text": "This is the full moon and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "HUNGER", - "threshold_low": 110, + "condition": { "compare_int": [ { "u_val": "hunger" }, { "const": 110 } ], "op": ">" }, "msg_on": { "text": "You're very hungry and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "PAIN", - "threshold_low": 110, + "condition": { "compare_int": [ { "u_val": "pain" }, { "const": 110 } ], "op": ">" }, "msg_on": { "text": "You're in pain and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "THIRST", - "threshold_low": 110, + "condition": { "compare_int": [ { "u_val": "thirst" }, { "const": 110 } ], "op": ">" }, "msg_on": { "text": "You're thirsty and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "STAMINA", - "threshold_high": 1, + "condition": { "compare_int": [ { "u_val": "stamina" }, { "const": 1 } ], "op": "<" }, "msg_on": { "text": "You're low on stamina and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "TIME", - "threshold_low": 1, - "threshold_high": 3, + "condition": { + "and": [ + { "compare_int": [ { "u_val": "hour" }, { "const": 1 } ], "op": ">" }, + { "compare_int": [ { "u_val": "hour" }, { "const": 3 } ], "op": "<" } + ] + }, "msg_on": { "text": "It's 2 am and it triggers the trigger.", "rating": "mixed" } } ] @@ -69,40 +70,41 @@ "triggers": [ [ { - "trigger_type": "MOOD", - "threshold_low": 20, + "condition": { "compare_int": [ { "u_val": "morale" }, { "const": 20 } ], "op": "<" }, "msg_off": { "text": "Your mood is below 20 and triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "MOON", - "threshold_low": 5, - "threshold_high": 3, + "condition": { + "or": [ + { "compare_int": [ { "u_val": "moon" }, { "const": 3 } ], "op": "<" }, + { "compare_int": [ { "u_val": "moon" }, { "const": 5 } ], "op": ">" } + ] + }, "msg_on": { "text": "This is not the full moon anymore and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "HUNGER", - "threshold_high": 110, + "condition": { "compare_int": [ { "u_val": "hunger" }, { "const": 110 } ], "op": "<" }, "msg_on": { "text": "You're no longer very hungry and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "PAIN", - "threshold_high": 110, + "condition": { "compare_int": [ { "u_val": "pain" }, { "const": 110 } ], "op": "<" }, "msg_on": { "text": "You're no longer in pain and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "THIRST", - "threshold_high": 110, + "condition": { "compare_int": [ { "u_val": "thirst" }, { "const": 110 } ], "op": "<" }, "msg_on": { "text": "You're no longer thirsty and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "STAMINA", - "threshold_low": 1, + "condition": { "compare_int": [ { "u_val": "stamina" }, { "const": 1 } ], "op": ">" }, "msg_on": { "text": "You're no longer low on stamina and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "TIME", - "threshold_low": 2, - "threshold_high": 1, + "condition": { + "or": [ + { "compare_int": [ { "u_val": "hour" }, { "const": 1 } ], "op": "<" }, + { "compare_int": [ { "u_val": "hour" }, { "const": 2 } ], "op": ">" } + ] + }, "msg_on": { "text": "It's no longer 2 am and it triggers the trigger.", "rating": "mixed" } } ] @@ -116,8 +118,17 @@ "points": 1, "description": "This mutation is meant to test the trigger system. It is currently off.", "triggers": [ - [ { "trigger_type": "MOON", "threshold_low": 3, "threshold_high": 5 } ], - [ { "trigger_type": "PAIN", "threshold_low": 110 } ] + [ + { + "condition": { + "and": [ + { "compare_int": [ { "u_val": "moon" }, { "const": 3 } ], "op": ">" }, + { "compare_int": [ { "u_val": "moon" }, { "const": 5 } ], "op": "<" } + ] + } + } + ], + [ { "condition": { "compare_int": [ { "u_val": "pain" }, { "const": 110 } ], "op": ">" } } ] ], "transform": { "target": "TEST_TRIGGER_2_active", "msg_transform": "The trigger is triggered.", "active": true, "moves": 10 } }, @@ -131,14 +142,16 @@ "triggers": [ [ { - "trigger_type": "MOON", - "threshold_low": 5, - "threshold_high": 3, + "condition": { + "or": [ + { "compare_int": [ { "u_val": "moon" }, { "const": 3 } ], "op": "<" }, + { "compare_int": [ { "u_val": "moon" }, { "const": 5 } ], "op": ">" } + ] + }, "msg_on": { "text": "This is not the full moon anymore and it triggers the trigger.", "rating": "mixed" } }, { - "trigger_type": "PAIN", - "threshold_high": 110, + "condition": { "compare_int": [ { "u_val": "pain" }, { "const": 110 } ], "op": "<" }, "msg_on": { "text": "You're no longer in pain and it triggers the trigger.", "rating": "mixed" } } ] diff --git a/data/mods/extra_mut_scen/mutation_scenarios.json b/data/mods/extra_mut_scen/mutation_scenarios.json index 88ba004c9cc7b..7adb5278d0855 100644 --- a/data/mods/extra_mut_scen/mutation_scenarios.json +++ b/data/mods/extra_mut_scen/mutation_scenarios.json @@ -18,6 +18,7 @@ "sloc_ice_lab_finale" ], "traits": [ + "ALCMET", "ANIMALDISCORD2", "ANIMALEMPATH2", "ANTENNAE", @@ -59,7 +60,11 @@ "DEX_UP_2", "DEX_UP_3", "DISIMMUNE", + "DISORGANIZED", + "EAGLEEYED", "ELECTRORECEPTORS", + "ELFAEYES", + "ELFA_EARS", "ELFA_FNV", "ELFA_NV", "EYEBULGE", @@ -76,11 +81,16 @@ "FUR", "GILLS", "GILLS_CEPH", + "GOURMAND", "GROWL", "HAIRROOTS", + "HAS_NEMESIS", + "HATES_BOOKS", "HEADBUMPS", + "HEAVYSLEEPER2", "HERBIVORE", "HISS", + "HOARDER", "HOLLOW_BONES", "HOOVES", "HORNS", @@ -89,6 +99,7 @@ "HUGE", "HUNGER2", "HUNGER3", + "HYDE", "INFIMMUNE", "INFRARED", "INK_GLANDS", @@ -99,20 +110,32 @@ "LARGE", "LEAVES", "LEG_TENTACLES", + "LIAR", "LIGHTFUR", "LIGHT_BONES", "LIZ_EYE", "LIZ_IR", + "LOVES_BOOKS", "LUPINE_EARS", "LUPINE_FUR", "LYNX_FUR", "MANDIBLES", + "MANSBESTFRIEND", + "MARLOSS", + "MARLOSS_AVOID", + "MARLOSS_BLUE", + "MARLOSS_YELLOW", + "MARTIAL_FENCING", "MEMBRANE", + "MET_RAT", "MINOTAUR", "MORE_PAIN2", "MORE_PAIN3", + "MOUSE_EARS", "MOUTH_FLAPS", "MOUTH_TENTACLES", + "MUTAGEN_AVOID", + "MUTE", "MUZZLE", "MUZZLE_BEAR", "MUZZLE_LONG", @@ -121,16 +144,22 @@ "NAUSEA", "NIGHTVISION2", "NIGHTVISION3", + "NOMAD", "NOMAD2", "NOMAD3", + "OUTDOORSMAN", "PADDED_FEET", "PAINREC1", "PAINREC2", "PAINREC3", "PALE", "PARAIMMUNE", + "PATCHSKIN1", + "PATCHSKIN2", "PAWS", "PAWS_LARGE", + "PAWS_LITTLE", + "PERSISTENCE_HUNTER", "PER_UP", "PER_UP_2", "PER_UP_3", @@ -141,11 +170,18 @@ "PONDEROUS1", "PONDEROUS2", "PONDEROUS3", + "PROF_SKATER", + "PYROMANIA", "QUILLS", + "RABBIT_EARS", + "RABBIT_FEET", + "RABBIT_FUR", + "RABBIT_NOSE", "RADIOACTIVE1", "RADIOACTIVE2", "RADIOACTIVE3", "RADIOGENIC", + "RAP_TALONS", "REGEN", "ROT1", "ROT2", @@ -171,16 +207,20 @@ "SORES", "SPINES", "SPOTS", + "STIMBOOST", "STR_UP", "STR_UP_2", "STR_UP_3", + "STYLISH", "SUNBURN", "SUNLIGHT_DEPENDENT", + "TABLEMANNERS", "TAIL_CATTLE", "TAIL_CLUB", "TAIL_FIN", "TAIL_FLUFFY", "TAIL_LONG", + "TAIL_RABBIT", "TAIL_RAPTOR", "TAIL_RAT", "TAIL_STING", @@ -190,9 +230,12 @@ "THIRST2", "THIRST3", "THORNS", + "TOUGH2", + "TOUGH3", "TROGLO", "TROGLO2", "TROGLO3", + "TRUTHTELLER", "UNSTABLE", "URSINE_EARS", "URSINE_EYE", @@ -207,7 +250,9 @@ "WINGS_BAT", "WINGS_BIRD", "WINGS_INSECT", - "WINGS_STUB" + "WINGS_STUB", + "XS", + "XXXL" ] }, { @@ -269,6 +314,7 @@ "EATDEAD", "EATHEALTH", "EATPOISON", + "LARGE_OK", "MUT_JUNKIE", "MUT_TOUGH", "MUT_TOUGH2", @@ -335,7 +381,7 @@ "name": "Mutant - Wolf Threshold", "description": "Start as a post-threshold Wolf Mutant", "forced_traits": "THRESH_LUPINE", - "extend": { "traits": [ "PRED1", "PRED2", "PRED3" ] } + "extend": { "traits": [ "BURROW", "PACK_HUNTER", "PERSISTENCE_HUNTER2", "PRED1", "PRED2", "PRED3" ] } }, { "type": "scenario", @@ -354,7 +400,7 @@ "description": "Start as a post-threshold Prototype Mutant", "forced_traits": "THRESH_MEDICAL", "extend": { - "traits": [ "ACIDBLOOD", "ACIDPROOF", "CENOBITE", "MASOCHIST_MED", "MUT_JUNKIE", "MUT_TOUGH", "MUT_TOUGH2", "NOPAIN" ] + "traits": [ "ACIDBLOOD", "ACIDPROOF", "CENOBITE", "MASOCHIST_MED", "MUT_JUNKIE", "MUT_TOUGH", "MUT_TOUGH2", "NOPAIN", "NUMB" ] } }, { @@ -414,6 +460,15 @@ ] } }, + { + "type": "scenario", + "id": "extscenario_rabbit", + "copy-from": "extscenario_prethresh", + "name": "Mutant - Lagomorph Threshold", + "description": "Start as a post-threshold Lagomorph Mutant", + "forced_traits": "THRESH_RABBIT", + "extend": { "traits": [ "BURROW", "EASYSLEEPER2", "GOODCARDIO2", "GRAZER", "INCISORS" ] } + }, { "type": "scenario", "id": "extscenario_raptor", @@ -500,6 +555,7 @@ "forced_traits": "THRESH_URSINE", "extend": { "traits": [ + "BURROW", "HIBERNATE", "HUGE_OK", "LARGE_OK", diff --git a/doc/EFFECT_ON_CONDITION.md b/doc/EFFECT_ON_CONDITION.md index 088a8ab7d9b55..17d0e03162455 100644 --- a/doc/EFFECT_ON_CONDITION.md +++ b/doc/EFFECT_ON_CONDITION.md @@ -5,7 +5,6 @@ An effect_on_condition is an object allowing the combination of dialog condition |Identifier|Type|Description| |-|-|-| -| `scenario_specific`| int | The effect_on_condition is automatically invoked once on scenario start. | `recurrence_min`| int | The effect_on_condition is automatically invoked (activated) with at least this many seconds in-between. | `recurrence_max`| int | The effect_on_condition is automatically invoked (activated) at least once this many seconds. | `condition`| condition | The condition(s) under which this effect_on_condition, upon activation, will cause its effect. See the "Dialogue conditions" section of [NPCs](NPCs.md) for the full syntax. @@ -14,6 +13,8 @@ An effect_on_condition is an object allowing the combination of dialog condition | `false_effect`| effect | The effect(s) caused if `condition` returns false upon activation. See the "Dialogue Effects" section of [NPCs](NPCs.md) for the full syntax. | `global`| bool | If this is true, this recurring eoc will be run on the player and every npc from a global queue. Deactivate conditions will work based on the avatar. If it is false the avatar and every character will have their own copy and their own deactivated list. Defaults to false. | `run_on_npcs`| bool | Can only be true if global is true. If false the eoc will only be run against the avatar. If true the eoc will be run against the avatar and all npcs. Defaults to false. +| `EOC_TYPE`| string | The effect_on_condition is automatically invoked once on scenario start. + Can be any of:ACTIVATION, RECURRING, SCENARIO_SPECIFIC, AVATAR_DEATH, NPC_DEATH. It defaults to ACTIVATION unless a `recurrence_min` and `recurrence_max` are provided in which case it defaults to RECURRING. If it is SCENARIO_SPECIFIC it is automatically invoked once on scenario start. If it is AVATAR_DEATH whenever the current avatar dies it will be run with the avatar as u and the killer as npc. NPC_DEATH eocs can only be assigned to run on the death of an npc. ## Examples: ```JSON diff --git a/doc/EXAMINE.md b/doc/EXAMINE.md index 5d127183006f1..fc5b12e27ce53 100644 --- a/doc/EXAMINE.md +++ b/doc/EXAMINE.md @@ -16,7 +16,6 @@ The examine actors are specified as JSON objects with a `type` corresponding to - ```controls_gate``` Controls the attached gate. - ```dirtmound``` Plant seeds and plants. - ```elevator``` Use the elevator to change floors. -- ```fault``` Displays descriptive message, but otherwise unused. - ```flower_poppy``` Pick the mutated poppy. - ```fswitch``` Flip the switch and the rocks will shift. - ```fungus``` Release spores as the terrain crumbles away. @@ -132,3 +131,9 @@ What message to print when attempting to activate the cardreader after it has al "redundant_msg": "The door is already open." } ``` +### `effect_on_condition` + +#### `effect_on_conditions` +Mandatory. +Array of strings and or effect_on_condition objects. +Run all of the eocs upon being examined with u as the examiner and npc as null. See [EFFECT_ON_CONDITION.md](EFFECT_ON_CONDITION.md) diff --git a/doc/JSON_INFO.md b/doc/JSON_INFO.md index 6be89b1898769..dfed420b99867 100644 --- a/doc/JSON_INFO.md +++ b/doc/JSON_INFO.md @@ -2004,17 +2004,19 @@ Values are checked from highest first, the order they're defined in doesn't matt }, "triggers": [ // List of sublist of triggers, all sublists must be True for the mutation to activate [ // Sublist of trigger: at least one trigger must be true for the sublist to be true - { - "trigger_type": "MOOD", // What variable is tracked by this trigger - "threshold_high": -50, // Is True if the value is below threshold_high - "msg_on": { "text": "Everything is terrible and this makes you so ANGRY!", "rating": "mixed" } // message displayed when the trigger activates - } + { + "condition": { "compare_int": [ { "u_val": "morale" }, { "const": -50 } ], "op": "<" }, //dialog condition(see NPCs.md) + "msg_on": { "text": "Everything is terrible and this makes you so ANGRY!", "rating": "mixed" } // message displayed when the trigger activates + } ], [ { - "trigger_type": "TIME", // What variable is tracked by this trigger - "threshold_low": 20, // Is True if the value is above threshold_low - "threshold_high": 2, // Is True if the value is below threshold_high + "condition": { //dialog condition(see NPCs.md) + "or": [ + { "compare_int": [ { "u_val": "hour" }, { "const": 2 } ], "op": "<" }, + { "compare_int": [ { "u_val": "hour" }, { "const": 20 } ], "op": ">" } + ] + }, "msg_on": { "text": "Everything is terrible and this makes you so ANGRY!", "rating": "mixed" } // message displayed when the trigger activates "msg_off": { "text": "Your glow fades." } // message displayed when the trigger deactivates the trait } @@ -2026,16 +2028,6 @@ Values are checked from highest first, the order they're defined in doesn't matt "mana_modifier": 100 // Positive or negative change to total mana pool ``` - **Triggers:** - | trigger_type | Description - |--- |--- - | MOOD | Trigger depends on the mood value. - | MOON | Trigger depends on the phase of the moon. MOON_NEW =0, WAXING_CRESCENT =1, HALF_MOON_WAXING =2, WAXING_GIBBOUS =3, FULL =4, WANING_GIBBOUS =5, HALF_MOON_WANING =6, WANING_CRESCENT =7 - | HUNGER | Trigger depends on the hunger value. Very Hungry ~= 110 - | THIRST | Trigger depends on the thirst value. - | PAIN | Trigger depends on the pain value. - | STAMINA | Trigger depends on the stamina value. - | TIME | Trigger depends on the time of the day. [ 1am = 1, Midnight = 24 ] ### Traps @@ -2659,8 +2651,14 @@ The `conditional_names` field allows defining alternate names for items that wil { "type": "VAR", "condition": "npctalk_var_DISPLAY_NAME_MORALE", - "name": { "str_sp": "%s (morale)" } - } + "name": { "str_sp": "%s (morale)" }, + "value" : "true" + }, + { + "type": "SNIPPET_ID", + "condition": "test", + "value":"one", + "name": { "str_sp": "Report 1" } } ] } ``` @@ -2669,7 +2667,8 @@ You can list as many conditional names for a given item as you want. Each condit 1. The condition type: - `COMPONENT_ID` searches all the components of the item (and all of *their* components, and so on) for an item with the condition string in their ID. The ID only needs to *contain* the condition, not match it perfectly (though it is case sensitive). For example, supplying a condition `mutant` would match `mutant_meat`. - `FLAG` which checks if an item has the specified flag (exact match). - - `VAR` which checks if an item has a variable with the given name (exact match). Variables set with effect_on_conditions will have `npctalk_var_` in front of their name. So a variable created with: `"npc_add_var": "MORALE", "type": "DISPLAY","context":"NAME", "value": "Felt Great" }` would be named: `npctalk_var_DISPLAY_NAME_MORALE`. + - `VAR` which checks if an item has a variable with the given name (exact match) and value = `value`. Variables set with effect_on_conditions will have `npctalk_var_` in front of their name. So a variable created with: `"npc_add_var": "MORALE", "type": "DISPLAY","context":"NAME", "value": "Felt Great" }` would be named: `npctalk_var_DISPLAY_NAME_MORALE`. + - `SNIPPET_ID`which checks if an item has a snippet id variable set by an effect_on_condition with the given name (exact match) and snippets id = `value`. 2. The condition you want to look for. 3. The name to use if a match is found. Follows all the rules of a standard `name` field, with valid keys being `str`, `str_pl`, and `ctxt`. You may use %s here, which will be replaced by the name of the item. Conditional names defined prior to this one are taken into account. diff --git a/doc/MAGIC.md b/doc/MAGIC.md index b555b2cfa1311..4cbbdd968c91f 100644 --- a/doc/MAGIC.md +++ b/doc/MAGIC.md @@ -425,7 +425,7 @@ You can assign a spell as a special attack for a monster. |--- |--- | `id` | Unique ID. Must be one continuous word, use underscores if necessary. | `has` | How an enchantment determines if it is in the right location in order to qualify for being active. "WIELD" - when wielded in your hand * "WORN" - when worn as armor * "HELD" - when in your inventory -| `condition` | How an enchantment determines if you are in the right environments in order for the enchantment to qualify for being active. * "ALWAYS" - Always and forevermore * "UNDERGROUND" - When the owner of the item is below Z-level 0 * "UNDERWATER" - When the owner is in swimmable terrain * "ACTIVE" - whenever the item, mutation, bionic, or whatever the enchantment is attached to is active. * "INACTIVE" - whenever the item, mutation, bionic, or whatever the enchantment is attached to is inactive. +| `condition` | How an enchantment determines if you are in the right environments in order for the enchantment to qualify for being active. * "ALWAYS" - Always and forevermore * "DIALOG_CONDITION" - ACTIVE whenever the dialog condition in `condition` is true * "ACTIVE" - whenever the item, mutation, bionic, or whatever the enchantment is attached to is active. * "INACTIVE" - whenever the item, mutation, bionic, or whatever the enchantment is attached to is inactive. | `hit_you_effect` | A spell that activates when you melee_attack a creature. The spell is centered on the location of the creature unless self = true, then it is centered on your location. Follows the template for defining "fake_spell" | `hit_me_effect` | A spell that activates when you are hit by a creature. The spell is centered on your location. Follows the template for defining "fake_spell" | `intermittent_activation` | Spells that activate centered on you depending on the duration. The spells follow the "fake_spell" template. diff --git a/doc/MAPGEN.md b/doc/MAPGEN.md index 94e7c2e056ac9..f631cc0f4ea97 100644 --- a/doc/MAPGEN.md +++ b/doc/MAPGEN.md @@ -996,26 +996,37 @@ an `update_mapgen`, as normal mapgen can just specify the terrain directly. ### Spawn nested chunks based on overmap neighbors with "place_nested" -Place_nested allows for limited conditional spawning of chunks based on the `"id"`s of their overmap neighbors. This is useful for creating smoother transitions between biome types or to dynamically create walls at the edges of a mutable structure. +Place_nested allows for limited conditional spawning of chunks based on the `"id"`s of their overmap neighbors and the joins that were used in placing a mutable overmap special. This is useful for creating smoother transitions between biome types or to dynamically create walls at the edges of a mutable structure. | Field | Description | --- | --- | chunks/else_chunks | (required, string) the nested_mapgen_id of the chunk that will be conditionally placed. Chunks are placed if the specified neighbor matches, and "else_chunks" otherwise. | x and y | (required, int) the cardinal position in which the chunk will be placed. -| neighbors | (optional, string ) Any of the neighboring overmaps that should be evaluated before placing the chunk. Despite the plural field name, only a single neighbor direction can be evaluated per chunk. The direction itself can check for any amount of overmap `"id"` substrings. -| +| neighbors | (optional) Any of the neighboring overmaps that should be checked before placing the chunk. Each direction is associated with a list of overmap `"id"` substrings. +| joins | (optional) Any mutable overmap special joins that should be checked before placing the chunk. Each direction is associated with a list of join `"id"` strings. -The following adjacent overmaps can be evaluated in this manner: the direct cardinal neighbors ( `"north", "east", "south", "west"` ) the inter cardinal neighbors ( `"north_east", "north_west", "south_east", "south_west"` ), and the direct vertical neighbors ( `"above", "below"` ). + +The adjacent overmaps which can be checked in this manner are: +* the direct cardinal neighbors ( `"north"`, `"east"`, `"south"`, `"west"` ), +* the inter cardinal neighbors ( `"north_east"`, `"north_west"`, `"south_east"`, `"south_west"` ), +* the direct vertical neighbors ( `"above"`, `"below"` ). + +Joins can be checked only for the cardinal directions, `"above"`, and `"below"` Example: ```json - "place_nested": [ - { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": [ "empty_rock", "field" ] } }, - { "else_chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "north_west": [ "field", "microlab" ] } } - ], + "place_nested": [ + { "chunks": [ "concrete_wall_ew" ], "x": 0, "y": 0, "neighbors": { "north": [ "empty_rock", "field" ] } }, + { "chunks": [ "gate_north" ], "x": 0, "y": 0, "joins": { "north": [ "interior_to_exterior" ] } }, + { "else_chunks": [ "concrete_wall_ns" ], "x": 0, "y": 0, "neighbors": { "north_west": [ "field", "microlab" ] } } + ], ``` -The code excerpt above will place the nested chunk "concrete_wall_ew" if the north neighbor is either a field or solid rock, otherwise potentially placing `"concrete_wall_ns"`; the latter will be placed only if the north_west neighbor is neither a field nor any of the microlab overmaps). +The code excerpt above will place chunks as follows: +* `"concrete_wall_ew"` if the north neighbor is either a field or solid rock +* `"gate_north"` if the join `"interior_to_exterior"` was used to the north + during mutable overmap placement. +* `"concrete_wall_ns"`if the north west neighbor is neither a field nor any of the microlab overmaps. ## Mapgen values diff --git a/doc/MARTIALART_JSON.md b/doc/MARTIALART_JSON.md index 19cdcab94e6f6..349e53eaf3c1d 100644 --- a/doc/MARTIALART_JSON.md +++ b/doc/MARTIALART_JSON.md @@ -43,7 +43,10 @@ "melee_allowed" : true, // Means that ANY melee weapon can be used, NOT just the martial art's weapons "skill_requirements": [ { "name": "melee", "level": 3 } ], // Skills and their minimum levels required to use this technique. Can be any skill. "weapon_damage_requirements": [ { "type": "bash", "min": 5 } ], // Minimum weapon damage required to use this technique. Can be any damage type. -"req_buffs": [ "eskrima_hit_buff" ], // This technique requires a named buff to be active +"required_buffs_any": [ "eskrima_hit_buff" ], // This technique requires any of the named buffs to be active +"required_buffs_all": [ "eskrima_hit_buff" ], // This technique requires all of the named buffs to be active +"forbidden_buffs_any": [ "eskrima_hit_buff" ], // This technique is forbidden if any of the named buffs are active +"forbidden_buffs_all": [ "eskrima_hit_buff" ], // This technique is forbidden if all of the named buffs are active "crit_tec" : true, // This technique only works on a critical hit "crit_ok" : true, // This technique works on both normal and critical hits "downed_target": true, // Technique only works on a downed target @@ -78,6 +81,7 @@ "name" : "Elemental resistance", // In-game name displayed "description" : "+Strength bash armor, +Dexterity acid armor, +Intelligence electricity armor, +Perception fire armor.", // In-game description "buff_duration": 2, // Duration in turns that this buff lasts +"persists": false, // Allow buff to remain when changing to a new style "unarmed_allowed" : true, // Can this buff be applied to an unarmed character "unarmed_allowed" : false, // Can this buff be applied to an armed character "unarmed_weapons_allowed" : true, // Does this buff require the character to be actually unarmed. If true, allows unarmed weapons (brass knuckles, punch daggers) diff --git a/doc/MONSTERS.md b/doc/MONSTERS.md index c48548029ce6a..11f4664808842 100644 --- a/doc/MONSTERS.md +++ b/doc/MONSTERS.md @@ -332,7 +332,20 @@ Weakpoints in the monster's protection. | `armor_penalty` | a flat penalty to the monster's protection, applied after the multiplier. | `damage_mult` | multipler on the post-armor damage when hitting the weakpoint. | `crit_mult` | multipler on the post-armor damage when critically hitting the weakpoint. +| `required_effects` | list of effect names applied to the monster required to hit the weakpoint. +| `effects` | list of effects objects that may be applied to the monster by hitting the weakpoint. +The `effects` field is a list of objects with the following subfields. + +| field | description +| --- | --- +| `effect` | The effect type. +| `chance` | The probability of causing the effect. +| `duration` | The duration of the effect. Either a (min, max) pair or a single value. +| `permanent` | Whether the effect is permanent. +| `intensity` | The intensity of the effect. Either a (min, max) pair or a single value. +| `damage_required` | The range of damage, as a percentage of max health, required to trigger the effect. +| `message` | The message to print, if the player triggers the effect. Should take a single template parameter, referencing the monster's name. ## "vision_day", "vision_night" (integer, optional) diff --git a/doc/NPCs.md b/doc/NPCs.md index 64b40effdae58..ff17b5b284605 100644 --- a/doc/NPCs.md +++ b/doc/NPCs.md @@ -41,7 +41,8 @@ Format: "attitude": 0, "mission": 7, "chat": "TALK_EXAMPLE", - "faction": "no_faction" + "faction": "no_faction", + "death_eocs": [ "EOC_DEATH_NPC_TEST" ] } ``` This is the JSON that creates the NPC ID that is used to spawn an NPC in "mapgen" (map generation). @@ -49,6 +50,7 @@ Attitude is based on the enum in npc.h. The important ones are 0=NPCATT_NULL, 1= Mission is based on the enum in npc.h. The important ones are 0=NPC_MISSION_NUL, 3=NPC_MISSION_SHOPKEEP", and 7=NPC_MISSION_GUARD", 8 = NPC_MISSION_GUARD_PATROL will actively investigate noises". Chat is covered in the dialogue examples below. Faction determines what faction, if any, the NPC belongs to. Some examples are the Free Traders, Old Guard, Marloss Evangelists, and Hell's raiders but could include a brand new faction you create! +death_eocs are string effect_on_condition ids and or inline effect_on_conditions (see [EFFECT_ON_CONDITION.md](EFFECT_ON_CONDITION.md)). When the npc dies all of these eocs are run with the victim as u and the killer as npc. # Age and Height You can define the age and height of the NPC in the `age` or `height` fields in `"type": "npc"`. @@ -528,7 +530,7 @@ Effect | Description `u_mod_healthy, npc_mod_healthy : amount_int or amount_variable_object, cap: cap_int or cap_variable_object` | Your character or the NPC will have `amount_int` ( or the value of the variable described by `amount_variable_object` see `variable_object` above) added or subtracted from its health value, but not beyond `cap_int` or `cap_variable_object`. `u_add_morale: morale_string`, (*optional* `bonus: bonus_int` ), (*optional* `max_bonus: max_bonus_int or max_bonus_variable_object` ), (*optional* `duration: duration_string or duration_variable_object`), (*optional* `decay_start` : `decay_string or decay_variable_object`), (*optional* `capped`: `capped_bool`)
`npc_add_morale: morale_string`, (*optional* `bonus: bonus_int or bonus_variable_object` ), (*optional* `max_bonus: max_bonus_int` ), (*optional* `duration: duration_int`), (*optional*`decay_start` : `decay_int`), (*optional* `capped`: `capped_bool`)| Your character or the NPC will gain a morale bonus of type `morale_string`. Morale is changed by `bonus_int`( or the value of the variable described by `bonus_variable_object` see `variable_object` above) (default 1), with a maximum of up to `max_bonus_int`(or `max_bonus_variable_object`) (default 1). It will last for `duration: duration_string` time (default 1 hour) or `duration_variable_object`. It will begin to decay after `decay_string` time (default 30 minutes) or `decay_variable_object`. `capped_bool` Whether this morale is capped or not, defaults to false. `u_lose_morale: morale_string`
`npc_lose_morale: morale_string` | Your character or the NPC will lose any morale of type `morale_string`. -`u_message, npc_message: message_string`, (*optional* `sound: sound_bool`),(*optional* `outdoor_only: outdoor_only_bool`),(*optional* `snippet: snippet_bool`),(*optional* `type: type_string`),(*optional* `popup: popup_bool`) | Displays a message to either the player or the npc of `message_string`. Will not display unless the player or npc is the actual player. If `snippet_bool` is true(defaults to false) it will instead display a random snippet from `message_string` category. If `sound` is true(defaults to false) it will only display the message if the player is not deaf. `outdoor_only`(defaults to false) only matters when `sound` is true and will make the message less likely to be heard if the player is underground. Message will display as type of `type_string`. Type affects the color of message and can be any of the following values: good, neutral, bad, mixed, warning, info, debug, headshot, critical, grazing. enums.h has more info on each types use. If `popup_bool` is true the message will be in a modal popup the user has to dismiss to continue. +`u_message, npc_message: message_string`, (*optional* `sound: sound_bool`),(*optional* `outdoor_only: outdoor_only_bool`),(*optional* `snippet: snippet_bool`),(*optional* `same_snippet: snippet_bool`,(*optional* `type: type_string`),(*optional* `popup: popup_bool`) | Displays a message to either the player or the npc of `message_string`. Will not display unless the player or npc is the actual player. If `snippet_bool` is true(defaults to false) it will instead display a random snippet from `message_string` category, if `same_snippet_bool` is true(defaults to false) it will always use the same snippet and will set a variable that can be used for custom item names(this requires the snippets to have id's set). If `sound` is true (defaults to false) it will only display the message if the player is not deaf. `outdoor_only`(defaults to false) only matters when `sound` is true and will make the message less likely to be heard if the player is underground. Message will display as type of `type_string`. Type affects the color of message and can be any of the following values: good, neutral, bad, mixed, warning, info, debug, headshot, critical, grazing. enums.h has more info on each types use. If `popup_bool` is true the message will be in a modal popup the user has to dismiss to continue. `u_cast_spell, npc_cast_spell : fake_spell_data` | The spell described by fake_spell_data will be cast with u or the npc as the caster and u or the npc's location as the target. Fake spell data can have the following attributes: `id:string`: the id of the spell to cast, (*optional* `hit_self`: bool ( defaults to false ) if true can hit the caster, `trigger_message`: string to display on trigger, `npc_message`: string for message if npc uses, `max_level` int max level of the spell, `min_level` int min level of the spell ) `u_assign_activity, npc_assign_activity: activity_id_string`, `duration: duration_string or duration_variable_object`) | Your character or the NPC will start activity `activity_id_string`. It will last for `duration: duration_string` time or `duration_variable_object`. @@ -713,7 +715,11 @@ Condition | Type | Description the value of `u_has_focus` or `npc_has_focus` ( or the value of the variable described see `variable_object` above). `"u_is_on_terrain"`
`"npc_is_on_terrain"` | string | `true` if the player character or NPC is on terrain named `"u_is_on_terrain"` or `"npc_is_on_terrain"`. `"u_is_in_field"`
`"npc_is_in_field"` | string | `true` if the player character or NPC is in a field of type `"u_is_in_field"` or `"npc_is_in_field"`.. - +`"u_query"`
`"npc_query", default : bool` | string | if the player character or NPC is the avatar will popup a yes/no query with the provided message and users response is used as the return value. If called for a non avatar will return `default`. +example +``` +"condition": { "u_query": "Should we test?", "default": true }, +``` #### Player Only conditions `"u_has_mission"` | string | `true` if the mission is assigned to the player character. @@ -769,6 +775,7 @@ Condition | Type | Description `"is_season"` | string | `true` if the current season matches `is_season`, which must be one of "`spring"`, `"summer"`, `"autumn"`, or `"winter"`. `"is_day"` | simple string | `true` if it is currently daytime. `"u_is_outside"`
`"npc_is_outside"` | simple string | `true` if you or the NPC is on a tile without a roof. +`"u_is_underwater"`
`"npc_is_underwater"` | simple string | `true` if you or the NPC is underwater. `"one_in_chance"` | int or variable_object | `true` if a one in `one_in_chance`( or the value of the variable described see `variable_object` above) random chance occurs. `"x_in_y_chance"` | object | `true` if a `x` in `y` random chance occurs. `x` and `y` are either ints or `variable_object`s ( see `variable_object` above). `"is_weather"` | int or variable_object | `true` if current weather is `"is_weather"`. @@ -805,6 +812,8 @@ Example | Description `"u_val": "strength_base"` | Player character's strength. Replace `"strength_base"` with `"dexterity_base"`, `"intelligence_base"`, or `"perception_base"` to get such values. `"u_val": "var"` | Custom variable. `"var_name"`, `"type"`, and `"context"` must also be specified. If `global_val` is used then a global variable will be used. `"u_val": "time_since_var"` | Time since a custom variable was set. Unit used is turns. `"var_name"`, `"type"`, and `"context"` must also be specified. +`"u_val": "hour"` | Hours since midnight. +`"u_val": "moon"` | Phase of the moon. MOON_NEW =0, WAXING_CRESCENT =1, HALF_MOON_WAXING =2, WAXING_GIBBOUS =3, FULL =4, WANING_GIBBOUS =5, HALF_MOON_WANING =6, WANING_CRESCENT =7 `"u_val": "allies"` | Number of allies the character has. Only supported for the player character. Can be read but not written to. `"u_val": "cash"` | Ammount of money the character has. Only supported for the player character. Can be read but not written to. `"u_val": "owed"` | Owed money to the NPC you're talking to. diff --git a/gfx/ChibiUltica/ChibiLargeMonster.png b/gfx/ChibiUltica/ChibiLargeMonster.png index b60c3b7aa6e49..5058b56d57e35 100644 Binary files a/gfx/ChibiUltica/ChibiLargeMonster.png and b/gfx/ChibiUltica/ChibiLargeMonster.png differ diff --git a/gfx/ChibiUltica/ChibiNormalCharacter.png b/gfx/ChibiUltica/ChibiNormalCharacter.png index 8c6a1c49b9840..43796c1cb0b37 100644 Binary files a/gfx/ChibiUltica/ChibiNormalCharacter.png and b/gfx/ChibiUltica/ChibiNormalCharacter.png differ diff --git a/gfx/ChibiUltica/ChibiNormalMonster.png b/gfx/ChibiUltica/ChibiNormalMonster.png index c83e9d9a7254f..f9da27cf7570e 100644 Binary files a/gfx/ChibiUltica/ChibiNormalMonster.png and b/gfx/ChibiUltica/ChibiNormalMonster.png differ diff --git a/gfx/ChibiUltica/ChibiTallMonster.png b/gfx/ChibiUltica/ChibiTallMonster.png index 4680269cf4ed4..b835a6a70a5a5 100644 Binary files a/gfx/ChibiUltica/ChibiTallMonster.png and b/gfx/ChibiUltica/ChibiTallMonster.png differ diff --git a/gfx/ChibiUltica/fillerhoder.png b/gfx/ChibiUltica/fillerhoder.png index c9fee22e410c3..51853c123ddb3 100644 Binary files a/gfx/ChibiUltica/fillerhoder.png and b/gfx/ChibiUltica/fillerhoder.png differ diff --git a/gfx/ChibiUltica/giant.png b/gfx/ChibiUltica/giant.png index 41c31d68899ad..1b5cc7c1a7bb1 100644 Binary files a/gfx/ChibiUltica/giant.png and b/gfx/ChibiUltica/giant.png differ diff --git a/gfx/ChibiUltica/huge.png b/gfx/ChibiUltica/huge.png index 5561833d84da0..217155c03e7fc 100644 Binary files a/gfx/ChibiUltica/huge.png and b/gfx/ChibiUltica/huge.png differ diff --git a/gfx/ChibiUltica/incomplete.png b/gfx/ChibiUltica/incomplete.png index 892bfcfed3eb4..4a1c1aa2f8e9b 100644 Binary files a/gfx/ChibiUltica/incomplete.png and b/gfx/ChibiUltica/incomplete.png differ diff --git a/gfx/ChibiUltica/incomplete_large.png b/gfx/ChibiUltica/incomplete_large.png index 26cc3c9a06467..18e10677f7493 100644 Binary files a/gfx/ChibiUltica/incomplete_large.png and b/gfx/ChibiUltica/incomplete_large.png differ diff --git a/gfx/ChibiUltica/large.png b/gfx/ChibiUltica/large.png index 6a8f1f63e087e..5f314783f9e5a 100644 Binary files a/gfx/ChibiUltica/large.png and b/gfx/ChibiUltica/large.png differ diff --git a/gfx/ChibiUltica/normal.png b/gfx/ChibiUltica/normal.png index 811313ad71c55..faeffa8b2eb0a 100644 Binary files a/gfx/ChibiUltica/normal.png and b/gfx/ChibiUltica/normal.png differ diff --git a/gfx/ChibiUltica/small.png b/gfx/ChibiUltica/small.png index 6106ed68cff81..2631e30b8c940 100644 Binary files a/gfx/ChibiUltica/small.png and b/gfx/ChibiUltica/small.png differ diff --git a/gfx/ChibiUltica/tile_config.json b/gfx/ChibiUltica/tile_config.json index cb94ff04eae92..6245b70fac6e3 100644 --- a/gfx/ChibiUltica/tile_config.json +++ b/gfx/ChibiUltica/tile_config.json @@ -45,6 +45,8 @@ { "id": "mon_zombie_hulk", "fg": 5, "rotates": false }, { "id": "mon_zombie_kevlar_2", "fg": 42, "bg": [ ], "rotates": false }, { "id": "mon_zombie_nullfield", "fg": 44, "bg": [ ], "rotates": false }, + { "id": [ "mon_hulk_pupa", "mon_hulk_pupa_decoy" ], "fg": 54, "rotates": false }, + { "id": [ "corpse_mon_hulk_pupa", "corpse_mon_hulk_pupa_decoy" ], "fg": 53, "rotates": false }, { "id": "mon_frog_giant", "fg": 26 }, { "id": "mon_horse", "fg": 28 }, { "id": "mon_mech_combat", "fg": 29 }, @@ -62,8 +64,8 @@ { "id": "mon_flying_polyp", "fg": 50 }, { "id": "corpse_mon_frog_mother", "fg": 51 }, { "id": "mon_frog_mother", "fg": 52 }, - { "id": "corpse_mon_zpig_brute", "fg": 53 }, - { "id": "mon_zpig_brute", "fg": 54 } + { "id": "corpse_mon_zpig_brute", "fg": 55 }, + { "id": "mon_zpig_brute", "fg": 56 } ] }, { @@ -140,8 +142,8 @@ "file": "ChibiNormalCharacter.png", "//": "range 112 to 1055", "tiles": [ - { "id": [ "player_female", "npc_female" ], "fg": 112, "rotates": false, "bg": 1324 }, - { "id": [ "player_male", "npc_male" ], "fg": 113, "rotates": false, "bg": 1324 }, + { "id": [ "player_female", "npc_female" ], "fg": 112, "rotates": false, "bg": 1323 }, + { "id": [ "player_male", "npc_male" ], "fg": 113, "rotates": false, "bg": 1323 }, { "id": "overlay_female_mutation_active_bio_ads", "fg": 114, "rotates": false }, { "id": "overlay_female_mutation_active_bio_alarm", "fg": 115, "rotates": false }, { "id": "overlay_female_mutation_active_bio_cloak", "fg": 116, "rotates": false }, @@ -508,7 +510,7 @@ { "id": "overlay_wielded_bomblet_launcher_rotary", "fg": 488, "rotates": false }, { "id": "overlay_wielded_bomblet_launcher_single", "fg": 489, "rotates": false }, { "id": "overlay_wielded_bowling_axe", "fg": 439, "rotates": false }, - { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 7000, "rotates": false }, + { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 7091, "rotates": false }, { "id": "overlay_wielded_briefcase_smg", "fg": 490, "rotates": false }, { "id": "overlay_wielded_broadfire_off", "fg": 565, "rotates": false }, { "id": "overlay_wielded_broadfire_on", "fg": 566, "rotates": false }, @@ -1703,68 +1705,68 @@ "tiles": [ { "id": "debug_mon", "fg": 1056 }, { "id": "mon_EMP_hack", "fg": 1129 }, - { "id": "mon_albino_penguin", "fg": 1057, "bg": 1324, "rotates": false }, - { "id": "mon_alpha_razorclaw", "fg": 1058, "bg": 1324 }, - { "id": "mon_ant", "fg": 1059, "bg": 1324, "rotates": false }, - { "id": "mon_ant_acid", "fg": 1276, "bg": 1324, "rotates": false }, - { "id": "mon_ant_acid_larva", "fg": 1275, "bg": 1324, "rotates": false }, - { "id": "mon_ant_acid_queen", "fg": 1277, "bg": 1324, "rotates": false }, - { "id": "mon_ant_acid_soldier", "fg": 1274, "rotates": false }, - { "id": "mon_ant_fungus", "fg": 1060, "bg": 1324, "rotates": false }, - { "id": "mon_ant_larva", "fg": 1061, "bg": 1324, "rotates": false }, - { "id": "mon_ant_queen", "fg": 1062, "bg": 1324, "rotates": false }, - { "id": "mon_ant_soldier", "fg": 1063, "bg": 1324, "rotates": false }, - { "id": "mon_bat", "fg": 1064, "bg": 1324, "rotates": false }, - { "id": "mon_bear", "fg": 1065, "bg": 1324, "rotates": false }, - { "id": "mon_bear_cub", "fg": 1066, "bg": 1324, "rotates": false }, - { "id": "mon_bear_smoky", "fg": 1067, "bg": 1324, "rotates": false }, - { "id": "mon_bee", "fg": 1068, "bg": 1324, "rotates": false }, + { "id": "mon_albino_penguin", "fg": 1057, "bg": 1323, "rotates": false }, + { "id": "mon_alpha_razorclaw", "fg": 1058, "bg": 1323 }, + { "id": "mon_ant", "fg": 1059, "bg": 1323, "rotates": false }, + { "id": "mon_ant_acid", "fg": 1275, "bg": 1323, "rotates": false }, + { "id": "mon_ant_acid_larva", "fg": 1274, "bg": 1323, "rotates": false }, + { "id": "mon_ant_acid_queen", "fg": 1276, "bg": 1323, "rotates": false }, + { "id": "mon_ant_acid_soldier", "fg": 1273, "rotates": false }, + { "id": "mon_ant_fungus", "fg": 1060, "bg": 1323, "rotates": false }, + { "id": "mon_ant_larva", "fg": 1061, "bg": 1323, "rotates": false }, + { "id": "mon_ant_queen", "fg": 1062, "bg": 1323, "rotates": false }, + { "id": "mon_ant_soldier", "fg": 1063, "bg": 1323, "rotates": false }, + { "id": "mon_bat", "fg": 1064, "bg": 1323, "rotates": false }, + { "id": "mon_bear", "fg": 1065, "bg": 1323, "rotates": false }, + { "id": "mon_bear_cub", "fg": 1066, "bg": 1323, "rotates": false }, + { "id": "mon_bear_smoky", "fg": 1067, "bg": 1323, "rotates": false }, + { "id": "mon_bee", "fg": 1068, "bg": 1323, "rotates": false }, { "id": "mon_bee_mega", "fg": 1070, "rotates": false }, { "id": "mon_bee_small", "fg": 1071, "rotates": false }, - { "id": "mon_beekeeper", "fg": 1069, "bg": 1324, "rotates": false }, - { "id": "mon_biollante", "fg": 1072, "bg": 1324, "rotates": false }, - { "id": "mon_black_rat", "fg": 1181, "rotates": false }, - { "id": "mon_blank", "fg": 1073, "bg": 1324, "rotates": false }, - { "id": "mon_blob", "fg": 1074, "bg": 1324, "rotates": false }, + { "id": "mon_beekeeper", "fg": 1069, "bg": 1323, "rotates": false }, + { "id": "mon_biollante", "fg": 1072, "bg": 1323, "rotates": false }, + { "id": "mon_black_rat", "fg": 1180, "rotates": false }, + { "id": "mon_blank", "fg": 1073, "bg": 1323, "rotates": false }, + { "id": "mon_blob", "fg": 1074, "bg": 1323, "rotates": false }, { "id": "mon_blob_large", "fg": 1075, "rotates": false }, { "id": "mon_blob_small", "fg": 1076, "rotates": false }, - { "id": "mon_bobcat", "fg": 1077, "bg": 1324, "rotates": false }, - { "id": "mon_boomer", "fg": 1078, "bg": 1324, "rotates": false }, - { "id": "mon_boomer_fungus", "fg": 1079, "bg": 1324, "rotates": false }, + { "id": "mon_bobcat", "fg": 1077, "bg": 1323, "rotates": false }, + { "id": "mon_boomer", "fg": 1078, "bg": 1323, "rotates": false }, + { "id": "mon_boomer_fungus", "fg": 1079, "bg": 1323, "rotates": false }, { "id": "mon_breather", "fg": 1080, "rotates": false }, - { "id": "mon_breather_hub", "fg": 1081, "bg": 1324, "rotates": false }, - { "id": "mon_c4_hack", "fg": 1082, "bg": 1324, "rotates": false }, - { "id": "mon_cat", "fg": 1077, "bg": 1324, "rotates": false }, + { "id": "mon_breather_hub", "fg": 1081, "bg": 1323, "rotates": false }, + { "id": "mon_c4_hack", "fg": 1082, "bg": 1323, "rotates": false }, + { "id": "mon_cat", "fg": 1077, "bg": 1323, "rotates": false }, { "id": "mon_centipede", "fg": 1083, "rotates": false }, - { "id": "mon_centipede_giant", "fg": 1084, "bg": 1324, "rotates": false }, + { "id": "mon_centipede_giant", "fg": 1084, "bg": 1323, "rotates": false }, { "id": "mon_charred_nightmare", "fg": 1085, "rotates": false }, - { "id": "mon_chicken", "fg": 1086, "bg": 1324, "rotates": false }, - { "id": "mon_chipmunk", "fg": 1087, "bg": 1324, "rotates": false }, - { "id": "mon_chud", "fg": 1088, "bg": 1324, "rotates": false }, - { "id": "mon_compsognathus", "fg": 1089, "bg": 1324, "rotates": false }, - { "id": "mon_cougar", "fg": 1090, "bg": 1324, "rotates": false }, - { "id": "mon_coyote", "fg": 1091, "bg": 1324, "rotates": false }, - { "id": "mon_coyote_wolf", "fg": 1092, "bg": 1324, "rotates": false }, - { "id": "mon_crawler", "fg": 1093, "bg": 1324, "rotates": false }, - { "id": "mon_creeper_hub", "fg": 1094, "bg": 1324, "rotates": false }, - { "id": "mon_creeper_vine", "fg": 1095, "bg": 1324, "rotates": false }, - { "id": "mon_crow", "fg": 1096, "bg": 1324, "rotates": false }, - { "id": "mon_darkman", "fg": 1097, "bg": 1324, "rotates": false }, - { "id": "mon_deer", "fg": 1098, "bg": 1324, "rotates": false }, - { "id": "mon_deer_mouse", "fg": 1181, "rotates": false }, - { "id": "mon_deinonychus", "fg": 1099, "bg": 1324, "rotates": false }, - { "id": "mon_dementia", "fg": 1100, "bg": 1324, "rotates": false }, - { "id": "mon_dermatik", "fg": 1101, "bg": 1324, "rotates": false }, + { "id": "mon_chicken", "fg": 1086, "bg": 1323, "rotates": false }, + { "id": "mon_chipmunk", "fg": 1087, "bg": 1323, "rotates": false }, + { "id": "mon_chud", "fg": 1088, "bg": 1323, "rotates": false }, + { "id": "mon_compsognathus", "fg": 1089, "bg": 1323, "rotates": false }, + { "id": "mon_cougar", "fg": 1090, "bg": 1323, "rotates": false }, + { "id": "mon_coyote", "fg": 1091, "bg": 1323, "rotates": false }, + { "id": "mon_coyote_wolf", "fg": 1092, "bg": 1323, "rotates": false }, + { "id": "mon_crawler", "fg": 1093, "bg": 1323, "rotates": false }, + { "id": "mon_creeper_hub", "fg": 1094, "bg": 1323, "rotates": false }, + { "id": "mon_creeper_vine", "fg": 1095, "bg": 1323, "rotates": false }, + { "id": "mon_crow", "fg": 1096, "bg": 1323, "rotates": false }, + { "id": "mon_darkman", "fg": 1097, "bg": 1323, "rotates": false }, + { "id": "mon_deer", "fg": 1098, "bg": 1323, "rotates": false }, + { "id": "mon_deer_mouse", "fg": 1180, "rotates": false }, + { "id": "mon_deinonychus", "fg": 1099, "bg": 1323, "rotates": false }, + { "id": "mon_dementia", "fg": 1100, "bg": 1323, "rotates": false }, + { "id": "mon_dermatik", "fg": 1101, "bg": 1323, "rotates": false }, { "id": "mon_dermatik_larva", "fg": 1102, "rotates": false }, - { "id": "mon_dilophosaurus", "fg": 1099, "bg": 1324, "rotates": false }, - { "id": "mon_dimorphodon", "fg": 1103, "bg": 1324, "rotates": false }, - { "id": "mon_dog_skeleton", "fg": 1104, "bg": 1324, "rotates": false }, - { "id": "mon_dog_zombie_cop", "fg": 1105, "bg": 1324, "rotates": false }, + { "id": "mon_dilophosaurus", "fg": 1099, "bg": 1323, "rotates": false }, + { "id": "mon_dimorphodon", "fg": 1103, "bg": 1323, "rotates": false }, + { "id": "mon_dog_skeleton", "fg": 1104, "bg": 1323, "rotates": false }, + { "id": "mon_dog_zombie_cop", "fg": 1105, "bg": 1323, "rotates": false }, { "id": "mon_dog_zombie_rot", "fg": 1106, "bg": [ ], "rotates": false }, - { "id": "mon_dragonfly_giant", "fg": 1108, "bg": 1324, "rotates": false }, + { "id": "mon_dragonfly_giant", "fg": 1108, "bg": 1323, "rotates": false }, { "id": "mon_dragonfly_small", "fg": 1107, "rotates": false }, - { "id": "mon_duck", "fg": 1109, "bg": 1324, "rotates": false }, - { "id": "mon_eoraptor", "fg": 1089, "bg": 1324, "rotates": false }, + { "id": "mon_duck", "fg": 1109, "bg": 1323, "rotates": false }, + { "id": "mon_eoraptor", "fg": 1089, "bg": 1323, "rotates": false }, { "id": "mon_fant", "fg": 1110, "rotates": false }, { "id": "mon_fish_blinky", "fg": 1111, "rotates": false }, { "id": "mon_fish_bluegill", "fg": 1112, "rotates": false }, @@ -1783,278 +1785,283 @@ { "id": "mon_fish_sunfish", "fg": 1125, "rotates": false }, { "id": "mon_fish_trout", "fg": 1126, "rotates": false }, { "id": "mon_fish_whitefish", "fg": 1127, "rotates": false }, - { "id": "mon_flaming_eye", "fg": 1128, "bg": 1324, "rotates": false }, - { "id": "mon_flashbang_hack", "fg": 1129, "bg": 1324, "rotates": false }, - { "id": "mon_fly", "fg": 1130, "bg": 1324, "rotates": false }, - { "id": "mon_fox_gray", "fg": 1131, "bg": 1324, "rotates": false }, - { "id": "mon_fox_red", "fg": 1131, "bg": 1324, "rotates": false }, - { "id": "mon_fungal_blossom", "fg": 1133, "bg": 1324, "rotates": false }, - { "id": "mon_fungal_fighter", "fg": 1134, "bg": 1324, "rotates": false }, - { "id": "mon_fungal_hedgerow", "fg": 1135, "bg": 1324, "rotates": false }, - { "id": "mon_fungal_tendril", "fg": 1136, "bg": 1324, "rotates": false }, - { "id": "mon_fungal_wall", "fg": 1137, "bg": 1324, "rotates": false }, - { "id": "mon_fungaloid_dormant", "fg": 1265, "bg": 1324, "rotates": false }, - { "id": "mon_fungaloid_young", "fg": 1132, "bg": 1324, "rotates": false }, - { "id": "mon_gallimimus", "fg": 1138, "bg": 1324, "rotates": false }, - { "id": "mon_gasbomb_hack", "fg": 1139, "bg": 1324, "rotates": false }, + { "id": "mon_flaming_eye", "fg": 1128, "bg": 1323, "rotates": false }, + { "id": "mon_flashbang_hack", "fg": 1129, "bg": 1323, "rotates": false }, + { "id": "mon_fly", "fg": 1130, "bg": 1323, "rotates": false }, + { "id": "mon_fox_gray", "fg": 1131, "bg": 1323, "rotates": false }, + { "id": "mon_fox_red", "fg": 1131, "bg": 1323, "rotates": false }, + { "id": "mon_fungal_blossom", "fg": 1133, "bg": 1323, "rotates": false }, + { "id": "mon_fungal_fighter", "fg": 1134, "bg": 1323, "rotates": false }, + { "id": "mon_fungal_hedgerow", "fg": 1135, "bg": 1323, "rotates": false }, + { "id": "mon_fungal_tendril", "fg": 1136, "bg": 1323, "rotates": false }, + { "id": "mon_fungal_wall", "fg": 1137, "bg": 1323, "rotates": false }, + { "id": "mon_fungaloid_dormant", "fg": 1264, "bg": 1323, "rotates": false }, + { "id": "mon_fungaloid_young", "fg": 1132, "bg": 1323, "rotates": false }, + { "id": "mon_gallimimus", "fg": 1138, "bg": 1323, "rotates": false }, + { "id": "mon_gasbomb_hack", "fg": 1139, "bg": 1323, "rotates": false }, { "id": "mon_gator", "fg": 1140, "rotates": false }, - { "id": "mon_gelatin", "fg": 1141, "bg": 1324, "rotates": false }, - { "id": "mon_generator", "fg": 1142, "bg": 1324, "rotates": false }, + { "id": "mon_gelatin", "fg": 1141, "bg": 1323, "rotates": false }, + { "id": "mon_generator", "fg": 1142, "bg": 1323, "rotates": false }, { "id": "mon_giant_cockroach", "fg": 1143, "rotates": false }, { "id": "mon_giant_cockroach_nymph", "fg": 1144, "rotates": false }, { "id": "mon_goat", "fg": 1145, "rotates": false }, - { "id": "mon_gozu", "fg": 1146, "bg": 1324, "rotates": false }, - { "id": "mon_graboid", "fg": 1147, "bg": 1324, "rotates": false }, - { "id": "mon_grenade_hack", "fg": 1148, "bg": 1324, "rotates": false }, - { "id": "mon_groundhog", "fg": 1087, "bg": 1324, "rotates": false }, - { "id": "mon_halfworm", "fg": 1149, "bg": 1324, "rotates": false }, - { "id": "mon_hallu_mom", "fg": 1150, "bg": 1324, "rotates": false }, - { "id": "mon_hare", "fg": 1151, "bg": 1324, "rotates": false }, - { "id": "mon_hare_season_winter", "fg": 1152, "bg": 1324, "rotates": false }, - { "id": "mon_headless_dog_thing", "fg": 1153, "bg": 1324, "rotates": false }, - { "id": "mon_hologram", "fg": 1266, "rotates": false }, - { "id": "mon_human_snail", "fg": 1154, "bg": 1324, "rotates": false }, - { "id": "mon_irradiated_wanderer_1", "fg": 1155, "bg": 1324 }, - { "id": "mon_irradiated_wanderer_2", "fg": 1156, "bg": 1324, "rotates": false }, - { "id": "mon_irradiated_wanderer_3", "fg": 1157, "bg": 1324 }, - { "id": "mon_irradiated_wanderer_4", "fg": 1158, "bg": 1324 }, - { "id": "mon_kreck", "fg": 1159, "bg": 1324, "rotates": false }, - { "id": "mon_laserturret", "fg": 1160, "bg": 1324, "rotates": false }, - { "id": "mon_lemming", "fg": 1087, "bg": 1324, "rotates": false }, - { "id": "mon_manhack", "fg": 1161, "bg": 1324, "rotates": false }, - { "id": "mon_manhack_acid", "fg": 1162, "rotates": false }, - { "id": "mon_mi_go", "fg": 1164, "bg": 1324, "rotates": false }, - { "id": "mon_mininuke_hack", "fg": 1163, "bg": 1324, "rotates": false }, - { "id": "mon_mink", "fg": 1087, "bg": 1324, "rotates": false }, - { "id": "mon_moose", "fg": 1165, "bg": 1324, "rotates": false }, - { "id": "mon_mosquito", "fg": 1166, "rotates": false }, - { "id": "mon_mosquito_giant", "fg": 1167, "bg": 1324, "rotates": false }, - { "id": "mon_muskrat", "fg": 1181, "rotates": false }, - { "id": "mon_mutant_carp", "fg": 1168, "rotates": false }, - { "id": "mon_mutant_salmon", "fg": 1169, "rotates": false }, - { "id": "mon_one_eye", "fg": 1170, "bg": 1324, "rotates": false }, - { "id": "mon_otter", "fg": 1087, "bg": 1324, "rotates": false }, - { "id": "mon_player_blob", "fg": 1171, "bg": 1324, "rotates": false }, - { "id": "mon_pregnant_giant_cockroach", "fg": 1172, "rotates": false }, - { "id": "mon_prototype_cyborg", "fg": 1299, "bg": 1324, "rotates": false }, - { "id": "mon_rabbit", "fg": 1173, "bg": 1324, "rotates": false }, - { "id": "mon_raccoon", "fg": 1174, "bg": 1324, "rotates": false }, - { "id": "mon_rat_king", "fg": 1177, "bg": 1324, "rotates": false }, - { "id": "mon_rattlesnake", "fg": 1175, "bg": 1324, "rotates": false }, - { "id": "mon_rattlesnake_giant", "fg": 1176, "bg": 1324, "rotates": false }, - { "id": "mon_razorclaw", "fg": 1178, "bg": 1324 }, - { "id": "mon_riotbot", "fg": 1179, "bg": 1324, "rotates": false }, - { "id": "mon_sewer_fish", "fg": 1180, "bg": 1324, "rotates": false }, - { "id": "mon_sewer_rat", "fg": 1181, "bg": 1324, "rotates": false }, - { "id": "mon_sewer_snake", "fg": 1182, "bg": 1324, "rotates": false }, - { "id": "mon_shadow", "fg": 1183, "rotates": false }, - { "id": "mon_shadow_snake", "fg": 1184, "rotates": false }, - { "id": "mon_skeleton", "fg": 1185, "bg": 1324, "rotates": false }, - { "id": "mon_skeleton_electric", "fg": 1302, "bg": 1324, "rotates": false }, - { "id": "mon_skitterbot", "fg": 1186, "bg": 1324, "rotates": false }, - { "id": "mon_sludge_crawler", "fg": 1187, "bg": 1324, "rotates": false }, - { "id": "mon_spider_cellar_giant", "fg": 1188, "bg": 1324, "rotates": false }, - { "id": "mon_spider_cellar_giant_s", "fg": 1189, "bg": 1324, "rotates": false }, - { "id": "mon_spider_jumping_giant", "fg": 1191, "bg": 1324, "rotates": false }, - { "id": "mon_spider_jumping_giant_mega", "fg": 1192, "rotates": false }, - { "id": "mon_spider_jumping_small", "fg": 1190, "bg": 1324, "rotates": false }, - { "id": "mon_spider_trapdoor", "fg": 1193, "bg": 1324, "rotates": false }, - { "id": "mon_spider_trapdoor_giant", "fg": 1194, "bg": 1324, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_mega", "fg": 1195, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_small", "fg": 1196, "rotates": false }, - { "id": "mon_spider_web", "fg": 1197, "bg": 1324, "rotates": false }, - { "id": "mon_spider_web_giant", "fg": 1197, "bg": 1324, "rotates": false }, - { "id": "mon_spider_web_mega", "fg": 1198, "rotates": false }, - { "id": "mon_spider_web_s", "fg": 1199, "bg": 1324, "rotates": false }, - { "id": "mon_spider_widow_giant", "fg": 1201, "bg": 1324, "rotates": false }, - { "id": "mon_spider_widow_giant_s", "fg": 1202, "bg": 1324, "rotates": false }, - { "id": "mon_spider_widow_small", "fg": 1200, "bg": 1324, "rotates": false }, - { "id": "mon_spider_wolf_giant", "fg": 1204, "bg": 1324, "rotates": false }, - { "id": "mon_spider_wolf_small", "fg": 1203, "bg": 1324, "rotates": false }, - { "id": "mon_spore", "fg": 1205, "bg": 1324, "rotates": false }, - { "id": "mon_squirrel", "fg": 1206, "bg": 1324, "rotates": false }, - { "id": "mon_squirrel_red", "fg": 1206, "bg": 1324, "rotates": false }, - { "id": "mon_titanis", "fg": 1207, "bg": 1324, "rotates": false }, - { "id": "mon_turkey", "fg": 1208, "bg": 1324, "rotates": false }, - { "id": "mon_velociraptor", "fg": 1209, "bg": 1324, "rotates": false }, - { "id": "mon_vinebeast", "fg": 1210, "bg": 1324, "rotates": false }, - { "id": "mon_vortex", "fg": 1211, "bg": 1324, "rotates": false }, - { "id": "mon_w11b10", "fg": 1268, "rotates": false }, - { "id": "mon_w11b20b4", "fg": 1269, "rotates": false }, - { "id": "mon_w11h10", "fg": 1271, "rotates": false }, - { "id": "mon_w12b10", "fg": 1270, "rotates": false }, - { "id": "mon_w12n10", "fg": 1272, "rotates": false }, - { "id": "mon_wasp", "fg": 1212, "bg": 1324, "rotates": false }, + { "id": "mon_gozu", "fg": 1146, "bg": 1323, "rotates": false }, + { "id": "mon_graboid", "fg": 1147, "bg": 1323, "rotates": false }, + { "id": "mon_grenade_hack", "fg": 1148, "bg": 1323, "rotates": false }, + { "id": "mon_groundhog", "fg": 1087, "bg": 1323, "rotates": false }, + { "id": "mon_halfworm", "fg": 1149, "bg": 1323, "rotates": false }, + { "id": "mon_hallu_mom", "fg": 1150, "bg": 1323, "rotates": false }, + { "id": "mon_hare", "fg": 1151, "bg": 1323, "rotates": false }, + { "id": "mon_hare_season_winter", "fg": 1152, "bg": 1323, "rotates": false }, + { "id": "mon_headless_dog_thing", "fg": 1153, "bg": 1323, "rotates": false }, + { "id": "mon_hologram", "fg": 1265, "rotates": false }, + { "id": "mon_human_snail", "fg": 1154, "bg": 1323, "rotates": false }, + { "id": "mon_irradiated_wanderer_1", "fg": 1155, "bg": 1323 }, + { "id": "mon_irradiated_wanderer_2", "fg": 1156, "bg": 1323, "rotates": false }, + { "id": "mon_irradiated_wanderer_3", "fg": 1157, "bg": 1323 }, + { "id": "mon_irradiated_wanderer_4", "fg": 1158, "bg": 1323 }, + { "id": "mon_laserturret", "fg": 1159, "bg": 1323, "rotates": false }, + { "id": "mon_lemming", "fg": 1087, "bg": 1323, "rotates": false }, + { "id": "mon_manhack", "fg": 1160, "bg": 1323, "rotates": false }, + { "id": "mon_manhack_acid", "fg": 1161, "rotates": false }, + { "id": "mon_mi_go", "fg": 1163, "bg": 1323, "rotates": false }, + { "id": "mon_mininuke_hack", "fg": 1162, "bg": 1323, "rotates": false }, + { "id": "mon_mink", "fg": 1087, "bg": 1323, "rotates": false }, + { "id": "mon_moose", "fg": 1164, "bg": 1323, "rotates": false }, + { "id": "mon_mosquito", "fg": 1165, "rotates": false }, + { "id": "mon_mosquito_giant", "fg": 1166, "bg": 1323, "rotates": false }, + { "id": "mon_muskrat", "fg": 1180, "rotates": false }, + { "id": "mon_mutant_carp", "fg": 1167, "rotates": false }, + { "id": "mon_mutant_salmon", "fg": 1168, "rotates": false }, + { "id": "mon_one_eye", "fg": 1169, "bg": 1323, "rotates": false }, + { "id": "mon_otter", "fg": 1087, "bg": 1323, "rotates": false }, + { "id": "mon_player_blob", "fg": 1170, "bg": 1323, "rotates": false }, + { "id": "mon_pregnant_giant_cockroach", "fg": 1171, "rotates": false }, + { "id": "mon_prototype_cyborg", "fg": 1298, "bg": 1323, "rotates": false }, + { "id": "mon_rabbit", "fg": 1172, "bg": 1323, "rotates": false }, + { "id": "mon_raccoon", "fg": 1173, "bg": 1323, "rotates": false }, + { "id": "mon_rat_king", "fg": 1176, "bg": 1323, "rotates": false }, + { "id": "mon_rattlesnake", "fg": 1174, "bg": 1323, "rotates": false }, + { "id": "mon_rattlesnake_giant", "fg": 1175, "bg": 1323, "rotates": false }, + { "id": "mon_razorclaw", "fg": 1177, "bg": 1323 }, + { "id": "mon_riotbot", "fg": 1178, "bg": 1323, "rotates": false }, + { "id": "mon_sewer_fish", "fg": 1179, "bg": 1323, "rotates": false }, + { "id": "mon_sewer_rat", "fg": 1180, "bg": 1323, "rotates": false }, + { "id": "mon_sewer_snake", "fg": 1181, "bg": 1323, "rotates": false }, + { "id": "mon_shadow", "fg": 1182, "rotates": false }, + { "id": "mon_shadow_snake", "fg": 1183, "rotates": false }, + { "id": "mon_skeleton", "fg": 1184, "bg": 1323, "rotates": false }, + { "id": "mon_skeleton_electric", "fg": 1301, "bg": 1323, "rotates": false }, + { "id": "mon_skitterbot", "fg": 1185, "bg": 1323, "rotates": false }, + { "id": "mon_sludge_crawler", "fg": 1186, "bg": 1323, "rotates": false }, + { "id": "mon_spider_cellar_giant", "fg": 1187, "bg": 1323, "rotates": false }, + { "id": "mon_spider_cellar_giant_s", "fg": 1188, "bg": 1323, "rotates": false }, + { "id": "mon_spider_jumping_giant", "fg": 1190, "bg": 1323, "rotates": false }, + { "id": "mon_spider_jumping_giant_mega", "fg": 1191, "rotates": false }, + { "id": "mon_spider_jumping_small", "fg": 1189, "bg": 1323, "rotates": false }, + { "id": "mon_spider_trapdoor", "fg": 1192, "bg": 1323, "rotates": false }, + { "id": "mon_spider_trapdoor_giant", "fg": 1193, "bg": 1323, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_mega", "fg": 1194, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_small", "fg": 1195, "rotates": false }, + { "id": "mon_spider_web", "fg": 1196, "bg": 1323, "rotates": false }, + { "id": "mon_spider_web_giant", "fg": 1196, "bg": 1323, "rotates": false }, + { "id": "mon_spider_web_mega", "fg": 1197, "rotates": false }, + { "id": "mon_spider_web_s", "fg": 1198, "bg": 1323, "rotates": false }, + { "id": "mon_spider_widow_giant", "fg": 1200, "bg": 1323, "rotates": false }, + { "id": "mon_spider_widow_giant_s", "fg": 1201, "bg": 1323, "rotates": false }, + { "id": "mon_spider_widow_small", "fg": 1199, "bg": 1323, "rotates": false }, + { "id": "mon_spider_wolf_giant", "fg": 1203, "bg": 1323, "rotates": false }, + { "id": "mon_spider_wolf_small", "fg": 1202, "bg": 1323, "rotates": false }, + { "id": "mon_spore", "fg": 1204, "bg": 1323, "rotates": false }, + { "id": "mon_squirrel", "fg": 1205, "bg": 1323, "rotates": false }, + { "id": "mon_squirrel_red", "fg": 1205, "bg": 1323, "rotates": false }, + { "id": "mon_titanis", "fg": 1206, "bg": 1323, "rotates": false }, + { "id": "mon_turkey", "fg": 1207, "bg": 1323, "rotates": false }, + { "id": "mon_velociraptor", "fg": 1208, "bg": 1323, "rotates": false }, + { "id": "mon_vinebeast", "fg": 1209, "bg": 1323, "rotates": false }, + { "id": "mon_vortex", "fg": 1210, "bg": 1323, "rotates": false }, + { "id": "mon_w11b10", "fg": 1267, "rotates": false }, + { "id": "mon_w11b20b4", "fg": 1268, "rotates": false }, + { "id": "mon_w11h10", "fg": 1270, "rotates": false }, + { "id": "mon_w12b10", "fg": 1269, "rotates": false }, + { "id": "mon_w12n10", "fg": 1271, "rotates": false }, + { "id": "mon_wasp", "fg": 1211, "bg": 1323, "rotates": false }, { "id": "mon_wasp_larvae", "fg": 1102 }, - { "id": "mon_wasp_mega", "fg": 1213 }, - { "id": "mon_wasp_small", "fg": 1214, "rotates": false }, - { "id": "mon_weasel", "fg": 1087, "bg": 1324, "rotates": false }, - { "id": "mon_wolf", "fg": 1215, "bg": 1324, "rotates": false }, - { "id": "mon_worm", "fg": 1216, "bg": 1324, "rotates": false }, - { "id": "mon_zhark", "fg": 1217 }, - { "id": "mon_zolf", "fg": 1218, "bg": 1324, "rotates": false }, - { "id": "mon_zolf_shady", "fg": 1219, "rotates": false }, - { "id": "mon_zombear", "fg": 1220, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_acidic", "fg": 1221, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_anklebiter", "fg": 1222, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_armored", "fg": 1223, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_bio_op", "fg": 1224, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_biter", "fg": 1225, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_blind", "fg": 1226, "rotates": false }, - { "id": "mon_zombie_brainless", "fg": 1306, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_brute", "fg": 1227, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_brute_grappler", "fg": 1228, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_brute_ninja", "fg": 1229, "bg": 1324 }, - { "id": "mon_zombie_brute_shocker", "fg": 1230, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_child_fungus", "fg": 1273, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_child_scorched", "fg": 1231, "bg": 1324 }, - { "id": "mon_zombie_child_scorched_2", "fg": 1232, "rotates": false }, - { "id": "mon_zombie_cop", "fg": 1233, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_crawler", "fg": 1234, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_creepy", "fg": 1235, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_dancer", "fg": 1236, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_dog", "fg": 1237, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_ears", "fg": 1307, "bg": 1324 }, - { "id": "mon_zombie_electric", "fg": 1238, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_fiend", "fg": 1308, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_fireman", "fg": 1239, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_fungus", "fg": [ 1240, 1309 ], "bg": 1324, "rotates": false }, - { "id": "mon_zombie_gasbag", "fg": 1241, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_grappler", "fg": 1242, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_hazmat", "fg": 1243, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_hollow", "fg": 1244, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_hunter", "fg": 1245, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_jackson", "fg": 1246, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_kevlar_1", "fg": 1313, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_mancroc", "fg": 1247, "bg": 1324 }, - { "id": "mon_zombie_master", "fg": 1248, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_military_pilot", "fg": 1267, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_necro", "fg": 1249, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_predator", "fg": 1250, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_rot", "fg": 1251, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_scorched", "fg": 1252, "bg": 1324 }, - { "id": "mon_zombie_shady", "fg": 1253, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_shady_ghost", "fg": 1254, "rotates": false }, - { "id": "mon_zombie_shriekling", "fg": 1255, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_skull", "fg": 1315, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_smoker", "fg": 1256, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_snotgobbler", "fg": 1257, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_soldier", "fg": 1258, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_soldier_acid_1", "fg": 1316, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_soldier_acid_2", "fg": 1317, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_1", "fg": 1318, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_2", "fg": 1319, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_spitter", "fg": 1259, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_sproglodyte", "fg": 1260, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_static", "fg": 1320, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_swimmer", "fg": 1261, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_thorny", "fg": 1321, "rotates": false, "bg": 1324 }, - { "id": "mon_zombie_waif", "fg": 1262, "bg": 1324, "rotates": false }, - { "id": "mon_zombie_wretched", "fg": 1322, "bg": 1324, "rotates": false }, - { "id": "mon_zoose", "fg": 1263, "bg": 1324, "rotates": false }, - { "id": "mon_zougar", "fg": 1264, "bg": 1324, "rotates": false }, - { "id": "mon_triffid", "fg": 1303, "bg": 1324 }, - { "id": "mon_triffid_sprig", "fg": 1304, "bg": 1324 }, - { "id": "mon_triffid_young", "fg": 1305, "bg": 1324 }, + { "id": "mon_wasp_mega", "fg": 1212 }, + { "id": "mon_wasp_small", "fg": 1213, "rotates": false }, + { "id": "mon_weasel", "fg": 1087, "bg": 1323, "rotates": false }, + { "id": "mon_wolf", "fg": 1214, "bg": 1323, "rotates": false }, + { "id": "mon_worm", "fg": 1215, "bg": 1323, "rotates": false }, + { "id": "mon_zhark", "fg": 1216 }, + { "id": "mon_zolf", "fg": 1217, "bg": 1323, "rotates": false }, + { "id": "mon_zolf_shady", "fg": 1218, "rotates": false }, + { "id": "mon_zombear", "fg": 1219, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_acidic", "fg": 1220, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_anklebiter", "fg": 1221, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_armored", "fg": 1222, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_bio_op", "fg": 1223, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_biter", "fg": 1224, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_blind", "fg": 1225, "rotates": false }, + { "id": "mon_zombie_brainless", "fg": 1305, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_brute", "fg": 1226, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_brute_grappler", "fg": 1227, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_brute_ninja", "fg": 1228, "bg": 1323 }, + { "id": "mon_zombie_brute_shocker", "fg": 1229, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_child_fungus", "fg": 1272, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_child_scorched", "fg": 1230, "bg": 1323 }, + { "id": "mon_zombie_child_scorched_2", "fg": 1231, "rotates": false }, + { "id": "mon_zombie_cop", "fg": 1232, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_crawler", "fg": 1233, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_creepy", "fg": 1234, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_dancer", "fg": 1235, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_dog", "fg": 1236, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_ears", "fg": 1306, "bg": 1323 }, + { "id": "mon_zombie_electric", "fg": 1237, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_fiend", "fg": 1307, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_fireman", "fg": 1238, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_fungus", "fg": [ 1239, 1308 ], "bg": 1323, "rotates": false }, + { "id": "mon_zombie_gasbag", "fg": 1240, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_grappler", "fg": 1241, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_hazmat", "fg": 1242, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_hollow", "fg": 1243, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_hunter", "fg": 1244, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_jackson", "fg": 1245, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_kevlar_1", "fg": 1312, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_mancroc", "fg": 1246, "bg": 1323 }, + { "id": "mon_zombie_master", "fg": 1247, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_military_pilot", "fg": 1266, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_necro", "fg": 1248, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_predator", "fg": 1249, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_rot", "fg": 1250, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_scorched", "fg": 1251, "bg": 1323 }, + { "id": "mon_zombie_shady", "fg": 1252, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_shady_ghost", "fg": 1253, "rotates": false }, + { "id": "mon_zombie_shriekling", "fg": 1254, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_skull", "fg": 1314, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_smoker", "fg": 1255, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_snotgobbler", "fg": 1256, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_soldier", "fg": 1257, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_soldier_acid_1", "fg": 1315, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_soldier_acid_2", "fg": 1316, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_1", "fg": 1317, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_2", "fg": 1318, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_spitter", "fg": 1258, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_sproglodyte", "fg": 1259, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_static", "fg": 1319, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_swimmer", "fg": 1260, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_thorny", "fg": 1320, "rotates": false, "bg": 1323 }, + { "id": "mon_zombie_waif", "fg": 1261, "bg": 1323, "rotates": false }, + { "id": "mon_zombie_wretched", "fg": 1321, "bg": 1323, "rotates": false }, + { "id": "mon_zoose", "fg": 1262, "bg": 1323, "rotates": false }, + { "id": "mon_zougar", "fg": 1263, "bg": 1323, "rotates": false }, + { "id": "mon_triffid", "fg": 1302, "bg": 1323 }, + { "id": "mon_triffid_sprig", "fg": 1303, "bg": 1323 }, + { "id": "mon_triffid_young", "fg": 1304, "bg": 1323 }, { "id": "mon_broken_cyborg", "fg": [ + { "weight": 1, "sprite": 1333 }, { "weight": 1, "sprite": 1334 }, { "weight": 1, "sprite": 1335 }, { "weight": 1, "sprite": 1336 }, { "weight": 1, "sprite": 1337 }, - { "weight": 1, "sprite": 1338 }, - { "weight": 1, "sprite": 1339 } + { "weight": 1, "sprite": 1338 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": [ "mon_dog", "mon_dog_thing" ], - "fg": [ { "weight": 10, "sprite": 1340 }, { "weight": 1, "sprite": 1341 } ], + "fg": [ { "weight": 10, "sprite": 1339 }, { "weight": 1, "sprite": 1340 } ], "rotates": false }, { "id": "mon_feral_human_crowbar", "fg": [ + { "weight": 1, "sprite": 1351 }, { "weight": 1, "sprite": 1352 }, { "weight": 1, "sprite": 1353 }, { "weight": 1, "sprite": 1354 }, { "weight": 1, "sprite": 1355 }, { "weight": 1, "sprite": 1356 }, { "weight": 1, "sprite": 1357 }, - { "weight": 1, "sprite": 1358 }, - { "weight": 1, "sprite": 1359 } + { "weight": 1, "sprite": 1358 } ], - "bg": 1324 + "bg": 1323 }, { "id": "mon_feral_human_pipe", "fg": [ + { "weight": 1, "sprite": 1359 }, { "weight": 1, "sprite": 1360 }, { "weight": 1, "sprite": 1361 }, { "weight": 1, "sprite": 1362 }, { "weight": 1, "sprite": 1363 }, { "weight": 1, "sprite": 1364 }, { "weight": 1, "sprite": 1365 }, - { "weight": 1, "sprite": 1366 }, - { "weight": 1, "sprite": 1367 } + { "weight": 1, "sprite": 1366 } ], - "bg": 1324 + "bg": 1323 }, { "id": "mon_feral_human_axe", "fg": [ + { "weight": 1, "sprite": 1343 }, { "weight": 1, "sprite": 1344 }, { "weight": 1, "sprite": 1345 }, { "weight": 1, "sprite": 1346 }, { "weight": 1, "sprite": 1347 }, { "weight": 1, "sprite": 1348 }, { "weight": 1, "sprite": 1349 }, - { "weight": 1, "sprite": 1350 }, - { "weight": 1, "sprite": 1351 } + { "weight": 1, "sprite": 1350 } ], - "bg": 1324 + "bg": 1323 }, { "id": "mon_feral_labsecurity_9mm", "fg": [ + { "weight": 1, "sprite": 1367 }, { "weight": 1, "sprite": 1368 }, { "weight": 1, "sprite": 1369 }, { "weight": 1, "sprite": 1370 }, { "weight": 1, "sprite": 1371 }, { "weight": 1, "sprite": 1372 }, { "weight": 1, "sprite": 1373 }, - { "weight": 1, "sprite": 1374 }, - { "weight": 1, "sprite": 1375 } + { "weight": 1, "sprite": 1374 } ], - "bg": 1324 + "bg": 1323 }, { "id": "mon_feral_labsecurity_flashlight", "fg": [ + { "weight": 1, "sprite": 1375 }, { "weight": 1, "sprite": 1376 }, { "weight": 1, "sprite": 1377 }, { "weight": 1, "sprite": 1378 }, - { "weight": 1, "sprite": 1379 }, - { "weight": 1, "sprite": 1380 } + { "weight": 1, "sprite": 1379 } ], - "bg": 1324 + "bg": 1323 }, { "id": "mon_feral_scientist_scalpel", "fg": [ + { "weight": 1, "sprite": 1380 }, { "weight": 1, "sprite": 1381 }, { "weight": 1, "sprite": 1382 }, { "weight": 1, "sprite": 1383 }, - { "weight": 1, "sprite": 1384 }, - { "weight": 1, "sprite": 1385 } + { "weight": 1, "sprite": 1384 } ], - "bg": 1324 + "bg": 1323 }, { "id": "mon_fungaloid", - "fg": [ { "weight": 100, "sprite": 1395 }, { "weight": 1, "sprite": 1396 } ], + "fg": [ { "weight": 100, "sprite": 1392 }, { "weight": 1, "sprite": 1393 } ], + "rotates": false + }, + { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 1405, "rotates": false }, + { + "id": [ "corpse_mon_zombie_crawler_pupa", "corpse_mon_zombie_crawler_pupa_decoy" ], + "fg": 1404, "rotates": false }, { @@ -2067,29 +2074,28 @@ { "weight": 15, "sprite": 1408 } ], "rotates": false, - "bg": 1324 + "bg": 1323 }, + { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 1413, "rotates": false }, + { "id": [ "corpse_mon_zombie_pupa", "corpse_mon_zombie_pupa_decoy" ], "fg": 1412, "rotates": false }, { "id": "mon_twisted_body", - "fg": [ { "weight": 1, "sprite": 1417 }, { "weight": 1, "sprite": 1418 }, { "weight": 1, "sprite": 1419 } ], - "bg": 1324, + "fg": [ { "weight": 1, "sprite": 1420 }, { "weight": 1, "sprite": 1421 }, { "weight": 1, "sprite": 1422 } ], + "bg": 1323, "rotates": false }, { "id": "mon_zombie", "fg": [ - { "weight": 1, "sprite": 1430 }, - { "weight": 1, "sprite": 1441 }, - { "weight": 1, "sprite": 1448 }, - { "weight": 1, "sprite": 1449 }, - { "weight": 1, "sprite": 1450 }, + { "weight": 1, "sprite": 1433 }, + { "weight": 1, "sprite": 1444 }, { "weight": 1, "sprite": 1451 }, { "weight": 1, "sprite": 1452 }, { "weight": 1, "sprite": 1453 }, { "weight": 1, "sprite": 1454 }, - { "weight": 1, "sprite": 1420 }, - { "weight": 1, "sprite": 1421 }, - { "weight": 1, "sprite": 1422 }, + { "weight": 1, "sprite": 1455 }, + { "weight": 1, "sprite": 1456 }, + { "weight": 1, "sprite": 1457 }, { "weight": 1, "sprite": 1423 }, { "weight": 1, "sprite": 1424 }, { "weight": 1, "sprite": 1425 }, @@ -2097,9 +2103,9 @@ { "weight": 1, "sprite": 1427 }, { "weight": 1, "sprite": 1428 }, { "weight": 1, "sprite": 1429 }, + { "weight": 1, "sprite": 1430 }, { "weight": 1, "sprite": 1431 }, { "weight": 1, "sprite": 1432 }, - { "weight": 1, "sprite": 1433 }, { "weight": 1, "sprite": 1434 }, { "weight": 1, "sprite": 1435 }, { "weight": 1, "sprite": 1436 }, @@ -2107,267 +2113,270 @@ { "weight": 1, "sprite": 1438 }, { "weight": 1, "sprite": 1439 }, { "weight": 1, "sprite": 1440 }, + { "weight": 1, "sprite": 1441 }, { "weight": 1, "sprite": 1442 }, { "weight": 1, "sprite": 1443 }, - { "weight": 1, "sprite": 1444 }, { "weight": 1, "sprite": 1445 }, { "weight": 1, "sprite": 1446 }, - { "weight": 1, "sprite": 1447 } + { "weight": 1, "sprite": 1447 }, + { "weight": 1, "sprite": 1448 }, + { "weight": 1, "sprite": 1449 }, + { "weight": 1, "sprite": 1450 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_child", "fg": [ - { "weight": 1, "sprite": 1455 }, - { "weight": 1, "sprite": 1456 }, - { "weight": 1, "sprite": 1457 }, - { "weight": 1, "sprite": 1466 }, - { "weight": 1, "sprite": 1467 }, - { "weight": 1, "sprite": 1468 }, - { "weight": 1, "sprite": 1469 }, - { "weight": 1, "sprite": 1470 }, - { "weight": 1, "sprite": 1471 }, { "weight": 1, "sprite": 1458 }, { "weight": 1, "sprite": 1459 }, { "weight": 1, "sprite": 1460 }, + { "weight": 1, "sprite": 1469 }, + { "weight": 1, "sprite": 1470 }, + { "weight": 1, "sprite": 1471 }, + { "weight": 1, "sprite": 1472 }, + { "weight": 1, "sprite": 1473 }, + { "weight": 1, "sprite": 1474 }, { "weight": 1, "sprite": 1461 }, { "weight": 1, "sprite": 1462 }, { "weight": 1, "sprite": 1463 }, { "weight": 1, "sprite": 1464 }, - { "weight": 1, "sprite": 1465 } + { "weight": 1, "sprite": 1465 }, + { "weight": 1, "sprite": 1466 }, + { "weight": 1, "sprite": 1467 }, + { "weight": 1, "sprite": 1468 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_fat", "fg": [ - { "weight": 1, "sprite": 1472 }, - { "weight": 1, "sprite": 1473 }, - { "weight": 1, "sprite": 1474 }, - { "weight": 1, "sprite": 1482 }, - { "weight": 1, "sprite": 1483 }, - { "weight": 1, "sprite": 1484 }, - { "weight": 1, "sprite": 1485 }, - { "weight": 1, "sprite": 1486 }, - { "weight": 1, "sprite": 1487 }, { "weight": 1, "sprite": 1475 }, { "weight": 1, "sprite": 1476 }, { "weight": 1, "sprite": 1477 }, + { "weight": 1, "sprite": 1485 }, + { "weight": 1, "sprite": 1486 }, + { "weight": 1, "sprite": 1487 }, + { "weight": 1, "sprite": 1488 }, + { "weight": 1, "sprite": 1489 }, + { "weight": 1, "sprite": 1490 }, { "weight": 1, "sprite": 1478 }, { "weight": 1, "sprite": 1479 }, { "weight": 1, "sprite": 1480 }, - { "weight": 1, "sprite": 1481 } + { "weight": 1, "sprite": 1481 }, + { "weight": 1, "sprite": 1482 }, + { "weight": 1, "sprite": 1483 }, + { "weight": 1, "sprite": 1484 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_grabber", "fg": [ - { "weight": 1, "sprite": 1488 }, - { "weight": 1, "sprite": 1489 }, - { "weight": 1, "sprite": 1490 }, { "weight": 1, "sprite": 1491 }, { "weight": 1, "sprite": 1492 }, { "weight": 1, "sprite": 1493 }, { "weight": 1, "sprite": 1494 }, { "weight": 1, "sprite": 1495 }, - { "weight": 1, "sprite": 1496 } + { "weight": 1, "sprite": 1496 }, + { "weight": 1, "sprite": 1497 }, + { "weight": 1, "sprite": 1498 }, + { "weight": 1, "sprite": 1499 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_labsecurity", "fg": [ - { "weight": 1, "sprite": 1497 }, - { "weight": 1, "sprite": 1498 }, - { "weight": 1, "sprite": 1499 }, { "weight": 1, "sprite": 1500 }, { "weight": 1, "sprite": 1501 }, - { "weight": 1, "sprite": 1502 } + { "weight": 1, "sprite": 1502 }, + { "weight": 1, "sprite": 1503 }, + { "weight": 1, "sprite": 1504 }, + { "weight": 1, "sprite": 1505 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_prisoner", "fg": [ - { "weight": 1, "sprite": 1503 }, - { "weight": 1, "sprite": 1504 }, - { "weight": 1, "sprite": 1505 }, { "weight": 1, "sprite": 1506 }, { "weight": 1, "sprite": 1507 }, - { "weight": 1, "sprite": 1508 } + { "weight": 1, "sprite": 1508 }, + { "weight": 1, "sprite": 1509 }, + { "weight": 1, "sprite": 1510 }, + { "weight": 1, "sprite": 1511 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_runner", "fg": [ - { "weight": 1, "sprite": 1509 }, - { "weight": 1, "sprite": 1510 }, - { "weight": 1, "sprite": 1511 }, { "weight": 1, "sprite": 1512 }, - { "weight": 1, "sprite": 1513 } + { "weight": 1, "sprite": 1513 }, + { "weight": 1, "sprite": 1514 }, + { "weight": 1, "sprite": 1515 }, + { "weight": 1, "sprite": 1516 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_scientist", "fg": [ - { "weight": 1, "sprite": 1514 }, { "weight": 1, "sprite": 1517 }, - { "weight": 1, "sprite": 1518 }, - { "weight": 1, "sprite": 1519 }, { "weight": 1, "sprite": 1520 }, { "weight": 1, "sprite": 1521 }, { "weight": 1, "sprite": 1522 }, { "weight": 1, "sprite": 1523 }, { "weight": 1, "sprite": 1524 }, - { "weight": 1, "sprite": 1515 }, - { "weight": 1, "sprite": 1516 } + { "weight": 1, "sprite": 1525 }, + { "weight": 1, "sprite": 1526 }, + { "weight": 1, "sprite": 1527 }, + { "weight": 1, "sprite": 1518 }, + { "weight": 1, "sprite": 1519 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_screecher", "fg": [ - { "weight": 1, "sprite": 1525 }, - { "weight": 1, "sprite": 1526 }, - { "weight": 1, "sprite": 1527 }, - { "weight": 1, "sprite": 1528 } + { "weight": 1, "sprite": 1528 }, + { "weight": 1, "sprite": 1529 }, + { "weight": 1, "sprite": 1530 }, + { "weight": 1, "sprite": 1531 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_shrieker", "fg": [ - { "weight": 1, "sprite": 1529 }, - { "weight": 1, "sprite": 1530 }, - { "weight": 1, "sprite": 1531 }, - { "weight": 1, "sprite": 1532 } + { "weight": 1, "sprite": 1532 }, + { "weight": 1, "sprite": 1533 }, + { "weight": 1, "sprite": 1534 }, + { "weight": 1, "sprite": 1535 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_survivor", - "fg": [ { "weight": 1, "sprite": 1533 }, { "weight": 1, "sprite": 1534 } ], - "bg": 1324, + "fg": [ { "weight": 1, "sprite": 1536 }, { "weight": 1, "sprite": 1537 } ], + "bg": 1323, "rotates": false }, { "id": "mon_zombie_survivor_elite", - "fg": [ { "weight": 1, "sprite": 1535 }, { "weight": 1, "sprite": 1536 }, { "weight": 1, "sprite": 1537 } ], - "bg": 1324, + "fg": [ { "weight": 1, "sprite": 1538 }, { "weight": 1, "sprite": 1539 }, { "weight": 1, "sprite": 1540 } ], + "bg": 1323, "rotates": false }, { "id": "mon_zombie_technician", "fg": [ - { "weight": 1, "sprite": 1538 }, - { "weight": 1, "sprite": 1539 }, - { "weight": 1, "sprite": 1540 }, - { "weight": 1, "sprite": 1541 } + { "weight": 1, "sprite": 1541 }, + { "weight": 1, "sprite": 1542 }, + { "weight": 1, "sprite": 1543 }, + { "weight": 1, "sprite": 1544 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, { "id": "mon_zombie_tough", "fg": [ - { "weight": 1, "sprite": 1542 }, - { "weight": 1, "sprite": 1543 }, - { "weight": 1, "sprite": 1544 }, - { "weight": 1, "sprite": 1551 }, - { "weight": 1, "sprite": 1552 }, - { "weight": 1, "sprite": 1553 }, - { "weight": 1, "sprite": 1554 }, - { "weight": 1, "sprite": 1555 }, - { "weight": 1, "sprite": 1556 }, { "weight": 1, "sprite": 1545 }, { "weight": 1, "sprite": 1546 }, { "weight": 1, "sprite": 1547 }, + { "weight": 1, "sprite": 1554 }, + { "weight": 1, "sprite": 1555 }, + { "weight": 1, "sprite": 1556 }, + { "weight": 1, "sprite": 1557 }, + { "weight": 1, "sprite": 1558 }, + { "weight": 1, "sprite": 1559 }, { "weight": 1, "sprite": 1548 }, { "weight": 1, "sprite": 1549 }, - { "weight": 1, "sprite": 1550 } + { "weight": 1, "sprite": 1550 }, + { "weight": 1, "sprite": 1551 }, + { "weight": 1, "sprite": 1552 }, + { "weight": 1, "sprite": 1553 } ], - "bg": 1324, + "bg": 1323, "rotates": false }, - { "id": "corpse_mon_fish_lbass", "fg": 1278 }, - { "id": "corpse_mon_fish_pbass", "fg": 1279 }, - { "id": "corpse_mon_fish_salmon", "fg": 1280 }, - { "id": "corpse_mon_fish_sunfish", "fg": 1281 }, - { "id": "lemming_shadow", "fg": 1282 }, - { "id": "mon_boar_wild", "fg": 1283 }, - { "id": "mon_boar_wild_piglet", "fg": 1284 }, - { "id": "mon_copbot", "fg": 1285 }, - { "id": "mon_cow", "fg": 1286 }, - { "id": "mon_cow_calf", "fg": 1287 }, - { "id": "mon_fish_eel", "fg": 1288 }, - { "id": "mon_frog", "fg": 1289 }, - { "id": "mon_frog_small", "fg": 1290 }, - { "id": "mon_gracke", "fg": 1291 }, - { "id": "mon_grocerybot", "fg": 1292 }, - { "id": "mon_grocerybot_busted", "fg": 1293 }, - { "id": "mon_hallu_mannequin", "fg": 1294 }, - { "id": "mon_lab_rat", "fg": 1295 }, - { "id": "mon_pig", "fg": 1296 }, - { "id": "mon_pig_piglet", "fg": 1297 }, - { "id": "mon_pigeon", "fg": 1298 }, - { "id": "mon_sheep", "fg": 1300 }, - { "id": "mon_skeleton_brute", "fg": 1301 }, - { "id": "mon_zombie_gasbag_crawler", "fg": 1310 }, - { "id": "mon_zombie_gasbag_immobile", "fg": 1311 }, - { "id": "mon_zombie_hanging_innards", "fg": 1312 }, - { "id": "mon_zombie_pig", "fg": 1314 }, - { "id": "mon_zow", "fg": 1323 }, - { "id": "shadow_32x32_small", "fg": 1325 }, - { "id": "corpse_mon_beaver", "fg": 1326 }, - { "id": "corpse_mon_beaver_mutant_avian", "fg": 1327 }, - { "id": "corpse_mon_beaver_mutant_huge", "fg": 1328 }, - { "id": "corpse_mon_zombeaver", "fg": 1329 }, - { "id": "mon_beaver", "fg": 1330 }, - { "id": "mon_beaver_mutant_avian", "fg": 1331 }, - { "id": "mon_beaver_mutant_huge", "fg": 1332 }, - { "id": "mon_zombeaver", "fg": 1333 }, - { "id": "mon_dog_bull", "fg": 1342 }, - { "id": "mon_dog_rottweiler", "fg": 1343 }, - { "id": "corpse_mon_aphid", "fg": 1386 }, - { "id": "mon_aphid", "fg": 1387 }, - { "id": "corpse_mon_brute_pupa", "fg": 1388 }, - { "id": "mon_brute_pupa", "fg": 1389 }, - { "id": "corpse_mon_coyote_mutant_venom", "fg": 1390 }, - { "id": "mon_coyote_mutant_venom", "fg": 1391 }, - { "id": "bot_eyebot", "fg": 1392 }, - { "id": "broken_eyebot", "fg": 1393 }, - { "id": "mon_eyebot", "fg": 1394 }, - { "id": "corpse_mon_fungaloid_shambler", "fg": 1397 }, - { "id": "mon_fungaloid_shambler", "fg": 1398 }, - { "id": "mon_goose_canadian", "fg": 1399 }, - { "id": "mon_grouse", "fg": 1400 }, - { "id": "corpse_mon_mantis_small", "fg": 1401 }, - { "id": "mon_mantis_small", "fg": 1402 }, - { "id": "mon_pheasant", "fg": 1403 }, - { "id": "mon_tadpole_grabber", "fg": 1404 }, - { "id": "mon_tazer_hack", "fg": 1405 }, + { "id": "corpse_mon_fish_lbass", "fg": 1277 }, + { "id": "corpse_mon_fish_pbass", "fg": 1278 }, + { "id": "corpse_mon_fish_salmon", "fg": 1279 }, + { "id": "corpse_mon_fish_sunfish", "fg": 1280 }, + { "id": "lemming_shadow", "fg": 1281 }, + { "id": "mon_boar_wild", "fg": 1282 }, + { "id": "mon_boar_wild_piglet", "fg": 1283 }, + { "id": "mon_copbot", "fg": 1284 }, + { "id": "mon_cow", "fg": 1285 }, + { "id": "mon_cow_calf", "fg": 1286 }, + { "id": "mon_fish_eel", "fg": 1287 }, + { "id": "mon_frog", "fg": 1288 }, + { "id": "mon_frog_small", "fg": 1289 }, + { "id": "mon_gracke", "fg": 1290 }, + { "id": "mon_grocerybot", "fg": 1291 }, + { "id": "mon_grocerybot_busted", "fg": 1292 }, + { "id": "mon_hallu_mannequin", "fg": 1293 }, + { "id": "mon_lab_rat", "fg": 1294 }, + { "id": "mon_pig", "fg": 1295 }, + { "id": "mon_pig_piglet", "fg": 1296 }, + { "id": "mon_pigeon", "fg": 1297 }, + { "id": "mon_sheep", "fg": 1299 }, + { "id": "mon_skeleton_brute", "fg": 1300 }, + { "id": "mon_zombie_gasbag_crawler", "fg": 1309 }, + { "id": "mon_zombie_gasbag_immobile", "fg": 1310 }, + { "id": "mon_zombie_hanging_innards", "fg": 1311 }, + { "id": "mon_zombie_pig", "fg": 1313 }, + { "id": "mon_zow", "fg": 1322 }, + { "id": "shadow_32x32_small", "fg": 1324 }, + { "id": "corpse_mon_beaver", "fg": 1325 }, + { "id": "corpse_mon_beaver_mutant_avian", "fg": 1326 }, + { "id": "corpse_mon_beaver_mutant_huge", "fg": 1327 }, + { "id": "corpse_mon_zombeaver", "fg": 1328 }, + { "id": "mon_beaver", "fg": 1329 }, + { "id": "mon_beaver_mutant_avian", "fg": 1330 }, + { "id": "mon_beaver_mutant_huge", "fg": 1331 }, + { "id": "mon_zombeaver", "fg": 1332 }, + { "id": "mon_dog_bull", "fg": 1341 }, + { "id": "mon_dog_rottweiler", "fg": 1342 }, + { "id": "corpse_mon_aphid", "fg": 1385 }, + { "id": "mon_aphid", "fg": 1386 }, + { "id": "corpse_mon_coyote_mutant_venom", "fg": 1387 }, + { "id": "mon_coyote_mutant_venom", "fg": 1388 }, + { "id": "bot_eyebot", "fg": 1389 }, + { "id": "broken_eyebot", "fg": 1390 }, + { "id": "mon_eyebot", "fg": 1391 }, + { "id": "corpse_mon_fungaloid_shambler", "fg": 1394 }, + { "id": "mon_fungaloid_shambler", "fg": 1395 }, + { "id": "mon_goose_canadian", "fg": 1396 }, + { "id": "mon_grouse", "fg": 1397 }, + { "id": "mon_kreck", "fg": 1398 }, + { "id": "corpse_mon_mantis_small", "fg": 1399 }, + { "id": "mon_mantis_small", "fg": 1400 }, + { "id": "mon_pheasant", "fg": 1401 }, + { "id": "mon_tadpole_grabber", "fg": 1402 }, + { "id": "mon_tazer_hack", "fg": 1403 }, { "id": "mon_zombie_necro_boomer", "fg": 1409 }, - { "id": "mon_zombie_pig_gas", "fg": 1410 }, - { "id": "corpse_mon_zombie_rust", "fg": 1411 }, - { "id": "corpse_mon_zombie_shell", "fg": 1412 }, - { "id": "corpse_mon_zombie_urchin", "fg": 1413 }, - { "id": "mon_zombie_rust", "fg": 1414 }, - { "id": "mon_zombie_shell", "fg": 1415 }, - { "id": "mon_zombie_urchin", "fg": 1416 } + { "id": "mon_zombie_phase_skulker", "fg": 1410 }, + { "id": "mon_zombie_pig_gas", "fg": 1411 }, + { "id": "corpse_mon_zombie_rust", "fg": 1414 }, + { "id": "corpse_mon_zombie_shell", "fg": 1415 }, + { "id": "corpse_mon_zombie_urchin", "fg": 1416 }, + { "id": "mon_zombie_rust", "fg": 1417 }, + { "id": "mon_zombie_shell", "fg": 1418 }, + { "id": "mon_zombie_urchin", "fg": 1419 } ] }, { @@ -2493,19 +2502,21 @@ "sprite_offset_y": -16, "tiles": [ { "id": "mon_nursebot", "fg": [ 1664, 1665, 1666 ], "rotates": false }, + { "id": [ "mon_brute_pupa", "mon_brute_pupa_decoy" ], "fg": 1668, "rotates": false }, { "id": "mon_firefly", "animated": true, "fg": [ - { "weight": 15, "sprite": 1668 }, { "weight": 15, "sprite": 1669 }, { "weight": 15, "sprite": 1670 }, - { "weight": 15, "sprite": 1669 } + { "weight": 15, "sprite": 1671 }, + { "weight": 15, "sprite": 1670 } ] }, { "id": "mon_zombie_scissorlimbs", "fg": 1667 }, - { "id": "mon_mantis_giant", "fg": 1671 }, - { "id": "mon_robofac_prototype", "fg": 1672 } + { "id": "mon_mantis_giant", "fg": 1672 }, + { "id": "mon_robofac_prototype", "fg": 1673 }, + { "id": "mon_spawn_raptor", "fg": 1674 } ] }, { @@ -2675,48 +2686,57 @@ { "id": "broken_tankbot", "fg": 1793 } ] }, + { + "file": "ChibismallMonster.png", + "//": "range 1808 to 1823", + "sprite_width": 20, + "sprite_height": 20, + "sprite_offset_x": 0, + "sprite_offset_y": 0, + "tiles": [ { "id": "corpse_mon_aphid_small", "fg": 1808 }, { "id": "mon_aphid_small", "fg": 1809 } ] + }, { "file": "small.png", - "//": "range 1808 to 2911", + "//": "range 1824 to 2927", "sprite_width": 20, "sprite_height": 20, "sprite_offset_x": 0, "sprite_offset_y": 0, "tiles": [ - { "id": [ "plastic_plate", "soap_holder" ], "fg": 1919 }, - { "id": "RAM", "fg": 1809 }, - { "id": [ "beans_cooked", "can_beans" ], "fg": 1810 }, - { "id": "ceramic_plate", "fg": 1919 }, - { "id": [ "fancy_glasses_bifocal", "fancy_glasses_eye", "fancy_glasses_reading" ], "fg": 1943 }, - { "id": [ "glasses_eye", "glasses_reading" ], "fg": 1963 }, - { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 1981 }, - { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 2042 }, - { "id": "helmet_motor", "fg": 2072 }, - { "id": "katana", "fg": 2073 }, - { "id": "katana_fake", "fg": 2073 }, - { "id": "katana_inferior", "fg": 2073 }, - { "id": "223_casing", "fg": 2074 }, - { "id": "40mm_casing", "fg": 2075 }, - { "id": "40x46mm_m118_casing", "fg": 2075 }, - { "id": "50_casing", "fg": 2076 }, - { "id": "9mm_casing", "fg": 2077 }, - { "id": "arrow_cf", "fg": 2078 }, - { "id": "arrow_exploding", "fg": 2079 }, - { "id": "arrow_field_point_fletched", "fg": 2080 }, - { "id": "arrow_fire_hardened_fletched", "fg": 2081 }, - { "id": "flamable_arrow", "fg": 2095 }, - { "id": "arrow_flamming", "fg": 2082 }, - { "id": "arrow_heavy_fire_hardened_fletched", "fg": 2083 }, - { "id": "arrow_metal", "fg": 2084 }, - { "id": "arrow_metal_sharpened_fletched", "fg": 2085 }, - { "id": "arrow_plastic", "fg": 2086 }, - { "id": "arrow_small_game_fletched", "fg": 2087 }, - { "id": "arrow_wood", "fg": 2088 }, - { "id": "arrow_wood_heavy", "fg": 2089 }, - { "id": "bolt_cf", "fg": 2090 }, - { "id": "bolt_explosive", "fg": 2091 }, - { "id": "bolt_metal", "fg": 2092 }, - { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 2093 }, + { "id": [ "plastic_plate", "soap_holder" ], "fg": 1935 }, + { "id": "RAM", "fg": 1825 }, + { "id": [ "beans_cooked", "can_beans" ], "fg": 1826 }, + { "id": "ceramic_plate", "fg": 1935 }, + { "id": [ "fancy_glasses_bifocal", "fancy_glasses_eye", "fancy_glasses_reading" ], "fg": 1959 }, + { "id": [ "glasses_eye", "glasses_reading" ], "fg": 1979 }, + { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 1997 }, + { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 2060 }, + { "id": "helmet_motor", "fg": 2091 }, + { "id": "katana", "fg": 2092 }, + { "id": "katana_fake", "fg": 2092 }, + { "id": "katana_inferior", "fg": 2092 }, + { "id": "223_casing", "fg": 2093 }, + { "id": "40mm_casing", "fg": 2094 }, + { "id": "40x46mm_m118_casing", "fg": 2094 }, + { "id": "50_casing", "fg": 2095 }, + { "id": "9mm_casing", "fg": 2096 }, + { "id": "arrow_cf", "fg": 2097 }, + { "id": "arrow_exploding", "fg": 2098 }, + { "id": "arrow_field_point_fletched", "fg": 2099 }, + { "id": "arrow_fire_hardened_fletched", "fg": 2100 }, + { "id": "flamable_arrow", "fg": 2114 }, + { "id": "arrow_flamming", "fg": 2101 }, + { "id": "arrow_heavy_fire_hardened_fletched", "fg": 2102 }, + { "id": "arrow_metal", "fg": 2103 }, + { "id": "arrow_metal_sharpened_fletched", "fg": 2104 }, + { "id": "arrow_plastic", "fg": 2105 }, + { "id": "arrow_small_game_fletched", "fg": 2106 }, + { "id": "arrow_wood", "fg": 2107 }, + { "id": "arrow_wood_heavy", "fg": 2108 }, + { "id": "bolt_cf", "fg": 2109 }, + { "id": "bolt_explosive", "fg": 2110 }, + { "id": "bolt_metal", "fg": 2111 }, + { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 2112 }, { "id": [ "bolt_wood", @@ -2727,62 +2747,62 @@ "bolt_wood_bodkin", "bolt_wood_small_game" ], - "fg": 2094 - }, - { "id": "shot_hull", "fg": 2096 }, - { "id": [ "90two", "90two40" ], "fg": 2108 }, - { "id": [ "TDI", "TDI_10" ], "fg": 2110 }, - { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 2141 }, - { "id": [ "hptjcp", "hptjhp" ], "fg": 2147 }, - { "id": [ "m1911", "m1911a1_38super" ], "fg": 2158 }, - { "id": "basket_laundry", "fg": 2231 }, - { "id": "heavy_battery_cell", "fg": 2233 }, - { "id": "heavy_plus_battery_cell", "fg": 2233 }, - { "id": "heavy_disposable_cell", "fg": 2233 }, - { "id": "heavy_atomic_battery_cell", "fg": 2232 }, - { "id": "light_battery_cell", "fg": 2235 }, - { "id": "light_minus_battery_cell", "fg": 2237 }, - { "id": "light_plus_battery_cell", "fg": 2235 }, - { "id": "light_disposable_cell", "fg": 2235 }, - { "id": "light_atomic_battery_cell", "fg": 2234 }, - { "id": "light_minus_atomic_battery_cell", "fg": 2236 }, - { "id": "medium_battery_cell", "fg": 2239 }, - { "id": "medium_plus_battery_cell", "fg": 2239 }, - { "id": "medium_disposable_cell", "fg": 2239 }, - { "id": "medium_atomic_battery_cell", "fg": 2238 }, - { "id": "bead_bracelet", "fg": 2240 }, - { "id": "bone", "fg": 2241 }, - { "id": "bone_human", "fg": 2242 }, - { "id": "bone_tainted", "fg": 2243 }, - { "id": "SICP", "fg": 2244 }, - { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 2247 }, - { "id": "book_fict_soft_tpl", "fg": 2257 }, - { "id": "novel_adventure", "fg": 2257 }, - { "id": "novel_buddy", "fg": 2258 }, - { "id": "novel_coa", "fg": 2259 }, - { "id": "novel_coa2", "fg": 2260 }, - { "id": "novel_crime", "fg": 2261 }, - { "id": "novel_crime2", "fg": 2262 }, - { "id": "novel_drama", "fg": 2263 }, - { "id": "novel_erotic", "fg": 2264 }, - { "id": "novel_experimental", "fg": 2265 }, - { "id": "novel_fantasy", "fg": 2266 }, - { "id": "novel_horror", "fg": 2267 }, - { "id": "novel_mystery", "fg": 2268 }, - { "id": "novel_pulp", "fg": 2269 }, - { "id": "novel_road", "fg": 2270 }, - { "id": "novel_romance", "fg": 2271 }, - { "id": "novel_samurai", "fg": 2272 }, - { "id": "novel_satire", "fg": 2273 }, - { "id": "novel_scifi", "fg": 2274 }, - { "id": "novel_sports", "fg": 2275 }, - { "id": "novel_spy", "fg": 2276 }, - { "id": "novel_swash", "fg": 2277 }, - { "id": "novel_thriller", "fg": 2278 }, - { "id": "novel_tragedy", "fg": 2279 }, - { "id": "novel_war", "fg": 2280 }, - { "id": "novel_war2", "fg": 2281 }, - { "id": "novel_western", "fg": 2282 }, + "fg": 2113 + }, + { "id": "shot_hull", "fg": 2115 }, + { "id": [ "90two", "90two40" ], "fg": 2127 }, + { "id": [ "TDI", "TDI_10" ], "fg": 2129 }, + { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 2160 }, + { "id": [ "hptjcp", "hptjhp" ], "fg": 2166 }, + { "id": [ "m1911", "m1911a1_38super" ], "fg": 2177 }, + { "id": "basket_laundry", "fg": 2250 }, + { "id": "heavy_battery_cell", "fg": 2252 }, + { "id": "heavy_plus_battery_cell", "fg": 2252 }, + { "id": "heavy_disposable_cell", "fg": 2252 }, + { "id": "heavy_atomic_battery_cell", "fg": 2251 }, + { "id": "light_battery_cell", "fg": 2254 }, + { "id": "light_minus_battery_cell", "fg": 2256 }, + { "id": "light_plus_battery_cell", "fg": 2254 }, + { "id": "light_disposable_cell", "fg": 2254 }, + { "id": "light_atomic_battery_cell", "fg": 2253 }, + { "id": "light_minus_atomic_battery_cell", "fg": 2255 }, + { "id": "medium_battery_cell", "fg": 2258 }, + { "id": "medium_plus_battery_cell", "fg": 2258 }, + { "id": "medium_disposable_cell", "fg": 2258 }, + { "id": "medium_atomic_battery_cell", "fg": 2257 }, + { "id": "bead_bracelet", "fg": 2259 }, + { "id": "bone", "fg": 2260 }, + { "id": "bone_human", "fg": 2261 }, + { "id": "bone_tainted", "fg": 2262 }, + { "id": "SICP", "fg": 2263 }, + { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 2266 }, + { "id": "book_fict_soft_tpl", "fg": 2276 }, + { "id": "novel_adventure", "fg": 2276 }, + { "id": "novel_buddy", "fg": 2277 }, + { "id": "novel_coa", "fg": 2278 }, + { "id": "novel_coa2", "fg": 2279 }, + { "id": "novel_crime", "fg": 2280 }, + { "id": "novel_crime2", "fg": 2281 }, + { "id": "novel_drama", "fg": 2282 }, + { "id": "novel_erotic", "fg": 2283 }, + { "id": "novel_experimental", "fg": 2284 }, + { "id": "novel_fantasy", "fg": 2285 }, + { "id": "novel_horror", "fg": 2286 }, + { "id": "novel_mystery", "fg": 2287 }, + { "id": "novel_pulp", "fg": 2288 }, + { "id": "novel_road", "fg": 2289 }, + { "id": "novel_romance", "fg": 2290 }, + { "id": "novel_samurai", "fg": 2291 }, + { "id": "novel_satire", "fg": 2292 }, + { "id": "novel_scifi", "fg": 2293 }, + { "id": "novel_sports", "fg": 2294 }, + { "id": "novel_spy", "fg": 2295 }, + { "id": "novel_swash", "fg": 2296 }, + { "id": "novel_thriller", "fg": 2297 }, + { "id": "novel_tragedy", "fg": 2298 }, + { "id": "novel_war", "fg": 2299 }, + { "id": "novel_war2", "fg": 2300 }, + { "id": "novel_western", "fg": 2301 }, { "id": [ "adv_chemistry", @@ -2802,7 +2822,7 @@ "modern_tanner", "repeater_mod_guide" ], - "fg": 2249 + "fg": 2268 }, { "id": [ @@ -2823,7 +2843,7 @@ "textbook_robots", "textbook_armschina" ], - "fg": 2256 + "fg": 2275 }, { "id": [ @@ -2838,7 +2858,7 @@ "cookbook_daintydishes", "cookbook_liverforkids" ], - "fg": 2250 + "fg": 2269 }, { "id": [ @@ -2851,7 +2871,7 @@ "recipe_melee", "recipe_labchem" ], - "fg": 2254 + "fg": 2273 }, { "id": [ @@ -2868,9 +2888,9 @@ "recipe_creepy", "recipe_maiar" ], - "fg": 2254 + "fg": 2273 }, - { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 2253 }, + { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 2272 }, { "id": [ "mag_rifle", @@ -2894,7 +2914,7 @@ "mag_swimming", "mag_news" ], - "fg": 2251 + "fg": 2270 }, { "id": [ @@ -2911,7 +2931,7 @@ "schematics_searchlight", "schematics_secubot" ], - "fg": 2255 + "fg": 2274 }, { "id": [ @@ -2932,113 +2952,113 @@ "manual_shotgun", "manual_fabrication" ], - "fg": 2252 - }, - { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 2248 }, - { "id": "bottle_twoliter", "fg": 2283 }, - { "id": "bowl_pewter", "fg": 2284 }, - { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 2375 }, - { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 2376 }, - { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 2391 }, - { "id": [ "flour", "bread_flour" ], "fg": 2414 }, - { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 2445 }, - { "id": [ "microscope", "microscope_dissecting" ], "fg": 2439 }, - { "id": "digging_stick", "fg": 2463 }, - { "id": "sword_cane", "fg": 2522 }, - { "id": "hollow_cane", "fg": 2499 }, - { "id": "cane", "fg": 2525 }, - { "id": "i_staff", "fg": 2501 }, - { "id": "shock_staff", "fg": 2514 }, - { "id": "q_staff", "fg": 2515 }, - { "id": "scarf_fur", "fg": 2519 }, - { "id": "knit_scarf", "fg": 2502 }, - { "id": "scarf_fur_long", "fg": 2520 }, - { "id": "long_knit_scarf", "fg": 2503 }, - { "id": "long_patchwork_scarf", "fg": 2504 }, - { "id": "scarf_long", "fg": 2521 }, - { "id": "patchwork_scarf", "fg": 2512 }, - { "id": "scarf", "fg": 2518 }, - { "id": "scarf_fur_loose", "fg": 2519 }, - { "id": "knit_scarf_loose", "fg": 2502 }, - { "id": "scarf_fur_long_loose", "fg": 2520 }, - { "id": "long_knit_scarf_loose", "fg": 2503 }, - { "id": "long_patchwork_scarf_loose", "fg": 2504 }, - { "id": "scarf_long_loose", "fg": 2521 }, - { "id": "patchwork_scarf_loose", "fg": 2512 }, - { "id": "scarf_loose", "fg": 2518 }, - { "id": "ceramic_cup", "fg": 2535 }, - { "id": "ceramic_mug", "fg": 2536 }, - { "id": "ceramic_shard", "fg": 2537 }, - { "id": "chain", "fg": 2538 }, - { "id": "clay_lump", "fg": 2541 }, - { "id": "bag_plastic", "fg": 2542 }, - { "id": "bag_zipper", "fg": 2543 }, - { "id": "bottle_glass", "fg": 2544 }, - { "id": "bottle_plastic", "fg": 2545 }, - { "id": "bottle_plastic_small", "fg": 2546 }, - { "id": "box_cigarette", "fg": 2547 }, - { "id": "box_small", "fg": 2548 }, - { "id": "can_drink", "fg": 2549 }, - { "id": "can_drink_unsealed", "fg": 2550 }, - { "id": [ "glass", "base_glass_dish" ], "fg": 2551 }, - { "id": "jar_3l_glass", "fg": 2552 }, - { "id": "jar_3l_glass_sealed", "fg": 2553 }, - { "id": "jar_glass", "fg": 2554 }, - { "id": "jar_glass_sealed", "fg": 2555 }, - { "id": "jug_plastic", "fg": 2556 }, - { "id": "wrapper", "fg": 2557 }, - { "id": "cudgel", "fg": 2558 }, - { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 2630 }, - { "id": [ "waffles", "fruit_waffles" ], "fg": 2634 }, - { "id": [ "cookies", "crackers", "biscuit" ], "fg": 2626 }, - { "id": [ "cake2", "cake3", "space_cake" ], "fg": 2625 }, - { "id": "hinge", "fg": 2678 }, - { "id": "inhaler", "fg": 2679 }, - { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 2680 }, - { "id": "cig_butt", "fg": 2707 }, - { "id": "joint", "fg": 2710 }, - { "id": "joint_lit", "fg": 2711 }, - { "id": "joint_roach", "fg": 2712 }, - { "id": "aspirin", "fg": 2704 }, - { "id": "bandages", "fg": 2705 }, - { "id": "syringe", "fg": 2716 }, - { "id": "antibiotics", "fg": 2701 }, - { "id": "weak_antibiotic", "fg": 2719 }, - { "id": "strong_antibiotic", "fg": 2715 }, - { "id": "vitamins", "fg": 2718 }, - { "id": "gummy_vitamins", "fg": 2708 }, - { "id": "calcium_tablet", "fg": 2706 }, - { "id": "oxycodone", "fg": 2713 }, - { "id": "tramadol", "fg": 2717 }, - { "id": "codeine", "fg": 2732 }, - { "id": "prussian_blue", "fg": 2714 }, - { "id": "iodine", "fg": 2709 }, - { "id": "antiparasitic", "fg": 2703 }, - { "id": "antifungal", "fg": 2702 }, - { "id": "money_bundle", "fg": 2720 }, - { "id": "mp3", "fg": 2721 }, - { "id": "permanent_marker", "fg": 2756 }, - { "id": "pipe", "fg": 2758 }, - { "id": "cu_pipe", "fg": 2757 }, - { "id": "acorns", "fg": 2759 }, - { "id": "chips", "fg": 2763 }, - { "id": "apple", "fg": 2760 }, - { "id": "banana", "fg": 2761 }, - { "id": "broccoli", "fg": 2762 }, - { "id": "corn", "fg": 2764 }, - { "id": "cucumber", "fg": 2765 }, - { "id": "egg_bird", "fg": 2766 }, - { "id": "grapes", "fg": 2767 }, - { "id": "lemon", "fg": 2771 }, - { "id": "onion", "fg": 2772 }, - { "id": "orange", "fg": 2773 }, - { "id": "pear", "fg": 2774 }, - { "id": "potato", "fg": 2775 }, - { "id": "pumpkin", "fg": 2776 }, - { "id": "tomato", "fg": 2779 }, - { "id": "hickory_nut", "fg": 2768 }, - { "id": "hickory_root", "fg": 2769 }, - { "id": "juniper", "fg": 2770 }, + "fg": 2271 + }, + { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 2267 }, + { "id": "bottle_twoliter", "fg": 2302 }, + { "id": "bowl_pewter", "fg": 2303 }, + { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 2395 }, + { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 2396 }, + { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 2412 }, + { "id": [ "flour", "bread_flour" ], "fg": 2435 }, + { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 2466 }, + { "id": [ "microscope", "microscope_dissecting" ], "fg": 2460 }, + { "id": "digging_stick", "fg": 2484 }, + { "id": "sword_cane", "fg": 2543 }, + { "id": "hollow_cane", "fg": 2520 }, + { "id": "cane", "fg": 2546 }, + { "id": "i_staff", "fg": 2522 }, + { "id": "shock_staff", "fg": 2535 }, + { "id": "q_staff", "fg": 2536 }, + { "id": "scarf_fur", "fg": 2540 }, + { "id": "knit_scarf", "fg": 2523 }, + { "id": "scarf_fur_long", "fg": 2541 }, + { "id": "long_knit_scarf", "fg": 2524 }, + { "id": "long_patchwork_scarf", "fg": 2525 }, + { "id": "scarf_long", "fg": 2542 }, + { "id": "patchwork_scarf", "fg": 2533 }, + { "id": "scarf", "fg": 2539 }, + { "id": "scarf_fur_loose", "fg": 2540 }, + { "id": "knit_scarf_loose", "fg": 2523 }, + { "id": "scarf_fur_long_loose", "fg": 2541 }, + { "id": "long_knit_scarf_loose", "fg": 2524 }, + { "id": "long_patchwork_scarf_loose", "fg": 2525 }, + { "id": "scarf_long_loose", "fg": 2542 }, + { "id": "patchwork_scarf_loose", "fg": 2533 }, + { "id": "scarf_loose", "fg": 2539 }, + { "id": "ceramic_cup", "fg": 2556 }, + { "id": "ceramic_mug", "fg": 2557 }, + { "id": "ceramic_shard", "fg": 2558 }, + { "id": "chain", "fg": 2559 }, + { "id": "clay_lump", "fg": 2562 }, + { "id": "bag_plastic", "fg": 2563 }, + { "id": "bag_zipper", "fg": 2564 }, + { "id": "bottle_glass", "fg": 2565 }, + { "id": "bottle_plastic", "fg": 2566 }, + { "id": "bottle_plastic_small", "fg": 2567 }, + { "id": "box_cigarette", "fg": 2568 }, + { "id": "box_small", "fg": 2569 }, + { "id": "can_drink", "fg": 2570 }, + { "id": "can_drink_unsealed", "fg": 2571 }, + { "id": [ "glass", "base_glass_dish" ], "fg": 2572 }, + { "id": "jar_3l_glass", "fg": 2573 }, + { "id": "jar_3l_glass_sealed", "fg": 2574 }, + { "id": "jar_glass", "fg": 2575 }, + { "id": "jar_glass_sealed", "fg": 2576 }, + { "id": "jug_plastic", "fg": 2577 }, + { "id": "wrapper", "fg": 2578 }, + { "id": "cudgel", "fg": 2579 }, + { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 2651 }, + { "id": [ "waffles", "fruit_waffles" ], "fg": 2655 }, + { "id": [ "cookies", "crackers", "biscuit" ], "fg": 2647 }, + { "id": [ "cake2", "cake3", "space_cake" ], "fg": 2646 }, + { "id": "hinge", "fg": 2699 }, + { "id": "inhaler", "fg": 2700 }, + { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 2701 }, + { "id": "cig_butt", "fg": 2728 }, + { "id": "joint", "fg": 2731 }, + { "id": "joint_lit", "fg": 2732 }, + { "id": "joint_roach", "fg": 2733 }, + { "id": "aspirin", "fg": 2725 }, + { "id": "bandages", "fg": 2726 }, + { "id": "syringe", "fg": 2737 }, + { "id": "antibiotics", "fg": 2722 }, + { "id": "weak_antibiotic", "fg": 2740 }, + { "id": "strong_antibiotic", "fg": 2736 }, + { "id": "vitamins", "fg": 2739 }, + { "id": "gummy_vitamins", "fg": 2729 }, + { "id": "calcium_tablet", "fg": 2727 }, + { "id": "oxycodone", "fg": 2734 }, + { "id": "tramadol", "fg": 2738 }, + { "id": "codeine", "fg": 2753 }, + { "id": "prussian_blue", "fg": 2735 }, + { "id": "iodine", "fg": 2730 }, + { "id": "antiparasitic", "fg": 2724 }, + { "id": "antifungal", "fg": 2723 }, + { "id": "money_bundle", "fg": 2741 }, + { "id": "mp3", "fg": 2742 }, + { "id": "permanent_marker", "fg": 2777 }, + { "id": "pipe", "fg": 2779 }, + { "id": "cu_pipe", "fg": 2778 }, + { "id": "acorns", "fg": 2780 }, + { "id": "chips", "fg": 2784 }, + { "id": "apple", "fg": 2781 }, + { "id": "banana", "fg": 2782 }, + { "id": "broccoli", "fg": 2783 }, + { "id": "corn", "fg": 2785 }, + { "id": "cucumber", "fg": 2786 }, + { "id": "egg_bird", "fg": 2787 }, + { "id": "grapes", "fg": 2788 }, + { "id": "lemon", "fg": 2792 }, + { "id": "onion", "fg": 2793 }, + { "id": "orange", "fg": 2794 }, + { "id": "pear", "fg": 2795 }, + { "id": "potato", "fg": 2796 }, + { "id": "pumpkin", "fg": 2797 }, + { "id": "tomato", "fg": 2800 }, + { "id": "hickory_nut", "fg": 2789 }, + { "id": "hickory_root", "fg": 2790 }, + { "id": "juniper", "fg": 2791 }, { "id": [ "seed_hops", @@ -3106,1521 +3126,1555 @@ "seed_mulberries", "seed_elderberries" ], - "fg": 2777 - }, - { "id": "straw_pile", "fg": 2778 }, - { "id": "wheat", "fg": 2780 }, - { "id": "withered", "fg": 2781 }, - { "id": "bee_balm", "fg": 2782 }, - { "id": "carrot_wild", "fg": 2783 }, - { "id": "dogbane", "fg": 2784 }, - { "id": "egg_reptile", "fg": 2785 }, - { "id": "mugwort", "fg": 2786 }, - { "id": "thyme", "fg": 2787 }, - { "id": "veggy_wild", "fg": 2788 }, - { "id": "wild_herbs", "fg": 2789 }, - { "id": "feces_manure", "fg": 2793 }, - { "id": "feces_bird", "fg": 2790 }, - { "id": "feces_cow", "fg": 2791 }, - { "id": "feces_dog", "fg": 2792 }, - { "id": "feces_roach", "fg": 2794 }, - { "id": "fetid_goop", "fg": 2795 }, - { "id": "rag_bloody", "fg": 2798 }, - { "id": "ash", "fg": 2848 }, - { "id": "brick", "fg": 2849 }, - { "id": "scrap", "fg": 2852 }, - { "id": "e_scrap", "fg": 2851 }, - { "id": "steel_chunk", "fg": 2853 }, - { "id": "steel_lump", "fg": 2854 }, - { "id": "wire", "fg": 2855 }, - { "id": "cable", "fg": 2850 }, - { "id": "spring", "fg": 2857 }, - { "id": "survnote", "fg": 2858 }, - { "id": "creepy_doll", "fg": 2859 }, - { "id": "talking_doll", "fg": 2859 }, - { "id": "teapot", "fg": 2861 }, - { "id": "thermometer", "fg": 2862 }, - { "id": "crucible_clay", "fg": 2864 }, - { "id": "flashlight", "fg": 2866 }, - { "id": "heavy_flashlight", "fg": 2869 }, - { "id": "saw", "fg": 2879 }, - { "id": "screwdriver_set", "fg": 2875 }, - { "id": "wrench", "fg": 2880 }, - { "id": "hammer", "fg": 2868 }, - { "id": "hacksaw", "fg": 2867 }, - { "id": "knife_meat_cleaver", "fg": 2874 }, - { "id": "knife_vegetable_cleaver", "fg": 2878 }, + "fg": 2798 + }, + { "id": "straw_pile", "fg": 2799 }, + { "id": "wheat", "fg": 2801 }, + { "id": "withered", "fg": 2802 }, + { "id": "bee_balm", "fg": 2803 }, + { "id": "carrot_wild", "fg": 2804 }, + { "id": "dogbane", "fg": 2805 }, + { "id": "egg_reptile", "fg": 2806 }, + { "id": "mugwort", "fg": 2807 }, + { "id": "thyme", "fg": 2808 }, + { "id": "veggy_wild", "fg": 2809 }, + { "id": "wild_herbs", "fg": 2810 }, + { "id": "feces_manure", "fg": 2814 }, + { "id": "feces_bird", "fg": 2811 }, + { "id": "feces_cow", "fg": 2812 }, + { "id": "feces_dog", "fg": 2813 }, + { "id": "feces_roach", "fg": 2815 }, + { "id": "fetid_goop", "fg": 2816 }, + { "id": "rag_bloody", "fg": 2819 }, + { "id": "ash", "fg": 2869 }, + { "id": "brick", "fg": 2870 }, + { "id": "scrap", "fg": 2873 }, + { "id": "e_scrap", "fg": 2872 }, + { "id": "steel_chunk", "fg": 2874 }, + { "id": "steel_lump", "fg": 2875 }, + { "id": "wire", "fg": 2876 }, + { "id": "cable", "fg": 2871 }, + { "id": "spring", "fg": 2878 }, + { "id": "survnote", "fg": 2879 }, + { "id": "creepy_doll", "fg": 2880 }, + { "id": "talking_doll", "fg": 2880 }, + { "id": "teapot", "fg": 2882 }, + { "id": "thermometer", "fg": 2883 }, + { "id": "crucible_clay", "fg": 2885 }, + { "id": "flashlight", "fg": 2887 }, + { "id": "heavy_flashlight", "fg": 2890 }, + { "id": "saw", "fg": 2900 }, + { "id": "screwdriver_set", "fg": 2896 }, + { "id": "wrench", "fg": 2901 }, + { "id": "hammer", "fg": 2889 }, + { "id": "hacksaw", "fg": 2888 }, + { "id": "knife_meat_cleaver", "fg": 2895 }, + { "id": "knife_vegetable_cleaver", "fg": 2899 }, { "id": "lighter", - "fg": [ { "weight": 1, "sprite": 2871 }, { "weight": 1, "sprite": 2870 }, { "weight": 1, "sprite": 2872 } ] - }, - { "id": "makeshift_crowbar", "fg": 2873 }, - { "id": "esbit_stove", "fg": 2865 }, - { "id": "usb_drive", "fg": 2877 }, - { "id": "cash_card", "fg": 2881 }, - { "id": "file", "fg": 2882 }, - { "id": "fp_loyalty_card", "fg": 2883 }, - { "id": "id_industrial", "fg": 2884 }, - { "id": "id_military", "fg": 2885 }, - { "id": "id_science", "fg": 2886 }, - { "id": "bowl_plastic", "fg": 2887 }, - { "id": "cup_plastic", "fg": 2888 }, - { "id": "fork", "fg": 2889 }, - { "id": "knife_butter", "fg": 2890 }, - { "id": "washboard", "fg": 2897 }, - { "id": "wash_kit", "fg": 2896 }, - { "id": "helmet_army", "fg": 2902 }, - { "id": "foodperson_mask", "fg": 2900 }, - { "id": "foodperson_mask_on", "fg": 2901 }, - { "id": "ballistic_vest_esapi", "fg": 2899 }, - { "id": "saddle", "fg": 1808 }, - { "id": "blt", "fg": 1811 }, - { "id": "brain_cooked", "fg": 1812 }, - { "id": "butter", "fg": 1813 }, - { "id": "cheese_fries", "fg": 1814 }, - { "id": "chili", "fg": 1815 }, - { "id": "chilidogs", "fg": 1816 }, - { "id": "cooked_dinner", "fg": 1817 }, - { "id": "corndogs_cooked", "fg": 1818 }, - { "id": "corndogs_frozen", "fg": 1819 }, - { "id": "corndogs_homemade", "fg": 1820 }, - { "id": "cracklins", "fg": 1821 }, - { "id": "currywurst", "fg": 1822 }, - { "id": "demihuman_cooked", "fg": 1823 }, - { "id": "demihuman_lard", "fg": 1824 }, - { "id": "demihuman_stomach_boiled", "fg": 1825 }, - { "id": "demihuman_tallow", "fg": 1826 }, - { "id": "fish_bagel", "fg": 1827 }, - { "id": "fish_cooked", "fg": 1828 }, - { "id": "fish_sandwich", "fg": 1829 }, - { "id": "fresh_fries", "fg": 1830 }, - { "id": "glazed_tenderloin", "fg": 1831 }, - { "id": "homemade_burrito", "fg": 1832 }, - { "id": "hotdogs_campfire", "fg": 1833 }, - { "id": "hotdogs_cooked", "fg": 1834 }, - { "id": "hotdogs_frozen", "fg": 1835 }, - { "id": "hotdogs_newyork", "fg": 1836 }, - { "id": "insta_salad", "fg": 1837 }, - { "id": "junk_burrito", "fg": 1838 }, - { "id": "kidney_cooked", "fg": 1839 }, - { "id": "lard", "fg": 1840 }, - { "id": "lentils_cooked", "fg": 1841 }, - { "id": "liver_cooked", "fg": 1842 }, - { "id": "liver_onion", "fg": 1843 }, - { "id": "lung_cooked", "fg": 1844 }, - { "id": "marshmallow", "fg": 1845 }, - { "id": "meat_cooked", "fg": 1846 }, - { "id": "meat_scrap_cooked", "fg": 1847 }, - { "id": "meat_smoked", "fg": 1848 }, - { "id": "meatball", "fg": 1849 }, - { "id": "meatball_raw", "fg": 1850 }, - { "id": "mutant_human_cooked", "fg": 1851 }, - { "id": "mutant_human_lard", "fg": 1852 }, - { "id": "mutant_human_tallow", "fg": 1853 }, - { "id": "mutant_lard", "fg": 1854 }, - { "id": "mutant_meat_cooked", "fg": 1855 }, - { "id": "mutant_tallow", "fg": 1856 }, - { "id": "nachos", "fg": 1857 }, - { "id": "nachosc", "fg": 1858 }, - { "id": "nachosm", "fg": 1859 }, - { "id": "nachosmc", "fg": 1860 }, - { "id": "nachosv", "fg": 1861 }, - { "id": "nachosvc", "fg": 1862 }, - { "id": "oatmeal_cooked", "fg": 1863 }, - { "id": "oatmeal_deluxe", "fg": 1864 }, - { "id": "pan_roasted_corn", "fg": 1865 }, - { "id": "pizza_supreme", "fg": 1866 }, - { "id": "popcorn", "fg": 1867 }, - { "id": "popcorn2", "fg": 1868 }, - { "id": "quesadilla_cheese", "fg": 1869 }, - { "id": "rice_cooked", "fg": 1870 }, - { "id": "sandwich_cheese", "fg": 1871 }, - { "id": "sandwich_cheese_grilled", "fg": 1872 }, - { "id": "sandwich_cucumber", "fg": 1873 }, - { "id": "sandwich_deluxe", "fg": 1874 }, - { "id": "sandwich_fairy", "fg": 1875 }, - { "id": "sandwich_honey", "fg": 1876 }, - { "id": "sandwich_jam", "fg": 1877 }, - { "id": "sandwich_jam_butter", "fg": 1878 }, - { "id": "sandwich_pb", "fg": 1879 }, - { "id": "sandwich_pbh", "fg": 1880 }, - { "id": "sandwich_pbj", "fg": 1881 }, - { "id": "sandwich_pbm", "fg": 1882 }, - { "id": "sandwich_sauce", "fg": 1883 }, - { "id": "sandwich_t", "fg": 1884 }, - { "id": "sandwich_veggy", "fg": 1885 }, - { "id": "sausage_cooked", "fg": 1886 }, - { "id": "sloppyjoe", "fg": 1887 }, - { "id": "spaghetti_cooked", "fg": 1888 }, - { "id": "stewed_tripe", "fg": 1889 }, - { "id": "stomach_boiled", "fg": 1890 }, - { "id": "stuffed_clams", "fg": 1891 }, - { "id": "sweetbread_cooked", "fg": 1892 }, - { "id": "taco", "fg": 1893 }, - { "id": "tallow", "fg": 1894 }, - { "id": "toasterpastry", "fg": 1895 }, - { "id": "veggy_cooked", "fg": 1896 }, - { "id": "2byarm_guard", "fg": 1897 }, - { "id": "2byshin_guard", "fg": 1898 }, - { "id": "adhesive_bandages", "fg": 1899 }, - { "id": "arm_warmers", "fg": 1900 }, - { "id": "arrowrest", "fg": 1901 }, - { "id": "atomic_light", "fg": 1902 }, - { "id": "atomic_light_off", "fg": 1903 }, - { "id": "b_paint", "fg": 1904 }, - { "id": "bandana", "fg": 1905 }, - { "id": "barley", "fg": 1906 }, - { "id": "boltcutters", "fg": 1907 }, - { "id": "bottle_opener", "fg": 1908 }, - { "id": "bow_saw", "fg": 1909 }, - { "id": "briefcase", "fg": 1910 }, - { "id": "cable_instrument", "fg": 1911 }, - { "id": "cable_xlr", "fg": 1912 }, - { "id": "can_opener", "fg": 1913 }, - { "id": "candle", "fg": 1914 }, - { "id": "candlestick", "fg": 1915 }, - { "id": "cannonball_4lb", "fg": 1916 }, - { "id": "carving_fork", "fg": 1917 }, - { "id": "ceramic_armor", "fg": 1918 }, - { "id": "chain_link", "fg": 1920 }, - { "id": "chainmail_arms", "fg": 1921 }, - { "id": "chainmail_hood", "fg": 1922 }, - { "id": "chainmail_legs", "fg": 1923 }, - { "id": "chainmail_suit_faraday", "fg": 1924 }, - { "id": "charcoal", "fg": 1925 }, - { "id": "chess", "fg": 1926 }, - { "id": "chipper", "fg": 1927 }, - { "id": "chisel", "fg": 1928 }, - { "id": "clarinet", "fg": 1929 }, - { "id": "clay_pot_flower", "fg": 1930 }, - { "id": "colander_steel", "fg": 1931 }, - { "id": "copper_pan", "fg": 1932 }, - { "id": "cordless_drill", "fg": 1933 }, - { "id": "corkscrew", "fg": 1934 }, - { "id": "cow_bell", "fg": 1935 }, - { "id": "crown_golden", "fg": 1936 }, - { "id": "data_card", "fg": 1937 }, - { "id": "diazepam", "fg": 1938 }, - { "id": "dish_towel", "fg": 1939 }, - { "id": "esapi_plate", "fg": 1940 }, - { "id": "esbi_plate", "fg": 1941 }, - { "id": "eyedrops", "fg": 1942 }, - { "id": "feather", "fg": 1944 }, - { "id": "felt_patch", "fg": 1945 }, - { "id": "fishing_hook_basic", "fg": 1946 }, - { "id": "flask_yeast", "fg": 1947 }, - { "id": "flint_steel", "fg": 1948 }, - { "id": "flute", "fg": 1949 }, - { "id": "folding_poncho", "fg": 1950 }, - { "id": "food_processor", "fg": 1951 }, - { "id": "footrags", "fg": 1952 }, - { "id": "footrags_fur", "fg": 1953 }, - { "id": "footrags_leather", "fg": 1954 }, - { "id": "footrags_wool", "fg": 1955 }, - { "id": "frisbee", "fg": 1956 }, - { "id": "g_paint", "fg": 1957 }, - { "id": "garlic", "fg": 1958 }, - { "id": "garlic_press", "fg": 1959 }, - { "id": "glass_plate", "fg": 1960 }, - { "id": "glass_tinted", "fg": 1961 }, - { "id": "glasses_bifocal", "fg": 1962 }, - { "id": "gloves_light", "fg": 1964 }, - { "id": "hair_dryer", "fg": 1965 }, - { "id": "hammer_sledge", "fg": 1966 }, - { "id": "hammer_sledge_engineer", "fg": 1967 }, - { "id": "hammer_sledge_heavy", "fg": 1968 }, - { "id": "hammer_sledge_short", "fg": 1969 }, - { "id": "hand_axe", "fg": 1970 }, - { "id": "hand_drill", "fg": 1971 }, - { "id": "hand_rims", "fg": 1972 }, - { "id": "handrolled_cig", "fg": 1973 }, - { "id": "hard_steel_armor", "fg": 1974 }, - { "id": "harmonica_holder", "fg": 1975 }, - { "id": "hat_chef", "fg": 1976 }, - { "id": "iron_pot", "fg": 1977 }, - { "id": "jack", "fg": 1978 }, - { "id": "jack_makeshift", "fg": 1979 }, - { "id": "jack_small", "fg": 1980 }, - { "id": "kettle", "fg": 1982 }, - { "id": "ladle", "fg": 1983 }, - { "id": "laptop", "fg": 1984 }, - { "id": "leg_warmers", "fg": 1985 }, - { "id": "link_sheet", "fg": 1986 }, - { "id": "machete", "fg": 1987 }, - { "id": "makeshift_bayonet", "fg": 1988 }, - { "id": "makeshift_hammer", "fg": 1989 }, - { "id": "makeshift_machete", "fg": 1990 }, - { "id": "makeshift_stethoscope", "fg": 1991 }, - { "id": "matches", "fg": 1992 }, - { "id": "material_shrd_limestone", "fg": 1993 }, - { "id": "mbag", "fg": 1994 }, - { "id": "mess_tin", "fg": 1995 }, - { "id": "meth", "fg": 1996 }, - { "id": "morphine", "fg": 1997 }, - { "id": "mortar_pestle", "fg": 1998 }, - { "id": "motor_tiny", "fg": 1999 }, - { "id": "mouthpiece", "fg": 2000 }, - { "id": "office_holepunch", "fg": 2001 }, - { "id": "omnicamera", "fg": 2002 }, - { "id": "p_paint", "fg": 2003 }, - { "id": "paint_brush", "fg": 2004 }, - { "id": "pan", "fg": 2005 }, - { "id": "paper", "fg": 2006 }, - { "id": "peeler", "fg": 2007 }, - { "id": "pipe_fittings", "fg": 2008 }, - { "id": "plastic_pot_flower", "fg": 2009 }, - { "id": "pliers", "fg": 2010 }, - { "id": "plums", "fg": 2011 }, - { "id": "pot", "fg": 2012 }, - { "id": "pot_canning", "fg": 2013 }, - { "id": "pot_copper", "fg": 2014 }, - { "id": "pot_helmet", "fg": 2015 }, - { "id": "pot_makeshift", "fg": 2016 }, - { "id": "pot_makeshift_copper", "fg": 2017 }, - { "id": "potato_masher", "fg": 2018 }, - { "id": "r_paint", "fg": 2019 }, - { "id": "reading_light", "fg": 2020 }, - { "id": "reading_light_on", "fg": 2021 }, - { "id": "receiver", "fg": 2022 }, - { "id": "reinforced_glass_pane", "fg": 2023 }, - { "id": "rolling_pin", "fg": 2024 }, - { "id": "scrap_bronze", "fg": 2025 }, - { "id": "scrap_felt", "fg": 2026 }, - { "id": "sheet_felt", "fg": 2027 }, - { "id": "sheet_felt_patchwork", "fg": 2028 }, - { "id": "shocktonfa_off", "fg": 2029 }, - { "id": "shocktonfa_on", "fg": 2030 }, - { "id": "slingpack", "fg": 2031 }, - { "id": "smart_phone", "fg": 2032 }, - { "id": "soap", "fg": 2033 }, - { "id": "solder_wire", "fg": 2034 }, - { "id": "spatula", "fg": 2035 }, - { "id": "spider_egg", "fg": 2036 }, - { "id": "spike", "fg": 2037 }, - { "id": "steel_armor", "fg": 2038 }, - { "id": "steel_pan", "fg": 2039 }, - { "id": "stethoscope", "fg": 2040 }, - { "id": "stock_pot", "fg": 2041 }, - { "id": "swage", "fg": 2043 }, - { "id": "tazer", "fg": 2044 }, - { "id": "teleumbrella", "fg": 2045 }, - { "id": "tinder", "fg": 2046 }, - { "id": "tinderbox", "fg": 2047 }, - { "id": "tinfoil_hat", "fg": 2048 }, - { "id": "tonfa", "fg": 2049 }, - { "id": "tonfa_wood", "fg": 2050 }, - { "id": "tongs", "fg": 2051 }, - { "id": "unfinished_charcoal", "fg": 2052 }, - { "id": "w_paint", "fg": 2053 }, - { "id": "water_purifier", "fg": 2054 }, - { "id": "wheel", "fg": 2055 }, - { "id": "wheel_10", "fg": 2056 }, - { "id": "wheel_barrow", "fg": 2057 }, - { "id": "wheel_bicycle", "fg": 2058 }, - { "id": "wheel_bicycle_or", "fg": 2059 }, - { "id": "wheel_motorbike", "fg": 2060 }, - { "id": "wheel_motorbike_or", "fg": 2061 }, - { "id": "wheel_skate", "fg": 2062 }, - { "id": "wheel_slick", "fg": 2063 }, - { "id": "wheel_small", "fg": 2064 }, - { "id": "wheel_tricycle", "fg": 2065 }, - { "id": "wheel_wheelchair", "fg": 2066 }, - { "id": "whisk", "fg": 2067 }, - { "id": "wine_glass", "fg": 2068 }, - { "id": "wire_barbed", "fg": 2069 }, - { "id": "y_paint", "fg": 2070 }, - { "id": "halligan", "fg": 2071 }, - { "id": "cig", "fg": 2097 }, - { "id": "cig_lit", "fg": 2098 }, - { "id": "copper_ring", "fg": 2099 }, - { "id": "g_shovel", "fg": 2100 }, - { "id": "lsd", "fg": 2101 }, - { "id": "silver_ring", "fg": 2102 }, - { "id": "thermal_mask", "fg": 2103 }, - { "id": "thermal_socks", "fg": 2104 }, - { "id": "tie_clipon", "fg": 2105 }, - { "id": "whistle", "fg": 2106 }, - { "id": "2_shot_special", "fg": 2107 }, - { "id": "LAW_Packed", "fg": 2109 }, - { "id": "af2011a1_38super", "fg": 2111 }, - { "id": "ar_pistol", "fg": 2112 }, - { "id": "ashot", "fg": 2113 }, - { "id": "bfr", "fg": 2114 }, - { "id": "bigun", "fg": 2115 }, - { "id": "bond_410", "fg": 2116 }, - { "id": "bt_apc9k", "fg": 2117 }, - { "id": "colt_army", "fg": 2118 }, - { "id": "colt_navy", "fg": 2119 }, - { "id": "colt_saa", "fg": 2120 }, - { "id": "cop_38", "fg": 2121 }, - { "id": "cz75", "fg": 2122 }, - { "id": "deagle_44", "fg": 2123 }, - { "id": "draco", "fg": 2124 }, - { "id": "flamethrower_crude", "fg": 2125 }, - { "id": "flamethrower_simple", "fg": 2126 }, - { "id": "fn1910", "fg": 2127 }, - { "id": "fn57", "fg": 2128 }, - { "id": "fn_p90", "fg": 2129 }, - { "id": "glock_17", "fg": 2130 }, - { "id": "glock_18c", "fg": 2131 }, - { "id": "glock_19", "fg": 2132 }, - { "id": "glock_20", "fg": 2133 }, - { "id": "glock_20_var_glock_40", "fg": 2134 }, - { "id": "glock_21", "fg": 2135 }, - { "id": "glock_22", "fg": 2136 }, - { "id": "glock_29", "fg": 2137 }, - { "id": "glock_31", "fg": 2138 }, - { "id": "hi_power_40", "fg": 2139 }, - { "id": "hi_power_9mm", "fg": 2140 }, - { "id": "hk_mp5_semi_pistol", "fg": 2142 }, - { "id": "hk_mp7", "fg": 2143 }, - { "id": "hk_ump45", "fg": 2144 }, - { "id": "hptc9", "fg": 2145 }, - { "id": "hptcf380", "fg": 2146 }, - { "id": "kp32", "fg": 2148 }, - { "id": "kp3at", "fg": 2149 }, - { "id": "kpf9", "fg": 2150 }, - { "id": "l_bak_223", "fg": 2151 }, - { "id": "launcher_simple", "fg": 2152 }, - { "id": "lemat_revolver", "fg": 2153 }, - { "id": "m11", "fg": 2154 }, - { "id": "m17", "fg": 2155 }, - { "id": "m18", "fg": 2156 }, - { "id": "m1911-460", "fg": 2157 }, - { "id": "m1911_10", "fg": 2159 }, - { "id": "m1911_var_m1911_MEU", "fg": 2160 }, - { "id": "m320", "fg": 2161 }, - { "id": "m4_carbine_var_m4_cqbr", "fg": 2162 }, - { "id": "m9", "fg": 2163 }, - { "id": "mac_10", "fg": 2164 }, - { "id": "mac_11", "fg": 2165 }, - { "id": "makarov", "fg": 2166 }, - { "id": "mauser_c96", "fg": 2167 }, - { "id": "mauser_m714", "fg": 2168 }, - { "id": "mgl", "fg": 2169 }, - { "id": "minispeargun", "fg": 2170 }, - { "id": "model_10_revolver", "fg": 2171 }, - { "id": "moss_brownie", "fg": 2172 }, - { "id": "nailgun", "fg": 2173 }, - { "id": "nailrifle", "fg": 2174 }, - { "id": "needlepistol", "fg": 2175 }, - { "id": "oa93", "fg": 2176 }, - { "id": "p08", "fg": 2177 }, - { "id": "p220_10", "fg": 2178 }, - { "id": "p226_357sig", "fg": 2179 }, - { "id": "p226_9mm", "fg": 2180 }, - { "id": "p320_357sig", "fg": 2181 }, - { "id": "paintballgun", "fg": 2182 }, - { "id": "pipe_double_shotgun", "fg": 2183 }, - { "id": "pistol_flintlock", "fg": 2184 }, - { "id": "px4", "fg": 2185 }, - { "id": "px4_40", "fg": 2186 }, - { "id": "raging_bull", "fg": 2187 }, - { "id": "raging_judge", "fg": 2188 }, - { "id": "revolver_shotgun", "fg": 2189 }, - { "id": "rm103a_pistol", "fg": 2190 }, - { "id": "rm2000_smg", "fg": 2191 }, - { "id": "rm228", "fg": 2192 }, - { "id": "ruger_lcr_22", "fg": 2193 }, - { "id": "ruger_lcr_38", "fg": 2194 }, - { "id": "ruger_redhawk", "fg": 2195 }, - { "id": "rugerlcp", "fg": 2196 }, - { "id": "sig_40", "fg": 2197 }, - { "id": "sig_mosquito", "fg": 2198 }, - { "id": "sig_p230", "fg": 2199 }, - { "id": "skorpion_61", "fg": 2200 }, - { "id": "smg_40", "fg": 2201 }, - { "id": "smg_45", "fg": 2202 }, - { "id": "sp2022", "fg": 2203 }, - { "id": "streetsweeper", "fg": 2204 }, - { "id": "surv_hand_cannon", "fg": 2205 }, - { "id": "surv_six_shooter", "fg": 2206 }, - { "id": "sw629", "fg": 2207 }, - { "id": "sw_22", "fg": 2208 }, - { "id": "sw_500", "fg": 2209 }, - { "id": "sw_610", "fg": 2210 }, - { "id": "sw_619", "fg": 2211 }, - { "id": "taurus_spectrum", "fg": 2212 }, - { "id": "tec9", "fg": 2213 }, - { "id": "tokarev", "fg": 2214 }, - { "id": "triple_launcher_simple", "fg": 2215 }, - { "id": "unbio_blaster_gun", "fg": 2216 }, - { "id": "usp_45", "fg": 2217 }, - { "id": "usp_45_var_mk23", "fg": 2218 }, - { "id": "usp_9mm", "fg": 2219 }, - { "id": "uzi", "fg": 2220 }, - { "id": "v29", "fg": 2221 }, - { "id": "v29_cheap", "fg": 2222 }, - { "id": "walther_ccp", "fg": 2223 }, - { "id": "walther_p22", "fg": 2224 }, - { "id": "walther_p38", "fg": 2225 }, - { "id": "walther_ppq_40", "fg": 2226 }, - { "id": "walther_ppq_45", "fg": 2227 }, - { "id": "walther_ppq_9mm", "fg": 2228 }, - { "id": "witness_10", "fg": 2229 }, - { "id": "xd_10", "fg": 2230 }, - { "id": "book_pieces", "fg": 2245 }, - { "id": "book_ruined", "fg": 2246 }, - { "id": "button_plastic", "fg": 2285 }, - { "id": "button_steel", "fg": 2286 }, - { "id": "button_wood", "fg": 2287 }, - { "id": "antenna", "fg": 2288 }, - { "id": "badge_deputy", "fg": 2289 }, - { "id": "coconut", "fg": 2290 }, - { "id": "directional_antenna", "fg": 2291 }, - { "id": "halter_top", "fg": 2292 }, - { "id": "hand_crank_charger", "fg": 2293 }, - { "id": "hops", "fg": 2294 }, - { "id": "kidney", "fg": 2295 }, - { "id": "lettuce", "fg": 2296 }, - { "id": "lily_flower", "fg": 2297 }, - { "id": "scorecard", "fg": 2298 }, - { "id": "spinach", "fg": 2299 }, - { "id": "altered_comb", "fg": 2300 }, - { "id": "gasdiscount_gold", "fg": 2301 }, - { "id": "gasdiscount_platinum", "fg": 2302 }, - { "id": "gasdiscount_silver", "fg": 2303 }, - { "id": "gold_hairpin", "fg": 2304 }, - { "id": "nanoskirt", "fg": 2305 }, - { "id": "pearl", "fg": 2306 }, - { "id": "platinum_ring", "fg": 2307 }, - { "id": "skirt_grass", "fg": 2308 }, - { "id": "skirt_leather", "fg": 2309 }, - { "id": "wallet_leather", "fg": 2310 }, - { "id": "copper_necklace", "fg": 2311 }, - { "id": "pearl_collar", "fg": 2312 }, - { "id": "alexandrite_gold_pendant_necklace", "fg": 2313 }, - { "id": "amethyst_gold_pendant_necklace", "fg": 2314 }, - { "id": "aquamarine_gold_pendant_necklace", "fg": 2315 }, - { "id": "blue_topaz_gold_pendant_necklace", "fg": 2316 }, - { "id": "citrine_gold_pendant_necklace", "fg": 2317 }, - { "id": "diamond_gold_pendant_necklace", "fg": 2318 }, - { "id": "emerald_gold_pendant_necklace", "fg": 2319 }, - { "id": "garnet_gold_pendant_necklace", "fg": 2320 }, - { "id": "gold_necklace", "fg": 2321 }, - { "id": "opal_gold_pendant_necklace", "fg": 2322 }, - { "id": "pearl_gold_pendant_necklace", "fg": 2323 }, - { "id": "peridot_gold_pendant_necklace", "fg": 2324 }, - { "id": "ruby_gold_pendant_necklace", "fg": 2325 }, - { "id": "sapphire_gold_pendant_necklace", "fg": 2326 }, - { "id": "tourmaline_gold_pendant_necklace", "fg": 2327 }, - { "id": "alexandrite_platinum_pendant_necklace", "fg": 2328 }, - { "id": "amethyst_platinum_pendant_necklace", "fg": 2329 }, - { "id": "aquamarine_platinum_pendant_necklace", "fg": 2330 }, - { "id": "blue_topaz_platinum_pendant_necklace", "fg": 2331 }, - { "id": "citrine_platinum_pendant_necklace", "fg": 2332 }, - { "id": "diamond_platinum_pendant_necklace", "fg": 2333 }, - { "id": "emerald_platinum_pendant_necklace", "fg": 2334 }, - { "id": "garnet_platinum_pendant_necklace", "fg": 2335 }, - { "id": "opal_platinum_pendant_necklace", "fg": 2336 }, - { "id": "pearl_platinum_pendant_necklace", "fg": 2337 }, - { "id": "peridot_platinum_pendant_necklace", "fg": 2338 }, - { "id": "platinum_necklace", "fg": 2339 }, - { "id": "ruby_platinum_pendant_necklace", "fg": 2340 }, - { "id": "sapphire_platinum_pendant_necklace", "fg": 2341 }, - { "id": "tourmaline_platinum_pendant_necklace", "fg": 2342 }, - { "id": "alexandrite_silver_pendant_necklace", "fg": 2343 }, - { "id": "amethyst_silver_pendant_necklace", "fg": 2344 }, - { "id": "aquamarine_silver_pendant_necklace", "fg": 2345 }, - { "id": "blue_topaz_silver_pendant_necklace", "fg": 2346 }, - { "id": "citrine_silver_pendant_necklace", "fg": 2347 }, - { "id": "diamond_silver_pendant_necklace", "fg": 2348 }, - { "id": "emerald_silver_pendant_necklace", "fg": 2349 }, - { "id": "garnet_silver_pendant_necklace", "fg": 2350 }, - { "id": "opal_silver_pendant_necklace", "fg": 2351 }, - { "id": "pearl_silver_pendant_necklace", "fg": 2352 }, - { "id": "peridot_silver_pendant_necklace", "fg": 2353 }, - { "id": "ruby_silver_pendant_necklace", "fg": 2354 }, - { "id": "sapphire_silver_pendant_necklace", "fg": 2355 }, - { "id": "silver_necklace", "fg": 2356 }, - { "id": "tourmaline_silver_pendant_necklace", "fg": 2357 }, - { "id": "alder_bark", "fg": 2358 }, - { "id": "barrette", "fg": 2359 }, - { "id": "birchbark", "fg": 2360 }, - { "id": "caff_gum", "fg": 2361 }, - { "id": "cattail_stalk", "fg": 2362 }, - { "id": "golf_tee", "fg": 2363 }, - { "id": "gum", "fg": 2364 }, - { "id": "hand_pump", "fg": 2365 }, - { "id": "ifak_pouch", "fg": 2366 }, - { "id": "knitting_needles", "fg": 2367 }, - { "id": "lasagne", "fg": 2368 }, - { "id": "magnifying_glass", "fg": 2369 }, - { "id": "mininuke", "fg": 2370 }, - { "id": "mininuke_act", "fg": 2371 }, - { "id": "net", "fg": 2372 }, - { "id": "rolling_paper", "fg": 2373 }, - { "id": "tanbark", "fg": 2374 }, - { "id": "willowbark", "fg": 2377 }, - { "id": "deck_of_cards", "fg": 2378 }, - { "id": "hairpin", "fg": 2379 }, - { "id": "weed", "fg": 2380 }, - { "id": "ceramic_bowl", "fg": 2381 }, - { "id": "chestrig", "fg": 2382 }, - { "id": "radio_car", "fg": 2383 }, - { "id": "radio_car_box", "fg": 2384 }, - { "id": "radio_car_on", "fg": 2385 }, - { "id": "radio_car_wheel", "fg": 2386 }, - { "id": "radiocontrol", "fg": 2387 }, - { "id": "rc_car_box", "fg": 2388 }, - { "id": "toaster", "fg": 2389 }, - { "id": "xl_chestrig", "fg": 2390 }, - { "id": "alternator_truck", "fg": 2392 }, - { "id": "ammolink", "fg": 2393 }, - { "id": "angle_grinder", "fg": 2394 }, - { "id": "atomic_lamp", "fg": 2395 }, - { "id": "atomic_lamp_off", "fg": 2396 }, - { "id": "barometer", "fg": 2397 }, - { "id": "birdfood", "fg": 2398 }, - { "id": "bismuth", "fg": 2399 }, - { "id": "brick_kiln", "fg": 2400 }, - { "id": "caffeine", "fg": 2401 }, - { "id": "camera", "fg": 2402 }, - { "id": "chem_citric_acid", "fg": 2403 }, - { "id": "chem_sulphur", "fg": 2404 }, - { "id": "chunk_sulfur", "fg": 2405 }, - { "id": "circsaw_off", "fg": 2406 }, - { "id": "circsaw_on", "fg": 2407 }, - { "id": "coal_lump", "fg": 2408 }, - { "id": "con_mix", "fg": 2409 }, - { "id": "disc_golf", "fg": 2410 }, - { "id": "drivebelt", "fg": 2411 }, - { "id": "eink_tablet_pc", "fg": 2412 }, - { "id": "flatbread", "fg": 2413 }, - { "id": "gelbox", "fg": 2415 }, - { "id": "generator_7500w", "fg": 2416 }, - { "id": "glowstick", "fg": 2417 }, - { "id": "glowstick_dead", "fg": 2418 }, - { "id": "glowstick_lit", "fg": 2419 }, - { "id": "gold_small", "fg": 2420 }, - { "id": "golf_club", "fg": 2421 }, - { "id": "handflare", "fg": 2422 }, - { "id": "heatpack", "fg": 2423 }, - { "id": "heatpack_used", "fg": 2424 }, - { "id": "hoe", "fg": 2425 }, - { "id": "homeopathic_pills", "fg": 2426 }, - { "id": "horn_bicycle", "fg": 2427 }, - { "id": "jumper_cable", "fg": 2428 }, - { "id": "kiln", "fg": 2429 }, - { "id": "lead", "fg": 2430 }, - { "id": "leather", "fg": 2431 }, - { "id": "lightstrip", "fg": 2432 }, - { "id": "material_aluminium_ingot", "fg": 2433 }, - { "id": "material_limestone", "fg": 2434 }, - { "id": "material_rhodonite", "fg": 2435 }, - { "id": "material_rocksalt", "fg": 2436 }, - { "id": "material_zincite", "fg": 2437 }, - { "id": "metal_smoother", "fg": 2438 }, - { "id": "multitool", "fg": 2440 }, - { "id": "nic_gum", "fg": 2441 }, - { "id": "pencil", "fg": 2442 }, - { "id": "pipe_cleaner", "fg": 2443 }, - { "id": "pipe_glass", "fg": 2444 }, - { "id": "platinum_small", "fg": 2446 }, - { "id": "polisher", "fg": 2447 }, - { "id": "press", "fg": 2448 }, - { "id": "puller", "fg": 2449 }, - { "id": "rake", "fg": 2450 }, - { "id": "razorclaw_roe", "fg": 2451 }, - { "id": "sickle", "fg": 2452 }, - { "id": "silver_small", "fg": 2453 }, - { "id": "small_repairkit", "fg": 2454 }, - { "id": "tanned_hide", "fg": 2455 }, - { "id": "tanned_pelt", "fg": 2456 }, - { "id": "tourist_table", "fg": 2457 }, - { "id": "zinc_metal", "fg": 2458 }, - { "id": "beartrap", "fg": 2459 }, - { "id": "tr_beartrap", "fg": 2460 }, - { "id": "wire_mesh", "fg": 2461 }, - { "id": "cannabis", "fg": 2462 }, - { "id": "dnd_handbook", "fg": 2464 }, - { "id": "holybook_bible1", "fg": 2465 }, - { "id": "holybook_bible3", "fg": 2466 }, - { "id": "l-stick", "fg": 2467 }, - { "id": "l-stick_on", "fg": 2468 }, - { "id": "makarovmag", "fg": 2469 }, - { "id": "manual_brawl", "fg": 2470 }, - { "id": "manual_carpentry", "fg": 2471 }, - { "id": "manual_dodge_kid", "fg": 2472 }, - { "id": "manual_driving", "fg": 2473 }, - { "id": "manual_melee", "fg": 2474 }, - { "id": "philosophy_book", "fg": 2475 }, - { "id": "phonebook", "fg": 2476 }, - { "id": "photo_album", "fg": 2477 }, - { "id": "plastic_bucket", "fg": 2478 }, - { "id": "record_weather", "fg": 2479 }, - { "id": "straw_fedora", "fg": 2480 }, - { "id": "textbook_computer", "fg": 2481 }, - { "id": "textbook_fabrication", "fg": 2482 }, - { "id": "textbook_survival", "fg": 2483 }, - { "id": "water_faucet", "fg": 2484 }, - { "id": "can_food", "fg": 2485 }, - { "id": "can_food_big", "fg": 2486 }, - { "id": "can_food_big_unsealed", "fg": 2487 }, - { "id": "can_food_unsealed", "fg": 2488 }, - { "id": "can_medium", "fg": 2489 }, - { "id": "can_medium_unsealed", "fg": 2490 }, - { "id": "clamp", "fg": 2491 }, - { "id": "crude_picklock", "fg": 2492 }, - { "id": "cured_hide", "fg": 2493 }, - { "id": "cured_pelt", "fg": 2494 }, - { "id": "demihuman_fat", "fg": 2495 }, - { "id": "fat", "fg": 2496 }, - { "id": "fat_tainted", "fg": 2497 }, - { "id": "headscarf", "fg": 2498 }, - { "id": "human_fat", "fg": 2500 }, - { "id": "marloss_scarf", "fg": 2505 }, - { "id": "meat", "fg": 2506 }, - { "id": "meat_tainted", "fg": 2507 }, - { "id": "mutant_fat", "fg": 2508 }, - { "id": "mutant_human_fat", "fg": 2509 }, - { "id": "mutant_human_flesh", "fg": 2510 }, - { "id": "mutant_meat", "fg": 2511 }, - { "id": "pipe_tobacco", "fg": 2513 }, - { "id": "raw_fur", "fg": 2516 }, - { "id": "raw_leather", "fg": 2517 }, - { "id": "tanning_hide", "fg": 2523 }, - { "id": "tanning_pelt", "fg": 2524 }, - { "id": "analytical_set_basic", "fg": 2526 }, - { "id": "balance_small", "fg": 2527 }, - { "id": "beaker", "fg": 2528 }, - { "id": "flask_glass", "fg": 2529 }, - { "id": "gradcylinder", "fg": 2530 }, - { "id": "ph_meter", "fg": 2531 }, - { "id": "spectrophotometer", "fg": 2532 }, - { "id": "test_tube", "fg": 2533 }, - { "id": "voltmeter", "fg": 2534 }, - { "id": "acidchitin_piece", "fg": 2539 }, - { "id": "chitin_piece", "fg": 2540 }, - { "id": "coin_dime", "fg": 2559 }, - { "id": "coin_dollar", "fg": 2560 }, - { "id": "coin_half_dollar", "fg": 2561 }, - { "id": "coin_nickel", "fg": 2562 }, - { "id": "coin_penny", "fg": 2563 }, - { "id": "coin_quarter", "fg": 2564 }, - { "id": "money_fifty", "fg": 2565 }, - { "id": "money_five", "fg": 2566 }, - { "id": "money_hundred", "fg": 2567 }, - { "id": "money_one", "fg": 2568 }, - { "id": "money_ten", "fg": 2569 }, - { "id": "money_twenty", "fg": 2570 }, - { "id": "money_two", "fg": 2571 }, - { "id": "alexandrite_gold_earring", "fg": 2572 }, - { "id": "alexandrite_platinum_earring", "fg": 2573 }, - { "id": "alexandrite_silver_earring", "fg": 2574 }, - { "id": "amethyst_gold_earring", "fg": 2575 }, - { "id": "amethyst_platinum_earring", "fg": 2576 }, - { "id": "amethyst_silver_earring", "fg": 2577 }, - { "id": "aquamarine_gold_earring", "fg": 2578 }, - { "id": "aquamarine_platinum_earring", "fg": 2579 }, - { "id": "aquamarine_silver_earring", "fg": 2580 }, - { "id": "bead_ear", "fg": 2581 }, - { "id": "blue_topaz_gold_earring", "fg": 2582 }, - { "id": "blue_topaz_platinum_earring", "fg": 2583 }, - { "id": "blue_topaz_silver_earring", "fg": 2584 }, - { "id": "citrine_gold_earring", "fg": 2585 }, - { "id": "citrine_platinum_earring", "fg": 2586 }, - { "id": "citrine_silver_earring", "fg": 2587 }, - { "id": "copper_ear", "fg": 2588 }, - { "id": "diamond_gold_earring", "fg": 2589 }, - { "id": "diamond_platinum_earring", "fg": 2590 }, - { "id": "diamond_silver_earring", "fg": 2591 }, - { "id": "emerald_gold_earring", "fg": 2592 }, - { "id": "emerald_platinum_earring", "fg": 2593 }, - { "id": "emerald_silver_earring", "fg": 2594 }, - { "id": "garnet_gold_earring", "fg": 2595 }, - { "id": "garnet_platinum_earring", "fg": 2596 }, - { "id": "garnet_silver_earring", "fg": 2597 }, - { "id": "gold_ear", "fg": 2598 }, - { "id": "opal_gold_earring", "fg": 2599 }, - { "id": "opal_platinum_earring", "fg": 2600 }, - { "id": "opal_silver_earring", "fg": 2601 }, - { "id": "pearl_gold_earring", "fg": 2602 }, - { "id": "pearl_platinum_earring", "fg": 2603 }, - { "id": "pearl_silver_earring", "fg": 2604 }, - { "id": "peridot_gold_earring", "fg": 2605 }, - { "id": "peridot_platinum_earring", "fg": 2606 }, - { "id": "peridot_silver_earring", "fg": 2607 }, - { "id": "platinum_ear", "fg": 2608 }, - { "id": "ruby_gold_earring", "fg": 2609 }, - { "id": "ruby_platinum_earring", "fg": 2610 }, - { "id": "ruby_silver_earring", "fg": 2611 }, - { "id": "sapphire_gold_earring", "fg": 2612 }, - { "id": "sapphire_platinum_earring", "fg": 2613 }, - { "id": "sapphire_silver_earring", "fg": 2614 }, - { "id": "silver_ear", "fg": 2615 }, - { "id": "tourmaline_gold_earring", "fg": 2616 }, - { "id": "tourmaline_platinum_earring", "fg": 2617 }, - { "id": "tourmaline_silver_earring", "fg": 2618 }, - { "id": "flaregun", "fg": 2619 }, - { "id": "signal_flare", "fg": 2620 }, - { "id": "bread", "fg": 2621 }, - { "id": "brioche", "fg": 2622 }, - { "id": "brown_bread", "fg": 2623 }, - { "id": "brownie", "fg": 2624 }, - { "id": "cornbread", "fg": 2627 }, - { "id": "jihelucake", "fg": 2628 }, - { "id": "pancakes", "fg": 2629 }, - { "id": "sourdough_bread", "fg": 2631 }, - { "id": "sponge_cake", "fg": 2632 }, - { "id": "tortilla_corn", "fg": 2633 }, - { "id": "wastebread", "fg": 2635 }, - { "id": "airhorn", "fg": 2636 }, - { "id": "aluminum_foil", "fg": 2637 }, - { "id": "bowling_pin", "fg": 2638 }, - { "id": "boxing_gloves", "fg": 2639 }, - { "id": "chopsticks", "fg": 2640 }, - { "id": "comb_pocket", "fg": 2641 }, - { "id": "copper", "fg": 2642 }, - { "id": "eclipse_glasses", "fg": 2643 }, - { "id": "fish", "fg": 2644 }, - { "id": "licorice", "fg": 2645 }, - { "id": "metal_tank", "fg": 2646 }, - { "id": "metal_tank_little", "fg": 2647 }, - { "id": "nanomaterial", "fg": 2648 }, - { "id": "plut_cell", "fg": 2649 }, - { "id": "rebreather_filter", "fg": 2650 }, - { "id": "rock_sock", "fg": 2651 }, - { "id": "rollerskates", "fg": 2652 }, - { "id": "sandpaper", "fg": 2653 }, - { "id": "throwing_stick", "fg": 2654 }, - { "id": "waterproof_gunmod", "fg": 2655 }, - { "id": "circsaw_blade", "fg": 2656 }, - { "id": "mirror", "fg": 2657 }, - { "id": "glass_bowl", "fg": 2658 }, - { "id": "plastic_bowl_kids", "fg": 2659 }, - { "id": "blue_pen", "fg": 2660 }, - { "id": "green_pen", "fg": 2661 }, - { "id": "pen", "fg": 2662 }, - { "id": "red_pen", "fg": 2663 }, - { "id": "soldering_iron", "fg": 2664 }, - { "id": "superglue", "fg": 2665 }, - { "id": "grenade", "fg": 2666 }, - { "id": "grenade_act", "fg": 2667 }, - { "id": "grenade_emp", "fg": 2668 }, - { "id": "grenade_emp_act", "fg": 2669 }, - { "id": "grenade_inc", "fg": 2670 }, - { "id": "grenade_inc_act", "fg": 2671 }, - { "id": "pipebomb", "fg": 2672 }, - { "id": "pipebomb_act", "fg": 2673 }, - { "id": "scrambler", "fg": 2674 }, - { "id": "scrambler_act", "fg": 2675 }, - { "id": "smokebomb", "fg": 2676 }, - { "id": "smokebomb_act", "fg": 2677 }, - { "id": "boxcutter", "fg": 2681 }, - { "id": "copper_knife", "fg": 2682 }, - { "id": "diveknife", "fg": 2683 }, - { "id": "knife_bread", "fg": 2684 }, - { "id": "knife_butcher", "fg": 2685 }, - { "id": "knife_carving", "fg": 2686 }, - { "id": "knife_chef", "fg": 2687 }, - { "id": "knife_combat", "fg": 2688 }, - { "id": "knife_folding", "fg": 2689 }, - { "id": "knife_hunting", "fg": 2690 }, - { "id": "knife_paring", "fg": 2691 }, - { "id": "knife_rambo", "fg": 2692 }, - { "id": "knife_rm42", "fg": 2693 }, - { "id": "knife_steak", "fg": 2694 }, - { "id": "knife_swissarmy", "fg": 2695 }, - { "id": "knife_trench", "fg": 2696 }, - { "id": "makeshift_knife", "fg": 2697 }, - { "id": "pockknife", "fg": 2698 }, - { "id": "primitive_knife", "fg": 2699 }, - { "id": "throwing_knife", "fg": 2700 }, - { "id": "baseball", "fg": 2722 }, - { "id": "basketball", "fg": 2723 }, - { "id": "battery_car", "fg": 2724 }, - { "id": "beach_volleyball", "fg": 2725 }, - { "id": "bowling_ball", "fg": 2726 }, - { "id": "cell_phone", "fg": 2727 }, - { "id": "cell_phone_flashlight", "fg": 2728 }, - { "id": "cigar", "fg": 2729 }, - { "id": "cigar_butt", "fg": 2730 }, - { "id": "cigar_lit", "fg": 2731 }, - { "id": "ear_plugs", "fg": 2733 }, - { "id": "fiddlehead_boiled", "fg": 2734 }, - { "id": "fiddlehead_raw", "fg": 2735 }, - { "id": "fiddlehead_sauteed", "fg": 2736 }, - { "id": "flask_hip", "fg": 2737 }, - { "id": "football", "fg": 2738 }, - { "id": "golf_ball", "fg": 2739 }, - { "id": "holo_sight", "fg": 2740 }, - { "id": "indoor_volleyball", "fg": 2741 }, - { "id": "misc_repairkit", "fg": 2742 }, - { "id": "mre_beef_box", "fg": 2743 }, - { "id": "peephole", "fg": 2744 }, - { "id": "portable_game", "fg": 2745 }, - { "id": "puck", "fg": 2746 }, - { "id": "purse", "fg": 2747 }, - { "id": "suppressor", "fg": 2748 }, - { "id": "tourniquet_upper", "fg": 2749 }, - { "id": "two_way_radio", "fg": 2750 }, - { "id": "wristwatch", "fg": 2751 }, - { "id": "mushroom", "fg": 2752 }, - { "id": "cable_speaker", "fg": 2753 }, - { "id": "headphones_circumaural", "fg": 2754 }, - { "id": "microphone_xlr_generic", "fg": 2755 }, - { "id": "popcan_stove", "fg": 2796 }, - { "id": "rad_badge", "fg": 2797 }, - { "id": "alexandrite_gold_ring", "fg": 2799 }, - { "id": "alexandrite_platinum_ring", "fg": 2800 }, - { "id": "alexandrite_silver_ring", "fg": 2801 }, - { "id": "amethyst_gold_ring", "fg": 2802 }, - { "id": "amethyst_platinum_ring", "fg": 2803 }, - { "id": "amethyst_silver_ring", "fg": 2804 }, - { "id": "aquamarine_gold_ring", "fg": 2805 }, - { "id": "aquamarine_platinum_ring", "fg": 2806 }, - { "id": "aquamarine_silver_ring", "fg": 2807 }, - { "id": "blue_topaz_gold_ring", "fg": 2808 }, - { "id": "blue_topaz_platinum_ring", "fg": 2809 }, - { "id": "blue_topaz_silver_ring", "fg": 2810 }, - { "id": "citrine_gold_ring", "fg": 2811 }, - { "id": "citrine_platinum_ring", "fg": 2812 }, - { "id": "citrine_silver_ring", "fg": 2813 }, - { "id": "diamond_platinum_ring", "fg": 2814 }, - { "id": "diamond_ring", "fg": 2815 }, - { "id": "diamond_silver_ring", "fg": 2816 }, - { "id": "emerald_gold_ring", "fg": 2817 }, - { "id": "emerald_platinum_ring", "fg": 2818 }, - { "id": "emerald_silver_ring", "fg": 2819 }, - { "id": "garnet_gold_ring", "fg": 2820 }, - { "id": "garnet_platinum_ring", "fg": 2821 }, - { "id": "garnet_silver_ring", "fg": 2822 }, - { "id": "gold_ring", "fg": 2823 }, - { "id": "opal_gold_ring", "fg": 2824 }, - { "id": "opal_platinum_ring", "fg": 2825 }, - { "id": "opal_silver_ring", "fg": 2826 }, - { "id": "pearl_gold_ring", "fg": 2827 }, - { "id": "pearl_platinum_ring", "fg": 2828 }, - { "id": "pearl_silver_ring", "fg": 2829 }, - { "id": "peridot_gold_ring", "fg": 2830 }, - { "id": "peridot_platinum_ring", "fg": 2831 }, - { "id": "peridot_silver_ring", "fg": 2832 }, - { "id": "ring_engagement", "fg": 2833 }, - { "id": "ruby_gold_ring", "fg": 2834 }, - { "id": "ruby_platinum_ring", "fg": 2835 }, - { "id": "ruby_silver_ring", "fg": 2836 }, - { "id": "sapphire_gold_ring", "fg": 2837 }, - { "id": "sapphire_platinum_ring", "fg": 2838 }, - { "id": "sapphire_silver_ring", "fg": 2839 }, - { "id": "tourmaline_gold_ring", "fg": 2840 }, - { "id": "tourmaline_platinum_ring", "fg": 2841 }, - { "id": "tourmaline_silver_ring", "fg": 2842 }, - { "id": "pebble", "fg": 2843 }, - { "id": "pebble_clay", "fg": 2844 }, - { "id": "rock", "fg": 2845 }, - { "id": "rock_flaking", "fg": 2846 }, - { "id": "rock_large", "fg": 2847 }, - { "id": "slime_scrap", "fg": 2856 }, - { "id": "clay_teapot", "fg": 2860 }, - { "id": "crucible", "fg": 2863 }, - { "id": "tire_iron", "fg": 2876 }, - { "id": "towel", "fg": 2891 }, - { "id": "towel_soiled", "fg": 2892 }, - { "id": "towel_wet", "fg": 2893 }, - { "id": "battery_charger", "fg": 2894 }, - { "id": "recharge_station", "fg": 2895 }, - { "id": "wax", "fg": 2898 } + "fg": [ { "weight": 1, "sprite": 2892 }, { "weight": 1, "sprite": 2891 }, { "weight": 1, "sprite": 2893 } ] + }, + { "id": "makeshift_crowbar", "fg": 2894 }, + { "id": "esbit_stove", "fg": 2886 }, + { "id": "usb_drive", "fg": 2898 }, + { "id": "cash_card", "fg": 2902 }, + { "id": "file", "fg": 2903 }, + { "id": "fp_loyalty_card", "fg": 2904 }, + { "id": "id_industrial", "fg": 2905 }, + { "id": "id_military", "fg": 2906 }, + { "id": "id_science", "fg": 2907 }, + { "id": "bowl_plastic", "fg": 2908 }, + { "id": "cup_plastic", "fg": 2909 }, + { "id": "fork", "fg": 2910 }, + { "id": "knife_butter", "fg": 2911 }, + { "id": "washboard", "fg": 2918 }, + { "id": "wash_kit", "fg": 2917 }, + { "id": "helmet_army", "fg": 2923 }, + { "id": "foodperson_mask", "fg": 2921 }, + { "id": "foodperson_mask_on", "fg": 2922 }, + { "id": "ballistic_vest_esapi", "fg": 2920 }, + { "id": "saddle", "fg": 1824 }, + { "id": "blt", "fg": 1827 }, + { "id": "brain_cooked", "fg": 1828 }, + { "id": "butter", "fg": 1829 }, + { "id": "cheese_fries", "fg": 1830 }, + { "id": "chili", "fg": 1831 }, + { "id": "chilidogs", "fg": 1832 }, + { "id": "cooked_dinner", "fg": 1833 }, + { "id": "corndogs_cooked", "fg": 1834 }, + { "id": "corndogs_frozen", "fg": 1835 }, + { "id": "corndogs_homemade", "fg": 1836 }, + { "id": "cracklins", "fg": 1837 }, + { "id": "currywurst", "fg": 1838 }, + { "id": "demihuman_cooked", "fg": 1839 }, + { "id": "demihuman_lard", "fg": 1840 }, + { "id": "demihuman_stomach_boiled", "fg": 1841 }, + { "id": "demihuman_tallow", "fg": 1842 }, + { "id": "fish_bagel", "fg": 1843 }, + { "id": "fish_cooked", "fg": 1844 }, + { "id": "fish_sandwich", "fg": 1845 }, + { "id": "fresh_fries", "fg": 1846 }, + { "id": "glazed_tenderloin", "fg": 1847 }, + { "id": "homemade_burrito", "fg": 1848 }, + { "id": "hotdogs_campfire", "fg": 1849 }, + { "id": "hotdogs_cooked", "fg": 1850 }, + { "id": "hotdogs_frozen", "fg": 1851 }, + { "id": "hotdogs_newyork", "fg": 1852 }, + { "id": "insta_salad", "fg": 1853 }, + { "id": "junk_burrito", "fg": 1854 }, + { "id": "kidney_cooked", "fg": 1855 }, + { "id": "lard", "fg": 1856 }, + { "id": "lentils_cooked", "fg": 1857 }, + { "id": "liver_cooked", "fg": 1858 }, + { "id": "liver_onion", "fg": 1859 }, + { "id": "lung_cooked", "fg": 1860 }, + { "id": "marshmallow", "fg": 1861 }, + { "id": "meat_cooked", "fg": 1862 }, + { "id": "meat_scrap_cooked", "fg": 1863 }, + { "id": "meat_smoked", "fg": 1864 }, + { "id": "meatball", "fg": 1865 }, + { "id": "meatball_raw", "fg": 1866 }, + { "id": "mutant_human_cooked", "fg": 1867 }, + { "id": "mutant_human_lard", "fg": 1868 }, + { "id": "mutant_human_tallow", "fg": 1869 }, + { "id": "mutant_lard", "fg": 1870 }, + { "id": "mutant_meat_cooked", "fg": 1871 }, + { "id": "mutant_tallow", "fg": 1872 }, + { "id": "nachos", "fg": 1873 }, + { "id": "nachosc", "fg": 1874 }, + { "id": "nachosm", "fg": 1875 }, + { "id": "nachosmc", "fg": 1876 }, + { "id": "nachosv", "fg": 1877 }, + { "id": "nachosvc", "fg": 1878 }, + { "id": "oatmeal_cooked", "fg": 1879 }, + { "id": "oatmeal_deluxe", "fg": 1880 }, + { "id": "pan_roasted_corn", "fg": 1881 }, + { "id": "pizza_supreme", "fg": 1882 }, + { "id": "popcorn", "fg": 1883 }, + { "id": "popcorn2", "fg": 1884 }, + { "id": "quesadilla_cheese", "fg": 1885 }, + { "id": "rice_cooked", "fg": 1886 }, + { "id": "sandwich_cheese", "fg": 1887 }, + { "id": "sandwich_cheese_grilled", "fg": 1888 }, + { "id": "sandwich_cucumber", "fg": 1889 }, + { "id": "sandwich_deluxe", "fg": 1890 }, + { "id": "sandwich_fairy", "fg": 1891 }, + { "id": "sandwich_honey", "fg": 1892 }, + { "id": "sandwich_jam", "fg": 1893 }, + { "id": "sandwich_jam_butter", "fg": 1894 }, + { "id": "sandwich_pb", "fg": 1895 }, + { "id": "sandwich_pbh", "fg": 1896 }, + { "id": "sandwich_pbj", "fg": 1897 }, + { "id": "sandwich_pbm", "fg": 1898 }, + { "id": "sandwich_sauce", "fg": 1899 }, + { "id": "sandwich_t", "fg": 1900 }, + { "id": "sandwich_veggy", "fg": 1901 }, + { "id": "sausage_cooked", "fg": 1902 }, + { "id": "sloppyjoe", "fg": 1903 }, + { "id": "spaghetti_cooked", "fg": 1904 }, + { "id": "stewed_tripe", "fg": 1905 }, + { "id": "stomach_boiled", "fg": 1906 }, + { "id": "stuffed_clams", "fg": 1907 }, + { "id": "sweetbread_cooked", "fg": 1908 }, + { "id": "taco", "fg": 1909 }, + { "id": "tallow", "fg": 1910 }, + { "id": "toasterpastry", "fg": 1911 }, + { "id": "veggy_cooked", "fg": 1912 }, + { "id": "2byarm_guard", "fg": 1913 }, + { "id": "2byshin_guard", "fg": 1914 }, + { "id": "adhesive_bandages", "fg": 1915 }, + { "id": "arm_warmers", "fg": 1916 }, + { "id": "arrowrest", "fg": 1917 }, + { "id": "atomic_light", "fg": 1918 }, + { "id": "atomic_light_off", "fg": 1919 }, + { "id": "b_paint", "fg": 1920 }, + { "id": "bandana", "fg": 1921 }, + { "id": "barley", "fg": 1922 }, + { "id": "boltcutters", "fg": 1923 }, + { "id": "bottle_opener", "fg": 1924 }, + { "id": "bow_saw", "fg": 1925 }, + { "id": "briefcase", "fg": 1926 }, + { "id": "cable_instrument", "fg": 1927 }, + { "id": "cable_xlr", "fg": 1928 }, + { "id": "can_opener", "fg": 1929 }, + { "id": "candle", "fg": 1930 }, + { "id": "candlestick", "fg": 1931 }, + { "id": "cannonball_4lb", "fg": 1932 }, + { "id": "carving_fork", "fg": 1933 }, + { "id": "ceramic_armor", "fg": 1934 }, + { "id": "chain_link", "fg": 1936 }, + { "id": "chainmail_arms", "fg": 1937 }, + { "id": "chainmail_hood", "fg": 1938 }, + { "id": "chainmail_legs", "fg": 1939 }, + { "id": "chainmail_suit_faraday", "fg": 1940 }, + { "id": "charcoal", "fg": 1941 }, + { "id": "chess", "fg": 1942 }, + { "id": "chipper", "fg": 1943 }, + { "id": "chisel", "fg": 1944 }, + { "id": "clarinet", "fg": 1945 }, + { "id": "clay_pot_flower", "fg": 1946 }, + { "id": "colander_steel", "fg": 1947 }, + { "id": "copper_pan", "fg": 1948 }, + { "id": "cordless_drill", "fg": 1949 }, + { "id": "corkscrew", "fg": 1950 }, + { "id": "cow_bell", "fg": 1951 }, + { "id": "crown_golden", "fg": 1952 }, + { "id": "data_card", "fg": 1953 }, + { "id": "diazepam", "fg": 1954 }, + { "id": "dish_towel", "fg": 1955 }, + { "id": "esapi_plate", "fg": 1956 }, + { "id": "esbi_plate", "fg": 1957 }, + { "id": "eyedrops", "fg": 1958 }, + { "id": "feather", "fg": 1960 }, + { "id": "felt_patch", "fg": 1961 }, + { "id": "fishing_hook_basic", "fg": 1962 }, + { "id": "flask_yeast", "fg": 1963 }, + { "id": "flint_steel", "fg": 1964 }, + { "id": "flute", "fg": 1965 }, + { "id": "folding_poncho", "fg": 1966 }, + { "id": "food_processor", "fg": 1967 }, + { "id": "footrags", "fg": 1968 }, + { "id": "footrags_fur", "fg": 1969 }, + { "id": "footrags_leather", "fg": 1970 }, + { "id": "footrags_wool", "fg": 1971 }, + { "id": "frisbee", "fg": 1972 }, + { "id": "g_paint", "fg": 1973 }, + { "id": "garlic", "fg": 1974 }, + { "id": "garlic_press", "fg": 1975 }, + { "id": "glass_plate", "fg": 1976 }, + { "id": "glass_tinted", "fg": 1977 }, + { "id": "glasses_bifocal", "fg": 1978 }, + { "id": "gloves_light", "fg": 1980 }, + { "id": "hair_dryer", "fg": 1981 }, + { "id": "hammer_sledge", "fg": 1982 }, + { "id": "hammer_sledge_engineer", "fg": 1983 }, + { "id": "hammer_sledge_heavy", "fg": 1984 }, + { "id": "hammer_sledge_short", "fg": 1985 }, + { "id": "hand_axe", "fg": 1986 }, + { "id": "hand_drill", "fg": 1987 }, + { "id": "hand_rims", "fg": 1988 }, + { "id": "handrolled_cig", "fg": 1989 }, + { "id": "hard_steel_armor", "fg": 1990 }, + { "id": "harmonica_holder", "fg": 1991 }, + { "id": "hat_chef", "fg": 1992 }, + { "id": "iron_pot", "fg": 1993 }, + { "id": "jack", "fg": 1994 }, + { "id": "jack_makeshift", "fg": 1995 }, + { "id": "jack_small", "fg": 1996 }, + { "id": "kettle", "fg": 1998 }, + { "id": "ladle", "fg": 1999 }, + { "id": "laptop", "fg": 2000 }, + { "id": "leg_warmers", "fg": 2001 }, + { "id": "link_sheet", "fg": 2002 }, + { "id": "machete", "fg": 2003 }, + { "id": "makeshift_bayonet", "fg": 2004 }, + { "id": "makeshift_hammer", "fg": 2005 }, + { "id": "makeshift_machete", "fg": 2006 }, + { "id": "makeshift_stethoscope", "fg": 2007 }, + { "id": "matches", "fg": 2008 }, + { "id": "material_shrd_limestone", "fg": 2009 }, + { "id": "mbag", "fg": 2010 }, + { "id": "mess_kit", "fg": 2011 }, + { "id": "mess_tin", "fg": 2012 }, + { "id": "meth", "fg": 2013 }, + { "id": "mil_mess_kit", "fg": 2014 }, + { "id": "morphine", "fg": 2015 }, + { "id": "mortar_pestle", "fg": 2016 }, + { "id": "motor_tiny", "fg": 2017 }, + { "id": "mouthpiece", "fg": 2018 }, + { "id": "office_holepunch", "fg": 2019 }, + { "id": "omnicamera", "fg": 2020 }, + { "id": "p_paint", "fg": 2021 }, + { "id": "paint_brush", "fg": 2022 }, + { "id": "pan", "fg": 2023 }, + { "id": "paper", "fg": 2024 }, + { "id": "peeler", "fg": 2025 }, + { "id": "pipe_fittings", "fg": 2026 }, + { "id": "plastic_pot_flower", "fg": 2027 }, + { "id": "pliers", "fg": 2028 }, + { "id": "plums", "fg": 2029 }, + { "id": "pot", "fg": 2030 }, + { "id": "pot_canning", "fg": 2031 }, + { "id": "pot_copper", "fg": 2032 }, + { "id": "pot_helmet", "fg": 2033 }, + { "id": "pot_makeshift", "fg": 2034 }, + { "id": "pot_makeshift_copper", "fg": 2035 }, + { "id": "potato_masher", "fg": 2036 }, + { "id": "r_paint", "fg": 2037 }, + { "id": "reading_light", "fg": 2038 }, + { "id": "reading_light_on", "fg": 2039 }, + { "id": "receiver", "fg": 2040 }, + { "id": "reinforced_glass_pane", "fg": 2041 }, + { "id": "rolling_pin", "fg": 2042 }, + { "id": "scrap_bronze", "fg": 2043 }, + { "id": "scrap_felt", "fg": 2044 }, + { "id": "sheet_felt", "fg": 2045 }, + { "id": "sheet_felt_patchwork", "fg": 2046 }, + { "id": "shocktonfa_off", "fg": 2047 }, + { "id": "shocktonfa_on", "fg": 2048 }, + { "id": "slingpack", "fg": 2049 }, + { "id": "smart_phone", "fg": 2050 }, + { "id": "soap", "fg": 2051 }, + { "id": "solder_wire", "fg": 2052 }, + { "id": "spatula", "fg": 2053 }, + { "id": "spider_egg", "fg": 2054 }, + { "id": "spike", "fg": 2055 }, + { "id": "steel_armor", "fg": 2056 }, + { "id": "steel_pan", "fg": 2057 }, + { "id": "stethoscope", "fg": 2058 }, + { "id": "stock_pot", "fg": 2059 }, + { "id": "survivor_mess_kit", "fg": 2061 }, + { "id": "swage", "fg": 2062 }, + { "id": "tazer", "fg": 2063 }, + { "id": "teleumbrella", "fg": 2064 }, + { "id": "tinder", "fg": 2065 }, + { "id": "tinderbox", "fg": 2066 }, + { "id": "tinfoil_hat", "fg": 2067 }, + { "id": "tonfa", "fg": 2068 }, + { "id": "tonfa_wood", "fg": 2069 }, + { "id": "tongs", "fg": 2070 }, + { "id": "unfinished_charcoal", "fg": 2071 }, + { "id": "w_paint", "fg": 2072 }, + { "id": "water_purifier", "fg": 2073 }, + { "id": "wheel", "fg": 2074 }, + { "id": "wheel_10", "fg": 2075 }, + { "id": "wheel_barrow", "fg": 2076 }, + { "id": "wheel_bicycle", "fg": 2077 }, + { "id": "wheel_bicycle_or", "fg": 2078 }, + { "id": "wheel_motorbike", "fg": 2079 }, + { "id": "wheel_motorbike_or", "fg": 2080 }, + { "id": "wheel_skate", "fg": 2081 }, + { "id": "wheel_slick", "fg": 2082 }, + { "id": "wheel_small", "fg": 2083 }, + { "id": "wheel_tricycle", "fg": 2084 }, + { "id": "wheel_wheelchair", "fg": 2085 }, + { "id": "whisk", "fg": 2086 }, + { "id": "wine_glass", "fg": 2087 }, + { "id": "wire_barbed", "fg": 2088 }, + { "id": "y_paint", "fg": 2089 }, + { "id": "halligan", "fg": 2090 }, + { "id": "cig", "fg": 2116 }, + { "id": "cig_lit", "fg": 2117 }, + { "id": "copper_ring", "fg": 2118 }, + { "id": "g_shovel", "fg": 2119 }, + { "id": "lsd", "fg": 2120 }, + { "id": "silver_ring", "fg": 2121 }, + { "id": "thermal_mask", "fg": 2122 }, + { "id": "thermal_socks", "fg": 2123 }, + { "id": "tie_clipon", "fg": 2124 }, + { "id": "whistle", "fg": 2125 }, + { "id": "2_shot_special", "fg": 2126 }, + { "id": "LAW_Packed", "fg": 2128 }, + { "id": "af2011a1_38super", "fg": 2130 }, + { "id": "ar_pistol", "fg": 2131 }, + { "id": "ashot", "fg": 2132 }, + { "id": "bfr", "fg": 2133 }, + { "id": "bigun", "fg": 2134 }, + { "id": "bond_410", "fg": 2135 }, + { "id": "bt_apc9k", "fg": 2136 }, + { "id": "colt_army", "fg": 2137 }, + { "id": "colt_navy", "fg": 2138 }, + { "id": "colt_saa", "fg": 2139 }, + { "id": "cop_38", "fg": 2140 }, + { "id": "cz75", "fg": 2141 }, + { "id": "deagle_44", "fg": 2142 }, + { "id": "draco", "fg": 2143 }, + { "id": "flamethrower_crude", "fg": 2144 }, + { "id": "flamethrower_simple", "fg": 2145 }, + { "id": "fn1910", "fg": 2146 }, + { "id": "fn57", "fg": 2147 }, + { "id": "fn_p90", "fg": 2148 }, + { "id": "glock_17", "fg": 2149 }, + { "id": "glock_18c", "fg": 2150 }, + { "id": "glock_19", "fg": 2151 }, + { "id": "glock_20", "fg": 2152 }, + { "id": "glock_20_var_glock_40", "fg": 2153 }, + { "id": "glock_21", "fg": 2154 }, + { "id": "glock_22", "fg": 2155 }, + { "id": "glock_29", "fg": 2156 }, + { "id": "glock_31", "fg": 2157 }, + { "id": "hi_power_40", "fg": 2158 }, + { "id": "hi_power_9mm", "fg": 2159 }, + { "id": "hk_mp5_semi_pistol", "fg": 2161 }, + { "id": "hk_mp7", "fg": 2162 }, + { "id": "hk_ump45", "fg": 2163 }, + { "id": "hptc9", "fg": 2164 }, + { "id": "hptcf380", "fg": 2165 }, + { "id": "kp32", "fg": 2167 }, + { "id": "kp3at", "fg": 2168 }, + { "id": "kpf9", "fg": 2169 }, + { "id": "l_bak_223", "fg": 2170 }, + { "id": "launcher_simple", "fg": 2171 }, + { "id": "lemat_revolver", "fg": 2172 }, + { "id": "m11", "fg": 2173 }, + { "id": "m17", "fg": 2174 }, + { "id": "m18", "fg": 2175 }, + { "id": "m1911-460", "fg": 2176 }, + { "id": "m1911_10", "fg": 2178 }, + { "id": "m1911_var_m1911_MEU", "fg": 2179 }, + { "id": "m320", "fg": 2180 }, + { "id": "m4_carbine_var_m4_cqbr", "fg": 2181 }, + { "id": "m9", "fg": 2182 }, + { "id": "mac_10", "fg": 2183 }, + { "id": "mac_11", "fg": 2184 }, + { "id": "makarov", "fg": 2185 }, + { "id": "mauser_c96", "fg": 2186 }, + { "id": "mauser_m714", "fg": 2187 }, + { "id": "mgl", "fg": 2188 }, + { "id": "minispeargun", "fg": 2189 }, + { "id": "model_10_revolver", "fg": 2190 }, + { "id": "moss_brownie", "fg": 2191 }, + { "id": "nailgun", "fg": 2192 }, + { "id": "nailrifle", "fg": 2193 }, + { "id": "needlepistol", "fg": 2194 }, + { "id": "oa93", "fg": 2195 }, + { "id": "p08", "fg": 2196 }, + { "id": "p220_10", "fg": 2197 }, + { "id": "p226_357sig", "fg": 2198 }, + { "id": "p226_9mm", "fg": 2199 }, + { "id": "p320_357sig", "fg": 2200 }, + { "id": "paintballgun", "fg": 2201 }, + { "id": "pipe_double_shotgun", "fg": 2202 }, + { "id": "pistol_flintlock", "fg": 2203 }, + { "id": "px4", "fg": 2204 }, + { "id": "px4_40", "fg": 2205 }, + { "id": "raging_bull", "fg": 2206 }, + { "id": "raging_judge", "fg": 2207 }, + { "id": "revolver_shotgun", "fg": 2208 }, + { "id": "rm103a_pistol", "fg": 2209 }, + { "id": "rm2000_smg", "fg": 2210 }, + { "id": "rm228", "fg": 2211 }, + { "id": "ruger_lcr_22", "fg": 2212 }, + { "id": "ruger_lcr_38", "fg": 2213 }, + { "id": "ruger_redhawk", "fg": 2214 }, + { "id": "rugerlcp", "fg": 2215 }, + { "id": "sig_40", "fg": 2216 }, + { "id": "sig_mosquito", "fg": 2217 }, + { "id": "sig_p230", "fg": 2218 }, + { "id": "skorpion_61", "fg": 2219 }, + { "id": "smg_40", "fg": 2220 }, + { "id": "smg_45", "fg": 2221 }, + { "id": "sp2022", "fg": 2222 }, + { "id": "streetsweeper", "fg": 2223 }, + { "id": "surv_hand_cannon", "fg": 2224 }, + { "id": "surv_six_shooter", "fg": 2225 }, + { "id": "sw629", "fg": 2226 }, + { "id": "sw_22", "fg": 2227 }, + { "id": "sw_500", "fg": 2228 }, + { "id": "sw_610", "fg": 2229 }, + { "id": "sw_619", "fg": 2230 }, + { "id": "taurus_spectrum", "fg": 2231 }, + { "id": "tec9", "fg": 2232 }, + { "id": "tokarev", "fg": 2233 }, + { "id": "triple_launcher_simple", "fg": 2234 }, + { "id": "unbio_blaster_gun", "fg": 2235 }, + { "id": "usp_45", "fg": 2236 }, + { "id": "usp_45_var_mk23", "fg": 2237 }, + { "id": "usp_9mm", "fg": 2238 }, + { "id": "uzi", "fg": 2239 }, + { "id": "v29", "fg": 2240 }, + { "id": "v29_cheap", "fg": 2241 }, + { "id": "walther_ccp", "fg": 2242 }, + { "id": "walther_p22", "fg": 2243 }, + { "id": "walther_p38", "fg": 2244 }, + { "id": "walther_ppq_40", "fg": 2245 }, + { "id": "walther_ppq_45", "fg": 2246 }, + { "id": "walther_ppq_9mm", "fg": 2247 }, + { "id": "witness_10", "fg": 2248 }, + { "id": "xd_10", "fg": 2249 }, + { "id": "book_pieces", "fg": 2264 }, + { "id": "book_ruined", "fg": 2265 }, + { "id": "button_plastic", "fg": 2304 }, + { "id": "button_steel", "fg": 2305 }, + { "id": "button_wood", "fg": 2306 }, + { "id": "antenna", "fg": 2307 }, + { "id": "badge_deputy", "fg": 2308 }, + { "id": "coconut", "fg": 2309 }, + { "id": "directional_antenna", "fg": 2310 }, + { "id": "halter_top", "fg": 2311 }, + { "id": "hand_crank_charger", "fg": 2312 }, + { "id": "hops", "fg": 2313 }, + { "id": "kidney", "fg": 2314 }, + { "id": "lettuce", "fg": 2315 }, + { "id": "lily_flower", "fg": 2316 }, + { "id": "scorecard", "fg": 2317 }, + { "id": "spinach", "fg": 2318 }, + { "id": "altered_comb", "fg": 2319 }, + { "id": "gasdiscount_gold", "fg": 2320 }, + { "id": "gasdiscount_platinum", "fg": 2321 }, + { "id": "gasdiscount_silver", "fg": 2322 }, + { "id": "gold_hairpin", "fg": 2323 }, + { "id": "nanoskirt", "fg": 2324 }, + { "id": "pearl", "fg": 2325 }, + { "id": "platinum_ring", "fg": 2326 }, + { "id": "skirt_grass", "fg": 2327 }, + { "id": "skirt_leather", "fg": 2328 }, + { "id": "wallet_leather", "fg": 2329 }, + { "id": "copper_necklace", "fg": 2330 }, + { "id": "pearl_collar", "fg": 2331 }, + { "id": "alexandrite_gold_pendant_necklace", "fg": 2332 }, + { "id": "amethyst_gold_pendant_necklace", "fg": 2333 }, + { "id": "aquamarine_gold_pendant_necklace", "fg": 2334 }, + { "id": "blue_topaz_gold_pendant_necklace", "fg": 2335 }, + { "id": "citrine_gold_pendant_necklace", "fg": 2336 }, + { "id": "diamond_gold_pendant_necklace", "fg": 2337 }, + { "id": "emerald_gold_pendant_necklace", "fg": 2338 }, + { "id": "garnet_gold_pendant_necklace", "fg": 2339 }, + { "id": "gold_necklace", "fg": 2340 }, + { "id": "opal_gold_pendant_necklace", "fg": 2341 }, + { "id": "pearl_gold_pendant_necklace", "fg": 2342 }, + { "id": "peridot_gold_pendant_necklace", "fg": 2343 }, + { "id": "ruby_gold_pendant_necklace", "fg": 2344 }, + { "id": "sapphire_gold_pendant_necklace", "fg": 2345 }, + { "id": "tourmaline_gold_pendant_necklace", "fg": 2346 }, + { "id": "alexandrite_platinum_pendant_necklace", "fg": 2347 }, + { "id": "amethyst_platinum_pendant_necklace", "fg": 2348 }, + { "id": "aquamarine_platinum_pendant_necklace", "fg": 2349 }, + { "id": "blue_topaz_platinum_pendant_necklace", "fg": 2350 }, + { "id": "citrine_platinum_pendant_necklace", "fg": 2351 }, + { "id": "diamond_platinum_pendant_necklace", "fg": 2352 }, + { "id": "emerald_platinum_pendant_necklace", "fg": 2353 }, + { "id": "garnet_platinum_pendant_necklace", "fg": 2354 }, + { "id": "opal_platinum_pendant_necklace", "fg": 2355 }, + { "id": "pearl_platinum_pendant_necklace", "fg": 2356 }, + { "id": "peridot_platinum_pendant_necklace", "fg": 2357 }, + { "id": "platinum_necklace", "fg": 2358 }, + { "id": "ruby_platinum_pendant_necklace", "fg": 2359 }, + { "id": "sapphire_platinum_pendant_necklace", "fg": 2360 }, + { "id": "tourmaline_platinum_pendant_necklace", "fg": 2361 }, + { "id": "alexandrite_silver_pendant_necklace", "fg": 2362 }, + { "id": "amethyst_silver_pendant_necklace", "fg": 2363 }, + { "id": "aquamarine_silver_pendant_necklace", "fg": 2364 }, + { "id": "blue_topaz_silver_pendant_necklace", "fg": 2365 }, + { "id": "citrine_silver_pendant_necklace", "fg": 2366 }, + { "id": "diamond_silver_pendant_necklace", "fg": 2367 }, + { "id": "emerald_silver_pendant_necklace", "fg": 2368 }, + { "id": "garnet_silver_pendant_necklace", "fg": 2369 }, + { "id": "opal_silver_pendant_necklace", "fg": 2370 }, + { "id": "pearl_silver_pendant_necklace", "fg": 2371 }, + { "id": "peridot_silver_pendant_necklace", "fg": 2372 }, + { "id": "ruby_silver_pendant_necklace", "fg": 2373 }, + { "id": "sapphire_silver_pendant_necklace", "fg": 2374 }, + { "id": "silver_necklace", "fg": 2375 }, + { "id": "tourmaline_silver_pendant_necklace", "fg": 2376 }, + { "id": "alder_bark", "fg": 2377 }, + { "id": "barrette", "fg": 2378 }, + { "id": "birchbark", "fg": 2379 }, + { "id": "caff_gum", "fg": 2380 }, + { "id": "cattail_stalk", "fg": 2381 }, + { "id": "golf_tee", "fg": 2382 }, + { "id": "gum", "fg": 2383 }, + { "id": "hand_pump", "fg": 2384 }, + { "id": "honeydew", "fg": 2385 }, + { "id": "ifak_pouch", "fg": 2386 }, + { "id": "knitting_needles", "fg": 2387 }, + { "id": "lasagne", "fg": 2388 }, + { "id": "magnifying_glass", "fg": 2389 }, + { "id": "mininuke", "fg": 2390 }, + { "id": "mininuke_act", "fg": 2391 }, + { "id": "net", "fg": 2392 }, + { "id": "rolling_paper", "fg": 2393 }, + { "id": "tanbark", "fg": 2394 }, + { "id": "willowbark", "fg": 2397 }, + { "id": "shoulder_strap", "fg": 2398 }, + { "id": "deck_of_cards", "fg": 2399 }, + { "id": "hairpin", "fg": 2400 }, + { "id": "weed", "fg": 2401 }, + { "id": "ceramic_bowl", "fg": 2402 }, + { "id": "chestrig", "fg": 2403 }, + { "id": "radio_car", "fg": 2404 }, + { "id": "radio_car_box", "fg": 2405 }, + { "id": "radio_car_on", "fg": 2406 }, + { "id": "radio_car_wheel", "fg": 2407 }, + { "id": "radiocontrol", "fg": 2408 }, + { "id": "rc_car_box", "fg": 2409 }, + { "id": "toaster", "fg": 2410 }, + { "id": "xl_chestrig", "fg": 2411 }, + { "id": "alternator_truck", "fg": 2413 }, + { "id": "ammolink", "fg": 2414 }, + { "id": "angle_grinder", "fg": 2415 }, + { "id": "atomic_lamp", "fg": 2416 }, + { "id": "atomic_lamp_off", "fg": 2417 }, + { "id": "barometer", "fg": 2418 }, + { "id": "birdfood", "fg": 2419 }, + { "id": "bismuth", "fg": 2420 }, + { "id": "brick_kiln", "fg": 2421 }, + { "id": "caffeine", "fg": 2422 }, + { "id": "camera", "fg": 2423 }, + { "id": "chem_citric_acid", "fg": 2424 }, + { "id": "chem_sulphur", "fg": 2425 }, + { "id": "chunk_sulfur", "fg": 2426 }, + { "id": "circsaw_off", "fg": 2427 }, + { "id": "circsaw_on", "fg": 2428 }, + { "id": "coal_lump", "fg": 2429 }, + { "id": "con_mix", "fg": 2430 }, + { "id": "disc_golf", "fg": 2431 }, + { "id": "drivebelt", "fg": 2432 }, + { "id": "eink_tablet_pc", "fg": 2433 }, + { "id": "flatbread", "fg": 2434 }, + { "id": "gelbox", "fg": 2436 }, + { "id": "generator_7500w", "fg": 2437 }, + { "id": "glowstick", "fg": 2438 }, + { "id": "glowstick_dead", "fg": 2439 }, + { "id": "glowstick_lit", "fg": 2440 }, + { "id": "gold_small", "fg": 2441 }, + { "id": "golf_club", "fg": 2442 }, + { "id": "handflare", "fg": 2443 }, + { "id": "heatpack", "fg": 2444 }, + { "id": "heatpack_used", "fg": 2445 }, + { "id": "hoe", "fg": 2446 }, + { "id": "homeopathic_pills", "fg": 2447 }, + { "id": "horn_bicycle", "fg": 2448 }, + { "id": "jumper_cable", "fg": 2449 }, + { "id": "kiln", "fg": 2450 }, + { "id": "lead", "fg": 2451 }, + { "id": "leather", "fg": 2452 }, + { "id": "lightstrip", "fg": 2453 }, + { "id": "material_aluminium_ingot", "fg": 2454 }, + { "id": "material_limestone", "fg": 2455 }, + { "id": "material_rhodonite", "fg": 2456 }, + { "id": "material_rocksalt", "fg": 2457 }, + { "id": "material_zincite", "fg": 2458 }, + { "id": "metal_smoother", "fg": 2459 }, + { "id": "multitool", "fg": 2461 }, + { "id": "nic_gum", "fg": 2462 }, + { "id": "pencil", "fg": 2463 }, + { "id": "pipe_cleaner", "fg": 2464 }, + { "id": "pipe_glass", "fg": 2465 }, + { "id": "platinum_small", "fg": 2467 }, + { "id": "polisher", "fg": 2468 }, + { "id": "press", "fg": 2469 }, + { "id": "puller", "fg": 2470 }, + { "id": "rake", "fg": 2471 }, + { "id": "razorclaw_roe", "fg": 2472 }, + { "id": "sickle", "fg": 2473 }, + { "id": "silver_small", "fg": 2474 }, + { "id": "small_repairkit", "fg": 2475 }, + { "id": "tanned_hide", "fg": 2476 }, + { "id": "tanned_pelt", "fg": 2477 }, + { "id": "tourist_table", "fg": 2478 }, + { "id": "zinc_metal", "fg": 2479 }, + { "id": "beartrap", "fg": 2480 }, + { "id": "tr_beartrap", "fg": 2481 }, + { "id": "wire_mesh", "fg": 2482 }, + { "id": "cannabis", "fg": 2483 }, + { "id": "dnd_handbook", "fg": 2485 }, + { "id": "holybook_bible1", "fg": 2486 }, + { "id": "holybook_bible3", "fg": 2487 }, + { "id": "l-stick", "fg": 2488 }, + { "id": "l-stick_on", "fg": 2489 }, + { "id": "makarovmag", "fg": 2490 }, + { "id": "manual_brawl", "fg": 2491 }, + { "id": "manual_carpentry", "fg": 2492 }, + { "id": "manual_dodge_kid", "fg": 2493 }, + { "id": "manual_driving", "fg": 2494 }, + { "id": "manual_melee", "fg": 2495 }, + { "id": "philosophy_book", "fg": 2496 }, + { "id": "phonebook", "fg": 2497 }, + { "id": "photo_album", "fg": 2498 }, + { "id": "plastic_bucket", "fg": 2499 }, + { "id": "record_weather", "fg": 2500 }, + { "id": "straw_fedora", "fg": 2501 }, + { "id": "textbook_computer", "fg": 2502 }, + { "id": "textbook_fabrication", "fg": 2503 }, + { "id": "textbook_survival", "fg": 2504 }, + { "id": "water_faucet", "fg": 2505 }, + { "id": "can_food", "fg": 2506 }, + { "id": "can_food_big", "fg": 2507 }, + { "id": "can_food_big_unsealed", "fg": 2508 }, + { "id": "can_food_unsealed", "fg": 2509 }, + { "id": "can_medium", "fg": 2510 }, + { "id": "can_medium_unsealed", "fg": 2511 }, + { "id": "clamp", "fg": 2512 }, + { "id": "crude_picklock", "fg": 2513 }, + { "id": "cured_hide", "fg": 2514 }, + { "id": "cured_pelt", "fg": 2515 }, + { "id": "demihuman_fat", "fg": 2516 }, + { "id": "fat", "fg": 2517 }, + { "id": "fat_tainted", "fg": 2518 }, + { "id": "headscarf", "fg": 2519 }, + { "id": "human_fat", "fg": 2521 }, + { "id": "marloss_scarf", "fg": 2526 }, + { "id": "meat", "fg": 2527 }, + { "id": "meat_tainted", "fg": 2528 }, + { "id": "mutant_fat", "fg": 2529 }, + { "id": "mutant_human_fat", "fg": 2530 }, + { "id": "mutant_human_flesh", "fg": 2531 }, + { "id": "mutant_meat", "fg": 2532 }, + { "id": "pipe_tobacco", "fg": 2534 }, + { "id": "raw_fur", "fg": 2537 }, + { "id": "raw_leather", "fg": 2538 }, + { "id": "tanning_hide", "fg": 2544 }, + { "id": "tanning_pelt", "fg": 2545 }, + { "id": "analytical_set_basic", "fg": 2547 }, + { "id": "balance_small", "fg": 2548 }, + { "id": "beaker", "fg": 2549 }, + { "id": "flask_glass", "fg": 2550 }, + { "id": "gradcylinder", "fg": 2551 }, + { "id": "ph_meter", "fg": 2552 }, + { "id": "spectrophotometer", "fg": 2553 }, + { "id": "test_tube", "fg": 2554 }, + { "id": "voltmeter", "fg": 2555 }, + { "id": "acidchitin_piece", "fg": 2560 }, + { "id": "chitin_piece", "fg": 2561 }, + { "id": "coin_dime", "fg": 2580 }, + { "id": "coin_dollar", "fg": 2581 }, + { "id": "coin_half_dollar", "fg": 2582 }, + { "id": "coin_nickel", "fg": 2583 }, + { "id": "coin_penny", "fg": 2584 }, + { "id": "coin_quarter", "fg": 2585 }, + { "id": "money_fifty", "fg": 2586 }, + { "id": "money_five", "fg": 2587 }, + { "id": "money_hundred", "fg": 2588 }, + { "id": "money_one", "fg": 2589 }, + { "id": "money_ten", "fg": 2590 }, + { "id": "money_twenty", "fg": 2591 }, + { "id": "money_two", "fg": 2592 }, + { "id": "alexandrite_gold_earring", "fg": 2593 }, + { "id": "alexandrite_platinum_earring", "fg": 2594 }, + { "id": "alexandrite_silver_earring", "fg": 2595 }, + { "id": "amethyst_gold_earring", "fg": 2596 }, + { "id": "amethyst_platinum_earring", "fg": 2597 }, + { "id": "amethyst_silver_earring", "fg": 2598 }, + { "id": "aquamarine_gold_earring", "fg": 2599 }, + { "id": "aquamarine_platinum_earring", "fg": 2600 }, + { "id": "aquamarine_silver_earring", "fg": 2601 }, + { "id": "bead_ear", "fg": 2602 }, + { "id": "blue_topaz_gold_earring", "fg": 2603 }, + { "id": "blue_topaz_platinum_earring", "fg": 2604 }, + { "id": "blue_topaz_silver_earring", "fg": 2605 }, + { "id": "citrine_gold_earring", "fg": 2606 }, + { "id": "citrine_platinum_earring", "fg": 2607 }, + { "id": "citrine_silver_earring", "fg": 2608 }, + { "id": "copper_ear", "fg": 2609 }, + { "id": "diamond_gold_earring", "fg": 2610 }, + { "id": "diamond_platinum_earring", "fg": 2611 }, + { "id": "diamond_silver_earring", "fg": 2612 }, + { "id": "emerald_gold_earring", "fg": 2613 }, + { "id": "emerald_platinum_earring", "fg": 2614 }, + { "id": "emerald_silver_earring", "fg": 2615 }, + { "id": "garnet_gold_earring", "fg": 2616 }, + { "id": "garnet_platinum_earring", "fg": 2617 }, + { "id": "garnet_silver_earring", "fg": 2618 }, + { "id": "gold_ear", "fg": 2619 }, + { "id": "opal_gold_earring", "fg": 2620 }, + { "id": "opal_platinum_earring", "fg": 2621 }, + { "id": "opal_silver_earring", "fg": 2622 }, + { "id": "pearl_gold_earring", "fg": 2623 }, + { "id": "pearl_platinum_earring", "fg": 2624 }, + { "id": "pearl_silver_earring", "fg": 2625 }, + { "id": "peridot_gold_earring", "fg": 2626 }, + { "id": "peridot_platinum_earring", "fg": 2627 }, + { "id": "peridot_silver_earring", "fg": 2628 }, + { "id": "platinum_ear", "fg": 2629 }, + { "id": "ruby_gold_earring", "fg": 2630 }, + { "id": "ruby_platinum_earring", "fg": 2631 }, + { "id": "ruby_silver_earring", "fg": 2632 }, + { "id": "sapphire_gold_earring", "fg": 2633 }, + { "id": "sapphire_platinum_earring", "fg": 2634 }, + { "id": "sapphire_silver_earring", "fg": 2635 }, + { "id": "silver_ear", "fg": 2636 }, + { "id": "tourmaline_gold_earring", "fg": 2637 }, + { "id": "tourmaline_platinum_earring", "fg": 2638 }, + { "id": "tourmaline_silver_earring", "fg": 2639 }, + { "id": "flaregun", "fg": 2640 }, + { "id": "signal_flare", "fg": 2641 }, + { "id": "bread", "fg": 2642 }, + { "id": "brioche", "fg": 2643 }, + { "id": "brown_bread", "fg": 2644 }, + { "id": "brownie", "fg": 2645 }, + { "id": "cornbread", "fg": 2648 }, + { "id": "jihelucake", "fg": 2649 }, + { "id": "pancakes", "fg": 2650 }, + { "id": "sourdough_bread", "fg": 2652 }, + { "id": "sponge_cake", "fg": 2653 }, + { "id": "tortilla_corn", "fg": 2654 }, + { "id": "wastebread", "fg": 2656 }, + { "id": "airhorn", "fg": 2657 }, + { "id": "aluminum_foil", "fg": 2658 }, + { "id": "bowling_pin", "fg": 2659 }, + { "id": "boxing_gloves", "fg": 2660 }, + { "id": "chopsticks", "fg": 2661 }, + { "id": "comb_pocket", "fg": 2662 }, + { "id": "copper", "fg": 2663 }, + { "id": "eclipse_glasses", "fg": 2664 }, + { "id": "fish", "fg": 2665 }, + { "id": "licorice", "fg": 2666 }, + { "id": "metal_tank", "fg": 2667 }, + { "id": "metal_tank_little", "fg": 2668 }, + { "id": "nanomaterial", "fg": 2669 }, + { "id": "plut_cell", "fg": 2670 }, + { "id": "rebreather_filter", "fg": 2671 }, + { "id": "rock_sock", "fg": 2672 }, + { "id": "rollerskates", "fg": 2673 }, + { "id": "sandpaper", "fg": 2674 }, + { "id": "throwing_stick", "fg": 2675 }, + { "id": "waterproof_gunmod", "fg": 2676 }, + { "id": "circsaw_blade", "fg": 2677 }, + { "id": "mirror", "fg": 2678 }, + { "id": "glass_bowl", "fg": 2679 }, + { "id": "plastic_bowl_kids", "fg": 2680 }, + { "id": "blue_pen", "fg": 2681 }, + { "id": "green_pen", "fg": 2682 }, + { "id": "pen", "fg": 2683 }, + { "id": "red_pen", "fg": 2684 }, + { "id": "soldering_iron", "fg": 2685 }, + { "id": "superglue", "fg": 2686 }, + { "id": "grenade", "fg": 2687 }, + { "id": "grenade_act", "fg": 2688 }, + { "id": "grenade_emp", "fg": 2689 }, + { "id": "grenade_emp_act", "fg": 2690 }, + { "id": "grenade_inc", "fg": 2691 }, + { "id": "grenade_inc_act", "fg": 2692 }, + { "id": "pipebomb", "fg": 2693 }, + { "id": "pipebomb_act", "fg": 2694 }, + { "id": "scrambler", "fg": 2695 }, + { "id": "scrambler_act", "fg": 2696 }, + { "id": "smokebomb", "fg": 2697 }, + { "id": "smokebomb_act", "fg": 2698 }, + { "id": "boxcutter", "fg": 2702 }, + { "id": "copper_knife", "fg": 2703 }, + { "id": "diveknife", "fg": 2704 }, + { "id": "knife_bread", "fg": 2705 }, + { "id": "knife_butcher", "fg": 2706 }, + { "id": "knife_carving", "fg": 2707 }, + { "id": "knife_chef", "fg": 2708 }, + { "id": "knife_combat", "fg": 2709 }, + { "id": "knife_folding", "fg": 2710 }, + { "id": "knife_hunting", "fg": 2711 }, + { "id": "knife_paring", "fg": 2712 }, + { "id": "knife_rambo", "fg": 2713 }, + { "id": "knife_rm42", "fg": 2714 }, + { "id": "knife_steak", "fg": 2715 }, + { "id": "knife_swissarmy", "fg": 2716 }, + { "id": "knife_trench", "fg": 2717 }, + { "id": "makeshift_knife", "fg": 2718 }, + { "id": "pockknife", "fg": 2719 }, + { "id": "primitive_knife", "fg": 2720 }, + { "id": "throwing_knife", "fg": 2721 }, + { "id": "baseball", "fg": 2743 }, + { "id": "basketball", "fg": 2744 }, + { "id": "battery_car", "fg": 2745 }, + { "id": "beach_volleyball", "fg": 2746 }, + { "id": "bowling_ball", "fg": 2747 }, + { "id": "cell_phone", "fg": 2748 }, + { "id": "cell_phone_flashlight", "fg": 2749 }, + { "id": "cigar", "fg": 2750 }, + { "id": "cigar_butt", "fg": 2751 }, + { "id": "cigar_lit", "fg": 2752 }, + { "id": "ear_plugs", "fg": 2754 }, + { "id": "fiddlehead_boiled", "fg": 2755 }, + { "id": "fiddlehead_raw", "fg": 2756 }, + { "id": "fiddlehead_sauteed", "fg": 2757 }, + { "id": "flask_hip", "fg": 2758 }, + { "id": "football", "fg": 2759 }, + { "id": "golf_ball", "fg": 2760 }, + { "id": "holo_sight", "fg": 2761 }, + { "id": "indoor_volleyball", "fg": 2762 }, + { "id": "misc_repairkit", "fg": 2763 }, + { "id": "mre_beef_box", "fg": 2764 }, + { "id": "peephole", "fg": 2765 }, + { "id": "portable_game", "fg": 2766 }, + { "id": "puck", "fg": 2767 }, + { "id": "purse", "fg": 2768 }, + { "id": "suppressor", "fg": 2769 }, + { "id": "tourniquet_upper", "fg": 2770 }, + { "id": "two_way_radio", "fg": 2771 }, + { "id": "wristwatch", "fg": 2772 }, + { "id": "mushroom", "fg": 2773 }, + { "id": "cable_speaker", "fg": 2774 }, + { "id": "headphones_circumaural", "fg": 2775 }, + { "id": "microphone_xlr_generic", "fg": 2776 }, + { "id": "popcan_stove", "fg": 2817 }, + { "id": "rad_badge", "fg": 2818 }, + { "id": "alexandrite_gold_ring", "fg": 2820 }, + { "id": "alexandrite_platinum_ring", "fg": 2821 }, + { "id": "alexandrite_silver_ring", "fg": 2822 }, + { "id": "amethyst_gold_ring", "fg": 2823 }, + { "id": "amethyst_platinum_ring", "fg": 2824 }, + { "id": "amethyst_silver_ring", "fg": 2825 }, + { "id": "aquamarine_gold_ring", "fg": 2826 }, + { "id": "aquamarine_platinum_ring", "fg": 2827 }, + { "id": "aquamarine_silver_ring", "fg": 2828 }, + { "id": "blue_topaz_gold_ring", "fg": 2829 }, + { "id": "blue_topaz_platinum_ring", "fg": 2830 }, + { "id": "blue_topaz_silver_ring", "fg": 2831 }, + { "id": "citrine_gold_ring", "fg": 2832 }, + { "id": "citrine_platinum_ring", "fg": 2833 }, + { "id": "citrine_silver_ring", "fg": 2834 }, + { "id": "diamond_platinum_ring", "fg": 2835 }, + { "id": "diamond_ring", "fg": 2836 }, + { "id": "diamond_silver_ring", "fg": 2837 }, + { "id": "emerald_gold_ring", "fg": 2838 }, + { "id": "emerald_platinum_ring", "fg": 2839 }, + { "id": "emerald_silver_ring", "fg": 2840 }, + { "id": "garnet_gold_ring", "fg": 2841 }, + { "id": "garnet_platinum_ring", "fg": 2842 }, + { "id": "garnet_silver_ring", "fg": 2843 }, + { "id": "gold_ring", "fg": 2844 }, + { "id": "opal_gold_ring", "fg": 2845 }, + { "id": "opal_platinum_ring", "fg": 2846 }, + { "id": "opal_silver_ring", "fg": 2847 }, + { "id": "pearl_gold_ring", "fg": 2848 }, + { "id": "pearl_platinum_ring", "fg": 2849 }, + { "id": "pearl_silver_ring", "fg": 2850 }, + { "id": "peridot_gold_ring", "fg": 2851 }, + { "id": "peridot_platinum_ring", "fg": 2852 }, + { "id": "peridot_silver_ring", "fg": 2853 }, + { "id": "ring_engagement", "fg": 2854 }, + { "id": "ruby_gold_ring", "fg": 2855 }, + { "id": "ruby_platinum_ring", "fg": 2856 }, + { "id": "ruby_silver_ring", "fg": 2857 }, + { "id": "sapphire_gold_ring", "fg": 2858 }, + { "id": "sapphire_platinum_ring", "fg": 2859 }, + { "id": "sapphire_silver_ring", "fg": 2860 }, + { "id": "tourmaline_gold_ring", "fg": 2861 }, + { "id": "tourmaline_platinum_ring", "fg": 2862 }, + { "id": "tourmaline_silver_ring", "fg": 2863 }, + { "id": "pebble", "fg": 2864 }, + { "id": "pebble_clay", "fg": 2865 }, + { "id": "rock", "fg": 2866 }, + { "id": "rock_flaking", "fg": 2867 }, + { "id": "rock_large", "fg": 2868 }, + { "id": "slime_scrap", "fg": 2877 }, + { "id": "clay_teapot", "fg": 2881 }, + { "id": "crucible", "fg": 2884 }, + { "id": "tire_iron", "fg": 2897 }, + { "id": "towel", "fg": 2912 }, + { "id": "towel_soiled", "fg": 2913 }, + { "id": "towel_wet", "fg": 2914 }, + { "id": "battery_charger", "fg": 2915 }, + { "id": "recharge_station", "fg": 2916 }, + { "id": "wax", "fg": 2919 } ] }, { "file": "normal.png", - "//": "range 2912 to 6207", + "//": "range 2928 to 6287", "tiles": [ { "id": "fd_acid", - "fg": 2930, + "fg": 2949, "multitile": true, "additional_tiles": [ { "id": "center", "animated": true, "fg": [ - { "weight": 8, "sprite": 2915 }, - { "weight": 8, "sprite": 2931 }, - { "weight": 8, "sprite": 2947 }, - { "weight": 8, "sprite": 2963 }, - { "weight": 8, "sprite": 2979 }, - { "weight": 8, "sprite": 2995 }, - { "weight": 8, "sprite": 3011 }, - { "weight": 8, "sprite": 3027 } + { "weight": 8, "sprite": 2934 }, + { "weight": 8, "sprite": 2950 }, + { "weight": 8, "sprite": 2966 }, + { "weight": 8, "sprite": 2982 }, + { "weight": 8, "sprite": 2998 }, + { "weight": 8, "sprite": 3014 }, + { "weight": 8, "sprite": 3030 }, + { "weight": 8, "sprite": 3046 } ] }, { "id": "corner", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2917, 2919, 2918, 2916 ] }, - { "weight": 8, "sprite": [ 2933, 2935, 2934, 2932 ] }, - { "weight": 8, "sprite": [ 2949, 2951, 2950, 2948 ] }, - { "weight": 8, "sprite": [ 2965, 2967, 2966, 2964 ] }, - { "weight": 8, "sprite": [ 2981, 2983, 2982, 2980 ] }, - { "weight": 8, "sprite": [ 2997, 2999, 2998, 2996 ] }, - { "weight": 8, "sprite": [ 3013, 3015, 3014, 3012 ] }, - { "weight": 8, "sprite": [ 3029, 3031, 3030, 3028 ] } + { "weight": 8, "sprite": [ 2936, 2938, 2937, 2935 ] }, + { "weight": 8, "sprite": [ 2952, 2954, 2953, 2951 ] }, + { "weight": 8, "sprite": [ 2968, 2970, 2969, 2967 ] }, + { "weight": 8, "sprite": [ 2984, 2986, 2985, 2983 ] }, + { "weight": 8, "sprite": [ 3000, 3002, 3001, 2999 ] }, + { "weight": 8, "sprite": [ 3016, 3018, 3017, 3015 ] }, + { "weight": 8, "sprite": [ 3032, 3034, 3033, 3031 ] }, + { "weight": 8, "sprite": [ 3048, 3050, 3049, 3047 ] } ] }, { "id": "t_connection", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2927, 2929, 2928, 2926 ] }, - { "weight": 8, "sprite": [ 2943, 2945, 2944, 2942 ] }, - { "weight": 8, "sprite": [ 2959, 2961, 2960, 2958 ] }, - { "weight": 8, "sprite": [ 2975, 2977, 2976, 2974 ] }, - { "weight": 8, "sprite": [ 2991, 2993, 2992, 2990 ] }, - { "weight": 8, "sprite": [ 3007, 3009, 3008, 3006 ] }, - { "weight": 8, "sprite": [ 3023, 3025, 3024, 3022 ] }, - { "weight": 8, "sprite": [ 3039, 3041, 3040, 3038 ] } + { "weight": 8, "sprite": [ 2946, 2948, 2947, 2945 ] }, + { "weight": 8, "sprite": [ 2962, 2964, 2963, 2961 ] }, + { "weight": 8, "sprite": [ 2978, 2980, 2979, 2977 ] }, + { "weight": 8, "sprite": [ 2994, 2996, 2995, 2993 ] }, + { "weight": 8, "sprite": [ 3010, 3012, 3011, 3009 ] }, + { "weight": 8, "sprite": [ 3026, 3028, 3027, 3025 ] }, + { "weight": 8, "sprite": [ 3042, 3044, 3043, 3041 ] }, + { "weight": 8, "sprite": [ 3058, 3060, 3059, 3057 ] } ] }, { "id": "edge", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2921, 2920 ] }, - { "weight": 8, "sprite": [ 2937, 2936 ] }, - { "weight": 8, "sprite": [ 2953, 2952 ] }, - { "weight": 8, "sprite": [ 2969, 2968 ] }, - { "weight": 8, "sprite": [ 2985, 2984 ] }, - { "weight": 8, "sprite": [ 3001, 3000 ] }, - { "weight": 8, "sprite": [ 3017, 3016 ] }, - { "weight": 8, "sprite": [ 3033, 3032 ] } + { "weight": 8, "sprite": [ 2940, 2939 ] }, + { "weight": 8, "sprite": [ 2956, 2955 ] }, + { "weight": 8, "sprite": [ 2972, 2971 ] }, + { "weight": 8, "sprite": [ 2988, 2987 ] }, + { "weight": 8, "sprite": [ 3004, 3003 ] }, + { "weight": 8, "sprite": [ 3020, 3019 ] }, + { "weight": 8, "sprite": [ 3036, 3035 ] }, + { "weight": 8, "sprite": [ 3052, 3051 ] } ] }, { "id": "end_piece", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2923, 2925, 2924, 2922 ] }, - { "weight": 8, "sprite": [ 2939, 2941, 2940, 2938 ] }, - { "weight": 8, "sprite": [ 2955, 2957, 2956, 2954 ] }, - { "weight": 8, "sprite": [ 2971, 2973, 2972, 2970 ] }, - { "weight": 8, "sprite": [ 2987, 2989, 2988, 2986 ] }, - { "weight": 8, "sprite": [ 3003, 3005, 3004, 3002 ] }, - { "weight": 8, "sprite": [ 3019, 3021, 3020, 3018 ] }, - { "weight": 8, "sprite": [ 3035, 3037, 3036, 3034 ] } + { "weight": 8, "sprite": [ 2942, 2944, 2943, 2941 ] }, + { "weight": 8, "sprite": [ 2958, 2960, 2959, 2957 ] }, + { "weight": 8, "sprite": [ 2974, 2976, 2975, 2973 ] }, + { "weight": 8, "sprite": [ 2990, 2992, 2991, 2989 ] }, + { "weight": 8, "sprite": [ 3006, 3008, 3007, 3005 ] }, + { "weight": 8, "sprite": [ 3022, 3024, 3023, 3021 ] }, + { "weight": 8, "sprite": [ 3038, 3040, 3039, 3037 ] }, + { "weight": 8, "sprite": [ 3054, 3056, 3055, 3053 ] } ] }, { "id": "unconnected", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2930, 2930 ] }, - { "weight": 8, "sprite": [ 2946, 2946 ] }, - { "weight": 8, "sprite": [ 2962, 2962 ] }, - { "weight": 8, "sprite": [ 2978, 2978 ] }, - { "weight": 8, "sprite": [ 2994, 2994 ] }, - { "weight": 8, "sprite": [ 3010, 3010 ] }, - { "weight": 8, "sprite": [ 3026, 3026 ] }, - { "weight": 8, "sprite": [ 3042, 3042 ] } + { "weight": 8, "sprite": [ 2949, 2949 ] }, + { "weight": 8, "sprite": [ 2965, 2965 ] }, + { "weight": 8, "sprite": [ 2981, 2981 ] }, + { "weight": 8, "sprite": [ 2997, 2997 ] }, + { "weight": 8, "sprite": [ 3013, 3013 ] }, + { "weight": 8, "sprite": [ 3029, 3029 ] }, + { "weight": 8, "sprite": [ 3045, 3045 ] }, + { "weight": 8, "sprite": [ 3061, 3061 ] } ] } ] }, { "id": "fd_bile", - "fg": 3058, + "fg": 3077, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 3062 }, + { "id": "corner", "fg": [ 3064, 3066, 3065, 3063 ] }, + { "id": "t_connection", "fg": [ 3074, 3076, 3075, 3073 ] }, + { "id": "edge", "fg": [ 3068, 3067 ] }, + { "id": "end_piece", "fg": [ 3070, 3072, 3071, 3069 ] }, + { "id": "unconnected", "fg": [ 3077, 3077 ] } + ] + }, + { + "id": "fd_electricity", + "fg": 3093, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3043 }, - { "id": "corner", "fg": [ 3045, 3047, 3046, 3044 ] }, - { "id": "t_connection", "fg": [ 3055, 3057, 3056, 3054 ] }, - { "id": "edge", "fg": [ 3049, 3048 ] }, - { "id": "end_piece", "fg": [ 3051, 3053, 3052, 3050 ] }, - { "id": "unconnected", "fg": [ 3058, 3058 ] } + { "id": "center", "fg": 3078 }, + { "id": "corner", "fg": [ 3080, 3082, 3081, 3079 ] }, + { "id": "t_connection", "fg": [ 3090, 3092, 3091, 3089 ] }, + { "id": "edge", "fg": [ 3084, 3083 ] }, + { "id": "end_piece", "fg": [ 3086, 3088, 3087, 3085 ] }, + { "id": "unconnected", "fg": [ 3093, 3093 ] } ] }, { "id": "fd_sludge", - "fg": 3106, + "fg": 3141, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 3059 }, { "weight": 1, "sprite": 3075 }, { "weight": 1, "sprite": 3091 } ] + "fg": [ { "weight": 1, "sprite": 3094 }, { "weight": 1, "sprite": 3110 }, { "weight": 1, "sprite": 3126 } ] }, { "id": "corner", "fg": [ - { "weight": 1, "sprite": [ 3061, 3063, 3062, 3060 ] }, - { "weight": 1, "sprite": [ 3077, 3079, 3078, 3076 ] }, - { "weight": 1, "sprite": [ 3093, 3095, 3094, 3092 ] } + { "weight": 1, "sprite": [ 3096, 3098, 3097, 3095 ] }, + { "weight": 1, "sprite": [ 3112, 3114, 3113, 3111 ] }, + { "weight": 1, "sprite": [ 3128, 3130, 3129, 3127 ] } ] }, { "id": "t_connection", "fg": [ - { "weight": 1, "sprite": [ 3071, 3073, 3072, 3070 ] }, - { "weight": 1, "sprite": [ 3087, 3089, 3088, 3086 ] }, - { "weight": 1, "sprite": [ 3103, 3105, 3104, 3102 ] } + { "weight": 1, "sprite": [ 3106, 3108, 3107, 3105 ] }, + { "weight": 1, "sprite": [ 3122, 3124, 3123, 3121 ] }, + { "weight": 1, "sprite": [ 3138, 3140, 3139, 3137 ] } ] }, { "id": "edge", "fg": [ - { "weight": 1, "sprite": [ 3065, 3064 ] }, - { "weight": 1, "sprite": [ 3081, 3080 ] }, - { "weight": 1, "sprite": [ 3097, 3096 ] } + { "weight": 1, "sprite": [ 3100, 3099 ] }, + { "weight": 1, "sprite": [ 3116, 3115 ] }, + { "weight": 1, "sprite": [ 3132, 3131 ] } ] }, { "id": "end_piece", "fg": [ - { "weight": 1, "sprite": [ 3067, 3069, 3068, 3066 ] }, - { "weight": 1, "sprite": [ 3083, 3085, 3084, 3082 ] }, - { "weight": 1, "sprite": [ 3099, 3101, 3100, 3098 ] } + { "weight": 1, "sprite": [ 3102, 3104, 3103, 3101 ] }, + { "weight": 1, "sprite": [ 3118, 3120, 3119, 3117 ] }, + { "weight": 1, "sprite": [ 3134, 3136, 3135, 3133 ] } ] }, { "id": "unconnected", "fg": [ - { "weight": 1, "sprite": [ 3074, 3074 ] }, - { "weight": 1, "sprite": [ 3090, 3090 ] }, - { "weight": 1, "sprite": [ 3106, 3106 ] } + { "weight": 1, "sprite": [ 3109, 3109 ] }, + { "weight": 1, "sprite": [ 3125, 3125 ] }, + { "weight": 1, "sprite": [ 3141, 3141 ] } ] } ] }, - { "id": "f_plant_seed", "fg": 3116, "rotates": false }, - { "id": "f_plant_seedling", "fg": 3117, "rotates": false }, - { "id": "f_plant_mature", "fg": 3115, "rotates": false }, - { "id": "f_plant_harvest", "fg": 3114, "rotates": false }, - { "id": "tr_rollmat", "fg": 3119 }, - { "id": "tr_fur_rollmat", "fg": 3118 }, - { "id": "f_air_conditioner", "fg": 3121 }, - { "id": "f_armchair", "rotates": true, "fg": [ 3124, 3125, 3123, 3122 ] }, - { "id": "f_ash", "fg": 3126 }, - { "id": "f_barricade_road", "fg": 3127 }, + { + "id": "fd_tindalos_gas", + "fg": [ + { "weight": 5, "sprite": 3152 }, + { "weight": 5, "sprite": 3154 }, + { "weight": 5, "sprite": 3155 }, + { "weight": 5, "sprite": 3156 }, + { "weight": 5, "sprite": 3157 }, + { "weight": 5, "sprite": 3158 }, + { "weight": 5, "sprite": 3159 }, + { "weight": 5, "sprite": 3160 }, + { "weight": 5, "sprite": 3161 }, + { "weight": 5, "sprite": 3153 } + ], + "animated": true + }, + { "id": "f_plant_seed", "fg": 3171, "rotates": false }, + { "id": "f_plant_seedling", "fg": 3172, "rotates": false }, + { "id": "f_plant_mature", "fg": 3170, "rotates": false }, + { "id": "f_plant_harvest", "fg": 3169, "rotates": false }, + { "id": "tr_rollmat", "fg": 3174 }, + { "id": "tr_fur_rollmat", "fg": 3173 }, + { "id": "f_air_conditioner", "fg": 3176 }, + { "id": "f_armchair", "rotates": true, "fg": [ 3179, 3180, 3178, 3177 ] }, + { "id": "f_ash", "fg": 3181 }, + { "id": "f_barricade_road", "fg": 3182 }, { "id": "f_bathtub", "multitile": true, - "fg": 3143, + "fg": 3198, "additional_tiles": [ - { "id": "center", "fg": 3128 }, - { "id": "corner", "fg": [ 3130, 3132, 3131, 3129 ] }, - { "id": "t_connection", "fg": [ 3140, 3142, 3141, 3139 ] }, - { "id": "edge", "fg": [ 3134, 3133 ] }, - { "id": "end_piece", "fg": [ 3136, 3138, 3137, 3135 ] }, - { "id": "unconnected", "fg": [ 3143, 3143 ] } + { "id": "center", "fg": 3183 }, + { "id": "corner", "fg": [ 3185, 3187, 3186, 3184 ] }, + { "id": "t_connection", "fg": [ 3195, 3197, 3196, 3194 ] }, + { "id": "edge", "fg": [ 3189, 3188 ] }, + { "id": "end_piece", "fg": [ 3191, 3193, 3192, 3190 ] }, + { "id": "unconnected", "fg": [ 3198, 3198 ] } ] }, { "id": "f_bed", "multitile": true, - "fg": 3161, + "fg": 3216, "additional_tiles": [ - { "id": "center", "fg": 3146 }, - { "id": "corner", "fg": [ 3148, 3150, 3149, 3147 ] }, - { "id": "t_connection", "fg": [ 3158, 3160, 3159, 3157 ] }, - { "id": "edge", "fg": [ 3152, 3151 ] }, - { "id": "end_piece", "fg": [ 3154, 3156, 3155, 3153 ] }, - { "id": "unconnected", "fg": [ 3161, 3161 ] } + { "id": "center", "fg": 3201 }, + { "id": "corner", "fg": [ 3203, 3205, 3204, 3202 ] }, + { "id": "t_connection", "fg": [ 3213, 3215, 3214, 3212 ] }, + { "id": "edge", "fg": [ 3207, 3206 ] }, + { "id": "end_piece", "fg": [ 3209, 3211, 3210, 3208 ] }, + { "id": "unconnected", "fg": [ 3216, 3216 ] } ] }, { "id": "f_bench", "multitile": true, - "fg": 3177, + "fg": 3232, "additional_tiles": [ - { "id": "center", "fg": 3162 }, - { "id": "corner", "fg": [ 3164, 3166, 3165, 3163 ] }, - { "id": "t_connection", "fg": [ 3174, 3176, 3175, 3173 ] }, - { "id": "edge", "fg": [ 3168, 3167 ] }, - { "id": "end_piece", "fg": [ 3170, 3172, 3171, 3169 ] }, - { "id": "unconnected", "fg": [ 3177, 3177 ] } + { "id": "center", "fg": 3217 }, + { "id": "corner", "fg": [ 3219, 3221, 3220, 3218 ] }, + { "id": "t_connection", "fg": [ 3229, 3231, 3230, 3228 ] }, + { "id": "edge", "fg": [ 3223, 3222 ] }, + { "id": "end_piece", "fg": [ 3225, 3227, 3226, 3224 ] }, + { "id": "unconnected", "fg": [ 3232, 3232 ] } ] }, - { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 3179 }, { "weight": 2, "sprite": 3180 } ] }, - { "id": "f_boulder_medium", "fg": 3181 }, - { "id": "f_boulder_small", "fg": 3182 }, - { "id": "f_generator_broken", "fg": 3183 }, - { "id": "t_generator_broken", "fg": 3183, "bg": 4772 }, - { "id": "f_bulletin", "fg": 3184 }, - { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 3185 }, - { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 3186 }, + { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 3234 }, { "weight": 2, "sprite": 3235 } ] }, + { "id": "f_boulder_medium", "fg": 3236 }, + { "id": "f_boulder_small", "fg": 3237 }, + { "id": "f_generator_broken", "fg": 3238 }, + { "id": "t_generator_broken", "fg": 3238, "bg": 4837 }, + { "id": "f_bulletin", "fg": 3239 }, + { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 3240 }, + { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 3241 }, { "id": [ "f_canvas_wall", "f_large_canvas_wall" ], "multitile": true, - "fg": 3202, + "fg": 3257, "additional_tiles": [ - { "id": "center", "fg": 3187 }, - { "id": "corner", "fg": [ 3189, 3191, 3190, 3188 ] }, - { "id": "t_connection", "fg": [ 3199, 3201, 3200, 3198 ] }, - { "id": "edge", "fg": [ 3193, 3192 ] }, - { "id": "end_piece", "fg": [ 3195, 3197, 3196, 3194 ] }, - { "id": "unconnected", "fg": 3202 } + { "id": "center", "fg": 3242 }, + { "id": "corner", "fg": [ 3244, 3246, 3245, 3243 ] }, + { "id": "t_connection", "fg": [ 3254, 3256, 3255, 3253 ] }, + { "id": "edge", "fg": [ 3248, 3247 ] }, + { "id": "end_piece", "fg": [ 3250, 3252, 3251, 3249 ] }, + { "id": "unconnected", "fg": 3257 } ] }, - { "id": "f_cardboard_box", "fg": 3203 }, - { "id": "f_centrifuge", "fg": 3204 }, - { "id": "t_centrifuge", "fg": 3204, "bg": 5001 }, - { "id": "f_chair", "rotates": true, "fg": [ 3207, 3208, 3206, 3205 ] }, - { "id": "f_chamomile", "fg": 3209 }, - { "id": "f_compact_ASRG_containment", "fg": 3211 }, + { "id": "f_cardboard_box", "fg": 3258 }, + { "id": "f_centrifuge", "fg": 3259 }, + { "id": "t_centrifuge", "fg": 3259, "bg": 5066 }, + { "id": "f_chair", "rotates": true, "fg": [ 3262, 3263, 3261, 3260 ] }, + { "id": "f_chamomile", "fg": 3264 }, + { "id": "f_compact_ASRG_containment", "fg": 3266 }, { "id": "f_counter", "multitile": true, - "fg": 3227, + "fg": 3282, "additional_tiles": [ - { "id": "center", "fg": 3212 }, - { "id": "corner", "fg": [ 3214, 3216, 3215, 3213 ] }, - { "id": "t_connection", "fg": [ 3224, 3226, 3225, 3223 ] }, - { "id": "edge", "fg": [ 3218, 3217 ] }, - { "id": "end_piece", "fg": [ 3220, 3222, 3221, 3219 ] }, - { "id": "unconnected", "fg": [ 3227, 3227 ] } + { "id": "center", "fg": 3267 }, + { "id": "corner", "fg": [ 3269, 3271, 3270, 3268 ] }, + { "id": "t_connection", "fg": [ 3279, 3281, 3280, 3278 ] }, + { "id": "edge", "fg": [ 3273, 3272 ] }, + { "id": "end_piece", "fg": [ 3275, 3277, 3276, 3274 ] }, + { "id": "unconnected", "fg": [ 3282, 3282 ] } ] }, { "id": "f_cupboard", "multitile": true, - "fg": 3243, + "fg": 3298, "additional_tiles": [ - { "id": "center", "fg": 3228 }, - { "id": "corner", "fg": [ 3230, 3232, 3231, 3229 ] }, - { "id": "t_connection", "fg": [ 3240, 3242, 3241, 3239 ] }, - { "id": "edge", "fg": [ 3234, 3233 ] }, - { "id": "end_piece", "fg": [ 3236, 3238, 3237, 3235 ] }, - { "id": "unconnected", "fg": [ 3243, 3243 ] } + { "id": "center", "fg": 3283 }, + { "id": "corner", "fg": [ 3285, 3287, 3286, 3284 ] }, + { "id": "t_connection", "fg": [ 3295, 3297, 3296, 3294 ] }, + { "id": "edge", "fg": [ 3289, 3288 ] }, + { "id": "end_piece", "fg": [ 3291, 3293, 3292, 3290 ] }, + { "id": "unconnected", "fg": [ 3298, 3298 ] } ] }, - { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 3246 }, { "weight": 2, "sprite": 3247 } ] }, - { "id": "f_dandelion_season_spring", "fg": 3248 }, - { "id": "f_dandelion_season_summer", "fg": 3250 }, - { "id": "f_dandelion_season_autumn", "fg": 3249 }, - { "id": "f_dandelion_season_winter", "fg": 3251 }, - { "id": "f_datura", "fg": 3252 }, + { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 3301 }, { "weight": 2, "sprite": 3302 } ] }, + { "id": "f_dandelion_season_spring", "fg": 3303 }, + { "id": "f_dandelion_season_summer", "fg": 3305 }, + { "id": "f_dandelion_season_autumn", "fg": 3304 }, + { "id": "f_dandelion_season_winter", "fg": 3306 }, + { "id": "f_datura", "fg": 3307 }, { "id": "f_desk", "multitile": true, - "fg": 3268, + "fg": 3323, "additional_tiles": [ - { "id": "center", "fg": 3253 }, - { "id": "corner", "fg": [ 3255, 3257, 3256, 3254 ] }, - { "id": "t_connection", "fg": [ 3265, 3267, 3266, 3264 ] }, - { "id": "edge", "fg": [ 3259, 3258 ] }, - { "id": "end_piece", "fg": [ 3261, 3263, 3262, 3260 ] }, - { "id": "unconnected", "fg": [ 3268, 3268 ] } + { "id": "center", "fg": 3308 }, + { "id": "corner", "fg": [ 3310, 3312, 3311, 3309 ] }, + { "id": "t_connection", "fg": [ 3320, 3322, 3321, 3319 ] }, + { "id": "edge", "fg": [ 3314, 3313 ] }, + { "id": "end_piece", "fg": [ 3316, 3318, 3317, 3315 ] }, + { "id": "unconnected", "fg": [ 3323, 3323 ] } ] }, - { "id": "f_displaycase", "fg": 3269 }, - { "id": "f_entertainment_center", "fg": 3270 }, - { "id": "f_filing_cabinet", "fg": 3271 }, - { "id": "f_firering", "fg": 3272 }, - { "id": "f_flower_spurge", "fg": 3273 }, - { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 3274 }, { "weight": 2, "sprite": 3275 } ] }, + { "id": "f_displaycase", "fg": 3324 }, + { "id": "f_entertainment_center", "fg": 3325 }, + { "id": "f_filing_cabinet", "fg": 3326 }, + { "id": "f_firering", "fg": 3327 }, + { "id": "f_flower_spurge", "fg": 3328 }, + { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 3329 }, { "weight": 2, "sprite": 3330 } ] }, { "id": [ "f_grave_stone", "f_grave_head" ], - "fg": [ { "weight": 1, "sprite": 3276 }, { "weight": 1, "sprite": 3277 } ] - }, - { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 3278 }, { "weight": 1, "sprite": 3279 } ] }, - { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 3280 }, - { "id": "f_gunsafe_ml", "fg": 3283 }, - { "id": "f_gunsafe_mj", "fg": 3282 }, - { "id": "f_gun_safe_el", "fg": 3281 }, - { "id": "f_hay", "fg": 3284 }, - { "id": "f_indoor_plant", "fg": 3285 }, - { "id": "f_indoor_plant_y", "fg": 3286 }, - { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 3287 }, - { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 3288 }, - { "id": "f_leather_tarp", "fg": 3289 }, - { "id": "f_mailbox", "fg": 3291 }, - { "id": "f_metal_crate_r", "fg": 3294 }, - { "id": "f_metal_crate_c", "fg": 3292 }, - { "id": "f_metal_crate_o", "fg": 3293 }, + "fg": [ { "weight": 1, "sprite": 3331 }, { "weight": 1, "sprite": 3332 } ] + }, + { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 3333 }, { "weight": 1, "sprite": 3334 } ] }, + { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 3335 }, + { "id": "f_gunsafe_ml", "fg": 3338 }, + { "id": "f_gunsafe_mj", "fg": 3337 }, + { "id": "f_gun_safe_el", "fg": 3336 }, + { "id": "f_hay", "fg": 3339 }, + { "id": "f_indoor_plant", "fg": 3340 }, + { "id": "f_indoor_plant_y", "fg": 3341 }, + { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 3342 }, + { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 3343 }, + { "id": "f_leather_tarp", "fg": 3344 }, + { "id": "f_mailbox", "fg": 3346 }, + { "id": "f_metal_crate_r", "fg": 3349 }, + { "id": "f_metal_crate_c", "fg": 3347 }, + { "id": "f_metal_crate_o", "fg": 3348 }, { "id": "f_metal_table", "multitile": true, - "fg": 3310, + "fg": 3365, "additional_tiles": [ - { "id": "center", "fg": 3295 }, - { "id": "corner", "fg": [ 3297, 3299, 3298, 3296 ] }, - { "id": "t_connection", "fg": [ 3307, 3309, 3308, 3306 ] }, - { "id": "edge", "fg": [ 3301, 3300 ] }, - { "id": "end_piece", "fg": [ 3303, 3305, 3304, 3302 ] }, - { "id": "unconnected", "fg": [ 3310, 3310 ] } + { "id": "center", "fg": 3350 }, + { "id": "corner", "fg": [ 3352, 3354, 3353, 3351 ] }, + { "id": "t_connection", "fg": [ 3362, 3364, 3363, 3361 ] }, + { "id": "edge", "fg": [ 3356, 3355 ] }, + { "id": "end_piece", "fg": [ 3358, 3360, 3359, 3357 ] }, + { "id": "unconnected", "fg": [ 3365, 3365 ] } ] }, - { "id": "f_alien_anemone", "fg": 3311 }, - { "id": "f_alien_table", "fg": 3312 }, - { "id": "f_mustard_season_spring", "fg": 3314, "rotates": false }, - { "id": "f_mustard_season_summer", "fg": 3315, "rotates": false }, - { "id": "f_mustard_season_autumn", "fg": 3313, "rotates": false }, - { "id": "f_mustard_season_winter", "fg": 3316, "rotates": false }, - { "id": "f_mutpoppy", "fg": 3317 }, + { "id": "f_alien_anemone", "fg": 3366 }, + { "id": "f_alien_table", "fg": 3367 }, + { "id": "f_mustard_season_spring", "fg": 3369, "rotates": false }, + { "id": "f_mustard_season_summer", "fg": 3370, "rotates": false }, + { "id": "f_mustard_season_autumn", "fg": 3368, "rotates": false }, + { "id": "f_mustard_season_winter", "fg": 3371, "rotates": false }, + { "id": "f_mutpoppy", "fg": 3372 }, { "id": "f_planter", "multitile": true, - "fg": 3333, + "fg": 3388, "additional_tiles": [ - { "id": "center", "fg": 3318 }, - { "id": "corner", "fg": [ 3320, 3322, 3321, 3319 ] }, - { "id": "t_connection", "fg": [ 3330, 3332, 3331, 3329 ] }, - { "id": "edge", "fg": [ 3324, 3323 ] }, - { "id": "end_piece", "fg": [ 3326, 3328, 3327, 3325 ] }, - { "id": "unconnected", "fg": [ 3333, 3333 ] } + { "id": "center", "fg": 3373 }, + { "id": "corner", "fg": [ 3375, 3377, 3376, 3374 ] }, + { "id": "t_connection", "fg": [ 3385, 3387, 3386, 3384 ] }, + { "id": "edge", "fg": [ 3379, 3378 ] }, + { "id": "end_piece", "fg": [ 3381, 3383, 3382, 3380 ] }, + { "id": "unconnected", "fg": [ 3388, 3388 ] } ] }, { "id": "f_planter_harvest", "multitile": true, - "fg": 3349, + "fg": 3404, "additional_tiles": [ - { "id": "center", "fg": 3334 }, - { "id": "corner", "fg": [ 3336, 3338, 3337, 3335 ] }, - { "id": "t_connection", "fg": [ 3346, 3348, 3347, 3345 ] }, - { "id": "edge", "fg": [ 3340, 3339 ] }, - { "id": "end_piece", "fg": [ 3342, 3344, 3343, 3341 ] }, - { "id": "unconnected", "fg": [ 3349, 3349 ] } + { "id": "center", "fg": 3389 }, + { "id": "corner", "fg": [ 3391, 3393, 3392, 3390 ] }, + { "id": "t_connection", "fg": [ 3401, 3403, 3402, 3400 ] }, + { "id": "edge", "fg": [ 3395, 3394 ] }, + { "id": "end_piece", "fg": [ 3397, 3399, 3398, 3396 ] }, + { "id": "unconnected", "fg": [ 3404, 3404 ] } ] }, { "id": "f_planter_mature", "multitile": true, - "fg": 3365, + "fg": 3420, "additional_tiles": [ - { "id": "center", "fg": 3350 }, - { "id": "corner", "fg": [ 3352, 3354, 3353, 3351 ] }, - { "id": "t_connection", "fg": [ 3362, 3364, 3363, 3361 ] }, - { "id": "edge", "fg": [ 3356, 3355 ] }, - { "id": "end_piece", "fg": [ 3358, 3360, 3359, 3357 ] }, - { "id": "unconnected", "fg": [ 3365, 3365 ] } + { "id": "center", "fg": 3405 }, + { "id": "corner", "fg": [ 3407, 3409, 3408, 3406 ] }, + { "id": "t_connection", "fg": [ 3417, 3419, 3418, 3416 ] }, + { "id": "edge", "fg": [ 3411, 3410 ] }, + { "id": "end_piece", "fg": [ 3413, 3415, 3414, 3412 ] }, + { "id": "unconnected", "fg": [ 3420, 3420 ] } ] }, { "id": "f_planter_seedling", "multitile": true, - "fg": 3381, + "fg": 3436, "additional_tiles": [ - { "id": "center", "fg": 3366 }, - { "id": "corner", "fg": [ 3368, 3370, 3369, 3367 ] }, - { "id": "t_connection", "fg": [ 3378, 3380, 3379, 3377 ] }, - { "id": "edge", "fg": [ 3372, 3371 ] }, - { "id": "end_piece", "fg": [ 3374, 3376, 3375, 3373 ] }, - { "id": "unconnected", "fg": [ 3381, 3381 ] } + { "id": "center", "fg": 3421 }, + { "id": "corner", "fg": [ 3423, 3425, 3424, 3422 ] }, + { "id": "t_connection", "fg": [ 3433, 3435, 3434, 3432 ] }, + { "id": "edge", "fg": [ 3427, 3426 ] }, + { "id": "end_piece", "fg": [ 3429, 3431, 3430, 3428 ] }, + { "id": "unconnected", "fg": [ 3436, 3436 ] } ] }, - { "id": "f_plastic_groundsheet", "fg": 3382 }, + { "id": "f_plastic_groundsheet", "fg": 3437 }, { "id": "f_pool_table", "multitile": true, - "fg": 3398, + "fg": 3453, "additional_tiles": [ - { "id": "center", "fg": 3383 }, - { "id": "corner", "fg": [ 3385, 3387, 3386, 3384 ] }, - { "id": "t_connection", "fg": [ 3395, 3397, 3396, 3394 ] }, - { "id": "edge", "fg": [ 3389, 3388 ] }, - { "id": "end_piece", "fg": [ 3391, 3393, 3392, 3390 ] }, - { "id": "unconnected", "fg": 3398 } + { "id": "center", "fg": 3438 }, + { "id": "corner", "fg": [ 3440, 3442, 3441, 3439 ] }, + { "id": "t_connection", "fg": [ 3450, 3452, 3451, 3449 ] }, + { "id": "edge", "fg": [ 3444, 3443 ] }, + { "id": "end_piece", "fg": [ 3446, 3448, 3447, 3445 ] }, + { "id": "unconnected", "fg": 3453 } ] }, - { "id": "f_rack", "fg": 3399 }, - { "id": "f_rack_wood", "fg": 3400 }, - { "id": "f_recycle_bin", "fg": 3401 }, - { "id": "f_rubble", "fg": 3402 }, - { "id": "f_rubble_rock", "fg": 3403 }, + { "id": "f_rack", "fg": 3454 }, + { "id": "f_rack_wood", "fg": 3455 }, + { "id": "f_recycle_bin", "fg": 3456 }, + { "id": "f_rubble", "fg": 3457 }, + { "id": "f_rubble_rock", "fg": 3458 }, { "id": "f_scrap_bridge", - "fg": 3419, + "fg": 3474, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3404 }, - { "id": "corner", "fg": [ 3406, 3408, 3407, 3405 ] }, - { "id": "t_connection", "fg": [ 3416, 3418, 3417, 3415 ] }, - { "id": "edge", "fg": [ 3410, 3409 ] }, - { "id": "end_piece", "fg": [ 3412, 3414, 3413, 3411 ] }, - { "id": "unconnected", "fg": [ 3419, 3419 ] } + { "id": "center", "fg": 3459 }, + { "id": "corner", "fg": [ 3461, 3463, 3462, 3460 ] }, + { "id": "t_connection", "fg": [ 3471, 3473, 3472, 3470 ] }, + { "id": "edge", "fg": [ 3465, 3464 ] }, + { "id": "end_piece", "fg": [ 3467, 3469, 3468, 3466 ] }, + { "id": "unconnected", "fg": [ 3474, 3474 ] } ] }, - { "id": "f_sign", "fg": 3420 }, - { "id": "f_skin_door", "fg": 3421 }, - { "id": "f_skin_door_o", "fg": 3422 }, + { "id": "f_sign", "fg": 3475 }, + { "id": "f_skin_door", "fg": 3476 }, + { "id": "f_skin_door_o", "fg": 3477 }, { "id": "f_skin_wall", - "fg": 3439, + "fg": 3494, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3424 }, - { "id": "corner", "fg": [ 3426, 3428, 3427, 3425 ] }, - { "id": "t_connection", "fg": [ 3436, 3438, 3437, 3435 ] }, - { "id": "edge", "fg": [ 3430, 3429 ] }, - { "id": "end_piece", "fg": [ 3432, 3434, 3433, 3431 ] }, - { "id": "unconnected", "fg": 3439 } + { "id": "center", "fg": 3479 }, + { "id": "corner", "fg": [ 3481, 3483, 3482, 3480 ] }, + { "id": "t_connection", "fg": [ 3491, 3493, 3492, 3490 ] }, + { "id": "edge", "fg": [ 3485, 3484 ] }, + { "id": "end_piece", "fg": [ 3487, 3489, 3488, 3486 ] }, + { "id": "unconnected", "fg": 3494 } ] }, { "id": "f_sofa", "multitile": true, - "fg": 3455, + "fg": 3510, "additional_tiles": [ - { "id": "center", "fg": 3440 }, - { "id": "corner", "fg": [ 3442, 3444, 3443, 3441 ] }, - { "id": "t_connection", "fg": [ 3452, 3454, 3453, 3451 ] }, - { "id": "edge", "fg": [ 3446, 3445 ] }, - { "id": "end_piece", "fg": [ 3448, 3450, 3449, 3447 ] }, - { "id": "unconnected", "fg": [ 3455, 3455 ] } + { "id": "center", "fg": 3495 }, + { "id": "corner", "fg": [ 3497, 3499, 3498, 3496 ] }, + { "id": "t_connection", "fg": [ 3507, 3509, 3508, 3506 ] }, + { "id": "edge", "fg": [ 3501, 3500 ] }, + { "id": "end_piece", "fg": [ 3503, 3505, 3504, 3502 ] }, + { "id": "unconnected", "fg": [ 3510, 3510 ] } ] }, - { "id": "f_stool", "fg": 3456 }, - { "id": "f_sunflower_season_spring", "fg": 3457 }, - { "id": "f_sunflower_season_winter", "fg": 3458 }, + { "id": "f_stool", "fg": 3511 }, + { "id": "f_sunflower_season_spring", "fg": 3512 }, + { "id": "f_sunflower_season_winter", "fg": 3513 }, { "id": "f_table", "multitile": true, - "fg": 3474, + "fg": 3529, "additional_tiles": [ - { "id": "center", "fg": 3459 }, - { "id": "corner", "fg": [ 3461, 3463, 3462, 3460 ] }, - { "id": "t_connection", "fg": [ 3471, 3473, 3472, 3470 ] }, - { "id": "edge", "fg": [ 3465, 3464 ] }, - { "id": "end_piece", "fg": [ 3467, 3469, 3468, 3466 ] }, - { "id": "unconnected", "fg": [ 3474, 3474 ] } + { "id": "center", "fg": 3514 }, + { "id": "corner", "fg": [ 3516, 3518, 3517, 3515 ] }, + { "id": "t_connection", "fg": [ 3526, 3528, 3527, 3525 ] }, + { "id": "edge", "fg": [ 3520, 3519 ] }, + { "id": "end_piece", "fg": [ 3522, 3524, 3523, 3521 ] }, + { "id": "unconnected", "fg": [ 3529, 3529 ] } ] }, - { "id": "f_toilet", "fg": 3475 }, - { "id": "f_trashcan", "fg": 3476 }, - { "id": "f_wreckage", "fg": 3477 }, - { "id": "f_lilypad", "fg": 3478 }, - { "id": "f_small_satelitte_dish", "fg": 3482 }, - { "id": "f_TV_antenna", "fg": 3479 }, - { "id": "f_cellphone_booster", "fg": 3480 }, - { "id": "f_vent_pipe", "fg": 3483 }, - { "id": "f_roof_turbine_vent", "fg": 3481 }, + { "id": "f_toilet", "fg": 3530 }, + { "id": "f_trashcan", "fg": 3531 }, + { "id": "f_wreckage", "fg": 3532 }, + { "id": "f_lilypad", "fg": 3533 }, + { "id": "f_small_satelitte_dish", "fg": 3537 }, + { "id": "f_TV_antenna", "fg": 3534 }, + { "id": "f_cellphone_booster", "fg": 3535 }, + { "id": "f_vent_pipe", "fg": 3538 }, + { "id": "f_roof_turbine_vent", "fg": 3536 }, { "id": "f_sandbag_half", "multitile": true, - "fg": 3499, - "additional_tiles": [ - { "id": "center", "fg": 3484 }, - { "id": "corner", "fg": [ 3486, 3488, 3487, 3485 ] }, - { "id": "t_connection", "fg": [ 3496, 3498, 3497, 3495 ] }, - { "id": "edge", "fg": [ 3490, 3489 ] }, - { "id": "end_piece", "fg": [ 3492, 3494, 3493, 3491 ] }, - { "id": "unconnected", "fg": [ 3499, 3499 ] } - ] - }, - { "id": "1st_aid", "fg": 3500 }, - { "id": "2x4", "fg": 3501 }, - { "id": "halberd", "fg": 3522 }, - { "id": "halberd_fake", "fg": 3522 }, - { "id": "nodachi", "fg": 3530 }, - { "id": "nodachi_fake", "fg": 3530 }, - { "id": "nodachi_inferior", "fg": 3530 }, - { "id": "arming_sword", "fg": 3666 }, - { "id": "art_sphere", "fg": 3681 }, - { "id": "art_rod", "fg": 3679 }, - { "id": "art_teardrop", "fg": 3683 }, - { "id": "art_lamp", "fg": 3675 }, - { "id": "art_snake", "fg": 3680 }, - { "id": "art_disc", "fg": 3672 }, - { "id": "art_beads", "fg": 3669 }, - { "id": "art_napkin", "fg": 3676 }, - { "id": "art_urchin", "fg": 3685 }, - { "id": "art_jelly", "fg": 3673 }, - { "id": "art_spiral", "fg": 3682 }, - { "id": "art_pin", "fg": 3677 }, - { "id": "art_tube", "fg": 3684 }, - { "id": "art_pyramid", "fg": 3678 }, - { "id": "art_crystal", "fg": 3671 }, - { "id": "art_knot", "fg": 3674 }, - { "id": "art_crescent", "fg": 3670 }, - { "id": "altered_teapot", "fg": 3667 }, - { "id": "architect_cube", "fg": 3668 }, - { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 3743 }, - { "id": [ "ak47", "aksemi" ], "fg": 3693 }, - { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 3707 }, - { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 3744 }, - { "id": [ "m249", "m249_semi" ], "fg": 3752 }, - { "id": [ "m60", "m60_semi" ], "fg": 3762 }, - { "id": [ "mp40", "mp40semi" ], "fg": 3778 }, - { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 3817 }, - { "id": "fire_ax", "fg": 3833 }, - { "id": "ax", "fg": 3836 }, - { "id": "hatchet", "fg": 3834 }, - { "id": "backpack", "fg": 3837 }, - { "id": "duffelbag", "fg": 3838 }, - { "id": "molle_pack", "fg": 3839 }, - { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 3842 }, - { "id": "bag_canvas", "fg": 3845 }, - { "id": "bat", "fg": 3846 }, - { "id": "bat_metal", "fg": 3847 }, - { "id": "blanket", "fg": 3848 }, - { "id": "down_blanket", "fg": 3849 }, - { "id": "electric_blanket", "fg": 3850 }, - { "id": "board_trap", "fg": 3851 }, - { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 3852 }, - { "id": "box_large", "fg": 3863 }, - { "id": "box_medium", "fg": 3864 }, - { "id": "broom", "fg": 3865 }, - { "id": "bwirebat", "fg": 3866 }, - { "id": "cattlefodder", "fg": 3885 }, - { "id": "chainsaw_off", "fg": 3886 }, - { "id": "axe_ring", "fg": 3893 }, - { "id": "balclava", "fg": 3894 }, - { "id": "beret", "fg": 3895 }, - { "id": "boots", "fg": 3896 }, - { "id": "boxer_briefs", "fg": 3897 }, - { "id": "boxer_shorts", "fg": 3898 }, - { "id": "boy_shorts", "fg": 3899 }, - { "id": "bra", "fg": 3900 }, - { "id": "briefs", "fg": 3901 }, - { "id": "bscabbard", "fg": 3902 }, - { "id": "corset", "fg": 3905 }, - { "id": "cowboy_hat", "fg": 3906 }, - { "id": "dress_shoes", "fg": 3907 }, - { "id": "hat_ball", "fg": 3908 }, - { "id": "hat_cotton", "fg": 3909 }, - { "id": "hat_fur", "fg": 3910 }, - { "id": "hat_knit", "fg": 3912 }, - { "id": "hat_noise_cancelling", "fg": 3913 }, - { "id": "helmet_barbute", "fg": 3914 }, - { "id": "helmet_chitin", "fg": 3915 }, - { "id": "helmet_kabuto", "fg": 3916 }, - { "id": "holster", "fg": 3917 }, - { "id": "hoodie", "fg": 3918 }, - { "id": "jeans", "fg": 3921 }, - { "id": "leather_belt", "fg": 3922 }, - { "id": "longshirt", "fg": 3923 }, - { "id": "maid_dress", "fg": 3924 }, - { "id": "maid_hat", "fg": 3925 }, - { "id": "mask_dust", "fg": 3926 }, - { "id": "panties", "fg": 3927 }, - { "id": "pants", "fg": 3928 }, - { "id": "pants_cargo", "fg": 3929 }, - { "id": "polo_shirt", "fg": 3930 }, - { "id": "ragpouch", "fg": 3931 }, - { "id": "scabbard", "fg": 3932 }, - { "id": "sneakers", "fg": 3934 }, - { "id": "socks", "fg": 3935 }, - { "id": "spearsling", "fg": 3936 }, - { "id": "stockings", "fg": 3938 }, - { "id": "sweater", "fg": 3941 }, - { "id": "sweatshirt", "fg": 3942 }, - { "id": "tank_top", "fg": 3943 }, - { "id": "tool_belt", "fg": 3944 }, - { "id": "tshirt", "fg": 3945 }, - { "id": "turban", "fg": 3946 }, - { "id": "undershirt", "fg": 3947 }, - { "id": "coat_lab", "fg": 3903 }, - { "id": "coat_rain", "fg": 3904 }, - { "id": "sports_bra", "fg": 3937 }, - { "id": "skirt", "fg": 3933 }, - { "id": "jacket_light", "fg": 3920 }, - { "id": "jacket_army", "fg": 3919 }, - { "id": "hat_hard", "fg": 3911 }, - { "id": "striped_pants", "fg": 3939 }, - { "id": "striped_shirt", "fg": 3940 }, - { "id": "cloak", "fg": 3948 }, - { "id": "cloak_wool", "fg": 3951 }, - { "id": "cloak_leather", "fg": 3950 }, - { "id": "cloak_fur", "fg": 3949 }, - { "id": "coffeemaker", "fg": 3952 }, - { "id": "contacts", "fg": 3953 }, - { "id": "corpse", "fg": 3954 }, - { "id": "corpse_generic_human", "fg": 3955 }, - { "id": "crowbar", "fg": 3963 }, - { "id": "filter_air", "fg": 3964 }, - { "id": "fish_bait", "fg": 3965 }, + "fg": 3554, + "additional_tiles": [ + { "id": "center", "fg": 3539 }, + { "id": "corner", "fg": [ 3541, 3543, 3542, 3540 ] }, + { "id": "t_connection", "fg": [ 3551, 3553, 3552, 3550 ] }, + { "id": "edge", "fg": [ 3545, 3544 ] }, + { "id": "end_piece", "fg": [ 3547, 3549, 3548, 3546 ] }, + { "id": "unconnected", "fg": [ 3554, 3554 ] } + ] + }, + { "id": "1st_aid", "fg": 3555 }, + { "id": "2x4", "fg": 3556 }, + { "id": "halberd", "fg": 3577 }, + { "id": "halberd_fake", "fg": 3577 }, + { "id": "nodachi", "fg": 3585 }, + { "id": "nodachi_fake", "fg": 3585 }, + { "id": "nodachi_inferior", "fg": 3585 }, + { "id": "arming_sword", "fg": 3721 }, + { "id": "art_sphere", "fg": 3736 }, + { "id": "art_rod", "fg": 3734 }, + { "id": "art_teardrop", "fg": 3738 }, + { "id": "art_lamp", "fg": 3730 }, + { "id": "art_snake", "fg": 3735 }, + { "id": "art_disc", "fg": 3727 }, + { "id": "art_beads", "fg": 3724 }, + { "id": "art_napkin", "fg": 3731 }, + { "id": "art_urchin", "fg": 3740 }, + { "id": "art_jelly", "fg": 3728 }, + { "id": "art_spiral", "fg": 3737 }, + { "id": "art_pin", "fg": 3732 }, + { "id": "art_tube", "fg": 3739 }, + { "id": "art_pyramid", "fg": 3733 }, + { "id": "art_crystal", "fg": 3726 }, + { "id": "art_knot", "fg": 3729 }, + { "id": "art_crescent", "fg": 3725 }, + { "id": "altered_teapot", "fg": 3722 }, + { "id": "architect_cube", "fg": 3723 }, + { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 3798 }, + { "id": [ "ak47", "aksemi" ], "fg": 3748 }, + { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 3762 }, + { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 3799 }, + { "id": [ "m249", "m249_semi" ], "fg": 3807 }, + { "id": [ "m60", "m60_semi" ], "fg": 3817 }, + { "id": [ "mp40", "mp40semi" ], "fg": 3833 }, + { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 3872 }, + { "id": "fire_ax", "fg": 3888 }, + { "id": "ax", "fg": 3891 }, + { "id": "hatchet", "fg": 3889 }, + { "id": "backpack", "fg": 3892 }, + { "id": "duffelbag", "fg": 3893 }, + { "id": "molle_pack", "fg": 3894 }, + { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 3897 }, + { "id": "bag_canvas", "fg": 3900 }, + { "id": "bat", "fg": 3901 }, + { "id": "bat_metal", "fg": 3902 }, + { "id": "blanket", "fg": 3903 }, + { "id": "down_blanket", "fg": 3904 }, + { "id": "electric_blanket", "fg": 3905 }, + { "id": "board_trap", "fg": 3906 }, + { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 3907 }, + { "id": "box_large", "fg": 3918 }, + { "id": "box_medium", "fg": 3919 }, + { "id": "broom", "fg": 3920 }, + { "id": "bwirebat", "fg": 3921 }, + { "id": "cattlefodder", "fg": 3940 }, + { "id": "chainsaw_off", "fg": 3941 }, + { "id": "axe_ring", "fg": 3948 }, + { "id": "balclava", "fg": 3949 }, + { "id": "beret", "fg": 3950 }, + { "id": "boots", "fg": 3951 }, + { "id": "boxer_briefs", "fg": 3952 }, + { "id": "boxer_shorts", "fg": 3953 }, + { "id": "boy_shorts", "fg": 3954 }, + { "id": "bra", "fg": 3955 }, + { "id": "briefs", "fg": 3956 }, + { "id": "bscabbard", "fg": 3957 }, + { "id": "corset", "fg": 3960 }, + { "id": "cowboy_hat", "fg": 3961 }, + { "id": "dress_shoes", "fg": 3962 }, + { "id": "hat_ball", "fg": 3963 }, + { "id": "hat_cotton", "fg": 3964 }, + { "id": "hat_fur", "fg": 3965 }, + { "id": "hat_knit", "fg": 3967 }, + { "id": "hat_noise_cancelling", "fg": 3968 }, + { "id": "helmet_barbute", "fg": 3969 }, + { "id": "helmet_chitin", "fg": 3970 }, + { "id": "helmet_kabuto", "fg": 3971 }, + { "id": "holster", "fg": 3972 }, + { "id": "hoodie", "fg": 3973 }, + { "id": "jeans", "fg": 3976 }, + { "id": "leather_belt", "fg": 3977 }, + { "id": "longshirt", "fg": 3978 }, + { "id": "maid_dress", "fg": 3979 }, + { "id": "maid_hat", "fg": 3980 }, + { "id": "mask_dust", "fg": 3981 }, + { "id": "panties", "fg": 3982 }, + { "id": "pants", "fg": 3983 }, + { "id": "pants_cargo", "fg": 3984 }, + { "id": "polo_shirt", "fg": 3985 }, + { "id": "ragpouch", "fg": 3986 }, + { "id": "scabbard", "fg": 3987 }, + { "id": "sneakers", "fg": 3989 }, + { "id": "socks", "fg": 3990 }, + { "id": "spearsling", "fg": 3991 }, + { "id": "stockings", "fg": 3993 }, + { "id": "sweater", "fg": 3996 }, + { "id": "sweatshirt", "fg": 3997 }, + { "id": "tank_top", "fg": 3998 }, + { "id": "tool_belt", "fg": 3999 }, + { "id": "tshirt", "fg": 4000 }, + { "id": "turban", "fg": 4001 }, + { "id": "undershirt", "fg": 4002 }, + { "id": "coat_lab", "fg": 3958 }, + { "id": "coat_rain", "fg": 3959 }, + { "id": "sports_bra", "fg": 3992 }, + { "id": "skirt", "fg": 3988 }, + { "id": "jacket_light", "fg": 3975 }, + { "id": "jacket_army", "fg": 3974 }, + { "id": "hat_hard", "fg": 3966 }, + { "id": "striped_pants", "fg": 3994 }, + { "id": "striped_shirt", "fg": 3995 }, + { "id": "cloak", "fg": 4003 }, + { "id": "cloak_wool", "fg": 4006 }, + { "id": "cloak_leather", "fg": 4005 }, + { "id": "cloak_fur", "fg": 4004 }, + { "id": "coffeemaker", "fg": 4007 }, + { "id": "contacts", "fg": 4008 }, + { "id": "corpse", "fg": 4009 }, + { "id": "corpse_generic_human", "fg": 4010 }, + { "id": "crowbar", "fg": 4018 }, + { "id": "filter_air", "fg": 4019 }, + { "id": "fish_bait", "fg": 4020 }, { "id": [ "corpse_mon_fish_brook_trout", @@ -4631,336 +4685,343 @@ "corpse_mon_fish_white_sucker", "corpse_mon_fish_fallfish" ], - "fg": 3968 - }, - { "id": "fish_trap", "fg": 3970 }, - { "id": "fishing_rod_basic", "fg": 3971 }, - { "id": "fishing_rod_professional", "fg": 3972 }, - { "id": "forge", "fg": 3974 }, - { "id": "char_forge", "fg": 3973 }, - { "id": "glass_shard", "fg": 3998 }, - { "id": "hoboreel", "fg": 3999 }, - { "id": "hydrogen_tank", "fg": 4000 }, - { "id": "leather_tarp", "fg": 4001 }, - { "id": "water", "fg": 4012 }, - { "id": "water_clean", "fg": 4013 }, - { "id": "gasoline", "fg": 4007 }, - { "id": "diesel", "fg": 4005 }, - { "id": "biodiesel", "fg": 4003 }, - { "id": "flamethrower_fuel", "fg": 4006 }, - { "id": "avgas", "fg": 4002 }, - { "id": "lamp_oil", "fg": 4009 }, - { "id": "motor_oil", "fg": 4010 }, - { "id": "napalm", "fg": 4011 }, - { "id": "gelled_gasoline", "fg": 4008 }, - { "id": "blood", "fg": 4004 }, - { "id": "log", "fg": 4014 }, - { "id": "lucern_hammer", "fg": 4015 }, - { "id": "marble", "fg": 4017 }, - { "id": "microwave", "fg": 4018 }, - { "id": "mjolnir", "fg": 4019 }, - { "id": "mop", "fg": 4020 }, - { "id": "mp5mag", "fg": 4021 }, - { "id": "nail", "fg": 4029 }, - { "id": "nailbat", "fg": 4030 }, - { "id": "nailboard", "fg": 4031 }, - { "id": "needle_bone", "fg": 4032 }, - { "id": "needle_curved", "fg": 4033 }, - { "id": "needle_wood", "fg": 4034 }, - { "id": "many_years_old_newspaper", "fg": 4035 }, - { "id": "years_old_newspaper", "fg": 4040 }, - { "id": "months_old_newspaper", "fg": 4036 }, - { "id": "newest_newspaper", "fg": 4037 }, - { "id": "one_year_old_newspaper", "fg": 4038 }, - { "id": "weeks_old_newspaper", "fg": 4039 }, - { "id": "2h_flail_wood", "fg": 4041 }, - { "id": "pillow", "fg": 4043 }, - { "id": "down_pillow", "fg": 4042 }, - { "id": "pine_bough", "fg": 4044 }, - { "id": "pinecone", "fg": 4045 }, + "fg": 4023 + }, + { "id": "fish_trap", "fg": 4025 }, + { "id": "fishing_rod_basic", "fg": 4026 }, + { "id": "fishing_rod_professional", "fg": 4027 }, + { "id": "forge", "fg": 4029 }, + { "id": "char_forge", "fg": 4028 }, + { "id": "glass_shard", "fg": 4053 }, + { "id": "hoboreel", "fg": 4054 }, + { "id": "hydrogen_tank", "fg": 4055 }, + { "id": "leather_tarp", "fg": 4056 }, + { "id": "water", "fg": 4067 }, + { "id": "water_clean", "fg": 4068 }, + { "id": "gasoline", "fg": 4062 }, + { "id": "diesel", "fg": 4060 }, + { "id": "biodiesel", "fg": 4058 }, + { "id": "flamethrower_fuel", "fg": 4061 }, + { "id": "avgas", "fg": 4057 }, + { "id": "lamp_oil", "fg": 4064 }, + { "id": "motor_oil", "fg": 4065 }, + { "id": "napalm", "fg": 4066 }, + { "id": "gelled_gasoline", "fg": 4063 }, + { "id": "blood", "fg": 4059 }, + { "id": "log", "fg": 4069 }, + { "id": "lucern_hammer", "fg": 4070 }, + { "id": "marble", "fg": 4072 }, + { "id": "microwave", "fg": 4073 }, + { "id": "mjolnir", "fg": 4074 }, + { "id": "mop", "fg": 4075 }, + { "id": "mp5mag", "fg": 4076 }, + { "id": "nail", "fg": 4084 }, + { "id": "nailbat", "fg": 4085 }, + { "id": "nailboard", "fg": 4086 }, + { "id": "needle_bone", "fg": 4087 }, + { "id": "needle_curved", "fg": 4088 }, + { "id": "needle_wood", "fg": 4089 }, + { "id": "many_years_old_newspaper", "fg": 4090 }, + { "id": "years_old_newspaper", "fg": 4095 }, + { "id": "months_old_newspaper", "fg": 4091 }, + { "id": "newest_newspaper", "fg": 4092 }, + { "id": "one_year_old_newspaper", "fg": 4093 }, + { "id": "weeks_old_newspaper", "fg": 4094 }, + { "id": "2h_flail_wood", "fg": 4096 }, + { "id": "pillow", "fg": 4098 }, + { "id": "down_pillow", "fg": 4097 }, + { "id": "pine_bough", "fg": 4099 }, + { "id": "pinecone", "fg": 4100 }, { "id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ], - "fg": 4046 - }, - { "id": "plastic_sheet", "fg": 4048 }, - { "id": "plastic_shopping_bag", "fg": 4049 }, - { "id": "pneumatic_shotgun", "fg": 4050 }, - { "id": "pool_ball", "fg": 4051 }, - { "id": "powder_candy", "fg": 4053 }, - { "id": "rag", "fg": 4054 }, - { "id": "rebar", "fg": 4055 }, - { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 4056 }, - { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 4057 }, - { "id": "scissors", "fg": 4058 }, - { "id": "screwdriver", "fg": 4059 }, - { "id": "sewing_kit", "fg": 4060 }, - { "id": "sharp_rock", "fg": 4061 }, - { "id": "sheet_metal", "fg": 4062 }, - { "id": "sheet_metal_small", "fg": 4063 }, - { "id": "shovel", "fg": 4064 }, - { "id": "slingshot", "fg": 4065 }, - { "id": "solar_panel", "fg": 4067 }, - { "id": "solar_cell", "fg": 4066 }, - { "id": "pointy_stick", "fg": 4068 }, - { "id": "spear_wood", "fg": 4076 }, - { "id": "spear_spike", "fg": 4074 }, - { "id": "spear_knife", "fg": 4070 }, - { "id": "spear_knife_superior", "fg": 4071 }, - { "id": "spear_pipe", "fg": 4072 }, - { "id": "spear_rebar", "fg": 4073 }, - { "id": "spear_steel", "fg": 4075 }, - { "id": "spear_copper", "fg": 4069 }, - { "id": "splinter", "fg": 4077 }, - { "id": "sponge", "fg": 4078 }, - { "id": "spoon", "fg": 4079 }, - { "id": "stick", "fg": 4080 }, - { "id": "stick_long", "fg": 4081 }, - { "id": "primitive_hammer", "fg": 4082 }, - { "id": "string_36", "fg": 4083 }, - { "id": "string_6", "fg": 4084 }, - { "id": "tailors_kit", "fg": 4086 }, - { "id": "tarp", "fg": 4087 }, - { "id": "television", "fg": 4088 }, - { "id": "thermos", "fg": 4089 }, - { "id": "thread", "fg": 4090 }, - { "id": "2h_flail_steel", "fg": 4095 }, - { "id": "welder", "fg": 4096 }, - { "id": "welder_crude", "fg": 4097 }, - { "id": "wood_panel", "fg": 4098 }, - { "id": "wood_sheet", "fg": 4099 }, - { "id": "corpse_mon_troll", "fg": 4100 }, - { "id": "mon_bluejay", "fg": 4105, "bg": 1325 }, - { "id": "mon_bluejay_chick", "fg": 4106, "bg": 1325 }, - { "id": "mon_cardinal", "fg": 4107, "bg": 1325 }, - { "id": "mon_cardinal_chick", "fg": 4108, "bg": 1325 }, - { "id": "mon_chicken_chick", "fg": 4111, "bg": 1325 }, - { "id": "mon_crow_chick", "fg": 4113, "bg": 1325 }, - { "id": "mon_duck_chick", "fg": 4115, "bg": 1325 }, - { "id": "mon_goose_canadian_chick", "fg": 4116, "bg": 1325 }, - { "id": "mon_grouse_chick", "fg": 4117, "bg": 1325 }, - { "id": "mon_pheasant_chick", "fg": 4118, "bg": 1325 }, - { "id": "mon_raven", "fg": 4119, "bg": 1325 }, - { "id": "mon_raven_chick", "fg": 4120, "bg": 1325 }, - { "id": "mon_robin", "fg": 4121, "bg": 1325 }, - { "id": "mon_robin_chick", "fg": 4122, "bg": 1325 }, - { "id": "mon_sparrow", "fg": 4123, "bg": 1325 }, - { "id": "mon_sparrow_chick", "fg": 4124, "bg": 1325 }, - { "id": "mon_turkey_chick", "fg": 4126, "bg": 1325 }, - { "id": "mon_crow_mutant_small", "fg": 4127, "bg": 1324 }, + "fg": 4101 + }, + { "id": "plastic_sheet", "fg": 4103 }, + { "id": "plastic_shopping_bag", "fg": 4104 }, + { "id": "pneumatic_shotgun", "fg": 4105 }, + { "id": "pool_ball", "fg": 4106 }, + { "id": "powder_candy", "fg": 4108 }, + { "id": "rag", "fg": 4109 }, + { "id": "rebar", "fg": 4110 }, + { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 4111 }, + { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 4112 }, + { "id": "scissors", "fg": 4113 }, + { "id": "screwdriver", "fg": 4114 }, + { "id": "sewing_kit", "fg": 4115 }, + { "id": "sharp_rock", "fg": 4116 }, + { "id": "sheet_metal", "fg": 4117 }, + { "id": "sheet_metal_small", "fg": 4118 }, + { "id": "shovel", "fg": 4119 }, + { "id": "slingshot", "fg": 4120 }, + { "id": "solar_panel", "fg": 4122 }, + { "id": "solar_cell", "fg": 4121 }, + { "id": "pointy_stick", "fg": 4123 }, + { "id": "spear_wood", "fg": 4131 }, + { "id": "spear_spike", "fg": 4129 }, + { "id": "spear_knife", "fg": 4125 }, + { "id": "spear_knife_superior", "fg": 4126 }, + { "id": "spear_pipe", "fg": 4127 }, + { "id": "spear_rebar", "fg": 4128 }, + { "id": "spear_steel", "fg": 4130 }, + { "id": "spear_copper", "fg": 4124 }, + { "id": "splinter", "fg": 4132 }, + { "id": "sponge", "fg": 4133 }, + { "id": "spoon", "fg": 4134 }, + { "id": "stick", "fg": 4135 }, + { "id": "stick_long", "fg": 4136 }, + { "id": "primitive_hammer", "fg": 4137 }, + { "id": "string_36", "fg": 4138 }, + { "id": "string_6", "fg": 4139 }, + { "id": "tailors_kit", "fg": 4141 }, + { "id": "tarp", "fg": 4142 }, + { "id": "television", "fg": 4143 }, + { "id": "thermos", "fg": 4144 }, + { "id": "thread", "fg": 4145 }, + { "id": "2h_flail_steel", "fg": 4150 }, + { "id": "welder", "fg": 4151 }, + { "id": "welder_crude", "fg": 4152 }, + { "id": "wood_panel", "fg": 4153 }, + { "id": "wood_sheet", "fg": 4154 }, + { "id": "corpse_mon_troll", "fg": 4155 }, + { "id": "mon_bluejay", "fg": 4160, "bg": 1324 }, + { "id": "mon_bluejay_chick", "fg": 4161, "bg": 1324 }, + { "id": "mon_cardinal", "fg": 4162, "bg": 1324 }, + { "id": "mon_cardinal_chick", "fg": 4163, "bg": 1324 }, + { "id": "mon_chicken_chick", "fg": 4166, "bg": 1324 }, + { "id": "mon_crow_chick", "fg": 4168, "bg": 1324 }, + { "id": "mon_crow_mutant", "fg": 4169, "bg": 1323 }, + { "id": "mon_duck_chick", "fg": 4171, "bg": 1324 }, + { "id": "mon_goose_canadian_chick", "fg": 4172, "bg": 1324 }, + { "id": "mon_grouse_chick", "fg": 4173, "bg": 1324 }, + { "id": "mon_pheasant_chick", "fg": 4174, "bg": 1324 }, + { "id": "mon_raven", "fg": 4175, "bg": 1324 }, + { "id": "mon_raven_chick", "fg": 4176, "bg": 1324 }, + { "id": "mon_robin", "fg": 4177, "bg": 1324 }, + { "id": "mon_robin_chick", "fg": 4178, "bg": 1324 }, + { "id": "mon_sparrow", "fg": 4179, "bg": 1324 }, + { "id": "mon_sparrow_chick", "fg": 4180, "bg": 1324 }, + { "id": "mon_turkey_chick", "fg": 4182, "bg": 1324 }, + { "id": "mon_crow_mutant_small", "fg": 4183, "bg": 1323 }, { "id": "mon_cat_bengal", - "fg": [ { "weight": 1, "sprite": 4133 }, { "weight": 1, "sprite": 4132 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4189 }, { "weight": 1, "sprite": 4188 } ], + "bg": 1324 }, { "id": "mon_cat_calico", - "fg": [ { "weight": 1, "sprite": 4136 }, { "weight": 1, "sprite": 4135 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4192 }, { "weight": 1, "sprite": 4191 } ], + "bg": 1324 }, { "id": "mon_cat_chonker", - "fg": [ { "weight": 1, "sprite": 4139 }, { "weight": 1, "sprite": 4138 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4195 }, { "weight": 1, "sprite": 4194 } ], + "bg": 1324 }, { "id": "mon_cat_devon_rex", - "fg": [ { "weight": 1, "sprite": 4142 }, { "weight": 1, "sprite": 4141 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4198 }, { "weight": 1, "sprite": 4197 } ], + "bg": 1324 }, { "id": "mon_cat_longhair", - "fg": [ { "weight": 1, "sprite": 4145 }, { "weight": 1, "sprite": 4144 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4201 }, { "weight": 1, "sprite": 4200 } ], + "bg": 1324 }, { "id": "mon_cat_maine_coon", - "fg": [ { "weight": 1, "sprite": 4148 }, { "weight": 1, "sprite": 4147 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4204 }, { "weight": 1, "sprite": 4203 } ], + "bg": 1324 }, { "id": "mon_cat_persian", - "fg": [ { "weight": 1, "sprite": 4151 }, { "weight": 1, "sprite": 4150 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4207 }, { "weight": 1, "sprite": 4206 } ], + "bg": 1324 }, { "id": "mon_cat_siamese", - "fg": [ { "weight": 1, "sprite": 4157 }, { "weight": 1, "sprite": 4156 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4213 }, { "weight": 1, "sprite": 4212 } ], + "bg": 1324 }, { "id": "mon_cat_sphynx", - "fg": [ { "weight": 1, "sprite": 4160 }, { "weight": 1, "sprite": 4159 } ], - "bg": 1325 + "fg": [ { "weight": 1, "sprite": 4216 }, { "weight": 1, "sprite": 4215 } ], + "bg": 1324 }, { "id": "mon_cat_tabby", - "fg": [ { "weight": 1, "sprite": 4163 }, { "weight": 1, "sprite": 4162 } ], - "bg": 1325 - }, - { "id": "mon_cat_kitten", "fg": 4152, "bg": 1325 }, - { "id": "mon_cat_bengal_kitten", "fg": 4131, "bg": 1325 }, - { "id": "mon_cat_calico_kitten", "fg": 4134, "bg": 1325 }, - { "id": "mon_cat_chonker_kitten", "fg": 4137, "bg": 1325 }, - { "id": "mon_cat_devon_rex_kitten", "fg": 4140, "bg": 1325 }, - { "id": "mon_cat_longhair_kitten", "fg": 4143, "bg": 1325 }, - { "id": "mon_cat_maine_coon_kitten", "fg": 4146, "bg": 1325 }, - { "id": "mon_cat_persian_kitten", "fg": 4149, "bg": 1325 }, - { "id": "mon_cat_siamese_kitten", "fg": 4155, "bg": 1325 }, - { "id": "mon_cat_sphynx_kitten", "fg": 4158, "bg": 1325 }, - { "id": "mon_cat_tabby_kitten", "fg": 4161, "bg": 1325 }, - { "id": "mon_dog_beagle", "fg": 4170, "bg": 1325 }, - { "id": "mon_dog_gshepherd", "fg": 4181, "bg": 1324 }, - { "id": "mon_dog_boxer", "fg": 4172, "bg": 1324 }, - { "id": "mon_dog_dachshund", "fg": 4177, "bg": 1324 }, - { "id": "mon_dog_auscattle", "fg": 4166, "bg": 1324 }, - { "id": "mon_dog_bcollie", "fg": 4168, "bg": 1324 }, - { "id": "mon_dog_chihuahua", "fg": 4175, "bg": 1325 }, - { "id": "mon_dog_gpyrenees", "fg": 4179, "bg": 1324 }, - { "id": "mon_dog_pitbullmix", "fg": 4183, "bg": 1324 }, - { "id": "mon_dog_samoyed", "fg": 4187, "bg": 1324 }, - { "id": "mon_dog_auscattle_pup", "fg": 4167, "bg": 1325 }, - { "id": "mon_dog_bcollie_pup", "fg": 4169, "bg": 1325 }, - { "id": "mon_dog_beagle_pup", "fg": 4171, "bg": 1325 }, - { "id": "mon_dog_boxer_pup", "fg": 4173, "bg": 1325 }, - { "id": "mon_dog_bull_pup", "fg": 4174, "bg": 1325 }, - { "id": "mon_dog_chihuahua_pup", "fg": 4176, "bg": 1325 }, - { "id": "mon_dog_dachshund_pup", "fg": 4178, "bg": 1325 }, - { "id": "mon_dog_gpyrenees_pup", "fg": 4180, "bg": 1325 }, - { "id": "mon_dog_gshepherd_pup", "fg": 4182, "bg": 1325 }, - { "id": "mon_dog_pitbullmix_pup", "fg": 4184, "bg": 1325 }, - { "id": "mon_dog_pup", "fg": 4185, "bg": 1325 }, - { "id": "mon_dog_rottweiler_pup", "fg": 4186, "bg": 1325 }, - { "id": "mon_dog_samoyed_pup", "fg": 4188, "bg": 1325 }, - { "id": "mon_fish_tiny", "fg": 4195 }, - { "id": "mon_fish_small", "fg": 4194 }, - { "id": "mon_fish_medium", "fg": 4193 }, - { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 4192 }, - { "id": "mon_cockatrice_chick", "fg": 4199, "bg": 1325 }, - { "id": "mon_cockatrice", "fg": 4198, "bg": 1325 }, - { "id": "mon_opossum", "fg": 4217, "bg": 1325 }, - { "id": "mon_locust", "fg": 4224, "bg": 1324 }, - { "id": "mon_locust_nymph", "fg": 4225, "bg": 1325 }, - { "id": "corpse_mon_ant", "fg": 4227 }, - { "id": "corpse_mon_ant_acid", "fg": 4228 }, - { "id": "corpse_mon_ant_larva", "fg": 4230 }, - { "id": "corpse_mon_ant_acid_larva", "fg": 4229 }, - { "id": "mon_plague_nymph", "fg": 4240, "bg": 1325 }, - { "id": "mon_plague_vector", "fg": 4241, "bg": 1324 }, - { "id": "mon_skittering_plague", "fg": 4243, "bg": 1324 }, - { - "id": "mon_aphid_small", - "fg": [ { "weight": 1, "sprite": 4247 }, { "weight": 1, "sprite": 4248 }, { "weight": 1, "sprite": 4249 } ], - "bg": 1325 - }, - { "id": "mon_deer_fawn", "fg": 4254, "bg": 1324 }, - { "id": "mon_grasshopper_small", "fg": 4262, "bg": 1325 }, - { "id": "mon_hallu_multicooker", "fg": 4264, "bg": 1324 }, - { "id": "mon_hazmatbot", "fg": 4265, "bg": 1324 }, + "fg": [ { "weight": 1, "sprite": 4219 }, { "weight": 1, "sprite": 4218 } ], + "bg": 1324 + }, + { "id": "mon_cat_kitten", "fg": 4208, "bg": 1324 }, + { "id": "mon_cat_bengal_kitten", "fg": 4187, "bg": 1324 }, + { "id": "mon_cat_calico_kitten", "fg": 4190, "bg": 1324 }, + { "id": "mon_cat_chonker_kitten", "fg": 4193, "bg": 1324 }, + { "id": "mon_cat_devon_rex_kitten", "fg": 4196, "bg": 1324 }, + { "id": "mon_cat_longhair_kitten", "fg": 4199, "bg": 1324 }, + { "id": "mon_cat_maine_coon_kitten", "fg": 4202, "bg": 1324 }, + { "id": "mon_cat_persian_kitten", "fg": 4205, "bg": 1324 }, + { "id": "mon_cat_siamese_kitten", "fg": 4211, "bg": 1324 }, + { "id": "mon_cat_sphynx_kitten", "fg": 4214, "bg": 1324 }, + { "id": "mon_cat_tabby_kitten", "fg": 4217, "bg": 1324 }, + { "id": "mon_dog_beagle", "fg": 4226, "bg": 1324 }, + { "id": "mon_dog_gshepherd", "fg": 4237, "bg": 1323 }, + { "id": "mon_dog_boxer", "fg": 4228, "bg": 1323 }, + { "id": "mon_dog_dachshund", "fg": 4233, "bg": 1323 }, + { "id": "mon_dog_auscattle", "fg": 4222, "bg": 1323 }, + { "id": "mon_dog_bcollie", "fg": 4224, "bg": 1323 }, + { "id": "mon_dog_chihuahua", "fg": 4231, "bg": 1324 }, + { "id": "mon_dog_gpyrenees", "fg": 4235, "bg": 1323 }, + { "id": "mon_dog_pitbullmix", "fg": 4240, "bg": 1323 }, + { "id": "mon_dog_samoyed", "fg": 4244, "bg": 1323 }, + { "id": "mon_dog_mutant_mongrel", "fg": 4239, "bg": 1323 }, + { "id": "mon_dog_auscattle_pup", "fg": 4223, "bg": 1324 }, + { "id": "mon_dog_bcollie_pup", "fg": 4225, "bg": 1324 }, + { "id": "mon_dog_beagle_pup", "fg": 4227, "bg": 1324 }, + { "id": "mon_dog_boxer_pup", "fg": 4229, "bg": 1324 }, + { "id": "mon_dog_bull_pup", "fg": 4230, "bg": 1324 }, + { "id": "mon_dog_chihuahua_pup", "fg": 4232, "bg": 1324 }, + { "id": "mon_dog_dachshund_pup", "fg": 4234, "bg": 1324 }, + { "id": "mon_dog_gpyrenees_pup", "fg": 4236, "bg": 1324 }, + { "id": "mon_dog_gshepherd_pup", "fg": 4238, "bg": 1324 }, + { "id": "mon_dog_pitbullmix_pup", "fg": 4241, "bg": 1324 }, + { "id": "mon_dog_pup", "fg": 4242, "bg": 1324 }, + { "id": "mon_dog_rottweiler_pup", "fg": 4243, "bg": 1324 }, + { "id": "mon_dog_samoyed_pup", "fg": 4245, "bg": 1324 }, + { "id": "mon_fish_tiny", "fg": 4252 }, + { "id": "mon_fish_small", "fg": 4251 }, + { "id": "mon_fish_medium", "fg": 4250 }, + { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 4249 }, + { "id": "mon_cockatrice_chick", "fg": 4257, "bg": 1324 }, + { "id": "mon_cockatrice", "fg": 4256, "bg": 1324 }, + { "id": "mon_opossum", "fg": 4275, "bg": 1324 }, + { "id": "mon_locust", "fg": 4282, "bg": 1323 }, + { "id": "mon_locust_nymph", "fg": 4283, "bg": 1324 }, + { "id": "mon_locust_small", "fg": 4284, "bg": 1324 }, + { "id": "mon_mosquito_small", "fg": 4285, "bg": 1324 }, + { "id": "corpse_mon_ant", "fg": 4286 }, + { "id": "corpse_mon_ant_acid", "fg": 4287 }, + { "id": "corpse_mon_ant_larva", "fg": 4289 }, + { "id": "corpse_mon_ant_acid_larva", "fg": 4288 }, + { "id": "mon_ant_small", "fg": 4296, "bg": 1324 }, + { "id": "mon_ant_acid_small", "fg": 4293, "bg": 1324 }, + { "id": "mon_plague_nymph", "fg": 4301, "bg": 1324 }, + { "id": "mon_plague_vector", "fg": 4302, "bg": 1323 }, + { "id": "mon_skittering_plague", "fg": 4304, "bg": 1323 }, + { "id": "mon_cat_mutant_kitten_prism", "fg": 4313, "bg": 1324 }, + { "id": "mon_cat_mutant_prism", "fg": 4314, "bg": 1324 }, + { "id": "mon_coyote_mutant_shark", "fg": 4315, "bg": 1323 }, + { "id": "mon_crayfish_small", "fg": 4316, "bg": 1323 }, + { "id": "mon_deer_fawn", "fg": 4318, "bg": 1323 }, + { "id": "mon_deer_mutant_spider_fawn", "fg": 4319, "bg": 1323 }, + { "id": "mon_grasshopper_small", "fg": 4327, "bg": 1324 }, + { "id": "mon_hallu_multicooker", "fg": 4329, "bg": 1323 }, + { "id": "mon_hazmatbot", "fg": 4330, "bg": 1323 }, { "id": [ "mon_hound_tindalos", "mon_hound_tindalos_afterimage" ], "fg": [ - { "weight": 1, "sprite": 4266 }, - { "weight": 1, "sprite": 4267 }, - { "weight": 1, "sprite": 4268 }, - { "weight": 1, "sprite": 4269 }, - { "weight": 1, "sprite": 4270 }, - { "weight": 1, "sprite": 4271 }, - { "weight": 1, "sprite": 4272 }, - { "weight": 1, "sprite": 4273 }, - { "weight": 1, "sprite": 4274 } + { "weight": 1, "sprite": 4331 }, + { "weight": 1, "sprite": 4332 }, + { "weight": 1, "sprite": 4333 }, + { "weight": 1, "sprite": 4334 }, + { "weight": 1, "sprite": 4335 }, + { "weight": 1, "sprite": 4336 }, + { "weight": 1, "sprite": 4337 }, + { "weight": 1, "sprite": 4338 }, + { "weight": 1, "sprite": 4339 } ] }, { "id": "mon_lab_security_drone_BM", "animated": true, "fg": [ - { "weight": 10, "sprite": 4278 }, - { "weight": 10, "sprite": 4279 }, - { "weight": 10, "sprite": 4280 }, - { "weight": 10, "sprite": 4279 } + { "weight": 10, "sprite": 4343 }, + { "weight": 10, "sprite": 4344 }, + { "weight": 10, "sprite": 4345 }, + { "weight": 10, "sprite": 4344 } ] }, { "id": "mon_lab_security_drone_BM2", "animated": true, "fg": [ - { "weight": 10, "sprite": 4275 }, - { "weight": 10, "sprite": 4276 }, - { "weight": 10, "sprite": 4277 }, - { "weight": 10, "sprite": 4276 } + { "weight": 10, "sprite": 4340 }, + { "weight": 10, "sprite": 4341 }, + { "weight": 10, "sprite": 4342 }, + { "weight": 10, "sprite": 4341 } ] }, { "id": "mon_lab_security_drone_BS", "animated": true, "fg": [ - { "weight": 10, "sprite": 4281 }, - { "weight": 10, "sprite": 4282 }, - { "weight": 10, "sprite": 4283 }, - { "weight": 10, "sprite": 4282 } + { "weight": 10, "sprite": 4346 }, + { "weight": 10, "sprite": 4347 }, + { "weight": 10, "sprite": 4348 }, + { "weight": 10, "sprite": 4347 } ] }, { "id": "mon_lab_security_drone_GM", "animated": true, "fg": [ - { "weight": 10, "sprite": 4284 }, - { "weight": 10, "sprite": 4285 }, - { "weight": 10, "sprite": 4286 }, - { "weight": 10, "sprite": 4285 } + { "weight": 10, "sprite": 4349 }, + { "weight": 10, "sprite": 4350 }, + { "weight": 10, "sprite": 4351 }, + { "weight": 10, "sprite": 4350 } ] }, { "id": "mon_lab_security_drone_GR", "animated": true, "fg": [ - { "weight": 10, "sprite": 4287 }, - { "weight": 10, "sprite": 4288 }, - { "weight": 10, "sprite": 4289 }, - { "weight": 10, "sprite": 4288 } + { "weight": 10, "sprite": 4352 }, + { "weight": 10, "sprite": 4353 }, + { "weight": 10, "sprite": 4354 }, + { "weight": 10, "sprite": 4353 } ] }, { "id": "mon_lab_security_drone_YM", "animated": true, "fg": [ - { "weight": 10, "sprite": 4290 }, - { "weight": 10, "sprite": 4291 }, - { "weight": 10, "sprite": 4292 }, - { "weight": 10, "sprite": 4291 } - ] - }, - { "id": "mon_reindeer_fawn", "fg": 4297, "bg": 1324 }, - { "id": "mon_sheep_lamb", "fg": 4299, "bg": 1324 }, - { "id": "mon_spawn_raptor", "fg": 4300, "bg": 1324 }, - { "id": "mon_zombie_dog_acidic", "fg": 4309, "bg": 1324 }, - { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 4311, "bg": 1324 }, - { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 4312, "bg": 1324 }, - { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 4313, "bg": 1324 }, - { "id": "corpse_mon_zombie_rot", "fg": 4314 }, - { "id": "mon_spider_cellar_small", "fg": 4319, "bg": 1325 }, - { "id": "mon_spider_trapdoor_small", "fg": 4321, "bg": 1325 }, - { "id": "mon_spider_web_small", "fg": 4323, "bg": 1325 }, - { "id": "mon_zpider_mass", "fg": 4327, "bg": 1325 }, - { "id": "lighting_lowlight_dark", "fg": 4346 }, - { "id": "lighting_boomered_dark", "fg": 4341 }, + { "weight": 10, "sprite": 4355 }, + { "weight": 10, "sprite": 4356 }, + { "weight": 10, "sprite": 4357 }, + { "weight": 10, "sprite": 4356 } + ] + }, + { "id": "mon_large_cockroach", "fg": 4358, "bg": 1323 }, + { "id": "mon_reindeer_fawn", "fg": 4363, "bg": 1323 }, + { "id": "mon_sheep_lamb", "fg": 4365, "bg": 1323 }, + { "id": "mon_slug_small", "fg": 4366, "bg": 1323 }, + { "id": "mon_wolf_skeleton", "fg": 4373, "bg": 1323 }, + { "id": "mon_worm_small", "fg": 4375, "bg": 1324 }, + { "id": "mon_zombie_dog_acidic", "fg": 4378, "bg": 1323 }, + { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 4380, "bg": 1323 }, + { "id": "corpse_mon_zombie_rot", "fg": 4381 }, + { "id": "mon_spider_cellar_small", "fg": 4386, "bg": 1324 }, + { "id": "mon_spider_trapdoor_small", "fg": 4388, "bg": 1324 }, + { "id": "mon_spider_web_small", "fg": 4390, "bg": 1324 }, + { "id": "mon_zpider_mass", "fg": 4394, "bg": 1324 }, + { "id": "lighting_lowlight_dark", "fg": 4411 }, + { "id": "lighting_boomered_dark", "fg": 4406 }, { "id": "lighting_hidden", "fg": [ - { "weight": 100, "sprite": 4342 }, - { "weight": 100, "sprite": 4343 }, - { "weight": 100, "sprite": 4344 }, - { "weight": 100, "sprite": 4345 } + { "weight": 100, "sprite": 4407 }, + { "weight": 100, "sprite": 4408 }, + { "weight": 100, "sprite": 4409 }, + { "weight": 100, "sprite": 4410 } ] }, - { "id": "animation_hit", "fg": 4364 }, - { "id": "cursor", "fg": 4366 }, - { "id": "highlight", "fg": 4368 }, - { "id": "highlight_item", "fg": 4369 }, - { "id": "line_target", "fg": 4367 }, - { "id": "line_trail", "fg": 4370 }, - { "id": "animation_line", "fg": 4365 }, - { "id": "generic_city_building", "fg": 4390, "bg": 4387 }, + { "id": "animation_hit", "fg": 4429 }, + { "id": "cursor", "fg": 4431 }, + { "id": "highlight", "fg": 4433 }, + { "id": "highlight_item", "fg": 4434 }, + { "id": "line_target", "fg": 4432 }, + { "id": "line_trail", "fg": 4435 }, + { "id": "animation_line", "fg": 4430 }, + { "id": "generic_city_building", "fg": 4455, "bg": 4452 }, { "id": [ "abstorefront_1", @@ -4989,25 +5050,25 @@ "s_sports", "veterinarian" ], - "fg": 4390, - "bg": 4387 + "fg": 4455, + "bg": 4452 }, - { "id": "forest_water", "fg": 4395 }, - { "id": [ "forest", "special_forest" ], "fg": 4388, "bg": 4387 }, - { "id": [ "field", "special_field" ], "fg": 4387 }, - { "id": "open_air", "fg": 4389 }, + { "id": "forest_water", "fg": 4460 }, + { "id": [ "forest", "special_forest" ], "fg": 4453, "bg": 4452 }, + { "id": [ "field", "special_field" ], "fg": 4452 }, + { "id": "open_air", "fg": 4454 }, { "id": "railroad", - "fg": 5496, - "bg": 5473, + "fg": 5577, + "bg": 5554, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 5473, "fg": 5490 }, - { "id": "corner", "bg": 5473, "fg": [ 5492, 5494, 5493, 5491 ] }, - { "id": "t_connection", "bg": 5473, "fg": [ 5498, 5500, 5499, 5497 ] }, - { "id": "edge", "bg": 5473, "fg": [ 5496, 5495 ] }, - { "id": "end_piece", "bg": 5473, "fg": [ 5496, 5495, 5496, 5495 ] }, - { "id": "unconnected", "bg": 5473, "fg": [ 5496, 5495 ] } + { "id": "center", "bg": 5554, "fg": 5571 }, + { "id": "corner", "bg": 5554, "fg": [ 5573, 5575, 5574, 5572 ] }, + { "id": "t_connection", "bg": 5554, "fg": [ 5579, 5581, 5580, 5578 ] }, + { "id": "edge", "bg": 5554, "fg": [ 5577, 5576 ] }, + { "id": "end_piece", "bg": 5554, "fg": [ 5577, 5576, 5577, 5576 ] }, + { "id": "unconnected", "bg": 5554, "fg": [ 5577, 5576 ] } ] }, { @@ -5230,19 +5291,19 @@ "urban_13_11", "urban_13_12" ], - "fg": [ 4392, 4391, 4393, 4394 ], - "bg": 4387, + "fg": [ 4457, 4456, 4458, 4459 ], + "bg": 4452, "rotates": true }, - { "id": "anthill", "fg": 4397, "bg": 4387, "rotates": false }, - { "id": "acid_anthill", "fg": 4396, "bg": 4387, "rotates": false }, + { "id": "anthill", "fg": 4462, "bg": 4452, "rotates": false }, + { "id": "acid_anthill", "fg": 4461, "bg": 4452, "rotates": false }, { "id": [ "2farm_3", "farm_3", "farm_isherwood_3", "farm_dairy_twd_6", "farm_dairy_twd_12", "ranch_camp_66", "dairy_farm_SE" ], - "fg": [ 4399, 4398, 4399, 4398 ], - "bg": 4387, + "fg": [ 4464, 4463, 4464, 4463 ], + "bg": 4452, "rotates": true }, - { "id": [ "desolatebarn", "barn_aban1" ], "fg": 4400, "bg": 4387 }, + { "id": [ "desolatebarn", "barn_aban1" ], "fg": 4465, "bg": 4452 }, { "id": [ "2farm_loft_3", @@ -5255,8 +5316,8 @@ "ranch_camp_66_roof", "dairy_farm_SE_roof" ], - "fg": [ 4399, 4398, 4399, 4398 ], - "bg": 4389, + "fg": [ 4464, 4463, 4464, 4463 ], + "bg": 4454, "rotates": true }, { @@ -5278,8 +5339,8 @@ "cabin_strange_b", "riverside_dwelling" ], - "fg": [ 4402, 4401, 4403, 4404 ], - "bg": 4387, + "fg": [ 4467, 4466, 4468, 4469 ], + "bg": 4452, "rotates": true }, { @@ -5297,8 +5358,8 @@ "cabin_lake_roof", "lake_cabin_boathouse_roof" ], - "fg": [ 4402, 4401, 4403, 4404 ], - "bg": 4389, + "fg": [ 4467, 4466, 4468, 4469 ], + "bg": 4454, "rotates": true }, { @@ -5314,12 +5375,12 @@ "ws_survivor_camp", "homelesscamp" ], - "fg": 4405, - "bg": 4387 + "fg": 4470, + "bg": 4452 }, - { "id": "cave", "fg": 4406, "bg": 4387 }, - { "id": "cave_underground", "fg": 4406 }, - { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 4408, "rotates": false }, + { "id": "cave", "fg": 4471, "bg": 4452 }, + { "id": "cave_underground", "fg": 4471 }, + { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 4473, "rotates": false }, { "id": [ "airliner_1a", @@ -5352,26 +5413,26 @@ "airliner_2j", "airliner_3j" ], - "fg": 4409 + "fg": 4474 }, - { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 4389 }, - { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 4416, 4415 ], "rotates": true }, - { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 4422, 4421, 4423, 4424 ], "rotates": true }, - { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 4411, 4413, 4414, 4412 ], "rotates": true }, - { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 4412, 4411, 4413, 4414 ], "rotates": true }, + { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 4454 }, + { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 4481, 4480 ], "rotates": true }, + { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 4487, 4486, 4488, 4489 ], "rotates": true }, + { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 4476, 4478, 4479, 4477 ], "rotates": true }, + { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 4477, 4476, 4478, 4479 ], "rotates": true }, { "id": [ "shelter", "shelter_1", "shelter_2", "shelter_vandal", "shelter_1_vandal", "shelter_2_vandal" ], - "fg": [ 4427, 4426, 4428, 4429 ], - "bg": 4387, + "fg": [ 4492, 4491, 4493, 4494 ], + "bg": 4452, "rotates": true }, { "id": [ "shelter_roof", "shelter_roof_1", "shelter_roof_2" ], - "fg": [ 4427, 4426, 4428, 4429 ], - "bg": 4389, + "fg": [ 4492, 4491, 4493, 4494 ], + "bg": 4454, "rotates": true }, - { "id": "shelter_under", "fg": [ 4427, 4426, 4428, 4429 ], "rotates": true }, + { "id": "shelter_under", "fg": [ 4492, 4491, 4493, 4494 ], "rotates": true }, { "id": [ "2farm_1", @@ -5440,19 +5501,19 @@ "horse_farm_isherwood_2", "yard" ], - "fg": 4430 + "fg": 4495 }, { "id": "forest_trail", - "fg": 4446, + "fg": 4511, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4431 }, - { "id": "corner", "fg": [ 4433, 4435, 4434, 4432 ] }, - { "id": "t_connection", "fg": [ 4443, 4445, 4444, 4442 ] }, - { "id": "edge", "fg": [ 4437, 4436 ] }, - { "id": "end_piece", "fg": [ 4439, 4441, 4440, 4438 ] }, - { "id": "unconnected", "fg": [ 4446, 4446 ] } + { "id": "center", "fg": 4496 }, + { "id": "corner", "fg": [ 4498, 4500, 4499, 4497 ] }, + { "id": "t_connection", "fg": [ 4508, 4510, 4509, 4507 ] }, + { "id": "edge", "fg": [ 4502, 4501 ] }, + { "id": "end_piece", "fg": [ 4504, 4506, 4505, 4503 ] }, + { "id": "unconnected", "fg": [ 4511, 4511 ] } ] }, { @@ -5469,46 +5530,46 @@ "garage_gas_roof_2", "garage_gas_roof_3" ], - "fg": [ 4448, 4447, 4449, 4450 ], - "bg": 4387 - }, - { "id": "2farm_7", "fg": 4431 }, - { "id": "crater", "fg": 5344, "bg": 4387 }, - { "id": "ranch_camp_17", "fg": 6151, "bg": 4478 }, - { "id": "ranch_camp_76", "fg": 4431 }, - { "id": "ranch_camp_77", "fg": [ 4532, 4531, 4533, 4534 ], "bg": 4387, "rotates": true }, - { "id": "lighthouse_z2", "fg": 4458, "bg": 4389 }, - { "id": "lighthouse_z3", "fg": 4459, "bg": 4389 }, - { "id": "lighthouse_z4", "fg": 4460, "bg": 4389 }, - { "id": "lighthouse_z5", "fg": 4461, "bg": 4389 }, - { "id": "lighthouse_roof", "fg": 4457, "bg": 4389 }, - { "id": "note_!_black", "fg": 4462 }, - { "id": "note_!_red", "fg": 4475 }, - { "id": "note_!_green", "fg": 4467 }, - { "id": "note_!_brown", "fg": 4464 }, - { "id": "note_!_blue", "fg": 4463 }, - { "id": "note_!_magenta", "fg": 4473 }, - { "id": "note_!_cyan", "fg": 4465 }, - { "id": "note_!_light_gray", "fg": 4470 }, - { "id": "note_!_dark_gray", "fg": 4466 }, - { "id": "note_!_light_red", "fg": 4472 }, - { "id": "note_!_light_green", "fg": 4471 }, - { "id": "note_!_yellow", "fg": 4477 }, - { "id": "note_!_light_blue", "fg": 4468 }, - { "id": "note_!_pink", "fg": 4474 }, - { "id": "note_!_light_cyan", "fg": 4469 }, - { "id": "note_!_white", "fg": 4476 }, - { "id": "2farm_4", "fg": [ 4486, 4485, 4487, 4488 ], "rotates": true }, - { "id": "2farm_8", "fg": [ 4487, 4488, 4486, 4485 ], "rotates": true }, - { "id": "dairy_farm_NW", "fg": [ 4488, 4486, 4485, 4487 ], "rotates": true }, - { "id": "dairy_farm_NE", "fg": [ 4485, 4487, 4488, 4486 ], "rotates": true }, - { "id": "ranch_camp_1", "fg": [ 4482, 4481, 4483, 4484 ], "rotates": true }, + "fg": [ 4513, 4512, 4514, 4515 ], + "bg": 4452 + }, + { "id": "2farm_7", "fg": 4496 }, + { "id": "crater", "fg": 5409, "bg": 4452 }, + { "id": "ranch_camp_17", "fg": 6232, "bg": 4543 }, + { "id": "ranch_camp_76", "fg": 4496 }, + { "id": "ranch_camp_77", "fg": [ 4597, 4596, 4598, 4599 ], "bg": 4452, "rotates": true }, + { "id": "lighthouse_z2", "fg": 4523, "bg": 4454 }, + { "id": "lighthouse_z3", "fg": 4524, "bg": 4454 }, + { "id": "lighthouse_z4", "fg": 4525, "bg": 4454 }, + { "id": "lighthouse_z5", "fg": 4526, "bg": 4454 }, + { "id": "lighthouse_roof", "fg": 4522, "bg": 4454 }, + { "id": "note_!_black", "fg": 4527 }, + { "id": "note_!_red", "fg": 4540 }, + { "id": "note_!_green", "fg": 4532 }, + { "id": "note_!_brown", "fg": 4529 }, + { "id": "note_!_blue", "fg": 4528 }, + { "id": "note_!_magenta", "fg": 4538 }, + { "id": "note_!_cyan", "fg": 4530 }, + { "id": "note_!_light_gray", "fg": 4535 }, + { "id": "note_!_dark_gray", "fg": 4531 }, + { "id": "note_!_light_red", "fg": 4537 }, + { "id": "note_!_light_green", "fg": 4536 }, + { "id": "note_!_yellow", "fg": 4542 }, + { "id": "note_!_light_blue", "fg": 4533 }, + { "id": "note_!_pink", "fg": 4539 }, + { "id": "note_!_light_cyan", "fg": 4534 }, + { "id": "note_!_white", "fg": 4541 }, + { "id": "2farm_4", "fg": [ 4551, 4550, 4552, 4553 ], "rotates": true }, + { "id": "2farm_8", "fg": [ 4552, 4553, 4551, 4550 ], "rotates": true }, + { "id": "dairy_farm_NW", "fg": [ 4553, 4551, 4550, 4552 ], "rotates": true }, + { "id": "dairy_farm_NE", "fg": [ 4550, 4552, 4553, 4551 ], "rotates": true }, + { "id": "ranch_camp_1", "fg": [ 4547, 4546, 4548, 4549 ], "rotates": true }, { "id": [ "ranch_camp_2", "ranch_camp_3", "ranch_camp_4", "ranch_camp_5", "ranch_camp_6", "ranch_camp_7", "ranch_camp_8" ], - "fg": [ 4490, 4489, 4491, 4492 ], + "fg": [ 4555, 4554, 4556, 4557 ], "rotates": true }, - { "id": "ranch_camp_9", "fg": [ 4481, 4483, 4484, 4482 ], "rotates": true }, + { "id": "ranch_camp_9", "fg": [ 4546, 4548, 4549, 4547 ], "rotates": true }, { "id": [ "ranch_camp_10", @@ -5519,7 +5580,7 @@ "ranch_camp_55", "ranch_camp_64" ], - "fg": [ 4492, 4490, 4489, 4491 ], + "fg": [ 4557, 4555, 4554, 4556 ], "rotates": true }, { @@ -5569,7 +5630,7 @@ "ranch_camp_70", "ranch_camp_71" ], - "fg": 4478, + "fg": 4543, "rotates": true }, { @@ -5582,730 +5643,730 @@ "ranch_camp_63", "ranch_camp_72" ], - "fg": [ 4489, 4491, 4492, 4490 ], + "fg": [ 4554, 4556, 4557, 4555 ], "rotates": true }, - { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 4484, 4482, 4481, 4483 ], "rotates": true }, + { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 4549, 4547, 4546, 4548 ], "rotates": true }, { "id": [ "ranch_camp_74", "ranch_camp_79", "ranch_camp_80" ], - "fg": [ 4491, 4492, 4490, 4489 ], + "fg": [ 4556, 4557, 4555, 4554 ], "rotates": true }, - { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 4483, 4484, 4482, 4481 ], "rotates": true }, - { "id": "pond_field", "fg": 4495, "bg": 4387, "rotates": false }, - { "id": "pond_forest", "fg": 4496, "bg": 4387, "rotates": false }, - { "id": "pond_swamp", "fg": 4497, "bg": 4387, "rotates": false }, - { "id": "hot_springs", "fg": 4494, "bg": 4387, "rotates": false }, + { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 4548, 4549, 4547, 4546 ], "rotates": true }, + { "id": "pond_field", "fg": 4560, "bg": 4452, "rotates": false }, + { "id": "pond_forest", "fg": 4561, "bg": 4452, "rotates": false }, + { "id": "pond_swamp", "fg": 4562, "bg": 4452, "rotates": false }, + { "id": "hot_springs", "fg": 4559, "bg": 4452, "rotates": false }, { "id": [ "pool", "pool_1", "pool_2", "pool_3", "pool_4" ], - "fg": [ 4499, 4498, 4500, 4501 ], - "bg": 4387, + "fg": [ 4564, 4563, 4565, 4566 ], + "bg": 4452, "rotates": true }, - { "id": [ "pool_5", "pool_6" ], "fg": [ 4503, 4502, 4504, 4505 ], "bg": 4387, "rotates": true }, + { "id": [ "pool_5", "pool_6" ], "fg": [ 4568, 4567, 4569, 4570 ], "bg": 4452, "rotates": true }, { "id": [ "pool_roof", "pool_roof_1", "pool_roof_2", "pool_roof_3", "pool_roof_4" ], - "fg": [ 4499, 4498, 4500, 4501 ], - "bg": 4389, + "fg": [ 4564, 4563, 4565, 4566 ], + "bg": 4454, "rotates": true }, - { "id": "publicgarden", "fg": 4506 }, - { "id": "PublicPond_1a", "fg": [ 4510, 4508, 4507, 4509 ], "rotates": true }, - { "id": "PublicPond_1b", "fg": [ 4507, 4509, 4510, 4508 ], "rotates": true }, - { "id": "river_nw", "fg": 4519, "bg": 4387, "rotates": false }, - { "id": "river_sw", "fg": 4522, "bg": 4387, "rotates": false }, - { "id": "river_se", "fg": 4520, "bg": 4387, "rotates": false }, - { "id": "river_ne", "fg": 4517, "bg": 4387, "rotates": false }, - { "id": "river_north", "fg": 4518, "bg": 4387, "rotates": false }, - { "id": "river_west", "fg": 4523, "bg": 4387, "rotates": false }, - { "id": "river_east", "fg": 4516, "bg": 4387, "rotates": false }, - { "id": "river_south", "fg": 4521, "bg": 4387, "rotates": false }, - { "id": "river_center", "fg": 4515, "bg": 4387, "rotates": false }, - { "id": "river", "fg": [ 4518, 4516, 4521, 4523 ], "bg": 4387, "rotates": true }, - { "id": "river_c_not_nw", "fg": 4512, "bg": 4387, "rotates": false }, - { "id": "river_c_not_ne", "fg": 4511, "bg": 4387, "rotates": false }, - { "id": "river_c_not_sw", "fg": 4514, "bg": 4387, "rotates": false }, - { "id": "river_c_not_se", "fg": 4513, "bg": 4387, "rotates": false }, + { "id": "publicgarden", "fg": 4571 }, + { "id": "PublicPond_1a", "fg": [ 4575, 4573, 4572, 4574 ], "rotates": true }, + { "id": "PublicPond_1b", "fg": [ 4572, 4574, 4575, 4573 ], "rotates": true }, + { "id": "river_nw", "fg": 4584, "bg": 4452, "rotates": false }, + { "id": "river_sw", "fg": 4587, "bg": 4452, "rotates": false }, + { "id": "river_se", "fg": 4585, "bg": 4452, "rotates": false }, + { "id": "river_ne", "fg": 4582, "bg": 4452, "rotates": false }, + { "id": "river_north", "fg": 4583, "bg": 4452, "rotates": false }, + { "id": "river_west", "fg": 4588, "bg": 4452, "rotates": false }, + { "id": "river_east", "fg": 4581, "bg": 4452, "rotates": false }, + { "id": "river_south", "fg": 4586, "bg": 4452, "rotates": false }, + { "id": "river_center", "fg": 4580, "bg": 4452, "rotates": false }, + { "id": "river", "fg": [ 4583, 4581, 4586, 4588 ], "bg": 4452, "rotates": true }, + { "id": "river_c_not_nw", "fg": 4577, "bg": 4452, "rotates": false }, + { "id": "river_c_not_ne", "fg": 4576, "bg": 4452, "rotates": false }, + { "id": "river_c_not_sw", "fg": 4579, "bg": 4452, "rotates": false }, + { "id": "river_c_not_se", "fg": 4578, "bg": 4452, "rotates": false }, { "id": "road", - "fg": 4539, + "fg": 4604, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4524 }, - { "id": "corner", "fg": [ 4526, 4528, 4527, 4525 ], "bg": 4387 }, - { "id": "t_connection", "fg": [ 4536, 4538, 4537, 4535 ] }, - { "id": "edge", "fg": [ 4530, 4529 ] }, - { "id": "end_piece", "fg": [ 4532, 4534, 4533, 4531 ] }, - { "id": "unconnected", "fg": [ 4539, 4539 ], "bg": 4387 } + { "id": "center", "fg": 4589 }, + { "id": "corner", "fg": [ 4591, 4593, 4592, 4590 ], "bg": 4452 }, + { "id": "t_connection", "fg": [ 4601, 4603, 4602, 4600 ] }, + { "id": "edge", "fg": [ 4595, 4594 ] }, + { "id": "end_piece", "fg": [ 4597, 4599, 4598, 4596 ] }, + { "id": "unconnected", "fg": [ 4604, 4604 ], "bg": 4452 } ] }, - { "id": "road_nesw_manhole", "fg": 4540, "bg": 4524 }, + { "id": "road_nesw_manhole", "fg": 4605, "bg": 4589 }, { "id": [ "house_farm", "farm_2", "farm_isherwood_2", "2farm_11" ], - "fg": [ 4542, 4541, 4543, 4544 ], - "bg": 4387, + "fg": [ 4607, 4606, 4608, 4609 ], + "bg": 4452, "rotates": true }, - { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 4543, 4544, 4542, 4541 ], "bg": 4387, "rotates": true }, + { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 4608, 4609, 4607, 4606 ], "bg": 4452, "rotates": true }, { "id": [ "house_farm_roof", "farm_2_roof", "farm_isherwood_2_roof", "2farm_roof_11" ], - "fg": [ 4542, 4541, 4543, 4544 ], - "bg": 4389, + "fg": [ 4607, 4606, 4608, 4609 ], + "bg": 4454, "rotates": true }, { "id": [ "dairy_farm_SW_roof", "ranch_camp_68_roof" ], - "fg": [ 4543, 4544, 4542, 4541 ], - "bg": 4389, + "fg": [ 4608, 4609, 4607, 4606 ], + "bg": 4454, "rotates": true }, - { "id": "farm_isherwood_2_cellar", "fg": [ 4542, 4541, 4543, 4544 ], "rotates": true }, - { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 4546, 4545, 4546, 4545 ], "bg": 4387, "rotates": true }, + { "id": "farm_isherwood_2_cellar", "fg": [ 4607, 4606, 4608, 4609 ], "rotates": true }, + { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 4611, 4610, 4611, 4610 ], "bg": 4452, "rotates": true }, { "id": [ "2silos_1", "2silos_2", "2silos_roof" ], - "fg": [ 4546, 4545, 4546, 4545 ], - "bg": 4389, + "fg": [ 4611, 4610, 4611, 4610 ], + "bg": 4454, "rotates": true }, - { "id": "slimepit_top", "fg": 4547, "bg": 4387 }, - { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 5760 }, - { "id": "hunter_shack", "fg": [ 4553, 4552, 4554, 4555 ], "bg": 4387, "rotates": true }, - { "id": "hunter_shack_1", "fg": [ 4550, 4548, 4549, 4551 ], "bg": 4387, "rotates": true }, - { "id": "hunter_shack_roof", "fg": [ 4553, 4552, 4554, 4555 ], "bg": 4389, "rotates": true }, - { "id": "hunter_shack_roof_1", "fg": [ 4550, 4548, 4549, 4551 ], "bg": 4389, "rotates": true }, - { "id": "ws_fire_lookout_tower_base", "fg": 4556, "bg": 4387, "rotates": false }, - { "id": "ws_fire_lookout_tower_f1", "fg": 4556, "bg": 4389 }, - { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 4557, "bg": 4389 }, - { "id": "t_reb_cage", "fg": 4559, "bg": 5553 }, + { "id": "slimepit_top", "fg": 4612, "bg": 4452 }, + { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 5841 }, + { "id": "hunter_shack", "fg": [ 4618, 4617, 4619, 4620 ], "bg": 4452, "rotates": true }, + { "id": "hunter_shack_1", "fg": [ 4615, 4613, 4614, 4616 ], "bg": 4452, "rotates": true }, + { "id": "hunter_shack_roof", "fg": [ 4618, 4617, 4619, 4620 ], "bg": 4454, "rotates": true }, + { "id": "hunter_shack_roof_1", "fg": [ 4615, 4613, 4614, 4616 ], "bg": 4454, "rotates": true }, + { "id": "ws_fire_lookout_tower_base", "fg": 4621, "bg": 4452, "rotates": false }, + { "id": "ws_fire_lookout_tower_f1", "fg": 4621, "bg": 4454 }, + { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 4622, "bg": 4454 }, + { "id": "t_reb_cage", "fg": 4624, "bg": 5634 }, { "id": "f_earthbag_half", "multitile": true, - "fg": 4575, - "bg": 5104, + "fg": 4640, + "bg": 5169, "additional_tiles": [ - { "id": "center", "fg": 4560 }, - { "id": "corner", "fg": [ 4562, 4564, 4563, 4561 ] }, - { "id": "t_connection", "fg": [ 4572, 4574, 4573, 4571 ] }, - { "id": "edge", "fg": [ 4566, 4565 ] }, - { "id": "end_piece", "fg": [ 4568, 4570, 4569, 4567 ] }, - { "id": "unconnected", "fg": [ 4575, 4575 ] } + { "id": "center", "fg": 4625 }, + { "id": "corner", "fg": [ 4627, 4629, 4628, 4626 ] }, + { "id": "t_connection", "fg": [ 4637, 4639, 4638, 4636 ] }, + { "id": "edge", "fg": [ 4631, 4630 ] }, + { "id": "end_piece", "fg": [ 4633, 4635, 4634, 4632 ] }, + { "id": "unconnected", "fg": [ 4640, 4640 ] } ] }, - { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 5309 }, - { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 5744 }, + { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 5374 }, + { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 5825 }, { "id": "t_splitrail_fence", "multitile": true, - "fg": 4618, - "bg": 5104, + "fg": 4683, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 4603 }, - { "id": "corner", "bg": 5104, "fg": [ 4605, 4607, 4606, 4604 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 4615, 4617, 4616, 4614 ] }, - { "id": "edge", "bg": 5104, "fg": [ 4609, 4608 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 4611, 4613, 4612, 4610 ] }, - { "bg": 5104, "id": "unconnected", "fg": [ 4618, 4618 ] } + { "id": "center", "bg": 5169, "fg": 4668 }, + { "id": "corner", "bg": 5169, "fg": [ 4670, 4672, 4671, 4669 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 4680, 4682, 4681, 4679 ] }, + { "id": "edge", "bg": 5169, "fg": [ 4674, 4673 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 4676, 4678, 4677, 4675 ] }, + { "bg": 5169, "id": "unconnected", "fg": [ 4683, 4683 ] } ] }, { "id": "t_splitrail_fence_season_summer", "multitile": true, - "fg": 4618, - "bg": 5114, + "fg": 4683, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": 4603 }, - { "id": "corner", "bg": 5114, "fg": [ 4605, 4607, 4606, 4604 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 4615, 4617, 4616, 4614 ] }, - { "id": "edge", "bg": 5114, "fg": [ 4609, 4608 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 4611, 4613, 4612, 4610 ] }, - { "bg": 5114, "id": "unconnected", "fg": [ 4618, 4618 ] } + { "id": "center", "bg": 5179, "fg": 4668 }, + { "id": "corner", "bg": 5179, "fg": [ 4670, 4672, 4671, 4669 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 4680, 4682, 4681, 4679 ] }, + { "id": "edge", "bg": 5179, "fg": [ 4674, 4673 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 4676, 4678, 4677, 4675 ] }, + { "bg": 5179, "id": "unconnected", "fg": [ 4683, 4683 ] } ] }, { "id": "t_splitrail_fence_season_autumn", "multitile": true, - "fg": 4618, - "bg": 5109, + "fg": 4683, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": 4603 }, - { "id": "corner", "bg": 5109, "fg": [ 4605, 4607, 4606, 4604 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 4615, 4617, 4616, 4614 ] }, - { "id": "edge", "bg": 5109, "fg": [ 4609, 4608 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 4611, 4613, 4612, 4610 ] }, - { "bg": 5109, "id": "unconnected", "fg": [ 4618, 4618 ] } + { "id": "center", "bg": 5174, "fg": 4668 }, + { "id": "corner", "bg": 5174, "fg": [ 4670, 4672, 4671, 4669 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 4680, 4682, 4681, 4679 ] }, + { "id": "edge", "bg": 5174, "fg": [ 4674, 4673 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 4676, 4678, 4677, 4675 ] }, + { "bg": 5174, "id": "unconnected", "fg": [ 4683, 4683 ] } ] }, { "id": "t_splitrail_fence_season_winter", "multitile": true, - "fg": 4618, - "bg": 4584, + "fg": 4683, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": 4603 }, - { "id": "corner", "bg": 4584, "fg": [ 4605, 4607, 4606, 4604 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4615, 4617, 4616, 4614 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4609, 4608 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4611, 4613, 4612, 4610 ] }, - { "bg": 4584, "id": "unconnected", "fg": [ 4618, 4618 ] } + { "id": "center", "bg": 4649, "fg": 4668 }, + { "id": "corner", "bg": 4649, "fg": [ 4670, 4672, 4671, 4669 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 4680, 4682, 4681, 4679 ] }, + { "id": "edge", "bg": 4649, "fg": [ 4674, 4673 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 4676, 4678, 4677, 4675 ] }, + { "bg": 4649, "id": "unconnected", "fg": [ 4683, 4683 ] } ] }, - { "id": "t_stairs_down", "fg": 4619 }, - { "id": "t_wood_stairs_down", "fg": 4620 }, + { "id": "t_stairs_down", "fg": 4684 }, + { "id": "t_wood_stairs_down", "fg": 4685 }, { "id": "t_adobe_brick_wall", "multitile": true, - "fg": 4636, + "fg": 4701, "additional_tiles": [ - { "id": "center", "fg": 4621 }, - { "id": "corner", "fg": [ 4623, 4625, 4624, 4622 ] }, - { "id": "t_connection", "fg": [ 4633, 4635, 4634, 4632 ] }, - { "id": "edge", "fg": [ 4627, 4626 ] }, - { "id": "end_piece", "fg": [ 4629, 4631, 4630, 4628 ] }, - { "id": "unconnected", "fg": [ 4636, 4636 ] } + { "id": "center", "fg": 4686 }, + { "id": "corner", "fg": [ 4688, 4690, 4689, 4687 ] }, + { "id": "t_connection", "fg": [ 4698, 4700, 4699, 4697 ] }, + { "id": "edge", "fg": [ 4692, 4691 ] }, + { "id": "end_piece", "fg": [ 4694, 4696, 4695, 4693 ] }, + { "id": "unconnected", "fg": [ 4701, 4701 ] } ] }, - { "id": "t_bars", "fg": 4637 }, + { "id": "t_bars", "fg": 4702 }, { "id": "t_brick_wall", "multitile": true, - "fg": 4653, + "fg": 4718, "additional_tiles": [ - { "id": "center", "fg": 4638 }, - { "id": "corner", "fg": [ 4640, 4642, 4641, 4639 ] }, - { "id": "t_connection", "fg": [ 4650, 4652, 4651, 4649 ] }, - { "id": "edge", "fg": [ 4644, 4643 ] }, - { "id": "end_piece", "fg": [ 4646, 4648, 4647, 4645 ] }, - { "id": "unconnected", "fg": 4653 } + { "id": "center", "fg": 4703 }, + { "id": "corner", "fg": [ 4705, 4707, 4706, 4704 ] }, + { "id": "t_connection", "fg": [ 4715, 4717, 4716, 4714 ] }, + { "id": "edge", "fg": [ 4709, 4708 ] }, + { "id": "end_piece", "fg": [ 4711, 4713, 4712, 4710 ] }, + { "id": "unconnected", "fg": 4718 } ] }, { "id": "t_bridge", "multitile": true, - "fg": 4669, + "fg": 4734, "additional_tiles": [ - { "id": "center", "fg": 4654 }, - { "id": "corner", "fg": [ 4656, 4658, 4657, 4655 ] }, - { "id": "t_connection", "fg": [ 4666, 4668, 4667, 4665 ] }, - { "id": "edge", "fg": [ 4660, 4659 ] }, - { "id": "end_piece", "fg": [ 4662, 4664, 4663, 4661 ] }, - { "id": "unconnected", "fg": [ 4669, 4669 ] } + { "id": "center", "fg": 4719 }, + { "id": "corner", "fg": [ 4721, 4723, 4722, 4720 ] }, + { "id": "t_connection", "fg": [ 4731, 4733, 4732, 4730 ] }, + { "id": "edge", "fg": [ 4725, 4724 ] }, + { "id": "end_piece", "fg": [ 4727, 4729, 4728, 4726 ] }, + { "id": "unconnected", "fg": [ 4734, 4734 ] } ] }, { "id": "t_carpet_green", "multitile": true, - "fg": 4688, + "fg": 4753, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 4670 }, - { "weight": 1, "sprite": 4671 }, - { "weight": 1, "sprite": 4672 }, - { "weight": 1, "sprite": 4673 } + { "weight": 1, "sprite": 4735 }, + { "weight": 1, "sprite": 4736 }, + { "weight": 1, "sprite": 4737 }, + { "weight": 1, "sprite": 4738 } ] }, - { "id": "corner", "fg": [ 4675, 4677, 4676, 4674 ] }, - { "id": "t_connection", "fg": [ 4685, 4687, 4686, 4684 ] }, - { "id": "edge", "fg": [ 4679, 4678 ] }, - { "id": "end_piece", "fg": [ 4681, 4683, 4682, 4680 ] }, - { "id": "unconnected", "fg": 4688 } + { "id": "corner", "fg": [ 4740, 4742, 4741, 4739 ] }, + { "id": "t_connection", "fg": [ 4750, 4752, 4751, 4749 ] }, + { "id": "edge", "fg": [ 4744, 4743 ] }, + { "id": "end_piece", "fg": [ 4746, 4748, 4747, 4745 ] }, + { "id": "unconnected", "fg": 4753 } ] }, { "id": "t_carpet_purple", "multitile": true, - "fg": 4707, + "fg": 4772, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 4689 }, - { "weight": 1, "sprite": 4690 }, - { "weight": 1, "sprite": 4691 }, - { "weight": 1, "sprite": 4692 } + { "weight": 1, "sprite": 4754 }, + { "weight": 1, "sprite": 4755 }, + { "weight": 1, "sprite": 4756 }, + { "weight": 1, "sprite": 4757 } ] }, - { "id": "corner", "fg": [ 4694, 4696, 4695, 4693 ] }, - { "id": "t_connection", "fg": [ 4704, 4706, 4705, 4703 ] }, - { "id": "edge", "fg": [ 4698, 4697 ] }, - { "id": "end_piece", "fg": [ 4700, 4702, 4701, 4699 ] }, - { "id": "unconnected", "fg": 4707 } + { "id": "corner", "fg": [ 4759, 4761, 4760, 4758 ] }, + { "id": "t_connection", "fg": [ 4769, 4771, 4770, 4768 ] }, + { "id": "edge", "fg": [ 4763, 4762 ] }, + { "id": "end_piece", "fg": [ 4765, 4767, 4766, 4764 ] }, + { "id": "unconnected", "fg": 4772 } ] }, { "id": "t_carpet_red", "multitile": true, - "fg": 4723, + "fg": 4788, "additional_tiles": [ - { "id": "center", "fg": 4708 }, - { "id": "corner", "fg": [ 4710, 4712, 4711, 4709 ] }, - { "id": "t_connection", "fg": [ 4720, 4722, 4721, 4719 ] }, - { "id": "edge", "fg": [ 4714, 4713 ] }, - { "id": "end_piece", "fg": [ 4716, 4718, 4717, 4715 ] }, - { "id": "unconnected", "fg": 4723 } + { "id": "center", "fg": 4773 }, + { "id": "corner", "fg": [ 4775, 4777, 4776, 4774 ] }, + { "id": "t_connection", "fg": [ 4785, 4787, 4786, 4784 ] }, + { "id": "edge", "fg": [ 4779, 4778 ] }, + { "id": "end_piece", "fg": [ 4781, 4783, 4782, 4780 ] }, + { "id": "unconnected", "fg": 4788 } ] }, { "id": "t_carpet_yellow", "multitile": true, - "fg": 4739, + "fg": 4804, "additional_tiles": [ - { "id": "center", "fg": 4724 }, - { "id": "corner", "fg": [ 4726, 4728, 4727, 4725 ] }, - { "id": "t_connection", "fg": [ 4736, 4738, 4737, 4735 ] }, - { "id": "edge", "fg": [ 4730, 4729 ] }, - { "id": "end_piece", "fg": [ 4732, 4734, 4733, 4731 ] }, - { "id": "unconnected", "fg": 4739 } + { "id": "center", "fg": 4789 }, + { "id": "corner", "fg": [ 4791, 4793, 4792, 4790 ] }, + { "id": "t_connection", "fg": [ 4801, 4803, 4802, 4800 ] }, + { "id": "edge", "fg": [ 4795, 4794 ] }, + { "id": "end_piece", "fg": [ 4797, 4799, 4798, 4796 ] }, + { "id": "unconnected", "fg": 4804 } ] }, { "id": "t_chainfence", - "fg": 4755, + "fg": 4820, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4740, "bg": 5309 }, - { "id": "corner", "fg": [ 4742, 4744, 4743, 4741 ], "bg": 5309 }, - { "id": "t_connection", "fg": [ 4752, 4754, 4753, 4751 ], "bg": 5309 }, - { "id": "edge", "fg": [ 4746, 4745 ], "bg": 5309 }, - { "id": "end_piece", "fg": [ 4748, 4750, 4749, 4747 ], "bg": 5309 }, - { "id": "unconnected", "fg": [ 4755, 4755 ], "bg": 5309 } + { "id": "center", "fg": 4805, "bg": 5374 }, + { "id": "corner", "fg": [ 4807, 4809, 4808, 4806 ], "bg": 5374 }, + { "id": "t_connection", "fg": [ 4817, 4819, 4818, 4816 ], "bg": 5374 }, + { "id": "edge", "fg": [ 4811, 4810 ], "bg": 5374 }, + { "id": "end_piece", "fg": [ 4813, 4815, 4814, 4812 ], "bg": 5374 }, + { "id": "unconnected", "fg": [ 4820, 4820 ], "bg": 5374 } ], - "bg": 5309 + "bg": 5374 }, { "id": "t_chainfence_season_winter", - "fg": 4755, + "fg": 4820, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4740, "bg": 4584 }, - { "id": "corner", "fg": [ 4742, 4744, 4743, 4741 ], "bg": 4584 }, - { "id": "t_connection", "fg": [ 4752, 4754, 4753, 4751 ], "bg": 4584 }, - { "id": "edge", "fg": [ 4746, 4745 ], "bg": 4584 }, - { "id": "end_piece", "fg": [ 4748, 4750, 4749, 4747 ], "bg": 4584 }, - { "id": "unconnected", "fg": [ 4755, 4755 ], "bg": 4584 } + { "id": "center", "fg": 4805, "bg": 4649 }, + { "id": "corner", "fg": [ 4807, 4809, 4808, 4806 ], "bg": 4649 }, + { "id": "t_connection", "fg": [ 4817, 4819, 4818, 4816 ], "bg": 4649 }, + { "id": "edge", "fg": [ 4811, 4810 ], "bg": 4649 }, + { "id": "end_piece", "fg": [ 4813, 4815, 4814, 4812 ], "bg": 4649 }, + { "id": "unconnected", "fg": [ 4820, 4820 ], "bg": 4649 } ], - "bg": 4584 + "bg": 4649 }, { "id": "t_clay", "multitile": true, - "fg": 4771, - "bg": 5104, + "fg": 4836, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 4756 }, - { "id": "corner", "bg": 5104, "fg": [ 4758, 4760, 4759, 4757 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 4768, 4770, 4769, 4767 ] }, - { "id": "edge", "bg": 5104, "fg": [ 4762, 4761 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 4764, 4766, 4765, 4763 ] }, - { "bg": 5104, "id": "unconnected", "fg": 4771 } + { "id": "center", "bg": 5169, "fg": 4821 }, + { "id": "corner", "bg": 5169, "fg": [ 4823, 4825, 4824, 4822 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 4833, 4835, 4834, 4832 ] }, + { "id": "edge", "bg": 5169, "fg": [ 4827, 4826 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 4829, 4831, 4830, 4828 ] }, + { "bg": 5169, "id": "unconnected", "fg": 4836 } ] }, { "id": "t_clay_season_summer", "multitile": true, - "fg": 4771, - "bg": 5114, + "fg": 4836, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": 4756 }, - { "id": "corner", "bg": 5114, "fg": [ 4758, 4760, 4759, 4757 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 4768, 4770, 4769, 4767 ] }, - { "id": "edge", "bg": 5114, "fg": [ 4762, 4761 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 4764, 4766, 4765, 4763 ] }, - { "bg": 5114, "id": "unconnected", "fg": 4771 } + { "id": "center", "bg": 5179, "fg": 4821 }, + { "id": "corner", "bg": 5179, "fg": [ 4823, 4825, 4824, 4822 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 4833, 4835, 4834, 4832 ] }, + { "id": "edge", "bg": 5179, "fg": [ 4827, 4826 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 4829, 4831, 4830, 4828 ] }, + { "bg": 5179, "id": "unconnected", "fg": 4836 } ] }, { "id": "t_clay_season_autumn", "multitile": true, - "fg": 4771, - "bg": 5109, + "fg": 4836, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": 4756 }, - { "id": "corner", "bg": 5109, "fg": [ 4758, 4760, 4759, 4757 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 4768, 4770, 4769, 4767 ] }, - { "id": "edge", "bg": 5109, "fg": [ 4762, 4761 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 4764, 4766, 4765, 4763 ] }, - { "bg": 5109, "id": "unconnected", "fg": 4771 } + { "id": "center", "bg": 5174, "fg": 4821 }, + { "id": "corner", "bg": 5174, "fg": [ 4823, 4825, 4824, 4822 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 4833, 4835, 4834, 4832 ] }, + { "id": "edge", "bg": 5174, "fg": [ 4827, 4826 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 4829, 4831, 4830, 4828 ] }, + { "bg": 5174, "id": "unconnected", "fg": 4836 } ] }, { "id": "t_clay_season_winter", "multitile": true, - "fg": 4771, - "bg": 4584, + "fg": 4836, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": 4756 }, - { "id": "corner", "bg": 4584, "fg": [ 4758, 4760, 4759, 4757 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4768, 4770, 4769, 4767 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4762, 4761 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4764, 4766, 4765, 4763 ] }, - { "bg": 4584, "id": "unconnected", "fg": 4771 } + { "id": "center", "bg": 4649, "fg": 4821 }, + { "id": "corner", "bg": 4649, "fg": [ 4823, 4825, 4824, 4822 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 4833, 4835, 4834, 4832 ] }, + { "id": "edge", "bg": 4649, "fg": [ 4827, 4826 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 4829, 4831, 4830, 4828 ] }, + { "bg": 4649, "id": "unconnected", "fg": 4836 } ] }, { "id": "t_concrete", "multitile": true, - "fg": 4787, + "fg": 4852, "additional_tiles": [ - { "id": "center", "fg": 4772 }, - { "id": "corner", "fg": [ 4774, 4776, 4775, 4773 ] }, - { "id": "t_connection", "fg": [ 4784, 4786, 4785, 4783 ] }, - { "id": "edge", "fg": [ 4778, 4777 ] }, - { "id": "end_piece", "fg": [ 4780, 4782, 4781, 4779 ] }, - { "id": "unconnected", "fg": 4787 } + { "id": "center", "fg": 4837 }, + { "id": "corner", "fg": [ 4839, 4841, 4840, 4838 ] }, + { "id": "t_connection", "fg": [ 4849, 4851, 4850, 4848 ] }, + { "id": "edge", "fg": [ 4843, 4842 ] }, + { "id": "end_piece", "fg": [ 4845, 4847, 4846, 4844 ] }, + { "id": "unconnected", "fg": 4852 } ] }, - { "id": "t_concrete_season_winter", "fg": 4584 }, + { "id": "t_concrete_season_winter", "fg": 4649 }, { "id": "t_concrete_wall", "multitile": true, - "fg": 4803, + "fg": 4868, "additional_tiles": [ - { "id": "center", "fg": 4788 }, - { "id": "corner", "fg": [ 4790, 4792, 4791, 4789 ] }, - { "id": "t_connection", "fg": [ 4800, 4802, 4801, 4799 ] }, - { "id": "edge", "fg": [ 4794, 4793 ] }, - { "id": "end_piece", "fg": [ 4796, 4798, 4797, 4795 ] }, - { "id": "unconnected", "fg": 4803 } + { "id": "center", "fg": 4853 }, + { "id": "corner", "fg": [ 4855, 4857, 4856, 4854 ] }, + { "id": "t_connection", "fg": [ 4865, 4867, 4866, 4864 ] }, + { "id": "edge", "fg": [ 4859, 4858 ] }, + { "id": "end_piece", "fg": [ 4861, 4863, 4862, 4860 ] }, + { "id": "unconnected", "fg": 4868 } ] }, { "id": "t_concrete_wall_flesh", - "fg": 4819, + "fg": 4884, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4804 }, - { "id": "corner", "fg": [ 4806, 4808, 4807, 4805 ] }, - { "id": "t_connection", "fg": [ 4816, 4818, 4817, 4815 ] }, - { "id": "edge", "fg": [ 4810, 4809 ] }, - { "id": "end_piece", "fg": [ 4812, 4814, 4813, 4811 ] }, - { "id": "unconnected", "fg": [ 4819, 4819 ] } + { "id": "center", "fg": 4869 }, + { "id": "corner", "fg": [ 4871, 4873, 4872, 4870 ] }, + { "id": "t_connection", "fg": [ 4881, 4883, 4882, 4880 ] }, + { "id": "edge", "fg": [ 4875, 4874 ] }, + { "id": "end_piece", "fg": [ 4877, 4879, 4878, 4876 ] }, + { "id": "unconnected", "fg": [ 4884, 4884 ] } ] }, { "id": "t_conveyor", "multitile": true, - "fg": 4835, - "bg": 5798, + "fg": 4900, + "bg": 5879, "additional_tiles": [ - { "id": "center", "bg": 5798, "fg": 4820 }, - { "id": "corner", "bg": 5798, "fg": [ 4822, 4824, 4823, 4821 ] }, - { "id": "t_connection", "bg": 5798, "fg": [ 4832, 4834, 4833, 4831 ] }, - { "id": "edge", "bg": 5798, "fg": [ 4826, 4825 ] }, - { "id": "end_piece", "bg": 5798, "fg": [ 4828, 4830, 4829, 4827 ] }, - { "bg": 5798, "id": "unconnected", "fg": [ 4835, 4835 ] } + { "id": "center", "bg": 5879, "fg": 4885 }, + { "id": "corner", "bg": 5879, "fg": [ 4887, 4889, 4888, 4886 ] }, + { "id": "t_connection", "bg": 5879, "fg": [ 4897, 4899, 4898, 4896 ] }, + { "id": "edge", "bg": 5879, "fg": [ 4891, 4890 ] }, + { "id": "end_piece", "bg": 5879, "fg": [ 4893, 4895, 4894, 4892 ] }, + { "bg": 5879, "id": "unconnected", "fg": [ 4900, 4900 ] } ] }, - { "id": "t_curtains", "fg": 4836 }, + { "id": "t_curtains", "fg": 4901 }, { "id": "t_dirt", - "fg": 4855, + "fg": 4920, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 100, "sprite": 4837 }, - { "weight": 100, "sprite": 4838 }, - { "weight": 100, "sprite": 4839 }, - { "weight": 100, "sprite": 4840 } + { "weight": 100, "sprite": 4902 }, + { "weight": 100, "sprite": 4903 }, + { "weight": 100, "sprite": 4904 }, + { "weight": 100, "sprite": 4905 } ] }, - { "id": "corner", "fg": [ 4842, 4844, 4843, 4841 ] }, - { "id": "t_connection", "fg": [ 4852, 4854, 4853, 4851 ] }, - { "id": "edge", "fg": [ 4846, 4845 ] }, - { "id": "end_piece", "fg": [ 4848, 4850, 4849, 4847 ] }, - { "id": "unconnected", "fg": [ 4855, 4855 ] } + { "id": "corner", "fg": [ 4907, 4909, 4908, 4906 ] }, + { "id": "t_connection", "fg": [ 4917, 4919, 4918, 4916 ] }, + { "id": "edge", "fg": [ 4911, 4910 ] }, + { "id": "end_piece", "fg": [ 4913, 4915, 4914, 4912 ] }, + { "id": "unconnected", "fg": [ 4920, 4920 ] } ] }, { "id": "t_dirt_season_autumn", - "fg": 4874, + "fg": 4939, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 4856, 4857, 4858, 4859 ] }, - { "id": "corner", "fg": [ 4861, 4863, 4862, 4860 ] }, - { "id": "t_connection", "fg": [ 4871, 4873, 4872, 4870 ] }, - { "id": "edge", "fg": [ 4865, 4864 ] }, - { "id": "end_piece", "fg": [ 4867, 4869, 4868, 4866 ] }, - { "id": "unconnected", "fg": [ 4874, 4874 ] } + { "id": "center", "fg": [ 4921, 4922, 4923, 4924 ] }, + { "id": "corner", "fg": [ 4926, 4928, 4927, 4925 ] }, + { "id": "t_connection", "fg": [ 4936, 4938, 4937, 4935 ] }, + { "id": "edge", "fg": [ 4930, 4929 ] }, + { "id": "end_piece", "fg": [ 4932, 4934, 4933, 4931 ] }, + { "id": "unconnected", "fg": [ 4939, 4939 ] } ] }, { "id": "t_dirt_season_summer", - "fg": 4893, + "fg": 4958, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 4875, 4876, 4877, 4878 ] }, - { "id": "corner", "fg": [ 4880, 4882, 4881, 4879 ] }, - { "id": "t_connection", "fg": [ 4890, 4892, 4891, 4889 ] }, - { "id": "edge", "fg": [ 4884, 4883 ] }, - { "id": "end_piece", "fg": [ 4886, 4888, 4887, 4885 ] }, - { "id": "unconnected", "fg": [ 4893, 4893 ] } + { "id": "center", "fg": [ 4940, 4941, 4942, 4943 ] }, + { "id": "corner", "fg": [ 4945, 4947, 4946, 4944 ] }, + { "id": "t_connection", "fg": [ 4955, 4957, 4956, 4954 ] }, + { "id": "edge", "fg": [ 4949, 4948 ] }, + { "id": "end_piece", "fg": [ 4951, 4953, 4952, 4950 ] }, + { "id": "unconnected", "fg": [ 4958, 4958 ] } ] }, { "id": "t_dirt_season_winter", "fg": [ - { "weight": 100, "sprite": 4894 }, - { "weight": 100, "sprite": 4895 }, - { "weight": 100, "sprite": 4896 }, - { "weight": 100, "sprite": 4897 } + { "weight": 100, "sprite": 4959 }, + { "weight": 100, "sprite": 4960 }, + { "weight": 100, "sprite": 4961 }, + { "weight": 100, "sprite": 4962 } ] }, { "id": "t_dirtfloor", "multitile": true, - "fg": 4913, - "additional_tiles": [ - { "id": "center", "fg": 4898 }, - { "id": "corner", "fg": [ 4900, 4902, 4901, 4899 ] }, - { "id": "t_connection", "fg": [ 4910, 4912, 4911, 4909 ] }, - { "id": "edge", "fg": [ 4904, 4903 ] }, - { "id": "end_piece", "fg": [ 4906, 4908, 4907, 4905 ] }, - { "id": "unconnected", "fg": 4913 } - ] - }, - { "id": "t_door_c", "fg": 4915 }, - { "id": "t_door_locked", "fg": 4916 }, - { "id": "t_door_o", "fg": 4917 }, - { "id": "t_door_b", "fg": 4914 }, - { "id": "t_door_boarded", "fg": 4918 }, - { "id": "t_door_boarded_damaged", "fg": 4919 }, - { "id": "t_door_glass_c", "fg": 4920 }, - { "id": "t_door_glass_o", "fg": 4921 }, - { "id": "t_door_lab_c", "fg": 4922 }, - { "id": "t_door_lab_o", "fg": 4923 }, - { "id": "t_door_metal_c_peep", "fg": 4924 }, - { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 4925 }, - { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 4932 }, { "weight": 100, "sprite": 4933 } ] }, + "fg": 4978, + "additional_tiles": [ + { "id": "center", "fg": 4963 }, + { "id": "corner", "fg": [ 4965, 4967, 4966, 4964 ] }, + { "id": "t_connection", "fg": [ 4975, 4977, 4976, 4974 ] }, + { "id": "edge", "fg": [ 4969, 4968 ] }, + { "id": "end_piece", "fg": [ 4971, 4973, 4972, 4970 ] }, + { "id": "unconnected", "fg": 4978 } + ] + }, + { "id": "t_door_c", "fg": 4980 }, + { "id": "t_door_locked", "fg": 4981 }, + { "id": "t_door_o", "fg": 4982 }, + { "id": "t_door_b", "fg": 4979 }, + { "id": "t_door_boarded", "fg": 4983 }, + { "id": "t_door_boarded_damaged", "fg": 4984 }, + { "id": "t_door_glass_c", "fg": 4985 }, + { "id": "t_door_glass_o", "fg": 4986 }, + { "id": "t_door_lab_c", "fg": 4987 }, + { "id": "t_door_lab_o", "fg": 4988 }, + { "id": "t_door_metal_c_peep", "fg": 4989 }, + { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 4990 }, + { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 4997 }, { "weight": 100, "sprite": 4998 } ] }, { "id": "t_fence_season_spring", "multitile": true, - "fg": 4949, - "bg": 5104, + "fg": 5014, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 4934 }, - { "id": "corner", "bg": 5104, "fg": [ 4936, 4938, 4937, 4935 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 4946, 4948, 4947, 4945 ] }, - { "id": "edge", "bg": 5104, "fg": [ 4940, 4939 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 4942, 4944, 4943, 4941 ] }, - { "bg": 5104, "id": "unconnected", "fg": 4949 } + { "id": "center", "bg": 5169, "fg": 4999 }, + { "id": "corner", "bg": 5169, "fg": [ 5001, 5003, 5002, 5000 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5011, 5013, 5012, 5010 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5005, 5004 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5007, 5009, 5008, 5006 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5014 } ] }, { "id": "t_fence_season_summer", "multitile": true, - "fg": 4949, - "bg": 5114, + "fg": 5014, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": 4934 }, - { "id": "corner", "bg": 5114, "fg": [ 4936, 4938, 4937, 4935 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 4946, 4948, 4947, 4945 ] }, - { "id": "edge", "bg": 5114, "fg": [ 4940, 4939 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 4942, 4944, 4943, 4941 ] }, - { "bg": 5114, "id": "unconnected", "fg": 4949 } + { "id": "center", "bg": 5179, "fg": 4999 }, + { "id": "corner", "bg": 5179, "fg": [ 5001, 5003, 5002, 5000 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 5011, 5013, 5012, 5010 ] }, + { "id": "edge", "bg": 5179, "fg": [ 5005, 5004 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 5007, 5009, 5008, 5006 ] }, + { "bg": 5179, "id": "unconnected", "fg": 5014 } ] }, { "id": "t_fence_season_autumn", "multitile": true, - "fg": 4949, - "bg": 5109, + "fg": 5014, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": 4934 }, - { "id": "corner", "bg": 5109, "fg": [ 4936, 4938, 4937, 4935 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 4946, 4948, 4947, 4945 ] }, - { "id": "edge", "bg": 5109, "fg": [ 4940, 4939 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 4942, 4944, 4943, 4941 ] }, - { "bg": 5109, "id": "unconnected", "fg": 4949 } + { "id": "center", "bg": 5174, "fg": 4999 }, + { "id": "corner", "bg": 5174, "fg": [ 5001, 5003, 5002, 5000 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 5011, 5013, 5012, 5010 ] }, + { "id": "edge", "bg": 5174, "fg": [ 5005, 5004 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 5007, 5009, 5008, 5006 ] }, + { "bg": 5174, "id": "unconnected", "fg": 5014 } ] }, { "id": "t_fence_season_winter", "multitile": true, - "fg": 4949, - "bg": 4584, - "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": 4934 }, - { "id": "corner", "bg": 4584, "fg": [ 4936, 4938, 4937, 4935 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4946, 4948, 4947, 4945 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4940, 4939 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4942, 4944, 4943, 4941 ] }, - { "bg": 4584, "id": "unconnected", "fg": 4949 } - ] - }, - { "id": "t_fencegate_c_season_spring", "fg": 4950, "bg": 5104 }, - { "id": "t_fencegate_c_season_summer", "fg": 4950, "bg": 5114 }, - { "id": "t_fencegate_c_season_autumn", "fg": 4950, "bg": 5109 }, - { "id": "t_fencegate_c_season_winter", "fg": 4950, "bg": 4584 }, - { "id": "t_fencegate_o_season_spring", "fg": 4951, "bg": 5104 }, - { "id": "t_fencegate_o_season_summer", "fg": 4951, "bg": 5114 }, - { "id": "t_fencegate_o_season_autumn", "fg": 4951, "bg": 5109 }, - { "id": "t_fencegate_o_season_winter", "fg": 4951, "bg": 4584 }, - { "id": "t_fence_post_season_spring", "fg": 4949, "bg": 5104 }, - { "id": "t_fence_post_season_summer", "fg": 4949, "bg": 5114 }, - { "id": "t_fence_post_season_autumn", "fg": 4949, "bg": 5109 }, - { "id": "t_fence_post_season_winter", "fg": 4949, "bg": 4584 }, + "fg": 5014, + "bg": 4649, + "additional_tiles": [ + { "id": "center", "bg": 4649, "fg": 4999 }, + { "id": "corner", "bg": 4649, "fg": [ 5001, 5003, 5002, 5000 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 5011, 5013, 5012, 5010 ] }, + { "id": "edge", "bg": 4649, "fg": [ 5005, 5004 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 5007, 5009, 5008, 5006 ] }, + { "bg": 4649, "id": "unconnected", "fg": 5014 } + ] + }, + { "id": "t_fencegate_c_season_spring", "fg": 5015, "bg": 5169 }, + { "id": "t_fencegate_c_season_summer", "fg": 5015, "bg": 5179 }, + { "id": "t_fencegate_c_season_autumn", "fg": 5015, "bg": 5174 }, + { "id": "t_fencegate_c_season_winter", "fg": 5015, "bg": 4649 }, + { "id": "t_fencegate_o_season_spring", "fg": 5016, "bg": 5169 }, + { "id": "t_fencegate_o_season_summer", "fg": 5016, "bg": 5179 }, + { "id": "t_fencegate_o_season_autumn", "fg": 5016, "bg": 5174 }, + { "id": "t_fencegate_o_season_winter", "fg": 5016, "bg": 4649 }, + { "id": "t_fence_post_season_spring", "fg": 5014, "bg": 5169 }, + { "id": "t_fence_post_season_summer", "fg": 5014, "bg": 5179 }, + { "id": "t_fence_post_season_autumn", "fg": 5014, "bg": 5174 }, + { "id": "t_fence_post_season_winter", "fg": 5014, "bg": 4649 }, { "id": "t_fence_barbed_season_spring", "multitile": true, - "fg": 4967, - "bg": 5104, + "fg": 5032, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 4952 }, - { "id": "corner", "bg": 5104, "fg": [ 4954, 4956, 4955, 4953 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 4964, 4966, 4965, 4963 ] }, - { "id": "edge", "bg": 5104, "fg": [ 4958, 4957 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 4960, 4962, 4961, 4959 ] }, - { "bg": 5104, "id": "unconnected", "fg": 4967 } + { "id": "center", "bg": 5169, "fg": 5017 }, + { "id": "corner", "bg": 5169, "fg": [ 5019, 5021, 5020, 5018 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5029, 5031, 5030, 5028 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5023, 5022 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5025, 5027, 5026, 5024 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5032 } ] }, { "id": "t_fence_barbed_season_summer", "multitile": true, - "fg": 4967, - "bg": 5114, + "fg": 5032, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": 4952 }, - { "id": "corner", "bg": 5114, "fg": [ 4954, 4956, 4955, 4953 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 4964, 4966, 4965, 4963 ] }, - { "id": "edge", "bg": 5114, "fg": [ 4958, 4957 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 4960, 4962, 4961, 4959 ] }, - { "bg": 5114, "id": "unconnected", "fg": 4967 } + { "id": "center", "bg": 5179, "fg": 5017 }, + { "id": "corner", "bg": 5179, "fg": [ 5019, 5021, 5020, 5018 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 5029, 5031, 5030, 5028 ] }, + { "id": "edge", "bg": 5179, "fg": [ 5023, 5022 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 5025, 5027, 5026, 5024 ] }, + { "bg": 5179, "id": "unconnected", "fg": 5032 } ] }, { "id": "t_fence_barbed_season_autumn", "multitile": true, - "fg": 4967, - "bg": 5109, + "fg": 5032, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": 4952 }, - { "id": "corner", "bg": 5109, "fg": [ 4954, 4956, 4955, 4953 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 4964, 4966, 4965, 4963 ] }, - { "id": "edge", "bg": 5109, "fg": [ 4958, 4957 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 4960, 4962, 4961, 4959 ] }, - { "bg": 5109, "id": "unconnected", "fg": 4967 } + { "id": "center", "bg": 5174, "fg": 5017 }, + { "id": "corner", "bg": 5174, "fg": [ 5019, 5021, 5020, 5018 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 5029, 5031, 5030, 5028 ] }, + { "id": "edge", "bg": 5174, "fg": [ 5023, 5022 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 5025, 5027, 5026, 5024 ] }, + { "bg": 5174, "id": "unconnected", "fg": 5032 } ] }, { "id": "t_fence_barbed_season_winter", "multitile": true, - "fg": 4967, - "bg": 4584, + "fg": 5032, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": 4952 }, - { "id": "corner", "bg": 4584, "fg": [ 4954, 4956, 4955, 4953 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4964, 4966, 4965, 4963 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4958, 4957 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4960, 4962, 4961, 4959 ] }, - { "bg": 4584, "id": "unconnected", "fg": 4967 } + { "id": "center", "bg": 4649, "fg": 5017 }, + { "id": "corner", "bg": 4649, "fg": [ 5019, 5021, 5020, 5018 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 5029, 5031, 5030, 5028 ] }, + { "id": "edge", "bg": 4649, "fg": [ 5023, 5022 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 5025, 5027, 5026, 5024 ] }, + { "bg": 4649, "id": "unconnected", "fg": 5032 } ] }, { "id": "t_fence_rope_season_spring", - "fg": 4984, + "fg": 5049, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4969, "bg": 4837 }, - { "id": "corner", "fg": [ 4971, 4973, 4972, 4970 ], "bg": [ 4842, 4844, 4843, 4841 ] }, - { "id": "t_connection", "fg": [ 4981, 4983, 4982, 4980 ], "bg": [ 4852, 4854, 4853, 4851 ] }, - { "id": "edge", "fg": [ 4975, 4974 ], "bg": [ 4846, 4845 ] }, - { "id": "end_piece", "fg": [ 4977, 4979, 4978, 4976 ], "bg": [ 4848, 4850, 4849, 4847 ] }, - { "id": "unconnected", "fg": [ 4984, 4984 ], "bg": [ 4855, 4855 ] } + { "id": "center", "fg": 5034, "bg": 4902 }, + { "id": "corner", "fg": [ 5036, 5038, 5037, 5035 ], "bg": [ 4907, 4909, 4908, 4906 ] }, + { "id": "t_connection", "fg": [ 5046, 5048, 5047, 5045 ], "bg": [ 4917, 4919, 4918, 4916 ] }, + { "id": "edge", "fg": [ 5040, 5039 ], "bg": [ 4911, 4910 ] }, + { "id": "end_piece", "fg": [ 5042, 5044, 5043, 5041 ], "bg": [ 4913, 4915, 4914, 4912 ] }, + { "id": "unconnected", "fg": [ 5049, 5049 ], "bg": [ 4920, 4920 ] } ] }, { "id": "t_fence_rope_season_summer", - "fg": 4984, + "fg": 5049, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4969, "bg": 4875 }, - { "id": "corner", "fg": [ 4971, 4973, 4972, 4970 ], "bg": [ 4880, 4882, 4881, 4879 ] }, - { "id": "t_connection", "fg": [ 4981, 4983, 4982, 4980 ], "bg": [ 4890, 4892, 4891, 4889 ] }, - { "id": "edge", "fg": [ 4975, 4974 ], "bg": [ 4884, 4883 ] }, - { "id": "end_piece", "fg": [ 4977, 4979, 4978, 4976 ], "bg": [ 4886, 4888, 4887, 4885 ] }, - { "id": "unconnected", "fg": [ 4984, 4984 ], "bg": [ 4893, 4893 ] } + { "id": "center", "fg": 5034, "bg": 4940 }, + { "id": "corner", "fg": [ 5036, 5038, 5037, 5035 ], "bg": [ 4945, 4947, 4946, 4944 ] }, + { "id": "t_connection", "fg": [ 5046, 5048, 5047, 5045 ], "bg": [ 4955, 4957, 4956, 4954 ] }, + { "id": "edge", "fg": [ 5040, 5039 ], "bg": [ 4949, 4948 ] }, + { "id": "end_piece", "fg": [ 5042, 5044, 5043, 5041 ], "bg": [ 4951, 4953, 4952, 4950 ] }, + { "id": "unconnected", "fg": [ 5049, 5049 ], "bg": [ 4958, 4958 ] } ] }, { "id": "t_fence_rope_season_autumn", - "fg": 4984, + "fg": 5049, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4969, "bg": 4856 }, - { "id": "corner", "fg": [ 4971, 4973, 4972, 4970 ], "bg": [ 4861, 4863, 4862, 4860 ] }, - { "id": "t_connection", "fg": [ 4981, 4983, 4982, 4980 ], "bg": [ 4871, 4873, 4872, 4870 ] }, - { "id": "edge", "fg": [ 4975, 4974 ], "bg": [ 4865, 4864 ] }, - { "id": "end_piece", "fg": [ 4977, 4979, 4978, 4976 ], "bg": [ 4867, 4869, 4868, 4866 ] }, - { "id": "unconnected", "fg": [ 4984, 4984 ], "bg": [ 4874, 4874 ] } + { "id": "center", "fg": 5034, "bg": 4921 }, + { "id": "corner", "fg": [ 5036, 5038, 5037, 5035 ], "bg": [ 4926, 4928, 4927, 4925 ] }, + { "id": "t_connection", "fg": [ 5046, 5048, 5047, 5045 ], "bg": [ 4936, 4938, 4937, 4935 ] }, + { "id": "edge", "fg": [ 5040, 5039 ], "bg": [ 4930, 4929 ] }, + { "id": "end_piece", "fg": [ 5042, 5044, 5043, 5041 ], "bg": [ 4932, 4934, 4933, 4931 ] }, + { "id": "unconnected", "fg": [ 5049, 5049 ], "bg": [ 4939, 4939 ] } ] }, { "id": "t_fence_rope_season_winter", - "fg": 4984, + "fg": 5049, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 4969, + "fg": 5034, "bg": [ - { "weight": 100, "sprite": 4894 }, - { "weight": 100, "sprite": 4895 }, - { "weight": 100, "sprite": 4896 }, - { "weight": 100, "sprite": 4897 } + { "weight": 100, "sprite": 4959 }, + { "weight": 100, "sprite": 4960 }, + { "weight": 100, "sprite": 4961 }, + { "weight": 100, "sprite": 4962 } ] }, { "id": "corner", - "fg": [ 4971, 4973, 4972, 4970 ], + "fg": [ 5036, 5038, 5037, 5035 ], "bg": [ - { "weight": 100, "sprite": 4894 }, - { "weight": 100, "sprite": 4895 }, - { "weight": 100, "sprite": 4896 }, - { "weight": 100, "sprite": 4897 } + { "weight": 100, "sprite": 4959 }, + { "weight": 100, "sprite": 4960 }, + { "weight": 100, "sprite": 4961 }, + { "weight": 100, "sprite": 4962 } ] }, { "id": "t_connection", - "fg": [ 4981, 4983, 4982, 4980 ], + "fg": [ 5046, 5048, 5047, 5045 ], "bg": [ - { "weight": 100, "sprite": 4894 }, - { "weight": 100, "sprite": 4895 }, - { "weight": 100, "sprite": 4896 }, - { "weight": 100, "sprite": 4897 } + { "weight": 100, "sprite": 4959 }, + { "weight": 100, "sprite": 4960 }, + { "weight": 100, "sprite": 4961 }, + { "weight": 100, "sprite": 4962 } ] }, { "id": "edge", - "fg": [ 4975, 4974 ], + "fg": [ 5040, 5039 ], "bg": [ - { "weight": 100, "sprite": 4894 }, - { "weight": 100, "sprite": 4895 }, - { "weight": 100, "sprite": 4896 }, - { "weight": 100, "sprite": 4897 } + { "weight": 100, "sprite": 4959 }, + { "weight": 100, "sprite": 4960 }, + { "weight": 100, "sprite": 4961 }, + { "weight": 100, "sprite": 4962 } ] }, { "id": "end_piece", - "fg": [ 4977, 4979, 4978, 4976 ], + "fg": [ 5042, 5044, 5043, 5041 ], "bg": [ - { "weight": 100, "sprite": 4894 }, - { "weight": 100, "sprite": 4895 }, - { "weight": 100, "sprite": 4896 }, - { "weight": 100, "sprite": 4897 } + { "weight": 100, "sprite": 4959 }, + { "weight": 100, "sprite": 4960 }, + { "weight": 100, "sprite": 4961 }, + { "weight": 100, "sprite": 4962 } ] }, { "id": "unconnected", - "fg": [ 4984, 4984 ], + "fg": [ 5049, 5049 ], "bg": [ - { "weight": 100, "sprite": 4894 }, - { "weight": 100, "sprite": 4895 }, - { "weight": 100, "sprite": 4896 }, - { "weight": 100, "sprite": 4897 } + { "weight": 100, "sprite": 4959 }, + { "weight": 100, "sprite": 4960 }, + { "weight": 100, "sprite": 4961 }, + { "weight": 100, "sprite": 4962 } ] } ] @@ -6313,3075 +6374,3224 @@ { "id": "t_fence_wire_season_spring", "multitile": true, - "fg": 5000, - "bg": 5104, + "fg": 5065, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 4985 }, - { "id": "corner", "bg": 5104, "fg": [ 4987, 4989, 4988, 4986 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 4997, 4999, 4998, 4996 ] }, - { "id": "edge", "bg": 5104, "fg": [ 4991, 4990 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 4993, 4995, 4994, 4992 ] }, - { "bg": 5104, "id": "unconnected", "fg": 5000 } + { "id": "center", "bg": 5169, "fg": 5050 }, + { "id": "corner", "bg": 5169, "fg": [ 5052, 5054, 5053, 5051 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5062, 5064, 5063, 5061 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5056, 5055 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5058, 5060, 5059, 5057 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5065 } ] }, { "id": "t_fence_wire_season_summer", "multitile": true, - "fg": 5000, - "bg": 5114, + "fg": 5065, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": 4985 }, - { "id": "corner", "bg": 5114, "fg": [ 4987, 4989, 4988, 4986 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 4997, 4999, 4998, 4996 ] }, - { "id": "edge", "bg": 5114, "fg": [ 4991, 4990 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 4993, 4995, 4994, 4992 ] }, - { "bg": 5114, "id": "unconnected", "fg": 5000 } + { "id": "center", "bg": 5179, "fg": 5050 }, + { "id": "corner", "bg": 5179, "fg": [ 5052, 5054, 5053, 5051 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 5062, 5064, 5063, 5061 ] }, + { "id": "edge", "bg": 5179, "fg": [ 5056, 5055 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 5058, 5060, 5059, 5057 ] }, + { "bg": 5179, "id": "unconnected", "fg": 5065 } ] }, { "id": "t_fence_wire_season_autumn", "multitile": true, - "fg": 5000, - "bg": 5109, + "fg": 5065, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": 4985 }, - { "id": "corner", "bg": 5109, "fg": [ 4987, 4989, 4988, 4986 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 4997, 4999, 4998, 4996 ] }, - { "id": "edge", "bg": 5109, "fg": [ 4991, 4990 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 4993, 4995, 4994, 4992 ] }, - { "bg": 5109, "id": "unconnected", "fg": 5000 } + { "id": "center", "bg": 5174, "fg": 5050 }, + { "id": "corner", "bg": 5174, "fg": [ 5052, 5054, 5053, 5051 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 5062, 5064, 5063, 5061 ] }, + { "id": "edge", "bg": 5174, "fg": [ 5056, 5055 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 5058, 5060, 5059, 5057 ] }, + { "bg": 5174, "id": "unconnected", "fg": 5065 } ] }, { "id": "t_fence_wire_season_winter", "multitile": true, - "fg": 5000, - "bg": 4584, + "fg": 5065, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": 4985 }, - { "id": "corner", "bg": 4584, "fg": [ 4987, 4989, 4988, 4986 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4997, 4999, 4998, 4996 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4991, 4990 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4993, 4995, 4994, 4992 ] }, - { "bg": 4584, "id": "unconnected", "fg": 5000 } + { "id": "center", "bg": 4649, "fg": 5050 }, + { "id": "corner", "bg": 4649, "fg": [ 5052, 5054, 5053, 5051 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 5062, 5064, 5063, 5061 ] }, + { "id": "edge", "bg": 4649, "fg": [ 5056, 5055 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 5058, 5060, 5059, 5057 ] }, + { "bg": 4649, "id": "unconnected", "fg": 5065 } ] }, { "id": "t_floor", "multitile": true, - "fg": 5018, + "fg": 5083, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 5001 }, { "weight": 1, "sprite": 5002 }, { "weight": 1, "sprite": 5003 } ] + "fg": [ { "weight": 1, "sprite": 5066 }, { "weight": 1, "sprite": 5067 }, { "weight": 1, "sprite": 5068 } ] }, - { "id": "corner", "fg": [ 5005, 5007, 5006, 5004 ] }, - { "id": "t_connection", "fg": [ 5015, 5017, 5016, 5014 ] }, - { "id": "edge", "fg": [ 5009, 5008 ] }, - { "id": "end_piece", "fg": [ 5011, 5013, 5012, 5010 ] }, - { "id": "unconnected", "fg": 5018 } + { "id": "corner", "fg": [ 5070, 5072, 5071, 5069 ] }, + { "id": "t_connection", "fg": [ 5080, 5082, 5081, 5079 ] }, + { "id": "edge", "fg": [ 5074, 5073 ] }, + { "id": "end_piece", "fg": [ 5076, 5078, 5077, 5075 ] }, + { "id": "unconnected", "fg": 5083 } ] }, { "id": "t_floor_resin", "multitile": true, - "fg": 5034, + "fg": 5099, "additional_tiles": [ - { "id": "center", "fg": 5019 }, - { "id": "corner", "fg": [ 5021, 5023, 5022, 5020 ] }, - { "id": "t_connection", "fg": [ 5031, 5033, 5032, 5030 ] }, - { "id": "edge", "fg": [ 5025, 5024 ] }, - { "id": "end_piece", "fg": [ 5027, 5029, 5028, 5026 ] }, - { "id": "unconnected", "fg": 5034 } + { "id": "center", "fg": 5084 }, + { "id": "corner", "fg": [ 5086, 5088, 5087, 5085 ] }, + { "id": "t_connection", "fg": [ 5096, 5098, 5097, 5095 ] }, + { "id": "edge", "fg": [ 5090, 5089 ] }, + { "id": "end_piece", "fg": [ 5092, 5094, 5093, 5091 ] }, + { "id": "unconnected", "fg": 5099 } ] }, { "id": "t_floor_wax", "multitile": true, - "fg": 5050, + "fg": 5115, "additional_tiles": [ - { "id": "center", "fg": 5035 }, - { "id": "corner", "fg": [ 5037, 5039, 5038, 5036 ] }, - { "id": "t_connection", "fg": [ 5047, 5049, 5048, 5046 ] }, - { "id": "edge", "fg": [ 5041, 5040 ] }, - { "id": "end_piece", "fg": [ 5043, 5045, 5044, 5042 ] }, - { "id": "unconnected", "fg": 5050 } + { "id": "center", "fg": 5100 }, + { "id": "corner", "fg": [ 5102, 5104, 5103, 5101 ] }, + { "id": "t_connection", "fg": [ 5112, 5114, 5113, 5111 ] }, + { "id": "edge", "fg": [ 5106, 5105 ] }, + { "id": "end_piece", "fg": [ 5108, 5110, 5109, 5107 ] }, + { "id": "unconnected", "fg": 5115 } ] }, { "id": "t_floor_waxed", "multitile": true, - "fg": 5066, + "fg": 5131, "additional_tiles": [ - { "id": "center", "fg": 5051 }, - { "id": "corner", "fg": [ 5053, 5055, 5054, 5052 ] }, - { "id": "t_connection", "fg": [ 5063, 5065, 5064, 5062 ] }, - { "id": "edge", "fg": [ 5057, 5056 ] }, - { "id": "end_piece", "fg": [ 5059, 5061, 5060, 5058 ] }, - { "id": "unconnected", "fg": 5066 } + { "id": "center", "fg": 5116 }, + { "id": "corner", "fg": [ 5118, 5120, 5119, 5117 ] }, + { "id": "t_connection", "fg": [ 5128, 5130, 5129, 5127 ] }, + { "id": "edge", "fg": [ 5122, 5121 ] }, + { "id": "end_piece", "fg": [ 5124, 5126, 5125, 5123 ] }, + { "id": "unconnected", "fg": 5131 } ] }, { "id": "t_floor_waxed_y", "multitile": true, - "fg": 5082, + "fg": 5147, "additional_tiles": [ - { "id": "center", "fg": 5067 }, - { "id": "corner", "fg": [ 5069, 5071, 5070, 5068 ] }, - { "id": "t_connection", "fg": [ 5079, 5081, 5080, 5078 ] }, - { "id": "edge", "fg": [ 5073, 5072 ] }, - { "id": "end_piece", "fg": [ 5075, 5077, 5076, 5074 ] }, - { "id": "unconnected", "fg": 5082 } + { "id": "center", "fg": 5132 }, + { "id": "corner", "fg": [ 5134, 5136, 5135, 5133 ] }, + { "id": "t_connection", "fg": [ 5144, 5146, 5145, 5143 ] }, + { "id": "edge", "fg": [ 5138, 5137 ] }, + { "id": "end_piece", "fg": [ 5140, 5142, 5141, 5139 ] }, + { "id": "unconnected", "fg": 5147 } ] }, { "id": [ "t_fungus", "t_fungus_floor_out" ], "multitile": true, - "fg": 5098, - "bg": 5104, + "fg": 5163, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 5083 }, - { "id": "corner", "bg": 5104, "fg": [ 5085, 5087, 5086, 5084 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 5095, 5097, 5096, 5094 ] }, - { "id": "edge", "bg": 5104, "fg": [ 5089, 5088 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 5091, 5093, 5092, 5090 ] }, - { "bg": 5104, "id": "unconnected", "fg": 5098 } + { "id": "center", "bg": 5169, "fg": 5148 }, + { "id": "corner", "bg": 5169, "fg": [ 5150, 5152, 5151, 5149 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5160, 5162, 5161, 5159 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5154, 5153 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5156, 5158, 5157, 5155 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5163 } ] }, { "id": "t_fungus_season_summer", "multitile": true, - "fg": 5098, - "bg": 5114, + "fg": 5163, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": 5083 }, - { "id": "corner", "bg": 5114, "fg": [ 5085, 5087, 5086, 5084 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 5095, 5097, 5096, 5094 ] }, - { "id": "edge", "bg": 5114, "fg": [ 5089, 5088 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 5091, 5093, 5092, 5090 ] }, - { "bg": 5114, "id": "unconnected", "fg": 5098 } + { "id": "center", "bg": 5179, "fg": 5148 }, + { "id": "corner", "bg": 5179, "fg": [ 5150, 5152, 5151, 5149 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 5160, 5162, 5161, 5159 ] }, + { "id": "edge", "bg": 5179, "fg": [ 5154, 5153 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 5156, 5158, 5157, 5155 ] }, + { "bg": 5179, "id": "unconnected", "fg": 5163 } ] }, { "id": "t_fungus_season_autumn", "multitile": true, - "fg": 5098, - "bg": 5109, + "fg": 5163, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": 5083 }, - { "id": "corner", "bg": 5109, "fg": [ 5085, 5087, 5086, 5084 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 5095, 5097, 5096, 5094 ] }, - { "id": "edge", "bg": 5109, "fg": [ 5089, 5088 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 5091, 5093, 5092, 5090 ] }, - { "bg": 5109, "id": "unconnected", "fg": 5098 } + { "id": "center", "bg": 5174, "fg": 5148 }, + { "id": "corner", "bg": 5174, "fg": [ 5150, 5152, 5151, 5149 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 5160, 5162, 5161, 5159 ] }, + { "id": "edge", "bg": 5174, "fg": [ 5154, 5153 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 5156, 5158, 5157, 5155 ] }, + { "bg": 5174, "id": "unconnected", "fg": 5163 } ] }, { "id": "t_fungus_season_winter", "multitile": true, - "fg": 5098, - "bg": 4584, + "fg": 5163, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": 5083 }, - { "id": "corner", "bg": 4584, "fg": [ 5085, 5087, 5086, 5084 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 5095, 5097, 5096, 5094 ] }, - { "id": "edge", "bg": 4584, "fg": [ 5089, 5088 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 5091, 5093, 5092, 5090 ] }, - { "bg": 4584, "id": "unconnected", "fg": 5098 } + { "id": "center", "bg": 4649, "fg": 5148 }, + { "id": "corner", "bg": 4649, "fg": [ 5150, 5152, 5151, 5149 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 5160, 5162, 5161, 5159 ] }, + { "id": "edge", "bg": 4649, "fg": [ 5154, 5153 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 5156, 5158, 5157, 5155 ] }, + { "bg": 4649, "id": "unconnected", "fg": 5163 } ] }, { "id": [ "t_fungus_floor_in", "t_fungus_floor_sup" ], "multitile": true, - "fg": 5098, - "bg": 5798, - "additional_tiles": [ - { "id": "center", "bg": 5798, "fg": 5083 }, - { "id": "corner", "bg": 5798, "fg": [ 5085, 5087, 5086, 5084 ] }, - { "id": "t_connection", "bg": 5798, "fg": [ 5095, 5097, 5096, 5094 ] }, - { "id": "edge", "bg": 5798, "fg": [ 5089, 5088 ] }, - { "id": "end_piece", "bg": 5798, "fg": [ 5091, 5093, 5092, 5090 ] }, - { "bg": 5798, "id": "unconnected", "fg": [ 5098, 5098 ] } - ] - }, - { "id": "t_shrub_fungal", "fg": 5703, "bg": 5083 }, - { "id": "t_gates_mech_control", "fg": 5099, "bg": 5798 }, - { "id": "t_gates_mech_control_lab", "fg": 5100, "bg": 5798 }, - { "id": "t_gates_control_concrete", "fg": 5101, "bg": 4803 }, - { "id": "t_gates_control_concrete_lab", "fg": 5100, "bg": 7241 }, - { "id": "t_gates_control_brick", "fg": 5101, "bg": 4653 }, - { "id": "t_gates_control_brick_lab", "fg": 5100, "bg": 4653 }, - { "id": "t_gates_control_metal", "fg": 5101, "bg": 5905 }, - { "id": "t_gates_control_metal_lab", "fg": 5100, "bg": 5905 }, - { "id": "t_elevator_control", "fg": 5102, "bg": 5798 }, - { "id": "t_elevator_control_off", "fg": 5103, "bg": 5798 }, + "fg": 5163, + "bg": 5879, + "additional_tiles": [ + { "id": "center", "bg": 5879, "fg": 5148 }, + { "id": "corner", "bg": 5879, "fg": [ 5150, 5152, 5151, 5149 ] }, + { "id": "t_connection", "bg": 5879, "fg": [ 5160, 5162, 5161, 5159 ] }, + { "id": "edge", "bg": 5879, "fg": [ 5154, 5153 ] }, + { "id": "end_piece", "bg": 5879, "fg": [ 5156, 5158, 5157, 5155 ] }, + { "bg": 5879, "id": "unconnected", "fg": [ 5163, 5163 ] } + ] + }, + { "id": "t_shrub_fungal", "fg": 5784, "bg": 5148 }, + { "id": "t_gates_mech_control", "fg": 5164, "bg": 5879 }, + { "id": "t_gates_mech_control_lab", "fg": 5165, "bg": 5879 }, + { "id": "t_gates_control_concrete", "fg": 5166, "bg": 4868 }, + { "id": "t_gates_control_concrete_lab", "fg": 5165, "bg": 7332 }, + { "id": "t_gates_control_brick", "fg": 5166, "bg": 4718 }, + { "id": "t_gates_control_brick_lab", "fg": 5165, "bg": 4718 }, + { "id": "t_gates_control_metal", "fg": 5166, "bg": 5986 }, + { "id": "t_gates_control_metal_lab", "fg": 5165, "bg": 5986 }, + { "id": "t_elevator_control", "fg": 5167, "bg": 5879 }, + { "id": "t_elevator_control_off", "fg": 5168, "bg": 5879 }, { "id": "t_grass", "fg": [ - { "weight": 1, "sprite": 5105 }, - { "weight": 1, "sprite": 5106 }, - { "weight": 1, "sprite": 5107 }, - { "weight": 1, "sprite": 5108 } + { "weight": 1, "sprite": 5170 }, + { "weight": 1, "sprite": 5171 }, + { "weight": 1, "sprite": 5172 }, + { "weight": 1, "sprite": 5173 } ] }, { "id": "t_grass_season_summer", "fg": [ - { "weight": 1, "sprite": 5115 }, - { "weight": 1, "sprite": 5116 }, - { "weight": 1, "sprite": 5117 }, - { "weight": 1, "sprite": 5118 } + { "weight": 1, "sprite": 5180 }, + { "weight": 1, "sprite": 5181 }, + { "weight": 1, "sprite": 5182 }, + { "weight": 1, "sprite": 5183 } ] }, { "id": "t_grass_season_autumn", "fg": [ - { "weight": 1, "sprite": 5110 }, - { "weight": 1, "sprite": 5111 }, - { "weight": 1, "sprite": 5112 }, - { "weight": 1, "sprite": 5113 } + { "weight": 1, "sprite": 5175 }, + { "weight": 1, "sprite": 5176 }, + { "weight": 1, "sprite": 5177 }, + { "weight": 1, "sprite": 5178 } ] }, { "id": "t_grass_season_winter", - "fg": 4602, - "bg": 4584, + "fg": 4667, + "bg": 4649, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 4584 }, - { "weight": 1, "sprite": 4585 }, - { "weight": 1, "sprite": 4586 }, - { "weight": 1, "sprite": 4587 } + { "weight": 1, "sprite": 4649 }, + { "weight": 1, "sprite": 4650 }, + { "weight": 1, "sprite": 4651 }, + { "weight": 1, "sprite": 4652 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 4589, 4591, 4590, 4588 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4599, 4601, 4600, 4598 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4593, 4592 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4595, 4597, 4596, 4594 ] }, - { "bg": 4584, "id": "unconnected", "fg": 4602 } + { "id": "corner", "bg": 4649, "fg": [ 4654, 4656, 4655, 4653 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 4664, 4666, 4665, 4663 ] }, + { "id": "edge", "bg": 4649, "fg": [ 4658, 4657 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 4660, 4662, 4661, 4659 ] }, + { "bg": 4649, "id": "unconnected", "fg": 4667 } ] }, { "id": "t_grass_dead", "multitile": true, - "fg": 5134, - "bg": 5104, + "fg": 5199, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 5119 }, - { "id": "corner", "bg": 5104, "fg": [ 5121, 5123, 5122, 5120 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 5131, 5133, 5132, 5130 ] }, - { "id": "edge", "bg": 5104, "fg": [ 5125, 5124 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 5127, 5129, 5128, 5126 ] }, - { "bg": 5104, "id": "unconnected", "fg": 5134 } + { "id": "center", "bg": 5169, "fg": 5184 }, + { "id": "corner", "bg": 5169, "fg": [ 5186, 5188, 5187, 5185 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5196, 5198, 5197, 5195 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5190, 5189 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5192, 5194, 5193, 5191 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5199 } ] }, { "id": "t_grass_dead_season_summer", "multitile": true, - "fg": 5166, - "bg": 5114, + "fg": 5231, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": 5151 }, - { "id": "corner", "bg": 5114, "fg": [ 5153, 5155, 5154, 5152 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 5163, 5165, 5164, 5162 ] }, - { "id": "edge", "bg": 5114, "fg": [ 5157, 5156 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 5159, 5161, 5160, 5158 ] }, - { "bg": 5114, "id": "unconnected", "fg": 5166 } + { "id": "center", "bg": 5179, "fg": 5216 }, + { "id": "corner", "bg": 5179, "fg": [ 5218, 5220, 5219, 5217 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 5228, 5230, 5229, 5227 ] }, + { "id": "edge", "bg": 5179, "fg": [ 5222, 5221 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 5224, 5226, 5225, 5223 ] }, + { "bg": 5179, "id": "unconnected", "fg": 5231 } ] }, { "id": "t_grass_dead_season_autumn", "multitile": true, - "fg": 5150, - "bg": 5109, + "fg": 5215, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": 5135 }, - { "id": "corner", "bg": 5109, "fg": [ 5137, 5139, 5138, 5136 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 5147, 5149, 5148, 5146 ] }, - { "id": "edge", "bg": 5109, "fg": [ 5141, 5140 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 5143, 5145, 5144, 5142 ] }, - { "bg": 5109, "id": "unconnected", "fg": 5150 } + { "id": "center", "bg": 5174, "fg": 5200 }, + { "id": "corner", "bg": 5174, "fg": [ 5202, 5204, 5203, 5201 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 5212, 5214, 5213, 5211 ] }, + { "id": "edge", "bg": 5174, "fg": [ 5206, 5205 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 5208, 5210, 5209, 5207 ] }, + { "bg": 5174, "id": "unconnected", "fg": 5215 } ] }, { "id": "t_grass_dead_season_winter", "multitile": true, - "fg": 4602, - "bg": 4584, + "fg": 4667, + "bg": 4649, "additional_tiles": [ { "id": "center", - "bg": 4584, + "bg": 4649, "fg": [ - { "weight": 1, "sprite": 4584 }, - { "weight": 1, "sprite": 4585 }, - { "weight": 1, "sprite": 4586 }, - { "weight": 1, "sprite": 4587 } + { "weight": 1, "sprite": 4649 }, + { "weight": 1, "sprite": 4650 }, + { "weight": 1, "sprite": 4651 }, + { "weight": 1, "sprite": 4652 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 4589, 4591, 4590, 4588 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4599, 4601, 4600, 4598 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4593, 4592 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4595, 4597, 4596, 4594 ] }, - { "bg": 4584, "id": "unconnected", "fg": 4602 } + { "id": "corner", "bg": 4649, "fg": [ 4654, 4656, 4655, 4653 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 4664, 4666, 4665, 4663 ] }, + { "id": "edge", "bg": 4649, "fg": [ 4658, 4657 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 4660, 4662, 4661, 4659 ] }, + { "bg": 4649, "id": "unconnected", "fg": 4667 } ] }, { "id": "t_grate", "multitile": true, - "fg": 5182, + "fg": 5247, "additional_tiles": [ - { "id": "center", "fg": 5167 }, - { "id": "corner", "fg": [ 5169, 5171, 5170, 5168 ] }, - { "id": "t_connection", "fg": [ 5179, 5181, 5180, 5178 ] }, - { "id": "edge", "fg": [ 5173, 5172 ] }, - { "id": "end_piece", "fg": [ 5175, 5177, 5176, 5174 ] }, - { "id": "unconnected", "fg": [ 5182, 5182 ] } + { "id": "center", "fg": 5232 }, + { "id": "corner", "fg": [ 5234, 5236, 5235, 5233 ] }, + { "id": "t_connection", "fg": [ 5244, 5246, 5245, 5243 ] }, + { "id": "edge", "fg": [ 5238, 5237 ] }, + { "id": "end_piece", "fg": [ 5240, 5242, 5241, 5239 ] }, + { "id": "unconnected", "fg": [ 5247, 5247 ] } ] }, { "id": [ "t_guardrail", "t_guardrail_bg_dp", "t_guardrail_hw_air" ], "multitile": true, - "fg": 5189, - "bg": 5744, + "fg": 5254, + "bg": 5825, "additional_tiles": [ - { "id": "edge", "bg": 5744, "fg": [ 5184, 5183 ] }, - { "id": "end_piece", "bg": 5744, "fg": [ 5186, 5188, 5187, 5185 ] }, - { "bg": 5744, "id": "unconnected", "fg": 5189 } + { "id": "edge", "bg": 5825, "fg": [ 5249, 5248 ] }, + { "id": "end_piece", "bg": 5825, "fg": [ 5251, 5253, 5252, 5250 ] }, + { "bg": 5825, "id": "unconnected", "fg": 5254 } ] }, { "id": "t_lava", - "fg": 5206, - "bg": 5536, + "fg": 5271, + "bg": 5617, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5191, "bg": 5536 }, - { "id": "corner", "fg": [ 5193, 5195, 5194, 5192 ], "bg": 5536 }, - { "id": "t_connection", "fg": [ 5203, 5205, 5204, 5202 ], "bg": 5536 }, - { "id": "edge", "fg": [ 5197, 5196 ], "bg": 5536 }, - { "id": "end_piece", "fg": [ 5199, 5201, 5200, 5198 ], "bg": 5536 }, - { "id": "unconnected", "fg": [ 5206, 5206 ], "bg": 5536 } + { "id": "center", "fg": 5256, "bg": 5617 }, + { "id": "corner", "fg": [ 5258, 5260, 5259, 5257 ], "bg": 5617 }, + { "id": "t_connection", "fg": [ 5268, 5270, 5269, 5267 ], "bg": 5617 }, + { "id": "edge", "fg": [ 5262, 5261 ], "bg": 5617 }, + { "id": "end_piece", "fg": [ 5264, 5266, 5265, 5263 ], "bg": 5617 }, + { "id": "unconnected", "fg": [ 5271, 5271 ], "bg": 5617 } ] }, { "id": [ "t_linoleum_gray", "t_linoleum_gray_no_roof" ], "multitile": true, - "fg": 5222, + "fg": 5287, "additional_tiles": [ - { "id": "center", "fg": 5207 }, - { "id": "corner", "fg": [ 5209, 5211, 5210, 5208 ] }, - { "id": "t_connection", "fg": [ 5219, 5221, 5220, 5218 ] }, - { "id": "edge", "fg": [ 5213, 5212 ] }, - { "id": "end_piece", "fg": [ 5215, 5217, 5216, 5214 ] }, - { "id": "unconnected", "fg": 5222 } + { "id": "center", "fg": 5272 }, + { "id": "corner", "fg": [ 5274, 5276, 5275, 5273 ] }, + { "id": "t_connection", "fg": [ 5284, 5286, 5285, 5283 ] }, + { "id": "edge", "fg": [ 5278, 5277 ] }, + { "id": "end_piece", "fg": [ 5280, 5282, 5281, 5279 ] }, + { "id": "unconnected", "fg": 5287 } ] }, { "id": [ "t_linoleum_white", "t_linoleum_white_no_roof" ], "multitile": true, - "fg": 5238, + "fg": 5303, "additional_tiles": [ - { "id": "center", "fg": 5223 }, - { "id": "corner", "fg": [ 5225, 5227, 5226, 5224 ] }, - { "id": "t_connection", "fg": [ 5235, 5237, 5236, 5234 ] }, - { "id": "edge", "fg": [ 5229, 5228 ] }, - { "id": "end_piece", "fg": [ 5231, 5233, 5232, 5230 ] }, - { "id": "unconnected", "fg": 5238 } + { "id": "center", "fg": 5288 }, + { "id": "corner", "fg": [ 5290, 5292, 5291, 5289 ] }, + { "id": "t_connection", "fg": [ 5300, 5302, 5301, 5299 ] }, + { "id": "edge", "fg": [ 5294, 5293 ] }, + { "id": "end_piece", "fg": [ 5296, 5298, 5297, 5295 ] }, + { "id": "unconnected", "fg": 5303 } ] }, - { "id": "t_manhole", "fg": 5239, "bg": 5309 }, - { "id": "t_manhole_cover", "fg": 5240, "bg": 5309 }, + { "id": "t_manhole", "fg": 5304, "bg": 5374 }, + { "id": "t_manhole_cover", "fg": 5305, "bg": 5374 }, { "id": "t_metal_floor", "multitile": true, - "fg": 5256, + "fg": 5321, "additional_tiles": [ - { "id": "center", "fg": 5241 }, - { "id": "corner", "fg": [ 5243, 5245, 5244, 5242 ] }, - { "id": "t_connection", "fg": [ 5253, 5255, 5254, 5252 ] }, - { "id": "edge", "fg": [ 5247, 5246 ] }, - { "id": "end_piece", "fg": [ 5249, 5251, 5250, 5248 ] }, - { "id": "unconnected", "fg": 5256 } + { "id": "center", "fg": 5306 }, + { "id": "corner", "fg": [ 5308, 5310, 5309, 5307 ] }, + { "id": "t_connection", "fg": [ 5318, 5320, 5319, 5317 ] }, + { "id": "edge", "fg": [ 5312, 5311 ] }, + { "id": "end_piece", "fg": [ 5314, 5316, 5315, 5313 ] }, + { "id": "unconnected", "fg": 5321 } ] }, { "id": "t_moss", "multitile": true, - "fg": 5273, - "bg": 5105, + "fg": 5338, + "bg": 5170, "additional_tiles": [ - { "id": "center", "bg": 5105, "fg": [ { "weight": 1, "sprite": 5257 }, { "weight": 1, "sprite": 5258 } ] }, - { "id": "corner", "bg": 5105, "fg": [ 5260, 5262, 5261, 5259 ] }, - { "id": "t_connection", "bg": 5105, "fg": [ 5270, 5272, 5271, 5269 ] }, - { "id": "edge", "bg": 5105, "fg": [ 5264, 5263 ] }, - { "id": "end_piece", "bg": 5105, "fg": [ 5266, 5268, 5267, 5265 ] }, - { "bg": 5105, "id": "unconnected", "fg": 5273 } + { "id": "center", "bg": 5170, "fg": [ { "weight": 1, "sprite": 5322 }, { "weight": 1, "sprite": 5323 } ] }, + { "id": "corner", "bg": 5170, "fg": [ 5325, 5327, 5326, 5324 ] }, + { "id": "t_connection", "bg": 5170, "fg": [ 5335, 5337, 5336, 5334 ] }, + { "id": "edge", "bg": 5170, "fg": [ 5329, 5328 ] }, + { "id": "end_piece", "bg": 5170, "fg": [ 5331, 5333, 5332, 5330 ] }, + { "bg": 5170, "id": "unconnected", "fg": 5338 } ] }, { "id": "t_moss_season_summer", "multitile": true, - "fg": 5307, - "bg": 5115, + "fg": 5372, + "bg": 5180, "additional_tiles": [ - { "id": "center", "bg": 5115, "fg": [ { "weight": 1, "sprite": 5291 }, { "weight": 1, "sprite": 5292 } ] }, - { "id": "corner", "bg": 5115, "fg": [ 5294, 5296, 5295, 5293 ] }, - { "id": "t_connection", "bg": 5115, "fg": [ 5304, 5306, 5305, 5303 ] }, - { "id": "edge", "bg": 5115, "fg": [ 5298, 5297 ] }, - { "id": "end_piece", "bg": 5115, "fg": [ 5300, 5302, 5301, 5299 ] }, - { "bg": 5115, "id": "unconnected", "fg": 5307 } + { "id": "center", "bg": 5180, "fg": [ { "weight": 1, "sprite": 5356 }, { "weight": 1, "sprite": 5357 } ] }, + { "id": "corner", "bg": 5180, "fg": [ 5359, 5361, 5360, 5358 ] }, + { "id": "t_connection", "bg": 5180, "fg": [ 5369, 5371, 5370, 5368 ] }, + { "id": "edge", "bg": 5180, "fg": [ 5363, 5362 ] }, + { "id": "end_piece", "bg": 5180, "fg": [ 5365, 5367, 5366, 5364 ] }, + { "bg": 5180, "id": "unconnected", "fg": 5372 } ] }, { "id": "t_moss_season_autumn", "multitile": true, - "fg": 5290, - "bg": 5110, + "fg": 5355, + "bg": 5175, "additional_tiles": [ - { "id": "center", "bg": 5110, "fg": [ { "weight": 1, "sprite": 5274 }, { "weight": 1, "sprite": 5275 } ] }, - { "id": "corner", "bg": 5110, "fg": [ 5277, 5279, 5278, 5276 ] }, - { "id": "t_connection", "bg": 5110, "fg": [ 5287, 5289, 5288, 5286 ] }, - { "id": "edge", "bg": 5110, "fg": [ 5281, 5280 ] }, - { "id": "end_piece", "bg": 5110, "fg": [ 5283, 5285, 5284, 5282 ] }, - { "bg": 5110, "id": "unconnected", "fg": 5290 } + { "id": "center", "bg": 5175, "fg": [ { "weight": 1, "sprite": 5339 }, { "weight": 1, "sprite": 5340 } ] }, + { "id": "corner", "bg": 5175, "fg": [ 5342, 5344, 5343, 5341 ] }, + { "id": "t_connection", "bg": 5175, "fg": [ 5352, 5354, 5353, 5351 ] }, + { "id": "edge", "bg": 5175, "fg": [ 5346, 5345 ] }, + { "id": "end_piece", "bg": 5175, "fg": [ 5348, 5350, 5349, 5347 ] }, + { "bg": 5175, "id": "unconnected", "fg": 5355 } ] }, { "id": "t_moss_season_winter", "multitile": true, - "fg": 4602, - "bg": 4584, + "fg": 4667, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": [ { "weight": 1, "sprite": 4584 }, { "weight": 1, "sprite": 4585 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 4589, 4591, 4590, 4588 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 4599, 4601, 4600, 4598 ] }, - { "id": "edge", "bg": 4584, "fg": [ 4593, 4592 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 4595, 4597, 4596, 4594 ] }, - { "bg": 4584, "id": "unconnected", "fg": 4602 } + { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 4649 }, { "weight": 1, "sprite": 4650 } ] }, + { "id": "corner", "bg": 4649, "fg": [ 4654, 4656, 4655, 4653 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 4664, 4666, 4665, 4663 ] }, + { "id": "edge", "bg": 4649, "fg": [ 4658, 4657 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 4660, 4662, 4661, 4659 ] }, + { "bg": 4649, "id": "unconnected", "fg": 4667 } ] }, { "id": "t_pavement", "multitile": true, - "fg": 5309, + "fg": 5374, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 5309 }, - { "weight": 1, "sprite": 5310 }, - { "weight": 1, "sprite": 5311 }, - { "weight": 1, "sprite": 5312 } + { "weight": 1, "sprite": 5374 }, + { "weight": 1, "sprite": 5375 }, + { "weight": 1, "sprite": 5376 }, + { "weight": 1, "sprite": 5377 } ] }, - { "id": "corner", "bg": 5104, "fg": [ 5321, 5324, 5323, 5320 ] }, - { "id": "t_connection", "fg": [ 5319, 5327, 5322, 5313 ] }, - { "id": "edge", "fg": [ 5326, 5318 ] }, - { "id": "end_piece", "fg": [ 5315, 5317, 5316, 5314 ] }, - { "id": "unconnected", "fg": 5325 } + { "id": "corner", "bg": 5169, "fg": [ 5386, 5389, 5388, 5385 ] }, + { "id": "t_connection", "fg": [ 5384, 5392, 5387, 5378 ] }, + { "id": "edge", "fg": [ 5391, 5383 ] }, + { "id": "end_piece", "fg": [ 5380, 5382, 5381, 5379 ] }, + { "id": "unconnected", "fg": 5390 } ] }, { "id": "t_pavement_season_summer", "multitile": true, - "fg": 5309, + "fg": 5374, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 5309 }, - { "weight": 1, "sprite": 5310 }, - { "weight": 1, "sprite": 5311 }, - { "weight": 1, "sprite": 5312 } + { "weight": 1, "sprite": 5374 }, + { "weight": 1, "sprite": 5375 }, + { "weight": 1, "sprite": 5376 }, + { "weight": 1, "sprite": 5377 } ] }, - { "id": "corner", "bg": 5114, "fg": [ 5321, 5324, 5323, 5320 ] }, - { "id": "t_connection", "fg": [ 5319, 5327, 5322, 5313 ] }, - { "id": "edge", "fg": [ 5326, 5318 ] }, - { "id": "end_piece", "fg": [ 5315, 5317, 5316, 5314 ] }, - { "id": "unconnected", "fg": 5325 } + { "id": "corner", "bg": 5179, "fg": [ 5386, 5389, 5388, 5385 ] }, + { "id": "t_connection", "fg": [ 5384, 5392, 5387, 5378 ] }, + { "id": "edge", "fg": [ 5391, 5383 ] }, + { "id": "end_piece", "fg": [ 5380, 5382, 5381, 5379 ] }, + { "id": "unconnected", "fg": 5390 } ] }, { "id": "t_pavement_season_autumn", "multitile": true, - "fg": 5309, + "fg": 5374, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 5309 }, - { "weight": 1, "sprite": 5310 }, - { "weight": 1, "sprite": 5311 }, - { "weight": 1, "sprite": 5312 } + { "weight": 1, "sprite": 5374 }, + { "weight": 1, "sprite": 5375 }, + { "weight": 1, "sprite": 5376 }, + { "weight": 1, "sprite": 5377 } ] }, - { "id": "corner", "bg": 5109, "fg": [ 5321, 5324, 5323, 5320 ] }, - { "id": "t_connection", "fg": [ 5319, 5327, 5322, 5313 ] }, - { "id": "edge", "fg": [ 5326, 5318 ] }, - { "id": "end_piece", "fg": [ 5315, 5317, 5316, 5314 ] }, - { "id": "unconnected", "fg": 5325 } + { "id": "corner", "bg": 5174, "fg": [ 5386, 5389, 5388, 5385 ] }, + { "id": "t_connection", "fg": [ 5384, 5392, 5387, 5378 ] }, + { "id": "edge", "fg": [ 5391, 5383 ] }, + { "id": "end_piece", "fg": [ 5380, 5382, 5381, 5379 ] }, + { "id": "unconnected", "fg": 5390 } ] }, - { "id": "t_pavement_season_winter", "fg": 4583 }, - { "id": "t_pavement_y", "fg": 5328 }, - { "id": "t_pavement_y_season_winter", "fg": 4583 }, + { "id": "t_pavement_season_winter", "fg": 4648 }, + { "id": "t_pavement_y", "fg": 5393 }, + { "id": "t_pavement_y_season_winter", "fg": 4648 }, { "id": "t_pit", - "fg": 5344, - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ], + "fg": 5409, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5329, "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] }, + { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "corner", - "fg": [ 5331, 5333, 5332, 5330 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5396, 5398, 5397, 5395 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_connection", - "fg": [ 5341, 5343, 5342, 5340 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5406, 5408, 5407, 5405 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "edge", - "fg": [ 5335, 5334 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5400, 5399 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "end_piece", - "fg": [ 5337, 5339, 5338, 5336 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5402, 5404, 5403, 5401 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "unconnected", - "fg": [ 5344, 5344 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5409, 5409 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] } ] }, { "id": "t_pit_season_summer", - "fg": 5344, - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ], + "fg": 5409, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5329, "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] }, + { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "corner", - "fg": [ 5331, 5333, 5332, 5330 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5396, 5398, 5397, 5395 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_connection", - "fg": [ 5341, 5343, 5342, 5340 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5406, 5408, 5407, 5405 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "edge", - "fg": [ 5335, 5334 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5400, 5399 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "end_piece", - "fg": [ 5337, 5339, 5338, 5336 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5402, 5404, 5403, 5401 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "unconnected", - "fg": [ 5344, 5344 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5409, 5409 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] } ] }, { "id": "t_pit_season_autumn", - "fg": 5344, - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ], + "fg": 5409, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5329, "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] }, + { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "corner", - "fg": [ 5331, 5333, 5332, 5330 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5396, 5398, 5397, 5395 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "t_connection", - "fg": [ 5341, 5343, 5342, 5340 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5406, 5408, 5407, 5405 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "edge", - "fg": [ 5335, 5334 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5400, 5399 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "end_piece", - "fg": [ 5337, 5339, 5338, 5336 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5402, 5404, 5403, 5401 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "unconnected", - "fg": [ 5344, 5344 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5409, 5409 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] } ] }, { "id": "t_pit_season_winter", - "fg": 5344, - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ], + "fg": 5409, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5329, "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] }, + { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "corner", - "fg": [ 5331, 5333, 5332, 5330 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5396, 5398, 5397, 5395 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "t_connection", - "fg": [ 5341, 5343, 5342, 5340 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5406, 5408, 5407, 5405 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "edge", - "fg": [ 5335, 5334 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5400, 5399 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "end_piece", - "fg": [ 5337, 5339, 5338, 5336 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5402, 5404, 5403, 5401 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "unconnected", - "fg": [ 5344, 5344 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5409, 5409 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + } + ] + }, + { + "id": "t_pit_corpsed", + "fg": 5425, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { + "id": "corner", + "fg": [ 5412, 5414, 5413, 5411 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + }, + { + "id": "t_connection", + "fg": [ 5422, 5424, 5423, 5421 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + }, + { + "id": "edge", + "fg": [ 5416, 5415 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + }, + { + "id": "end_piece", + "fg": [ 5418, 5420, 5419, 5417 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + }, + { + "id": "unconnected", + "fg": [ 5425, 5425 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + } + ] + }, + { + "id": "t_pit_corpsed_season_summer", + "fg": 5425, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { + "id": "corner", + "fg": [ 5412, 5414, 5413, 5411 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + }, + { + "id": "t_connection", + "fg": [ 5422, 5424, 5423, 5421 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + }, + { + "id": "edge", + "fg": [ 5416, 5415 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + }, + { + "id": "end_piece", + "fg": [ 5418, 5420, 5419, 5417 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + }, + { + "id": "unconnected", + "fg": [ 5425, 5425 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + } + ] + }, + { + "id": "t_pit_corpsed_season_autumn", + "fg": 5425, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { + "id": "corner", + "fg": [ 5412, 5414, 5413, 5411 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + }, + { + "id": "t_connection", + "fg": [ 5422, 5424, 5423, 5421 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + }, + { + "id": "edge", + "fg": [ 5416, 5415 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + }, + { + "id": "end_piece", + "fg": [ 5418, 5420, 5419, 5417 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + }, + { + "id": "unconnected", + "fg": [ 5425, 5425 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + } + ] + }, + { + "id": "t_pit_corpsed_season_winter", + "fg": 5425, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { + "id": "corner", + "fg": [ 5412, 5414, 5413, 5411 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + }, + { + "id": "t_connection", + "fg": [ 5422, 5424, 5423, 5421 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + }, + { + "id": "edge", + "fg": [ 5416, 5415 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + }, + { + "id": "end_piece", + "fg": [ 5418, 5420, 5419, 5417 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + }, + { + "id": "unconnected", + "fg": [ 5425, 5425 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] } ] }, { "id": "t_pit_covered", - "fg": 5360, - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ], + "fg": 5441, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5345, "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] }, + { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "corner", - "fg": [ 5347, 5349, 5348, 5346 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5428, 5430, 5429, 5427 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_connection", - "fg": [ 5357, 5359, 5358, 5356 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5438, 5440, 5439, 5437 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "edge", - "fg": [ 5351, 5350 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5432, 5431 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "end_piece", - "fg": [ 5353, 5355, 5354, 5352 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5434, 5436, 5435, 5433 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "unconnected", - "fg": [ 5360, 5360 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5441, 5441 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] } ] }, { "id": "t_pit_covered_season_summer", - "fg": 5360, - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ], + "fg": 5441, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5345, "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] }, + { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "corner", - "fg": [ 5347, 5349, 5348, 5346 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5428, 5430, 5429, 5427 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_connection", - "fg": [ 5357, 5359, 5358, 5356 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5438, 5440, 5439, 5437 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "edge", - "fg": [ 5351, 5350 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5432, 5431 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "end_piece", - "fg": [ 5353, 5355, 5354, 5352 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5434, 5436, 5435, 5433 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "unconnected", - "fg": [ 5360, 5360 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5441, 5441 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] } ] }, { "id": "t_pit_covered_season_autumn", - "fg": 5360, - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ], + "fg": 5441, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5345, "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] }, + { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "corner", - "fg": [ 5347, 5349, 5348, 5346 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5428, 5430, 5429, 5427 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "t_connection", - "fg": [ 5357, 5359, 5358, 5356 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5438, 5440, 5439, 5437 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "edge", - "fg": [ 5351, 5350 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5432, 5431 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "end_piece", - "fg": [ 5353, 5355, 5354, 5352 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5434, 5436, 5435, 5433 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "unconnected", - "fg": [ 5360, 5360 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5441, 5441 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] } ] }, { "id": "t_pit_covered_season_winter", - "fg": 5360, - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ], + "fg": 5441, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5345, "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] }, + { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "corner", - "fg": [ 5347, 5349, 5348, 5346 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5428, 5430, 5429, 5427 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "t_connection", - "fg": [ 5357, 5359, 5358, 5356 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5438, 5440, 5439, 5437 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "edge", - "fg": [ 5351, 5350 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5432, 5431 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "end_piece", - "fg": [ 5353, 5355, 5354, 5352 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5434, 5436, 5435, 5433 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "unconnected", - "fg": [ 5360, 5360 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5441, 5441 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] } ] }, { "id": "t_pit_glass", - "fg": 5376, - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ], + "fg": 5457, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5361, "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] }, + { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "corner", - "fg": [ 5363, 5365, 5364, 5362 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5444, 5446, 5445, 5443 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_connection", - "fg": [ 5373, 5375, 5374, 5372 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5454, 5456, 5455, 5453 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "edge", - "fg": [ 5367, 5366 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5448, 5447 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "end_piece", - "fg": [ 5369, 5371, 5370, 5368 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5450, 5452, 5451, 5449 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "unconnected", - "fg": [ 5376, 5376 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5457, 5457 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] } ] }, { "id": "t_pit_glass_season_summer", - "fg": 5376, - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ], + "fg": 5457, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5361, "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] }, + { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "corner", - "fg": [ 5363, 5365, 5364, 5362 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5444, 5446, 5445, 5443 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_connection", - "fg": [ 5373, 5375, 5374, 5372 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5454, 5456, 5455, 5453 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "edge", - "fg": [ 5367, 5366 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5448, 5447 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "end_piece", - "fg": [ 5369, 5371, 5370, 5368 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5450, 5452, 5451, 5449 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "unconnected", - "fg": [ 5376, 5376 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5457, 5457 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] } ] }, { "id": "t_pit_glass_season_autumn", - "fg": 5376, - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ], + "fg": 5457, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5361, "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] }, + { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "corner", - "fg": [ 5363, 5365, 5364, 5362 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5444, 5446, 5445, 5443 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "t_connection", - "fg": [ 5373, 5375, 5374, 5372 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5454, 5456, 5455, 5453 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "edge", - "fg": [ 5367, 5366 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5448, 5447 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "end_piece", - "fg": [ 5369, 5371, 5370, 5368 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5450, 5452, 5451, 5449 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "unconnected", - "fg": [ 5376, 5376 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5457, 5457 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] } ] }, { "id": "t_pit_glass_season_winter", - "fg": 5376, - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ], + "fg": 5457, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5361, "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] }, + { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "corner", - "fg": [ 5363, 5365, 5364, 5362 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5444, 5446, 5445, 5443 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "t_connection", - "fg": [ 5373, 5375, 5374, 5372 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5454, 5456, 5455, 5453 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "edge", - "fg": [ 5367, 5366 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5448, 5447 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "end_piece", - "fg": [ 5369, 5371, 5370, 5368 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5450, 5452, 5451, 5449 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "unconnected", - "fg": [ 5376, 5376 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5457, 5457 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] } ] }, { "id": "t_pit_glass_covered", - "fg": 5392, - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ], + "fg": 5473, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5377, "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] }, + { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "corner", - "fg": [ 5379, 5381, 5380, 5378 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5460, 5462, 5461, 5459 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_connection", - "fg": [ 5389, 5391, 5390, 5388 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5470, 5472, 5471, 5469 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "edge", - "fg": [ 5383, 5382 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5464, 5463 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "end_piece", - "fg": [ 5385, 5387, 5386, 5384 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "unconnected", - "fg": [ 5392, 5392 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5473, 5473 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] } ] }, { "id": "t_pit_glass_covered_season_summer", - "fg": 5392, - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ], + "fg": 5473, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5377, "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] }, + { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "corner", - "fg": [ 5379, 5381, 5380, 5378 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5460, 5462, 5461, 5459 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_connection", - "fg": [ 5389, 5391, 5390, 5388 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5470, 5472, 5471, 5469 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "edge", - "fg": [ 5383, 5382 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5464, 5463 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "end_piece", - "fg": [ 5385, 5387, 5386, 5384 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "unconnected", - "fg": [ 5392, 5392 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5473, 5473 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] } ] }, { "id": "t_pit_glass_covered_season_autumn", - "fg": 5392, - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ], + "fg": 5473, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5377, "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] }, + { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "corner", - "fg": [ 5379, 5381, 5380, 5378 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5460, 5462, 5461, 5459 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "t_connection", - "fg": [ 5389, 5391, 5390, 5388 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5470, 5472, 5471, 5469 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "edge", - "fg": [ 5383, 5382 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5464, 5463 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "end_piece", - "fg": [ 5385, 5387, 5386, 5384 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "unconnected", - "fg": [ 5392, 5392 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5473, 5473 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] } ] }, { "id": "t_pit_glass_covered_season_winter", - "fg": 5392, - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ], + "fg": 5473, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5377, "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] }, + { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "corner", - "fg": [ 5379, 5381, 5380, 5378 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5460, 5462, 5461, 5459 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "t_connection", - "fg": [ 5389, 5391, 5390, 5388 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5470, 5472, 5471, 5469 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "edge", - "fg": [ 5383, 5382 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5464, 5463 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "end_piece", - "fg": [ 5385, 5387, 5386, 5384 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "unconnected", - "fg": [ 5392, 5392 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5473, 5473 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] } ] }, { "id": "t_pit_shallow", - "fg": 5408, - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ], + "fg": 5489, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5393, "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] }, + { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "corner", - "fg": [ 5395, 5397, 5396, 5394 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_connection", - "fg": [ 5405, 5407, 5406, 5404 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5486, 5488, 5487, 5485 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "edge", - "fg": [ 5399, 5398 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5480, 5479 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "end_piece", - "fg": [ 5401, 5403, 5402, 5400 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "unconnected", - "fg": [ 5408, 5408 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5489, 5489 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] } ] }, { "id": "t_pit_shallow_season_summer", - "fg": 5408, - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ], + "fg": 5489, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5393, "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] }, + { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "corner", - "fg": [ 5395, 5397, 5396, 5394 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_connection", - "fg": [ 5405, 5407, 5406, 5404 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5486, 5488, 5487, 5485 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "edge", - "fg": [ 5399, 5398 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5480, 5479 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "end_piece", - "fg": [ 5401, 5403, 5402, 5400 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "unconnected", - "fg": [ 5408, 5408 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5489, 5489 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] } ] }, { "id": "t_pit_shallow_season_autumn", - "fg": 5408, - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ], + "fg": 5489, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5393, "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] }, + { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "corner", - "fg": [ 5395, 5397, 5396, 5394 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "t_connection", - "fg": [ 5405, 5407, 5406, 5404 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5486, 5488, 5487, 5485 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "edge", - "fg": [ 5399, 5398 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5480, 5479 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "end_piece", - "fg": [ 5401, 5403, 5402, 5400 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "unconnected", - "fg": [ 5408, 5408 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5489, 5489 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] } ] }, { "id": "t_pit_shallow_season_winter", - "fg": 5408, - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ], + "fg": 5489, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5393, "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] }, + { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "corner", - "fg": [ 5395, 5397, 5396, 5394 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "t_connection", - "fg": [ 5405, 5407, 5406, 5404 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5486, 5488, 5487, 5485 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "edge", - "fg": [ 5399, 5398 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5480, 5479 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "end_piece", - "fg": [ 5401, 5403, 5402, 5400 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "unconnected", - "fg": [ 5408, 5408 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5489, 5489 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] } ] }, { "id": "t_pit_spiked", - "fg": 5424, - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ], + "fg": 5505, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5409, "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] }, + { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "corner", - "fg": [ 5411, 5413, 5412, 5410 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_connection", - "fg": [ 5421, 5423, 5422, 5420 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5502, 5504, 5503, 5501 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "edge", - "fg": [ 5415, 5414 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5496, 5495 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "end_piece", - "fg": [ 5417, 5419, 5418, 5416 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "unconnected", - "fg": [ 5424, 5424 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5505, 5505 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] } ] }, { "id": "t_pit_spiked_season_summer", - "fg": 5424, - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ], + "fg": 5505, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5409, "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] }, + { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "corner", - "fg": [ 5411, 5413, 5412, 5410 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_connection", - "fg": [ 5421, 5423, 5422, 5420 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5502, 5504, 5503, 5501 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "edge", - "fg": [ 5415, 5414 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5496, 5495 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "end_piece", - "fg": [ 5417, 5419, 5418, 5416 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "unconnected", - "fg": [ 5424, 5424 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5505, 5505 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] } ] }, { "id": "t_pit_spiked_season_autumn", - "fg": 5424, - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ], + "fg": 5505, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5409, "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] }, + { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "corner", - "fg": [ 5411, 5413, 5412, 5410 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "t_connection", - "fg": [ 5421, 5423, 5422, 5420 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5502, 5504, 5503, 5501 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "edge", - "fg": [ 5415, 5414 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5496, 5495 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "end_piece", - "fg": [ 5417, 5419, 5418, 5416 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "unconnected", - "fg": [ 5424, 5424 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5505, 5505 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] } ] }, { "id": "t_pit_spiked_season_winter", - "fg": 5424, - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ], + "fg": 5505, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5409, "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] }, + { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "corner", - "fg": [ 5411, 5413, 5412, 5410 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "t_connection", - "fg": [ 5421, 5423, 5422, 5420 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5502, 5504, 5503, 5501 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "edge", - "fg": [ 5415, 5414 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5496, 5495 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "end_piece", - "fg": [ 5417, 5419, 5418, 5416 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "unconnected", - "fg": [ 5424, 5424 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5505, 5505 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] } ] }, { "id": "t_pit_spiked_covered", - "fg": 5440, - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ], + "fg": 5521, + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5425, "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] }, + { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "corner", - "fg": [ 5427, 5429, 5428, 5426 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_connection", - "fg": [ 5437, 5439, 5438, 5436 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5518, 5520, 5519, 5517 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "edge", - "fg": [ 5431, 5430 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5512, 5511 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "end_piece", - "fg": [ 5433, 5435, 5434, 5432 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "unconnected", - "fg": [ 5440, 5440 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 5521, 5521 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] } ] }, { "id": "t_pit_spiked_covered_season_summer", - "fg": 5440, - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ], + "fg": 5521, + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5425, "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] }, + { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "corner", - "fg": [ 5427, 5429, 5428, 5426 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_connection", - "fg": [ 5437, 5439, 5438, 5436 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5518, 5520, 5519, 5517 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "edge", - "fg": [ 5431, 5430 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5512, 5511 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "end_piece", - "fg": [ 5433, 5435, 5434, 5432 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "unconnected", - "fg": [ 5440, 5440 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 5521, 5521 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] } ] }, { "id": "t_pit_spiked_covered_season_autumn", - "fg": 5440, - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ], + "fg": 5521, + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5425, "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] }, + { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "corner", - "fg": [ 5427, 5429, 5428, 5426 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "t_connection", - "fg": [ 5437, 5439, 5438, 5436 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5518, 5520, 5519, 5517 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "edge", - "fg": [ 5431, 5430 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5512, 5511 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "end_piece", - "fg": [ 5433, 5435, 5434, 5432 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, { "id": "unconnected", - "fg": [ 5440, 5440 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 5521, 5521 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] } ] }, { "id": "t_pit_spiked_covered_season_winter", - "fg": 5440, - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ], + "fg": 5521, + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5425, "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] }, + { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "corner", - "fg": [ 5427, 5429, 5428, 5426 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "t_connection", - "fg": [ 5437, 5439, 5438, 5436 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5518, 5520, 5519, 5517 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "edge", - "fg": [ 5431, 5430 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5512, 5511 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "end_piece", - "fg": [ 5433, 5435, 5434, 5432 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, { "id": "unconnected", - "fg": [ 5440, 5440 ], - "bg": [ { "weight": 100, "sprite": 4584 }, { "weight": 100, "sprite": 4585 } ] + "fg": [ 5521, 5521 ], + "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] } ] }, { "id": "t_privacy_fence", "multitile": true, - "fg": 5456, - "bg": 5104, + "fg": 5537, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": 5441 }, - { "id": "corner", "bg": 5104, "fg": [ 5443, 5445, 5444, 5442 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 5453, 5455, 5454, 5452 ] }, - { "id": "edge", "bg": 5104, "fg": [ 5447, 5446 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 5449, 5451, 5450, 5448 ] }, - { "bg": 5104, "id": "unconnected", "fg": [ 5456, 5456 ] } + { "id": "center", "bg": 5169, "fg": 5522 }, + { "id": "corner", "bg": 5169, "fg": [ 5524, 5526, 5525, 5523 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5534, 5536, 5535, 5533 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5528, 5527 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5530, 5532, 5531, 5529 ] }, + { "bg": 5169, "id": "unconnected", "fg": [ 5537, 5537 ] } ] }, { "id": "t_privacy_fence_season_winter", "multitile": true, - "fg": 5456, - "bg": 4584, + "fg": 5537, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": 5441 }, - { "id": "corner", "bg": 4584, "fg": [ 5443, 5445, 5444, 5442 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 5453, 5455, 5454, 5452 ] }, - { "id": "edge", "bg": 4584, "fg": [ 5447, 5446 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 5449, 5451, 5450, 5448 ] }, - { "bg": 4584, "id": "unconnected", "fg": [ 5456, 5456 ] } + { "id": "center", "bg": 4649, "fg": 5522 }, + { "id": "corner", "bg": 4649, "fg": [ 5524, 5526, 5525, 5523 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 5534, 5536, 5535, 5533 ] }, + { "id": "edge", "bg": 4649, "fg": [ 5528, 5527 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 5530, 5532, 5531, 5529 ] }, + { "bg": 4649, "id": "unconnected", "fg": [ 5537, 5537 ] } ] }, { "id": "t_railing", "multitile": true, - "fg": 5472, - "bg": 4787, + "fg": 5553, + "bg": 4852, "additional_tiles": [ - { "id": "center", "bg": 4787, "fg": 5457 }, - { "id": "corner", "bg": 4787, "fg": [ 5459, 5461, 5460, 5458 ] }, - { "id": "t_connection", "bg": 4787, "fg": [ 5469, 5471, 5470, 5468 ] }, - { "id": "edge", "bg": 4787, "fg": [ 5463, 5462 ] }, - { "id": "end_piece", "bg": 4787, "fg": [ 5465, 5467, 5466, 5464 ] }, - { "bg": 4787, "id": "unconnected", "fg": [ 5472, 5472 ] } + { "id": "center", "bg": 4852, "fg": 5538 }, + { "id": "corner", "bg": 4852, "fg": [ 5540, 5542, 5541, 5539 ] }, + { "id": "t_connection", "bg": 4852, "fg": [ 5550, 5552, 5551, 5549 ] }, + { "id": "edge", "bg": 4852, "fg": [ 5544, 5543 ] }, + { "id": "end_piece", "bg": 4852, "fg": [ 5546, 5548, 5547, 5545 ] }, + { "bg": 4852, "id": "unconnected", "fg": [ 5553, 5553 ] } ] }, { "id": "t_railroad_rubble", "multitile": true, - "fg": 5489, - "bg": 5104, + "fg": 5570, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": [ { "weight": 1, "sprite": 5473 }, { "weight": 1, "sprite": 5474 } ] }, - { "id": "corner", "bg": 5104, "fg": [ 5476, 5478, 5477, 5475 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 5486, 5488, 5487, 5485 ] }, - { "id": "edge", "bg": 5104, "fg": [ 5480, 5479 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 5482, 5484, 5483, 5481 ] }, - { "bg": 5104, "id": "unconnected", "fg": 5489 } + { "id": "center", "bg": 5169, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, + { "id": "corner", "bg": 5169, "fg": [ 5557, 5559, 5558, 5556 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5567, 5569, 5568, 5566 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5561, 5560 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5563, 5565, 5564, 5562 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5570 } ] }, { "id": "t_railroad_rubble_season_summer", "multitile": true, - "fg": 5489, - "bg": 5114, + "fg": 5570, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": [ { "weight": 1, "sprite": 5473 }, { "weight": 1, "sprite": 5474 } ] }, - { "id": "corner", "bg": 5114, "fg": [ 5476, 5478, 5477, 5475 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 5486, 5488, 5487, 5485 ] }, - { "id": "edge", "bg": 5114, "fg": [ 5480, 5479 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 5482, 5484, 5483, 5481 ] }, - { "bg": 5114, "id": "unconnected", "fg": 5489 } + { "id": "center", "bg": 5179, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, + { "id": "corner", "bg": 5179, "fg": [ 5557, 5559, 5558, 5556 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 5567, 5569, 5568, 5566 ] }, + { "id": "edge", "bg": 5179, "fg": [ 5561, 5560 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 5563, 5565, 5564, 5562 ] }, + { "bg": 5179, "id": "unconnected", "fg": 5570 } ] }, { "id": "t_railroad_rubble_season_autumn", "multitile": true, - "fg": 5489, - "bg": 5109, + "fg": 5570, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": [ { "weight": 1, "sprite": 5473 }, { "weight": 1, "sprite": 5474 } ] }, - { "id": "corner", "bg": 5109, "fg": [ 5476, 5478, 5477, 5475 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 5486, 5488, 5487, 5485 ] }, - { "id": "edge", "bg": 5109, "fg": [ 5480, 5479 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 5482, 5484, 5483, 5481 ] }, - { "bg": 5109, "id": "unconnected", "fg": 5489 } + { "id": "center", "bg": 5174, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, + { "id": "corner", "bg": 5174, "fg": [ 5557, 5559, 5558, 5556 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 5567, 5569, 5568, 5566 ] }, + { "id": "edge", "bg": 5174, "fg": [ 5561, 5560 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 5563, 5565, 5564, 5562 ] }, + { "bg": 5174, "id": "unconnected", "fg": 5570 } ] }, { "id": "t_railroad_rubble_season_winter", "multitile": true, - "fg": 5489, - "bg": 4584, + "fg": 5570, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": [ { "weight": 1, "sprite": 5473 }, { "weight": 1, "sprite": 5474 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 5476, 5478, 5477, 5475 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 5486, 5488, 5487, 5485 ] }, - { "id": "edge", "bg": 4584, "fg": [ 5480, 5479 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 5482, 5484, 5483, 5481 ] }, - { "bg": 4584, "id": "unconnected", "fg": 5489 } + { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, + { "id": "corner", "bg": 4649, "fg": [ 5557, 5559, 5558, 5556 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 5567, 5569, 5568, 5566 ] }, + { "id": "edge", "bg": 4649, "fg": [ 5561, 5560 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 5563, 5565, 5564, 5562 ] }, + { "bg": 4649, "id": "unconnected", "fg": 5570 } ] }, { "id": "t_railroad_track_small", - "fg": 5496, - "bg": 5473, + "fg": 5577, + "bg": 5554, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 5473, "fg": 5490 }, - { "id": "corner", "bg": 5473, "fg": [ 5492, 5494, 5493, 5491 ] }, - { "id": "t_connection", "bg": 5473, "fg": [ 5498, 5500, 5499, 5497 ] }, - { "id": "edge", "bg": 5473, "fg": [ 5496, 5495 ] }, - { "id": "end_piece", "bg": 5473, "fg": [ 5496, 5495, 5496, 5495 ] }, - { "id": "unconnected", "bg": 5473, "fg": [ 5496, 5495 ] } + { "id": "center", "bg": 5554, "fg": 5571 }, + { "id": "corner", "bg": 5554, "fg": [ 5573, 5575, 5574, 5572 ] }, + { "id": "t_connection", "bg": 5554, "fg": [ 5579, 5581, 5580, 5578 ] }, + { "id": "edge", "bg": 5554, "fg": [ 5577, 5576 ] }, + { "id": "end_piece", "bg": 5554, "fg": [ 5577, 5576, 5577, 5576 ] }, + { "id": "unconnected", "bg": 5554, "fg": [ 5577, 5576 ] } ] }, - { "id": "t_rdoor_c", "fg": 5502 }, - { "id": "t_rdoor_o", "fg": 5503 }, - { "id": "t_rdoor_b", "fg": 5501 }, + { "id": "t_rdoor_c", "fg": 5583 }, + { "id": "t_rdoor_o", "fg": 5584 }, + { "id": "t_rdoor_b", "fg": 5582 }, { "id": "t_reinforced_glass", "multitile": true, - "fg": 5519, + "fg": 5600, "additional_tiles": [ - { "id": "center", "fg": 5504 }, - { "id": "corner", "fg": [ 5506, 5508, 5507, 5505 ] }, - { "id": "t_connection", "fg": [ 5516, 5518, 5517, 5515 ] }, - { "id": "edge", "fg": [ 5510, 5509 ] }, - { "id": "end_piece", "fg": [ 5512, 5514, 5513, 5511 ] }, - { "id": "unconnected", "fg": 5519 } + { "id": "center", "fg": 5585 }, + { "id": "corner", "fg": [ 5587, 5589, 5588, 5586 ] }, + { "id": "t_connection", "fg": [ 5597, 5599, 5598, 5596 ] }, + { "id": "edge", "fg": [ 5591, 5590 ] }, + { "id": "end_piece", "fg": [ 5593, 5595, 5594, 5592 ] }, + { "id": "unconnected", "fg": 5600 } ] }, { "id": "t_rock", "multitile": true, - "fg": 5535, + "fg": 5616, "additional_tiles": [ - { "id": "center", "fg": 5520 }, - { "id": "corner", "fg": [ 5522, 5524, 5523, 5521 ] }, - { "id": "t_connection", "fg": [ 5532, 5534, 5533, 5531 ] }, - { "id": "edge", "fg": [ 5526, 5525 ] }, - { "id": "end_piece", "fg": [ 5528, 5530, 5529, 5527 ] }, - { "id": "unconnected", "fg": 5535 } + { "id": "center", "fg": 5601 }, + { "id": "corner", "fg": [ 5603, 5605, 5604, 5602 ] }, + { "id": "t_connection", "fg": [ 5613, 5615, 5614, 5612 ] }, + { "id": "edge", "fg": [ 5607, 5606 ] }, + { "id": "end_piece", "fg": [ 5609, 5611, 5610, 5608 ] }, + { "id": "unconnected", "fg": 5616 } ] }, { "id": "t_rock_floor", "multitile": true, - "fg": 5553, + "fg": 5634, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 5536 }, { "weight": 1, "sprite": 5537 }, { "weight": 1, "sprite": 5538 } ] + "fg": [ { "weight": 1, "sprite": 5617 }, { "weight": 1, "sprite": 5618 }, { "weight": 1, "sprite": 5619 } ] }, - { "id": "corner", "fg": [ 5540, 5542, 5541, 5539 ] }, - { "id": "t_connection", "fg": [ 5550, 5552, 5551, 5549 ] }, - { "id": "edge", "fg": [ 5544, 5543 ] }, - { "id": "end_piece", "fg": [ 5546, 5548, 5547, 5545 ] }, - { "id": "unconnected", "fg": 5553 } + { "id": "corner", "fg": [ 5621, 5623, 5622, 5620 ] }, + { "id": "t_connection", "fg": [ 5631, 5633, 5632, 5630 ] }, + { "id": "edge", "fg": [ 5625, 5624 ] }, + { "id": "end_piece", "fg": [ 5627, 5629, 5628, 5626 ] }, + { "id": "unconnected", "fg": 5634 } ] }, { "id": "t_rock_wall", "multitile": true, - "fg": 5569, + "fg": 5650, "additional_tiles": [ - { "id": "center", "fg": 5554 }, - { "id": "corner", "fg": [ 5556, 5558, 5557, 5555 ] }, - { "id": "t_connection", "fg": [ 5566, 5568, 5567, 5565 ] }, - { "id": "edge", "fg": [ 5560, 5559 ] }, - { "id": "end_piece", "fg": [ 5562, 5564, 5563, 5561 ] }, - { "id": "unconnected", "fg": 5569 } + { "id": "center", "fg": 5635 }, + { "id": "corner", "fg": [ 5637, 5639, 5638, 5636 ] }, + { "id": "t_connection", "fg": [ 5647, 5649, 5648, 5646 ] }, + { "id": "edge", "fg": [ 5641, 5640 ] }, + { "id": "end_piece", "fg": [ 5643, 5645, 5644, 5642 ] }, + { "id": "unconnected", "fg": 5650 } ] }, { "id": "t_sand", "multitile": true, - "fg": 5588, - "bg": 5104, + "fg": 5669, + "bg": 5169, "additional_tiles": [ { "id": "center", - "bg": 5104, + "bg": 5169, "fg": [ - { "weight": 1, "sprite": 5570 }, - { "weight": 1, "sprite": 5571 }, - { "weight": 1, "sprite": 5572 }, - { "weight": 1, "sprite": 5573 } + { "weight": 1, "sprite": 5651 }, + { "weight": 1, "sprite": 5652 }, + { "weight": 1, "sprite": 5653 }, + { "weight": 1, "sprite": 5654 } ] }, - { "id": "corner", "bg": 5104, "fg": [ 5575, 5577, 5576, 5574 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 5585, 5587, 5586, 5584 ] }, - { "id": "edge", "bg": 5104, "fg": [ 5579, 5578 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 5581, 5583, 5582, 5580 ] }, - { "bg": 5104, "id": "unconnected", "fg": 5588 } + { "id": "corner", "bg": 5169, "fg": [ 5656, 5658, 5657, 5655 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 5666, 5668, 5667, 5665 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5660, 5659 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5662, 5664, 5663, 5661 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5669 } ] }, { "id": "t_sand_season_summer", "multitile": true, - "fg": 5588, - "bg": 5114, + "fg": 5669, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": [ { "weight": 1, "sprite": 5570 }, { "weight": 1, "sprite": 5571 } ] }, - { "id": "corner", "bg": 5114, "fg": [ 5575, 5577, 5576, 5574 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 5585, 5587, 5586, 5584 ] }, - { "id": "edge", "bg": 5114, "fg": [ 5579, 5578 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 5581, 5583, 5582, 5580 ] }, - { "bg": 5114, "id": "unconnected", "fg": 5588 } + { "id": "center", "bg": 5179, "fg": [ { "weight": 1, "sprite": 5651 }, { "weight": 1, "sprite": 5652 } ] }, + { "id": "corner", "bg": 5179, "fg": [ 5656, 5658, 5657, 5655 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 5666, 5668, 5667, 5665 ] }, + { "id": "edge", "bg": 5179, "fg": [ 5660, 5659 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 5662, 5664, 5663, 5661 ] }, + { "bg": 5179, "id": "unconnected", "fg": 5669 } ] }, { "id": "t_sand_season_autumn", "multitile": true, - "fg": 5588, - "bg": 5109, + "fg": 5669, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": [ { "weight": 1, "sprite": 5570 }, { "weight": 1, "sprite": 5571 } ] }, - { "id": "corner", "bg": 5109, "fg": [ 5575, 5577, 5576, 5574 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 5585, 5587, 5586, 5584 ] }, - { "id": "edge", "bg": 5109, "fg": [ 5579, 5578 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 5581, 5583, 5582, 5580 ] }, - { "bg": 5109, "id": "unconnected", "fg": 5588 } + { "id": "center", "bg": 5174, "fg": [ { "weight": 1, "sprite": 5651 }, { "weight": 1, "sprite": 5652 } ] }, + { "id": "corner", "bg": 5174, "fg": [ 5656, 5658, 5657, 5655 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 5666, 5668, 5667, 5665 ] }, + { "id": "edge", "bg": 5174, "fg": [ 5660, 5659 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 5662, 5664, 5663, 5661 ] }, + { "bg": 5174, "id": "unconnected", "fg": 5669 } ] }, { "id": "t_sand_season_winter", "multitile": true, - "fg": 5588, - "bg": 4584, + "fg": 5669, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": [ { "weight": 1, "sprite": 5570 }, { "weight": 1, "sprite": 5571 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 5575, 5577, 5576, 5574 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 5585, 5587, 5586, 5584 ] }, - { "id": "edge", "bg": 4584, "fg": [ 5579, 5578 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 5581, 5583, 5582, 5580 ] }, - { "bg": 4584, "id": "unconnected", "fg": 5588 } + { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 5651 }, { "weight": 1, "sprite": 5652 } ] }, + { "id": "corner", "bg": 4649, "fg": [ 5656, 5658, 5657, 5655 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 5666, 5668, 5667, 5665 ] }, + { "id": "edge", "bg": 4649, "fg": [ 5660, 5659 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 5662, 5664, 5663, 5661 ] }, + { "bg": 4649, "id": "unconnected", "fg": 5669 } ] }, { "id": [ "t_sandmound_season_spring", "t_sandmound_season_summer", "t_sandmound_season_autumn" ], - "fg": 5589 + "fg": 5670 }, - { "id": "t_sandmound_season_winter", "fg": 7179 }, + { "id": "t_sandmound_season_winter", "fg": 7270 }, { "id": "t_scrap_floor", "multitile": true, - "fg": 5620, + "fg": 5701, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 5590 }, { "weight": 1, "sprite": 5591 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 5671 }, { "weight": 1, "sprite": 5672 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 5594, 5598, 5592, 5596 ] }, { "weight": 1, "sprite": [ 5595, 5599, 5593, 5597 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5675, 5679, 5673, 5677 ] }, { "weight": 1, "sprite": [ 5676, 5680, 5674, 5678 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 5614, 5618, 5616, 5612 ] }, { "weight": 1, "sprite": [ 5615, 5619, 5617, 5613 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5695, 5699, 5697, 5693 ] }, { "weight": 1, "sprite": [ 5696, 5700, 5698, 5694 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 5602, 5600 ] }, { "weight": 1, "sprite": [ 5603, 5601 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5683, 5681 ] }, { "weight": 1, "sprite": [ 5684, 5682 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 5606, 5610, 5608, 5604 ] }, { "weight": 1, "sprite": [ 5607, 5611, 5609, 5605 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5687, 5691, 5689, 5685 ] }, { "weight": 1, "sprite": [ 5688, 5692, 5690, 5686 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 5620 }, { "weight": 1, "sprite": 5621 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 5701 }, { "weight": 1, "sprite": 5702 } ] } ] }, { "id": "t_scrap_wall", "multitile": true, - "fg": 5637, + "fg": 5718, "additional_tiles": [ - { "id": "center", "fg": 5622 }, - { "id": "corner", "fg": [ 5624, 5626, 5625, 5623 ] }, - { "id": "t_connection", "fg": [ 5634, 5636, 5635, 5633 ] }, - { "id": "edge", "fg": [ 5628, 5627 ] }, - { "id": "end_piece", "fg": [ 5630, 5632, 5631, 5629 ] }, - { "id": "unconnected", "fg": 5637 } + { "id": "center", "fg": 5703 }, + { "id": "corner", "fg": [ 5705, 5707, 5706, 5704 ] }, + { "id": "t_connection", "fg": [ 5715, 5717, 5716, 5714 ] }, + { "id": "edge", "fg": [ 5709, 5708 ] }, + { "id": "end_piece", "fg": [ 5711, 5713, 5712, 5710 ] }, + { "id": "unconnected", "fg": 5718 } ] }, { "id": "t_screened_porch_wall", "multitile": true, - "fg": 5653, - "bg": 5001, + "fg": 5734, + "bg": 5066, "additional_tiles": [ - { "id": "center", "bg": 5001, "fg": 5638 }, - { "id": "corner", "bg": 5001, "fg": [ 5640, 5642, 5641, 5639 ] }, - { "id": "t_connection", "bg": 5001, "fg": [ 5650, 5652, 5651, 5649 ] }, - { "id": "edge", "bg": 5001, "fg": [ 5644, 5643 ] }, - { "id": "end_piece", "bg": 5001, "fg": [ 5646, 5648, 5647, 5645 ] }, - { "bg": 5001, "id": "unconnected", "fg": [ 5653, 5653 ] } + { "id": "center", "bg": 5066, "fg": 5719 }, + { "id": "corner", "bg": 5066, "fg": [ 5721, 5723, 5722, 5720 ] }, + { "id": "t_connection", "bg": 5066, "fg": [ 5731, 5733, 5732, 5730 ] }, + { "id": "edge", "bg": 5066, "fg": [ 5725, 5724 ] }, + { "id": "end_piece", "bg": 5066, "fg": [ 5727, 5729, 5728, 5726 ] }, + { "bg": 5066, "id": "unconnected", "fg": [ 5734, 5734 ] } ] }, { "id": "t_sewage", "multitile": true, - "fg": 5669, + "fg": 5750, "additional_tiles": [ - { "id": "center", "fg": 5654 }, - { "id": "corner", "fg": [ 5656, 5658, 5657, 5655 ] }, - { "id": "t_connection", "fg": [ 5666, 5668, 5667, 5665 ] }, - { "id": "edge", "fg": [ 5660, 5659 ] }, - { "id": "end_piece", "fg": [ 5662, 5664, 5663, 5661 ] }, - { "id": "unconnected", "fg": [ 5669, 5669 ] } + { "id": "center", "fg": 5735 }, + { "id": "corner", "fg": [ 5737, 5739, 5738, 5736 ] }, + { "id": "t_connection", "fg": [ 5747, 5749, 5748, 5746 ] }, + { "id": "edge", "fg": [ 5741, 5740 ] }, + { "id": "end_piece", "fg": [ 5743, 5745, 5744, 5742 ] }, + { "id": "unconnected", "fg": [ 5750, 5750 ] } ] }, { "id": "t_sewage_pipe", "multitile": true, - "fg": 5685, + "fg": 5766, "additional_tiles": [ - { "id": "center", "fg": 5670 }, - { "id": "corner", "fg": [ 5672, 5674, 5673, 5671 ] }, - { "id": "t_connection", "fg": [ 5682, 5684, 5683, 5681 ] }, - { "id": "edge", "fg": [ 5676, 5675 ] }, - { "id": "end_piece", "fg": [ 5678, 5680, 5679, 5677 ] }, - { "id": "unconnected", "fg": [ 5685, 5685 ] } + { "id": "center", "fg": 5751 }, + { "id": "corner", "fg": [ 5753, 5755, 5754, 5752 ] }, + { "id": "t_connection", "fg": [ 5763, 5765, 5764, 5762 ] }, + { "id": "edge", "fg": [ 5757, 5756 ] }, + { "id": "end_piece", "fg": [ 5759, 5761, 5760, 5758 ] }, + { "id": "unconnected", "fg": [ 5766, 5766 ] } ] }, { "id": "t_shingle_flat_roof", "multitile": true, - "fg": 5701, - "additional_tiles": [ - { "id": "center", "fg": 5686 }, - { "id": "corner", "fg": [ 5688, 5690, 5689, 5687 ] }, - { "id": "t_connection", "fg": [ 5698, 5700, 5699, 5697 ] }, - { "id": "edge", "fg": [ 5692, 5691 ] }, - { "id": "end_piece", "fg": [ 5694, 5696, 5695, 5693 ] }, - { "id": "unconnected", "fg": 5701 } - ] - }, - { "id": "t_shrub", "fg": 5702, "bg": 5104 }, - { "id": "t_shrub_season_summer", "fg": 5702, "bg": 5114 }, - { "id": "t_shrub_season_autumn", "fg": 5702, "bg": 5109 }, - { "id": "t_shrub_season_winter", "fg": 5704, "bg": 4582 }, - { "id": "t_shrub_blackberry", "fg": 5705, "bg": 5104 }, - { "id": "t_shrub_blackberry_harvested", "fg": 5706, "bg": 5114 }, - { "id": "t_shrub_blackberry_season_summer", "fg": 5707, "bg": 5114 }, - { "id": "t_shrub_blackberry_season_autumn", "fg": 5705, "bg": 5109 }, - { "id": "t_shrub_blackberry_season_winter", "fg": 5708, "bg": 4582 }, - { "id": "t_shrub_blueberry", "fg": 5709, "bg": 5104 }, - { "id": "t_shrub_blueberry_harvested", "fg": 5710, "bg": 5114 }, - { "id": "t_shrub_blueberry_season_summer", "fg": 5711, "bg": 5114 }, - { "id": "t_shrub_blueberry_season_autumn", "fg": 5709, "bg": 5109 }, - { "id": "t_shrub_blueberry_season_winter", "fg": 5712, "bg": 4582 }, - { "id": "t_shrub_grape", "fg": 5713, "bg": 5104 }, - { "id": "t_shrub_grape_harvested", "fg": 5714, "bg": 5114 }, - { "id": "t_shrub_grape_season_summer", "fg": 5715, "bg": 5114 }, - { "id": "t_shrub_grape_season_autumn", "fg": 5713, "bg": 5109 }, - { "id": "t_shrub_grape_season_winter", "fg": 5716, "bg": 4582 }, - { "id": "t_shrub_huckleberry", "fg": 5717, "bg": 5104 }, - { "id": "t_shrub_huckleberry_harvested", "fg": 5718, "bg": 5114 }, - { "id": "t_shrub_huckleberry_season_summer", "fg": 5719, "bg": 5114 }, - { "id": "t_shrub_huckleberry_season_autumn", "fg": 5717, "bg": 5109 }, - { "id": "t_shrub_huckleberry_season_winter", "fg": 5720, "bg": 4582 }, - { "id": "t_shrub_hydrangea", "fg": 5722, "bg": 5104 }, - { "id": "t_shrub_hydrangea_harvested", "fg": 5721, "bg": 5104 }, - { "id": "t_shrub_hydrangea_season_summer", "fg": 5723, "bg": 5114 }, - { "id": "t_shrub_hydrangea_season_autumn", "fg": 5722, "bg": 5109 }, - { "id": "t_shrub_hydrangea_season_winter", "fg": 5724, "bg": 4582 }, - { "id": "t_shrub_lilac", "fg": 5726, "bg": 5104 }, - { "id": "t_shrub_lilac_harvested", "fg": 5725, "bg": 5104 }, - { "id": "t_shrub_lilac_season_summer", "fg": 5727, "bg": 5114 }, - { "id": "t_shrub_lilac_season_autumn", "fg": 5725, "bg": 5109 }, - { "id": "t_shrub_lilac_season_winter", "fg": 5728, "bg": 4582 }, - { "id": "t_shrub_peanut", "fg": 5729, "bg": 5104 }, - { "id": "t_shrub_peanut_harvested", "fg": 5731, "bg": 5109 }, - { "id": "t_shrub_peanut_season_summer", "fg": 5729, "bg": 5114 }, - { "id": "t_shrub_peanut_season_autumn", "fg": 5730, "bg": 5109 }, - { "id": "t_shrub_peanut_season_winter", "fg": 5732, "bg": 4582 }, - { "id": "t_shrub_raspberry", "fg": 5733, "bg": 5104 }, - { "id": "t_shrub_raspberry_harvested", "fg": 5734, "bg": 5114 }, - { "id": "t_shrub_raspberry_season_summer", "fg": 5735, "bg": 5114 }, - { "id": "t_shrub_raspberry_season_autumn", "fg": 5733, "bg": 5109 }, - { "id": "t_shrub_raspberry_season_winter", "fg": 5736, "bg": 4582 }, - { "id": "t_shrub_rose", "fg": 5738, "bg": 5104 }, - { "id": "t_shrub_rose_season_summer", "fg": 5738, "bg": 5114 }, - { "id": "t_shrub_rose_harvested", "fg": 5738, "bg": 5109 }, - { "id": "t_shrub_rose_season_autumn", "fg": 5737, "bg": 5109 }, - { "id": "t_shrub_rose_season_winter", "fg": 5739, "bg": 4582 }, - { "id": "t_shrub_strawberry", "fg": 5740, "bg": 5104 }, - { "id": "t_shrub_strawberry_harvested", "fg": 5741, "bg": 5114 }, - { "id": "t_shrub_strawberry_season_summer", "fg": 5742, "bg": 5114 }, - { "id": "t_shrub_strawberry_season_autumn", "fg": 5740, "bg": 5109 }, - { "id": "t_shrub_strawberry_season_winter", "fg": 5743, "bg": 4582 }, + "fg": 5782, + "additional_tiles": [ + { "id": "center", "fg": 5767 }, + { "id": "corner", "fg": [ 5769, 5771, 5770, 5768 ] }, + { "id": "t_connection", "fg": [ 5779, 5781, 5780, 5778 ] }, + { "id": "edge", "fg": [ 5773, 5772 ] }, + { "id": "end_piece", "fg": [ 5775, 5777, 5776, 5774 ] }, + { "id": "unconnected", "fg": 5782 } + ] + }, + { "id": "t_shrub", "fg": 5783, "bg": 5169 }, + { "id": "t_shrub_season_summer", "fg": 5783, "bg": 5179 }, + { "id": "t_shrub_season_autumn", "fg": 5783, "bg": 5174 }, + { "id": "t_shrub_season_winter", "fg": 5785, "bg": 4647 }, + { "id": "t_shrub_blackberry", "fg": 5786, "bg": 5169 }, + { "id": "t_shrub_blackberry_harvested", "fg": 5787, "bg": 5179 }, + { "id": "t_shrub_blackberry_season_summer", "fg": 5788, "bg": 5179 }, + { "id": "t_shrub_blackberry_season_autumn", "fg": 5786, "bg": 5174 }, + { "id": "t_shrub_blackberry_season_winter", "fg": 5789, "bg": 4647 }, + { "id": "t_shrub_blueberry", "fg": 5790, "bg": 5169 }, + { "id": "t_shrub_blueberry_harvested", "fg": 5791, "bg": 5179 }, + { "id": "t_shrub_blueberry_season_summer", "fg": 5792, "bg": 5179 }, + { "id": "t_shrub_blueberry_season_autumn", "fg": 5790, "bg": 5174 }, + { "id": "t_shrub_blueberry_season_winter", "fg": 5793, "bg": 4647 }, + { "id": "t_shrub_grape", "fg": 5794, "bg": 5169 }, + { "id": "t_shrub_grape_harvested", "fg": 5795, "bg": 5179 }, + { "id": "t_shrub_grape_season_summer", "fg": 5796, "bg": 5179 }, + { "id": "t_shrub_grape_season_autumn", "fg": 5794, "bg": 5174 }, + { "id": "t_shrub_grape_season_winter", "fg": 5797, "bg": 4647 }, + { "id": "t_shrub_huckleberry", "fg": 5798, "bg": 5169 }, + { "id": "t_shrub_huckleberry_harvested", "fg": 5799, "bg": 5179 }, + { "id": "t_shrub_huckleberry_season_summer", "fg": 5800, "bg": 5179 }, + { "id": "t_shrub_huckleberry_season_autumn", "fg": 5798, "bg": 5174 }, + { "id": "t_shrub_huckleberry_season_winter", "fg": 5801, "bg": 4647 }, + { "id": "t_shrub_hydrangea", "fg": 5803, "bg": 5169 }, + { "id": "t_shrub_hydrangea_harvested", "fg": 5802, "bg": 5169 }, + { "id": "t_shrub_hydrangea_season_summer", "fg": 5804, "bg": 5179 }, + { "id": "t_shrub_hydrangea_season_autumn", "fg": 5803, "bg": 5174 }, + { "id": "t_shrub_hydrangea_season_winter", "fg": 5805, "bg": 4647 }, + { "id": "t_shrub_lilac", "fg": 5807, "bg": 5169 }, + { "id": "t_shrub_lilac_harvested", "fg": 5806, "bg": 5169 }, + { "id": "t_shrub_lilac_season_summer", "fg": 5808, "bg": 5179 }, + { "id": "t_shrub_lilac_season_autumn", "fg": 5806, "bg": 5174 }, + { "id": "t_shrub_lilac_season_winter", "fg": 5809, "bg": 4647 }, + { "id": "t_shrub_peanut", "fg": 5810, "bg": 5169 }, + { "id": "t_shrub_peanut_harvested", "fg": 5812, "bg": 5174 }, + { "id": "t_shrub_peanut_season_summer", "fg": 5810, "bg": 5179 }, + { "id": "t_shrub_peanut_season_autumn", "fg": 5811, "bg": 5174 }, + { "id": "t_shrub_peanut_season_winter", "fg": 5813, "bg": 4647 }, + { "id": "t_shrub_raspberry", "fg": 5814, "bg": 5169 }, + { "id": "t_shrub_raspberry_harvested", "fg": 5815, "bg": 5179 }, + { "id": "t_shrub_raspberry_season_summer", "fg": 5816, "bg": 5179 }, + { "id": "t_shrub_raspberry_season_autumn", "fg": 5814, "bg": 5174 }, + { "id": "t_shrub_raspberry_season_winter", "fg": 5817, "bg": 4647 }, + { "id": "t_shrub_rose", "fg": 5819, "bg": 5169 }, + { "id": "t_shrub_rose_season_summer", "fg": 5819, "bg": 5179 }, + { "id": "t_shrub_rose_harvested", "fg": 5819, "bg": 5174 }, + { "id": "t_shrub_rose_season_autumn", "fg": 5818, "bg": 5174 }, + { "id": "t_shrub_rose_season_winter", "fg": 5820, "bg": 4647 }, + { "id": "t_shrub_strawberry", "fg": 5821, "bg": 5169 }, + { "id": "t_shrub_strawberry_harvested", "fg": 5822, "bg": 5179 }, + { "id": "t_shrub_strawberry_season_summer", "fg": 5823, "bg": 5179 }, + { "id": "t_shrub_strawberry_season_autumn", "fg": 5821, "bg": 5174 }, + { "id": "t_shrub_strawberry_season_winter", "fg": 5824, "bg": 4647 }, { "id": [ "t_sidewalk", "t_sidewalk_bg_dp" ], "multitile": true, - "fg": 5759, + "fg": 5840, "additional_tiles": [ - { "id": "center", "fg": 5744 }, - { "id": "corner", "fg": [ 5746, 5748, 5747, 5745 ] }, - { "id": "t_connection", "fg": [ 5756, 5758, 5757, 5755 ] }, - { "id": "edge", "fg": [ 5750, 5749 ] }, - { "id": "end_piece", "fg": [ 5752, 5754, 5753, 5751 ] }, - { "id": "unconnected", "fg": 5759 } + { "id": "center", "fg": 5825 }, + { "id": "corner", "fg": [ 5827, 5829, 5828, 5826 ] }, + { "id": "t_connection", "fg": [ 5837, 5839, 5838, 5836 ] }, + { "id": "edge", "fg": [ 5831, 5830 ] }, + { "id": "end_piece", "fg": [ 5833, 5835, 5834, 5832 ] }, + { "id": "unconnected", "fg": 5840 } ] }, - { "id": "t_sidewalk_season_winter", "fg": 4584 }, - { "id": "t_slime", "fg": 5760 }, + { "id": "t_sidewalk_season_winter", "fg": 4649 }, + { "id": "t_slime", "fg": 5841 }, { "id": "t_soil", - "fg": 5776, + "fg": 5857, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5761 }, - { "id": "corner", "fg": [ 5763, 5765, 5764, 5762 ] }, - { "id": "t_connection", "fg": [ 5773, 5775, 5774, 5772 ] }, - { "id": "edge", "fg": [ 5767, 5766 ] }, - { "id": "end_piece", "fg": [ 5769, 5771, 5770, 5768 ] }, - { "id": "unconnected", "fg": [ 5776, 5776 ] } + { "id": "center", "fg": 5842 }, + { "id": "corner", "fg": [ 5844, 5846, 5845, 5843 ] }, + { "id": "t_connection", "fg": [ 5854, 5856, 5855, 5853 ] }, + { "id": "edge", "fg": [ 5848, 5847 ] }, + { "id": "end_piece", "fg": [ 5850, 5852, 5851, 5849 ] }, + { "id": "unconnected", "fg": [ 5857, 5857 ] } ] }, - { "id": "t_splitrail_fencegate_c", "fg": 5777, "bg": 5104 }, - { "id": "t_splitrail_fencegate_o", "fg": 5778, "bg": 5104 }, - { "id": "t_splitrail_fencegate_c_season_summer", "fg": 5777, "bg": 5114 }, - { "id": "t_splitrail_fencegate_o_season_summer", "fg": 5778, "bg": 5114 }, - { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 5777, "bg": 5109 }, - { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 5778, "bg": 5109 }, - { "id": "t_splitrail_fencegate_c_season_winter", "fg": 5777, "bg": 4584 }, - { "id": "t_splitrail_fencegate_o_season_winter", "fg": 5778, "bg": 4584 }, + { "id": "t_splitrail_fencegate_c", "fg": 5858, "bg": 5169 }, + { "id": "t_splitrail_fencegate_o", "fg": 5859, "bg": 5169 }, + { "id": "t_splitrail_fencegate_c_season_summer", "fg": 5858, "bg": 5179 }, + { "id": "t_splitrail_fencegate_o_season_summer", "fg": 5859, "bg": 5179 }, + { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 5858, "bg": 5174 }, + { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 5859, "bg": 5174 }, + { "id": "t_splitrail_fencegate_c_season_winter", "fg": 5858, "bg": 4649 }, + { "id": "t_splitrail_fencegate_o_season_winter", "fg": 5859, "bg": 4649 }, { "id": "t_strconc_floor", "multitile": true, - "fg": 5794, + "fg": 5875, "additional_tiles": [ - { "id": "center", "fg": 5779 }, - { "id": "corner", "fg": [ 5781, 5783, 5782, 5780 ] }, - { "id": "t_connection", "fg": [ 5791, 5793, 5792, 5790 ] }, - { "id": "edge", "fg": [ 5785, 5784 ] }, - { "id": "end_piece", "fg": [ 5787, 5789, 5788, 5786 ] }, - { "id": "unconnected", "fg": 5794 } + { "id": "center", "fg": 5860 }, + { "id": "corner", "fg": [ 5862, 5864, 5863, 5861 ] }, + { "id": "t_connection", "fg": [ 5872, 5874, 5873, 5871 ] }, + { "id": "edge", "fg": [ 5866, 5865 ] }, + { "id": "end_piece", "fg": [ 5868, 5870, 5869, 5867 ] }, + { "id": "unconnected", "fg": 5875 } ] }, - { "id": "t_stump", "fg": 5795, "bg": 5104 }, - { "id": "t_stump_season_summer", "fg": 5795, "bg": 5114 }, - { "id": "t_stump_season_autumn", "fg": 5795, "bg": 5109 }, - { "id": "t_stump_season_winter", "fg": 5795, "bg": 4582 }, - { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 5796 }, { "weight": 100, "sprite": 5797 } ] }, + { "id": "t_stump", "fg": 5876, "bg": 5169 }, + { "id": "t_stump_season_summer", "fg": 5876, "bg": 5179 }, + { "id": "t_stump_season_autumn", "fg": 5876, "bg": 5174 }, + { "id": "t_stump_season_winter", "fg": 5876, "bg": 4647 }, + { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 5877 }, { "weight": 100, "sprite": 5878 } ] }, { "id": "t_thconc_floor", "fg": [ - { "weight": 1, "sprite": 5798 }, - { "weight": 1, "sprite": 5799 }, - { "weight": 1, "sprite": 5800 }, - { "weight": 1, "sprite": 5801 }, - { "weight": 1, "sprite": 5802 }, - { "weight": 1, "sprite": 5803 } + { "weight": 1, "sprite": 5879 }, + { "weight": 1, "sprite": 5880 }, + { "weight": 1, "sprite": 5881 }, + { "weight": 1, "sprite": 5882 }, + { "weight": 1, "sprite": 5883 }, + { "weight": 1, "sprite": 5884 } ] }, { "id": "t_thconc_r", "fg": [ - { "weight": 1, "sprite": 5806 }, - { "weight": 1, "sprite": 5807 }, - { "weight": 1, "sprite": 5808 }, - { "weight": 1, "sprite": 5809 }, - { "weight": 1, "sprite": 5810 }, - { "weight": 1, "sprite": 5811 } + { "weight": 1, "sprite": 5887 }, + { "weight": 1, "sprite": 5888 }, + { "weight": 1, "sprite": 5889 }, + { "weight": 1, "sprite": 5890 }, + { "weight": 1, "sprite": 5891 }, + { "weight": 1, "sprite": 5892 } ] }, { "id": "t_thconc_y", "fg": [ - { "weight": 1, "sprite": 5812 }, - { "weight": 1, "sprite": 5813 }, - { "weight": 1, "sprite": 5814 }, - { "weight": 1, "sprite": 5815 }, - { "weight": 1, "sprite": 5816 }, - { "weight": 1, "sprite": 5817 } - ] - }, - { "id": "t_underbrush", "fg": 5818, "bg": 5104 }, - { "id": "t_underbrush_harvested_spring", "fg": 5819, "bg": 5104 }, - { "id": "t_underbrush_season_summer", "fg": 5818, "bg": 5114 }, - { "id": "t_underbrush_harvested_summer", "fg": 5819, "bg": 5114 }, - { "id": "t_underbrush_season_autumn", "fg": 5818, "bg": 5109 }, - { "id": "t_underbrush_harvested_autumn", "fg": 5819, "bg": 5109 }, - { "id": "t_underbrush_harvested_winter", "fg": 5819, "bg": 4582 }, - { "id": "t_underbrush_season_winter", "fg": 5818, "bg": 4582 }, + { "weight": 1, "sprite": 5893 }, + { "weight": 1, "sprite": 5894 }, + { "weight": 1, "sprite": 5895 }, + { "weight": 1, "sprite": 5896 }, + { "weight": 1, "sprite": 5897 }, + { "weight": 1, "sprite": 5898 } + ] + }, + { "id": "t_underbrush", "fg": 5899, "bg": 5169 }, + { "id": "t_underbrush_harvested_spring", "fg": 5900, "bg": 5169 }, + { "id": "t_underbrush_season_summer", "fg": 5899, "bg": 5179 }, + { "id": "t_underbrush_harvested_summer", "fg": 5900, "bg": 5179 }, + { "id": "t_underbrush_season_autumn", "fg": 5899, "bg": 5174 }, + { "id": "t_underbrush_harvested_autumn", "fg": 5900, "bg": 5174 }, + { "id": "t_underbrush_harvested_winter", "fg": 5900, "bg": 4647 }, + { "id": "t_underbrush_season_winter", "fg": 5899, "bg": 4647 }, { "id": "t_wall", "multitile": true, - "fg": 5835, + "fg": 5916, "additional_tiles": [ - { "id": "center", "fg": 5820 }, - { "id": "corner", "fg": [ 5822, 5824, 5823, 5821 ] }, - { "id": "t_connection", "fg": [ 5832, 5834, 5833, 5831 ] }, - { "id": "edge", "fg": [ 5826, 5825 ] }, - { "id": "end_piece", "fg": [ 5828, 5830, 5829, 5827 ] }, - { "id": "unconnected", "fg": 5835 } + { "id": "center", "fg": 5901 }, + { "id": "corner", "fg": [ 5903, 5905, 5904, 5902 ] }, + { "id": "t_connection", "fg": [ 5913, 5915, 5914, 5912 ] }, + { "id": "edge", "fg": [ 5907, 5906 ] }, + { "id": "end_piece", "fg": [ 5909, 5911, 5910, 5908 ] }, + { "id": "unconnected", "fg": 5916 } ] }, { "id": "t_wall_b", "multitile": true, - "fg": 5851, + "fg": 5932, "additional_tiles": [ - { "id": "center", "fg": 5836 }, - { "id": "corner", "fg": [ 5838, 5840, 5839, 5837 ] }, - { "id": "t_connection", "fg": [ 5848, 5850, 5849, 5847 ] }, - { "id": "edge", "fg": [ 5842, 5841 ] }, - { "id": "end_piece", "fg": [ 5844, 5846, 5845, 5843 ] }, - { "id": "unconnected", "fg": 5851 } + { "id": "center", "fg": 5917 }, + { "id": "corner", "fg": [ 5919, 5921, 5920, 5918 ] }, + { "id": "t_connection", "fg": [ 5929, 5931, 5930, 5928 ] }, + { "id": "edge", "fg": [ 5923, 5922 ] }, + { "id": "end_piece", "fg": [ 5925, 5927, 5926, 5924 ] }, + { "id": "unconnected", "fg": 5932 } ] }, { "id": "t_wall_g", "multitile": true, - "fg": 5867, + "fg": 5948, "additional_tiles": [ - { "id": "center", "fg": 5852 }, - { "id": "corner", "fg": [ 5854, 5856, 5855, 5853 ] }, - { "id": "t_connection", "fg": [ 5864, 5866, 5865, 5863 ] }, - { "id": "edge", "fg": [ 5858, 5857 ] }, - { "id": "end_piece", "fg": [ 5860, 5862, 5861, 5859 ] }, - { "id": "unconnected", "fg": 5867 } + { "id": "center", "fg": 5933 }, + { "id": "corner", "fg": [ 5935, 5937, 5936, 5934 ] }, + { "id": "t_connection", "fg": [ 5945, 5947, 5946, 5944 ] }, + { "id": "edge", "fg": [ 5939, 5938 ] }, + { "id": "end_piece", "fg": [ 5941, 5943, 5942, 5940 ] }, + { "id": "unconnected", "fg": 5948 } ] }, { "id": [ "t_wall_glass", "t_wall_glass_alarm" ], "multitile": true, - "fg": 5883, + "fg": 5964, "additional_tiles": [ - { "id": "center", "fg": 5868 }, - { "id": "corner", "fg": [ 5870, 5872, 5871, 5869 ] }, - { "id": "t_connection", "fg": [ 5880, 5882, 5881, 5879 ] }, - { "id": "edge", "fg": [ 5874, 5873 ] }, - { "id": "end_piece", "fg": [ 5876, 5878, 5877, 5875 ] }, - { "id": "unconnected", "fg": 5883 } + { "id": "center", "fg": 5949 }, + { "id": "corner", "fg": [ 5951, 5953, 5952, 5950 ] }, + { "id": "t_connection", "fg": [ 5961, 5963, 5962, 5960 ] }, + { "id": "edge", "fg": [ 5955, 5954 ] }, + { "id": "end_piece", "fg": [ 5957, 5959, 5958, 5956 ] }, + { "id": "unconnected", "fg": 5964 } ] }, { "id": "t_wall_log", "multitile": true, - "fg": 5899, - "bg": 5104, + "fg": 5980, + "bg": 5169, "additional_tiles": [ - { "id": "center", "fg": 5884 }, - { "id": "corner", "fg": [ 5886, 5888, 5887, 5885 ] }, - { "id": "t_connection", "fg": [ 5896, 5898, 5897, 5895 ] }, - { "id": "edge", "bg": 5104, "fg": [ 5890, 5889 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 5892, 5894, 5893, 5891 ] }, - { "bg": 5104, "id": "unconnected", "fg": 5899 } + { "id": "center", "fg": 5965 }, + { "id": "corner", "fg": [ 5967, 5969, 5968, 5966 ] }, + { "id": "t_connection", "fg": [ 5977, 5979, 5978, 5976 ] }, + { "id": "edge", "bg": 5169, "fg": [ 5971, 5970 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 5973, 5975, 5974, 5972 ] }, + { "bg": 5169, "id": "unconnected", "fg": 5980 } ] }, { "id": "t_wall_metal", - "fg": 5915, + "fg": 5996, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5900 }, - { "id": "corner", "fg": [ 5902, 5904, 5903, 5901 ] }, - { "id": "t_connection", "fg": [ 5912, 5914, 5913, 5911 ] }, - { "id": "edge", "fg": [ 5906, 5905 ] }, - { "id": "end_piece", "fg": [ 5908, 5910, 5909, 5907 ] }, - { "id": "unconnected", "fg": [ 5915, 5915 ] } + { "id": "center", "fg": 5981 }, + { "id": "corner", "fg": [ 5983, 5985, 5984, 5982 ] }, + { "id": "t_connection", "fg": [ 5993, 5995, 5994, 5992 ] }, + { "id": "edge", "fg": [ 5987, 5986 ] }, + { "id": "end_piece", "fg": [ 5989, 5991, 5990, 5988 ] }, + { "id": "unconnected", "fg": [ 5996, 5996 ] } ] }, { "id": "t_wall_metal_corrugated", - "fg": 5931, + "fg": 6012, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5916 }, - { "id": "corner", "fg": [ 5918, 5920, 5919, 5917 ] }, - { "id": "t_connection", "fg": [ 5928, 5930, 5929, 5927 ] }, - { "id": "edge", "fg": [ 5922, 5921 ] }, - { "id": "end_piece", "fg": [ 5924, 5926, 5925, 5923 ] }, - { "id": "unconnected", "fg": [ 5931, 5931 ] } + { "id": "center", "fg": 5997 }, + { "id": "corner", "fg": [ 5999, 6001, 6000, 5998 ] }, + { "id": "t_connection", "fg": [ 6009, 6011, 6010, 6008 ] }, + { "id": "edge", "fg": [ 6003, 6002 ] }, + { "id": "end_piece", "fg": [ 6005, 6007, 6006, 6004 ] }, + { "id": "unconnected", "fg": [ 6012, 6012 ] } ] }, { "id": "t_wall_p", "multitile": true, - "fg": 5947, + "fg": 6028, "additional_tiles": [ - { "id": "center", "fg": 5932 }, - { "id": "corner", "fg": [ 5934, 5936, 5935, 5933 ] }, - { "id": "t_connection", "fg": [ 5944, 5946, 5945, 5943 ] }, - { "id": "edge", "fg": [ 5938, 5937 ] }, - { "id": "end_piece", "fg": [ 5940, 5942, 5941, 5939 ] }, - { "id": "unconnected", "fg": 5947 } + { "id": "center", "fg": 6013 }, + { "id": "corner", "fg": [ 6015, 6017, 6016, 6014 ] }, + { "id": "t_connection", "fg": [ 6025, 6027, 6026, 6024 ] }, + { "id": "edge", "fg": [ 6019, 6018 ] }, + { "id": "end_piece", "fg": [ 6021, 6023, 6022, 6020 ] }, + { "id": "unconnected", "fg": 6028 } ] }, { "id": "t_wall_r", "multitile": true, - "fg": 5963, + "fg": 6044, "additional_tiles": [ - { "id": "center", "fg": 5948 }, - { "id": "corner", "fg": [ 5950, 5952, 5951, 5949 ] }, - { "id": "t_connection", "fg": [ 5960, 5962, 5961, 5959 ] }, - { "id": "edge", "fg": [ 5954, 5953 ] }, - { "id": "end_piece", "fg": [ 5956, 5958, 5957, 5955 ] }, - { "id": "unconnected", "fg": 5963 } + { "id": "center", "fg": 6029 }, + { "id": "corner", "fg": [ 6031, 6033, 6032, 6030 ] }, + { "id": "t_connection", "fg": [ 6041, 6043, 6042, 6040 ] }, + { "id": "edge", "fg": [ 6035, 6034 ] }, + { "id": "end_piece", "fg": [ 6037, 6039, 6038, 6036 ] }, + { "id": "unconnected", "fg": 6044 } ] }, { "id": "t_wall_rammed_earth", - "fg": 5979, + "fg": 6060, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5964 }, - { "id": "corner", "fg": [ 5966, 5968, 5967, 5965 ] }, - { "id": "t_connection", "fg": [ 5976, 5978, 5977, 5975 ] }, - { "id": "edge", "fg": [ 5970, 5969 ] }, - { "id": "end_piece", "fg": [ 5972, 5974, 5973, 5971 ] }, - { "id": "unconnected", "fg": [ 5979, 5979 ] } + { "id": "center", "fg": 6045 }, + { "id": "corner", "fg": [ 6047, 6049, 6048, 6046 ] }, + { "id": "t_connection", "fg": [ 6057, 6059, 6058, 6056 ] }, + { "id": "edge", "fg": [ 6051, 6050 ] }, + { "id": "end_piece", "fg": [ 6053, 6055, 6054, 6052 ] }, + { "id": "unconnected", "fg": [ 6060, 6060 ] } ] }, { "id": "t_wall_resin", "multitile": true, - "fg": 5997, + "fg": 6078, "additional_tiles": [ - { "id": "center", "fg": 5982 }, - { "id": "corner", "fg": [ 5984, 5986, 5985, 5983 ] }, - { "id": "t_connection", "fg": [ 5994, 5996, 5995, 5993 ] }, - { "id": "edge", "fg": [ 5988, 5987 ] }, - { "id": "end_piece", "fg": [ 5990, 5992, 5991, 5989 ] }, - { "id": "unconnected", "fg": 5997 } + { "id": "center", "fg": 6063 }, + { "id": "corner", "fg": [ 6065, 6067, 6066, 6064 ] }, + { "id": "t_connection", "fg": [ 6075, 6077, 6076, 6074 ] }, + { "id": "edge", "fg": [ 6069, 6068 ] }, + { "id": "end_piece", "fg": [ 6071, 6073, 6072, 6070 ] }, + { "id": "unconnected", "fg": 6078 } ] }, - { "id": "t_resin_hole_c", "fg": 5980 }, - { "id": "t_resin_hole_o", "fg": 5981 }, + { "id": "t_resin_hole_c", "fg": 6061 }, + { "id": "t_resin_hole_o", "fg": 6062 }, { "id": "t_wall_w", "multitile": true, - "fg": 6014, + "fg": 6095, "additional_tiles": [ - { "id": "center", "fg": 5999 }, - { "id": "corner", "fg": [ 6001, 6003, 6002, 6000 ] }, - { "id": "t_connection", "fg": [ 6011, 6013, 6012, 6010 ] }, - { "id": "edge", "fg": [ 6005, 6004 ] }, - { "id": "end_piece", "fg": [ 6007, 6009, 6008, 6006 ] }, - { "id": "unconnected", "fg": 6014 } + { "id": "center", "fg": 6080 }, + { "id": "corner", "fg": [ 6082, 6084, 6083, 6081 ] }, + { "id": "t_connection", "fg": [ 6092, 6094, 6093, 6091 ] }, + { "id": "edge", "fg": [ 6086, 6085 ] }, + { "id": "end_piece", "fg": [ 6088, 6090, 6089, 6087 ] }, + { "id": "unconnected", "fg": 6095 } ] }, { "id": [ "t_wall_wood", "t_wall_wood_chipped", "t_wall_wood_broken" ], "multitile": true, - "fg": 6030, + "fg": 6111, "additional_tiles": [ - { "id": "center", "fg": 6015 }, - { "id": "corner", "fg": [ 6017, 6019, 6018, 6016 ] }, - { "id": "t_connection", "fg": [ 6027, 6029, 6028, 6026 ] }, - { "id": "edge", "fg": [ 6021, 6020 ] }, - { "id": "end_piece", "fg": [ 6023, 6025, 6024, 6022 ] }, - { "id": "unconnected", "fg": 6030 } + { "id": "center", "fg": 6096 }, + { "id": "corner", "fg": [ 6098, 6100, 6099, 6097 ] }, + { "id": "t_connection", "fg": [ 6108, 6110, 6109, 6107 ] }, + { "id": "edge", "fg": [ 6102, 6101 ] }, + { "id": "end_piece", "fg": [ 6104, 6106, 6105, 6103 ] }, + { "id": "unconnected", "fg": 6111 } ] }, { "id": "t_wall_y", "multitile": true, - "fg": 6046, + "fg": 6127, "additional_tiles": [ - { "id": "center", "fg": 6031 }, - { "id": "corner", "fg": [ 6033, 6035, 6034, 6032 ] }, - { "id": "t_connection", "fg": [ 6043, 6045, 6044, 6042 ] }, - { "id": "edge", "fg": [ 6037, 6036 ] }, - { "id": "end_piece", "fg": [ 6039, 6041, 6040, 6038 ] }, - { "id": "unconnected", "fg": 6046 } + { "id": "center", "fg": 6112 }, + { "id": "corner", "fg": [ 6114, 6116, 6115, 6113 ] }, + { "id": "t_connection", "fg": [ 6124, 6126, 6125, 6123 ] }, + { "id": "edge", "fg": [ 6118, 6117 ] }, + { "id": "end_piece", "fg": [ 6120, 6122, 6121, 6119 ] }, + { "id": "unconnected", "fg": 6127 } ] }, { "id": [ "t_water_dp", "t_swater_dp" ], "multitile": true, - "fg": 6065, - "bg": 5104, + "fg": 6146, + "bg": 5169, "additional_tiles": [ { "id": "center", - "bg": 5104, + "bg": 5169, "fg": [ - { "weight": 1, "sprite": 6047 }, - { "weight": 1, "sprite": 6048 }, - { "weight": 1, "sprite": 6049 }, - { "weight": 1, "sprite": 6050 } + { "weight": 1, "sprite": 6128 }, + { "weight": 1, "sprite": 6129 }, + { "weight": 1, "sprite": 6130 }, + { "weight": 1, "sprite": 6131 } ] }, - { "id": "corner", "bg": 5104, "fg": [ 6052, 6054, 6053, 6051 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 6062, 6064, 6063, 6061 ] }, - { "id": "edge", "bg": 5104, "fg": [ 6056, 6055 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 6058, 6060, 6059, 6057 ] }, - { "bg": 5104, "id": "unconnected", "fg": 6065 } + { "id": "corner", "bg": 5169, "fg": [ 6133, 6135, 6134, 6132 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 6143, 6145, 6144, 6142 ] }, + { "id": "edge", "bg": 5169, "fg": [ 6137, 6136 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 6139, 6141, 6140, 6138 ] }, + { "bg": 5169, "id": "unconnected", "fg": 6146 } ] }, { "id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ], "multitile": true, - "fg": 6065, - "bg": 5114, + "fg": 6146, + "bg": 5179, "additional_tiles": [ { "id": "center", - "bg": 5114, - "fg": [ { "weight": 1, "sprite": 6047 }, { "weight": 1, "sprite": 6048 }, { "weight": 1, "sprite": 6049 } ] + "bg": 5179, + "fg": [ { "weight": 1, "sprite": 6128 }, { "weight": 1, "sprite": 6129 }, { "weight": 1, "sprite": 6130 } ] }, - { "id": "corner", "bg": 5114, "fg": [ 6052, 6054, 6053, 6051 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 6062, 6064, 6063, 6061 ] }, - { "id": "edge", "bg": 5114, "fg": [ 6056, 6055 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 6058, 6060, 6059, 6057 ] }, - { "bg": 5114, "id": "unconnected", "fg": 6065 } + { "id": "corner", "bg": 5179, "fg": [ 6133, 6135, 6134, 6132 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 6143, 6145, 6144, 6142 ] }, + { "id": "edge", "bg": 5179, "fg": [ 6137, 6136 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 6139, 6141, 6140, 6138 ] }, + { "bg": 5179, "id": "unconnected", "fg": 6146 } ] }, { "id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ], "multitile": true, - "fg": 6065, - "bg": 5109, + "fg": 6146, + "bg": 5174, "additional_tiles": [ { "id": "center", - "bg": 5109, - "fg": [ { "weight": 1, "sprite": 6047 }, { "weight": 1, "sprite": 6048 }, { "weight": 1, "sprite": 6049 } ] + "bg": 5174, + "fg": [ { "weight": 1, "sprite": 6128 }, { "weight": 1, "sprite": 6129 }, { "weight": 1, "sprite": 6130 } ] }, - { "id": "corner", "bg": 5109, "fg": [ 6052, 6054, 6053, 6051 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 6062, 6064, 6063, 6061 ] }, - { "id": "edge", "bg": 5109, "fg": [ 6056, 6055 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 6058, 6060, 6059, 6057 ] }, - { "bg": 5109, "id": "unconnected", "fg": 6065 } + { "id": "corner", "bg": 5174, "fg": [ 6133, 6135, 6134, 6132 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 6143, 6145, 6144, 6142 ] }, + { "id": "edge", "bg": 5174, "fg": [ 6137, 6136 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 6139, 6141, 6140, 6138 ] }, + { "bg": 5174, "id": "unconnected", "fg": 6146 } ] }, { "id": [ "t_water_dp_season_winter", "t_swater_dp_season_winter" ], "multitile": true, - "fg": 6065, - "bg": 4584, + "fg": 6146, + "bg": 4649, "additional_tiles": [ { "id": "center", - "bg": 4584, - "fg": [ { "weight": 1, "sprite": 6047 }, { "weight": 1, "sprite": 6048 }, { "weight": 1, "sprite": 6049 } ] + "bg": 4649, + "fg": [ { "weight": 1, "sprite": 6128 }, { "weight": 1, "sprite": 6129 }, { "weight": 1, "sprite": 6130 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 6052, 6054, 6053, 6051 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 6062, 6064, 6063, 6061 ] }, - { "id": "edge", "bg": 4584, "fg": [ 6056, 6055 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 6058, 6060, 6059, 6057 ] }, - { "bg": 4584, "id": "unconnected", "fg": 6065 } + { "id": "corner", "bg": 4649, "fg": [ 6133, 6135, 6134, 6132 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 6143, 6145, 6144, 6142 ] }, + { "id": "edge", "bg": 4649, "fg": [ 6137, 6136 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 6139, 6141, 6140, 6138 ] }, + { "bg": 4649, "id": "unconnected", "fg": 6146 } ] }, { "id": "t_water_hot", - "fg": 6081, - "bg": 5104, + "fg": 6162, + "bg": 5169, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6066, "bg": 5104 }, - { "id": "corner", "fg": [ 6068, 6070, 6069, 6067 ], "bg": 5104 }, - { "id": "t_connection", "fg": [ 6078, 6080, 6079, 6077 ], "bg": 5104 }, - { "id": "edge", "fg": [ 6072, 6071 ], "bg": 5104 }, - { "id": "end_piece", "fg": [ 6074, 6076, 6075, 6073 ], "bg": 5104 }, - { "id": "unconnected", "fg": [ 6081, 6081 ], "bg": 5104 } + { "id": "center", "fg": 6147, "bg": 5169 }, + { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 5169 }, + { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 5169 }, + { "id": "edge", "fg": [ 6153, 6152 ], "bg": 5169 }, + { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 5169 }, + { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 5169 } ] }, { "id": "t_water_hot_season_summer", - "fg": 6081, - "bg": 5114, + "fg": 6162, + "bg": 5179, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6066, "bg": 5114 }, - { "id": "corner", "fg": [ 6068, 6070, 6069, 6067 ], "bg": 5114 }, - { "id": "t_connection", "fg": [ 6078, 6080, 6079, 6077 ], "bg": 5114 }, - { "id": "edge", "fg": [ 6072, 6071 ], "bg": 5114 }, - { "id": "end_piece", "fg": [ 6074, 6076, 6075, 6073 ], "bg": 5114 }, - { "id": "unconnected", "fg": [ 6081, 6081 ], "bg": 5114 } + { "id": "center", "fg": 6147, "bg": 5179 }, + { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 5179 }, + { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 5179 }, + { "id": "edge", "fg": [ 6153, 6152 ], "bg": 5179 }, + { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 5179 }, + { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 5179 } ] }, { "id": "t_water_hot_season_autumn", - "fg": 6081, - "bg": 5109, + "fg": 6162, + "bg": 5174, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6066, "bg": 5109 }, - { "id": "corner", "fg": [ 6068, 6070, 6069, 6067 ], "bg": 5109 }, - { "id": "t_connection", "fg": [ 6078, 6080, 6079, 6077 ], "bg": 5109 }, - { "id": "edge", "fg": [ 6072, 6071 ], "bg": 5109 }, - { "id": "end_piece", "fg": [ 6074, 6076, 6075, 6073 ], "bg": 5109 }, - { "id": "unconnected", "fg": [ 6081, 6081 ], "bg": 5109 } + { "id": "center", "fg": 6147, "bg": 5174 }, + { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 5174 }, + { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 5174 }, + { "id": "edge", "fg": [ 6153, 6152 ], "bg": 5174 }, + { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 5174 }, + { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 5174 } ] }, { "id": "t_water_hot_season_winter", - "fg": 6081, - "bg": 4584, + "fg": 6162, + "bg": 4649, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6066, "bg": 4584 }, - { "id": "corner", "fg": [ 6068, 6070, 6069, 6067 ], "bg": 4584 }, - { "id": "t_connection", "fg": [ 6078, 6080, 6079, 6077 ], "bg": 4584 }, - { "id": "edge", "fg": [ 6072, 6071 ], "bg": 4584 }, - { "id": "end_piece", "fg": [ 6074, 6076, 6075, 6073 ], "bg": 4584 }, - { "id": "unconnected", "fg": [ 6081, 6081 ], "bg": 4584 } + { "id": "center", "fg": 6147, "bg": 4649 }, + { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 4649 }, + { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 4649 }, + { "id": "edge", "fg": [ 6153, 6152 ], "bg": 4649 }, + { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 4649 }, + { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 4649 } ] }, { "id": [ "t_water_moving_dp", "t_swater_moving_dp" ], "multitile": true, - "fg": 6098, - "bg": 5104, + "fg": 6179, + "bg": 5169, "additional_tiles": [ - { "id": "center", "bg": 5104, "fg": [ { "weight": 1, "sprite": 6082 }, { "weight": 1, "sprite": 6083 } ] }, - { "id": "corner", "bg": 5104, "fg": [ 6085, 6087, 6086, 6084 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 6095, 6097, 6096, 6094 ] }, - { "id": "edge", "bg": 5104, "fg": [ 6089, 6088 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 6091, 6093, 6092, 6090 ] }, - { "bg": 5104, "id": "unconnected", "fg": 6098 } + { "id": "center", "bg": 5169, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, + { "id": "corner", "bg": 5169, "fg": [ 6166, 6168, 6167, 6165 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 6176, 6178, 6177, 6175 ] }, + { "id": "edge", "bg": 5169, "fg": [ 6170, 6169 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 6172, 6174, 6173, 6171 ] }, + { "bg": 5169, "id": "unconnected", "fg": 6179 } ] }, { "id": [ "t_water_moving_dp_season_summer", "t_swater_moving_dp_season_summer" ], "multitile": true, - "fg": 6098, - "bg": 5114, + "fg": 6179, + "bg": 5179, "additional_tiles": [ - { "id": "center", "bg": 5114, "fg": [ { "weight": 1, "sprite": 6082 }, { "weight": 1, "sprite": 6083 } ] }, - { "id": "corner", "bg": 5114, "fg": [ 6085, 6087, 6086, 6084 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 6095, 6097, 6096, 6094 ] }, - { "id": "edge", "bg": 5114, "fg": [ 6089, 6088 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 6091, 6093, 6092, 6090 ] }, - { "bg": 5114, "id": "unconnected", "fg": 6098 } + { "id": "center", "bg": 5179, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, + { "id": "corner", "bg": 5179, "fg": [ 6166, 6168, 6167, 6165 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 6176, 6178, 6177, 6175 ] }, + { "id": "edge", "bg": 5179, "fg": [ 6170, 6169 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 6172, 6174, 6173, 6171 ] }, + { "bg": 5179, "id": "unconnected", "fg": 6179 } ] }, { "id": [ "t_water_moving_dp_season_autumn", "t_swater_moving_dp_season_autumn" ], "multitile": true, - "fg": 6098, - "bg": 5109, + "fg": 6179, + "bg": 5174, "additional_tiles": [ - { "id": "center", "bg": 5109, "fg": [ { "weight": 1, "sprite": 6082 }, { "weight": 1, "sprite": 6083 } ] }, - { "id": "corner", "bg": 5109, "fg": [ 6085, 6087, 6086, 6084 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 6095, 6097, 6096, 6094 ] }, - { "id": "edge", "bg": 5109, "fg": [ 6089, 6088 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 6091, 6093, 6092, 6090 ] }, - { "bg": 5109, "id": "unconnected", "fg": 6098 } + { "id": "center", "bg": 5174, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, + { "id": "corner", "bg": 5174, "fg": [ 6166, 6168, 6167, 6165 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 6176, 6178, 6177, 6175 ] }, + { "id": "edge", "bg": 5174, "fg": [ 6170, 6169 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 6172, 6174, 6173, 6171 ] }, + { "bg": 5174, "id": "unconnected", "fg": 6179 } ] }, { "id": [ "t_water_moving_dp_season_winter", "t_swater_moving_dp_season_winter" ], "multitile": true, - "fg": 6098, - "bg": 4584, + "fg": 6179, + "bg": 4649, "additional_tiles": [ - { "id": "center", "bg": 4584, "fg": [ { "weight": 1, "sprite": 6082 }, { "weight": 1, "sprite": 6083 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 6085, 6087, 6086, 6084 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 6095, 6097, 6096, 6094 ] }, - { "id": "edge", "bg": 4584, "fg": [ 6089, 6088 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 6091, 6093, 6092, 6090 ] }, - { "bg": 4584, "id": "unconnected", "fg": 6098 } + { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, + { "id": "corner", "bg": 4649, "fg": [ 6166, 6168, 6167, 6165 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 6176, 6178, 6177, 6175 ] }, + { "id": "edge", "bg": 4649, "fg": [ 6170, 6169 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 6172, 6174, 6173, 6171 ] }, + { "bg": 4649, "id": "unconnected", "fg": 6179 } ] }, { "id": [ "t_water_moving_sh", "t_swater_moving_sh" ], "multitile": true, - "fg": 6117, - "bg": 5104, + "fg": 6198, + "bg": 5169, "additional_tiles": [ { "id": "center", - "bg": 5104, + "bg": 5169, "fg": [ - { "weight": 1, "sprite": 6099 }, - { "weight": 1, "sprite": 6100 }, - { "weight": 1, "sprite": 6101 }, - { "weight": 1, "sprite": 6102 } + { "weight": 1, "sprite": 6180 }, + { "weight": 1, "sprite": 6181 }, + { "weight": 1, "sprite": 6182 }, + { "weight": 1, "sprite": 6183 } ] }, - { "id": "corner", "bg": 5104, "fg": [ 6104, 6106, 6105, 6103 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 6114, 6116, 6115, 6113 ] }, - { "id": "edge", "bg": 5104, "fg": [ 6108, 6107 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 6110, 6112, 6111, 6109 ] }, - { "bg": 5104, "id": "unconnected", "fg": 6117 } + { "id": "corner", "bg": 5169, "fg": [ 6185, 6187, 6186, 6184 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 6195, 6197, 6196, 6194 ] }, + { "id": "edge", "bg": 5169, "fg": [ 6189, 6188 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 6191, 6193, 6192, 6190 ] }, + { "bg": 5169, "id": "unconnected", "fg": 6198 } ] }, { "id": [ "t_water_moving_sh_season_summer", "t_swater_moving_sh_season_summer" ], "multitile": true, - "fg": 6117, - "bg": 5114, + "fg": 6198, + "bg": 5179, "additional_tiles": [ { "id": "center", - "bg": 5114, + "bg": 5179, "fg": [ - { "weight": 1, "sprite": 6099 }, - { "weight": 1, "sprite": 6100 }, - { "weight": 1, "sprite": 6101 }, - { "weight": 1, "sprite": 6102 } + { "weight": 1, "sprite": 6180 }, + { "weight": 1, "sprite": 6181 }, + { "weight": 1, "sprite": 6182 }, + { "weight": 1, "sprite": 6183 } ] }, - { "id": "corner", "bg": 5114, "fg": [ 6104, 6106, 6105, 6103 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 6114, 6116, 6115, 6113 ] }, - { "id": "edge", "bg": 5114, "fg": [ 6108, 6107 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 6110, 6112, 6111, 6109 ] }, - { "bg": 5114, "id": "unconnected", "fg": 6117 } + { "id": "corner", "bg": 5179, "fg": [ 6185, 6187, 6186, 6184 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 6195, 6197, 6196, 6194 ] }, + { "id": "edge", "bg": 5179, "fg": [ 6189, 6188 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 6191, 6193, 6192, 6190 ] }, + { "bg": 5179, "id": "unconnected", "fg": 6198 } ] }, { "id": [ "t_water_moving_sh_season_autumn", "t_swater_moving_sh_season_autumn" ], "multitile": true, - "fg": 6117, - "bg": 5109, + "fg": 6198, + "bg": 5174, "additional_tiles": [ { "id": "center", - "bg": 5109, + "bg": 5174, "fg": [ - { "weight": 1, "sprite": 6099 }, - { "weight": 1, "sprite": 6100 }, - { "weight": 1, "sprite": 6101 }, - { "weight": 1, "sprite": 6102 } + { "weight": 1, "sprite": 6180 }, + { "weight": 1, "sprite": 6181 }, + { "weight": 1, "sprite": 6182 }, + { "weight": 1, "sprite": 6183 } ] }, - { "id": "corner", "bg": 5109, "fg": [ 6104, 6106, 6105, 6103 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 6114, 6116, 6115, 6113 ] }, - { "id": "edge", "bg": 5109, "fg": [ 6108, 6107 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 6110, 6112, 6111, 6109 ] }, - { "bg": 5109, "id": "unconnected", "fg": 6117 } + { "id": "corner", "bg": 5174, "fg": [ 6185, 6187, 6186, 6184 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 6195, 6197, 6196, 6194 ] }, + { "id": "edge", "bg": 5174, "fg": [ 6189, 6188 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 6191, 6193, 6192, 6190 ] }, + { "bg": 5174, "id": "unconnected", "fg": 6198 } ] }, { "id": [ "t_water_moving_sh_season_winter", "t_swater_moving_sh_season_winter" ], "multitile": true, - "fg": 6117, - "bg": 4584, + "fg": 6198, + "bg": 4649, "additional_tiles": [ { "id": "center", - "bg": 4584, + "bg": 4649, "fg": [ - { "weight": 1, "sprite": 6099 }, - { "weight": 1, "sprite": 6100 }, - { "weight": 1, "sprite": 6101 }, - { "weight": 1, "sprite": 6102 } + { "weight": 1, "sprite": 6180 }, + { "weight": 1, "sprite": 6181 }, + { "weight": 1, "sprite": 6182 }, + { "weight": 1, "sprite": 6183 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 6104, 6106, 6105, 6103 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 6114, 6116, 6115, 6113 ] }, - { "id": "edge", "bg": 4584, "fg": [ 6108, 6107 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 6110, 6112, 6111, 6109 ] }, - { "bg": 4584, "id": "unconnected", "fg": 6117 } + { "id": "corner", "bg": 4649, "fg": [ 6185, 6187, 6186, 6184 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 6195, 6197, 6196, 6194 ] }, + { "id": "edge", "bg": 4649, "fg": [ 6189, 6188 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 6191, 6193, 6192, 6190 ] }, + { "bg": 4649, "id": "unconnected", "fg": 6198 } ] }, { "id": [ "t_water_pool", "t_water_pool_shallow" ], "multitile": true, - "fg": 6132, + "fg": 6213, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 6133 }, { "weight": 1, "sprite": 6134 }, { "weight": 1, "sprite": 6135 } ] + "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] }, - { "id": "corner", "fg": [ 6119, 6121, 6120, 6118 ] }, - { "id": "t_connection", "fg": [ 6129, 6131, 6130, 6128 ] }, - { "id": "edge", "fg": [ 6123, 6122 ] }, - { "id": "end_piece", "fg": [ 6125, 6127, 6126, 6124 ] }, - { "id": "unconnected", "fg": [ 6132, 6132 ] } + { "id": "corner", "fg": [ 6200, 6202, 6201, 6199 ] }, + { "id": "t_connection", "fg": [ 6210, 6212, 6211, 6209 ] }, + { "id": "edge", "fg": [ 6204, 6203 ] }, + { "id": "end_piece", "fg": [ 6206, 6208, 6207, 6205 ] }, + { "id": "unconnected", "fg": [ 6213, 6213 ] } ] }, { "id": [ "t_water_sh", "t_swater_sh" ], "multitile": true, - "fg": 6151, - "bg": 5104, + "fg": 6232, + "bg": 5169, "additional_tiles": [ { "id": "center", - "bg": 5104, + "bg": 5169, "fg": [ - { "weight": 1, "sprite": 6133 }, - { "weight": 1, "sprite": 6134 }, - { "weight": 1, "sprite": 6135 }, - { "weight": 1, "sprite": 6136 } + { "weight": 1, "sprite": 6214 }, + { "weight": 1, "sprite": 6215 }, + { "weight": 1, "sprite": 6216 }, + { "weight": 1, "sprite": 6217 } ] }, - { "id": "corner", "bg": 5104, "fg": [ 6138, 6140, 6139, 6137 ] }, - { "id": "t_connection", "bg": 5104, "fg": [ 6148, 6150, 6149, 6147 ] }, - { "id": "edge", "bg": 5104, "fg": [ 6142, 6141 ] }, - { "id": "end_piece", "bg": 5104, "fg": [ 6144, 6146, 6145, 6143 ] }, - { "bg": 5104, "id": "unconnected", "fg": 6151 } + { "id": "corner", "bg": 5169, "fg": [ 6219, 6221, 6220, 6218 ] }, + { "id": "t_connection", "bg": 5169, "fg": [ 6229, 6231, 6230, 6228 ] }, + { "id": "edge", "bg": 5169, "fg": [ 6223, 6222 ] }, + { "id": "end_piece", "bg": 5169, "fg": [ 6225, 6227, 6226, 6224 ] }, + { "bg": 5169, "id": "unconnected", "fg": 6232 } ] }, { "id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ], "multitile": true, - "fg": 6151, - "bg": 5114, + "fg": 6232, + "bg": 5179, "additional_tiles": [ { "id": "center", - "bg": 5114, - "fg": [ { "weight": 1, "sprite": 6133 }, { "weight": 1, "sprite": 6134 }, { "weight": 1, "sprite": 6135 } ] + "bg": 5179, + "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] }, - { "id": "corner", "bg": 5114, "fg": [ 6138, 6140, 6139, 6137 ] }, - { "id": "t_connection", "bg": 5114, "fg": [ 6148, 6150, 6149, 6147 ] }, - { "id": "edge", "bg": 5114, "fg": [ 6142, 6141 ] }, - { "id": "end_piece", "bg": 5114, "fg": [ 6144, 6146, 6145, 6143 ] }, - { "bg": 5114, "id": "unconnected", "fg": 6151 } + { "id": "corner", "bg": 5179, "fg": [ 6219, 6221, 6220, 6218 ] }, + { "id": "t_connection", "bg": 5179, "fg": [ 6229, 6231, 6230, 6228 ] }, + { "id": "edge", "bg": 5179, "fg": [ 6223, 6222 ] }, + { "id": "end_piece", "bg": 5179, "fg": [ 6225, 6227, 6226, 6224 ] }, + { "bg": 5179, "id": "unconnected", "fg": 6232 } ] }, { "id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ], "multitile": true, - "fg": 6151, - "bg": 5109, + "fg": 6232, + "bg": 5174, "additional_tiles": [ { "id": "center", - "bg": 5109, - "fg": [ { "weight": 1, "sprite": 6133 }, { "weight": 1, "sprite": 6134 }, { "weight": 1, "sprite": 6135 } ] + "bg": 5174, + "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] }, - { "id": "corner", "bg": 5109, "fg": [ 6138, 6140, 6139, 6137 ] }, - { "id": "t_connection", "bg": 5109, "fg": [ 6148, 6150, 6149, 6147 ] }, - { "id": "edge", "bg": 5109, "fg": [ 6142, 6141 ] }, - { "id": "end_piece", "bg": 5109, "fg": [ 6144, 6146, 6145, 6143 ] }, - { "bg": 5109, "id": "unconnected", "fg": 6151 } + { "id": "corner", "bg": 5174, "fg": [ 6219, 6221, 6220, 6218 ] }, + { "id": "t_connection", "bg": 5174, "fg": [ 6229, 6231, 6230, 6228 ] }, + { "id": "edge", "bg": 5174, "fg": [ 6223, 6222 ] }, + { "id": "end_piece", "bg": 5174, "fg": [ 6225, 6227, 6226, 6224 ] }, + { "bg": 5174, "id": "unconnected", "fg": 6232 } ] }, { "id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ], "multitile": true, - "fg": 6151, - "bg": 4584, + "fg": 6232, + "bg": 4649, "additional_tiles": [ { "id": "center", - "bg": 4584, - "fg": [ { "weight": 1, "sprite": 6133 }, { "weight": 1, "sprite": 6134 }, { "weight": 1, "sprite": 6135 } ] + "bg": 4649, + "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] }, - { "id": "corner", "bg": 4584, "fg": [ 6138, 6140, 6139, 6137 ] }, - { "id": "t_connection", "bg": 4584, "fg": [ 6148, 6150, 6149, 6147 ] }, - { "id": "edge", "bg": 4584, "fg": [ 6142, 6141 ] }, - { "id": "end_piece", "bg": 4584, "fg": [ 6144, 6146, 6145, 6143 ] }, - { "bg": 4584, "id": "unconnected", "fg": 6151 } + { "id": "corner", "bg": 4649, "fg": [ 6219, 6221, 6220, 6218 ] }, + { "id": "t_connection", "bg": 4649, "fg": [ 6229, 6231, 6230, 6228 ] }, + { "id": "edge", "bg": 4649, "fg": [ 6223, 6222 ] }, + { "id": "end_piece", "bg": 4649, "fg": [ 6225, 6227, 6226, 6224 ] }, + { "bg": 4649, "id": "unconnected", "fg": 6232 } ] }, - { "id": [ "t_window", "t_window_alarm" ], "fg": 6152 }, - { "id": "t_window_empty", "fg": 6155 }, - { "id": "t_window_domestic", "fg": 6153 }, - { "id": "t_window_open", "fg": 6159 }, - { "id": "t_window_no_curtains", "fg": 6156 }, - { "id": "t_window_no_curtains_open", "fg": 6157 }, - { "id": "t_woodchips", "fg": 6161 }, - { "id": "t_woodchips_season_winter", "fg": 4584 }, + { "id": [ "t_window", "t_window_alarm" ], "fg": 6233 }, + { "id": "t_window_empty", "fg": 6236 }, + { "id": "t_window_domestic", "fg": 6234 }, + { "id": "t_window_open", "fg": 6240 }, + { "id": "t_window_no_curtains", "fg": 6237 }, + { "id": "t_window_no_curtains_open", "fg": 6238 }, + { "id": "t_woodchips", "fg": 6242 }, + { "id": "t_woodchips_season_winter", "fg": 4649 }, { "id": [ "tr_downspout_funnel", "tr_pit", "tr_lava", "tr_ledge", "tr_glass_pit", "tr_spike_pit" ], - "fg": 2912 + "fg": 2928 }, - { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 6166 }, { "weight": 1, "sprite": 6167 } ] }, - { "id": "tr_nailboard", "fg": 6162, "bg": 3851 }, - { "id": "tr_portal", "fg": 6170 }, - { "id": "tr_tripwire", "fg": 6172 }, + { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 6247 }, { "weight": 1, "sprite": 6248 } ] }, + { "id": "tr_nailboard", "fg": 6243, "bg": 3906 }, + { "id": "tr_portal", "fg": 6251 }, + { "id": "tr_tripwire", "fg": 6253 }, { "id": [ "vp_forklift_fork" ], - "fg": [ 6175, 6177, 6176, 6174 ], + "fg": [ 6256, 6258, 6257, 6255 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6175, 6177, 6176, 6174 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6256, 6258, 6257, 6255 ] } ] }, { "id": [ "vp_forklift_fork_horizontal_front" ], - "fg": [ 6176, 6174, 6175, 6177 ], + "fg": [ 6257, 6255, 6256, 6258 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6176, 6174, 6175, 6177 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6257, 6255, 6256, 6258 ] } ] }, { "id": "vp_saddle_motor", - "fg": [ 6179, 6181, 6180, 6178 ], + "fg": [ 6260, 6262, 6261, 6259 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6179, 6181, 6180, 6178 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6260, 6262, 6261, 6259 ] } ] }, { "id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ], - "fg": [ 6187, 6189, 6188, 6186 ], + "fg": [ 6268, 6270, 6269, 6267 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6187, 6189, 6188, 6186 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6268, 6270, 6269, 6267 ] } ] }, { "id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ], - "fg": [ 6183, 6185, 6184, 6182 ], + "fg": [ 6264, 6266, 6265, 6263 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6183, 6185, 6184, 6182 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6264, 6266, 6265, 6263 ] } ] }, { "id": [ "vp_wheel_small_scooter", "vp_wheel_small_scooter_steerable" ], - "fg": [ 6195, 6197, 6196, 6194 ], + "fg": [ 6276, 6278, 6277, 6275 ], "rotates": true }, - { "id": "vp_wheel_small_scooter_rear", "fg": [ 6191, 6193, 6192, 6190 ], "rotates": true }, + { "id": "vp_wheel_small_scooter_rear", "fg": [ 6272, 6274, 6273, 6271 ], "rotates": true }, { "id": "vp_battery_charger", - "fg": [ 6198, 6198, 6198, 6198 ], - "bg": 7420, + "fg": [ 6279, 6279, 6279, 6279 ], + "bg": 7511, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6198, 6198, 6198, 6198 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6279, 6279, 6279, 6279 ] } ] }, { "id": "vp_recharge_station", - "fg": [ 6199, 6199, 6199, 6199 ], - "bg": 7420, + "fg": [ 6280, 6280, 6280, 6280 ], + "bg": 7511, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6199, 6199, 6199, 6199 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6280, 6280, 6280, 6280 ] } ] }, { "id": "vp_spike_wood", - "fg": 6200, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 6200 } ] - }, - { "id": "fd_fire", "fg": 2913 }, - { "id": "fd_hot_air_sauna", "fg": 2914 }, - { "id": "f_target", "fg": 3107 }, - { "id": "f_chest", "fg": 3108 }, - { "id": "f_dive_block", "fg": 3109 }, - { "id": "f_foot_locker", "fg": 3110 }, - { "id": "f_sand_castle", "fg": 3111 }, - { "id": "f_shredder", "fg": 3112 }, - { "id": "f_tourist_table", "fg": 3113 }, - { "id": "f_exodii_pump", "fg": 3120 }, - { "id": "f_beaded_door", "fg": 3144 }, - { "id": "f_beaded_door_o", "fg": 3145 }, - { "id": "f_black_eyed_susan", "fg": 3178 }, - { "id": "f_chimney", "fg": 3210 }, - { "id": "f_curtain", "fg": 3244 }, - { "id": "f_curtain_open", "fg": 3245 }, - { "id": "f_lily", "fg": 3290 }, - { "id": "f_skin_groundsheet", "fg": 3423 }, - { "id": "acidchitin_plate", "fg": 3502 }, - { "id": "acoustic_guitar", "fg": 3503 }, - { "id": "alloy_plate", "fg": 3504 }, - { "id": "armor_lorica", "fg": 3505 }, - { "id": "banjo", "fg": 3506 }, - { "id": "bionic_general", "fg": 3507 }, - { "id": "bodypillow", "fg": 3508 }, - { "id": "bookplate", "fg": 3509 }, - { "id": "bot_copbot", "fg": 3510 }, - { "id": "bot_riotbot", "fg": 3511 }, - { "id": "broken_copbot", "fg": 3512 }, - { "id": "broken_riotbot", "fg": 3513 }, - { "id": "chainmail_hauberk", "fg": 3514 }, - { "id": "char_smoker", "fg": 3515 }, - { "id": "dehydrator", "fg": 3516 }, - { "id": "folding_poncho_on", "fg": 3517 }, - { "id": "gambeson", "fg": 3518 }, - { "id": "glass_sheet", "fg": 3519 }, - { "id": "gown", "fg": 3520 }, - { "id": "guitar_electric", "fg": 3521 }, - { "id": "hand_paddles", "fg": 3523 }, - { "id": "i4_combustion", "fg": 3524 }, - { "id": "inflatable_boat", "fg": 3525 }, - { "id": "inflatable_section", "fg": 3526 }, - { "id": "lawnmower", "fg": 3527 }, - { "id": "mattress", "fg": 3528 }, - { "id": "mil_plate", "fg": 3529 }, - { "id": "rake_plastic", "fg": 3531 }, - { "id": "reinforced_glass_sheet", "fg": 3532 }, - { "id": "robe", "fg": 3533 }, - { "id": "rock_quern", "fg": 3534 }, - { "id": "saxophone", "fg": 3535 }, - { "id": "sheet", "fg": 3536 }, - { "id": "steel_plate", "fg": 3537 }, - { "id": "telepad", "fg": 3538 }, - { "id": "trumpet", "fg": 3539 }, - { "id": "tuba", "fg": 3540 }, - { "id": "tunic", "fg": 3541 }, - { "id": "tunic_rag", "fg": 3542 }, - { "id": "umbrella", "fg": 3543 }, - { "id": "wheel_armor", "fg": 3544 }, - { "id": "wheel_wide", "fg": 3545 }, - { "id": "wheel_wide_or", "fg": 3546 }, - { "id": "10mm_fmj", "fg": 3547 }, - { "id": "120mm_HEAT", "fg": 3548 }, - { "id": "123ln", "fg": 3549 }, - { "id": "12mm", "fg": 3550 }, - { "id": "20x66_beanbag", "fg": 3551 }, - { "id": "20x66_flare", "fg": 3552 }, - { "id": "20x66_flechette", "fg": 3553 }, - { "id": "20x66_frag", "fg": 3554 }, - { "id": "20x66_inc", "fg": 3555 }, - { "id": "20x66_shot", "fg": 3556 }, - { "id": "20x66_slug", "fg": 3557 }, - { "id": "223", "fg": 3558 }, - { "id": "22_cb", "fg": 3559 }, - { "id": "22_fmj", "fg": 3560 }, - { "id": "22_lr", "fg": 3561 }, - { "id": "22_ratshot", "fg": 3562 }, - { "id": "270win_jsp", "fg": 3563 }, - { "id": "3006", "fg": 3564 }, - { "id": "3006_incendiary", "fg": 3565 }, - { "id": "3006fmj", "fg": 3566 }, - { "id": "300_winmag", "fg": 3567 }, - { "id": "300blk", "fg": 3568 }, - { "id": "300blk_ss", "fg": 3569 }, - { "id": "308", "fg": 3570 }, - { "id": "32_acp", "fg": 3571 }, - { "id": "357mag_fmj", "fg": 3572 }, - { "id": "357mag_jhp", "fg": 3573 }, - { "id": "357sig_fmj", "fg": 3574 }, - { "id": "357sig_jhp", "fg": 3575 }, - { "id": "380_FMJ", "fg": 3576 }, - { "id": "380_JHP", "fg": 3577 }, - { "id": "380_p", "fg": 3578 }, - { "id": "38_fmj", "fg": 3579 }, - { "id": "38_special", "fg": 3580 }, - { "id": "38_super", "fg": 3581 }, - { "id": "38super_fmj", "fg": 3582 }, - { "id": "40fmj", "fg": 3583 }, - { "id": "40mm_flashbang", "fg": 3584 }, - { "id": "40mm_incendiary", "fg": 3585 }, - { "id": "40mm_slug", "fg": 3586 }, - { "id": "40sw", "fg": 3587 }, - { "id": "40x46mm_grenade", "fg": 3588 }, - { "id": "40x46mm_m1006", "fg": 3589 }, - { "id": "40x46mm_m433", "fg": 3590 }, - { "id": "40x46mm_m576", "fg": 3591 }, - { "id": "40x46mm_m651", "fg": 3592 }, - { "id": "40x53mm_buckshot_m169", "fg": 3593 }, - { "id": "40x53mm_flechette_m169", "fg": 3594 }, - { "id": "40x53mm_grenade", "fg": 3595 }, - { "id": "40x53mm_m1001", "fg": 3596 }, - { "id": "40x53mm_m430a1", "fg": 3597 }, - { "id": "40x53mm_slug_m169", "fg": 3598 }, - { "id": "410shot_000", "fg": 3599 }, - { "id": "44fmj", "fg": 3600 }, - { "id": "44magnum", "fg": 3601 }, - { "id": "454_Casull", "fg": 3602 }, - { "id": "4570_low", "fg": 3603 }, - { "id": "4570_pen", "fg": 3604 }, - { "id": "4570_sp", "fg": 3605 }, - { "id": "45_acp", "fg": 3606 }, - { "id": "45_jhp", "fg": 3607 }, - { "id": "45_super", "fg": 3608 }, - { "id": "45colt_jhp", "fg": 3609 }, - { "id": "460_fmj", "fg": 3610 }, - { "id": "460_rowland", "fg": 3611 }, - { "id": "46mm", "fg": 3612 }, - { "id": "500_Magnum", "fg": 3613 }, - { "id": "50_incendiary", "fg": 3614 }, - { "id": "50_mk211", "fg": 3615 }, - { "id": "50bmg", "fg": 3616 }, - { "id": "50match", "fg": 3617 }, - { "id": "50ss", "fg": 3618 }, - { "id": "545", "fg": 3619 }, - { "id": "545_ap", "fg": 3620 }, - { "id": "556", "fg": 3621 }, - { "id": "556_incendiary", "fg": 3622 }, - { "id": "57mm", "fg": 3623 }, - { "id": "5x50dart", "fg": 3624 }, - { "id": "5x50heavy", "fg": 3625 }, - { "id": "66mm_HEAT", "fg": 3626 }, - { "id": "700nx", "fg": 3627 }, - { "id": "762_25", "fg": 3628 }, - { "id": "762_25hot", "fg": 3629 }, - { "id": "762_25typeP", "fg": 3630 }, - { "id": "762_51", "fg": 3631 }, - { "id": "762_51_incendiary", "fg": 3632 }, - { "id": "762_54R", "fg": 3633 }, - { "id": "762_m43", "fg": 3634 }, - { "id": "762_m87", "fg": 3635 }, - { "id": "84x246mm_he", "fg": 3636 }, - { "id": "84x246mm_hedp", "fg": 3637 }, - { "id": "84x246mm_smoke", "fg": 3638 }, - { "id": "8mm_bootleg", "fg": 3639 }, - { "id": "8mm_caseless", "fg": 3640 }, - { "id": "8mm_civilian", "fg": 3641 }, - { "id": "8mm_fmj", "fg": 3642 }, - { "id": "8mm_hvp", "fg": 3643 }, - { "id": "8mm_inc", "fg": 3644 }, - { "id": "8mm_jhp", "fg": 3645 }, - { "id": "9mm", "fg": 3646 }, - { "id": "9mmP", "fg": 3647 }, - { "id": "9mmfmj", "fg": 3648 }, - { "id": "9x18mm", "fg": 3649 }, - { "id": "9x18mmP2", "fg": 3650 }, - { "id": "9x18mmfmj", "fg": 3651 }, - { "id": "RPG-7_ammo", "fg": 3652 }, - { "id": "RPG-7_og7v", "fg": 3653 }, - { "id": "RPG-7_pg7vr", "fg": 3654 }, - { "id": "RPG-7_tbg7v", "fg": 3655 }, - { "id": "atgm_heat", "fg": 3656 }, - { "id": "m235tpa", "fg": 3657 }, - { "id": "shot_00", "fg": 3658 }, - { "id": "shot_beanbag", "fg": 3659 }, - { "id": "shot_bird", "fg": 3660 }, - { "id": "shot_dragon", "fg": 3661 }, - { "id": "shot_flechette", "fg": 3662 }, - { "id": "shot_he", "fg": 3663 }, - { "id": "shot_scrap", "fg": 3664 }, - { "id": "shot_slug", "fg": 3665 }, - { "id": "1895sbl", "fg": 3686 }, - { "id": "AT4", "fg": 3687 }, - { "id": "LAW", "fg": 3688 }, - { "id": "M24", "fg": 3689 }, - { "id": "RPG", "fg": 3690 }, - { "id": "USAS_12", "fg": 3691 }, - { "id": "airspeargun", "fg": 3692 }, - { "id": "ak74", "fg": 3694 }, - { "id": "american_180", "fg": 3695 }, - { "id": "an94", "fg": 3696 }, - { "id": "ar10", "fg": 3697 }, - { "id": "ar15", "fg": 3698 }, - { "id": "arx160", "fg": 3699 }, - { "id": "as50", "fg": 3700 }, - { "id": "atgm_launcher", "fg": 3701 }, - { "id": "bbgun", "fg": 3702 }, - { "id": "bfg50", "fg": 3703 }, - { "id": "bh_m89", "fg": 3704 }, - { "id": "blunderbuss", "fg": 3705 }, - { "id": "browning_blr", "fg": 3706 }, - { "id": "chemical_thrower", "fg": 3708 }, - { "id": "coilgun", "fg": 3709 }, - { "id": "colt_lightning", "fg": 3710 }, - { "id": "colt_ro635", "fg": 3711 }, - { "id": "combination_gun", "fg": 3712 }, - { "id": "cx4", "fg": 3713 }, - { "id": "doublespeargun", "fg": 3714 }, - { "id": "emp_gun", "fg": 3715 }, - { "id": "famas", "fg": 3716 }, - { "id": "flamethrower", "fg": 3717 }, - { "id": "fn_fal", "fg": 3718 }, - { "id": "fs2000", "fg": 3719 }, - { "id": "ftk93", "fg": 3720 }, - { "id": "garand", "fg": 3721 }, - { "id": "heavy_rail_rifle", "fg": 3722 }, - { "id": "helsing", "fg": 3723 }, - { "id": "henry_big_boy", "fg": 3724 }, - { "id": "hk417_13", "fg": 3725 }, - { "id": "hk_g3", "fg": 3726 }, - { "id": "hk_g36", "fg": 3727 }, - { "id": "hk_g80", "fg": 3728 }, - { "id": "hk_mp5k", "fg": 3729 }, - { "id": "hk_mp5sd", "fg": 3730 }, - { "id": "iwi_tavor_x95_300blk", "fg": 3731 }, - { "id": "ksg-25", "fg": 3732 }, - { "id": "ksg", "fg": 3733 }, - { "id": "ksub2000", "fg": 3734 }, - { "id": "laser_cannon", "fg": 3735 }, - { "id": "laser_rifle", "fg": 3736 }, - { "id": "lever_shotgun", "fg": 3737 }, - { "id": "longrifle_flintlock", "fg": 3738 }, - { "id": "m107a1", "fg": 3739 }, - { "id": "m110a1", "fg": 3740 }, - { "id": "m134", "fg": 3741 }, - { "id": "m14ebr", "fg": 3742 }, - { "id": "m1903", "fg": 3745 }, - { "id": "m1918", "fg": 3746 }, - { "id": "m1a", "fg": 3747 }, - { "id": "m2010", "fg": 3748 }, - { "id": "m202_flash", "fg": 3749 }, - { "id": "m231pfw", "fg": 3750 }, - { "id": "m240", "fg": 3751 }, - { "id": "m27_assault_rifle_var_h&k416a5", "fg": 3753 }, - { "id": "m27_assault_rifle_var_m27iar", "fg": 3754 }, - { "id": "m27_assault_rifle_var_m38dmr", "fg": 3755 }, - { "id": "m27_assault_rifle_var_scar_l", "fg": 3756 }, - { "id": "m2browning", "fg": 3757 }, - { "id": "m2browning_sawn", "fg": 3758 }, - { "id": "m3_carlgustav", "fg": 3759 }, - { "id": "m4_carbine_var_m4a1", "fg": 3760 }, - { "id": "m4_carlgustav", "fg": 3761 }, - { "id": "m79", "fg": 3763 }, - { "id": "mark19", "fg": 3764 }, - { "id": "marlin_9a", "fg": 3765 }, - { "id": "mininuke_launcher", "fg": 3766 }, - { "id": "mosin44", "fg": 3767 }, - { "id": "mosin44_ebr", "fg": 3768 }, - { "id": "mosin91_30", "fg": 3769 }, - { "id": "mosin91_30_ebr", "fg": 3770 }, - { "id": "mossberg_500", "fg": 3771 }, - { "id": "mossberg_500_var_mossberg_500_security", "fg": 3772 }, - { "id": "mossberg_590", "fg": 3773 }, - { "id": "mossberg_590_var_SPAS_12", "fg": 3774 }, - { "id": "mossberg_930", "fg": 3775 }, - { "id": "mossberg_930_var_m1014", "fg": 3776 }, - { "id": "mp18", "fg": 3777 }, - { "id": "needlegun", "fg": 3779 }, - { "id": "pamd68", "fg": 3780 }, - { "id": "pamd71z", "fg": 3781 }, - { "id": "pipe_combination_gun", "fg": 3782 }, - { "id": "plasma_gun", "fg": 3783 }, - { "id": "plasma_rifle", "fg": 3784 }, - { "id": "ppsh", "fg": 3785 }, - { "id": "rebar_rifle", "fg": 3786 }, - { "id": "remington700_270", "fg": 3787 }, - { "id": "remington_700", "fg": 3788 }, - { "id": "remington_870", "fg": 3789 }, - { "id": "remington_870_breacher", "fg": 3790 }, - { "id": "remington_870_express", "fg": 3791 }, - { "id": "remington_870_var_browning_a5", "fg": 3792 }, - { "id": "remington_870_var_remington_1100", "fg": 3793 }, - { "id": "rifle_flintlock", "fg": 3794 }, - { "id": "rm120c", "fg": 3795 }, - { "id": "rm20", "fg": 3796 }, - { "id": "rm298", "fg": 3797 }, - { "id": "rm451_flamethrower", "fg": 3798 }, - { "id": "rm51_assault_rifle", "fg": 3799 }, - { "id": "rm614_lmg", "fg": 3800 }, - { "id": "rm802", "fg": 3801 }, - { "id": "rm88_battle_rifle", "fg": 3802 }, - { "id": "ruger_1022", "fg": 3803 }, - { "id": "ruger_mini", "fg": 3804 }, - { "id": "saiga_12", "fg": 3805 }, - { "id": "saiga_410", "fg": 3806 }, - { "id": "savage_111f", "fg": 3807 }, - { "id": "scar_h", "fg": 3808 }, - { "id": "sharps", "fg": 3809 }, - { "id": "shotgun_410", "fg": 3810 }, - { "id": "shotgun_d", "fg": 3811 }, - { "id": "shotgun_s", "fg": 3812 }, - { "id": "sig552", "fg": 3813 }, - { "id": "sig_mcx_rattler_sbr", "fg": 3814 }, - { "id": "skorpion_82", "fg": 3815 }, - { "id": "sks", "fg": 3816 }, - { "id": "smg_9mm", "fg": 3818 }, - { "id": "speargun", "fg": 3819 }, - { "id": "sten", "fg": 3820 }, - { "id": "steyr_aug", "fg": 3821 }, - { "id": "surv_rocket_launcher", "fg": 3822 }, - { "id": "survivor_special_700", "fg": 3823 }, - { "id": "tac50", "fg": 3824 }, - { "id": "tavor_12", "fg": 3825 }, - { "id": "tihar", "fg": 3826 }, - { "id": "tommygun", "fg": 3827 }, - { "id": "trex_gun", "fg": 3828 }, - { "id": "weatherby_5", "fg": 3829 }, - { "id": "win70", "fg": 3830 }, - { "id": "winchester_1887", "fg": 3831 }, - { "id": "winchester_1897", "fg": 3832 }, - { "id": "iceaxe", "fg": 3835 }, - { "id": "rifle_case_soft", "fg": 3840 }, - { "id": "rifle_case_soft_2", "fg": 3841 }, - { "id": "rifle_case_soft_leather_2", "fg": 3843 }, - { "id": "rucksack", "fg": 3844 }, - { "id": "compgreatbow", "fg": 3853 }, - { "id": "compositebow", "fg": 3854 }, - { "id": "hybridbow", "fg": 3855 }, - { "id": "longbow", "fg": 3856 }, - { "id": "recurbow", "fg": 3857 }, - { "id": "reflexbow", "fg": 3858 }, - { "id": "reflexrecurvebow", "fg": 3859 }, - { "id": "selfbow", "fg": 3860 }, - { "id": "shortbow", "fg": 3861 }, - { "id": "woodgreatbow", "fg": 3862 }, - { "id": "oxygen_cylinder", "fg": 3867 }, - { "id": "oxygen_tank", "fg": 3868 }, - { "id": "tinyweldtank", "fg": 3869 }, - { "id": "weldtank", "fg": 3870 }, - { "id": "cot", "fg": 3871 }, - { "id": "armguard_soft", "fg": 3872 }, - { "id": "chestwrap_leather", "fg": 3873 }, - { "id": "trenchcoat_leather", "fg": 3874 }, - { "id": "bat_nerf", "fg": 3875 }, - { "id": "golf_bag", "fg": 3876 }, - { "id": "polycarbonate_sheet", "fg": 3877 }, - { "id": "screen_mesh", "fg": 3878 }, - { "id": "bagpipes", "fg": 3879 }, - { "id": "caltrops", "fg": 3880 }, - { "id": "jumper_cable_heavy", "fg": 3881 }, - { "id": "scythe", "fg": 3882 }, - { "id": "motorbike_armor", "fg": 3883 }, - { "id": "rack_test_tube", "fg": 3884 }, - { "id": "bowl_clay", "fg": 3887 }, - { "id": "clay_hydria", "fg": 3888 }, - { "id": "clay_pot", "fg": 3889 }, - { "id": "clay_quern", "fg": 3890 }, - { "id": "clay_watercont", "fg": 3891 }, - { "id": "jug_clay", "fg": 3892 }, - { "id": "bullet_crossbow", "fg": 3956 }, - { "id": "compcrossbow", "fg": 3957 }, - { "id": "compositecrossbow", "fg": 3958 }, - { "id": "crossbow", "fg": 3959 }, - { "id": "hand_crossbow", "fg": 3960 }, - { "id": "huge_crossbow", "fg": 3961 }, - { "id": "rep_crossbow", "fg": 3962 }, - { "id": "amplifier_head", "fg": 3975 }, - { "id": "bindle", "fg": 3976 }, - { "id": "broken_dimensional_anchor", "fg": 3977 }, - { "id": "chainmail_vest", "fg": 3978 }, - { "id": "concrete", "fg": 3979 }, - { "id": "cs_lajatang_off", "fg": 3980 }, - { "id": "dimensional_anchor", "fg": 3981 }, - { "id": "dimensional_anchor_on", "fg": 3982 }, - { "id": "dnd", "fg": 3983 }, - { "id": "g_carpet", "fg": 3984 }, - { "id": "grapnel", "fg": 3985 }, - { "id": "optical_cloak", "fg": 3986 }, - { "id": "p_carpet", "fg": 3987 }, - { "id": "r_carpet", "fg": 3988 }, - { "id": "trimmer_off", "fg": 3989 }, - { "id": "trimmer_on", "fg": 3990 }, - { "id": "tux", "fg": 3991 }, - { "id": "v_scoop_item", "fg": 3992 }, - { "id": "wool_suit", "fg": 3993 }, - { "id": "y_carpet", "fg": 3994 }, - { "id": "multi_cooker", "fg": 3995 }, - { "id": "multi_cooker_filled", "fg": 3996 }, - { "id": "pet_carrier", "fg": 3997 }, - { "id": "manhole_cover", "fg": 4016 }, - { "id": "PR24-extended", "fg": 4022 }, - { "id": "PR24-retracted", "fg": 4023 }, - { "id": "baton-extended", "fg": 4024 }, - { "id": "baton", "fg": 4025 }, - { "id": "guitar_stand", "fg": 4026 }, - { "id": "mic_stand_tall", "fg": 4027 }, - { "id": "mixer_music", "fg": 4028 }, - { "id": "pipe_shotgun", "fg": 4047 }, - { "id": "pool_cue", "fg": 4052 }, - { "id": "bokken", "fg": 4085 }, - { "id": "UPS_off", "fg": 4091 }, - { "id": "hose", "fg": 4092 }, - { "id": "oxy_torch", "fg": 4093 }, - { "id": "picklocks", "fg": 4094 }, - { "id": "f_magic_circle", "fg": 4101 }, - { "id": "mon_dragonfly_naiad", "fg": 4245 }, - { "id": "mon_molebot", "fg": 4293 }, - { "id": "mon_spawn_raptor_electric", "fg": 4301 }, - { "id": "mon_spawn_raptor_shady", "fg": 4302 }, - { "id": "mon_spawn_raptor_unstable", "fg": 4303 }, - { "id": "mon_turret_riot", "fg": 4305 }, - { "id": "footstep", "fg": 4347 }, - { "id": "footstep_above", "fg": 4348 }, - { "id": "footstep_below", "fg": 4349 }, - { "id": "unknown_field", "fg": 4350 }, - { "id": "unknown_furniture", "fg": 4351 }, - { "id": "unknown_item", "fg": 4352 }, - { "id": "unknown_item_AMMO", "fg": 4353 }, - { "id": "unknown_item_ARMOR", "fg": 4354 }, - { "id": "unknown_item_BIONIC", "fg": 4355 }, - { "id": "unknown_item_BOOK", "fg": 4356 }, - { "id": "unknown_item_FOOD", "fg": 4357 }, - { "id": "unknown_item_GUN", "fg": 4358 }, - { "id": "unknown_item_TOOL", "fg": 4359 }, - { "id": "unknown_item_misc", "fg": 4360 }, - { "id": "unknown_terrain", "fg": 4361 }, - { "id": "unknown_trap", "fg": 4362 }, - { "id": "unknown_vehicle_part", "fg": 4363 }, - { "id": "overlay_effect_slimed", "fg": 4374 }, - { "id": "overlay_effect_wet", "fg": 4375 }, - { "id": "overlay_friendly_sees_player", "fg": 4376 }, - { "id": "overlay_hostile_sees_player", "fg": 4377 }, - { "id": "overlay_neutral_sees_player", "fg": 4378 }, - { "id": "overlay_other_sees_player", "fg": 4379 }, - { "id": "zombie_revival_indicator", "fg": 4380 }, - { "id": "overlay_female_mutation_HOOVES", "fg": 4381 }, - { "id": "overlay_male_mutation_HOOVES", "fg": 4382 }, - { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 4383 }, - { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 4384 }, - { "id": "overlay_wielded_bfg50", "fg": 4385 }, - { "id": "cemetery_small", "fg": 4407 }, - { "id": "dirt_road_center", "fg": 4410 }, - { "id": "dirt_road_end_piece_e", "fg": 4417 }, - { "id": "dirt_road_end_piece_n", "fg": 4418 }, - { "id": "dirt_road_end_piece_s", "fg": 4419 }, - { "id": "dirt_road_end_piece_w", "fg": 4420 }, - { "id": "dirt_road_unconnected", "fg": 4425 }, - { "id": "hunting_blind", "fg": 4451 }, - { "id": "overmap_horde_3", "fg": 4452 }, - { "id": "overmap_horde_4", "fg": 4453 }, - { "id": "overmap_horde_5", "fg": 4454 }, - { "id": "overmap_horde_6", "fg": 4455 }, - { "id": "overmap_remembered_vehicle", "fg": 4456 }, - { "id": "pasture_connection_ew", "fg": 4479 }, - { "id": "pasture_connection_ns", "fg": 4480 }, - { "id": "pasture_unconnected", "fg": 4493 }, - { "id": "t_metal_ventilation_shutter", "fg": 4558 }, - { "id": "t_ramp_down_high", "fg": 4576 }, - { "id": "t_ramp_up_high", "fg": 4577 }, - { "id": "t_sidewalk_ramp_down_high", "fg": 4578 }, - { "id": "t_sidewalk_ramp_up_high", "fg": 4579 }, - { "id": "t_slope_down", "fg": 4580 }, - { "id": "t_slope_up", "fg": 4581 }, - { "id": "t_door_b_peep", "fg": 4926 }, - { "id": "t_door_boarded_damaged_peep", "fg": 4927 }, - { "id": "t_door_boarded_peep", "fg": 4928 }, - { "id": "t_door_c_peep", "fg": 4929 }, - { "id": "t_door_locked_peep", "fg": 4930 }, - { "id": "t_door_o_peep", "fg": 4931 }, - { "id": "t_fence_post", "fg": 4968 }, - { "id": "t_ladder_down", "fg": 5190 }, - { "id": "t_mud", "fg": 5308 }, - { "id": "t_thconc_floor_unconnected", "fg": 5804 }, - { "id": "t_thconc_floor_flesh", "fg": 5805 }, - { "id": "t_wall_resin_cage", "fg": 5998 }, - { "id": "t_window_domestic_taped", "fg": 6154 }, - { "id": "t_window_no_curtains_taped", "fg": 6158 }, - { "id": "t_window_taped", "fg": 6160 }, - { "id": "tr_cot", "fg": 6163 }, - { "id": "tr_caltrops", "fg": 6164 }, - { "id": "tr_telepad", "fg": 6165 }, - { "id": "tr_landmine", "fg": 6168 }, - { "id": "tr_landmine_buried", "fg": 6169 }, - { "id": "tr_practice_target", "fg": 6171 }, - { "id": "metal_boat_hull", "fg": 6173 } + "fg": 6281, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 6281 } ] + }, + { "id": "fd_dazzling", "fg": 2929 }, + { "id": "fd_fatigue", "fg": 2930 }, + { "id": "fd_fire", "fg": 2931 }, + { "id": "fd_laser", "fg": 2932 }, + { "id": "fd_plasma", "fg": 2933 }, + { "id": "fd_extinguisher", "fg": 3142 }, + { "id": "fd_fungal_haze", "fg": 3143 }, + { "id": "fd_fungicidal_gas", "fg": 3144 }, + { "id": "fd_hot_air_sauna", "fg": 3145 }, + { "id": "fd_insecticidal_gas", "fg": 3146 }, + { "id": "fd_nuke_gas", "fg": 3147 }, + { "id": "fd_relax_gas", "fg": 3148 }, + { "id": "fd_smoke", "fg": 3149 }, + { "id": "fd_tear_gas", "fg": 3150 }, + { "id": "fd_toxic_gas", "fg": 3151 }, + { "id": "f_target", "fg": 3162 }, + { "id": "f_chest", "fg": 3163 }, + { "id": "f_dive_block", "fg": 3164 }, + { "id": "f_foot_locker", "fg": 3165 }, + { "id": "f_sand_castle", "fg": 3166 }, + { "id": "f_shredder", "fg": 3167 }, + { "id": "f_tourist_table", "fg": 3168 }, + { "id": "f_exodii_pump", "fg": 3175 }, + { "id": "f_beaded_door", "fg": 3199 }, + { "id": "f_beaded_door_o", "fg": 3200 }, + { "id": "f_black_eyed_susan", "fg": 3233 }, + { "id": "f_chimney", "fg": 3265 }, + { "id": "f_curtain", "fg": 3299 }, + { "id": "f_curtain_open", "fg": 3300 }, + { "id": "f_lily", "fg": 3345 }, + { "id": "f_skin_groundsheet", "fg": 3478 }, + { "id": "acidchitin_plate", "fg": 3557 }, + { "id": "acoustic_guitar", "fg": 3558 }, + { "id": "alloy_plate", "fg": 3559 }, + { "id": "armor_lorica", "fg": 3560 }, + { "id": "banjo", "fg": 3561 }, + { "id": "bionic_general", "fg": 3562 }, + { "id": "bodypillow", "fg": 3563 }, + { "id": "bookplate", "fg": 3564 }, + { "id": "bot_copbot", "fg": 3565 }, + { "id": "bot_riotbot", "fg": 3566 }, + { "id": "broken_copbot", "fg": 3567 }, + { "id": "broken_riotbot", "fg": 3568 }, + { "id": "chainmail_hauberk", "fg": 3569 }, + { "id": "char_smoker", "fg": 3570 }, + { "id": "dehydrator", "fg": 3571 }, + { "id": "folding_poncho_on", "fg": 3572 }, + { "id": "gambeson", "fg": 3573 }, + { "id": "glass_sheet", "fg": 3574 }, + { "id": "gown", "fg": 3575 }, + { "id": "guitar_electric", "fg": 3576 }, + { "id": "hand_paddles", "fg": 3578 }, + { "id": "i4_combustion", "fg": 3579 }, + { "id": "inflatable_boat", "fg": 3580 }, + { "id": "inflatable_section", "fg": 3581 }, + { "id": "lawnmower", "fg": 3582 }, + { "id": "mattress", "fg": 3583 }, + { "id": "mil_plate", "fg": 3584 }, + { "id": "rake_plastic", "fg": 3586 }, + { "id": "reinforced_glass_sheet", "fg": 3587 }, + { "id": "robe", "fg": 3588 }, + { "id": "rock_quern", "fg": 3589 }, + { "id": "saxophone", "fg": 3590 }, + { "id": "sheet", "fg": 3591 }, + { "id": "steel_plate", "fg": 3592 }, + { "id": "telepad", "fg": 3593 }, + { "id": "trumpet", "fg": 3594 }, + { "id": "tuba", "fg": 3595 }, + { "id": "tunic", "fg": 3596 }, + { "id": "tunic_rag", "fg": 3597 }, + { "id": "umbrella", "fg": 3598 }, + { "id": "wheel_armor", "fg": 3599 }, + { "id": "wheel_wide", "fg": 3600 }, + { "id": "wheel_wide_or", "fg": 3601 }, + { "id": "10mm_fmj", "fg": 3602 }, + { "id": "120mm_HEAT", "fg": 3603 }, + { "id": "123ln", "fg": 3604 }, + { "id": "12mm", "fg": 3605 }, + { "id": "20x66_beanbag", "fg": 3606 }, + { "id": "20x66_flare", "fg": 3607 }, + { "id": "20x66_flechette", "fg": 3608 }, + { "id": "20x66_frag", "fg": 3609 }, + { "id": "20x66_inc", "fg": 3610 }, + { "id": "20x66_shot", "fg": 3611 }, + { "id": "20x66_slug", "fg": 3612 }, + { "id": "223", "fg": 3613 }, + { "id": "22_cb", "fg": 3614 }, + { "id": "22_fmj", "fg": 3615 }, + { "id": "22_lr", "fg": 3616 }, + { "id": "22_ratshot", "fg": 3617 }, + { "id": "270win_jsp", "fg": 3618 }, + { "id": "3006", "fg": 3619 }, + { "id": "3006_incendiary", "fg": 3620 }, + { "id": "3006fmj", "fg": 3621 }, + { "id": "300_winmag", "fg": 3622 }, + { "id": "300blk", "fg": 3623 }, + { "id": "300blk_ss", "fg": 3624 }, + { "id": "308", "fg": 3625 }, + { "id": "32_acp", "fg": 3626 }, + { "id": "357mag_fmj", "fg": 3627 }, + { "id": "357mag_jhp", "fg": 3628 }, + { "id": "357sig_fmj", "fg": 3629 }, + { "id": "357sig_jhp", "fg": 3630 }, + { "id": "380_FMJ", "fg": 3631 }, + { "id": "380_JHP", "fg": 3632 }, + { "id": "380_p", "fg": 3633 }, + { "id": "38_fmj", "fg": 3634 }, + { "id": "38_special", "fg": 3635 }, + { "id": "38_super", "fg": 3636 }, + { "id": "38super_fmj", "fg": 3637 }, + { "id": "40fmj", "fg": 3638 }, + { "id": "40mm_flashbang", "fg": 3639 }, + { "id": "40mm_incendiary", "fg": 3640 }, + { "id": "40mm_slug", "fg": 3641 }, + { "id": "40sw", "fg": 3642 }, + { "id": "40x46mm_grenade", "fg": 3643 }, + { "id": "40x46mm_m1006", "fg": 3644 }, + { "id": "40x46mm_m433", "fg": 3645 }, + { "id": "40x46mm_m576", "fg": 3646 }, + { "id": "40x46mm_m651", "fg": 3647 }, + { "id": "40x53mm_buckshot_m169", "fg": 3648 }, + { "id": "40x53mm_flechette_m169", "fg": 3649 }, + { "id": "40x53mm_grenade", "fg": 3650 }, + { "id": "40x53mm_m1001", "fg": 3651 }, + { "id": "40x53mm_m430a1", "fg": 3652 }, + { "id": "40x53mm_slug_m169", "fg": 3653 }, + { "id": "410shot_000", "fg": 3654 }, + { "id": "44fmj", "fg": 3655 }, + { "id": "44magnum", "fg": 3656 }, + { "id": "454_Casull", "fg": 3657 }, + { "id": "4570_low", "fg": 3658 }, + { "id": "4570_pen", "fg": 3659 }, + { "id": "4570_sp", "fg": 3660 }, + { "id": "45_acp", "fg": 3661 }, + { "id": "45_jhp", "fg": 3662 }, + { "id": "45_super", "fg": 3663 }, + { "id": "45colt_jhp", "fg": 3664 }, + { "id": "460_fmj", "fg": 3665 }, + { "id": "460_rowland", "fg": 3666 }, + { "id": "46mm", "fg": 3667 }, + { "id": "500_Magnum", "fg": 3668 }, + { "id": "50_incendiary", "fg": 3669 }, + { "id": "50_mk211", "fg": 3670 }, + { "id": "50bmg", "fg": 3671 }, + { "id": "50match", "fg": 3672 }, + { "id": "50ss", "fg": 3673 }, + { "id": "545", "fg": 3674 }, + { "id": "545_ap", "fg": 3675 }, + { "id": "556", "fg": 3676 }, + { "id": "556_incendiary", "fg": 3677 }, + { "id": "57mm", "fg": 3678 }, + { "id": "5x50dart", "fg": 3679 }, + { "id": "5x50heavy", "fg": 3680 }, + { "id": "66mm_HEAT", "fg": 3681 }, + { "id": "700nx", "fg": 3682 }, + { "id": "762_25", "fg": 3683 }, + { "id": "762_25hot", "fg": 3684 }, + { "id": "762_25typeP", "fg": 3685 }, + { "id": "762_51", "fg": 3686 }, + { "id": "762_51_incendiary", "fg": 3687 }, + { "id": "762_54R", "fg": 3688 }, + { "id": "762_m43", "fg": 3689 }, + { "id": "762_m87", "fg": 3690 }, + { "id": "84x246mm_he", "fg": 3691 }, + { "id": "84x246mm_hedp", "fg": 3692 }, + { "id": "84x246mm_smoke", "fg": 3693 }, + { "id": "8mm_bootleg", "fg": 3694 }, + { "id": "8mm_caseless", "fg": 3695 }, + { "id": "8mm_civilian", "fg": 3696 }, + { "id": "8mm_fmj", "fg": 3697 }, + { "id": "8mm_hvp", "fg": 3698 }, + { "id": "8mm_inc", "fg": 3699 }, + { "id": "8mm_jhp", "fg": 3700 }, + { "id": "9mm", "fg": 3701 }, + { "id": "9mmP", "fg": 3702 }, + { "id": "9mmfmj", "fg": 3703 }, + { "id": "9x18mm", "fg": 3704 }, + { "id": "9x18mmP2", "fg": 3705 }, + { "id": "9x18mmfmj", "fg": 3706 }, + { "id": "RPG-7_ammo", "fg": 3707 }, + { "id": "RPG-7_og7v", "fg": 3708 }, + { "id": "RPG-7_pg7vr", "fg": 3709 }, + { "id": "RPG-7_tbg7v", "fg": 3710 }, + { "id": "atgm_heat", "fg": 3711 }, + { "id": "m235tpa", "fg": 3712 }, + { "id": "shot_00", "fg": 3713 }, + { "id": "shot_beanbag", "fg": 3714 }, + { "id": "shot_bird", "fg": 3715 }, + { "id": "shot_dragon", "fg": 3716 }, + { "id": "shot_flechette", "fg": 3717 }, + { "id": "shot_he", "fg": 3718 }, + { "id": "shot_scrap", "fg": 3719 }, + { "id": "shot_slug", "fg": 3720 }, + { "id": "1895sbl", "fg": 3741 }, + { "id": "AT4", "fg": 3742 }, + { "id": "LAW", "fg": 3743 }, + { "id": "M24", "fg": 3744 }, + { "id": "RPG", "fg": 3745 }, + { "id": "USAS_12", "fg": 3746 }, + { "id": "airspeargun", "fg": 3747 }, + { "id": "ak74", "fg": 3749 }, + { "id": "american_180", "fg": 3750 }, + { "id": "an94", "fg": 3751 }, + { "id": "ar10", "fg": 3752 }, + { "id": "ar15", "fg": 3753 }, + { "id": "arx160", "fg": 3754 }, + { "id": "as50", "fg": 3755 }, + { "id": "atgm_launcher", "fg": 3756 }, + { "id": "bbgun", "fg": 3757 }, + { "id": "bfg50", "fg": 3758 }, + { "id": "bh_m89", "fg": 3759 }, + { "id": "blunderbuss", "fg": 3760 }, + { "id": "browning_blr", "fg": 3761 }, + { "id": "chemical_thrower", "fg": 3763 }, + { "id": "coilgun", "fg": 3764 }, + { "id": "colt_lightning", "fg": 3765 }, + { "id": "colt_ro635", "fg": 3766 }, + { "id": "combination_gun", "fg": 3767 }, + { "id": "cx4", "fg": 3768 }, + { "id": "doublespeargun", "fg": 3769 }, + { "id": "emp_gun", "fg": 3770 }, + { "id": "famas", "fg": 3771 }, + { "id": "flamethrower", "fg": 3772 }, + { "id": "fn_fal", "fg": 3773 }, + { "id": "fs2000", "fg": 3774 }, + { "id": "ftk93", "fg": 3775 }, + { "id": "garand", "fg": 3776 }, + { "id": "heavy_rail_rifle", "fg": 3777 }, + { "id": "helsing", "fg": 3778 }, + { "id": "henry_big_boy", "fg": 3779 }, + { "id": "hk417_13", "fg": 3780 }, + { "id": "hk_g3", "fg": 3781 }, + { "id": "hk_g36", "fg": 3782 }, + { "id": "hk_g80", "fg": 3783 }, + { "id": "hk_mp5k", "fg": 3784 }, + { "id": "hk_mp5sd", "fg": 3785 }, + { "id": "iwi_tavor_x95_300blk", "fg": 3786 }, + { "id": "ksg-25", "fg": 3787 }, + { "id": "ksg", "fg": 3788 }, + { "id": "ksub2000", "fg": 3789 }, + { "id": "laser_cannon", "fg": 3790 }, + { "id": "laser_rifle", "fg": 3791 }, + { "id": "lever_shotgun", "fg": 3792 }, + { "id": "longrifle_flintlock", "fg": 3793 }, + { "id": "m107a1", "fg": 3794 }, + { "id": "m110a1", "fg": 3795 }, + { "id": "m134", "fg": 3796 }, + { "id": "m14ebr", "fg": 3797 }, + { "id": "m1903", "fg": 3800 }, + { "id": "m1918", "fg": 3801 }, + { "id": "m1a", "fg": 3802 }, + { "id": "m2010", "fg": 3803 }, + { "id": "m202_flash", "fg": 3804 }, + { "id": "m231pfw", "fg": 3805 }, + { "id": "m240", "fg": 3806 }, + { "id": "m27_assault_rifle_var_h&k416a5", "fg": 3808 }, + { "id": "m27_assault_rifle_var_m27iar", "fg": 3809 }, + { "id": "m27_assault_rifle_var_m38dmr", "fg": 3810 }, + { "id": "m27_assault_rifle_var_scar_l", "fg": 3811 }, + { "id": "m2browning", "fg": 3812 }, + { "id": "m2browning_sawn", "fg": 3813 }, + { "id": "m3_carlgustav", "fg": 3814 }, + { "id": "m4_carbine_var_m4a1", "fg": 3815 }, + { "id": "m4_carlgustav", "fg": 3816 }, + { "id": "m79", "fg": 3818 }, + { "id": "mark19", "fg": 3819 }, + { "id": "marlin_9a", "fg": 3820 }, + { "id": "mininuke_launcher", "fg": 3821 }, + { "id": "mosin44", "fg": 3822 }, + { "id": "mosin44_ebr", "fg": 3823 }, + { "id": "mosin91_30", "fg": 3824 }, + { "id": "mosin91_30_ebr", "fg": 3825 }, + { "id": "mossberg_500", "fg": 3826 }, + { "id": "mossberg_500_var_mossberg_500_security", "fg": 3827 }, + { "id": "mossberg_590", "fg": 3828 }, + { "id": "mossberg_590_var_SPAS_12", "fg": 3829 }, + { "id": "mossberg_930", "fg": 3830 }, + { "id": "mossberg_930_var_m1014", "fg": 3831 }, + { "id": "mp18", "fg": 3832 }, + { "id": "needlegun", "fg": 3834 }, + { "id": "pamd68", "fg": 3835 }, + { "id": "pamd71z", "fg": 3836 }, + { "id": "pipe_combination_gun", "fg": 3837 }, + { "id": "plasma_gun", "fg": 3838 }, + { "id": "plasma_rifle", "fg": 3839 }, + { "id": "ppsh", "fg": 3840 }, + { "id": "rebar_rifle", "fg": 3841 }, + { "id": "remington700_270", "fg": 3842 }, + { "id": "remington_700", "fg": 3843 }, + { "id": "remington_870", "fg": 3844 }, + { "id": "remington_870_breacher", "fg": 3845 }, + { "id": "remington_870_express", "fg": 3846 }, + { "id": "remington_870_var_browning_a5", "fg": 3847 }, + { "id": "remington_870_var_remington_1100", "fg": 3848 }, + { "id": "rifle_flintlock", "fg": 3849 }, + { "id": "rm120c", "fg": 3850 }, + { "id": "rm20", "fg": 3851 }, + { "id": "rm298", "fg": 3852 }, + { "id": "rm451_flamethrower", "fg": 3853 }, + { "id": "rm51_assault_rifle", "fg": 3854 }, + { "id": "rm614_lmg", "fg": 3855 }, + { "id": "rm802", "fg": 3856 }, + { "id": "rm88_battle_rifle", "fg": 3857 }, + { "id": "ruger_1022", "fg": 3858 }, + { "id": "ruger_mini", "fg": 3859 }, + { "id": "saiga_12", "fg": 3860 }, + { "id": "saiga_410", "fg": 3861 }, + { "id": "savage_111f", "fg": 3862 }, + { "id": "scar_h", "fg": 3863 }, + { "id": "sharps", "fg": 3864 }, + { "id": "shotgun_410", "fg": 3865 }, + { "id": "shotgun_d", "fg": 3866 }, + { "id": "shotgun_s", "fg": 3867 }, + { "id": "sig552", "fg": 3868 }, + { "id": "sig_mcx_rattler_sbr", "fg": 3869 }, + { "id": "skorpion_82", "fg": 3870 }, + { "id": "sks", "fg": 3871 }, + { "id": "smg_9mm", "fg": 3873 }, + { "id": "speargun", "fg": 3874 }, + { "id": "sten", "fg": 3875 }, + { "id": "steyr_aug", "fg": 3876 }, + { "id": "surv_rocket_launcher", "fg": 3877 }, + { "id": "survivor_special_700", "fg": 3878 }, + { "id": "tac50", "fg": 3879 }, + { "id": "tavor_12", "fg": 3880 }, + { "id": "tihar", "fg": 3881 }, + { "id": "tommygun", "fg": 3882 }, + { "id": "trex_gun", "fg": 3883 }, + { "id": "weatherby_5", "fg": 3884 }, + { "id": "win70", "fg": 3885 }, + { "id": "winchester_1887", "fg": 3886 }, + { "id": "winchester_1897", "fg": 3887 }, + { "id": "iceaxe", "fg": 3890 }, + { "id": "rifle_case_soft", "fg": 3895 }, + { "id": "rifle_case_soft_2", "fg": 3896 }, + { "id": "rifle_case_soft_leather_2", "fg": 3898 }, + { "id": "rucksack", "fg": 3899 }, + { "id": "compgreatbow", "fg": 3908 }, + { "id": "compositebow", "fg": 3909 }, + { "id": "hybridbow", "fg": 3910 }, + { "id": "longbow", "fg": 3911 }, + { "id": "recurbow", "fg": 3912 }, + { "id": "reflexbow", "fg": 3913 }, + { "id": "reflexrecurvebow", "fg": 3914 }, + { "id": "selfbow", "fg": 3915 }, + { "id": "shortbow", "fg": 3916 }, + { "id": "woodgreatbow", "fg": 3917 }, + { "id": "oxygen_cylinder", "fg": 3922 }, + { "id": "oxygen_tank", "fg": 3923 }, + { "id": "tinyweldtank", "fg": 3924 }, + { "id": "weldtank", "fg": 3925 }, + { "id": "cot", "fg": 3926 }, + { "id": "armguard_soft", "fg": 3927 }, + { "id": "chestwrap_leather", "fg": 3928 }, + { "id": "trenchcoat_leather", "fg": 3929 }, + { "id": "bat_nerf", "fg": 3930 }, + { "id": "golf_bag", "fg": 3931 }, + { "id": "polycarbonate_sheet", "fg": 3932 }, + { "id": "screen_mesh", "fg": 3933 }, + { "id": "bagpipes", "fg": 3934 }, + { "id": "caltrops", "fg": 3935 }, + { "id": "jumper_cable_heavy", "fg": 3936 }, + { "id": "scythe", "fg": 3937 }, + { "id": "motorbike_armor", "fg": 3938 }, + { "id": "rack_test_tube", "fg": 3939 }, + { "id": "bowl_clay", "fg": 3942 }, + { "id": "clay_hydria", "fg": 3943 }, + { "id": "clay_pot", "fg": 3944 }, + { "id": "clay_quern", "fg": 3945 }, + { "id": "clay_watercont", "fg": 3946 }, + { "id": "jug_clay", "fg": 3947 }, + { "id": "bullet_crossbow", "fg": 4011 }, + { "id": "compcrossbow", "fg": 4012 }, + { "id": "compositecrossbow", "fg": 4013 }, + { "id": "crossbow", "fg": 4014 }, + { "id": "hand_crossbow", "fg": 4015 }, + { "id": "huge_crossbow", "fg": 4016 }, + { "id": "rep_crossbow", "fg": 4017 }, + { "id": "amplifier_head", "fg": 4030 }, + { "id": "bindle", "fg": 4031 }, + { "id": "broken_dimensional_anchor", "fg": 4032 }, + { "id": "chainmail_vest", "fg": 4033 }, + { "id": "concrete", "fg": 4034 }, + { "id": "cs_lajatang_off", "fg": 4035 }, + { "id": "dimensional_anchor", "fg": 4036 }, + { "id": "dimensional_anchor_on", "fg": 4037 }, + { "id": "dnd", "fg": 4038 }, + { "id": "g_carpet", "fg": 4039 }, + { "id": "grapnel", "fg": 4040 }, + { "id": "optical_cloak", "fg": 4041 }, + { "id": "p_carpet", "fg": 4042 }, + { "id": "r_carpet", "fg": 4043 }, + { "id": "trimmer_off", "fg": 4044 }, + { "id": "trimmer_on", "fg": 4045 }, + { "id": "tux", "fg": 4046 }, + { "id": "v_scoop_item", "fg": 4047 }, + { "id": "wool_suit", "fg": 4048 }, + { "id": "y_carpet", "fg": 4049 }, + { "id": "multi_cooker", "fg": 4050 }, + { "id": "multi_cooker_filled", "fg": 4051 }, + { "id": "pet_carrier", "fg": 4052 }, + { "id": "manhole_cover", "fg": 4071 }, + { "id": "PR24-extended", "fg": 4077 }, + { "id": "PR24-retracted", "fg": 4078 }, + { "id": "baton-extended", "fg": 4079 }, + { "id": "baton", "fg": 4080 }, + { "id": "guitar_stand", "fg": 4081 }, + { "id": "mic_stand_tall", "fg": 4082 }, + { "id": "mixer_music", "fg": 4083 }, + { "id": "pipe_shotgun", "fg": 4102 }, + { "id": "pool_cue", "fg": 4107 }, + { "id": "bokken", "fg": 4140 }, + { "id": "UPS_off", "fg": 4146 }, + { "id": "hose", "fg": 4147 }, + { "id": "oxy_torch", "fg": 4148 }, + { "id": "picklocks", "fg": 4149 }, + { "id": "f_magic_circle", "fg": 4156 }, + { "id": "mon_dragonfly_naiad", "fg": 4306 }, + { "id": "mon_molebot", "fg": 4359 }, + { "id": "mon_spawn_raptor_electric", "fg": 4367 }, + { "id": "mon_spawn_raptor_shady", "fg": 4368 }, + { "id": "mon_spawn_raptor_unstable", "fg": 4369 }, + { "id": "mon_turret_riot", "fg": 4371 }, + { "id": "footstep", "fg": 4412 }, + { "id": "footstep_above", "fg": 4413 }, + { "id": "footstep_below", "fg": 4414 }, + { "id": "unknown_field", "fg": 4415 }, + { "id": "unknown_furniture", "fg": 4416 }, + { "id": "unknown_item", "fg": 4417 }, + { "id": "unknown_item_AMMO", "fg": 4418 }, + { "id": "unknown_item_ARMOR", "fg": 4419 }, + { "id": "unknown_item_BIONIC", "fg": 4420 }, + { "id": "unknown_item_BOOK", "fg": 4421 }, + { "id": "unknown_item_FOOD", "fg": 4422 }, + { "id": "unknown_item_GUN", "fg": 4423 }, + { "id": "unknown_item_TOOL", "fg": 4424 }, + { "id": "unknown_item_misc", "fg": 4425 }, + { "id": "unknown_terrain", "fg": 4426 }, + { "id": "unknown_trap", "fg": 4427 }, + { "id": "unknown_vehicle_part", "fg": 4428 }, + { "id": "overlay_effect_slimed", "fg": 4439 }, + { "id": "overlay_effect_wet", "fg": 4440 }, + { "id": "overlay_friendly_sees_player", "fg": 4441 }, + { "id": "overlay_hostile_sees_player", "fg": 4442 }, + { "id": "overlay_neutral_sees_player", "fg": 4443 }, + { "id": "overlay_other_sees_player", "fg": 4444 }, + { "id": "zombie_revival_indicator", "fg": 4445 }, + { "id": "overlay_female_mutation_HOOVES", "fg": 4446 }, + { "id": "overlay_male_mutation_HOOVES", "fg": 4447 }, + { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 4448 }, + { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 4449 }, + { "id": "overlay_wielded_bfg50", "fg": 4450 }, + { "id": "cemetery_small", "fg": 4472 }, + { "id": "dirt_road_center", "fg": 4475 }, + { "id": "dirt_road_end_piece_e", "fg": 4482 }, + { "id": "dirt_road_end_piece_n", "fg": 4483 }, + { "id": "dirt_road_end_piece_s", "fg": 4484 }, + { "id": "dirt_road_end_piece_w", "fg": 4485 }, + { "id": "dirt_road_unconnected", "fg": 4490 }, + { "id": "hunting_blind", "fg": 4516 }, + { "id": "overmap_horde_3", "fg": 4517 }, + { "id": "overmap_horde_4", "fg": 4518 }, + { "id": "overmap_horde_5", "fg": 4519 }, + { "id": "overmap_horde_6", "fg": 4520 }, + { "id": "overmap_remembered_vehicle", "fg": 4521 }, + { "id": "pasture_connection_ew", "fg": 4544 }, + { "id": "pasture_connection_ns", "fg": 4545 }, + { "id": "pasture_unconnected", "fg": 4558 }, + { "id": "t_metal_ventilation_shutter", "fg": 4623 }, + { "id": "t_ramp_down_high", "fg": 4641 }, + { "id": "t_ramp_up_high", "fg": 4642 }, + { "id": "t_sidewalk_ramp_down_high", "fg": 4643 }, + { "id": "t_sidewalk_ramp_up_high", "fg": 4644 }, + { "id": "t_slope_down", "fg": 4645 }, + { "id": "t_slope_up", "fg": 4646 }, + { "id": "t_door_b_peep", "fg": 4991 }, + { "id": "t_door_boarded_damaged_peep", "fg": 4992 }, + { "id": "t_door_boarded_peep", "fg": 4993 }, + { "id": "t_door_c_peep", "fg": 4994 }, + { "id": "t_door_locked_peep", "fg": 4995 }, + { "id": "t_door_o_peep", "fg": 4996 }, + { "id": "t_fence_post", "fg": 5033 }, + { "id": "t_ladder_down", "fg": 5255 }, + { "id": "t_mud", "fg": 5373 }, + { "id": "t_thconc_floor_unconnected", "fg": 5885 }, + { "id": "t_thconc_floor_flesh", "fg": 5886 }, + { "id": "t_wall_resin_cage", "fg": 6079 }, + { "id": "t_window_domestic_taped", "fg": 6235 }, + { "id": "t_window_no_curtains_taped", "fg": 6239 }, + { "id": "t_window_taped", "fg": 6241 }, + { "id": "tr_cot", "fg": 6244 }, + { "id": "tr_caltrops", "fg": 6245 }, + { "id": "tr_telepad", "fg": 6246 }, + { "id": "tr_landmine", "fg": 6249 }, + { "id": "tr_landmine_buried", "fg": 6250 }, + { "id": "tr_practice_target", "fg": 6252 }, + { "id": "metal_boat_hull", "fg": 6254 } ] }, { "file": "tallfurniture.png", - "//": "range 6208 to 6367", + "//": "range 6288 to 6447", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, @@ -9389,190 +9599,190 @@ "tiles": [ { "id": "f_deckchair", - "fg": [ { "weight": 1, "sprite": 6208 }, { "weight": 1, "sprite": 6209 }, { "weight": 1, "sprite": 6210 } ] + "fg": [ { "weight": 1, "sprite": 6288 }, { "weight": 1, "sprite": 6289 }, { "weight": 1, "sprite": 6290 } ] }, - { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 6212 }, - { "id": "f_punching_bag", "fg": 6216 }, - { "id": "f_exercise", "fg": 6215 }, - { "id": "f_ergometer", "fg": 6214 }, - { "id": "f_IV_pole", "fg": 6224 }, - { "id": "f_arcade_machine", "fg": 6225 }, - { "id": "f_autodoc_couch", "fg": 6226 }, - { "id": "f_birdbath", "fg": 6229 }, + { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 6292 }, + { "id": "f_punching_bag", "fg": 6296 }, + { "id": "f_exercise", "fg": 6295 }, + { "id": "f_ergometer", "fg": 6294 }, + { "id": "f_IV_pole", "fg": 6304 }, + { "id": "f_arcade_machine", "fg": 6305 }, + { "id": "f_autodoc_couch", "fg": 6306 }, + { "id": "f_birdbath", "fg": 6309 }, { "id": "f_bookcase", "multitile": true, "rotates": false, - "fg": 6230, + "fg": 6310, "additional_tiles": [ - { "id": "center", "fg": 6230 }, - { "id": "corner", "fg": [ 6232, 6233, 6233, 6232 ] }, - { "id": "t_connection", "fg": [ 6230, 6231, 6230, 6231 ] }, - { "id": "edge", "fg": [ 6231, 6230 ] }, - { "id": "end_piece", "fg": [ 6232, 6230, 6233, 6230 ] }, - { "id": "unconnected", "fg": [ 6230, 6230 ] } + { "id": "center", "fg": 6310 }, + { "id": "corner", "fg": [ 6312, 6313, 6313, 6312 ] }, + { "id": "t_connection", "fg": [ 6310, 6311, 6310, 6311 ] }, + { "id": "edge", "fg": [ 6311, 6310 ] }, + { "id": "end_piece", "fg": [ 6312, 6310, 6313, 6310 ] }, + { "id": "unconnected", "fg": [ 6310, 6310 ] } ] }, - { "id": "f_boulder_large", "fg": 6234 }, - { "id": "f_cattails_season_spring", "fg": 6237, "rotates": false }, - { "id": "f_cattails_season_summer", "fg": 6238, "rotates": false }, - { "id": "f_cattails_season_autumn", "fg": 6236, "rotates": false }, - { "id": "f_cattails_season_winter", "fg": 6239, "rotates": false }, + { "id": "f_boulder_large", "fg": 6314 }, + { "id": "f_cattails_season_spring", "fg": 6317, "rotates": false }, + { "id": "f_cattails_season_summer", "fg": 6318, "rotates": false }, + { "id": "f_cattails_season_autumn", "fg": 6316, "rotates": false }, + { "id": "f_cattails_season_winter", "fg": 6319, "rotates": false }, { "id": "f_console", "multitile": true, - "fg": 6273, + "fg": 6353, "additional_tiles": [ - { "id": "center", "fg": 6258 }, - { "id": "corner", "fg": [ 6260, 6262, 6261, 6259 ] }, - { "id": "t_connection", "fg": [ 6270, 6272, 6271, 6269 ] }, - { "id": "edge", "fg": [ 6264, 6263 ] }, - { "id": "end_piece", "fg": [ 6266, 6268, 6267, 6265 ] }, - { "id": "unconnected", "fg": [ 6273, 6275, 6273, 6274 ] } + { "id": "center", "fg": 6338 }, + { "id": "corner", "fg": [ 6340, 6342, 6341, 6339 ] }, + { "id": "t_connection", "fg": [ 6350, 6352, 6351, 6349 ] }, + { "id": "edge", "fg": [ 6344, 6343 ] }, + { "id": "end_piece", "fg": [ 6346, 6348, 6347, 6345 ] }, + { "id": "unconnected", "fg": [ 6353, 6355, 6353, 6354 ] } ] }, { "id": "f_console_broken", "multitile": true, - "fg": 6256, + "fg": 6336, "additional_tiles": [ - { "id": "center", "fg": 6240 }, - { "id": "corner", "fg": [ 6242, 6244, 6243, 6241 ] }, - { "id": "t_connection", "fg": [ 6252, 6254, 6253, 6251 ] }, - { "id": "edge", "fg": [ 6246, 6245 ] }, - { "id": "end_piece", "fg": [ 6248, 6250, 6249, 6247 ] }, - { "id": "unconnected", "fg": [ 6256, 6257, 6256, 6255 ] } + { "id": "center", "fg": 6320 }, + { "id": "corner", "fg": [ 6322, 6324, 6323, 6321 ] }, + { "id": "t_connection", "fg": [ 6332, 6334, 6333, 6331 ] }, + { "id": "edge", "fg": [ 6326, 6325 ] }, + { "id": "end_piece", "fg": [ 6328, 6330, 6329, 6327 ] }, + { "id": "unconnected", "fg": [ 6336, 6337, 6336, 6335 ] } ] }, - { "id": "f_crate_c", "fg": 6276 }, - { "id": "f_crate_o", "fg": 6277 }, - { "id": "f_dialysis", "fg": 6278 }, - { "id": "f_dresser", "rotates": true, "fg": [ 6281, 6282, 6280, 6279 ] }, - { "id": "f_dryer", "fg": 6283 }, + { "id": "f_crate_c", "fg": 6356 }, + { "id": "f_crate_o", "fg": 6357 }, + { "id": "f_dialysis", "fg": 6358 }, + { "id": "f_dresser", "rotates": true, "fg": [ 6361, 6362, 6360, 6359 ] }, + { "id": "f_dryer", "fg": 6363 }, { "id": "f_dumpster", - "fg": 6290, + "fg": 6370, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6284 }, - { "id": "corner", "fg": [ 6289, 6289, 6286, 6286 ] }, - { "id": "t_connection", "fg": [ 6284, 6289, 6284, 6286 ] }, - { "id": "edge", "fg": [ 6285, 6284 ] }, - { "id": "end_piece", "fg": [ 6287, 6289, 6288, 6286 ] }, - { "id": "unconnected", "fg": [ 6290, 6290 ] } + { "id": "center", "fg": 6364 }, + { "id": "corner", "fg": [ 6369, 6369, 6366, 6366 ] }, + { "id": "t_connection", "fg": [ 6364, 6369, 6364, 6366 ] }, + { "id": "edge", "fg": [ 6365, 6364 ] }, + { "id": "end_piece", "fg": [ 6367, 6369, 6368, 6366 ] }, + { "id": "unconnected", "fg": [ 6370, 6370 ] } ] }, - { "id": "f_fireplace", "fg": 6291 }, - { "id": "f_floor_lamp", "fg": 6292 }, - { "id": "f_fridge", "rotates": true, "fg": [ 6295, 6296, 6294, 6293 ] }, - { "id": "t_gas_pump", "fg": 6297, "bg": 6411 }, - { "id": "f_gas_pump", "fg": 6297 }, - { "id": "f_glass_cabinet", "fg": 6298 }, - { "id": "f_glass_fridge", "fg": 6299 }, + { "id": "f_fireplace", "fg": 6371 }, + { "id": "f_floor_lamp", "fg": 6372 }, + { "id": "f_fridge", "rotates": true, "fg": [ 6375, 6376, 6374, 6373 ] }, + { "id": "t_gas_pump", "fg": 6377, "bg": 6491 }, + { "id": "f_gas_pump", "fg": 6377 }, + { "id": "f_glass_cabinet", "fg": 6378 }, + { "id": "f_glass_fridge", "fg": 6379 }, { "id": "f_ground_cable", "multitile": true, - "fg": 6318, + "fg": 6398, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 6300 }, { "weight": 1, "sprite": 6300 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 6380 }, { "weight": 1, "sprite": 6380 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 6302, 6305, 6303, 6301 ] }, { "weight": 1, "sprite": [ 6302, 6305, 6304, 6301 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6382, 6385, 6383, 6381 ] }, { "weight": 1, "sprite": [ 6382, 6385, 6384, 6381 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 6315, 6317, 6316, 6314 ] }, { "weight": 1, "sprite": [ 6315, 6317, 6316, 6314 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6395, 6397, 6396, 6394 ] }, { "weight": 1, "sprite": [ 6395, 6397, 6396, 6394 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 6308, 6306 ] }, { "weight": 1, "sprite": [ 6309, 6307 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6388, 6386 ] }, { "weight": 1, "sprite": [ 6389, 6387 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 6311, 6313, 6312, 6310 ] }, { "weight": 1, "sprite": [ 6311, 6313, 6312, 6310 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6391, 6393, 6392, 6390 ] }, { "weight": 1, "sprite": [ 6391, 6393, 6392, 6390 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 6318 }, { "weight": 1, "sprite": 6318 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 6398 }, { "weight": 1, "sprite": 6398 } ] } ] }, - { "id": "f_home_furnace", "fg": 6319 }, - { "id": "f_locker", "fg": 6321 }, - { "id": "f_machinery_old", "fg": 6328 }, - { "id": "t_machinery_old", "fg": 6328, "bg": 6403 }, - { "id": "f_machinery_electronic", "fg": 6322 }, - { "id": "t_machinery_electronic", "fg": 6322, "bg": 6403 }, + { "id": "f_home_furnace", "fg": 6399 }, + { "id": "f_locker", "fg": 6401 }, + { "id": "f_machinery_old", "fg": 6408 }, + { "id": "t_machinery_old", "fg": 6408, "bg": 6483 }, + { "id": "f_machinery_electronic", "fg": 6402 }, + { "id": "t_machinery_electronic", "fg": 6402, "bg": 6483 }, { "id": "f_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 6323 }, { "weight": 150, "sprite": 6324 }, { "weight": 100, "sprite": 6325 } ] + "fg": [ { "weight": 20, "sprite": 6403 }, { "weight": 150, "sprite": 6404 }, { "weight": 100, "sprite": 6405 } ] }, { "id": "t_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 6323 }, { "weight": 150, "sprite": 6324 }, { "weight": 100, "sprite": 6325 } ], - "bg": 6403 + "fg": [ { "weight": 20, "sprite": 6403 }, { "weight": 150, "sprite": 6404 }, { "weight": 100, "sprite": 6405 } ], + "bg": 6483 }, - { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 6327 }, { "weight": 100, "sprite": 6326 } ] }, + { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 6407 }, { "weight": 100, "sprite": 6406 } ] }, { "id": "t_machinery_light", - "fg": [ { "weight": 100, "sprite": 6327 }, { "weight": 100, "sprite": 6326 } ], - "bg": 6403 - }, - { "id": "f_mannequin", "fg": 6329 }, - { "id": "f_alien_tendril", "fg": 6333 }, - { "id": "f_alien_zapper", "fg": 6334 }, - { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 6331 }, - { "id": "f_alien_pod_resin", "fg": 6332 }, - { "id": "f_oven", "rotates": true, "fg": [ 6337, 6338, 6336, 6335 ] }, - { "id": "f_rack_coat", "fg": 6339 }, - { "id": "f_scan_bed", "fg": 6340 }, + "fg": [ { "weight": 100, "sprite": 6407 }, { "weight": 100, "sprite": 6406 } ], + "bg": 6483 + }, + { "id": "f_mannequin", "fg": 6409 }, + { "id": "f_alien_tendril", "fg": 6413 }, + { "id": "f_alien_zapper", "fg": 6414 }, + { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 6411 }, + { "id": "f_alien_pod_resin", "fg": 6412 }, + { "id": "f_oven", "rotates": true, "fg": [ 6417, 6418, 6416, 6415 ] }, + { "id": "f_rack_coat", "fg": 6419 }, + { "id": "f_scan_bed", "fg": 6420 }, { "id": "f_scrap_antenna", "animated": true, "fg": [ - { "weight": 15, "sprite": 6341 }, - { "weight": 15, "sprite": 6342 }, - { "weight": 15, "sprite": 6343 }, - { "weight": 15, "sprite": 6344 }, - { "weight": 15, "sprite": 6345 }, - { "weight": 15, "sprite": 6346 } + { "weight": 15, "sprite": 6421 }, + { "weight": 15, "sprite": 6422 }, + { "weight": 15, "sprite": 6423 }, + { "weight": 15, "sprite": 6424 }, + { "weight": 15, "sprite": 6425 }, + { "weight": 15, "sprite": 6426 } ], "rotates": false }, - { "id": "f_shower", "fg": 6347 }, - { "id": "f_standing_tank", "fg": 6348 }, - { "id": "f_statue", "fg": 6349 }, - { "id": "f_sunflower_season_summer", "fg": 6351 }, - { "id": "f_sunflower_season_autumn", "fg": 6350 }, - { "id": "f_vending_c", "fg": 6352 }, - { "id": "f_vending_reinforced", "fg": 6354 }, - { "id": "f_vending_o", "fg": 6353 }, - { "id": "f_ventilator", "fg": 6355 }, - { "id": "f_washer", "fg": 6356 }, - { "id": "f_water_heater", "fg": 6357 }, - { "id": "f_water_pump", "fg": 6358 }, - { "id": "t_water_pump", "fg": 6358, "bg": 6403 }, - { "id": "f_wind_mill", "fg": 6359 }, - { "id": "f_woodstove", "fg": 6360 }, - { "id": "f_workbench", "fg": 6361 }, - { "id": "f_dishwasher", "fg": 6211 }, - { "id": "f_wardrobe", "fg": 6213 }, - { "id": "f_treadmill", "fg": 6217 }, - { "id": "f_capacitor", "fg": 6218 }, - { "id": "f_exodii_charger", "fg": 6219 }, - { "id": "f_exodii_charger_cheap", "fg": 6220 }, - { "id": "f_exodii_lamp", "fg": 6221 }, - { "id": "f_exodii_portal_tower", "fg": 6222 }, - { "id": "f_exodii_scanner", "fg": 6223 }, - { "id": "f_bigmirror", "fg": 6227 }, - { "id": "f_bigmirror_b", "fg": 6228 }, - { "id": "f_canvas_floor", "fg": 6235 }, - { "id": "f_ladder", "fg": 6320 }, - { "id": "f_alien_gasper", "fg": 6330 }, - { "id": "f_street_light", "fg": 6362 }, - { "id": "f_traffic_light", "fg": 6363 } + { "id": "f_shower", "fg": 6427 }, + { "id": "f_standing_tank", "fg": 6428 }, + { "id": "f_statue", "fg": 6429 }, + { "id": "f_sunflower_season_summer", "fg": 6431 }, + { "id": "f_sunflower_season_autumn", "fg": 6430 }, + { "id": "f_vending_c", "fg": 6432 }, + { "id": "f_vending_reinforced", "fg": 6434 }, + { "id": "f_vending_o", "fg": 6433 }, + { "id": "f_ventilator", "fg": 6435 }, + { "id": "f_washer", "fg": 6436 }, + { "id": "f_water_heater", "fg": 6437 }, + { "id": "f_water_pump", "fg": 6438 }, + { "id": "t_water_pump", "fg": 6438, "bg": 6483 }, + { "id": "f_wind_mill", "fg": 6439 }, + { "id": "f_woodstove", "fg": 6440 }, + { "id": "f_workbench", "fg": 6441 }, + { "id": "f_dishwasher", "fg": 6291 }, + { "id": "f_wardrobe", "fg": 6293 }, + { "id": "f_treadmill", "fg": 6297 }, + { "id": "f_capacitor", "fg": 6298 }, + { "id": "f_exodii_charger", "fg": 6299 }, + { "id": "f_exodii_charger_cheap", "fg": 6300 }, + { "id": "f_exodii_lamp", "fg": 6301 }, + { "id": "f_exodii_portal_tower", "fg": 6302 }, + { "id": "f_exodii_scanner", "fg": 6303 }, + { "id": "f_bigmirror", "fg": 6307 }, + { "id": "f_bigmirror_b", "fg": 6308 }, + { "id": "f_canvas_floor", "fg": 6315 }, + { "id": "f_ladder", "fg": 6400 }, + { "id": "f_alien_gasper", "fg": 6410 }, + { "id": "f_street_light", "fg": 6442 }, + { "id": "f_traffic_light", "fg": 6443 } ] }, { "file": "tallmonsters.png", - "//": "range 6368 to 6399", + "//": "range 6448 to 6479", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, @@ -9581,69 +9791,69 @@ { "id": "mon_exodii_worker", "fg": [ - { "weight": 15, "sprite": 6369 }, - { "weight": 15, "sprite": 6370 }, - { "weight": 10, "sprite": 6371 }, - { "weight": 10, "sprite": 6372 } + { "weight": 15, "sprite": 6449 }, + { "weight": 15, "sprite": 6450 }, + { "weight": 10, "sprite": 6451 }, + { "weight": 10, "sprite": 6452 } ], - "bg": 6373 - }, - { "id": "mon_dispatch", "fg": 6376, "bg": 6368 }, - { "id": "mon_dispatch_military", "fg": 6377, "bg": 6368 }, - { "id": "mon_robofac_laserturret_mk1", "fg": 6382, "bg": 6368 }, - { "id": "mon_triffid_flower", "fg": 6383, "bg": 6368 }, - { "id": "mon_turret", "fg": 6384, "bg": 6368 }, - { "id": "mon_turret_speaker", "fg": 6385, "bg": 6368 }, - { "id": "mon_zombie_gasbag_fungus", "fg": 6387, "bg": 6368 }, - { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 6388 } + "bg": 6453 + }, + { "id": "mon_dispatch", "fg": 6456, "bg": 6448 }, + { "id": "mon_dispatch_military", "fg": 6457, "bg": 6448 }, + { "id": "mon_robofac_laserturret_mk1", "fg": 6462, "bg": 6448 }, + { "id": "mon_triffid_flower", "fg": 6463, "bg": 6448 }, + { "id": "mon_turret", "fg": 6464, "bg": 6448 }, + { "id": "mon_turret_speaker", "fg": 6465, "bg": 6448 }, + { "id": "mon_zombie_gasbag_fungus", "fg": 6467, "bg": 6448 }, + { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 6468 } ] }, { "file": "tallterrain.png", - "//": "range 6400 to 6575", + "//": "range 6480 to 6655", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, "sprite_offset_y": -32, "tiles": [ - { "id": "t_floor_olight", "fg": 6417, "bg": 6404 }, - { "id": "t_thconc_floor_olight", "fg": 6417, "bg": 6413 }, - { "id": "t_metal_floor_olight", "fg": 6417, "bg": 6410 }, - { "id": "t_thconc_y_olight", "fg": 6417, "bg": 6414 }, - { "id": "t_strconc_floor_olight", "fg": 6417, "bg": 6412 }, - { "id": "t_linoleum_whitefloor_olight", "fg": 6417, "bg": 6409 }, - { "id": "t_linoleum_gray_floor_olight", "fg": 6417, "bg": 6408 }, - { "id": "t_atm", "fg": 6418, "bg": 6403 }, - { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 6419, "bg": 6400 }, - { "id": "t_column", "fg": 6420, "bg": 6403 }, + { "id": "t_floor_olight", "fg": 6497, "bg": 6484 }, + { "id": "t_thconc_floor_olight", "fg": 6497, "bg": 6493 }, + { "id": "t_metal_floor_olight", "fg": 6497, "bg": 6490 }, + { "id": "t_thconc_y_olight", "fg": 6497, "bg": 6494 }, + { "id": "t_strconc_floor_olight", "fg": 6497, "bg": 6492 }, + { "id": "t_linoleum_whitefloor_olight", "fg": 6497, "bg": 6489 }, + { "id": "t_linoleum_gray_floor_olight", "fg": 6497, "bg": 6488 }, + { "id": "t_atm", "fg": 6498, "bg": 6483 }, + { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 6499, "bg": 6480 }, + { "id": "t_column", "fg": 6500, "bg": 6483 }, { "id": "t_grass_long", "multitile": true, - "fg": 6439, - "bg": 6407, + "fg": 6519, + "bg": 6487, "additional_tiles": [ { "id": "center", - "bg": 6407, + "bg": 6487, "fg": [ - { "weight": 100, "sprite": 6421 }, - { "weight": 100, "sprite": 6422 }, - { "weight": 100, "sprite": 6423 }, - { "weight": 100, "sprite": 6424 } + { "weight": 100, "sprite": 6501 }, + { "weight": 100, "sprite": 6502 }, + { "weight": 100, "sprite": 6503 }, + { "weight": 100, "sprite": 6504 } ] }, - { "id": "corner", "bg": 6407, "fg": [ 6426, 6428, 6427, 6425 ] }, - { "id": "t_connection", "bg": 6407, "fg": [ 6436, 6438, 6437, 6435 ] }, - { "id": "edge", "bg": 6407, "fg": [ 6430, 6429 ] }, - { "id": "end_piece", "bg": 6407, "fg": [ 6432, 6434, 6433, 6431 ] }, + { "id": "corner", "bg": 6487, "fg": [ 6506, 6508, 6507, 6505 ] }, + { "id": "t_connection", "bg": 6487, "fg": [ 6516, 6518, 6517, 6515 ] }, + { "id": "edge", "bg": 6487, "fg": [ 6510, 6509 ] }, + { "id": "end_piece", "bg": 6487, "fg": [ 6512, 6514, 6513, 6511 ] }, { "id": "unconnected", - "bg": 6407, + "bg": 6487, "fg": [ - { "weight": 100, "sprite": 6439 }, - { "weight": 100, "sprite": 6440 }, - { "weight": 100, "sprite": 6441 }, - { "weight": 100, "sprite": 6442 } + { "weight": 100, "sprite": 6519 }, + { "weight": 100, "sprite": 6520 }, + { "weight": 100, "sprite": 6521 }, + { "weight": 100, "sprite": 6522 } ] } ] @@ -9651,31 +9861,31 @@ { "id": "t_grass_long_season_summer", "multitile": true, - "fg": 6483, - "bg": 6406, + "fg": 6563, + "bg": 6486, "additional_tiles": [ { "id": "center", - "bg": 6406, + "bg": 6486, "fg": [ - { "weight": 100, "sprite": 6465 }, - { "weight": 100, "sprite": 6466 }, - { "weight": 100, "sprite": 6467 }, - { "weight": 100, "sprite": 6468 } + { "weight": 100, "sprite": 6545 }, + { "weight": 100, "sprite": 6546 }, + { "weight": 100, "sprite": 6547 }, + { "weight": 100, "sprite": 6548 } ] }, - { "id": "corner", "bg": 6406, "fg": [ 6470, 6472, 6471, 6469 ] }, - { "id": "t_connection", "bg": 6406, "fg": [ 6480, 6482, 6481, 6479 ] }, - { "id": "edge", "bg": 6406, "fg": [ 6474, 6473 ] }, - { "id": "end_piece", "bg": 6406, "fg": [ 6476, 6478, 6477, 6475 ] }, + { "id": "corner", "bg": 6486, "fg": [ 6550, 6552, 6551, 6549 ] }, + { "id": "t_connection", "bg": 6486, "fg": [ 6560, 6562, 6561, 6559 ] }, + { "id": "edge", "bg": 6486, "fg": [ 6554, 6553 ] }, + { "id": "end_piece", "bg": 6486, "fg": [ 6556, 6558, 6557, 6555 ] }, { "id": "unconnected", - "bg": 6406, + "bg": 6486, "fg": [ - { "weight": 100, "sprite": 6483 }, - { "weight": 100, "sprite": 6484 }, - { "weight": 100, "sprite": 6485 }, - { "weight": 100, "sprite": 6486 } + { "weight": 100, "sprite": 6563 }, + { "weight": 100, "sprite": 6564 }, + { "weight": 100, "sprite": 6565 }, + { "weight": 100, "sprite": 6566 } ] } ] @@ -9683,64 +9893,64 @@ { "id": "t_grass_long_season_autumn", "multitile": true, - "fg": 6461, - "bg": 6405, + "fg": 6541, + "bg": 6485, "additional_tiles": [ { "id": "center", - "bg": 6405, + "bg": 6485, "fg": [ - { "weight": 100, "sprite": 6443 }, - { "weight": 100, "sprite": 6444 }, - { "weight": 100, "sprite": 6445 }, - { "weight": 100, "sprite": 6446 } + { "weight": 100, "sprite": 6523 }, + { "weight": 100, "sprite": 6524 }, + { "weight": 100, "sprite": 6525 }, + { "weight": 100, "sprite": 6526 } ] }, - { "id": "corner", "bg": 6405, "fg": [ 6448, 6450, 6449, 6447 ] }, - { "id": "t_connection", "bg": 6405, "fg": [ 6458, 6460, 6459, 6457 ] }, - { "id": "edge", "bg": 6405, "fg": [ 6452, 6451 ] }, - { "id": "end_piece", "bg": 6405, "fg": [ 6454, 6456, 6455, 6453 ] }, + { "id": "corner", "bg": 6485, "fg": [ 6528, 6530, 6529, 6527 ] }, + { "id": "t_connection", "bg": 6485, "fg": [ 6538, 6540, 6539, 6537 ] }, + { "id": "edge", "bg": 6485, "fg": [ 6532, 6531 ] }, + { "id": "end_piece", "bg": 6485, "fg": [ 6534, 6536, 6535, 6533 ] }, { "id": "unconnected", - "bg": 6405, + "bg": 6485, "fg": [ - { "weight": 100, "sprite": 6461 }, - { "weight": 100, "sprite": 6462 }, - { "weight": 100, "sprite": 6463 }, - { "weight": 100, "sprite": 6464 } + { "weight": 100, "sprite": 6541 }, + { "weight": 100, "sprite": 6542 }, + { "weight": 100, "sprite": 6543 }, + { "weight": 100, "sprite": 6544 } ] } ] }, - { "id": "t_grass_long_season_winter", "fg": 6401 }, + { "id": "t_grass_long_season_winter", "fg": 6481 }, { "id": "t_grass_tall", "multitile": true, - "fg": 6505, - "bg": 6407, + "fg": 6585, + "bg": 6487, "additional_tiles": [ { "id": "center", - "bg": 6407, + "bg": 6487, "fg": [ - { "weight": 100, "sprite": 6487 }, - { "weight": 100, "sprite": 6488 }, - { "weight": 100, "sprite": 6489 }, - { "weight": 100, "sprite": 6490 } + { "weight": 100, "sprite": 6567 }, + { "weight": 100, "sprite": 6568 }, + { "weight": 100, "sprite": 6569 }, + { "weight": 100, "sprite": 6570 } ] }, - { "id": "corner", "bg": 6407, "fg": [ 6492, 6494, 6493, 6491 ] }, - { "id": "t_connection", "bg": 6407, "fg": [ 6502, 6504, 6503, 6501 ] }, - { "id": "edge", "bg": 6407, "fg": [ 6496, 6495 ] }, - { "id": "end_piece", "bg": 6407, "fg": [ 6498, 6500, 6499, 6497 ] }, + { "id": "corner", "bg": 6487, "fg": [ 6572, 6574, 6573, 6571 ] }, + { "id": "t_connection", "bg": 6487, "fg": [ 6582, 6584, 6583, 6581 ] }, + { "id": "edge", "bg": 6487, "fg": [ 6576, 6575 ] }, + { "id": "end_piece", "bg": 6487, "fg": [ 6578, 6580, 6579, 6577 ] }, { "id": "unconnected", - "bg": 6407, + "bg": 6487, "fg": [ - { "weight": 100, "sprite": 6505 }, - { "weight": 100, "sprite": 6506 }, - { "weight": 100, "sprite": 6507 }, - { "weight": 100, "sprite": 6508 } + { "weight": 100, "sprite": 6585 }, + { "weight": 100, "sprite": 6586 }, + { "weight": 100, "sprite": 6587 }, + { "weight": 100, "sprite": 6588 } ] } ] @@ -9748,31 +9958,31 @@ { "id": "t_grass_tall_season_summer", "multitile": true, - "fg": 6549, - "bg": 6406, + "fg": 6629, + "bg": 6486, "additional_tiles": [ { "id": "center", - "bg": 6406, + "bg": 6486, "fg": [ - { "weight": 100, "sprite": 6531 }, - { "weight": 100, "sprite": 6532 }, - { "weight": 100, "sprite": 6533 }, - { "weight": 100, "sprite": 6534 } + { "weight": 100, "sprite": 6611 }, + { "weight": 100, "sprite": 6612 }, + { "weight": 100, "sprite": 6613 }, + { "weight": 100, "sprite": 6614 } ] }, - { "id": "corner", "bg": 6406, "fg": [ 6536, 6538, 6537, 6535 ] }, - { "id": "t_connection", "bg": 6406, "fg": [ 6546, 6548, 6547, 6545 ] }, - { "id": "edge", "bg": 6406, "fg": [ 6540, 6539 ] }, - { "id": "end_piece", "bg": 6406, "fg": [ 6542, 6544, 6543, 6541 ] }, + { "id": "corner", "bg": 6486, "fg": [ 6616, 6618, 6617, 6615 ] }, + { "id": "t_connection", "bg": 6486, "fg": [ 6626, 6628, 6627, 6625 ] }, + { "id": "edge", "bg": 6486, "fg": [ 6620, 6619 ] }, + { "id": "end_piece", "bg": 6486, "fg": [ 6622, 6624, 6623, 6621 ] }, { "id": "unconnected", - "bg": 6406, + "bg": 6486, "fg": [ - { "weight": 100, "sprite": 6549 }, - { "weight": 100, "sprite": 6550 }, - { "weight": 100, "sprite": 6551 }, - { "weight": 100, "sprite": 6552 } + { "weight": 100, "sprite": 6629 }, + { "weight": 100, "sprite": 6630 }, + { "weight": 100, "sprite": 6631 }, + { "weight": 100, "sprite": 6632 } ] } ] @@ -9780,55 +9990,55 @@ { "id": "t_grass_tall_season_autumn", "multitile": true, - "fg": 6527, - "bg": 6405, + "fg": 6607, + "bg": 6485, "additional_tiles": [ { "id": "center", - "bg": 6405, + "bg": 6485, "fg": [ - { "weight": 100, "sprite": 6509 }, - { "weight": 100, "sprite": 6510 }, - { "weight": 100, "sprite": 6511 }, - { "weight": 100, "sprite": 6512 } + { "weight": 100, "sprite": 6589 }, + { "weight": 100, "sprite": 6590 }, + { "weight": 100, "sprite": 6591 }, + { "weight": 100, "sprite": 6592 } ] }, - { "id": "corner", "bg": 6405, "fg": [ 6514, 6516, 6515, 6513 ] }, - { "id": "t_connection", "bg": 6405, "fg": [ 6524, 6526, 6525, 6523 ] }, - { "id": "edge", "bg": 6405, "fg": [ 6518, 6517 ] }, - { "id": "end_piece", "bg": 6405, "fg": [ 6520, 6522, 6521, 6519 ] }, + { "id": "corner", "bg": 6485, "fg": [ 6594, 6596, 6595, 6593 ] }, + { "id": "t_connection", "bg": 6485, "fg": [ 6604, 6606, 6605, 6603 ] }, + { "id": "edge", "bg": 6485, "fg": [ 6598, 6597 ] }, + { "id": "end_piece", "bg": 6485, "fg": [ 6600, 6602, 6601, 6599 ] }, { "id": "unconnected", - "bg": 6405, + "bg": 6485, "fg": [ - { "weight": 100, "sprite": 6527 }, - { "weight": 100, "sprite": 6528 }, - { "weight": 100, "sprite": 6529 }, - { "weight": 100, "sprite": 6530 } + { "weight": 100, "sprite": 6607 }, + { "weight": 100, "sprite": 6608 }, + { "weight": 100, "sprite": 6609 }, + { "weight": 100, "sprite": 6610 } ] } ] }, - { "id": "t_grass_tall_season_winter", "fg": 6401 }, - { "id": "t_gutter_downspout", "fg": 6553, "bg": 6407 }, - { "id": "t_gutter_downspout_season_autumn", "fg": 6553, "bg": 6405 }, - { "id": "t_gutter_downspout_season_summer", "fg": 6553, "bg": 6406 }, - { "id": "t_gutter_downspout_season_winter", "fg": 6553, "bg": 6402 }, - { "id": "t_little_column", "fg": 6554, "bg": 6403 }, - { "id": "t_stairs_up", "fg": 6556 }, - { "id": "t_wood_stairs_up", "fg": 6557 }, - { "id": "t_utility_light", "fg": 6558 }, - { "id": "t_ladder_up", "fg": 6415 }, - { "id": "t_ladder_up_down", "fg": 6416 }, - { "id": "t_radio_tower", "fg": 6555 }, - { "id": "t_window_stained_blue", "fg": 6559 }, - { "id": "t_window_stained_green", "fg": 6560 }, - { "id": "t_window_stained_red", "fg": 6561 } + { "id": "t_grass_tall_season_winter", "fg": 6481 }, + { "id": "t_gutter_downspout", "fg": 6633, "bg": 6487 }, + { "id": "t_gutter_downspout_season_autumn", "fg": 6633, "bg": 6485 }, + { "id": "t_gutter_downspout_season_summer", "fg": 6633, "bg": 6486 }, + { "id": "t_gutter_downspout_season_winter", "fg": 6633, "bg": 6482 }, + { "id": "t_little_column", "fg": 6634, "bg": 6483 }, + { "id": "t_stairs_up", "fg": 6636 }, + { "id": "t_wood_stairs_up", "fg": 6637 }, + { "id": "t_utility_light", "fg": 6638 }, + { "id": "t_ladder_up", "fg": 6495 }, + { "id": "t_ladder_up_down", "fg": 6496 }, + { "id": "t_radio_tower", "fg": 6635 }, + { "id": "t_window_stained_blue", "fg": 6639 }, + { "id": "t_window_stained_green", "fg": 6640 }, + { "id": "t_window_stained_red", "fg": 6641 } ] }, { "file": "tallvehicle.png", - "//": "range 6576 to 6639", + "//": "range 6656 to 6719", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, @@ -9836,445 +10046,457 @@ "tiles": [ { "id": "vp_frame_handle", - "fg": [ 6581, 6583, 6582, 6580 ], + "fg": [ 6661, 6663, 6662, 6660 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6581, 6583, 6582, 6580 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6661, 6663, 6662, 6660 ] } ] }, { "id": "vp_stowboard_ne", - "fg": [ 6589, 6592, 6591, 6590 ], + "fg": [ 6669, 6672, 6671, 6670 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6589, 6592, 6591, 6590 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6669, 6672, 6671, 6670 ] } ] }, { "id": "vp_stowboard_nw", - "fg": [ 6593, 6596, 6595, 6594 ], + "fg": [ 6673, 6676, 6675, 6674 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6593, 6596, 6595, 6594 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6673, 6676, 6675, 6674 ] } ] }, { "id": "vp_stowboard_se", - "fg": [ 6597, 6599, 6593, 6598 ], + "fg": [ 6677, 6679, 6673, 6678 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6597, 6599, 6593, 6598 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6677, 6679, 6673, 6678 ] } ] }, { "id": "vp_stowboard_sw", - "fg": [ 6600, 6602, 6589, 6601 ], + "fg": [ 6680, 6682, 6669, 6681 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6600, 6602, 6589, 6601 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6680, 6682, 6669, 6681 ] } ] }, { "id": "vp_stowboard_vertical_left", - "fg": [ 6603, 6605, 6606, 6604 ], + "fg": [ 6683, 6685, 6686, 6684 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6603, 6605, 6606, 6604 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6683, 6685, 6686, 6684 ] } ] }, { "id": "vp_stowboard_vertical_right", - "fg": [ 6606, 6604, 6603, 6605 ], + "fg": [ 6686, 6684, 6683, 6685 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6606, 6604, 6603, 6605 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6686, 6684, 6683, 6685 ] } ] }, { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ], - "fg": [ 6584, 6607, 6584, 6607 ], + "fg": [ 6664, 6687, 6664, 6687 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6584, 6607, 6584, 6607 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6664, 6687, 6664, 6687 ] } ] }, { "id": "vp_stowboard_horizontal_front", - "fg": [ 6584, 6587, 6586, 6585 ], + "fg": [ 6664, 6667, 6666, 6665 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6584, 6587, 6586, 6585 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6664, 6667, 6666, 6665 ] } ] }, { "id": "vp_stowboard_horizontal_rear", - "fg": [ 6588, 6585, 6584, 6587 ], + "fg": [ 6668, 6665, 6664, 6667 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6588, 6585, 6584, 6587 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6668, 6665, 6664, 6667 ] } ] }, { "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ], - "fg": [ 6607, 6584, 6607, 6584 ], + "fg": [ 6687, 6664, 6687, 6664 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6607, 6584, 6607, 6584 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6687, 6664, 6687, 6664 ] } ] }, { "id": "vp_stowboard_wheel_left", - "fg": [ 6587, 6608, 6585, 6604 ], + "fg": [ 6667, 6688, 6665, 6684 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6587, 6608, 6585, 6604 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6667, 6688, 6665, 6684 ] } ] }, { "id": "vp_stowboard_wheel_right", - "fg": [ 6585, 6604, 6587, 6608 ], + "fg": [ 6665, 6684, 6667, 6688 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 6585, 6604, 6587, 6608 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6665, 6684, 6667, 6688 ] } ] }, { "id": "vp_door_trunk", - "fg": [ 6609, 6616, 6615, 6614 ], + "fg": [ 6689, 6696, 6695, 6694 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6610, 6613, 6612, 6611 ] }, - { "id": "broken", "fg": [ 6579, 6579, 6579, 6579 ], "bg": [ 6610, 6613, 6612, 6611 ] } + { "id": "open", "fg": [ 6690, 6693, 6692, 6691 ] }, + { "id": "broken", "fg": [ 6659, 6659, 6659, 6659 ], "bg": [ 6690, 6693, 6692, 6691 ] } ] }, { "id": "vp_door_trunk_horizontal_2", - "fg": [ 6617, 6624, 6623, 6622 ], + "fg": [ 6697, 6704, 6703, 6702 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6618, 6621, 6620, 6619 ] }, - { "id": "broken", "fg": [ 6579, 6579, 6579, 6579 ], "bg": [ 6618, 6621, 6620, 6619 ] } + { "id": "open", "fg": [ 6698, 6701, 6700, 6699 ] }, + { "id": "broken", "fg": [ 6659, 6659, 6659, 6659 ], "bg": [ 6698, 6701, 6700, 6699 ] } ] }, - { "id": "crack_glass_center_tall", "fg": 6576 }, - { "id": "crack_glass_left_tall", "fg": 6577 }, - { "id": "crack_glass_right_tall", "fg": 6578 }, - { "id": "vp_travois", "fg": 6625 } + { "id": "crack_glass_center_tall", "fg": 6656 }, + { "id": "crack_glass_left_tall", "fg": 6657 }, + { "id": "crack_glass_right_tall", "fg": 6658 }, + { "id": "vp_travois", "fg": 6705 } ] }, { "file": "huge.png", - "//": "range 6640 to 6671", + "//": "range 6720 to 6751", "sprite_width": 64, "sprite_height": 96, "sprite_offset_x": -16, "sprite_offset_y": -64, "tiles": [ - { "id": "mon_zombie_nemesis", "fg": 6647, "bg": 6640 }, - { "id": "mon_skeleton_hulk_fungus", "fg": 6644 }, - { "id": "mon_mutant_evolved", "fg": 6650 }, - { "id": "mon_mutant_mollusk", "fg": 6651 }, - { "id": "corpse_mon_nakedmolerat_giant", "fg": 6652 } + { "id": "mon_zombie_nemesis", "fg": 6727, "bg": 6720 }, + { "id": "mon_skeleton_hulk_fungus", "fg": 6724 }, + { "id": "mon_mutant_evolved", "fg": 6730 }, + { "id": "mon_mutant_mollusk", "fg": 6731 }, + { "id": "corpse_mon_nakedmolerat_giant", "fg": 6732 } ] }, { "file": "centered.png", - "//": "range 6672 to 6687", + "//": "range 6752 to 6767", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -16, "tiles": [ - { "id": "vp_wing_mirror", "fg": [ 6681, 6683, 6682, 6680 ], "rotates": true }, - { "id": "vp_wing_mirror_left", "fg": [ 6673, 6675, 6674, 6672 ], "rotates": true }, - { "id": "vp_wing_mirror_right", "fg": [ 6677, 6679, 6678, 6676 ], "rotates": true } + { "id": "vp_wing_mirror", "fg": [ 6761, 6763, 6762, 6760 ], "rotates": true }, + { "id": "vp_wing_mirror_left", "fg": [ 6753, 6755, 6754, 6752 ], "rotates": true }, + { "id": "vp_wing_mirror_right", "fg": [ 6757, 6759, 6758, 6756 ], "rotates": true } ] }, { "file": "large.png", - "//": "range 6688 to 6847", + "//": "range 6768 to 6943", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "f_CTscan", "fg": 6693 }, - { "id": "f_MRI", "fg": 6694 }, - { "id": "f_rotary_clothesline", "fg": 6695 }, - { "id": "mon_troll", "fg": 6697, "bg": 6702 }, - { "id": "mon_smoker_brute", "fg": 6700, "bg": 6703 }, + { "id": "f_CTscan", "fg": 6773 }, + { "id": "f_MRI", "fg": 6774 }, + { "id": "f_rotary_clothesline", "fg": 6775 }, + { "id": "mon_troll", "fg": 6777, "bg": 6782 }, + { "id": "mon_smoker_brute", "fg": 6780, "bg": 6783 }, { "id": "mon_exodii_quad", "fg": [ - { "weight": 15, "sprite": 6705 }, - { "weight": 10, "sprite": 6706 }, - { "weight": 15, "sprite": 6707 }, - { "weight": 15, "sprite": 6708 } + { "weight": 15, "sprite": 6785 }, + { "weight": 10, "sprite": 6786 }, + { "weight": 15, "sprite": 6787 }, + { "weight": 15, "sprite": 6788 } ], - "bg": 6702 + "bg": 6782 }, { "id": "mon_exodii_turret", "fg": [ - { "weight": 15, "sprite": 6709 }, - { "weight": 5, "sprite": 6710 }, - { "weight": 15, "sprite": 6711 }, - { "weight": 15, "sprite": 6712 } + { "weight": 15, "sprite": 6789 }, + { "weight": 5, "sprite": 6790 }, + { "weight": 15, "sprite": 6791 }, + { "weight": 15, "sprite": 6792 } ], - "bg": 6703 + "bg": 6783 + }, + { "id": "mon_giant_crayfish", "fg": 6794, "bg": 6783 }, + { "id": "mon_slug_giant", "fg": 6795, "bg": 6782 }, + { "id": "mon_dog_zombie_hulk", "fg": 6796, "bg": 6783 }, + { "id": "corpse_mon_ant_soldier", "fg": 6801 }, + { "id": "corpse_mon_ant_acid_soldier", "fg": 6799 }, + { "id": "corpse_mon_ant_queen", "fg": 6800 }, + { "id": "corpse_mon_ant_acid_queen", "fg": 6798 }, + { "id": "mon_bear_mutant_3headed", "fg": 6807, "bg": 6783 }, + { + "id": "mon_deer_mutant_spider", + "fg": [ { "weight": 1, "sprite": 6820 }, { "weight": 2, "sprite": 6821 } ], + "bg": 6783 }, - { "id": "mon_giant_crayfish", "fg": 6714, "bg": 6704 }, - { "id": "mon_slug_giant", "fg": 6715, "bg": 6702 }, - { "id": "mon_dog_zombie_hulk", "fg": 6716, "bg": 6703 }, - { "id": "corpse_mon_ant_soldier", "fg": 6721 }, - { "id": "corpse_mon_ant_acid_soldier", "fg": 6719 }, - { "id": "corpse_mon_ant_queen", "fg": 6720 }, - { "id": "corpse_mon_ant_acid_queen", "fg": 6718 }, - { "id": "mon_dog_zombie_brute", "fg": 6739, "bg": 6703 }, + { "id": "mon_dog_skeleton_brute", "fg": 6822, "bg": 6783 }, + { "id": "mon_dog_zombie_brute", "fg": 6823, "bg": 6783 }, { "id": "mon_lady_bug_giant", "fg": [ - { "weight": 90, "sprite": 6749 }, - { "weight": 60, "sprite": 6750 }, - { "weight": 50, "sprite": 6751 }, - { "weight": 20, "sprite": 6752 }, - { "weight": 1, "sprite": 6753 } + { "weight": 90, "sprite": 6833 }, + { "weight": 60, "sprite": 6834 }, + { "weight": 50, "sprite": 6835 }, + { "weight": 20, "sprite": 6836 }, + { "weight": 1, "sprite": 6837 } ], - "bg": 6703 - }, - { "id": "mon_mi_go_scout", "fg": 6755, "bg": 6703 }, - { "id": "mon_reindeer", "fg": 6760, "bg": 6703 }, - { "id": "mon_spider_fungus", "fg": 6761, "bg": 6704 }, - { "id": "mon_zombear_skeleton", "fg": 6766, "bg": 6703 }, - { "id": "mon_zombie_brute_winged", "fg": 6768, "bg": 6702 }, - { "id": "mon_zombie_dog_brute_acidic", "fg": 6769, "bg": 6703 }, - { "id": "mon_zombie_smoker_fungus", "fg": 6775, "bg": 6704 }, - { "id": "mon_zombull", "fg": 6776, "bg": 6703 }, - { "id": "mon_nursebot_defective", "fg": 6778, "bg": 6704 }, - { "id": "corpse_mon_spider_web", "fg": 6783 }, - { "id": "corpse_mon_spider_wolf_giant", "fg": 6784 }, - { "id": "mon_dermatik_incubator_spider", "fg": 6785, "bg": 6704 }, - { "id": "corpse_mon_dermatik_incubator_spider", "fg": 6783 }, - { "id": "mon_spider_cellar_mega", "fg": 6787, "bg": 6703 }, - { "id": "mon_spider_jumping_mega", "fg": 6789, "bg": 6703 }, - { "id": "mon_spider_trapdoor_mega", "fg": 6791, "bg": 6702 }, - { "id": "mon_spider_widow_mega", "fg": 6795, "bg": 6702 }, - { "id": "mon_spider_wolf_mega", "fg": 6797, "bg": 6702 }, - { "id": "mon_thing", "fg": 6800, "bg": 6702 }, - { "id": "mon_crows_m240", "fg": 6802, "bg": 6703 }, - { "id": "mon_turret_bmg", "fg": 6803, "bg": 6703 }, - { "id": "mon_turret_rifle", "fg": 6804, "bg": 6703 }, + "bg": 6783 + }, + { "id": "mon_mi_go_scout", "fg": 6839, "bg": 6783 }, + { "id": "mon_reindeer", "fg": 6844, "bg": 6783 }, + { "id": "mon_spider_fungus", "fg": 6845, "bg": 6784 }, + { "id": "mon_tiger", "fg": 6846, "bg": 6783 }, + { "id": "mon_wolf_mutant_huge", "fg": 6849, "bg": 6782 }, + { "id": "mon_zeer", "fg": 6851, "bg": 6783 }, + { "id": "mon_zeindeer", "fg": 6852, "bg": 6783 }, + { "id": "mon_ziger", "fg": 6853, "bg": 6783 }, + { "id": "mon_zombear_acidic", "fg": 6855, "bg": 6783 }, + { "id": "mon_zombear_skeleton", "fg": 6856, "bg": 6783 }, + { "id": "mon_zombie_brute_winged", "fg": 6858, "bg": 6782 }, + { "id": "mon_zombie_dog_brute_acidic", "fg": 6859, "bg": 6783 }, + { "id": "mon_zombie_smoker_fungus", "fg": 6865, "bg": 6784 }, + { "id": "mon_zombull", "fg": 6866, "bg": 6783 }, + { "id": "mon_zoose_brute", "fg": 6868, "bg": 6782 }, + { "id": "mon_zoose_thorny", "fg": 6869, "bg": 6782 }, + { "id": "mon_nursebot_defective", "fg": 6870, "bg": 6784 }, + { "id": "corpse_mon_spider_web", "fg": 6875 }, + { "id": "corpse_mon_spider_wolf_giant", "fg": 6876 }, + { "id": "mon_dermatik_incubator_spider", "fg": 6877, "bg": 6784 }, + { "id": "corpse_mon_dermatik_incubator_spider", "fg": 6875 }, + { "id": "mon_spider_cellar_mega", "fg": 6879, "bg": 6783 }, + { "id": "mon_spider_jumping_mega", "fg": 6881, "bg": 6783 }, + { "id": "mon_spider_trapdoor_mega", "fg": 6883, "bg": 6782 }, + { "id": "mon_spider_widow_mega", "fg": 6887, "bg": 6782 }, + { "id": "mon_spider_wolf_mega", "fg": 6889, "bg": 6782 }, + { "id": "mon_thing", "fg": 6892, "bg": 6782 }, + { "id": "mon_crows_m240", "fg": 6894, "bg": 6783 }, + { "id": "mon_turret_bmg", "fg": 6895, "bg": 6783 }, + { "id": "mon_turret_rifle", "fg": 6896, "bg": 6783 }, { "id": [ "forest_thick", "special_forest_thick" ], - "fg": [ { "weight": 4, "sprite": 6813 }, { "weight": 1, "sprite": 6814 } ], - "bg": 6825, + "fg": [ { "weight": 4, "sprite": 6905 }, { "weight": 1, "sprite": 6906 } ], + "bg": 6917, "rotates": false }, - { "id": "bridgehead_ground", "fg": [ 6818, 6817, 6819, 6820 ], "bg": 6827, "rotates": true }, - { "id": "bridge", "fg": [ 6816, 6815, 6816, 6815 ], "bg": 6826, "rotates": true }, - { "id": "bridgehead_ramp", "fg": [ 6822, 6821, 6823, 6824 ], "rotates": true }, - { "id": "bridge_road", "fg": [ 6816, 6815, 6816, 6815 ], "rotates": true }, - { "id": "t_tree_young", "fg": 6834, "bg": 6830 }, - { "id": "t_tree_young_season_summer", "fg": 6833, "bg": 6831, "rotates": false }, + { "id": "bridgehead_ground", "fg": [ 6910, 6909, 6911, 6912 ], "bg": 6919, "rotates": true }, + { "id": "bridge", "fg": [ 6908, 6907, 6908, 6907 ], "bg": 6918, "rotates": true }, + { "id": "bridgehead_ramp", "fg": [ 6914, 6913, 6915, 6916 ], "rotates": true }, + { "id": "bridge_road", "fg": [ 6908, 6907, 6908, 6907 ], "rotates": true }, + { "id": "t_tree_young", "fg": 6926, "bg": 6922 }, + { "id": "t_tree_young_season_summer", "fg": 6925, "bg": 6923, "rotates": false }, { "id": "t_tree_young_season_autumn", - "fg": [ { "weight": 100, "sprite": 6835 }, { "weight": 100, "sprite": 6836 } ], - "bg": 6829, + "fg": [ { "weight": 100, "sprite": 6927 }, { "weight": 100, "sprite": 6928 } ], + "bg": 6921, "rotates": false }, - { "id": "t_tree_young_season_winter", "fg": 6837, "bg": 6828, "rotates": false }, - { "id": "t_vat", "fg": 6838, "bg": 6832 }, - { "id": "corpse_mon_zombie_spitter", "fg": 6688 }, - { "id": "f_exodii_generator_1", "fg": 6689 }, - { "id": "f_exodii_generator_2", "fg": 6690 }, - { "id": "f_exodii_generator_3", "fg": 6691 }, - { "id": "f_exodii_generator_4", "fg": 6692 }, - { "id": "f_magiclysm_translocator_gate", "fg": 6696 }, - { "id": "mon_blood_sacrifice", "fg": 6728 }, - { "id": "mon_mutant_arthropod", "fg": 6758 }, - { "id": "mon_leech_blossom", "fg": 6779 }, - { "id": "mon_leech_radio", "fg": 6780 }, - { "id": "overlay_wielded_as50", "fg": 6808 } + { "id": "t_tree_young_season_winter", "fg": 6929, "bg": 6920, "rotates": false }, + { "id": "t_vat", "fg": 6930, "bg": 6924 }, + { "id": "corpse_mon_zombie_spitter", "fg": 6768 }, + { "id": "f_exodii_generator_1", "fg": 6769 }, + { "id": "f_exodii_generator_2", "fg": 6770 }, + { "id": "f_exodii_generator_3", "fg": 6771 }, + { "id": "f_exodii_generator_4", "fg": 6772 }, + { "id": "f_magiclysm_translocator_gate", "fg": 6776 }, + { "id": "mon_blood_sacrifice", "fg": 6809 }, + { "id": "mon_mutant_arthropod", "fg": 6842 }, + { "id": "mon_leech_blossom", "fg": 6871 }, + { "id": "mon_leech_radio", "fg": 6872 }, + { "id": "overlay_wielded_as50", "fg": 6900 } ] }, { "file": "giant.png", - "//": "range 6848 to 6911", + "//": "range 6944 to 7007", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, "sprite_offset_y": -64, "tiles": [ - { "id": "t_tree", "fg": 6859, "bg": 6852 }, - { "id": "t_tree_season_summer", "fg": 6854, "bg": 6853 }, + { "id": "t_tree", "fg": 6956, "bg": 6949 }, + { "id": "t_tree_season_summer", "fg": 6951, "bg": 6950 }, { "id": "t_tree_season_autumn", "fg": [ - { "weight": 100, "sprite": 6855 }, - { "weight": 100, "sprite": 6856 }, - { "weight": 100, "sprite": 6857 }, - { "weight": 100, "sprite": 6858 } + { "weight": 100, "sprite": 6952 }, + { "weight": 100, "sprite": 6953 }, + { "weight": 100, "sprite": 6954 }, + { "weight": 100, "sprite": 6955 } ], - "bg": 6851 + "bg": 6948 }, - { "id": "t_tree_season_winter", "fg": 6883, "bg": 6850 }, - { "id": "t_tree_apple", "fg": 6860, "bg": 6852 }, - { "id": "t_tree_apple_season_summer", "fg": 6860, "bg": 6853 }, - { "id": "t_tree_apple_season_winter", "fg": 6865, "bg": 6850 }, + { "id": "t_tree_season_winter", "fg": 6980, "bg": 6947 }, + { "id": "t_tree_apple", "fg": 6957, "bg": 6949 }, + { "id": "t_tree_apple_season_summer", "fg": 6957, "bg": 6950 }, + { "id": "t_tree_apple_season_winter", "fg": 6962, "bg": 6947 }, { "id": "t_tree_apple_season_autumn", - "fg": [ { "weight": 1, "sprite": 6861 }, { "weight": 1, "sprite": 6862 } ], - "bg": 6851 + "fg": [ { "weight": 1, "sprite": 6958 }, { "weight": 1, "sprite": 6959 } ], + "bg": 6948 }, { "id": "t_tree_apple_harvested", - "fg": [ { "weight": 1, "sprite": 6863 }, { "weight": 1, "sprite": 6864 } ], - "bg": 6851 + "fg": [ { "weight": 1, "sprite": 6960 }, { "weight": 1, "sprite": 6961 } ], + "bg": 6948 }, - { "id": "t_tree_beech", "fg": 6867, "bg": 6852 }, - { "id": "t_tree_beech_season_summer", "fg": 6868, "bg": 6853 }, - { "id": "t_tree_beech_season_autumn", "fg": 6866, "bg": 6851 }, - { "id": "t_tree_beech_season_winter", "fg": 6869, "bg": 6850 }, - { "id": "t_tree_birch", "fg": 6870, "bg": 6852 }, - { "id": "t_tree_birch_season_summer", "fg": 6870, "bg": 6853 }, - { "id": "t_tree_birch_season_winter", "fg": 6873, "bg": 6850 }, + { "id": "t_tree_beech", "fg": 6964, "bg": 6949 }, + { "id": "t_tree_beech_season_summer", "fg": 6965, "bg": 6950 }, + { "id": "t_tree_beech_season_autumn", "fg": 6963, "bg": 6948 }, + { "id": "t_tree_beech_season_winter", "fg": 6966, "bg": 6947 }, + { "id": "t_tree_birch", "fg": 6967, "bg": 6949 }, + { "id": "t_tree_birch_season_summer", "fg": 6967, "bg": 6950 }, + { "id": "t_tree_birch_season_winter", "fg": 6970, "bg": 6947 }, { "id": "t_tree_birch_season_autumn", - "fg": [ { "weight": 1, "sprite": 6871 }, { "weight": 1, "sprite": 6872 } ], - "bg": 6851 + "fg": [ { "weight": 1, "sprite": 6968 }, { "weight": 1, "sprite": 6969 } ], + "bg": 6948 }, - { "id": "t_tree_cherry", "fg": 6874, "bg": 6852 }, - { "id": "t_tree_cherry_season_summer", "fg": 6878, "bg": 6853 }, - { "id": "t_tree_cherry_harvested", "fg": 6877, "bg": 6853 }, - { "id": "t_tree_cherry_season_winter", "fg": 6879, "bg": 6850 }, + { "id": "t_tree_cherry", "fg": 6971, "bg": 6949 }, + { "id": "t_tree_cherry_season_summer", "fg": 6975, "bg": 6950 }, + { "id": "t_tree_cherry_harvested", "fg": 6974, "bg": 6950 }, + { "id": "t_tree_cherry_season_winter", "fg": 6976, "bg": 6947 }, { "id": "t_tree_cherry_season_autumn", - "fg": [ { "weight": 1, "sprite": 6875 }, { "weight": 1, "sprite": 6876 } ], - "bg": 6851 + "fg": [ { "weight": 1, "sprite": 6972 }, { "weight": 1, "sprite": 6973 } ], + "bg": 6948 }, - { "id": "t_tree_cottonwood_season_spring", "fg": 6881, "bg": 6852 }, - { "id": "t_tree_cottonwood_season_summer", "fg": 6882, "bg": 6853 }, - { "id": "t_tree_cottonwood_season_autumn", "fg": 6880, "bg": 6851 }, - { "id": "t_tree_cottonwood_season_winter", "fg": 6883, "bg": 6850 }, + { "id": "t_tree_cottonwood_season_spring", "fg": 6978, "bg": 6949 }, + { "id": "t_tree_cottonwood_season_summer", "fg": 6979, "bg": 6950 }, + { "id": "t_tree_cottonwood_season_autumn", "fg": 6977, "bg": 6948 }, + { "id": "t_tree_cottonwood_season_winter", "fg": 6980, "bg": 6947 }, { "id": "t_tree_dead", - "fg": [ { "weight": 100, "sprite": 6883 }, { "weight": 100, "sprite": 8356 } ], - "bg": 6852 + "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], + "bg": 6949 }, { "id": "t_tree_dead_season_summer", - "fg": [ { "weight": 100, "sprite": 6883 }, { "weight": 100, "sprite": 8356 } ], - "bg": 6853 + "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], + "bg": 6950 }, { "id": "t_tree_dead_season_autumn", - "fg": [ { "weight": 100, "sprite": 6883 }, { "weight": 100, "sprite": 8356 } ], - "bg": 6851 + "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], + "bg": 6948 }, { "id": "t_tree_dead_season_winter", - "fg": [ { "weight": 100, "sprite": 6883 }, { "weight": 100, "sprite": 8356 } ], - "bg": 6850 - }, - { "id": "t_tree_elm_season_spring", "fg": 6885, "bg": 6852 }, - { "id": "t_tree_elm_season_summer", "fg": 6886, "bg": 6853 }, - { "id": "t_tree_elm_season_autumn", "fg": 6884, "bg": 6851 }, - { "id": "t_tree_elm_season_winter", "fg": 6887, "bg": 6850 }, - { "id": "t_tree_maple", "fg": 6889, "bg": 6852 }, - { "id": "t_tree_maple_season_summer", "fg": 6890, "bg": 6853 }, - { "id": "t_tree_maple_season_autumn", "fg": 6888, "bg": 6851 }, - { "id": "t_tree_maple_season_winter", "fg": 6891, "bg": 6850 }, - { "id": "t_tree_peach_season_spring", "fg": 6892, "bg": 6852 }, - { "id": "t_tree_peach_season_summer", "fg": 6895, "bg": 6853 }, - { "id": "t_tree_peach_harvested", "fg": 6892, "bg": 6853 }, - { "id": "t_tree_peach_season_winter", "fg": 6896, "bg": 6850 }, + "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], + "bg": 6947 + }, + { "id": "t_tree_elm_season_spring", "fg": 6982, "bg": 6949 }, + { "id": "t_tree_elm_season_summer", "fg": 6983, "bg": 6950 }, + { "id": "t_tree_elm_season_autumn", "fg": 6981, "bg": 6948 }, + { "id": "t_tree_elm_season_winter", "fg": 6984, "bg": 6947 }, + { "id": "t_tree_maple", "fg": 6986, "bg": 6949 }, + { "id": "t_tree_maple_season_summer", "fg": 6987, "bg": 6950 }, + { "id": "t_tree_maple_season_autumn", "fg": 6985, "bg": 6948 }, + { "id": "t_tree_maple_season_winter", "fg": 6988, "bg": 6947 }, + { "id": "t_tree_peach_season_spring", "fg": 6989, "bg": 6949 }, + { "id": "t_tree_peach_season_summer", "fg": 6992, "bg": 6950 }, + { "id": "t_tree_peach_harvested", "fg": 6989, "bg": 6950 }, + { "id": "t_tree_peach_season_winter", "fg": 6993, "bg": 6947 }, { "id": "t_tree_peach_season_autumn", - "fg": [ { "weight": 1, "sprite": 6893 }, { "weight": 1, "sprite": 6894 } ], - "bg": 6851 + "fg": [ { "weight": 1, "sprite": 6990 }, { "weight": 1, "sprite": 6991 } ], + "bg": 6948 }, - { "id": "mon_dragon_dummy", "fg": 6848 } + { "id": "mon_ant_soldier_mega", "fg": 6944 }, + { "id": "mon_dragon_dummy", "fg": 6945 } ] }, { "file": "incomplete.png", - "//": "range 6912 to 7711", + "//": "range 7008 to 7807", "tiles": [ - { "id": "unknown", "fg": 6912 }, + { "id": "unknown", "fg": 7008 }, { "id": "fd_blood", - "fg": 6944, + "fg": 7040, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6913 }, - { "id": "corner", "fg": [ 6915, 6917, 6916, 6914 ] }, - { "id": "t_connection", "fg": [ 6941, 6943, 6942, 6940 ] }, - { "id": "edge", "fg": [ 6919, 6918 ] }, - { "id": "end_piece", "fg": [ 6921, 6923, 6922, 6920 ] }, - { "id": "unconnected", "fg": [ 6944, 6944 ] } + { "id": "center", "fg": 7009 }, + { "id": "corner", "fg": [ 7011, 7013, 7012, 7010 ] }, + { "id": "t_connection", "fg": [ 7037, 7039, 7038, 7036 ] }, + { "id": "edge", "fg": [ 7015, 7014 ] }, + { "id": "end_piece", "fg": [ 7017, 7019, 7018, 7016 ] }, + { "id": "unconnected", "fg": [ 7040, 7040 ] } ] }, { "id": [ "fd_blood_insect", "fd_blood_invertebrate" ], - "fg": 6939, + "fg": 7035, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6924 }, - { "id": "corner", "fg": [ 6926, 6928, 6927, 6925 ] }, - { "id": "t_connection", "fg": [ 6936, 6938, 6937, 6935 ] }, - { "id": "edge", "fg": [ 6930, 6929 ] }, - { "id": "end_piece", "fg": [ 6932, 6934, 6933, 6931 ] }, - { "id": "unconnected", "fg": [ 6939, 6939 ] } + { "id": "center", "fg": 7020 }, + { "id": "corner", "fg": [ 7022, 7024, 7023, 7021 ] }, + { "id": "t_connection", "fg": [ 7032, 7034, 7033, 7031 ] }, + { "id": "edge", "fg": [ 7026, 7025 ] }, + { "id": "end_piece", "fg": [ 7028, 7030, 7029, 7027 ] }, + { "id": "unconnected", "fg": [ 7035, 7035 ] } ] }, - { "id": "fd_electricity", "fg": [ { "weight": 100, "sprite": 6945 }, { "weight": 100, "sprite": 6946 } ] }, { "id": "fd_web", "fg": [ - { "weight": 100, "sprite": 6947 }, - { "weight": 100, "sprite": 6948 }, - { "weight": 25, "sprite": 6949 }, - { "weight": 25, "sprite": 6950 } - ] - }, - { "id": "fd_smoke", "fg": 6953 }, - { "id": "fd_fungal_haze", "fg": 6952 }, - { "id": "fd_nuke_gas", "fg": 6951 }, - { "id": "fd_spotlight", "fg": 6954 }, - { "id": "f_makeshift_bed", "fg": 6957 }, - { "id": "f_straw_bed", "fg": 6958 }, - { "id": "f_bed_frame", "fg": 6955 }, - { "id": "f_camp_chair", "fg": 6962 }, - { "id": "f_lane", "fg": 6963 }, - { "id": "f_piano", "fg": 6964 }, - { "id": "f_pinball_machine", "fg": 6965 }, - { "id": "f_seat_airplane", "fg": 6966 }, + { "weight": 100, "sprite": 7041 }, + { "weight": 100, "sprite": 7042 }, + { "weight": 25, "sprite": 7043 }, + { "weight": 25, "sprite": 7044 } + ] + }, + { "id": "fd_spotlight", "fg": 7045 }, + { "id": "f_makeshift_bed", "fg": 7048 }, + { "id": "f_straw_bed", "fg": 7049 }, + { "id": "f_bed_frame", "fg": 7046 }, + { "id": "f_camp_chair", "fg": 7053 }, + { "id": "f_lane", "fg": 7054 }, + { "id": "f_piano", "fg": 7055 }, + { "id": "f_pinball_machine", "fg": 7056 }, + { "id": "f_seat_airplane", "fg": 7057 }, { "id": "f_sink", "multitile": true, - "fg": 6982, - "additional_tiles": [ - { "id": "center", "fg": 6967 }, - { "id": "corner", "fg": [ 6969, 6971, 6970, 6968 ] }, - { "id": "t_connection", "fg": [ 6979, 6981, 6980, 6978 ] }, - { "id": "edge", "fg": [ 6973, 6972 ] }, - { "id": "end_piece", "fg": [ 6975, 6977, 6976, 6974 ] }, - { "id": "unconnected", "fg": 6982 } - ] - }, - { "id": "f_solar_unit", "fg": 6983 }, - { "id": "f_speaker_cabinet", "fg": 6984 }, - { "id": "f_water_mill", "fg": 6985 }, - { "id": "water_mill", "fg": 6986 }, - { "id": "f_water_purifier", "fg": 6987 }, - { "id": "f_wood_keg", "fg": 7125 }, - { "id": "30gal_barrel", "fg": 6988 }, - { "id": "30gal_drum", "fg": 6989 }, - { "id": "alarmclock", "fg": 6990 }, - { "id": "clock", "fg": 6990 }, - { "id": "anvil", "fg": 6994 }, - { "id": [ "autoclave", "vh_autoclave" ], "fg": 6995 }, - { "id": "bag_canvas_small", "fg": 6997 }, - { "id": "bathroom_scale", "fg": 6998 }, - { "id": "bead_necklace", "fg": 6999 }, - { "id": "bubblewrap", "fg": 7001 }, - { "id": "bucket", "fg": 7002 }, - { "id": "camera_pro", "fg": 7008 }, - { "id": "condom", "fg": 7009 }, - { "id": "craft", "fg": 7010 }, - { "id": "pomegranate", "fg": 7021 }, - { "id": "peach", "fg": 7019 }, - { "id": "strawberries", "fg": 7022 }, - { "id": "cabbage", "fg": 7011 }, - { "id": "mango", "fg": 7017 }, - { "id": "kiwi", "fg": 7016 }, - { "id": "papaya", "fg": 7018 }, - { "id": "grapefruit", "fg": 7015 }, - { "id": "pineapple", "fg": 7020 }, - { "id": "celery", "fg": 7013 }, - { "id": "chili_pepper", "fg": 7014 }, - { "id": "carrot", "fg": 7012 }, - { "id": "zucchini", "fg": 7023 }, - { "id": "akmag30", "fg": 7024 }, - { "id": "duct_tape", "fg": 7025 }, - { "id": "electric_lantern", "fg": 7026 }, - { "id": "extinguisher", "fg": 7027 }, - { "id": "sm_extinguisher", "fg": 7028 }, - { "id": "fan", "fg": 7029 }, + "fg": 7073, + "additional_tiles": [ + { "id": "center", "fg": 7058 }, + { "id": "corner", "fg": [ 7060, 7062, 7061, 7059 ] }, + { "id": "t_connection", "fg": [ 7070, 7072, 7071, 7069 ] }, + { "id": "edge", "fg": [ 7064, 7063 ] }, + { "id": "end_piece", "fg": [ 7066, 7068, 7067, 7065 ] }, + { "id": "unconnected", "fg": 7073 } + ] + }, + { "id": "f_solar_unit", "fg": 7074 }, + { "id": "f_speaker_cabinet", "fg": 7075 }, + { "id": "f_water_mill", "fg": 7076 }, + { "id": "water_mill", "fg": 7077 }, + { "id": "f_water_purifier", "fg": 7078 }, + { "id": "f_wood_keg", "fg": 7216 }, + { "id": "30gal_barrel", "fg": 7079 }, + { "id": "30gal_drum", "fg": 7080 }, + { "id": "alarmclock", "fg": 7081 }, + { "id": "clock", "fg": 7081 }, + { "id": "anvil", "fg": 7085 }, + { "id": [ "autoclave", "vh_autoclave" ], "fg": 7086 }, + { "id": "bag_canvas_small", "fg": 7088 }, + { "id": "bathroom_scale", "fg": 7089 }, + { "id": "bead_necklace", "fg": 7090 }, + { "id": "bubblewrap", "fg": 7092 }, + { "id": "bucket", "fg": 7093 }, + { "id": "camera_pro", "fg": 7099 }, + { "id": "condom", "fg": 7100 }, + { "id": "craft", "fg": 7101 }, + { "id": "pomegranate", "fg": 7112 }, + { "id": "peach", "fg": 7110 }, + { "id": "strawberries", "fg": 7113 }, + { "id": "cabbage", "fg": 7102 }, + { "id": "mango", "fg": 7108 }, + { "id": "kiwi", "fg": 7107 }, + { "id": "papaya", "fg": 7109 }, + { "id": "grapefruit", "fg": 7106 }, + { "id": "pineapple", "fg": 7111 }, + { "id": "celery", "fg": 7104 }, + { "id": "chili_pepper", "fg": 7105 }, + { "id": "carrot", "fg": 7103 }, + { "id": "zucchini", "fg": 7114 }, + { "id": "akmag30", "fg": 7115 }, + { "id": "duct_tape", "fg": 7116 }, + { "id": "electric_lantern", "fg": 7117 }, + { "id": "extinguisher", "fg": 7118 }, + { "id": "sm_extinguisher", "fg": 7119 }, + { "id": "fan", "fg": 7120 }, { "id": [ "family_photo", @@ -10289,19 +10511,19 @@ "battleship", "clue" ], - "fg": 7030 - }, - { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7031 }, - { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7033 }, - { "id": "glock17_17", "fg": 7035 }, - { "id": "holy_symbol", "fg": 7036 }, - { "id": "holy_symbol_wood", "fg": 7037 }, - { "id": "hotplate", "fg": 7038 }, - { "id": "jerrycan", "fg": 7039 }, - { "id": "jerrycan_big", "fg": 7040 }, - { "id": "keg", "fg": 7041 }, - { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7055 }, - { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7048 }, + "fg": 7121 + }, + { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7122 }, + { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7124 }, + { "id": "glock17_17", "fg": 7126 }, + { "id": "holy_symbol", "fg": 7127 }, + { "id": "holy_symbol_wood", "fg": 7128 }, + { "id": "hotplate", "fg": 7129 }, + { "id": "jerrycan", "fg": 7130 }, + { "id": "jerrycan_big", "fg": 7131 }, + { "id": "keg", "fg": 7132 }, + { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7146 }, + { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7139 }, { "id": [ "nyquil", @@ -10453,7 +10675,7 @@ "wine_chardonnay", "drink_martini" ], - "fg": 7058 + "fg": 7149 }, { "id": [ @@ -10494,7 +10716,7 @@ "soup_tomato", "young_yeast" ], - "fg": 7060 + "fg": 7151 }, { "id": [ @@ -10516,57 +10738,57 @@ "hi_q_distillate_tails", "hi_q_distillate" ], - "fg": 7059 - }, - { "id": "longsword", "fg": 7061 }, - { "id": "longsword_inferior", "fg": 7063 }, - { "id": "longsword_fake", "fg": 7062 }, - { "id": "mask_gas", "fg": 7064 }, - { "id": "plastic_chunk", "fg": 7065 }, - { "id": "scrap_copper", "fg": 7066 }, - { "id": "oil_lamp", "fg": 7067 }, - { "id": "pickaxe", "fg": 7068 }, - { "id": "pitchfork", "fg": 7069 }, - { "id": "plunger_futuristic", "fg": 7070 }, - { "id": "plunger_toilet", "fg": 7071 }, - { "id": "pocketwatch", "fg": 7072 }, - { "id": "bacon", "fg": 7073 }, - { "id": "porkbelly", "fg": 7074 }, - { "id": "raw_cured_fatty_meat", "fg": 7075 }, - { "id": "raw_curing_fatty_meat", "fg": 7076 }, - { "id": "material_sand", "fg": 7103 }, - { "id": "material_soil", "fg": 7105 }, - { "id": "chem_aluminium_powder", "fg": 7077 }, - { "id": "chem_aluminium_sulphate", "fg": 7078 }, - { "id": "chem_ammonium_nitrate", "fg": 7079 }, - { "id": "chem_black_powder", "fg": 7080 }, - { "id": "cac2powder", "fg": 7081 }, - { "id": "chilly-p", "fg": 7082 }, - { "id": "meal_chitin_piece", "fg": 7083 }, - { "id": "chem_chromium_oxide", "fg": 7084 }, - { "id": "coffee_raw", "fg": 7085 }, - { "id": "curry_powder", "fg": 7086 }, - { "id": "powder_eggs", "fg": 7087 }, - { "id": "fungicide", "fg": 7088 }, - { "id": "insecticide", "fg": 7090 }, - { "id": "chem_hmtd", "fg": 7089 }, - { "id": "lemonade_powder", "fg": 7091 }, - { "id": "lye_powder", "fg": 7092 }, - { "id": "magnesium", "fg": 7093 }, - { "id": "chem_manganese_dioxide", "fg": 7094 }, - { "id": "chem_match_head_powder", "fg": 7095 }, - { "id": "mustard_powder", "fg": 7096 }, - { "id": "oxy_powder", "fg": 7097 }, - { "id": "chem_peptone_broth", "fg": 7098 }, - { "id": "protein_powder", "fg": 7099 }, - { "id": "material_quicklime", "fg": 7100 }, - { "id": "chem_rocket_fuel", "fg": 7101 }, - { "id": "chem_saltpetre", "fg": 7102 }, - { "id": "gunpowder", "fg": 7104 }, - { "id": "chem_thermite", "fg": 7106 }, - { "id": "tin", "fg": 7107 }, - { "id": "yeast", "fg": 7109 }, - { "id": "chem_zinc_powder", "fg": 7110 }, + "fg": 7150 + }, + { "id": "longsword", "fg": 7152 }, + { "id": "longsword_inferior", "fg": 7154 }, + { "id": "longsword_fake", "fg": 7153 }, + { "id": "mask_gas", "fg": 7155 }, + { "id": "plastic_chunk", "fg": 7156 }, + { "id": "scrap_copper", "fg": 7157 }, + { "id": "oil_lamp", "fg": 7158 }, + { "id": "pickaxe", "fg": 7159 }, + { "id": "pitchfork", "fg": 7160 }, + { "id": "plunger_futuristic", "fg": 7161 }, + { "id": "plunger_toilet", "fg": 7162 }, + { "id": "pocketwatch", "fg": 7163 }, + { "id": "bacon", "fg": 7164 }, + { "id": "porkbelly", "fg": 7165 }, + { "id": "raw_cured_fatty_meat", "fg": 7166 }, + { "id": "raw_curing_fatty_meat", "fg": 7167 }, + { "id": "material_sand", "fg": 7194 }, + { "id": "material_soil", "fg": 7196 }, + { "id": "chem_aluminium_powder", "fg": 7168 }, + { "id": "chem_aluminium_sulphate", "fg": 7169 }, + { "id": "chem_ammonium_nitrate", "fg": 7170 }, + { "id": "chem_black_powder", "fg": 7171 }, + { "id": "cac2powder", "fg": 7172 }, + { "id": "chilly-p", "fg": 7173 }, + { "id": "meal_chitin_piece", "fg": 7174 }, + { "id": "chem_chromium_oxide", "fg": 7175 }, + { "id": "coffee_raw", "fg": 7176 }, + { "id": "curry_powder", "fg": 7177 }, + { "id": "powder_eggs", "fg": 7178 }, + { "id": "fungicide", "fg": 7179 }, + { "id": "insecticide", "fg": 7181 }, + { "id": "chem_hmtd", "fg": 7180 }, + { "id": "lemonade_powder", "fg": 7182 }, + { "id": "lye_powder", "fg": 7183 }, + { "id": "magnesium", "fg": 7184 }, + { "id": "chem_manganese_dioxide", "fg": 7185 }, + { "id": "chem_match_head_powder", "fg": 7186 }, + { "id": "mustard_powder", "fg": 7187 }, + { "id": "oxy_powder", "fg": 7188 }, + { "id": "chem_peptone_broth", "fg": 7189 }, + { "id": "protein_powder", "fg": 7190 }, + { "id": "material_quicklime", "fg": 7191 }, + { "id": "chem_rocket_fuel", "fg": 7192 }, + { "id": "chem_saltpetre", "fg": 7193 }, + { "id": "gunpowder", "fg": 7195 }, + { "id": "chem_thermite", "fg": 7197 }, + { "id": "tin", "fg": 7198 }, + { "id": "yeast", "fg": 7200 }, + { "id": "chem_zinc_powder", "fg": 7201 }, { "id": [ "sugar", @@ -10579,129 +10801,129 @@ "quikclot", "chem_acrylamide" ], - "fg": 7108 - }, - { "id": "radio", "fg": 7111 }, - { "id": "ref_lighter", "fg": 7112 }, - { "id": "rhubarb", "fg": 7113 }, - { "id": "rope_6", "fg": 7114 }, - { "id": "spray_can", "fg": 7115 }, - { "id": "stanag30", "fg": 7116 }, - { "id": "stepladder", "fg": 7117 }, - { "id": "stereo", "fg": 7118 }, - { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7119 }, - { "id": "waffleiron", "fg": 7120 }, - { "id": "warhammer", "fg": 7121 }, - { "id": "welding_mask", "fg": 7122 }, - { "id": "wind_mill", "fg": 7123 }, - { "id": "wood_beam", "fg": 7124 }, - { "id": "wooden_barrel", "fg": 7125 }, - { "id": "zweihander", "fg": 7126 }, - { "id": "zweihander_inferior", "fg": 7128 }, - { "id": "zweihander_fake", "fg": 7127 }, - { "id": "bot_grenade_hack", "fg": 7131 }, - { "id": "bot_mininuke_hack", "fg": 7132 }, - { "id": "infrared_creature", "fg": 7142 }, + "fg": 7199 + }, + { "id": "radio", "fg": 7202 }, + { "id": "ref_lighter", "fg": 7203 }, + { "id": "rhubarb", "fg": 7204 }, + { "id": "rope_6", "fg": 7205 }, + { "id": "spray_can", "fg": 7206 }, + { "id": "stanag30", "fg": 7207 }, + { "id": "stepladder", "fg": 7208 }, + { "id": "stereo", "fg": 7209 }, + { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7210 }, + { "id": "waffleiron", "fg": 7211 }, + { "id": "warhammer", "fg": 7212 }, + { "id": "welding_mask", "fg": 7213 }, + { "id": "wind_mill", "fg": 7214 }, + { "id": "wood_beam", "fg": 7215 }, + { "id": "wooden_barrel", "fg": 7216 }, + { "id": "zweihander", "fg": 7217 }, + { "id": "zweihander_inferior", "fg": 7219 }, + { "id": "zweihander_fake", "fg": 7218 }, + { "id": "bot_grenade_hack", "fg": 7222 }, + { "id": "bot_mininuke_hack", "fg": 7223 }, + { "id": "infrared_creature", "fg": 7233 }, { "id": "weather_rain_drop", "fg": [ - { "weight": 100, "sprite": 7144 }, - { "weight": 100, "sprite": 7146 }, - { "weight": 100, "sprite": 7147 }, - { "weight": 100, "sprite": 7148 }, - { "weight": 100, "sprite": 7149 }, - { "weight": 100, "sprite": 7150 }, - { "weight": 100, "sprite": 7151 }, - { "weight": 100, "sprite": 7152 }, - { "weight": 100, "sprite": 7153 }, - { "weight": 100, "sprite": 7145 } - ] - }, - { "id": "weather_snowflake", "fg": 7154 }, - { "id": "weather_acid_drop", "fg": 7143 }, - { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7160 }, - { "id": "t_card_reader_broken", "fg": 7159 }, - { "id": "t_card_military", "fg": 7158 }, - { "id": "t_card_industrial", "fg": 7157 }, - { "id": "t_card_fp", "fg": 7156 }, - { "id": "t_floor_red", "fg": 7163 }, - { "id": "t_floor_green", "fg": 7162 }, - { "id": "t_floor_blue", "fg": 7161 }, - { "id": [ "t_searth_test", "t_searth" ], "fg": 7164 }, - { "id": "t_current_trans", "fg": 7165, "bg": 5744 }, - { "id": "t_potential_trans", "fg": 7166, "bg": 5744 }, - { "id": "graffiti", "fg": 7167 }, - { "id": "t_pedestal_wyrm", "fg": 7169, "bg": 5536 }, + { "weight": 100, "sprite": 7235 }, + { "weight": 100, "sprite": 7237 }, + { "weight": 100, "sprite": 7238 }, + { "weight": 100, "sprite": 7239 }, + { "weight": 100, "sprite": 7240 }, + { "weight": 100, "sprite": 7241 }, + { "weight": 100, "sprite": 7242 }, + { "weight": 100, "sprite": 7243 }, + { "weight": 100, "sprite": 7244 }, + { "weight": 100, "sprite": 7236 } + ] + }, + { "id": "weather_snowflake", "fg": 7245 }, + { "id": "weather_acid_drop", "fg": 7234 }, + { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7251 }, + { "id": "t_card_reader_broken", "fg": 7250 }, + { "id": "t_card_military", "fg": 7249 }, + { "id": "t_card_industrial", "fg": 7248 }, + { "id": "t_card_fp", "fg": 7247 }, + { "id": "t_floor_red", "fg": 7254 }, + { "id": "t_floor_green", "fg": 7253 }, + { "id": "t_floor_blue", "fg": 7252 }, + { "id": [ "t_searth_test", "t_searth" ], "fg": 7255 }, + { "id": "t_current_trans", "fg": 7256, "bg": 5825 }, + { "id": "t_potential_trans", "fg": 7257, "bg": 5825 }, + { "id": "graffiti", "fg": 7258 }, + { "id": "t_pedestal_wyrm", "fg": 7260, "bg": 5617 }, { "id": "t_pedestal_temple", - "fg": [ { "weight": 100, "sprite": 7170 }, { "weight": 100, "sprite": 7168 } ], - "bg": 4913 + "fg": [ { "weight": 100, "sprite": 7261 }, { "weight": 100, "sprite": 7259 } ], + "bg": 4978 }, { "id": "t_pedestal_temple_season_winter", - "fg": [ { "weight": 100, "sprite": 7170 }, { "weight": 100, "sprite": 7168 } ], - "bg": 4584 + "fg": [ { "weight": 100, "sprite": 7261 }, { "weight": 100, "sprite": 7259 } ], + "bg": 4649 }, - { "id": "t_zebra", "fg": 7171 }, - { "id": "t_zebra_season_winter", "fg": 4583 }, + { "id": "t_zebra", "fg": 7262 }, + { "id": "t_zebra_season_winter", "fg": 4648 }, { "id": [ "t_metal_railing", "t_concrete_railing", "t_glass_railing" ], "multitile": true, - "fg": 5472, - "bg": 4787, - "additional_tiles": [ - { "id": "center", "bg": 4787, "fg": 5457 }, - { "id": "corner", "bg": 4787, "fg": [ 5459, 5461, 5460, 5458 ] }, - { "id": "t_connection", "bg": 4787, "fg": [ 5469, 5471, 5470, 5468 ] }, - { "id": "edge", "bg": 4787, "fg": [ 5463, 5462 ] }, - { "id": "end_piece", "bg": 4787, "fg": [ 5465, 5467, 5466, 5464 ] }, - { "bg": 4787, "id": "unconnected", "fg": [ 5472, 5472 ] } - ] - }, - { "id": "t_chaingate_c", "fg": 7173, "bg": 5309 }, - { "id": "t_chaingate_l", "fg": 7174, "bg": 5309 }, - { "id": "t_chaingate_o", "fg": 7175, "bg": 5309 }, - { "id": "t_chainfence_posts", "fg": 7172, "bg": 5309 }, - { "id": "t_chaingate_c_season_winter", "fg": 7173, "bg": 4584 }, - { "id": "t_chaingate_l_season_winter", "fg": 7174, "bg": 4584 }, - { "id": "t_chaingate_o_season_winter", "fg": 7175, "bg": 4584 }, - { "id": "t_chainfence_posts_season_winter", "fg": 7172, "bg": 4584 }, - { "id": "t_console", "fg": 7176 }, - { "id": "t_console_broken", "fg": 7177 }, - { "id": "t_dirtmound", "fg": 7178, "bg": 5104 }, - { "id": "t_dirtmound_season_summer", "fg": 7178, "bg": 5114 }, - { "id": "t_dirtmound_season_autumn", "fg": 7178, "bg": 5109 }, - { "id": "t_dirtmound_season_winter", "fg": 7179 }, - { "id": "t_door_metal_c", "fg": 7180 }, - { "id": "t_door_metal_o", "fg": 7181 }, - { "id": "t_fern", "fg": 7182, "bg": 5104 }, - { "id": "t_fern_harvested", "fg": 7183, "bg": 5104 }, - { "id": "t_fern_season_summer", "fg": 7182, "bg": 5114 }, - { "id": "t_fern_harvested_season_summer", "fg": 7183, "bg": 5114 }, - { "id": "t_fern_season_autumn", "fg": 7182, "bg": 5109 }, - { "id": "t_fern_harvested_season_autumn", "fg": 7183, "bg": 5109 }, - { "id": "t_fern_season_winter", "fg": 7182, "bg": 4582 }, - { "id": "t_fern_harvested_season_winter", "fg": 7183, "bg": 4582 }, + "fg": 5553, + "bg": 4852, + "additional_tiles": [ + { "id": "center", "bg": 4852, "fg": 5538 }, + { "id": "corner", "bg": 4852, "fg": [ 5540, 5542, 5541, 5539 ] }, + { "id": "t_connection", "bg": 4852, "fg": [ 5550, 5552, 5551, 5549 ] }, + { "id": "edge", "bg": 4852, "fg": [ 5544, 5543 ] }, + { "id": "end_piece", "bg": 4852, "fg": [ 5546, 5548, 5547, 5545 ] }, + { "bg": 4852, "id": "unconnected", "fg": [ 5553, 5553 ] } + ] + }, + { "id": "t_chaingate_c", "fg": 7264, "bg": 5374 }, + { "id": "t_chaingate_l", "fg": 7265, "bg": 5374 }, + { "id": "t_chaingate_o", "fg": 7266, "bg": 5374 }, + { "id": "t_chainfence_posts", "fg": 7263, "bg": 5374 }, + { "id": "t_chaingate_c_season_winter", "fg": 7264, "bg": 4649 }, + { "id": "t_chaingate_l_season_winter", "fg": 7265, "bg": 4649 }, + { "id": "t_chaingate_o_season_winter", "fg": 7266, "bg": 4649 }, + { "id": "t_chainfence_posts_season_winter", "fg": 7263, "bg": 4649 }, + { "id": "t_console", "fg": 7267 }, + { "id": "t_console_broken", "fg": 7268 }, + { "id": "t_dirtmound", "fg": 7269, "bg": 5169 }, + { "id": "t_dirtmound_season_summer", "fg": 7269, "bg": 5179 }, + { "id": "t_dirtmound_season_autumn", "fg": 7269, "bg": 5174 }, + { "id": "t_dirtmound_season_winter", "fg": 7270 }, + { "id": "t_door_metal_c", "fg": 7271 }, + { "id": "t_door_metal_o", "fg": 7272 }, + { "id": "t_fern", "fg": 7273, "bg": 5169 }, + { "id": "t_fern_harvested", "fg": 7274, "bg": 5169 }, + { "id": "t_fern_season_summer", "fg": 7273, "bg": 5179 }, + { "id": "t_fern_harvested_season_summer", "fg": 7274, "bg": 5179 }, + { "id": "t_fern_season_autumn", "fg": 7273, "bg": 5174 }, + { "id": "t_fern_harvested_season_autumn", "fg": 7274, "bg": 5174 }, + { "id": "t_fern_season_winter", "fg": 7273, "bg": 4647 }, + { "id": "t_fern_harvested_season_winter", "fg": 7274, "bg": 4647 }, { "id": [ "t_junk_palisade", "t_junk_wall" ], "fg": [ - { "weight": 100, "sprite": 7184 }, - { "weight": 100, "sprite": 7185 }, - { "weight": 100, "sprite": 7186 }, - { "weight": 100, "sprite": 7187 } + { "weight": 100, "sprite": 7275 }, + { "weight": 100, "sprite": 7276 }, + { "weight": 100, "sprite": 7277 }, + { "weight": 100, "sprite": 7278 } ] }, { "id": "t_paper", - "fg": 7203, + "fg": 7294, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7188 }, - { "id": "corner", "fg": [ 7190, 7192, 7191, 7189 ] }, - { "id": "t_connection", "fg": [ 7200, 7202, 7201, 7199 ] }, - { "id": "edge", "fg": [ 7194, 7193 ] }, - { "id": "end_piece", "fg": [ 7196, 7198, 7197, 7195 ] }, - { "id": "unconnected", "fg": [ 7203, 7203 ] } + { "id": "center", "fg": 7279 }, + { "id": "corner", "fg": [ 7281, 7283, 7282, 7280 ] }, + { "id": "t_connection", "fg": [ 7291, 7293, 7292, 7290 ] }, + { "id": "edge", "fg": [ 7285, 7284 ] }, + { "id": "end_piece", "fg": [ 7287, 7289, 7288, 7286 ] }, + { "id": "unconnected", "fg": [ 7294, 7294 ] } ] }, { @@ -10721,445 +10943,445 @@ "t_railroad_track_v_on_tie", "t_railroad_track_d_on_tie" ], - "fg": 7221, + "fg": 7312, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7206, "bg": 5473 }, - { "id": "corner", "fg": [ 7208, 7210, 7209, 7207 ], "bg": 5473 }, - { "id": "t_connection", "fg": [ 7218, 7220, 7219, 7217 ], "bg": 5473 }, - { "id": "edge", "fg": [ 7212, 7211 ], "bg": 5473 }, - { "id": "end_piece", "fg": [ 7214, 7216, 7215, 7213 ], "bg": 5473 }, - { "id": "unconnected", "fg": [ 7221, 7221 ], "bg": 5473 } + { "id": "center", "fg": 7297, "bg": 5554 }, + { "id": "corner", "fg": [ 7299, 7301, 7300, 7298 ], "bg": 5554 }, + { "id": "t_connection", "fg": [ 7309, 7311, 7310, 7308 ], "bg": 5554 }, + { "id": "edge", "fg": [ 7303, 7302 ], "bg": 5554 }, + { "id": "end_piece", "fg": [ 7305, 7307, 7306, 7304 ], "bg": 5554 }, + { "id": "unconnected", "fg": [ 7312, 7312 ], "bg": 5554 } ], - "bg": 5473 + "bg": 5554 }, - { "id": "t_reinforced_glass_shutter", "fg": 7222 }, - { "id": "t_reinforced_glass_shutter_open", "fg": 7223 }, + { "id": "t_reinforced_glass_shutter", "fg": 7313 }, + { "id": "t_reinforced_glass_shutter_open", "fg": 7314 }, { "id": "t_sandbox", - "fg": 7239, + "fg": 7330, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7224 }, - { "id": "corner", "fg": [ 7226, 7228, 7227, 7225 ] }, - { "id": "t_connection", "fg": [ 7236, 7238, 7237, 7235 ] }, - { "id": "edge", "fg": [ 7230, 7229 ] }, - { "id": "end_piece", "fg": [ 7232, 7234, 7233, 7231 ] }, - { "id": "unconnected", "fg": [ 7239, 7239 ] } + { "id": "center", "fg": 7315 }, + { "id": "corner", "fg": [ 7317, 7319, 7318, 7316 ] }, + { "id": "t_connection", "fg": [ 7327, 7329, 7328, 7326 ] }, + { "id": "edge", "fg": [ 7321, 7320 ] }, + { "id": "end_piece", "fg": [ 7323, 7325, 7324, 7322 ] }, + { "id": "unconnected", "fg": [ 7330, 7330 ] } ] }, - { "id": "t_slot_machine", "fg": 7240, "bg": 5001 }, - { "id": "t_strconc_wall", "fg": 7241 }, + { "id": "t_slot_machine", "fg": 7331, "bg": 5066 }, + { "id": "t_strconc_wall", "fg": 7332 }, { "id": "t_trunk", "multitile": true, - "fg": [ 7243, 7242 ], - "bg": [ { "weight": 100, "sprite": 5104 }, { "weight": 100, "sprite": 5106 } ] + "fg": [ 7334, 7333 ], + "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, { "id": "t_trunk_season_summer", "multitile": true, - "fg": [ 7243, 7242 ], - "bg": [ { "weight": 100, "sprite": 5114 }, { "weight": 100, "sprite": 5116 } ] + "fg": [ 7334, 7333 ], + "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, { "id": "t_trunk_season_autumn", "multitile": true, - "fg": [ 7243, 7242 ], - "bg": [ { "weight": 100, "sprite": 5109 }, { "weight": 100, "sprite": 5111 } ] + "fg": [ 7334, 7333 ], + "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, - { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7243, 7242 ], "bg": 4584 }, - { "id": "t_wall_half", "fg": 7244, "bg": 5001 }, + { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7334, 7333 ], "bg": 4649 }, + { "id": "t_wall_half", "fg": 7335, "bg": 5066 }, { "id": "t_wax", - "fg": 7260, + "fg": 7351, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7245 }, - { "id": "corner", "fg": [ 7247, 7249, 7248, 7246 ] }, - { "id": "t_connection", "fg": [ 7257, 7259, 7258, 7256 ] }, - { "id": "edge", "fg": [ 7251, 7250 ] }, - { "id": "end_piece", "fg": [ 7253, 7255, 7254, 7252 ] }, - { "id": "unconnected", "fg": [ 7260, 7260 ] } + { "id": "center", "fg": 7336 }, + { "id": "corner", "fg": [ 7338, 7340, 7339, 7337 ] }, + { "id": "t_connection", "fg": [ 7348, 7350, 7349, 7347 ] }, + { "id": "edge", "fg": [ 7342, 7341 ] }, + { "id": "end_piece", "fg": [ 7344, 7346, 7345, 7343 ] }, + { "id": "unconnected", "fg": [ 7351, 7351 ] } ] }, - { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7261, "bg": 6152 }, - { "id": "t_window_frame", "fg": 7262 }, - { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7263, "bg": 6152 }, - { "id": "tr_firewood_source", "fg": 7264 }, - { "id": "tr_unfinished_construction", "fg": 7265 }, + { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7352, "bg": 6233 }, + { "id": "t_window_frame", "fg": 7353 }, + { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7354, "bg": 6233 }, + { "id": "tr_firewood_source", "fg": 7355 }, + { "id": "tr_unfinished_construction", "fg": 7356 }, { "id": "vp_hdboard_ne", - "fg": [ 7292, 7295, 7294, 7293 ], + "fg": [ 7383, 7386, 7385, 7384 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7292, 7295, 7294, 7293 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7383, 7386, 7385, 7384 ] } ] }, { "id": "vp_hdboard_nw", - "fg": [ 7296, 7299, 7298, 7297 ], + "fg": [ 7387, 7390, 7389, 7388 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7296, 7299, 7298, 7297 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7387, 7390, 7389, 7388 ] } ] }, { "id": "vp_hdboard_se", - "fg": [ 7300, 7302, 7296, 7301 ], + "fg": [ 7391, 7393, 7387, 7392 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7300, 7302, 7296, 7301 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7391, 7393, 7387, 7392 ] } ] }, { "id": "vp_hdboard_sw", - "fg": [ 7303, 7305, 7292, 7304 ], + "fg": [ 7394, 7396, 7383, 7395 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7303, 7305, 7292, 7304 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7394, 7396, 7383, 7395 ] } ] }, { "id": "vp_hdboard_vertical_left", - "fg": [ 7306, 7308, 7309, 7307 ], + "fg": [ 7397, 7399, 7400, 7398 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7306, 7308, 7309, 7307 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7397, 7399, 7400, 7398 ] } ] }, { "id": "vp_hdboard_vertical_right", - "fg": [ 7309, 7311, 7306, 7310 ], + "fg": [ 7400, 7402, 7397, 7401 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7309, 7311, 7306, 7310 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7400, 7402, 7397, 7401 ] } ] }, { "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ], - "fg": 7288, + "fg": 7379, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7288 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7379 } ] }, { "id": "vp_hdboard_horizontal_front", - "fg": [ 7288, 7290, 7288, 7289 ], + "fg": [ 7379, 7381, 7379, 7380 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7288, 7290, 7288, 7289 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7379, 7381, 7379, 7380 ] } ] }, { "id": "vp_hdboard_horizontal_rear", - "fg": [ 7291, 7289, 7288, 7290 ], + "fg": [ 7382, 7380, 7379, 7381 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7291, 7289, 7288, 7290 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7382, 7380, 7379, 7381 ] } ] }, { "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ], - "fg": 7306, + "fg": 7397, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7306 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7397 } ] }, { "id": "vp_hdhalfboard_ne", - "fg": [ 7326, 7329, 7328, 7327 ], + "fg": [ 7417, 7420, 7419, 7418 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7326, 7329, 7328, 7327 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7417, 7420, 7419, 7418 ] } ] }, { "id": "vp_hdhalfboard_nw", - "fg": [ 7330, 7333, 7332, 7331 ], + "fg": [ 7421, 7424, 7423, 7422 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7330, 7333, 7332, 7331 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7421, 7424, 7423, 7422 ] } ] }, { "id": "vp_hdhalfboard_se", - "fg": [ 7334, 7337, 7336, 7335 ], + "fg": [ 7425, 7428, 7427, 7426 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7334, 7337, 7336, 7335 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7425, 7428, 7427, 7426 ] } ] }, { "id": "vp_hdhalfboard_sw", - "fg": [ 7338, 7341, 7340, 7339 ], + "fg": [ 7429, 7432, 7431, 7430 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7338, 7341, 7340, 7339 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7429, 7432, 7431, 7430 ] } ] }, { "id": "vp_hdhalfboard_vertical_left", - "fg": [ 7346, 7349, 7348, 7347 ], + "fg": [ 7437, 7440, 7439, 7438 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7346, 7349, 7348, 7347 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7437, 7440, 7439, 7438 ] } ] }, { "id": "vp_hdhalfboard_vertical_right", - "fg": [ 7350, 7353, 7352, 7351 ], + "fg": [ 7441, 7444, 7443, 7442 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7350, 7353, 7352, 7351 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7441, 7444, 7443, 7442 ] } ] }, { "id": "vp_hdhalfboard_horizontal", - "fg": [ 7321, 7324, 7323, 7322 ], + "fg": [ 7412, 7415, 7414, 7413 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7321, 7324, 7323, 7322 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7412, 7415, 7414, 7413 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2", - "fg": 7316, + "fg": 7407, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7316 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7407 } ] }, { "id": "vp_hdhalfboard_horizontal_front", - "fg": [ 7321, 7324, 7323, 7322 ], + "fg": [ 7412, 7415, 7414, 7413 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7321, 7324, 7323, 7322 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7412, 7415, 7414, 7413 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_front", - "fg": [ 7316, 7319, 7318, 7317 ], + "fg": [ 7407, 7410, 7409, 7408 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7316, 7319, 7318, 7317 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7407, 7410, 7409, 7408 ] } ] }, { "id": "vp_hdhalfboard_horizontal_rear", - "fg": [ 7325, 7322, 7321, 7324 ], + "fg": [ 7416, 7413, 7412, 7415 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7325, 7322, 7321, 7324 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7416, 7413, 7412, 7415 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_rear", - "fg": [ 7320, 7317, 7316, 7319 ], + "fg": [ 7411, 7408, 7407, 7410 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7320, 7317, 7316, 7319 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7411, 7408, 7407, 7410 ] } ] }, { "id": "vp_hdhalfboard_vertical", - "fg": 7342, + "fg": 7433, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7342 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7433 } ] }, { "id": "vp_hdhalfboard_vertical_2", - "fg": 7343, + "fg": 7434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7343 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7434 } ] }, { "id": "vp_hdhalfboard_vertical_2_left", - "fg": [ 7344, 7349, 7348, 7347 ], + "fg": [ 7435, 7440, 7439, 7438 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7344, 7349, 7348, 7347 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7435, 7440, 7439, 7438 ] } ] }, { "id": "vp_hdhalfboard_vertical_2_right", - "fg": [ 7345, 7353, 7352, 7351 ], + "fg": [ 7436, 7444, 7443, 7442 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7345, 7353, 7352, 7351 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7436, 7444, 7443, 7442 ] } ] }, { "id": "vp_hdhalfboard_cover", - "fg": [ 7312, 7315, 7314, 7313 ], + "fg": [ 7403, 7406, 7405, 7404 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7312, 7315, 7314, 7313 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7403, 7406, 7405, 7404 ] } ] }, { "id": "vp_xlhalfboard_ne", - "fg": [ 7275, 7278, 7277, 7276 ], + "fg": [ 7366, 7369, 7368, 7367 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7275, 7278, 7277, 7276 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7366, 7369, 7368, 7367 ] } ] }, { "id": "vp_xlhalfboard_nw", - "fg": [ 7279, 7282, 7281, 7280 ], + "fg": [ 7370, 7373, 7372, 7371 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7279, 7282, 7281, 7280 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7370, 7373, 7372, 7371 ] } ] }, { "id": "vp_xlhalfboard_se", - "fg": 7283, + "fg": 7374, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7283 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7374 } ] }, { "id": "vp_xlhalfboard_sw", - "fg": 7284, + "fg": 7375, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7284 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7375 } ] }, { "id": "vp_xlhalfboard_vertical_left", - "fg": 7286, + "fg": 7377, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7286 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7377 } ] }, { "id": "vp_xlhalfboard_vertical_right", - "fg": 7287, + "fg": 7378, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7287 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7378 } ] }, { "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ], - "fg": 7270, + "fg": 7361, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7270 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7361 } ] }, { "id": "vp_xlhalfboard_horizontal_front", - "fg": [ 7270, 7273, 7272, 7271 ], + "fg": [ 7361, 7364, 7363, 7362 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7270, 7273, 7272, 7271 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7361, 7364, 7363, 7362 ] } ] }, { "id": "vp_xlhalfboard_horizontal_rear", - "fg": 7274, + "fg": 7365, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7274 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7365 } ] }, { "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ], - "fg": 7285, + "fg": 7376, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7285 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7376 } ] }, { "id": "vp_xlhalfboard_cover", - "fg": [ 7266, 7269, 7268, 7267 ], + "fg": [ 7357, 7360, 7359, 7358 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7266, 7269, 7268, 7267 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7357, 7360, 7359, 7358 ] } ] }, { "id": "vp_hdstowboard_ne", - "fg": [ 7359, 7362, 7361, 7360 ], + "fg": [ 7450, 7453, 7452, 7451 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7359, 7362, 7361, 7360 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7450, 7453, 7452, 7451 ] } ] }, { "id": "vp_hdstowboard_nw", - "fg": [ 7363, 7366, 7365, 7364 ], + "fg": [ 7454, 7457, 7456, 7455 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7363, 7366, 7365, 7364 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7454, 7457, 7456, 7455 ] } ] }, { "id": "vp_hdstowboard_se", - "fg": [ 7367, 7369, 7363, 7368 ], + "fg": [ 7458, 7460, 7454, 7459 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7367, 7369, 7363, 7368 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7458, 7460, 7454, 7459 ] } ] }, { "id": "vp_hdstowboard_sw", - "fg": [ 7370, 7372, 7359, 7371 ], + "fg": [ 7461, 7463, 7450, 7462 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7370, 7372, 7359, 7371 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7461, 7463, 7450, 7462 ] } ] }, { "id": "vp_hdstowboard_vertical_left", - "fg": [ 7373, 7375, 7376, 7374 ], + "fg": [ 7464, 7466, 7467, 7465 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7373, 7375, 7376, 7374 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7464, 7466, 7467, 7465 ] } ] }, { "id": "vp_hdstowboard_vertical_right", - "fg": [ 7376, 7374, 7373, 7375 ], + "fg": [ 7467, 7465, 7464, 7466 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7376, 7374, 7373, 7375 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7467, 7465, 7464, 7466 ] } ] }, { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ], - "fg": 7354, + "fg": 7445, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7354 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7445 } ] }, { "id": "vp_hdstowboard_horizontal_front", - "fg": [ 7354, 7357, 7356, 7355 ], + "fg": [ 7445, 7448, 7447, 7446 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7354, 7357, 7356, 7355 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7445, 7448, 7447, 7446 ] } ] }, { "id": "vp_hdstowboard_horizontal_rear", - "fg": [ 7358, 7355, 7354, 7357 ], + "fg": [ 7449, 7446, 7445, 7448 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7358, 7355, 7354, 7357 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7449, 7446, 7445, 7448 ] } ] }, { "id": "vp_hdstowboard_vertical", - "fg": 7374, + "fg": 7465, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7374 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7465 } ] }, { "id": "vp_woodboard_ne", - "fg": [ 7381, 7382, 7387, 7388 ], + "fg": [ 7472, 7473, 7478, 7479 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7381, 7382, 7387, 7388 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7472, 7473, 7478, 7479 ] } ] }, { "id": "vp_woodboard_nw", - "fg": [ 7383, 7384, 7385, 7386 ], + "fg": [ 7474, 7475, 7476, 7477 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7383, 7384, 7385, 7386 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7474, 7475, 7476, 7477 ] } ] }, { "id": "vp_woodboard_se", - "fg": [ 7385, 7386, 7383, 7384 ], + "fg": [ 7476, 7477, 7474, 7475 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7385, 7386, 7383, 7384 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7476, 7477, 7474, 7475 ] } ] }, { "id": "vp_woodboard_sw", - "fg": [ 7387, 7388, 7381, 7382 ], + "fg": [ 7478, 7479, 7472, 7473 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7387, 7388, 7381, 7382 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7478, 7479, 7472, 7473 ] } ] }, { "id": "vp_woodboard_vertical_left", - "fg": [ 7389, 7379, 7390, 7377 ], + "fg": [ 7480, 7470, 7481, 7468 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7389, 7379, 7390, 7377 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7480, 7470, 7481, 7468 ] } ] }, { "id": "vp_woodboard_vertical_right", - "fg": [ 7390, 7377, 7389, 7379 ], + "fg": [ 7481, 7468, 7480, 7470 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7390, 7377, 7389, 7379 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7481, 7468, 7480, 7470 ] } ] }, { "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ], - "fg": [ 7377, 7378, 7379, 7380 ], + "fg": [ 7468, 7469, 7470, 7471 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7377, 7378, 7379, 7380 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7468, 7469, 7470, 7471 ] } ] }, { "id": "vp_woodboard_horizontal_rear", - "fg": [ 7379, 7380, 7377, 7378 ], + "fg": [ 7470, 7471, 7468, 7469 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7379, 7380, 7377, 7378 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7470, 7471, 7468, 7469 ] } ] }, { "id": [ "vp_woodhalfboard_ne" ], - "fg": 7395, + "fg": 7486, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7395 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7486 } ] }, { "id": "vp_woodhalfboard_nw", - "fg": 7394, + "fg": 7485, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7394 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7485 } ] }, { "id": "vp_woodhalfboard_se", - "fg": 7399, + "fg": 7490, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7399 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7490 } ] }, { "id": "vp_woodhalfboard_sw", - "fg": 7398, + "fg": 7489, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7398 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7489 } ] }, { "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ], - "fg": 7396, + "fg": 7487, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7396 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7487 } ] }, { "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ], - "fg": 7400, + "fg": 7491, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7400 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7491 } ] }, { "id": [ @@ -11168,943 +11390,943 @@ "vp_woodhalfboard_horizontal_front", "vp_woodhalfboard_horizontal_2_front" ], - "fg": 7393, + "fg": 7484, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7393 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7484 } ] }, { "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ], - "fg": 7397, + "fg": 7488, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7397 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7488 } ] }, { "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ], - "fg": 7392, + "fg": 7483, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7392 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7483 } ] }, { "id": [ "vp_woodhalfboard_cover" ], - "fg": 7391, + "fg": 7482, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7391 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7482 } ] }, { "id": [ "vp_basketsm", "vp_basketsm_external" ], - "fg": [ 7412, 7411 ], + "fg": [ 7503, 7502 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7412, 7411 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7503, 7502 ] } ] }, { "id": "vp_basketsm_bike_rear", - "fg": [ 7408, 7410, 7409, 7407 ], + "fg": [ 7499, 7501, 7500, 7498 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7408, 7410, 7409, 7407 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7499, 7501, 7500, 7498 ] } ] }, { "id": [ "vp_basketlg", "vp_basketlg_external" ], - "fg": [ 7406, 7405 ], + "fg": [ 7497, 7496 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7406, 7405 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7497, 7496 ] } ] }, { "id": "vp_basketlg_cart", - "fg": [ 7402, 7404, 7403, 7401 ], + "fg": [ 7493, 7495, 7494, 7492 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7402, 7404, 7403, 7401 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7493, 7495, 7494, 7492 ] } ] }, { "id": "vp_box", - "fg": [ 7413, 7414 ], + "fg": [ 7504, 7505 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7413, 7414 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7504, 7505 ] } ] }, { "id": "vp_wood box", - "fg": [ 7423, 7422 ], + "fg": [ 7514, 7513 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7423, 7422 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7514, 7513 ] } ] }, { "id": "vp_box_wheelbarrow", - "fg": [ 7416, 7418, 7417, 7415 ], + "fg": [ 7507, 7509, 7508, 7506 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7416, 7418, 7417, 7415 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7507, 7509, 7508, 7506 ] } ] }, { "id": "vp_trunk", - "fg": 7420, + "fg": 7511, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7420 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7511 } ] }, { "id": "vp_trunk_rear_edge", - "fg": 7421, + "fg": 7512, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7421 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7512 } ] }, { "id": [ "vp_cargo_space", "animal_compartment" ], - "fg": 7419, + "fg": 7510, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7419 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7510 } ] }, { "id": [ "vp_hddoor_trunk", "vp_hdhatch", "vp_hdhatch_opaque" ], - "fg": [ 7447, 7453, 7452, 7451 ], + "fg": [ 7538, 7544, 7543, 7542 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7448, 7450, 7448, 7449 ] }, { "id": "broken", "fg": 7427, "bg": [ 7448, 7450, 7448, 7449 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7539, 7541, 7539, 7540 ] }, { "id": "broken", "fg": 7518, "bg": [ 7539, 7541, 7539, 7540 ] } ] }, { "id": [ "vp_hddoor", "vp_hddoor_front" ], - "fg": [ 7435, 7436, 7435, 7434 ], + "fg": [ 7526, 7527, 7526, 7525 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7429, 7430, 7429, 7428 ] }, { "id": "broken", "fg": 7427, "bg": [ 7429, 7430, 7429, 7428 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7520, 7521, 7520, 7519 ] }, { "id": "broken", "fg": 7518, "bg": [ 7520, 7521, 7520, 7519 ] } ] }, { "id": "vp_hddoor_rear", - "fg": [ 7444, 7446, 7445, 7443 ], + "fg": [ 7535, 7537, 7536, 7534 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7432, 7433, 7432, 7431 ] }, { "id": "broken", "fg": 7427, "bg": [ 7432, 7433, 7432, 7431 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7523, 7524, 7523, 7522 ] }, { "id": "broken", "fg": 7518, "bg": [ 7523, 7524, 7523, 7522 ] } ] }, { "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ], - "fg": [ 7438, 7439, 7438, 7437 ], + "fg": [ 7529, 7530, 7529, 7528 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7429, 7430, 7429, 7428 ] }, { "id": "broken", "fg": 7427, "bg": [ 7429, 7430, 7429, 7428 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7520, 7521, 7520, 7519 ] }, { "id": "broken", "fg": 7518, "bg": [ 7520, 7521, 7520, 7519 ] } ] }, { "id": "vp_hddoor_opaque_rear", - "fg": [ 7441, 7442, 7441, 7440 ], + "fg": [ 7532, 7533, 7532, 7531 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7432, 7433, 7432, 7431 ] }, { "id": "broken", "fg": 7427, "bg": [ 7432, 7433, 7432, 7431 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7523, 7524, 7523, 7522 ] }, { "id": "broken", "fg": 7518, "bg": [ 7523, 7524, 7523, 7522 ] } ] }, { "id": "vp_ram_spiked", - "fg": 7455, + "fg": 7546, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7455 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7546 } ] }, { "id": "vp_ram_steel", - "fg": 7456, + "fg": 7547, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7455 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7546 } ] }, { "id": "vp_spike", - "fg": 7457, + "fg": 7548, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7457 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7548 } ] }, { "id": "vp_frame_cover", - "fg": 7459, + "fg": 7550, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7459 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7550 } ] }, { "id": "vp_frame_cross", - "fg": 7460, + "fg": 7551, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7460 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7551 } ] }, { "id": "vp_frame_cross_unconnected", - "fg": 7461, + "fg": 7552, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7461 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7552 } ] }, { "id": "vp_frame_ne", - "fg": 7474, + "fg": 7565, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7474 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7565 } ] }, { "id": "vp_frame_nw", - "fg": 7475, + "fg": 7566, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7475 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7566 } ] }, { "id": "vp_frame_se", - "fg": 7476, + "fg": 7567, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7476 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7567 } ] }, { "id": "vp_frame_sw", - "fg": 7477, + "fg": 7568, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7477 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7568 } ] }, { "id": "vp_frame_vertical_unconnected", - "fg": 7485, + "fg": 7576, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7485 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7576 } ] }, { "id": "vp_frame_vertical_2_unconnected", - "fg": 7482, + "fg": 7573, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7482 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7573 } ] }, { "id": "vp_frame_vertical_left", - "fg": 7483, + "fg": 7574, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7483 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7574 } ] }, { "id": "vp_frame_vertical_2_left", - "fg": 7480, + "fg": 7571, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7480 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7571 } ] }, { "id": "vp_frame_vertical_right", - "fg": 7484, + "fg": 7575, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7484 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7575 } ] }, { "id": "vp_frame_vertical_2_right", - "fg": 7481, + "fg": 7572, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7481 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7572 } ] }, { "id": "vp_frame_horizontal", - "fg": 7462, + "fg": 7553, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7462 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7553 } ] }, { "id": "vp_frame_horizontal_2", - "fg": 7463, + "fg": 7554, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7463 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7554 } ] }, { "id": "vp_frame_horizontal_unconnected", - "fg": 7473, + "fg": 7564, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7473 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7564 } ] }, { "id": "vp_frame_horizontal_2_unconnected", - "fg": 7466, + "fg": 7557, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7466 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7557 } ] }, { "id": "vp_frame_horizontal_front", - "fg": 7469, + "fg": 7560, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7469 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7560 } ] }, { "id": "vp_frame_horizontal_2_front", - "fg": 7464, + "fg": 7555, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7464 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7555 } ] }, { "id": "vp_frame_horizontal_rear", - "fg": 7471, + "fg": 7562, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7471 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7562 } ] }, { "id": "vp_frame_horizontal_2_rear", - "fg": 7465, + "fg": 7556, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7465 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7556 } ] }, { "id": [ "vp_frame_horizontal_left", "vp_frame_vertical_T_left" ], - "fg": 7470, + "fg": 7561, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7470 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7561 } ] }, { "id": "vp_frame_horizontal_2_left", - "fg": 7467, + "fg": 7558, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7467 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7558 } ] }, { "id": [ "vp_frame_horizontal_right", "vp_frame_vertical_T_right" ], - "fg": 7472, + "fg": 7563, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7472 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7563 } ] }, { "id": "vp_frame_horizontal_2_right", - "fg": 7468, + "fg": 7559, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7468 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7559 } ] }, { "id": "vp_frame_vertical", - "fg": 7478, + "fg": 7569, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7478 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7569 } ] }, { "id": "vp_frame_vertical_2", - "fg": 7479, + "fg": 7570, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7479 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7570 } ] }, { "id": "vp_hdframe_cover", - "fg": 7486, + "fg": 7577, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7486 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7577 } ] }, { "id": "vp_hdframe_cross", - "fg": 7487, + "fg": 7578, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7487 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7578 } ] }, { "id": "vp_hdframe_cross_unconnected", - "fg": 7488, + "fg": 7579, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7488 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7579 } ] }, { "id": "vp_hdframe_ne", - "fg": 7501, + "fg": 7592, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7501 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7592 } ] }, { "id": "vp_hdframe_nw", - "fg": 7502, + "fg": 7593, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7502 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7593 } ] }, { "id": "vp_hdframe_se", - "fg": 7503, + "fg": 7594, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7503 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7594 } ] }, { "id": "vp_hdframe_sw", - "fg": 7504, + "fg": 7595, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7504 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7595 } ] }, { "id": "vp_hdframe_vertical_unconnected", - "fg": 7512, + "fg": 7603, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7512 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7603 } ] }, { "id": "vp_hdframe_vertical_2_unconnected", - "fg": 7509, + "fg": 7600, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7509 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7600 } ] }, { "id": "vp_hdframe_vertical_left", - "fg": 7510, + "fg": 7601, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7510 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7601 } ] }, { "id": "vp_hdframe_vertical_2_left", - "fg": 7507, + "fg": 7598, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7507 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7598 } ] }, { "id": "vp_hdframe_vertical_right", - "fg": 7511, + "fg": 7602, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7511 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7602 } ] }, { "id": "vp_hdframe_vertical_2_right", - "fg": 7508, + "fg": 7599, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7508 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7599 } ] }, { "id": "vp_hdframe_horizontal", - "fg": 7489, + "fg": 7580, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7489 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7580 } ] }, { "id": "vp_hdframe_horizontal_2", - "fg": 7490, + "fg": 7581, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7490 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7581 } ] }, { "id": "vp_hdframe_horizontal_unconnected", - "fg": 7500, + "fg": 7591, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7500 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7591 } ] }, { "id": "vp_hdframe_horizontal_2_unconnected", - "fg": 7493, + "fg": 7584, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7493 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7584 } ] }, { "id": "vp_hdframe_horizontal_front", - "fg": 7496, + "fg": 7587, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7496 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7587 } ] }, { "id": "vp_hdframe_horizontal_2_front", - "fg": 7491, + "fg": 7582, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7491 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7582 } ] }, { "id": "vp_hdframe_horizontal_rear", - "fg": 7498, + "fg": 7589, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7498 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7589 } ] }, { "id": "vp_hdframe_horizontal_2_rear", - "fg": 7492, + "fg": 7583, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7492 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7583 } ] }, { "id": [ "vp_hdframe_horizontal_left", "vp_hdframe_vertical_T_left" ], - "fg": 7497, + "fg": 7588, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7497 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7588 } ] }, { "id": "vp_hdframe_horizontal_2_left", - "fg": 7494, + "fg": 7585, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7494 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7585 } ] }, { "id": [ "vp_hdframe_horizontal_right", "vp_hdframe_vertical_T_right" ], - "fg": 7499, + "fg": 7590, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7499 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7590 } ] }, { "id": "vp_hdframe_horizontal_2_right", - "fg": 7495, + "fg": 7586, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7495 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7586 } ] }, { "id": "vp_hdframe_vertical", - "fg": 7505, + "fg": 7596, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7505 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7596 } ] }, { "id": "vp_hdframe_vertical_2", - "fg": 7506, + "fg": 7597, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7506 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7597 } ] }, { "id": "vp_xlframe_cover", - "fg": 7513, + "fg": 7604, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7513 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7604 } ] }, { "id": "vp_xlframe_cross", - "fg": 7514, + "fg": 7605, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7514 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7605 } ] }, { "id": "vp_xlframe_cross_unconnected", - "fg": 7515, + "fg": 7606, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7515 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7606 } ] }, { "id": "vp_xlframe_ne", - "fg": 7528, + "fg": 7619, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7528 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7619 } ] }, { "id": "vp_xlframe_nw", - "fg": 7529, + "fg": 7620, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7529 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7620 } ] }, { "id": "vp_xlframe_se", - "fg": 7530, + "fg": 7621, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7530 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7621 } ] }, { "id": "vp_xlframe_sw", - "fg": 7531, + "fg": 7622, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7531 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7622 } ] }, { "id": "vp_xlframe_vertical_unconnected", - "fg": 7539, + "fg": 7630, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7539 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7630 } ] }, { "id": "vp_xlframe_vertical_2_unconnected", - "fg": 7536, + "fg": 7627, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7536 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7627 } ] }, { "id": "vp_xlframe_vertical_left", - "fg": 7537, + "fg": 7628, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7537 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7628 } ] }, { "id": "vp_xlframe_vertical_2_left", - "fg": 7534, + "fg": 7625, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7534 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7625 } ] }, { "id": "vp_xlframe_vertical_right", - "fg": 7538, + "fg": 7629, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7538 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7629 } ] }, { "id": "vp_xlframe_vertical_2_right", - "fg": 7535, + "fg": 7626, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7535 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7626 } ] }, { "id": "vp_xlframe_horizontal", - "fg": 7516, + "fg": 7607, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7516 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7607 } ] }, { "id": "vp_xlframe_horizontal_2", - "fg": 7517, + "fg": 7608, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7517 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7608 } ] }, { "id": "vp_xlframe_horizontal_unconnected", - "fg": 7527, + "fg": 7618, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7527 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7618 } ] }, { "id": "vp_xlframe_horizontal_2_unconnected", - "fg": 7520, + "fg": 7611, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7520 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7611 } ] }, { "id": "vp_xlframe_horizontal_front", - "fg": 7523, + "fg": 7614, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7523 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7614 } ] }, { "id": "vp_xlframe_horizontal_2_front", - "fg": 7518, + "fg": 7609, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7518 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7609 } ] }, { "id": "vp_xlframe_horizontal_rear", - "fg": 7525, + "fg": 7616, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7525 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7616 } ] }, { "id": "vp_xlframe_horizontal_2_rear", - "fg": 7519, + "fg": 7610, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7519 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7610 } ] }, { "id": [ "vp_xlframe_horizontal_left", "vp_xlframe_vertical_T_left" ], - "fg": 7524, + "fg": 7615, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7524 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7615 } ] }, { "id": "vp_xlframe_horizontal_2_left", - "fg": 7521, + "fg": 7612, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7521 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7612 } ] }, { "id": [ "vp_xlframe_horizontal_right", "vp_xlframe_vertical_T_right" ], - "fg": 7526, + "fg": 7617, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7526 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7617 } ] }, { "id": "vp_xlframe_horizontal_2_right", - "fg": 7522, + "fg": 7613, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7522 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7613 } ] }, { "id": "vp_xlframe_vertical", - "fg": 7532, + "fg": 7623, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7532 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7623 } ] }, { "id": "vp_xlframe_vertical_2", - "fg": 7533, + "fg": 7624, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7533 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7624 } ] }, { "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ], - "fg": 7541 + "fg": 7632 }, { "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ], - "fg": 7540 + "fg": 7631 }, { "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ], - "fg": 7541 + "fg": 7632 }, { "id": "vp_light_blue", - "fg": [ 7555, 7556 ], + "fg": [ 7646, 7647 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7555, 7556 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7646, 7647 ] } ] }, { "id": "vp_light_red", - "fg": [ 7557, 7558 ], + "fg": [ 7648, 7649 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7557, 7558 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7648, 7649 ] } ] }, { "id": [ "vp_floodlight", "vp_directed_floodlight" ], - "fg": [ 7549, 7551, 7550, 7548 ], + "fg": [ 7640, 7642, 7641, 7639 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7549, 7551, 7550, 7548 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7640, 7642, 7641, 7639 ] } ] }, { "id": "vp_omnicam", - "fg": 7564, + "fg": 7655, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7564 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7655 } ] }, { "id": [ "vp_veh_table", "vp_veh_table_wood" ], - "fg": [ 7542, 7542 ], - "bg": [ 7570, 7569 ], + "fg": [ 7633, 7633 ], + "bg": [ 7661, 7660 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7543, "bg": [ 7570, 7569 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7634, "bg": [ 7661, 7660 ] } ] }, { "id": "vp_workbench", - "fg": [ 7571, 7571 ], - "bg": 5256, + "fg": [ 7662, 7662 ], + "bg": 5321, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7571, 7571 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7662, 7662 ] } ] }, { "id": "vp_minifridge", - "fg": [ 7562, 7562 ], + "fg": [ 7653, 7653 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7562, 7562 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7653, 7653 ] } ] }, { "id": "vp_minifreezer", - "fg": [ 7561, 7561 ], + "fg": [ 7652, 7652 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7561, 7561 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7652, 7652 ] } ] }, { "id": "vp_kitchen_unit", - "fg": [ 7554, 7554 ], + "fg": [ 7645, 7645 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7554, 7554 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7645, 7645 ] } ] }, { "id": "vp_welding_rig", - "fg": [ 7568, 7568 ], + "fg": [ 7659, 7659 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7568, 7568 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7659, 7659 ] } ] }, { "id": "vp_craft_rig", - "fg": [ 7547, 7547 ], + "fg": [ 7638, 7638 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7547, 7547 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7638, 7638 ] } ] }, { "id": "vp_washing_machine", - "fg": [ 7567, 7567 ], + "fg": [ 7658, 7658 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7567, 7567 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7658, 7658 ] } ] }, { "id": "vp_veh_forge", - "fg": [ 7552, 7552 ], + "fg": [ 7643, 7643 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7552, 7552 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7643, 7643 ] } ] }, { "id": "vp_veh_kiln", - "fg": [ 7553, 7553 ], + "fg": [ 7644, 7644 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7553, 7553 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7644, 7644 ] } ] }, { "id": "vp_chemlab", - "fg": [ 7546, 7546 ], + "fg": [ 7637, 7637 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7546, 7546 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7637, 7637 ] } ] }, { "id": "vp_aisle_vertical", - "fg": 7545, + "fg": 7636, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7545 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7636 } ] }, { "id": "vp_aisle_horizontal", - "fg": 7544, + "fg": 7635, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7544 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7635 } ] }, - { "id": "vp_trunk_floor", "fg": 7565, "bg": 7545 }, + { "id": "vp_trunk_floor", "fg": 7656, "bg": 7636 }, { "id": "vp_wooden_aisle_vertical", - "fg": [ 7570, 7569 ], + "fg": [ 7661, 7660 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7570, 7569 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7661, 7660 ] } ] }, { "id": "vp_wooden_aisle_horizontal", - "fg": [ 7569, 7570 ], + "fg": [ 7660, 7661 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7569, 7570 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7660, 7661 ] } ] }, { "id": "vp_lit_aisle_vertical", - "fg": 7560, + "fg": 7651, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7560 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7651 } ] }, { "id": "vp_lit_aisle_horizontal", - "fg": 7559, + "fg": 7650, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7559 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7650 } ] }, { "id": "vp_mounted_spare_tire", - "fg": 7563, + "fg": 7654, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7563 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7654 } ] }, { "id": [ "vp_saddle", "vp_saddle_pedal" ], - "fg": [ 7573, 7575, 7574, 7572 ], + "fg": [ 7664, 7666, 7665, 7663 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7573, 7575, 7574, 7572 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7664, 7666, 7665, 7663 ] } ] }, { "id": [ "vp_seat_wood", "seat_wood_bench" ], - "fg": [ 7580, 7580, 7581, 7581 ], - "bg": [ 7570, 7569 ], + "fg": [ 7671, 7671, 7672, 7672 ], + "bg": [ 7661, 7660 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7580, 7580, 7581, 7581 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7671, 7671, 7672, 7672 ] } ] }, { "id": "vp_seat_wood_flimsy", - "fg": [ 7578, 7578, 7579, 7579 ], - "bg": [ 7570, 7569 ], + "fg": [ 7669, 7669, 7670, 7670 ], + "bg": [ 7661, 7660 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7578, 7578, 7579, 7579 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7669, 7669, 7670, 7670 ] } ] }, { "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ], - "fg": [ 7613, 7611, 7606, 7612 ], + "fg": [ 7704, 7702, 7697, 7703 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7613, 7611, 7606, 7612 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7704, 7702, 7697, 7703 ] } ] }, { "id": "vp_seat_back", - "fg": [ 7582, 7605, 7604, 7603 ], + "fg": [ 7673, 7696, 7695, 7694 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7582, 7605, 7604, 7603 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7673, 7696, 7695, 7694 ] } ] }, { "id": "vp_seat_back_left", - "fg": [ 7595, 7598, 7597, 7596 ], + "fg": [ 7686, 7689, 7688, 7687 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7595, 7598, 7597, 7596 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7686, 7689, 7688, 7687 ] } ] }, { "id": "vp_seat_back_right", - "fg": [ 7599, 7602, 7601, 7600 ], + "fg": [ 7690, 7693, 7692, 7691 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7599, 7602, 7601, 7600 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7690, 7693, 7692, 7691 ] } ] }, { "id": "vp_seat_back_vertical", - "fg": [ 7603, 7582, 7605, 7604 ], + "fg": [ 7694, 7673, 7696, 7695 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7603, 7582, 7605, 7604 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7694, 7673, 7696, 7695 ] } ] }, { "id": "vp_seat_back_vertical_left", - "fg": [ 7596, 7595, 7598, 7597 ], + "fg": [ 7687, 7686, 7689, 7688 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7596, 7595, 7598, 7597 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7687, 7686, 7689, 7688 ] } ] }, { "id": "vp_seat_back_vertical_right", - "fg": [ 7600, 7599, 7602, 7601 ], + "fg": [ 7691, 7690, 7693, 7692 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7600, 7599, 7602, 7601 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7691, 7690, 7693, 7692 ] } ] }, { "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ], - "fg": [ 7610, 7608, 7607, 7609 ], + "fg": [ 7701, 7699, 7698, 7700 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7610, 7608, 7607, 7609 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7701, 7699, 7698, 7700 ] } ] }, { "id": "vp_seat_back_leather", - "fg": [ 7583, 7594, 7593, 7592 ], + "fg": [ 7674, 7685, 7684, 7683 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7583, 7594, 7593, 7592 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7674, 7685, 7684, 7683 ] } ] }, { "id": "vp_seat_back_leather_left", - "fg": [ 7584, 7587, 7586, 7585 ], + "fg": [ 7675, 7678, 7677, 7676 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7584, 7587, 7586, 7585 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7675, 7678, 7677, 7676 ] } ] }, { "id": "vp_seat_back_leather_right", - "fg": [ 7588, 7591, 7590, 7589 ], + "fg": [ 7679, 7682, 7681, 7680 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7588, 7591, 7590, 7589 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7679, 7682, 7681, 7680 ] } ] }, { "id": "vp_seat_back_leather_vertical", - "fg": [ 7592, 7583, 7594, 7593 ], + "fg": [ 7683, 7674, 7685, 7684 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7592, 7583, 7594, 7593 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7683, 7674, 7685, 7684 ] } ] }, { "id": "vp_seat_back_leather_vertical_left", - "fg": [ 7585, 7584, 7587, 7586 ], + "fg": [ 7676, 7675, 7678, 7677 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7585, 7584, 7587, 7586 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7676, 7675, 7678, 7677 ] } ] }, { "id": "vp_seat_back_leather_vertical_right", - "fg": [ 7589, 7588, 7591, 7590 ], + "fg": [ 7680, 7679, 7682, 7681 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7589, 7588, 7591, 7590 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7680, 7679, 7682, 7681 ] } ] }, { "id": "vp_seat_rear", - "fg": [ 7606, 7612, 7613, 7611 ], + "fg": [ 7697, 7703, 7704, 7702 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7606, 7612, 7613, 7611 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7697, 7703, 7704, 7702 ] } ] }, { "id": "vp_seat_leather_rear", - "fg": [ 7607, 7609, 7610, 7608 ], + "fg": [ 7698, 7700, 7701, 7699 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7607, 7609, 7610, 7608 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7698, 7700, 7701, 7699 ] } ] }, { "id": [ "vp_seed_drill" ], - "fg": [ 7615, 7617, 7616, 7614 ], + "fg": [ 7706, 7708, 7707, 7705 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8287, "bg": [ 7615, 7617, 7616, 7614 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8398, "bg": [ 7706, 7708, 7707, 7705 ] } ] }, { "id": "vp_solar_panel", - "fg": 7618, + "fg": 7709, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7618 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7709 } ] }, { "id": "vp_reinforced_solar_panel", - "fg": 7621, - "bg": 7618, + "fg": 7712, + "bg": 7709, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7618 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7709 } ] }, { "id": "vp_solar_panel_v2", - "fg": 7619, + "fg": 7710, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7619 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7710 } ] }, { "id": "vp_reinforced_solar_panel_v2", - "fg": 7621, - "bg": 7619, + "fg": 7712, + "bg": 7710, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7619 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7710 } ] }, { "id": "vp_solar_panel_v3", - "fg": 7620, + "fg": 7711, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7620 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7711 } ] }, { "id": "vp_afs_roof_external_tank", - "fg": [ 7623, 7622 ], + "fg": [ 7714, 7713 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7623, 7622 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7714, 7713 ] } ] }, { "id": "vp_external_tank", - "fg": [ 7624, 7625, 7626, 7627 ], + "fg": [ 7715, 7716, 7717, 7718 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7624, 7625, 7626, 7627 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7715, 7716, 7717, 7718 ] } ] }, { "id": "vp_tank_55gal_drum", - "fg": [ 7629, 7628 ], + "fg": [ 7720, 7719 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7629, 7628 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7720, 7719 ] } ] }, { "id": [ @@ -12121,80 +12343,80 @@ "vp_mounted_m60_semi" ], "//": "rifles and machineguns", - "fg": 7632, - "bg": 7630, + "fg": 7723, + "bg": 7721, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7632 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] }, { "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ], "//": "energy weapons", - "fg": 7631, - "bg": 7630, + "fg": 7722, + "bg": 7721, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7631 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7722 } ] }, { "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ], "//": "railguns", - "fg": 7633, - "bg": 7630, + "fg": 7724, + "bg": 7721, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7633 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7724 } ] }, { "id": [ "vp_mounted_bigun", "vp_mounted_m134" ], "//": "multibarrel weapons", - "fg": 7632, - "bg": 7630, + "fg": 7723, + "bg": 7721, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7632 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] }, { "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ], "//": "liquid sprayers", - "fg": 7632, - "bg": 7630, + "fg": 7723, + "bg": 7721, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7632 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] }, { "id": "vp_tow_launcher", "//": "rocket tubes", - "fg": 7632, - "bg": 7630, + "fg": 7723, + "bg": 7721, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7632 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] }, { "id": "vp_animal_compartment", - "fg": [ 7634, 7634, 7634, 7634 ], + "fg": [ 7725, 7725, 7725, 7725 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7634, 7634, 7634, 7634 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7725, 7725, 7725, 7725 ] } ] }, { "id": "vp_basketsm_wheelchair", - "fg": [ 7636, 7638, 7637, 7635 ], + "fg": [ 7727, 7729, 7728, 7726 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7636, 7638, 7637, 7635 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7727, 7729, 7728, 7726 ] } ] }, { "id": [ "vp_wheel", "vp_wheel_steerable" ], - "fg": 7639, + "fg": 7730, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7639 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7730 } ] }, { "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable", "vp_wheel_bicycle_or", "vp_wheel_bicycle_or_steerable" ], - "fg": [ 7641, 7643, 7642, 7640 ], + "fg": [ 7732, 7734, 7733, 7731 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7641, 7643, 7642, 7640 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7732, 7734, 7733, 7731 ] } ] }, { "id": [ "vp_wheel_bicycle_rear", "vp_wheel_bicycle_or_rear" ], - "fg": [ 7642, 7640, 7641, 7643 ], + "fg": [ 7733, 7731, 7732, 7734 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 7642, 7640, 7641, 7643 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7733, 7731, 7732, 7734 ] } ] }, { "id": [ @@ -12203,374 +12425,384 @@ "vp_reinforced_windshield_horizontal_front", "vp_reinforced_windshield_front_edge" ], - "fg": [ 7644, 7647, 7646, 7645 ], + "fg": [ 7735, 7738, 7737, 7736 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7644, 7647, 7646, 7645 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7735, 7738, 7737, 7736 ] } ] }, { "id": "vp_reinforced_windshield_horizontal_rear", - "fg": 7648, + "fg": 7739, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7648 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7739 } ] }, { "id": "vp_reinforced_windshield_horizontal_rear_edge", - "fg": 7649, + "fg": 7740, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7649 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7740 } ] }, { "id": "vp_reinforced_windshield_nw", - "fg": [ 7654, 7657, 7656, 7655 ], + "fg": [ 7745, 7748, 7747, 7746 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7654, 7657, 7656, 7655 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7745, 7748, 7747, 7746 ] } ] }, { "id": "vp_reinforced_windshield_ne", - "fg": [ 7650, 7653, 7652, 7651 ], + "fg": [ 7741, 7744, 7743, 7742 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7650, 7653, 7652, 7651 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7741, 7744, 7743, 7742 ] } ] }, { "id": "vp_reinforced_windshield_sw", - "fg": 7663, + "fg": 7754, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7663 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7754 } ] }, { "id": "vp_reinforced_windshield_se", - "fg": 7658, + "fg": 7749, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": 7658 } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7749 } ] }, { "id": "vp_reinforced_windshield_sw_edge", - "fg": [ 7664, 7667, 7666, 7665 ], + "fg": [ 7755, 7758, 7757, 7756 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7664, 7667, 7666, 7665 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7755, 7758, 7757, 7756 ] } ] }, { "id": "vp_reinforced_windshield_se_edge", - "fg": [ 7659, 7662, 7661, 7660 ], + "fg": [ 7750, 7753, 7752, 7751 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7659, 7662, 7661, 7660 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7750, 7753, 7752, 7751 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ], - "fg": [ 7668, 7671, 7670, 7669 ], + "fg": [ 7759, 7762, 7761, 7760 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7668, 7671, 7670, 7669 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7759, 7762, 7761, 7760 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ], - "fg": [ 7672, 7675, 7674, 7673 ], + "fg": [ 7763, 7766, 7765, 7764 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7672, 7675, 7674, 7673 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7763, 7766, 7765, 7764 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ], - "fg": [ 7668, 7671, 7670, 7669 ], + "fg": [ 7759, 7762, 7761, 7760 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7668, 7671, 7670, 7669 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7759, 7762, 7761, 7760 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ], - "fg": [ 7672, 7675, 7674, 7673 ], + "fg": [ 7763, 7766, 7765, 7764 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7424, "bg": [ 7672, 7675, 7674, 7673 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7763, 7766, 7765, 7764 ] } ] }, { "id": "vp_frame_wood_vertical_2", - "fg": 7696, + "fg": 7787, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7696 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7787 } ] }, { "id": "vp_frame_wood_vertical_2_unconnected", - "fg": 7699, + "fg": 7790, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7699 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7790 } ] }, { "id": "vp_frame_wood_vertical_2_right", - "fg": 7698, + "fg": 7789, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7698 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7789 } ] }, { "id": "vp_frame_wood_vertical_2_left", - "fg": 7697, + "fg": 7788, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7697 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7788 } ] }, { "id": "vp_frame_wood_vertical", - "fg": 7695, + "fg": 7786, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7695 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7786 } ] }, { "id": "vp_frame_wood_vertical_unconnected", - "fg": 7702, + "fg": 7793, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7702 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7793 } ] }, { "id": "vp_frame_wood_vertical_right", - "fg": 7701, + "fg": 7792, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7701 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7792 } ] }, { "id": "vp_frame_wood_vertical_left", - "fg": 7700, + "fg": 7791, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7700 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7791 } ] }, { "id": "vp_frame_wood_sw", - "fg": 7694, + "fg": 7785, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7694 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7785 } ] }, { "id": "vp_frame_wood_se", - "fg": 7693, + "fg": 7784, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7693 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7784 } ] }, { "id": "vp_frame_wood_nw", - "fg": 7692, + "fg": 7783, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7692 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7783 } ] }, { "id": "vp_frame_wood_ne", - "fg": 7691, + "fg": 7782, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7691 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7782 } ] }, { "id": "vp_frame_wood_horizontal_2", - "fg": 7680, + "fg": 7771, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7680 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7771 } ] }, { "id": "vp_frame_wood_horizontal_2_unconnected", - "fg": 7685, + "fg": 7776, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7685 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7776 } ] }, { "id": "vp_frame_wood_horizontal_2_right", - "fg": 7684, + "fg": 7775, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7684 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7775 } ] }, { "id": "vp_frame_wood_horizontal_2_rear", - "fg": 7683, + "fg": 7774, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7683 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7774 } ] }, { "id": "vp_frame_wood_horizontal_2_left", - "fg": 7682, + "fg": 7773, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7682 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7773 } ] }, { "id": "vp_frame_wood_horizontal_2_front", - "fg": 7681, + "fg": 7772, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7681 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7772 } ] }, { "id": "vp_frame_wood_horizontal", - "fg": 7679, + "fg": 7770, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7679 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7770 } ] }, { "id": "vp_frame_wood_horizontal_unconnected", - "fg": 7690, + "fg": 7781, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7690 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7781 } ] }, { "id": "vp_frame_wood_horizontal_right", - "fg": 7689, + "fg": 7780, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7689 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7780 } ] }, { "id": "vp_frame_wood_horizontal_rear", - "fg": 7688, + "fg": 7779, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7688 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7779 } ] }, { "id": "vp_frame_wood_horizontal_left", - "fg": 7687, + "fg": 7778, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7687 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7778 } ] }, { "id": "vp_frame_wood_horizontal_front", - "fg": 7686, + "fg": 7777, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7686 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7777 } ] }, { "id": "vp_frame_wood_cross", - "fg": 7677, + "fg": 7768, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7677 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7768 } ] }, { "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ], - "fg": 7678, + "fg": 7769, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7678 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7769 } ] }, { "id": "vp_frame_wood_cover", - "fg": 7676, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 7676 } ] - }, - { "id": "f_floor_mattress", "fg": 6956 }, - { "id": "f_fungal_mass", "fg": 6959 }, - { "id": "f_fungal_tangle", "fg": 6960 }, - { "id": "f_brazier", "fg": 6961 }, - { "id": "emer_blanket", "fg": 6991 }, - { "id": "emer_blanket_on", "fg": 6992 }, - { "id": "jacket_evac", "fg": 6993 }, - { "id": "f_autoclave", "fg": 6996 }, - { "id": "jeans_red", "fg": 7003 }, - { "id": "tights", "fg": 7004 }, - { "id": "blade", "fg": 7005 }, - { "id": "rm13_armor", "fg": 7006 }, - { "id": "55gal_drum", "fg": 7007 }, - { "id": "leather_funnel", "fg": 7032 }, - { "id": "tr_leather_funnel", "fg": 7034 }, - { "id": "brush", "fg": 7042 }, - { "id": "casserole", "fg": 7043 }, - { "id": "curling_iron", "fg": 7044 }, - { "id": "cutting_board", "fg": 7045 }, - { "id": "elec_hairtrimmer", "fg": 7046 }, - { "id": "hairbrush", "fg": 7047 }, - { "id": "metal_file", "fg": 7049 }, - { "id": "mobile_memory_card", "fg": 7050 }, - { "id": "plastic_straw", "fg": 7051 }, - { "id": "razor_blade", "fg": 7052 }, - { "id": "razor_shaving", "fg": 7053 }, - { "id": "string_floss", "fg": 7054 }, - { "id": "tumbler_plastic", "fg": 7056 }, - { "id": "xacto", "fg": 7057 }, - { "id": "f_rubble_landfill", "fg": 7155 }, - { "id": "t_roof_paper", "fg": 7204 }, - { "id": "crack_glass_left", "fg": 7425 }, - { "id": "vp_ram_mattress", "fg": 7454 }, - { "id": "vp_tearer", "fg": 7458 }, - { "id": "vp_vehicle_scoop", "fg": 7566 }, - { "id": "seat", "fg": 7576 }, - { "id": "seat_leather", "fg": 7577 } + "fg": 7767, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7767 } ] + }, + { "id": "f_floor_mattress", "fg": 7047 }, + { "id": "f_fungal_mass", "fg": 7050 }, + { "id": "f_fungal_tangle", "fg": 7051 }, + { "id": "f_brazier", "fg": 7052 }, + { "id": "emer_blanket", "fg": 7082 }, + { "id": "emer_blanket_on", "fg": 7083 }, + { "id": "jacket_evac", "fg": 7084 }, + { "id": "f_autoclave", "fg": 7087 }, + { "id": "jeans_red", "fg": 7094 }, + { "id": "tights", "fg": 7095 }, + { "id": "blade", "fg": 7096 }, + { "id": "rm13_armor", "fg": 7097 }, + { "id": "55gal_drum", "fg": 7098 }, + { "id": "leather_funnel", "fg": 7123 }, + { "id": "tr_leather_funnel", "fg": 7125 }, + { "id": "brush", "fg": 7133 }, + { "id": "casserole", "fg": 7134 }, + { "id": "curling_iron", "fg": 7135 }, + { "id": "cutting_board", "fg": 7136 }, + { "id": "elec_hairtrimmer", "fg": 7137 }, + { "id": "hairbrush", "fg": 7138 }, + { "id": "metal_file", "fg": 7140 }, + { "id": "mobile_memory_card", "fg": 7141 }, + { "id": "plastic_straw", "fg": 7142 }, + { "id": "razor_blade", "fg": 7143 }, + { "id": "razor_shaving", "fg": 7144 }, + { "id": "string_floss", "fg": 7145 }, + { "id": "tumbler_plastic", "fg": 7147 }, + { "id": "xacto", "fg": 7148 }, + { "id": "f_rubble_landfill", "fg": 7246 }, + { "id": "t_roof_paper", "fg": 7295 }, + { "id": "crack_glass_left", "fg": 7516 }, + { "id": "vp_ram_mattress", "fg": 7545 }, + { "id": "vp_tearer", "fg": 7549 }, + { "id": "vp_vehicle_scoop", "fg": 7657 }, + { "id": "seat", "fg": 7667 }, + { "id": "seat_leather", "fg": 7668 } ] }, { "file": "incomplete_large.png", - "//": "range 7712 to 7759", + "//": "range 7808 to 7855", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "mon_science_bot", "fg": 7715, "bg": 6704 }, + { "id": "mon_science_bot", "fg": 7811, "bg": 6784 }, { "id": "vp_halfboard_hatch_wheel_left", - "fg": [ 7718, 7721, 7720, 7719 ], + "fg": [ 7813, 7816, 7815, 7814 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7717, 7717, 7717, 7717 ], "bg": [ 7718, 7721, 7720, 7719 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7813, 7816, 7815, 7814 ] } ] }, { "id": "vp_halfboard_hatch_wheel_right", - "fg": [ 7722, 7725, 7724, 7723 ], + "fg": [ 7817, 7820, 7819, 7818 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7717, 7717, 7717, 7717 ], "bg": [ 7722, 7725, 7724, 7723 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7817, 7820, 7819, 7818 ] } ] }, { "id": "vp_halfboard_horizontal_2_rear", - "fg": [ 7726, 7729, 7728, 7727 ], + "fg": [ 7821, 7824, 7823, 7822 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7717, 7717, 7717, 7717 ], "bg": [ 7726, 7729, 7728, 7727 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7821, 7824, 7823, 7822 ] } ] }, { "id": "vp_hatch", - "fg": [ 7730, 7745, 7744, 7743 ], + "fg": [ 7825, 7840, 7839, 7838 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7739, 7742, 7741, 7740 ] }, - { "id": "broken", "fg": [ 7717, 7717, 7717, 7717 ], "bg": [ 7739, 7742, 7741, 7740 ] } + { "id": "open", "fg": [ 7834, 7837, 7836, 7835 ] }, + { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7834, 7837, 7836, 7835 ] } ] }, { "id": "vp_hatch_opaque", - "fg": [ 7731, 7738, 7737, 7736 ], + "fg": [ 7826, 7833, 7832, 7831 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7732, 7735, 7734, 7733 ] }, - { "id": "broken", "fg": [ 7717, 7717, 7717, 7717 ], "bg": [ 7732, 7735, 7734, 7733 ] } + { "id": "open", "fg": [ 7827, 7830, 7829, 7828 ] }, + { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7827, 7830, 7829, 7828 ] } ] }, { "id": "vp_door_trunk_hatch_wheel_left", - "fg": [ 7746, 7753, 7752, 7751 ], + "fg": [ 7841, 7848, 7847, 7846 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7747, 7750, 7749, 7748 ] }, - { "id": "broken", "fg": [ 7717, 7717, 7717, 7717 ], "bg": [ 7747, 7750, 7749, 7748 ] } + { "id": "open", "fg": [ 7842, 7845, 7844, 7843 ] }, + { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7842, 7845, 7844, 7843 ] } ] } ] }, { "file": "widemonsters.png", - "//": "range 7760 to 7871", + "//": "range 7856 to 7983", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, "sprite_offset_y": -16, "tiles": [ - { "id": "mon_zombie_phase_skulker", "fg": 7761, "bg": 7777 }, - { "id": "mon_zombie_phase_shrike", "fg": 7760, "bg": 7777 }, + { "id": "mon_zombie_phase_shrike", "fg": 7856, "bg": 7872 }, { "id": "mon_zombie_reenactor", - "fg": [ { "weight": 2, "sprite": 7773 }, { "weight": 2, "sprite": 7772 }, { "weight": 1, "sprite": 7774 } ], - "bg": 7777 - }, - { "id": "mon_zombie_prisoner_tough", "fg": 7771, "bg": 7777 }, - { "id": "mon_zombie_prisoner_fat", "fg": 7770, "bg": 7777 }, - { "id": "mon_zombie_prisoner_brute", "fg": 7769, "bg": 7777 }, - { "id": "mon_zombie_resort_bouncer", "fg": 7775, "bg": 7777 }, - { "id": "mon_dragonfly_mega", "fg": 7793, "bg": 7777 }, - { "id": "mon_flesh_golem", "fg": 7794, "bg": 7777 }, - { "id": "mon_fleshy_shambler", "fg": 7795, "bg": 7777 }, + "fg": [ { "weight": 2, "sprite": 7868 }, { "weight": 2, "sprite": 7867 }, { "weight": 1, "sprite": 7869 } ], + "bg": 7872 + }, + { "id": "mon_zombie_prisoner_tough", "fg": 7866, "bg": 7872 }, + { "id": "mon_zombie_prisoner_fat", "fg": 7865, "bg": 7872 }, + { "id": "mon_zombie_prisoner_brute", "fg": 7864, "bg": 7872 }, + { "id": "mon_zombie_resort_bouncer", "fg": 7870, "bg": 7872 }, + { "id": "mon_dragonfly_mega", "fg": 7888, "bg": 7872 }, + { "id": "mon_flesh_golem", "fg": 7889, "bg": 7872 }, + { "id": "mon_fleshy_shambler", "fg": 7890, "bg": 7872 }, + { "id": "mon_mannequin_decoy", "fg": 1293, "bg": 7872 }, { "id": "mon_hunting_horror", - "fg": [ { "weight": 1, "sprite": 7800 }, { "weight": 1, "sprite": 7801 }, { "weight": 1, "sprite": 7802 } ], - "bg": 7777 - }, - { "id": "mon_marloss_zealot_f", "fg": 7803, "bg": 7777 }, - { "id": "mon_marloss_zealot_m", "fg": 7804, "bg": 7777 }, - { "id": "mon_mutant_experimental", "fg": 7805, "bg": 7777 }, - { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 4314 }, - { "id": "mon_zombie_bio_op2", "fg": 7812, "bg": 7777 }, - { "id": "mon_zombie_hammer_hands", "fg": 7823, "bg": 7776 }, - { "id": "mon_zombie_plated", "fg": 7831, "bg": 7776 }, - { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 7835 }, + "fg": [ { "weight": 1, "sprite": 7895 }, { "weight": 1, "sprite": 7896 }, { "weight": 1, "sprite": 7897 } ], + "bg": 7872 + }, + { "id": "mon_marloss_zealot_f", "fg": 7898, "bg": 7872 }, + { "id": "mon_marloss_zealot_m", "fg": 7899, "bg": 7872 }, + { "id": "mon_mutant_experimental", "fg": 7900, "bg": 7872 }, + { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 4381 }, + { "id": "mon_zombie_bio_op2", "fg": 7907, "bg": 7872 }, + { "id": "mon_zombie_hammer_hands", "fg": 7918, "bg": 7871 }, + { "id": "mon_zombie_plated", "fg": 7926, "bg": 7871 }, + { + "id": "mon_zombie_resort_dancer", + "fg": [ { "weight": 1, "sprite": 7927 }, { "weight": 1, "sprite": 7928 } ], + "bg": 7872 + }, + { + "id": "mon_zombie_resort_staff", + "fg": [ { "weight": 1, "sprite": 7929 }, { "weight": 1, "sprite": 7930 } ], + "bg": 7872 + }, + { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 7934 }, { "id": [ "corpse_mon_zombie", @@ -12607,11 +12839,11 @@ "corpse_mon_zombie_prisoner", "corpse_mon_zombie_winged" ], - "fg": 7844 + "fg": 7947 }, - { "id": "corpse_mon_zombie_scientist", "fg": 7846 }, - { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 7847 }, - { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 7845 }, + { "id": "corpse_mon_zombie_scientist", "fg": 7949 }, + { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 7950 }, + { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 7948 }, { "id": [ "corpse_mon_zombie_tough", @@ -12627,17 +12859,19 @@ "corpse_mon_zombie_soldier_blackops_2", "corpse_mon_zombie_soldier_blackops_1" ], - "fg": 7848 - }, - { "id": "mon_zombie_winged", "fg": 7863, "bg": 7777 }, - { "id": "mon_zombie_swat", "fg": 7867, "bg": 7777 }, - { "id": "mon_zombie_flamer", "fg": 7868, "bg": 7777 }, - { "id": "corpse_mon_zombie_brainless", "fg": 7824 } + "fg": 7951 + }, + { "id": "mon_zombie_winged", "fg": 7966, "bg": 7872 }, + { "id": "mon_zougar_hunter", "fg": 7968, "bg": 7872 }, + { "id": "mon_zombie_swat", "fg": 7972, "bg": 7872 }, + { "id": "mon_zombie_flamer", "fg": 7973, "bg": 7872 }, + { "id": "corpse_mon_zombie_brainless", "fg": 7919 }, + { "id": "mon_zougar_shady", "fg": 7969 } ] }, { "file": "widevehicle.png", - "//": "range 7872 to 8271", + "//": "range 7984 to 8383", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, @@ -12645,183 +12879,183 @@ "tiles": [ { "id": "vp_board_ne", - "fg": [ 7879, 7882, 7881, 7880 ], + "fg": [ 7991, 7994, 7993, 7992 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7879, 7882, 7881, 7880 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7991, 7994, 7993, 7992 ] } ] }, { "id": "vp_board_nw", - "fg": [ 7883, 7886, 7885, 7884 ], + "fg": [ 7995, 7998, 7997, 7996 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7883, 7886, 7885, 7884 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7995, 7998, 7997, 7996 ] } ] }, { "id": "vp_board_se", - "fg": [ 7887, 7889, 7883, 7888 ], + "fg": [ 7999, 8001, 7995, 8000 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7887, 7889, 7883, 7888 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7999, 8001, 7995, 8000 ] } ] }, { "id": "vp_board_sw", - "fg": [ 7890, 7892, 7879, 7891 ], + "fg": [ 8002, 8004, 7991, 8003 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7890, 7892, 7879, 7891 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8002, 8004, 7991, 8003 ] } ] }, { "id": "vp_board_vertical_left", - "fg": [ 7876, 7893, 7878, 7877 ], + "fg": [ 7988, 8005, 7990, 7989 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7876, 7893, 7878, 7877 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7988, 8005, 7990, 7989 ] } ] }, { "id": "vp_board_vertical_right", - "fg": [ 7878, 7877, 7876, 7893 ], + "fg": [ 7990, 7989, 7988, 8005 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7878, 7877, 7876, 7893 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7990, 7989, 7988, 8005 ] } ] }, { "id": "vp_board_wheel_left", - "fg": [ 7876, 7895, 7878, 7877 ], + "fg": [ 7988, 8007, 7990, 7989 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7876, 7895, 7878, 7877 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7988, 8007, 7990, 7989 ] } ] }, { "id": "vp_board_wheel_right", - "fg": [ 7878, 7877, 7876, 7895 ], + "fg": [ 7990, 7989, 7988, 8007 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7878, 7877, 7876, 7895 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7990, 7989, 7988, 8007 ] } ] }, { "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ], - "fg": [ 7877, 7894, 7877, 7894 ], + "fg": [ 7989, 8006, 7989, 8006 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7877, 7894, 7877, 7894 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7989, 8006, 7989, 8006 ] } ] }, { "id": "vp_board_horizontal_front", - "fg": [ 7877, 7874, 7873, 7872 ], + "fg": [ 7989, 7986, 7985, 7984 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7877, 7874, 7873, 7872 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7989, 7986, 7985, 7984 ] } ] }, { "id": "vp_board_horizontal_rear", - "fg": [ 7875, 7878, 7877, 7876 ], + "fg": [ 7987, 7990, 7989, 7988 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7875, 7878, 7877, 7876 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7987, 7990, 7989, 7988 ] } ] }, { "id": [ "vp_board_vertical", "vp_board_vertical_2" ], - "fg": [ 7894, 7877, 7894, 7877 ], + "fg": [ 8006, 7989, 8006, 7989 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7894, 7877, 7894, 7877 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8006, 7989, 8006, 7989 ] } ] }, { "id": "vp_board_ne_edge", - "fg": [ 7879, 7897, 7881, 7896 ], + "fg": [ 7991, 8009, 7993, 8008 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7879, 7897, 7881, 7896 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7991, 8009, 7993, 8008 ] } ] }, { "id": "vp_board_nw_edge", - "fg": [ 7883, 7899, 7885, 7898 ], + "fg": [ 7995, 8011, 7997, 8010 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7883, 7899, 7885, 7898 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7995, 8011, 7997, 8010 ] } ] }, { "id": "vp_clothboard_ne", - "fg": [ 7905, 7908, 7907, 7906 ], + "fg": [ 8017, 8020, 8019, 8018 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7905, 7908, 7907, 7906 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8017, 8020, 8019, 8018 ] } ] }, { "id": "vp_clothboard_nw", - "fg": [ 7908, 7910, 7909, 7905 ], + "fg": [ 8020, 8022, 8021, 8017 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7908, 7910, 7909, 7905 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8020, 8022, 8021, 8017 ] } ] }, { "id": "vp_clothboard_se", - "fg": [ 7911, 7913, 7908, 7912 ], + "fg": [ 8023, 8025, 8020, 8024 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7911, 7913, 7908, 7912 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8023, 8025, 8020, 8024 ] } ] }, { "id": "vp_clothboard_sw", - "fg": [ 7914, 7916, 7905, 7915 ], + "fg": [ 8026, 8028, 8017, 8027 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7914, 7916, 7905, 7915 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8026, 8028, 8017, 8027 ] } ] }, { "id": "vp_clothboard_vertical_left", - "fg": [ 7902, 7917, 7900, 7904 ], + "fg": [ 8014, 8029, 8012, 8016 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7902, 7917, 7900, 7904 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8014, 8029, 8012, 8016 ] } ] }, { "id": "vp_clothboard_vertical_right", - "fg": [ 7900, 7904, 7902, 7917 ], + "fg": [ 8012, 8016, 8014, 8029 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7900, 7904, 7902, 7917 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8012, 8016, 8014, 8029 ] } ] }, { "id": "vp_clothboard_wheel_left", - "fg": [ 7902, 7919, 7900, 7904 ], + "fg": [ 8014, 8031, 8012, 8016 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7902, 7919, 7900, 7904 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8014, 8031, 8012, 8016 ] } ] }, { "id": "vp_clothboard_wheel_right", - "fg": [ 7900, 7904, 7902, 7919 ], + "fg": [ 8012, 8016, 8014, 8031 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7900, 7904, 7902, 7919 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8012, 8016, 8014, 8031 ] } ] }, { "id": [ "vp_clothboard", "vp_clothboard_horizontal", "vp_clothboard_horizontal_2" ], - "fg": [ 7904, 7918, 7904, 7918 ], + "fg": [ 8016, 8030, 8016, 8030 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7904, 7918, 7904, 7918 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8016, 8030, 8016, 8030 ] } ] }, { "id": "vp_clothboard_horizontal_front", - "fg": [ 7904, 7902, 7901, 7900 ], + "fg": [ 8016, 8014, 8013, 8012 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7904, 7902, 7901, 7900 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8016, 8014, 8013, 8012 ] } ] }, { "id": "vp_clothboard_horizontal_rear", - "fg": [ 7903, 7900, 7904, 7902 ], + "fg": [ 8015, 8012, 8016, 8014 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7903, 7900, 7904, 7902 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8015, 8012, 8016, 8014 ] } ] }, { "id": [ "vp_clothboard_vertical", "vp_clothboard_vertical_2" ], - "fg": [ 7918, 7904, 7918, 7904 ], + "fg": [ 8030, 8016, 8030, 8016 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7918, 7904, 7918, 7904 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8030, 8016, 8030, 8016 ] } ] }, { "id": "vp_clothboard_ne_edge", - "fg": [ 7905, 7921, 7907, 7920 ], + "fg": [ 8017, 8033, 8019, 8032 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7905, 7921, 7907, 7920 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8017, 8033, 8019, 8032 ] } ] }, { "id": "vp_clothboard_nw_edge", - "fg": [ 7908, 7923, 7909, 7922 ], + "fg": [ 8020, 8035, 8021, 8034 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7908, 7923, 7909, 7922 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8020, 8035, 8021, 8034 ] } ] }, { "id": "vp_clothboard_se_edge", - "fg": [ 7911, 7925, 7908, 7924 ], + "fg": [ 8023, 8037, 8020, 8036 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7911, 7925, 7908, 7924 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8023, 8037, 8020, 8036 ] } ] }, { "id": "vp_clothboard_sw_edge", - "fg": [ 7914, 7927, 7905, 7926 ], + "fg": [ 8026, 8039, 8017, 8038 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7914, 7927, 7905, 7926 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8026, 8039, 8017, 8038 ] } ] }, { "id": [ @@ -12832,11 +13066,11 @@ "vp_door_full_sw", "vp_door_full_rear_left" ], - "fg": [ 7996, 8003, 8002, 8001 ], + "fg": [ 8108, 8115, 8114, 8113 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7997, 8000, 7999, 7998 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7997, 8000, 7999, 7998 ] } + { "id": "open", "fg": [ 8109, 8112, 8111, 8110 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8109, 8112, 8111, 8110 ] } ] }, { @@ -12848,341 +13082,341 @@ "vp_door_full_se", "vp_door_full_rear_right" ], - "fg": [ 8022, 8021, 8020, 8005 ], + "fg": [ 8134, 8133, 8132, 8117 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8019, 8018, 8017, 8004 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8019, 8018, 8017, 8004 ] } + { "id": "open", "fg": [ 8131, 8130, 8129, 8116 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8131, 8130, 8129, 8116 ] } ] }, { "id": "vp_door_opaque_full_left", - "fg": [ 8006, 8009, 8008, 8007 ], + "fg": [ 8118, 8121, 8120, 8119 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7997, 8000, 7999, 7998 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7997, 8000, 7999, 7998 ] } + { "id": "open", "fg": [ 8109, 8112, 8111, 8110 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8109, 8112, 8111, 8110 ] } ] }, { "id": "vp_door_opaque_full_right", - "fg": [ 8014, 8013, 8012, 8010 ], + "fg": [ 8126, 8125, 8124, 8122 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8019, 8018, 8017, 8004 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8019, 8018, 8017, 8004 ] } + { "id": "open", "fg": [ 8131, 8130, 8129, 8116 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8131, 8130, 8129, 8116 ] } ] }, { "id": [ "vp_door_left", "vp_door_vertical_left" ], - "fg": [ 7932, 7935, 7934, 7933 ], + "fg": [ 8044, 8047, 8046, 8045 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7941, 7943, 7942, 7940 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7941, 7943, 7942, 7940 ] } + { "id": "open", "fg": [ 8053, 8055, 8054, 8052 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8053, 8055, 8054, 8052 ] } ] }, { "id": "vp_door_nw", - "fg": [ 7952, 7959, 7958, 7957 ], + "fg": [ 8064, 8071, 8070, 8069 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7953, 7956, 7955, 7954 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7941, 7943, 7942, 7940 ] } + { "id": "open", "fg": [ 8065, 8068, 8067, 8066 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8053, 8055, 8054, 8052 ] } ] }, { "id": "vp_door_front_left", - "fg": [ 8043, 8050, 8049, 8048 ], + "fg": [ 8155, 8162, 8161, 8160 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8044, 8047, 8046, 8045 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8044, 8047, 8046, 8045 ] } + { "id": "open", "fg": [ 8156, 8159, 8158, 8157 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8156, 8159, 8158, 8157 ] } ] }, { "id": [ "vp_door_sw", "vp_door_rear_left" ], - "fg": [ 7988, 7995, 7994, 7993 ], + "fg": [ 8100, 8107, 8106, 8105 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7989, 7992, 7991, 7990 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7941, 7943, 7942, 7940 ] } + { "id": "open", "fg": [ 8101, 8104, 8103, 8102 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8053, 8055, 8054, 8052 ] } ] }, { "id": [ "vp_door_right", "vp_door_vertical_right" ], - "fg": [ 7936, 7939, 7938, 7937 ], + "fg": [ 8048, 8051, 8050, 8049 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7977, 7979, 7978, 7976 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7977, 7979, 7978, 7976 ] } + { "id": "open", "fg": [ 8089, 8091, 8090, 8088 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8089, 8091, 8090, 8088 ] } ] }, { "id": "vp_door_ne", - "fg": [ 7944, 7951, 7950, 7949 ], + "fg": [ 8056, 8063, 8062, 8061 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7945, 7948, 7947, 7946 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7977, 7979, 7978, 7976 ] } + { "id": "open", "fg": [ 8057, 8060, 8059, 8058 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8089, 8091, 8090, 8088 ] } ] }, { "id": "vp_door_front_right", - "fg": [ 8035, 8042, 8041, 8040 ], + "fg": [ 8147, 8154, 8153, 8152 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8036, 8039, 8038, 8037 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8036, 8039, 8038, 8037 ] } + { "id": "open", "fg": [ 8148, 8151, 8150, 8149 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8148, 8151, 8150, 8149 ] } ] }, { "id": [ "vp_door_se", "vp_door_rear_right" ], - "fg": [ 7980, 7987, 7986, 7985 ], + "fg": [ 8092, 8099, 8098, 8097 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7981, 7984, 7983, 7982 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7977, 7979, 7978, 7976 ] } + { "id": "open", "fg": [ 8093, 8096, 8095, 8094 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8089, 8091, 8090, 8088 ] } ] }, { "id": "vp_door_opaque_left", - "fg": [ 7965, 7967, 7966, 7964 ], + "fg": [ 8077, 8079, 8078, 8076 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7961, 7963, 7962, 7960 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7961, 7963, 7962, 7960 ] } + { "id": "open", "fg": [ 8073, 8075, 8074, 8072 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8073, 8075, 8074, 8072 ] } ] }, { "id": "vp_door_opaque_right", - "fg": [ 7973, 7975, 7974, 7972 ], + "fg": [ 8085, 8087, 8086, 8084 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7969, 7971, 7970, 7968 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 7969, 7971, 7970, 7968 ] } + { "id": "open", "fg": [ 8081, 8083, 8082, 8080 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8081, 8083, 8082, 8080 ] } ] }, { "id": [ "vp_door_rear", "vp_door_horizontal_rear" ], - "fg": [ 8015, 8022, 8021, 8020 ], + "fg": [ 8127, 8134, 8133, 8132 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8016, 8019, 8018, 8017 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8016, 8019, 8018, 8017 ] } + { "id": "open", "fg": [ 8128, 8131, 8130, 8129 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8128, 8131, 8130, 8129 ] } ] }, { "id": [ "vp_door_front", "vp_door_horizontal_front" ], - "fg": [ 8021, 8020, 8015, 8022 ], + "fg": [ 8133, 8132, 8127, 8134 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8018, 8017, 8016, 8019 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8018, 8017, 8016, 8019 ] } + { "id": "open", "fg": [ 8130, 8129, 8128, 8131 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8130, 8129, 8128, 8131 ] } ] }, { "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ], - "fg": [ 8011, 8014, 8013, 8012 ], + "fg": [ 8123, 8126, 8125, 8124 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8016, 8019, 8018, 8017 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8016, 8019, 8018, 8017 ] } + { "id": "open", "fg": [ 8128, 8131, 8130, 8129 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8128, 8131, 8130, 8129 ] } ] }, { "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ], - "fg": [ 8013, 8012, 8011, 8014 ], + "fg": [ 8125, 8124, 8123, 8126 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8018, 8017, 8016, 8019 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8018, 8017, 8016, 8019 ] } + { "id": "open", "fg": [ 8130, 8129, 8128, 8131 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8130, 8129, 8128, 8131 ] } ] }, { "id": "vp_door_sliding", - "fg": [ 8014, 8013, 8012, 8010 ], + "fg": [ 8126, 8125, 8124, 8122 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8061, 8062, 8063, 8064 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8061, 8062, 8063, 8064 ] } + { "id": "open", "fg": [ 8173, 8174, 8175, 8176 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8173, 8174, 8175, 8176 ] } ] }, { "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ], - "fg": [ 8031, 8030, 8033, 8030 ], + "fg": [ 8143, 8142, 8145, 8142 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8032, 8029, 8034, 8029 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8032, 8029, 8034, 8029 ] } + { "id": "open", "fg": [ 8144, 8141, 8146, 8141 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8144, 8141, 8146, 8141 ] } ] }, { "id": "vp_door_internal_front", - "fg": [ 8013, 8028, 8027, 8026 ], + "fg": [ 8125, 8140, 8139, 8138 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8018, 8025, 8024, 8023 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8018, 8025, 8024, 8023 ] } + { "id": "open", "fg": [ 8130, 8137, 8136, 8135 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8130, 8137, 8136, 8135 ] } ] }, { "id": "vp_door_shutter", - "fg": [ 8053, 8051, 8052, 8054 ], + "fg": [ 8165, 8163, 8164, 8166 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8058, 8056, 8057, 8059 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8058, 8056, 8057, 8059 ] } + { "id": "open", "fg": [ 8170, 8168, 8169, 8171 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8170, 8168, 8169, 8171 ] } ] }, { "id": "vp_door_shutter_left", - "fg": [ 8054, 8055, 8051, 8052 ], + "fg": [ 8166, 8167, 8163, 8164 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8059, 8060, 8056, 8057 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8059, 8060, 8056, 8057 ] } + { "id": "open", "fg": [ 8171, 8172, 8168, 8169 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8171, 8172, 8168, 8169 ] } ] }, { "id": "vp_door_shutter_right", - "fg": [ 8051, 8052, 8054, 8055 ], + "fg": [ 8163, 8164, 8166, 8167 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8056, 8057, 8059, 8060 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8056, 8057, 8059, 8060 ] } + { "id": "open", "fg": [ 8168, 8169, 8171, 8172 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8168, 8169, 8171, 8172 ] } ] }, { "id": "vp_halfboard_ne", - "fg": [ 8085, 8088, 8087, 8086 ], + "fg": [ 8197, 8200, 8199, 8198 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8085, 8088, 8087, 8086 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8197, 8200, 8199, 8198 ] } ] }, { "id": "vp_halfboard_nw", - "fg": [ 8089, 8092, 8091, 8090 ], + "fg": [ 8201, 8204, 8203, 8202 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8089, 8092, 8091, 8090 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8201, 8204, 8203, 8202 ] } ] }, { "id": "vp_halfboard_se", - "fg": [ 8093, 8096, 8095, 8094 ], + "fg": [ 8205, 8208, 8207, 8206 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8093, 8096, 8095, 8094 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8205, 8208, 8207, 8206 ] } ] }, { "id": "vp_halfboard_sw", - "fg": [ 8097, 8100, 8099, 8098 ], + "fg": [ 8209, 8212, 8211, 8210 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8097, 8100, 8099, 8098 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8209, 8212, 8211, 8210 ] } ] }, { "id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ], - "fg": [ 8101, 8103, 8104, 8102 ], + "fg": [ 8213, 8215, 8216, 8214 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8101, 8103, 8104, 8102 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8213, 8215, 8216, 8214 ] } ] }, { "id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ], - "fg": [ 8104, 8102, 8101, 8103 ], + "fg": [ 8216, 8214, 8213, 8215 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8104, 8102, 8101, 8103 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8216, 8214, 8213, 8215 ] } ] }, { "id": "vp_halfboard_vertical_t_left", - "fg": [ 8108, 8110, 8109, 8107 ], + "fg": [ 8220, 8222, 8221, 8219 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8108, 8110, 8109, 8107 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8220, 8222, 8221, 8219 ] } ] }, { "id": "vp_halfboard_vertical_t_right", - "fg": [ 8112, 8114, 8113, 8111 ], + "fg": [ 8224, 8226, 8225, 8223 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8112, 8114, 8113, 8111 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8224, 8226, 8225, 8223 ] } ] }, { "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ], - "fg": [ 8082, 8084, 8083, 8081 ], + "fg": [ 8194, 8196, 8195, 8193 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8082, 8084, 8083, 8081 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8194, 8196, 8195, 8193 ] } ] }, { "id": [ "vp_halfboard_horizontal_front", "vp_halfboard_horizontal_2_front", "vp_halfboard_cover" ], - "fg": [ 8073, 8076, 8075, 8074 ], + "fg": [ 8185, 8188, 8187, 8186 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8073, 8076, 8075, 8074 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8185, 8188, 8187, 8186 ] } ] }, { "id": "vp_halfboard_horizontal_rear", - "fg": [ 8077, 8080, 8079, 8078 ], + "fg": [ 8189, 8192, 8191, 8190 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8077, 8080, 8079, 8078 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8189, 8192, 8191, 8190 ] } ] }, { "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ], - "fg": [ 8106, 8105, 8106, 8105 ], + "fg": [ 8218, 8217, 8218, 8217 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8106, 8105, 8106, 8105 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8218, 8217, 8218, 8217 ] } ] }, { "id": "vp_halfboard_cover_left", - "fg": [ 8065, 8068, 8067, 8066 ], + "fg": [ 8177, 8180, 8179, 8178 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8065, 8068, 8067, 8066 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8177, 8180, 8179, 8178 ] } ] }, { "id": "vp_halfboard_cover_right", - "fg": [ 8069, 8072, 8071, 8070 ], + "fg": [ 8181, 8184, 8183, 8182 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8069, 8072, 8071, 8070 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8181, 8184, 8183, 8182 ] } ] }, { "id": "vp_halfboard_wheel_left", - "fg": [ 8115, 8118, 8117, 8116 ], + "fg": [ 8227, 8230, 8229, 8228 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8115, 8118, 8117, 8116 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8227, 8230, 8229, 8228 ] } ] }, { "id": "vp_halfboard_wheel_right", - "fg": [ 8119, 8122, 8121, 8120 ], + "fg": [ 8231, 8234, 8233, 8232 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8119, 8122, 8121, 8120 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8231, 8234, 8233, 8232 ] } ] }, { "id": "vp_hddoor_left", - "fg": [ 8124, 8126, 8125, 8123 ], + "fg": [ 8236, 8238, 8237, 8235 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8132, 8134, 8133, 8131 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8132, 8134, 8133, 8131 ] } + { "id": "open", "fg": [ 8244, 8246, 8245, 8243 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8244, 8246, 8245, 8243 ] } ] }, { "id": "vp_hddoor_right", - "fg": [ 8128, 8130, 8129, 8127 ], + "fg": [ 8240, 8242, 8241, 8239 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8152, 8154, 8153, 8151 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8152, 8154, 8153, 8151 ] } + { "id": "open", "fg": [ 8264, 8266, 8265, 8263 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8264, 8266, 8265, 8263 ] } ] }, { "id": "vp_hddoor_opaque_left", - "fg": [ 8140, 8142, 8141, 8139 ], + "fg": [ 8252, 8254, 8253, 8251 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8136, 8138, 8137, 8135 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8136, 8138, 8137, 8135 ] } + { "id": "open", "fg": [ 8248, 8250, 8249, 8247 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8248, 8250, 8249, 8247 ] } ] }, { "id": "vp_hddoor_opaque_right", - "fg": [ 8148, 8150, 8149, 8147 ], + "fg": [ 8260, 8262, 8261, 8259 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8144, 8146, 8145, 8143 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8144, 8146, 8145, 8143 ] } + { "id": "open", "fg": [ 8256, 8258, 8257, 8255 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8256, 8258, 8257, 8255 ] } ] }, { @@ -13194,11 +13428,11 @@ "vp_hddoor_full_sw", "vp_hddoor_full_rear_left" ], - "fg": [ 8124, 8126, 8125, 8123 ], + "fg": [ 8236, 8238, 8237, 8235 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8132, 8134, 8133, 8131 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8132, 8134, 8133, 8131 ] } + { "id": "open", "fg": [ 8244, 8246, 8245, 8243 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8244, 8246, 8245, 8243 ] } ] }, { @@ -13210,638 +13444,636 @@ "vp_hddoor_full_se", "vp_hddoor_full_rear_right" ], - "fg": [ 8128, 8130, 8129, 8127 ], + "fg": [ 8240, 8242, 8241, 8239 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8152, 8154, 8153, 8151 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8152, 8154, 8153, 8151 ] } + { "id": "open", "fg": [ 8264, 8266, 8265, 8263 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8264, 8266, 8265, 8263 ] } ] }, { "id": "vp_hddoor_opaque_full_left", - "fg": [ 8140, 8142, 8141, 8139 ], + "fg": [ 8252, 8254, 8253, 8251 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8136, 8138, 8137, 8135 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8136, 8138, 8137, 8135 ] } + { "id": "open", "fg": [ 8248, 8250, 8249, 8247 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8248, 8250, 8249, 8247 ] } ] }, { "id": "vp_hddoor_opaque_full_right", - "fg": [ 8148, 8150, 8149, 8147 ], + "fg": [ 8260, 8262, 8261, 8259 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8144, 8146, 8145, 8143 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8144, 8146, 8145, 8143 ] } + { "id": "open", "fg": [ 8256, 8258, 8257, 8255 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8256, 8258, 8257, 8255 ] } ] }, - { "id": "vp_saddle_scooter", "fg": [ 8156, 8158, 8157, 8155 ], "rotates": true }, + { "id": "vp_saddle_scooter", "fg": [ 8268, 8270, 8269, 8267 ], "rotates": true }, { "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ], - "fg": [ 8160, 8162, 8161, 8159 ], + "fg": [ 8272, 8274, 8273, 8271 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8160, 8162, 8161, 8159 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8272, 8274, 8273, 8271 ] } ] }, { "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ], - "fg": [ 8164, 8166, 8165, 8163 ], + "fg": [ 8276, 8278, 8277, 8275 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8164, 8166, 8165, 8163 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8276, 8278, 8277, 8275 ] } ] }, { "id": "vp_bed", - "fg": [ 8168, 8170, 8169, 8167 ], + "fg": [ 8280, 8282, 8281, 8279 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 8168, 8170, 8169, 8167 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 8280, 8282, 8281, 8279 ] } ] }, { "id": "vp_hatch_left", - "fg": [ 8173, 8180, 8179, 8178 ], + "fg": [ 8285, 8292, 8291, 8290 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8174, 8177, 8176, 8175 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8174, 8177, 8176, 8175 ] } + { "id": "open", "fg": [ 8286, 8289, 8288, 8287 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8286, 8289, 8288, 8287 ] } ] }, { "id": "vp_hatch_right", - "fg": [ 8179, 8178, 8173, 8180 ], + "fg": [ 8291, 8290, 8285, 8292 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8176, 8175, 8174, 8177 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8176, 8175, 8174, 8177 ] } + { "id": "open", "fg": [ 8288, 8287, 8286, 8289 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8288, 8287, 8286, 8289 ] } ] }, { "id": "vp_hatch_wheel_left", - "fg": [ 8173, 8194, 8179, 8178 ], + "fg": [ 8285, 8306, 8291, 8290 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8174, 8193, 8176, 8175 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8174, 8177, 8176, 8175 ] } + { "id": "open", "fg": [ 8286, 8305, 8288, 8287 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8286, 8289, 8288, 8287 ] } ] }, { "id": "vp_hatch_wheel_right", - "fg": [ 8179, 8178, 8173, 8194 ], + "fg": [ 8291, 8290, 8285, 8306 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8176, 8175, 8174, 8193 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8176, 8175, 8174, 8193 ] } + { "id": "open", "fg": [ 8288, 8287, 8286, 8305 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8288, 8287, 8286, 8305 ] } ] }, { "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ], - "fg": [ 8171, 8179, 8178, 8173 ], + "fg": [ 8283, 8291, 8290, 8285 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8172, 8176, 8175, 8174 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8172, 8176, 8175, 8174 ] } + { "id": "open", "fg": [ 8284, 8288, 8287, 8286 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8284, 8288, 8287, 8286 ] } ] }, { "id": "vp_hatch_horizontal_front", - "fg": [ 8178, 8173, 8171, 8179 ], + "fg": [ 8290, 8285, 8283, 8291 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8175, 8174, 8172, 8176 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8175, 8174, 8172, 8176 ] } + { "id": "open", "fg": [ 8287, 8286, 8284, 8288 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8287, 8286, 8284, 8288 ] } ] }, { "id": "vp_hatch_opaque_left", - "fg": [ 8183, 8190, 8189, 8188 ], + "fg": [ 8295, 8302, 8301, 8300 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8184, 8187, 8186, 8185 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8184, 8187, 8186, 8185 ] } + { "id": "open", "fg": [ 8296, 8299, 8298, 8297 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8296, 8299, 8298, 8297 ] } ] }, { "id": "vp_hatch_opaque_right", - "fg": [ 8189, 8188, 8183, 8190 ], + "fg": [ 8301, 8300, 8295, 8302 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8186, 8185, 8184, 8187 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8186, 8185, 8184, 8187 ] } + { "id": "open", "fg": [ 8298, 8297, 8296, 8299 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8298, 8297, 8296, 8299 ] } ] }, { "id": "vp_hatch_opaque_wheel_left", - "fg": [ 8183, 8192, 8189, 8188 ], + "fg": [ 8295, 8304, 8301, 8300 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8184, 8191, 8186, 8185 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8184, 8191, 8186, 8185 ] } + { "id": "open", "fg": [ 8296, 8303, 8298, 8297 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8296, 8303, 8298, 8297 ] } ] }, { "id": "vp_hatch_opaque_wheel_right", - "fg": [ 8189, 8188, 8183, 8192 ], + "fg": [ 8301, 8300, 8295, 8304 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8186, 8185, 8184, 8191 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8186, 8185, 8184, 8191 ] } + { "id": "open", "fg": [ 8298, 8297, 8296, 8303 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8298, 8297, 8296, 8303 ] } ] }, { "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ], - "fg": [ 8181, 8189, 8188, 8183 ], + "fg": [ 8293, 8301, 8300, 8295 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8182, 8186, 8185, 8184 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8182, 8186, 8185, 8184 ] } + { "id": "open", "fg": [ 8294, 8298, 8297, 8296 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8294, 8298, 8297, 8296 ] } ] }, { "id": "vp_hatch_opaque_horizontal_front", - "fg": [ 8188, 8183, 8181, 8189 ], + "fg": [ 8300, 8295, 8293, 8301 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8185, 8184, 8182, 8186 ] }, - { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8185, 8184, 8182, 8186 ] } + { "id": "open", "fg": [ 8297, 8296, 8294, 8298 ] }, + { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8297, 8296, 8294, 8298 ] } ] }, { "id": [ "vp_wheel_wide", "vp_wheel_wide_steerable", "vp_wheel_wide_or", "vp_wheel_wide_or_steerable" ], - "fg": [ 8196, 8195, 8196, 8195 ], + "fg": [ 8308, 8307, 8308, 8307 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": [ 8196, 8195, 8196, 8195 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 8308, 8307, 8308, 8307 ] } ] }, { "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ], - "fg": [ 8205, 8208, 8207, 8206 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8205, 8208, 8207, 8206 ] } ], + "fg": [ 8317, 8320, 8319, 8318 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8317, 8320, 8319, 8318 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear", - "fg": [ 8222, 8223, 8222, 8221 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8222, 8223, 8222, 8221 ] } ], + "fg": [ 8334, 8335, 8334, 8333 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8334, 8335, 8334, 8333 ] } ], "multitile": true }, { "id": "vp_windshield_nw", - "fg": [ 8217, 8220, 8219, 8218 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7930, 7930, 7930, 7930 ], "bg": [ 8217, 8220, 8219, 8218 ] } ], + "fg": [ 8329, 8332, 8331, 8330 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8329, 8332, 8331, 8330 ] } ], "multitile": true }, { "id": "vp_windshield_ne", - "fg": [ 8213, 8216, 8215, 8214 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7929, 7929, 7929, 7929 ], "bg": [ 8213, 8216, 8215, 8214 ] } ], + "fg": [ 8325, 8328, 8327, 8326 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8325, 8328, 8327, 8326 ] } ], "multitile": true }, { "id": "vp_windshield_sw", - "fg": [ 8209, 8212, 8224, 8210 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7930, 7930, 7930, 7930 ], "bg": [ 8209, 8212, 8224, 8210 ] } ], + "fg": [ 8321, 8324, 8336, 8322 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8321, 8324, 8336, 8322 ] } ], "multitile": true }, { "id": "vp_windshield_se", - "fg": [ 8211, 8227, 8209, 8225 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7929, 7929, 7929, 7929 ], "bg": [ 8211, 8227, 8209, 8225 ] } ], + "fg": [ 8323, 8339, 8321, 8337 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8323, 8339, 8321, 8337 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ], - "fg": [ 8209, 8212, 8211, 8210 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7929, 7929, 7929, 7929 ], "bg": [ 8209, 8212, 8211, 8210 ] } ], + "fg": [ 8321, 8324, 8323, 8322 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8321, 8324, 8323, 8322 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ], - "fg": [ 8224, 8227, 8226, 8225 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7930, 7930, 7930, 7930 ], "bg": [ 8224, 8227, 8226, 8225 ] } ], + "fg": [ 8336, 8339, 8338, 8337 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8336, 8339, 8338, 8337 ] } ], "multitile": true }, { "id": "vp_windshield_cover_left", - "fg": [ 8197, 8200, 8199, 8198 ], + "fg": [ 8309, 8312, 8311, 8310 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8197, 8200, 8199, 8198 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8309, 8312, 8311, 8310 ] } ] }, { "id": "vp_windshield_cover_right", - "fg": [ 8201, 8204, 8203, 8202 ], + "fg": [ 8313, 8316, 8315, 8314 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8201, 8204, 8203, 8202 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8313, 8316, 8315, 8314 ] } ] }, { "id": "vp_windshield_wheel_left", - "fg": [ 8229, 8232, 8231, 8230 ], + "fg": [ 8341, 8344, 8343, 8342 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8229, 8232, 8231, 8230 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8341, 8344, 8343, 8342 ] } ] }, { "id": "vp_windshield_wheel_right", - "fg": [ 8233, 8236, 8235, 8234 ], + "fg": [ 8345, 8348, 8347, 8346 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7931, 7931, 7931, 7931 ], "bg": [ 8233, 8236, 8235, 8234 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8345, 8348, 8347, 8346 ] } ] }, { "id": "vp_windshield_vertical_2_left", - "fg": [ 8209, 8228, 8211, 8210 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7929, 7929, 7929, 7929 ], "bg": [ 8209, 8228, 8211, 8210 ] } ], + "fg": [ 8321, 8340, 8323, 8322 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8321, 8340, 8323, 8322 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_right", - "fg": [ 8224, 8227, 8226, 8228 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7930, 7930, 7930, 7930 ], "bg": [ 8224, 8227, 8226, 8228 ] } ], + "fg": [ 8336, 8339, 8338, 8340 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8336, 8339, 8338, 8340 ] } ], "multitile": true }, { "id": [ "vp_windshield_full", "vp_windshield_full_horizontal_rear" ], - "fg": [ 8239, 8237, 8238, 8240 ], - "additional_tiles": [ { "id": "broken", "fg": 7426, "bg": [ 8239, 8237, 8238, 8240 ] } ], + "fg": [ 8351, 8349, 8350, 8352 ], + "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8351, 8349, 8350, 8352 ] } ], "multitile": true }, { "id": "vp_windshield_full_horizontal_front", - "fg": [ 8238, 8240, 8239, 8237 ], - "additional_tiles": [ { "id": "broken", "fg": 7426, "bg": [ 8238, 8240, 8239, 8237 ] } ], + "fg": [ 8350, 8352, 8351, 8349 ], + "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8350, 8352, 8351, 8349 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ], - "fg": [ 8240, 8241, 8237, 8238 ], - "additional_tiles": [ { "id": "broken", "fg": 7426, "bg": [ 8240, 8241, 8237, 8238 ] } ], + "fg": [ 8352, 8353, 8349, 8350 ], + "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8352, 8353, 8349, 8350 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ], - "fg": [ 8237, 8238, 8240, 8241 ], - "additional_tiles": [ { "id": "broken", "fg": 7426, "bg": [ 8237, 8238, 8240, 8241 ] } ], + "fg": [ 8349, 8350, 8352, 8353 ], + "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8349, 8350, 8352, 8353 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_left", - "fg": [ 8240, 8242, 8237, 8238 ], - "additional_tiles": [ { "id": "broken", "fg": 7426, "bg": [ 8240, 8242, 8237, 8238 ] } ], + "fg": [ 8352, 8354, 8349, 8350 ], + "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8352, 8354, 8349, 8350 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_right", - "fg": [ 8237, 8238, 8240, 8242 ], - "additional_tiles": [ { "id": "broken", "fg": 7426, "bg": [ 8237, 8238, 8240, 8242 ] } ], + "fg": [ 8349, 8350, 8352, 8354 ], + "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8349, 8350, 8352, 8354 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_front_edge", - "fg": [ 8244, 8246, 8245, 8243 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8244, 8246, 8245, 8243 ] } ], + "fg": [ 8356, 8358, 8357, 8355 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8356, 8358, 8357, 8355 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear_edge", - "fg": [ 8255, 8258, 8257, 8256 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8255, 8258, 8257, 8256 ] } ], + "fg": [ 8367, 8370, 8369, 8368 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8367, 8370, 8369, 8368 ] } ], "multitile": true }, { "id": "vp_windshield_nw_edge", - "fg": [ 8252, 8254, 8253, 8251 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8252, 8254, 8253, 8251 ] } ], + "fg": [ 8364, 8366, 8365, 8363 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8364, 8366, 8365, 8363 ] } ], "multitile": true }, { "id": "vp_windshield_ne_edge", - "fg": [ 8248, 8250, 8249, 8247 ], - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8248, 8250, 8249, 8247 ] } ], + "fg": [ 8360, 8362, 8361, 8359 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8360, 8362, 8361, 8359 ] } ], "multitile": true }, { "id": "vp_windshield_sw_edge", - "fg": [ 8097, 8100, 8099, 8098 ], + "fg": [ 8209, 8212, 8211, 8210 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8097, 8100, 8099, 8098 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8209, 8212, 8211, 8210 ] } ] }, { "id": "vp_windshield_se_edge", - "fg": [ 8093, 8096, 8095, 8094 ], + "fg": [ 8205, 8208, 8207, 8206 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7928, 7928, 7928, 7928 ], "bg": [ 8093, 8096, 8095, 8094 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8205, 8208, 8207, 8206 ] } ] } ] }, { "file": "fillerhoder.png", - "//": "range 8272 to 8351", + "//": "range 8384 to 8447", "tiles": [ { "id": "f_sandbag_wall", - "fg": 8272, + "fg": 8384, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 8272 }, - { "id": "center", "fg": 8273 }, - { "id": "corner", "fg": 8274 }, - { "id": "edge", "fg": 8275 }, - { "id": "end_piece", "fg": 8276 }, - { "id": "t_connection", "fg": 8277 } + { "id": "unconnected", "fg": 8384 }, + { "id": "center", "fg": 8385 }, + { "id": "corner", "fg": 8386 }, + { "id": "edge", "fg": 8387 }, + { "id": "end_piece", "fg": 8388 }, + { "id": "t_connection", "fg": 8389 } ] }, - { "id": "f_slab", "fg": 8278 }, - { "id": "animation_bullet_flame", "fg": 8279, "rotates": false }, - { "id": "animation_bullet_normal", "fg": 8280, "rotates": false }, - { "id": "animation_bullet_shrapnel", "fg": 8281 }, + { "id": "f_slab", "fg": 8390 }, + { "id": "animation_bullet_flame", "fg": 8391, "rotates": false }, + { "id": "animation_bullet_normal", "fg": 8392, "rotates": false }, + { "id": "animation_bullet_shrapnel", "fg": 8393 }, { "id": "explosion", - "fg": 8282, + "fg": 8394, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8282 }, { "id": "edge", "fg": 8283 } ] + "additional_tiles": [ { "id": "corner", "fg": 8394 }, { "id": "edge", "fg": 8395 } ] }, { "id": "explosion_medium", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8282 }, { "id": "edge", "fg": 8283 } ], - "fg": 8282 + "additional_tiles": [ { "id": "corner", "fg": 8394 }, { "id": "edge", "fg": 8395 } ], + "fg": 8394 }, { "id": "explosion_weak", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8282 }, { "id": "edge", "fg": 8283 } ], - "fg": 8282 + "additional_tiles": [ { "id": "corner", "fg": 8394 }, { "id": "edge", "fg": 8395 } ], + "fg": 8394 }, { "id": "vp_chimes", - "fg": 8284, + "fg": 8396, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8284 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8396 } ] }, { "id": "vp_robot_controls", - "fg": 8285, + "fg": 8397, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8285 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8397 } ] }, - { "id": "t_pit_corpsed", "fg": 8286, "bg": 4837 }, - { "id": "t_pit_corpsed_season_winter", "fg": 8286, "bg": 4584 }, - { "id": "vp_ram_wood", "fg": [ 8300, 8302, 8301, 8303 ], "rotates": true }, - { "id": "vp_ram_military", "fg": [ 8296, 8298, 8297, 8299 ], "rotates": true }, - { "id": "vp_ram_hardsteel", "fg": [ 8292, 8294, 8293, 8295 ], "rotates": true }, - { "id": "vp_ram_alloy", "fg": [ 8288, 8290, 8289, 8291 ], "rotates": true }, + { "id": "vp_ram_wood", "fg": [ 8411, 8413, 8412, 8414 ], "rotates": true }, + { "id": "vp_ram_military", "fg": [ 8407, 8409, 8408, 8410 ], "rotates": true }, + { "id": "vp_ram_hardsteel", "fg": [ 8403, 8405, 8404, 8406 ], "rotates": true }, + { "id": "vp_ram_alloy", "fg": [ 8399, 8401, 8400, 8402 ], "rotates": true }, { "id": "vp_roller_drum", - "fg": 8304, + "fg": 8415, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8287, "bg": 8304 } ] + "additional_tiles": [ { "id": "broken", "fg": 8398, "bg": 8415 } ] }, { "id": "vp_battery_motorbike", - "fg": 8316, + "fg": 8427, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8316 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8427 } ] }, { "id": "vp_blade_horizontal", - "fg": 8325, + "fg": 8436, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8325 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8436 } ] }, { "id": "vp_blade_vertical", - "fg": 8326, + "fg": 8437, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8326 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8437 } ] }, { "id": "vp_controls", - "fg": 8320, + "fg": 8431, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8320 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8431 } ] }, { "id": "vp_engine_1cyl", - "fg": 8309, + "fg": 8420, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8309 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8420 } ] }, { "id": "vp_engine_electric", - "fg": 8313, + "fg": 8424, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8313 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8424 } ] }, { "id": "vp_engine_electric_large", - "fg": 8314, + "fg": 8425, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8314 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8425 } ] }, - { "id": "vp_engine_v12", "fg": 8311, "bg": 8312 }, + { "id": "vp_engine_v12", "fg": 8422, "bg": 8423 }, { "id": "vp_engine_v6", - "fg": 8311, + "fg": 8422, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8311 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8422 } ] }, { "id": "vp_engine_v8", - "fg": 8312, + "fg": 8423, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8312 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8423 } ] }, { "id": "vp_engine_vtwin", - "fg": 8310, + "fg": 8421, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8310 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8421 } ] }, { "id": "vp_foot_pedals", - "fg": 8315, + "fg": 8426, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8315 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8426 } ] }, { "id": "vp_fusion_gun", - "fg": 8328, + "fg": 8439, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8328 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8439 } ] }, { "id": "vp_hdroof", - "fg": 8330, + "fg": 8441, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8330 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8441 } ] }, { "id": "vp_hydrogen_tank", - "fg": 8318, + "fg": 8429, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8318 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8429 } ] }, { "id": "vp_minireactor", - "fg": 8317, + "fg": 8428, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8317 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8428 } ] }, { "id": "vp_muffler", - "fg": 8319, + "fg": 8430, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8319 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8430 } ] }, { "id": "vp_plating_hard", - "fg": 8324, + "fg": 8435, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8324 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8435 } ] }, { "id": "vp_plating_military", - "fg": 8321, + "fg": 8432, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8321 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8432 } ] }, { "id": "vp_plating_spiked", - "fg": 8323, + "fg": 8434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8323 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8434 } ] }, { "id": "vp_plating_steel", - "fg": 8321, + "fg": 8432, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8321 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8432 } ] }, { "id": "vp_plating_superalloy", - "fg": 8322, + "fg": 8433, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8322 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8433 } ] }, { "id": "vp_plating_wood", - "fg": 8333, + "fg": 8444, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8333 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8444 } ] }, { "id": "vp_roof", - "fg": 8331, + "fg": 8442, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8331 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8442 } ] }, { "id": "vp_roof_cloth", - "fg": 8332, + "fg": 8443, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8332 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8443 } ] }, { "id": "vp_seatbelt", - "fg": 8308, + "fg": 8419, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8308 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8419 } ] }, { "id": "vp_seatbelt_heavyduty", - "fg": 8308, + "fg": 8419, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8308 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8419 } ] }, { "id": "vp_small_storage_battery", - "fg": 8316, + "fg": 8427, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8316 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8427 } ] }, { "id": "vp_storage_battery", - "fg": 8316, + "fg": 8427, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8316 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8427 } ] }, { "id": "vp_v_curtain", - "fg": 8334, + "fg": 8445, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8334 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8445 } ] }, { "id": "vp_wheel_armor", - "fg": 8305, + "fg": 8416, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8305 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8416 } ] }, { "id": "vp_wheel_armor_steerable", - "fg": 8305, + "fg": 8416, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8305 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8416 } ] }, { "id": "vp_wheel_caster", - "fg": 8329, + "fg": 8440, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8329 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8440 } ] }, { "id": "vp_wheel_small", - "fg": 8307, + "fg": 8418, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8307 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8418 } ] }, { "id": "vp_wheel_small_steerable", - "fg": 8307, + "fg": 8418, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8307 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8418 } ] }, { "id": "vp_wheel_wheelchair", - "fg": 8306, + "fg": 8417, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8306 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8417 } ] }, { "id": "vp_wheel_wood", - "fg": 8336, + "fg": 8447, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8336 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8447 } ] }, { "id": [ "wheel_wood", "wheel_wood_b" ], - "fg": 8336, + "fg": 8447, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8336 } ] + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8447 } ] }, { "id": "vp_wheel_wood_b", - "fg": 8336, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7427, "bg": 8336 } ] - }, - { "id": "foot_crank", "fg": 8315 }, - { "id": "frame", "fg": 8335 }, - { "id": "hard_plate", "fg": 8324 }, - { "id": "kitchen_unit", "fg": 8327 }, - { "id": "motor", "fg": 8313 }, - { "id": "motor_large", "fg": 8314 }, - { "id": "muffler", "fg": 8319 }, - { "id": "spiked_plate", "fg": 8323 }, - { "id": "storage_battery", "fg": 8316 }, - { "id": "vehicle_controls", "fg": 8320 }, - { "id": "1cyl_combustion", "fg": 8309 }, - { "id": "v2_combustion", "fg": 8310 }, - { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8311 }, - { "id": "v8_combustion", "fg": 8312 } + "fg": 8447, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8447 } ] + }, + { "id": "foot_crank", "fg": 8426 }, + { "id": "frame", "fg": 8446 }, + { "id": "hard_plate", "fg": 8435 }, + { "id": "kitchen_unit", "fg": 8438 }, + { "id": "motor", "fg": 8424 }, + { "id": "motor_large", "fg": 8425 }, + { "id": "muffler", "fg": 8430 }, + { "id": "spiked_plate", "fg": 8434 }, + { "id": "storage_battery", "fg": 8427 }, + { "id": "vehicle_controls", "fg": 8431 }, + { "id": "1cyl_combustion", "fg": 8420 }, + { "id": "v2_combustion", "fg": 8421 }, + { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8422 }, + { "id": "v8_combustion", "fg": 8423 } ] }, { "file": "fillergiant.png", - "//": "range 8352 to 8367", + "//": "range 8448 to 8463", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, @@ -13854,18 +14086,18 @@ "t_tree_pear_season_spring", "t_tree_plum_season_spring" ], - "fg": 6859, - "bg": 6852 + "fg": 6956, + "bg": 6949 }, - { "id": "t_tree_apricot_season_summer", "fg": 8352, "bg": 6853 }, - { "id": "t_tree_mulberry_season_summer", "fg": 8353, "bg": 6853 }, - { "id": "t_tree_elderberry_season_summer", "fg": 8353, "bg": 6853 }, - { "id": "t_tree_pear_season_autumn", "fg": 8354, "bg": 6853 }, - { "id": "t_tree_plum_season_summer", "fg": 8355, "bg": 6853 }, + { "id": "t_tree_apricot_season_summer", "fg": 8448, "bg": 6950 }, + { "id": "t_tree_mulberry_season_summer", "fg": 8449, "bg": 6950 }, + { "id": "t_tree_elderberry_season_summer", "fg": 8449, "bg": 6950 }, + { "id": "t_tree_pear_season_autumn", "fg": 8450, "bg": 6950 }, + { "id": "t_tree_plum_season_summer", "fg": 8451, "bg": 6950 }, { "id": [ "t_tree_apricot_harvested", "t_tree_mulberry_harvested", "t_tree_plum_harvested", "t_tree_pear_season_summer" ], - "fg": 6854, - "bg": 6853 + "fg": 6951, + "bg": 6950 }, { "id": [ @@ -13875,12 +14107,12 @@ "t_tree_pear_harvested" ], "fg": [ - { "weight": 100, "sprite": 6855 }, - { "weight": 100, "sprite": 6856 }, - { "weight": 100, "sprite": 6857 }, - { "weight": 100, "sprite": 6858 } + { "weight": 100, "sprite": 6952 }, + { "weight": 100, "sprite": 6953 }, + { "weight": 100, "sprite": 6954 }, + { "weight": 100, "sprite": 6955 } ], - "bg": 6851 + "bg": 6948 }, { "id": [ @@ -13889,29 +14121,29 @@ "t_tree_pear_season_winter", "t_tree_plum_season_winter" ], - "fg": 6883, - "bg": 6850 - }, - { "id": "t_tree_chestnut", "fg": 8357, "bg": 6852 }, - { "id": "t_tree_chestnut_season_summer", "fg": 8356, "bg": 6853 }, - { "id": "t_tree_chestnut_season_autumn", "fg": 8356, "bg": 6851 }, - { "id": "t_tree_chestnut_season_winter", "fg": 8356, "bg": 6850 }, - { "id": "t_tree_pine", "fg": 8361, "bg": 6852 }, - { "id": "t_tree_pine_season_summer", "fg": 8361, "bg": 6853 }, - { "id": "t_tree_pine_season_autumn", "fg": 8361, "bg": 6851 }, - { "id": "t_tree_pine_season_winter", "fg": 8361, "bg": 6850 }, - { "id": "t_tree_deadpine", "fg": 8358, "bg": 6852 }, - { "id": "t_tree_deadpine_season_summer", "fg": 8358, "bg": 6853 }, - { "id": "t_tree_deadpine_season_autumn", "fg": 8358, "bg": 6851 }, - { "id": "t_tree_deadpine_season_winter", "fg": 8358, "bg": 6850 }, - { "id": "t_tree_hickory", "fg": 8360, "bg": 6852 }, - { "id": "t_tree_hickory_season_summer", "fg": 8360, "bg": 6853 }, - { "id": "t_tree_hickory_season_autumn", "fg": 8360, "bg": 6851 }, - { "id": "t_tree_hickory_season_winter", "fg": 8359, "bg": 6850 }, - { "id": "t_tree_hickory_dead", "fg": 8359, "bg": 6852 }, - { "id": "t_tree_hickory_dead_season_summer", "fg": 8359, "bg": 6853 }, - { "id": "t_tree_hickory_dead_season_autumn", "fg": 8359, "bg": 6851 }, - { "id": "t_tree_hickory_dead_season_winter", "fg": 8359, "bg": 6850 } + "fg": 6980, + "bg": 6947 + }, + { "id": "t_tree_chestnut", "fg": 8453, "bg": 6949 }, + { "id": "t_tree_chestnut_season_summer", "fg": 8452, "bg": 6950 }, + { "id": "t_tree_chestnut_season_autumn", "fg": 8452, "bg": 6948 }, + { "id": "t_tree_chestnut_season_winter", "fg": 8452, "bg": 6947 }, + { "id": "t_tree_pine", "fg": 8457, "bg": 6949 }, + { "id": "t_tree_pine_season_summer", "fg": 8457, "bg": 6950 }, + { "id": "t_tree_pine_season_autumn", "fg": 8457, "bg": 6948 }, + { "id": "t_tree_pine_season_winter", "fg": 8457, "bg": 6947 }, + { "id": "t_tree_deadpine", "fg": 8454, "bg": 6949 }, + { "id": "t_tree_deadpine_season_summer", "fg": 8454, "bg": 6950 }, + { "id": "t_tree_deadpine_season_autumn", "fg": 8454, "bg": 6948 }, + { "id": "t_tree_deadpine_season_winter", "fg": 8454, "bg": 6947 }, + { "id": "t_tree_hickory", "fg": 8456, "bg": 6949 }, + { "id": "t_tree_hickory_season_summer", "fg": 8456, "bg": 6950 }, + { "id": "t_tree_hickory_season_autumn", "fg": 8456, "bg": 6948 }, + { "id": "t_tree_hickory_season_winter", "fg": 8455, "bg": 6947 }, + { "id": "t_tree_hickory_dead", "fg": 8455, "bg": 6949 }, + { "id": "t_tree_hickory_dead_season_summer", "fg": 8455, "bg": 6950 }, + { "id": "t_tree_hickory_dead_season_autumn", "fg": 8455, "bg": 6948 }, + { "id": "t_tree_hickory_dead_season_winter", "fg": 8455, "bg": 6947 } ] }, { diff --git a/gfx/ChibiUltica/widemonsters.png b/gfx/ChibiUltica/widemonsters.png index 0249bd82ed7d8..f7fabe1c78399 100644 Binary files a/gfx/ChibiUltica/widemonsters.png and b/gfx/ChibiUltica/widemonsters.png differ diff --git a/gfx/MshockXotto+/fillernormal.png b/gfx/MshockXotto+/fillernormal.png index 5105e896c956f..57b7cf502a35a 100644 Binary files a/gfx/MshockXotto+/fillernormal.png and b/gfx/MshockXotto+/fillernormal.png differ diff --git a/gfx/MshockXotto+/fillertall.png b/gfx/MshockXotto+/fillertall.png index 9e5fdddffa50d..eb876a98a3df3 100644 Binary files a/gfx/MshockXotto+/fillertall.png and b/gfx/MshockXotto+/fillertall.png differ diff --git a/gfx/MshockXotto+/large.png b/gfx/MshockXotto+/large.png index c9970adb8c23e..20d8fbf76bf67 100644 Binary files a/gfx/MshockXotto+/large.png and b/gfx/MshockXotto+/large.png differ diff --git a/gfx/MshockXotto+/small.png b/gfx/MshockXotto+/small.png index b1851dcfb51e6..14bc6494e2524 100644 Binary files a/gfx/MshockXotto+/small.png and b/gfx/MshockXotto+/small.png differ diff --git a/gfx/MshockXotto+/tall.png b/gfx/MshockXotto+/tall.png index f520c3fe437be..659ecad85b027 100644 Binary files a/gfx/MshockXotto+/tall.png and b/gfx/MshockXotto+/tall.png differ diff --git a/gfx/MshockXotto+/tile_config.json b/gfx/MshockXotto+/tile_config.json index 509ad23966347..86b42276fdb6a 100644 --- a/gfx/MshockXotto+/tile_config.json +++ b/gfx/MshockXotto+/tile_config.json @@ -7,8 +7,8 @@ "file": "tiles.png", "//": "range 1 to 5519", "tiles": [ - { "id": [ "player_female", "npc_female" ], "fg": 1, "rotates": false, "bg": 3158 }, - { "id": [ "player_male", "npc_male" ], "fg": 2, "rotates": false, "bg": 3158 }, + { "id": [ "player_female", "npc_female" ], "fg": 1, "rotates": false, "bg": 3161 }, + { "id": [ "player_male", "npc_male" ], "fg": 2, "rotates": false, "bg": 3161 }, { "id": "overlay_female_mutation_active_bio_ads", "fg": 3, "rotates": false }, { "id": "overlay_female_mutation_active_bio_alarm", "fg": 4, "rotates": false }, { "id": "overlay_female_mutation_active_bio_cloak", "fg": 5, "rotates": false }, @@ -375,7 +375,7 @@ { "id": "overlay_wielded_bomblet_launcher_rotary", "fg": 377, "rotates": false }, { "id": "overlay_wielded_bomblet_launcher_single", "fg": 378, "rotates": false }, { "id": "overlay_wielded_bowling_axe", "fg": 328, "rotates": false }, - { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 1686, "rotates": false }, + { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 1687, "rotates": false }, { "id": "overlay_wielded_briefcase_smg", "fg": 379, "rotates": false }, { "id": "overlay_wielded_broadfire_off", "fg": 454, "rotates": false }, { "id": "overlay_wielded_broadfire_on", "fg": 455, "rotates": false }, @@ -1041,7 +1041,7 @@ { "id": "overlay_worn_e_handcuffs", "fg": 464, "rotates": false }, { "id": [ "overlay_worn_silver_ear", "overlay_worn_platinum_ear", "overlay_worn_pearl_ear" ], - "fg": 920, + "fg": 921, "rotates": false }, { "id": "overlay_worn_elbow_pads", "fg": 657, "rotates": false }, @@ -1184,7 +1184,7 @@ { "id": "overlay_worn_jacket_leather_red", "fg": 722, "rotates": false }, { "id": "overlay_worn_jacket_light", "fg": 723, "rotates": false }, { "id": "overlay_worn_jacket_windbreaker", "fg": 724, "rotates": false }, - { "id": "overlay_worn_jade_brooch", "fg": 918, "rotates": false }, + { "id": "overlay_worn_jade_brooch", "fg": 919, "rotates": false }, { "id": "overlay_worn_jeans", "fg": 725, "rotates": false }, { "id": "overlay_worn_jeans_red", "fg": 726, "rotates": false }, { "id": "overlay_worn_jedi_cloak", "fg": 727, "rotates": false }, @@ -1317,9 +1317,9 @@ { "id": "overlay_worn_patchwork_scarf_loose", "fg": 543, "rotates": false }, { "id": "overlay_worn_peacoat", "fg": 788, "rotates": false }, { "id": "overlay_worn_plastic_shopping_bag", "fg": 789, "rotates": false }, - { "id": "overlay_worn_platinum_locket", "fg": 921, "rotates": false }, - { "id": "overlay_worn_platinum_necklace", "fg": 922, "rotates": false }, - { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 923, "rotates": false }, + { "id": "overlay_worn_platinum_locket", "fg": 922, "rotates": false }, + { "id": "overlay_worn_platinum_necklace", "fg": 923, "rotates": false }, + { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 924, "rotates": false }, { "id": "overlay_worn_poncho", "fg": 790, "rotates": false }, { "id": "overlay_worn_postman_hat", "fg": 791, "rotates": false }, { "id": "overlay_worn_postman_shorts", "fg": 792, "rotates": false }, @@ -1336,13 +1336,13 @@ { "id": "overlay_worn_quiver_birchbark", "fg": 801, "rotates": false }, { "id": "overlay_worn_quiver_large", "fg": 802, "rotates": false }, { "id": "overlay_worn_quiver_large_birchbark", "fg": 802, "rotates": false }, - { "id": "overlay_worn_rebreather", "fg": 924, "rotates": false }, - { "id": "overlay_worn_rebreather_xl", "fg": 924, "rotates": false }, + { "id": "overlay_worn_rebreather", "fg": 925, "rotates": false }, + { "id": "overlay_worn_rebreather_xl", "fg": 925, "rotates": false }, { "id": "overlay_worn_revenant_crown", "fg": 536, "rotates": false }, { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 891, "rotates": false }, - { "id": [ "overlay_worn_ring_engagement" ], "fg": 925, "rotates": false }, - { "id": "overlay_worn_ring_purity", "fg": 926, "rotates": false }, - { "id": "overlay_worn_ring_signet", "fg": 927, "rotates": false }, + { "id": [ "overlay_worn_ring_engagement" ], "fg": 926, "rotates": false }, + { "id": "overlay_worn_ring_purity", "fg": 927, "rotates": false }, + { "id": "overlay_worn_ring_signet", "fg": 928, "rotates": false }, { "id": "overlay_worn_rm13_armor", "fg": 549, "rotates": false }, { "id": "overlay_worn_rm13_armor_on", "fg": 537, "rotates": false }, { "id": "overlay_worn_robe", "fg": 803, "rotates": false }, @@ -1372,9 +1372,9 @@ { "id": "overlay_worn_shorts", "fg": 812, "rotates": false }, { "id": "overlay_worn_shorts_cargo", "fg": 813, "rotates": false }, { "id": "overlay_worn_shorts_denim", "fg": 792, "rotates": false }, - { "id": "overlay_worn_silver_medal", "fg": 929, "rotates": false }, - { "id": "overlay_worn_silver_necklace", "fg": 930, "rotates": false }, - { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 931, "rotates": false }, + { "id": "overlay_worn_silver_medal", "fg": 930, "rotates": false }, + { "id": "overlay_worn_silver_necklace", "fg": 931, "rotates": false }, + { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 932, "rotates": false }, { "id": "overlay_worn_skinny_tie", "fg": 814, "rotates": false }, { "id": "overlay_worn_skirt", "fg": 815, "rotates": false }, { "id": "overlay_worn_skirt_leather", "fg": 816, "rotates": false }, @@ -1392,7 +1392,7 @@ { "id": "overlay_worn_slingpack", "fg": 806, "rotates": false }, { "id": "overlay_worn_slippers", "fg": 822, "rotates": false }, { "id": "overlay_worn_sneakers", "fg": 823, "rotates": false }, - { "id": "overlay_worn_snuggie", "fg": 933, "rotates": false }, + { "id": "overlay_worn_snuggie", "fg": 934, "rotates": false }, { "id": "overlay_worn_sockmitts", "fg": 747, "rotates": false }, { "id": "overlay_worn_socks", "fg": 824, "rotates": false }, { "id": "overlay_worn_socks_bag", "fg": 824, "rotates": false }, @@ -1408,7 +1408,7 @@ { "id": "overlay_worn_stomach_sealed", "fg": 511, "rotates": false }, { "id": "overlay_worn_straw_basket", "fg": 829, "rotates": false }, { "id": "overlay_worn_straw_sandals", "fg": 661, "rotates": false }, - { "id": "overlay_worn_striped_pants", "fg": 934, "rotates": false }, + { "id": "overlay_worn_striped_pants", "fg": 935, "rotates": false }, { "id": "overlay_worn_striped_shirt", "fg": 830, "rotates": false }, { "id": "overlay_worn_subsuit_xl", "fg": 854, "rotates": false }, { "id": "overlay_worn_suit", "fg": 831, "rotates": false }, @@ -1432,7 +1432,7 @@ { "id": "overlay_worn_survivor_vest", "fg": 840, "rotates": false }, { "id": "overlay_worn_swag_bag", "fg": 843, "rotates": false }, { "id": "overlay_worn_swat_armor", "fg": 844, "rotates": false }, - { "id": "overlay_worn_swat_badge_swat", "fg": 938, "rotates": false }, + { "id": "overlay_worn_swat_badge_swat", "fg": 939, "rotates": false }, { "id": "overlay_worn_sweater", "fg": 845, "rotates": false }, { "id": "overlay_worn_sweatshirt", "fg": 846, "rotates": false }, { "id": "overlay_worn_swim_fins", "fg": 847, "rotates": false }, @@ -1475,15 +1475,15 @@ { "id": "overlay_worn_vest_leather", "fg": 865, "rotates": false }, { "id": "overlay_worn_vest_leather_mod", "fg": 865, "rotates": false }, { "id": "overlay_worn_waistcoat", "fg": 866, "rotates": false }, - { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 928, "rotates": false }, + { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 929, "rotates": false }, { "id": "overlay_worn_gold_watch", "fg": 917, "rotates": false }, { "id": "overlay_worn_waterskin2", "fg": 511, "rotates": false }, { "id": "overlay_worn_waterskin3", "fg": 511, "rotates": false }, { "id": "overlay_worn_waterskin", "fg": 511, "rotates": false }, { "id": "overlay_worn_wearable_light", "fg": 547, "rotates": false }, { "id": "overlay_worn_wearable_light_on", "fg": 548, "rotates": false }, - { "id": "overlay_worn_welding_mask", "fg": 939, "rotates": false }, - { "id": "overlay_worn_welding_mask_crude", "fg": 940, "rotates": false }, + { "id": "overlay_worn_welding_mask", "fg": 940, "rotates": false }, + { "id": "overlay_worn_welding_mask_crude", "fg": 941, "rotates": false }, { "id": "overlay_worn_wetsuit", "fg": 867, "rotates": false }, { "id": "overlay_worn_wetsuit_booties", "fg": 868, "rotates": false }, { "id": "overlay_worn_wetsuit_gloves", "fg": 673, "rotates": false }, @@ -1495,830 +1495,830 @@ { "id": "overlay_worn_wolfsuit", "fg": 873, "rotates": false }, { "id": "overlay_worn_wool_hoodie", "fg": 724, "rotates": false }, { "id": "overlay_worn_wool_suit", "fg": 831, "rotates": false }, - { "id": "overlay_worn_wristwatch", "fg": 941, "rotates": false }, + { "id": "overlay_worn_wristwatch", "fg": 942, "rotates": false }, { "id": "overlay_worn_wsurvivor_suit", "fg": 874, "rotates": false }, { "id": "overlay_worn_xlsurvivor_suit", "fg": 839, "rotates": false }, { "id": "overlay_worn_zubon_gi", "fg": 786, "rotates": false }, - { "id": "fd_acid_vent", "bg": 944, "rotates": false }, - { "id": "fd_bees", "fg": 1041, "rotates": false }, + { "id": "fd_acid_vent", "bg": 945, "rotates": false }, + { "id": "fd_bees", "fg": 1042, "rotates": false }, { "id": "fd_bile", - "fg": 945, + "fg": 946, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 946 }, - { "id": "corner", "fg": 947 }, - { "id": "edge", "fg": 948 }, - { "id": "t_connection", "fg": 950 }, - { "id": "end_piece", "fg": 949 }, - { "id": "unconnected", "fg": 945 } + { "id": "center", "fg": 947 }, + { "id": "corner", "fg": 948 }, + { "id": "edge", "fg": 949 }, + { "id": "t_connection", "fg": 951 }, + { "id": "end_piece", "fg": 950 }, + { "id": "unconnected", "fg": 946 } ] }, { "id": "fd_blood", - "bg": 1042, + "bg": 1043, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1042 }, - { "id": "corner", "fg": 951 }, - { "id": "edge", "fg": 952 }, - { "id": "t_connection", "fg": 966 }, - { "id": "end_piece", "fg": 953 }, - { "id": "unconnected", "fg": 967 } + { "id": "center", "fg": 1043 }, + { "id": "corner", "fg": 952 }, + { "id": "edge", "fg": 953 }, + { "id": "t_connection", "fg": 967 }, + { "id": "end_piece", "fg": 954 }, + { "id": "unconnected", "fg": 968 } ] }, { "id": "fd_blood_insect", - "fg": 954, + "fg": 955, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 955 }, - { "id": "corner", "fg": 956 }, - { "id": "edge", "fg": 957 }, - { "id": "t_connection", "fg": 959 }, - { "id": "end_piece", "fg": 958 }, - { "id": "unconnected", "fg": 954 } + { "id": "center", "fg": 956 }, + { "id": "corner", "fg": 957 }, + { "id": "edge", "fg": 958 }, + { "id": "t_connection", "fg": 960 }, + { "id": "end_piece", "fg": 959 }, + { "id": "unconnected", "fg": 955 } ] }, { "id": "fd_blood_invertebrate", - "fg": 960, + "fg": 961, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 961 }, - { "id": "corner", "fg": 962 }, - { "id": "edge", "fg": 963 }, - { "id": "t_connection", "fg": 965 }, - { "id": "end_piece", "fg": 964 }, - { "id": "unconnected", "fg": 960 } + { "id": "center", "fg": 962 }, + { "id": "corner", "fg": 963 }, + { "id": "edge", "fg": 964 }, + { "id": "t_connection", "fg": 966 }, + { "id": "end_piece", "fg": 965 }, + { "id": "unconnected", "fg": 961 } ] }, { "id": "fd_blood_veggy", - "fg": 968, + "fg": 969, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 969 }, - { "id": "corner", "fg": 970 }, - { "id": "edge", "fg": 971 }, - { "id": "t_connection", "fg": 973 }, - { "id": "end_piece", "fg": 972 }, - { "id": "unconnected", "fg": 968 } + { "id": "center", "fg": 970 }, + { "id": "corner", "fg": 971 }, + { "id": "edge", "fg": 972 }, + { "id": "t_connection", "fg": 974 }, + { "id": "end_piece", "fg": 973 }, + { "id": "unconnected", "fg": 969 } ] }, { "id": "fd_cigsmoke", - "fg": 1028, + "fg": 1029, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 974 }, - { "id": "corner", "fg": 975 }, - { "id": "edge", "fg": 976 }, - { "id": "t_connection", "fg": 978 }, - { "id": "end_piece", "fg": 977 }, - { "id": "unconnected", "fg": 979 } + { "id": "center", "fg": 975 }, + { "id": "corner", "fg": 976 }, + { "id": "edge", "fg": 977 }, + { "id": "t_connection", "fg": 979 }, + { "id": "end_piece", "fg": 978 }, + { "id": "unconnected", "fg": 980 } ] }, { "id": "fd_cracksmoke", - "fg": 1028, + "fg": 1029, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 974 }, - { "id": "corner", "fg": 975 }, - { "id": "edge", "fg": 976 }, - { "id": "t_connection", "fg": 978 }, - { "id": "end_piece", "fg": 977 }, - { "id": "unconnected", "fg": 979 } + { "id": "center", "fg": 975 }, + { "id": "corner", "fg": 976 }, + { "id": "edge", "fg": 977 }, + { "id": "t_connection", "fg": 979 }, + { "id": "end_piece", "fg": 978 }, + { "id": "unconnected", "fg": 980 } ] }, - { "id": "fd_dazzling", "fg": 980 }, + { "id": "fd_dazzling", "fg": 981 }, { "id": "fd_electricity", - "fg": 981, + "fg": 982, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 982 }, - { "id": "unconnected", "fg": 982 }, - { "id": "corner", "fg": 983 }, - { "id": "edge", "fg": 984 }, - { "id": "end_piece", "fg": 985 }, - { "id": "t_connection", "fg": 986 } + { "id": "center", "fg": 983 }, + { "id": "unconnected", "fg": 983 }, + { "id": "corner", "fg": 984 }, + { "id": "edge", "fg": 985 }, + { "id": "end_piece", "fg": 986 }, + { "id": "t_connection", "fg": 987 } ] }, - { "id": "fd_fatigue", "fg": 987 }, + { "id": "fd_fatigue", "fg": 988 }, { "id": "fd_fire", - "bg": 1043, + "bg": 1044, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 988, "bg": 1044 }, - { "id": "corner", "fg": 989, "bg": 1044 }, - { "id": "edge", "fg": 990, "bg": 1044 }, - { "id": "t_connection", "fg": 992, "bg": 1044 }, - { "id": "end_piece", "fg": 991, "bg": 1044 }, - { "id": "unconnected", "fg": 993, "bg": 1044 } + { "id": "center", "fg": 989, "bg": 1045 }, + { "id": "corner", "fg": 990, "bg": 1045 }, + { "id": "edge", "fg": 991, "bg": 1045 }, + { "id": "t_connection", "fg": 993, "bg": 1045 }, + { "id": "end_piece", "fg": 992, "bg": 1045 }, + { "id": "unconnected", "fg": 994, "bg": 1045 } ] }, - { "id": [ "fd_fire_vent", "testflames" ], "bg": 1043, "rotates": false }, + { "id": [ "fd_fire_vent", "testflames" ], "bg": 1044, "rotates": false }, { "id": "fd_flame_burst", - "bg": 1045, + "bg": 1046, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 994, "bg": 1044 }, - { "id": "corner", "fg": 995, "bg": 1044 }, - { "id": "edge", "fg": 996, "bg": 1044 }, - { "id": "t_connection", "fg": 998, "bg": 1044 }, - { "id": "end_piece", "fg": 997, "bg": 1044 }, - { "id": "unconnected", "fg": 999, "bg": 1044 } + { "id": "center", "fg": 995, "bg": 1045 }, + { "id": "corner", "fg": 996, "bg": 1045 }, + { "id": "edge", "fg": 997, "bg": 1045 }, + { "id": "t_connection", "fg": 999, "bg": 1045 }, + { "id": "end_piece", "fg": 998, "bg": 1045 }, + { "id": "unconnected", "fg": 1000, "bg": 1045 } ] }, - { "id": "fd_fungal_haze", "bg": 1046 }, - { "id": "fd_fungicidal_gas", "bg": 943, "rotates": false }, - { "id": "fd_gas_vent", "bg": 1047 }, - { "id": "fd_gibs_flesh", "fg": 1000 }, + { "id": "fd_fungal_haze", "bg": 1047 }, + { "id": "fd_fungicidal_gas", "bg": 944, "rotates": false }, + { "id": "fd_gas_vent", "bg": 1048 }, + { "id": "fd_gibs_flesh", "fg": 1001 }, { "id": "fd_gibs_insect", - "fg": 1001, + "fg": 1002, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1002 }, - { "id": "corner", "fg": 1003 }, - { "id": "edge", "fg": 1004 }, - { "id": "t_connection", "fg": 1006 }, - { "id": "end_piece", "fg": 1005 }, - { "id": "unconnected", "fg": 1001 } + { "id": "center", "fg": 1003 }, + { "id": "corner", "fg": 1004 }, + { "id": "edge", "fg": 1005 }, + { "id": "t_connection", "fg": 1007 }, + { "id": "end_piece", "fg": 1006 }, + { "id": "unconnected", "fg": 1002 } ] }, { "id": "fd_gibs_invertebrate", - "fg": 1007, + "fg": 1008, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1008 }, - { "id": "corner", "fg": 1009 }, - { "id": "edge", "fg": 1010 }, - { "id": "t_connection", "fg": 1012 }, - { "id": "end_piece", "fg": 1011 }, - { "id": "unconnected", "fg": 1007 } + { "id": "center", "fg": 1009 }, + { "id": "corner", "fg": 1010 }, + { "id": "edge", "fg": 1011 }, + { "id": "t_connection", "fg": 1013 }, + { "id": "end_piece", "fg": 1012 }, + { "id": "unconnected", "fg": 1008 } ] }, - { "id": "fd_gibs_veggy", "fg": 1013 }, + { "id": "fd_gibs_veggy", "fg": 1014 }, { "id": "fd_incendiary", - "fg": 1014, + "fg": 1015, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1015 }, - { "id": "corner", "fg": 1016 }, - { "id": "edge", "fg": 1017 }, - { "id": "t_connection", "fg": 1019 }, - { "id": "end_piece", "fg": 1018 }, - { "id": "unconnected", "fg": 1020 } + { "id": "center", "fg": 1016 }, + { "id": "corner", "fg": 1017 }, + { "id": "edge", "fg": 1018 }, + { "id": "t_connection", "fg": 1020 }, + { "id": "end_piece", "fg": 1019 }, + { "id": "unconnected", "fg": 1021 } ] }, - { "id": "fd_laser", "bg": 1048 }, + { "id": "fd_laser", "bg": 1049 }, { "id": "fd_methsmoke", - "fg": 1028, + "fg": 1029, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 974 }, - { "id": "corner", "fg": 975 }, - { "id": "edge", "fg": 976 }, - { "id": "t_connection", "fg": 978 }, - { "id": "end_piece", "fg": 977 }, - { "id": "unconnected", "fg": 979 } + { "id": "center", "fg": 975 }, + { "id": "corner", "fg": 976 }, + { "id": "edge", "fg": 977 }, + { "id": "t_connection", "fg": 979 }, + { "id": "end_piece", "fg": 978 }, + { "id": "unconnected", "fg": 980 } ] }, - { "id": "fd_nuke_gas", "fg": 1047 }, - { "id": "fd_plasma", "fg": 1021, "rotates": false }, - { "id": "fd_push_items", "bg": 979 }, + { "id": "fd_nuke_gas", "fg": 1048 }, + { "id": "fd_plasma", "fg": 1022, "rotates": false }, + { "id": "fd_push_items", "bg": 980 }, { "id": "fd_relax_gas", - "fg": 1028, + "fg": 1029, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1022 }, - { "id": "corner", "fg": 1023 }, - { "id": "edge", "fg": 1024 }, - { "id": "end_piece", "fg": 1025 }, - { "id": "t_connection", "fg": 1026 }, - { "id": "unconnected", "fg": 1027 } + { "id": "center", "fg": 1023 }, + { "id": "corner", "fg": 1024 }, + { "id": "edge", "fg": 1025 }, + { "id": "end_piece", "fg": 1026 }, + { "id": "t_connection", "fg": 1027 }, + { "id": "unconnected", "fg": 1028 } ] }, - { "id": "fd_rubble", "bg": 1049, "rotates": false }, - { "id": "fd_sap", "bg": 1050, "rotates": false }, - { "id": "fd_shock_vent", "bg": 981, "rotates": false }, - { "id": "fd_slime", "bg": 944, "rotates": false }, - { "id": "fd_sludge", "bg": 1050, "rotates": false }, + { "id": "fd_rubble", "bg": 1050, "rotates": false }, + { "id": "fd_sap", "bg": 1051, "rotates": false }, + { "id": "fd_shock_vent", "bg": 982, "rotates": false }, + { "id": "fd_slime", "bg": 945, "rotates": false }, + { "id": "fd_sludge", "bg": 1051, "rotates": false }, { "id": "fd_smoke", - "fg": 1028, + "fg": 1029, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1029 }, - { "id": "corner", "fg": 1030 }, - { "id": "edge", "fg": 1031 }, - { "id": "t_connection", "fg": 1033 }, - { "id": "end_piece", "fg": 1032 }, - { "id": "unconnected", "fg": 1034 } + { "id": "center", "fg": 1030 }, + { "id": "corner", "fg": 1031 }, + { "id": "edge", "fg": 1032 }, + { "id": "t_connection", "fg": 1034 }, + { "id": "end_piece", "fg": 1033 }, + { "id": "unconnected", "fg": 1035 } ] }, - { "id": "fd_spotlight", "fg": 1035, "rotates": false }, - { "id": "fd_tear_gas", "bg": 979 }, - { "id": "fd_toxic_gas", "bg": 1047 }, + { "id": "fd_spotlight", "fg": 1036, "rotates": false }, + { "id": "fd_tear_gas", "bg": 980 }, + { "id": "fd_toxic_gas", "bg": 1048 }, { "id": "fd_web", - "bg": 1051, + "bg": 1052, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1051 }, - { "id": "center", "fg": 1036 }, - { "id": "corner", "fg": 1037 }, - { "id": "edge", "fg": 1038 }, - { "id": "t_connection", "fg": 1040 }, - { "id": "end_piece", "fg": 1039 } + { "id": "unconnected", "fg": 1052 }, + { "id": "center", "fg": 1037 }, + { "id": "corner", "fg": 1038 }, + { "id": "edge", "fg": 1039 }, + { "id": "t_connection", "fg": 1041 }, + { "id": "end_piece", "fg": 1040 } ] }, { "id": "fd_weedsmoke", - "fg": 1028, + "fg": 1029, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1029 }, - { "id": "corner", "fg": 1030 }, - { "id": "edge", "fg": 1031 }, - { "id": "t_connection", "fg": 1033 }, - { "id": "end_piece", "fg": 1032 }, - { "id": "unconnected", "fg": 1034 } + { "id": "center", "fg": 1030 }, + { "id": "corner", "fg": 1031 }, + { "id": "edge", "fg": 1032 }, + { "id": "t_connection", "fg": 1034 }, + { "id": "end_piece", "fg": 1033 }, + { "id": "unconnected", "fg": 1035 } ] }, { "id": "fd_acid", - "fg": 1067, + "fg": 1068, "multitile": true, "additional_tiles": [ { "id": "center", "animated": true, "fg": [ - { "weight": 8, "sprite": 1052 }, - { "weight": 8, "sprite": 1068 }, - { "weight": 8, "sprite": 1084 }, - { "weight": 8, "sprite": 1100 }, - { "weight": 8, "sprite": 1116 }, - { "weight": 8, "sprite": 1132 }, - { "weight": 8, "sprite": 1148 }, - { "weight": 8, "sprite": 1164 } + { "weight": 8, "sprite": 1053 }, + { "weight": 8, "sprite": 1069 }, + { "weight": 8, "sprite": 1085 }, + { "weight": 8, "sprite": 1101 }, + { "weight": 8, "sprite": 1117 }, + { "weight": 8, "sprite": 1133 }, + { "weight": 8, "sprite": 1149 }, + { "weight": 8, "sprite": 1165 } ] }, { "id": "corner", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1054, 1056, 1055, 1053 ] }, - { "weight": 8, "sprite": [ 1070, 1072, 1071, 1069 ] }, - { "weight": 8, "sprite": [ 1086, 1088, 1087, 1085 ] }, - { "weight": 8, "sprite": [ 1102, 1104, 1103, 1101 ] }, - { "weight": 8, "sprite": [ 1118, 1120, 1119, 1117 ] }, - { "weight": 8, "sprite": [ 1134, 1136, 1135, 1133 ] }, - { "weight": 8, "sprite": [ 1150, 1152, 1151, 1149 ] }, - { "weight": 8, "sprite": [ 1166, 1168, 1167, 1165 ] } + { "weight": 8, "sprite": [ 1055, 1057, 1056, 1054 ] }, + { "weight": 8, "sprite": [ 1071, 1073, 1072, 1070 ] }, + { "weight": 8, "sprite": [ 1087, 1089, 1088, 1086 ] }, + { "weight": 8, "sprite": [ 1103, 1105, 1104, 1102 ] }, + { "weight": 8, "sprite": [ 1119, 1121, 1120, 1118 ] }, + { "weight": 8, "sprite": [ 1135, 1137, 1136, 1134 ] }, + { "weight": 8, "sprite": [ 1151, 1153, 1152, 1150 ] }, + { "weight": 8, "sprite": [ 1167, 1169, 1168, 1166 ] } ] }, { "id": "t_connection", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1064, 1066, 1065, 1063 ] }, - { "weight": 8, "sprite": [ 1080, 1082, 1081, 1079 ] }, - { "weight": 8, "sprite": [ 1096, 1098, 1097, 1095 ] }, - { "weight": 8, "sprite": [ 1112, 1114, 1113, 1111 ] }, - { "weight": 8, "sprite": [ 1128, 1130, 1129, 1127 ] }, - { "weight": 8, "sprite": [ 1144, 1146, 1145, 1143 ] }, - { "weight": 8, "sprite": [ 1160, 1162, 1161, 1159 ] }, - { "weight": 8, "sprite": [ 1176, 1178, 1177, 1175 ] } + { "weight": 8, "sprite": [ 1065, 1067, 1066, 1064 ] }, + { "weight": 8, "sprite": [ 1081, 1083, 1082, 1080 ] }, + { "weight": 8, "sprite": [ 1097, 1099, 1098, 1096 ] }, + { "weight": 8, "sprite": [ 1113, 1115, 1114, 1112 ] }, + { "weight": 8, "sprite": [ 1129, 1131, 1130, 1128 ] }, + { "weight": 8, "sprite": [ 1145, 1147, 1146, 1144 ] }, + { "weight": 8, "sprite": [ 1161, 1163, 1162, 1160 ] }, + { "weight": 8, "sprite": [ 1177, 1179, 1178, 1176 ] } ] }, { "id": "edge", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1058, 1057 ] }, - { "weight": 8, "sprite": [ 1074, 1073 ] }, - { "weight": 8, "sprite": [ 1090, 1089 ] }, - { "weight": 8, "sprite": [ 1106, 1105 ] }, - { "weight": 8, "sprite": [ 1122, 1121 ] }, - { "weight": 8, "sprite": [ 1138, 1137 ] }, - { "weight": 8, "sprite": [ 1154, 1153 ] }, - { "weight": 8, "sprite": [ 1170, 1169 ] } + { "weight": 8, "sprite": [ 1059, 1058 ] }, + { "weight": 8, "sprite": [ 1075, 1074 ] }, + { "weight": 8, "sprite": [ 1091, 1090 ] }, + { "weight": 8, "sprite": [ 1107, 1106 ] }, + { "weight": 8, "sprite": [ 1123, 1122 ] }, + { "weight": 8, "sprite": [ 1139, 1138 ] }, + { "weight": 8, "sprite": [ 1155, 1154 ] }, + { "weight": 8, "sprite": [ 1171, 1170 ] } ] }, { "id": "end_piece", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1060, 1062, 1061, 1059 ] }, - { "weight": 8, "sprite": [ 1076, 1078, 1077, 1075 ] }, - { "weight": 8, "sprite": [ 1092, 1094, 1093, 1091 ] }, - { "weight": 8, "sprite": [ 1108, 1110, 1109, 1107 ] }, - { "weight": 8, "sprite": [ 1124, 1126, 1125, 1123 ] }, - { "weight": 8, "sprite": [ 1140, 1142, 1141, 1139 ] }, - { "weight": 8, "sprite": [ 1156, 1158, 1157, 1155 ] }, - { "weight": 8, "sprite": [ 1172, 1174, 1173, 1171 ] } + { "weight": 8, "sprite": [ 1061, 1063, 1062, 1060 ] }, + { "weight": 8, "sprite": [ 1077, 1079, 1078, 1076 ] }, + { "weight": 8, "sprite": [ 1093, 1095, 1094, 1092 ] }, + { "weight": 8, "sprite": [ 1109, 1111, 1110, 1108 ] }, + { "weight": 8, "sprite": [ 1125, 1127, 1126, 1124 ] }, + { "weight": 8, "sprite": [ 1141, 1143, 1142, 1140 ] }, + { "weight": 8, "sprite": [ 1157, 1159, 1158, 1156 ] }, + { "weight": 8, "sprite": [ 1173, 1175, 1174, 1172 ] } ] }, { "id": "unconnected", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1067, 1067 ] }, - { "weight": 8, "sprite": [ 1083, 1083 ] }, - { "weight": 8, "sprite": [ 1099, 1099 ] }, - { "weight": 8, "sprite": [ 1115, 1115 ] }, - { "weight": 8, "sprite": [ 1131, 1131 ] }, - { "weight": 8, "sprite": [ 1147, 1147 ] }, - { "weight": 8, "sprite": [ 1163, 1163 ] }, - { "weight": 8, "sprite": [ 1179, 1179 ] } + { "weight": 8, "sprite": [ 1068, 1068 ] }, + { "weight": 8, "sprite": [ 1084, 1084 ] }, + { "weight": 8, "sprite": [ 1100, 1100 ] }, + { "weight": 8, "sprite": [ 1116, 1116 ] }, + { "weight": 8, "sprite": [ 1132, 1132 ] }, + { "weight": 8, "sprite": [ 1148, 1148 ] }, + { "weight": 8, "sprite": [ 1164, 1164 ] }, + { "weight": 8, "sprite": [ 1180, 1180 ] } ] } ] }, { "id": "fd_hot_air_sauna", - "fg": 1195, + "fg": 1196, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1180 }, - { "id": "corner", "fg": [ 1182, 1184, 1183, 1181 ] }, - { "id": "t_connection", "fg": [ 1192, 1194, 1193, 1191 ] }, - { "id": "edge", "fg": [ 1186, 1185 ] }, - { "id": "end_piece", "fg": [ 1188, 1190, 1189, 1187 ] }, - { "id": "unconnected", "fg": [ 1195, 1195 ] } + { "id": "center", "fg": 1181 }, + { "id": "corner", "fg": [ 1183, 1185, 1184, 1182 ] }, + { "id": "t_connection", "fg": [ 1193, 1195, 1194, 1192 ] }, + { "id": "edge", "fg": [ 1187, 1186 ] }, + { "id": "end_piece", "fg": [ 1189, 1191, 1190, 1188 ] }, + { "id": "unconnected", "fg": [ 1196, 1196 ] } ] }, - { "id": "f_air_conditioner", "fg": 1196, "bg": 3656, "rotates": false }, - { "id": "f_arcade_machine", "fg": 1197, "rotates": false }, - { "id": "f_armchair", "fg": 1198, "rotates": false }, - { "id": [ "f_ash", "ash" ], "fg": 1199, "rotates": false }, - { "id": "f_ball_mach", "fg": 1200, "rotates": false }, - { "id": "f_barricade_road", "fg": 1201, "rotates": false }, + { "id": "f_air_conditioner", "fg": 1197, "bg": 3663, "rotates": false }, + { "id": "f_arcade_machine", "fg": 1198, "rotates": false }, + { "id": "f_armchair", "fg": 1199, "rotates": false }, + { "id": [ "f_ash", "ash" ], "fg": 1200, "rotates": false }, + { "id": "f_ball_mach", "fg": 1201, "rotates": false }, + { "id": "f_barricade_road", "fg": 1202, "rotates": false }, { "id": "f_bathtub", - "fg": 1202, + "fg": 1203, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1202 }, - { "id": "center", "fg": 1203 }, - { "id": "corner", "fg": 1204 }, - { "id": "edge", "fg": 1205 }, - { "id": "end_piece", "fg": 1206 }, - { "id": "t_connection", "fg": 1207 } + { "id": "unconnected", "fg": 1203 }, + { "id": "center", "fg": 1204 }, + { "id": "corner", "fg": 1205 }, + { "id": "edge", "fg": 1206 }, + { "id": "end_piece", "fg": 1207 }, + { "id": "t_connection", "fg": 1208 } ] }, { "id": "f_bed", - "fg": 1208, + "fg": 1209, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1208 }, - { "id": "corner", "fg": 1209 }, - { "id": "edge", "fg": 1210 }, - { "id": "end_piece", "fg": 1211 }, - { "id": "t_connection", "fg": 1212 }, - { "id": "unconnected", "fg": 1213 } - ] - }, - { "id": "f_bench", "fg": 4779, "rotates": true }, - { "id": "f_blade", "fg": 1214, "rotates": false }, - { "id": "f_blade_upright", "fg": 1215, "bg": [ ], "rotates": false }, - { "id": "f_boulder_medium", "fg": 1216, "rotates": false }, - { "id": "f_boulder_small", "fg": 1217, "rotates": false }, - { "id": "f_canvas_floor", "fg": 1236 }, - { "id": "f_cattails", "fg": 1218, "rotates": false }, - { "id": "f_center_groundsheet", "fg": 1236 }, - { "id": "f_chair", "fg": 1219, "rotates": false }, - { "id": "f_clay_kiln", "fg": 1254 }, - { "id": "f_coffin_c", "fg": 1220 }, - { "id": "f_coffin_o", "fg": 1221 }, - { "id": "f_displaycase", "fg": 1222, "rotates": false }, - { "id": "f_displaycase_b", "fg": 1223, "rotates": false }, - { "id": "f_dive_block", "fg": 1224, "rotates": false }, - { "id": "f_dryer", "fg": 1225, "rotates": false }, + { "id": "center", "fg": 1209 }, + { "id": "corner", "fg": 1210 }, + { "id": "edge", "fg": 1211 }, + { "id": "end_piece", "fg": 1212 }, + { "id": "t_connection", "fg": 1213 }, + { "id": "unconnected", "fg": 1214 } + ] + }, + { "id": "f_bench", "fg": 4786, "rotates": true }, + { "id": "f_blade", "fg": 1215, "rotates": false }, + { "id": "f_blade_upright", "fg": 1216, "bg": [ ], "rotates": false }, + { "id": "f_boulder_medium", "fg": 1217, "rotates": false }, + { "id": "f_boulder_small", "fg": 1218, "rotates": false }, + { "id": "f_canvas_floor", "fg": 1237 }, + { "id": "f_cattails", "fg": 1219, "rotates": false }, + { "id": "f_center_groundsheet", "fg": 1237 }, + { "id": "f_chair", "fg": 1220, "rotates": false }, + { "id": "f_clay_kiln", "fg": 1255 }, + { "id": "f_coffin_c", "fg": 1221 }, + { "id": "f_coffin_o", "fg": 1222 }, + { "id": "f_displaycase", "fg": 1223, "rotates": false }, + { "id": "f_displaycase_b", "fg": 1224, "rotates": false }, + { "id": "f_dive_block", "fg": 1225, "rotates": false }, + { "id": "f_dryer", "fg": 1226, "rotates": false }, { "id": "f_dumpster", - "fg": 1226, + "fg": 1227, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1226 }, - { "id": "center", "fg": 1227 }, - { "id": "corner", "fg": 1228 }, - { "id": "edge", "fg": 1229 }, - { "id": "end_piece", "fg": 1230 }, - { "id": "t_connection", "fg": 1231 } - ] - }, - { "id": "f_egg_sackbw", "fg": 1232, "rotates": false }, - { "id": "f_egg_sackcs", "fg": 1232, "rotates": false }, - { "id": "f_egg_sacke", "fg": 1233, "rotates": false }, - { "id": "f_egg_sackws", "fg": 1234, "rotates": false }, - { "id": "f_ergometer", "fg": 1235, "rotates": false }, - { "id": "f_fema_groundsheet", "fg": 1236, "rotates": false }, - { "id": "f_file_cabinet", "fg": 1237, "rotates": false }, - { "id": "f_fireplace", "fg": 1238, "rotates": false }, - { "id": "f_firering", "fg": 1318, "rotates": false }, - { "id": "f_floor_canvas", "fg": 1239, "rotates": false }, - { "id": "f_flower_fungal", "bg": 1339, "rotates": false }, - { "id": "f_forge_rock", "fg": 1238 }, - { "id": "f_fungal_clump", "fg": 1240, "bg": 1339, "rotates": false }, - { "id": "f_fungal_mass", "fg": 1241, "bg": 1339, "rotates": false }, - { "id": "f_glass_fridge", "fg": 1242, "rotates": false }, - { "id": "f_grave_head", "fg": 1243 }, - { "id": "f_grave_monument", "fg": 1244 }, - { "id": "f_grave_stone", "fg": 1245 }, - { "id": "f_grave_stone_old", "fg": 1246 }, - { "id": "f_groundsheet", "fg": 1236, "rotates": false }, - { "id": "f_gun_safe_el", "fg": 1249, "rotates": false }, - { "id": "f_gunsafe_mj", "fg": 1247, "rotates": false }, - { "id": "f_gunsafe_ml", "fg": 1248, "rotates": false }, - { "id": "f_hay", "fg": 1250, "rotates": false }, - { "id": "f_home_furnace", "fg": 1251, "bg": 3656, "rotates": false }, - { "id": "f_indoor_plant", "fg": 1252, "rotates": false }, - { "id": "f_indoor_plant_y", "fg": 1253, "rotates": false }, - { "id": "f_kiln_empty", "fg": 1254 }, - { "id": "f_kiln_full", "fg": 1254, "rotates": false }, - { "id": "f_ladder", "fg": 3484, "rotates": false }, + { "id": "unconnected", "fg": 1227 }, + { "id": "center", "fg": 1228 }, + { "id": "corner", "fg": 1229 }, + { "id": "edge", "fg": 1230 }, + { "id": "end_piece", "fg": 1231 }, + { "id": "t_connection", "fg": 1232 } + ] + }, + { "id": "f_egg_sackbw", "fg": 1233, "rotates": false }, + { "id": "f_egg_sackcs", "fg": 1233, "rotates": false }, + { "id": "f_egg_sacke", "fg": 1234, "rotates": false }, + { "id": "f_egg_sackws", "fg": 1235, "rotates": false }, + { "id": "f_ergometer", "fg": 1236, "rotates": false }, + { "id": "f_fema_groundsheet", "fg": 1237, "rotates": false }, + { "id": "f_file_cabinet", "fg": 1238, "rotates": false }, + { "id": "f_fireplace", "fg": 1239, "rotates": false }, + { "id": "f_firering", "fg": 1319, "rotates": false }, + { "id": "f_floor_canvas", "fg": 1240, "rotates": false }, + { "id": "f_flower_fungal", "bg": 1340, "rotates": false }, + { "id": "f_forge_rock", "fg": 1239 }, + { "id": "f_fungal_clump", "fg": 1241, "bg": 1340, "rotates": false }, + { "id": "f_fungal_mass", "fg": 1242, "bg": 1340, "rotates": false }, + { "id": "f_glass_fridge", "fg": 1243, "rotates": false }, + { "id": "f_grave_head", "fg": 1244 }, + { "id": "f_grave_monument", "fg": 1245 }, + { "id": "f_grave_stone", "fg": 1246 }, + { "id": "f_grave_stone_old", "fg": 1247 }, + { "id": "f_groundsheet", "fg": 1237, "rotates": false }, + { "id": "f_gun_safe_el", "fg": 1250, "rotates": false }, + { "id": "f_gunsafe_mj", "fg": 1248, "rotates": false }, + { "id": "f_gunsafe_ml", "fg": 1249, "rotates": false }, + { "id": "f_hay", "fg": 1251, "rotates": false }, + { "id": "f_home_furnace", "fg": 1252, "bg": 3663, "rotates": false }, + { "id": "f_indoor_plant", "fg": 1253, "rotates": false }, + { "id": "f_indoor_plant_y", "fg": 1254, "rotates": false }, + { "id": "f_kiln_empty", "fg": 1255 }, + { "id": "f_kiln_full", "fg": 1255, "rotates": false }, + { "id": "f_ladder", "fg": 3491, "rotates": false }, { "id": "f_lane", - "fg": 1255, + "fg": 1256, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1255 }, - { "id": "corner", "fg": 1256 }, - { "id": "edge", "fg": 1257 }, - { "id": "end_piece", "fg": 1258 } + { "id": "unconnected", "fg": 1256 }, + { "id": "corner", "fg": 1257 }, + { "id": "edge", "fg": 1258 }, + { "id": "end_piece", "fg": 1259 } ] }, - { "id": "f_large_groundsheet", "fg": 1236 }, - { "id": "f_lilypad", "fg": 1322, "rotates": false }, - { "id": "f_locker", "fg": 1237, "rotates": false }, - { "id": "f_mailbox", "fg": 1320, "rotates": false }, + { "id": "f_large_groundsheet", "fg": 1237 }, + { "id": "f_lilypad", "fg": 1323, "rotates": false }, + { "id": "f_locker", "fg": 1238, "rotates": false }, + { "id": "f_mailbox", "fg": 1321, "rotates": false }, { "id": "f_makeshift_bed", - "fg": 1259, + "fg": 1260, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1260 }, - { "id": "corner", "fg": 1261 }, - { "id": "edge", "fg": 1262 }, - { "id": "end_piece", "fg": 1263 }, - { "id": "t_connection", "fg": 1264 }, - { "id": "unconnected", "fg": 1265 } + { "id": "center", "fg": 1261 }, + { "id": "corner", "fg": 1262 }, + { "id": "edge", "fg": 1263 }, + { "id": "end_piece", "fg": 1264 }, + { "id": "t_connection", "fg": 1265 }, + { "id": "unconnected", "fg": 1266 } ] }, - { "id": "f_mannequin", "fg": 1266, "rotates": false }, - { "id": "f_mutcactus_test", "fg": 1267, "bg": 1340, "rotates": false }, - { "id": "f_piano", "fg": 1336, "rotates": false }, - { "id": "f_pinball_machine", "fg": 1268, "rotates": false }, - { "id": "f_plant_harvest", "fg": 1269, "bg": 3663, "rotates": false }, - { "id": "f_plant_mature", "fg": 1270, "bg": 3663, "rotates": false }, - { "id": "f_plant_seed", "fg": 1271, "bg": 3663, "rotates": false }, - { "id": "f_plant_seedling", "fg": 1272, "bg": 3663, "rotates": false }, + { "id": "f_mannequin", "fg": 1267, "rotates": false }, + { "id": "f_mutcactus_test", "fg": 1268, "bg": 1341, "rotates": false }, + { "id": "f_piano", "fg": 1337, "rotates": false }, + { "id": "f_pinball_machine", "fg": 1269, "rotates": false }, + { "id": "f_plant_harvest", "fg": 1270, "bg": 3670, "rotates": false }, + { "id": "f_plant_mature", "fg": 1271, "bg": 3670, "rotates": false }, + { "id": "f_plant_seed", "fg": 1272, "bg": 3670, "rotates": false }, + { "id": "f_plant_seedling", "fg": 1273, "bg": 3670, "rotates": false }, { "id": "f_pool_table", - "fg": 1273, + "fg": 1274, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 1273 }, { "id": "end_piece", "fg": 1274 }, { "id": "t_connection", "fg": 1275 } ] + "additional_tiles": [ { "id": "corner", "fg": 1274 }, { "id": "end_piece", "fg": 1275 }, { "id": "t_connection", "fg": 1276 } ] }, - { "id": "f_rack", "fg": 1276, "rotates": false }, - { "id": "f_rack_coat", "fg": 1321, "rotates": false }, + { "id": "f_rack", "fg": 1277, "rotates": false }, + { "id": "f_rack_coat", "fg": 1322, "rotates": false }, { "id": "f_recycle_bin", - "fg": 1226, + "fg": 1227, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1226 }, - { "id": "center", "fg": 1227 }, - { "id": "corner", "fg": 1228 }, - { "id": "edge", "fg": 1229 }, - { "id": "end_piece", "fg": 1230 }, - { "id": "t_connection", "fg": 1231 } + { "id": "unconnected", "fg": 1227 }, + { "id": "center", "fg": 1228 }, + { "id": "corner", "fg": 1229 }, + { "id": "edge", "fg": 1230 }, + { "id": "end_piece", "fg": 1231 }, + { "id": "t_connection", "fg": 1232 } ] }, - { "id": "f_robotic_arm", "fg": 3478, "rotates": false }, - { "id": "f_rubble", "fg": 1277, "rotates": false }, + { "id": "f_robotic_arm", "fg": 3485, "rotates": false }, + { "id": "f_rubble", "fg": 1278, "rotates": false }, { "id": "f_rubble_landfill", - "fg": 1323, + "fg": 1324, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1326 }, - { "id": "corner", "fg": 1324 }, - { "id": "edge", "fg": 1328 }, - { "id": "end_piece", "fg": 1327 }, - { "id": "t_connection", "fg": 1325 }, - { "id": "unconnected", "fg": 1323 } + { "id": "center", "fg": 1327 }, + { "id": "corner", "fg": 1325 }, + { "id": "edge", "fg": 1329 }, + { "id": "end_piece", "fg": 1328 }, + { "id": "t_connection", "fg": 1326 }, + { "id": "unconnected", "fg": 1324 } ] }, { "id": "f_rubble_landfill_season_winter", - "fg": 1329, + "fg": 1330, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1332 }, - { "id": "corner", "fg": 1330 }, - { "id": "edge", "fg": 1334 }, - { "id": "end_piece", "fg": 1333 }, - { "id": "t_connection", "fg": 1331 }, - { "id": "unconnected", "fg": 1329 } + { "id": "center", "fg": 1333 }, + { "id": "corner", "fg": 1331 }, + { "id": "edge", "fg": 1335 }, + { "id": "end_piece", "fg": 1334 }, + { "id": "t_connection", "fg": 1332 }, + { "id": "unconnected", "fg": 1330 } ] }, - { "id": "f_rubble_rock", "fg": 1278, "rotates": false }, + { "id": "f_rubble_rock", "fg": 1279, "rotates": false }, { "id": "f_sandbag_half", - "fg": 1319, + "fg": 1320, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1319 }, - { "id": "center", "fg": 1280 }, - { "id": "corner", "fg": 1281 }, - { "id": "edge", "fg": 1282 }, - { "id": "end_piece", "fg": 1283 }, - { "id": "t_connection", "fg": 1284 } + { "id": "unconnected", "fg": 1320 }, + { "id": "center", "fg": 1281 }, + { "id": "corner", "fg": 1282 }, + { "id": "edge", "fg": 1283 }, + { "id": "end_piece", "fg": 1284 }, + { "id": "t_connection", "fg": 1285 } ] }, { "id": "f_sandbag_wall", - "fg": 1279, + "fg": 1280, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1279 }, - { "id": "center", "fg": 1285 }, - { "id": "corner", "fg": 1286 }, - { "id": "edge", "fg": 1287 }, - { "id": "end_piece", "fg": 1288 }, - { "id": "t_connection", "fg": 1289 } + { "id": "unconnected", "fg": 1280 }, + { "id": "center", "fg": 1286 }, + { "id": "corner", "fg": 1287 }, + { "id": "edge", "fg": 1288 }, + { "id": "end_piece", "fg": 1289 }, + { "id": "t_connection", "fg": 1290 } ] }, - { "id": "f_shackle", "fg": 1290 }, - { "id": "f_shower", "fg": 1291, "rotates": false }, - { "id": "f_sign", "fg": 1292, "rotates": false }, - { "id": "f_skin_groundsheet", "fg": 1236 }, - { "id": "f_slab", "fg": 1293 }, - { "id": "f_smoking_rack", "fg": 1294, "rotates": false }, + { "id": "f_shackle", "fg": 1291 }, + { "id": "f_shower", "fg": 1292, "rotates": false }, + { "id": "f_sign", "fg": 1293, "rotates": false }, + { "id": "f_skin_groundsheet", "fg": 1237 }, + { "id": "f_slab", "fg": 1294 }, + { "id": "f_smoking_rack", "fg": 1295, "rotates": false }, { "id": "f_sofa", - "fg": 1295, + "fg": 1296, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1295 }, - { "id": "corner", "fg": 1296 }, - { "id": "edge", "fg": 1297 }, - { "id": "end_piece", "fg": 1298 } + { "id": "unconnected", "fg": 1296 }, + { "id": "corner", "fg": 1297 }, + { "id": "edge", "fg": 1298 }, + { "id": "end_piece", "fg": 1299 } ] }, - { "id": "f_spike", "fg": 1299, "rotates": false }, - { "id": "f_standing_tank", "fg": 3467 }, - { "id": [ "f_statue", "t_sliding_brick_wall_control" ], "fg": 1300, "rotates": false }, - { "id": "f_straw_bed", "fg": 1301, "rotates": false }, - { "id": "f_tank_trap", "fg": 1337, "rotates": false }, - { "id": "f_target", "fg": 1335, "rotates": false }, + { "id": "f_spike", "fg": 1300, "rotates": false }, + { "id": "f_standing_tank", "fg": 3474 }, + { "id": [ "f_statue", "t_sliding_brick_wall_control" ], "fg": 1301, "rotates": false }, + { "id": "f_straw_bed", "fg": 1302, "rotates": false }, + { "id": "f_tank_trap", "fg": 1338, "rotates": false }, + { "id": "f_target", "fg": 1336, "rotates": false }, { "id": "f_tatami", - "fg": 1308, + "fg": 1309, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 1309 }, { "id": "edge", "fg": 1308 }, { "id": "t_connection", "fg": 1310 } ] + "additional_tiles": [ { "id": "corner", "fg": 1310 }, { "id": "edge", "fg": 1309 }, { "id": "t_connection", "fg": 1311 } ] }, - { "id": "f_toilet", "fg": 1311, "rotates": false }, - { "id": "f_trashcan", "fg": 1312, "rotates": false }, - { "id": "f_treadmill", "fg": 1313, "rotates": false }, - { "id": "f_vending_reinforced", "fg": 1314, "rotates": false }, - { "id": "f_wardrobe", "fg": 1338, "rotates": false }, - { "id": "f_washer", "fg": 1315, "rotates": false }, - { "id": "f_water_heater", "fg": 3493, "rotates": true }, - { "id": "f_woodstove", "fg": 1316, "rotates": false }, - { "id": "f_wreckage", "fg": 1317, "rotates": false }, + { "id": "f_toilet", "fg": 1312, "rotates": false }, + { "id": "f_trashcan", "fg": 1313, "rotates": false }, + { "id": "f_treadmill", "fg": 1314, "rotates": false }, + { "id": "f_vending_reinforced", "fg": 1315, "rotates": false }, + { "id": "f_wardrobe", "fg": 1339, "rotates": false }, + { "id": "f_washer", "fg": 1316, "rotates": false }, + { "id": "f_water_heater", "fg": 3500, "rotates": true }, + { "id": "f_woodstove", "fg": 1317, "rotates": false }, + { "id": "f_wreckage", "fg": 1318, "rotates": false }, { "id": "f_counter", - "fg": 1369, + "fg": 1370, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1354 }, - { "id": "corner", "fg": [ 1356, 1358, 1357, 1355 ] }, - { "id": "t_connection", "fg": [ 1366, 1368, 1367, 1365 ] }, - { "id": "edge", "fg": [ 1360, 1359 ] }, - { "id": "end_piece", "fg": [ 1362, 1364, 1363, 1361 ] }, - { "id": "unconnected", "fg": [ 1369, 1369 ] } + { "id": "center", "fg": 1355 }, + { "id": "corner", "fg": [ 1357, 1359, 1358, 1356 ] }, + { "id": "t_connection", "fg": [ 1367, 1369, 1368, 1366 ] }, + { "id": "edge", "fg": [ 1361, 1360 ] }, + { "id": "end_piece", "fg": [ 1363, 1365, 1364, 1362 ] }, + { "id": "unconnected", "fg": [ 1370, 1370 ] } ] }, { "id": "f_cupboard", - "fg": 1385, + "fg": 1386, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1370 }, - { "id": "corner", "fg": [ 1372, 1374, 1373, 1371 ] }, - { "id": "t_connection", "fg": [ 1382, 1384, 1383, 1381 ] }, - { "id": "edge", "fg": [ 1376, 1375 ] }, - { "id": "end_piece", "fg": [ 1378, 1380, 1379, 1377 ] }, - { "id": "unconnected", "fg": [ 1385, 1385 ] } + { "id": "center", "fg": 1371 }, + { "id": "corner", "fg": [ 1373, 1375, 1374, 1372 ] }, + { "id": "t_connection", "fg": [ 1383, 1385, 1384, 1382 ] }, + { "id": "edge", "fg": [ 1377, 1376 ] }, + { "id": "end_piece", "fg": [ 1379, 1381, 1380, 1378 ] }, + { "id": "unconnected", "fg": [ 1386, 1386 ] } ] }, { "id": "f_alien_table", - "fg": 1403, + "fg": 1404, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1388 }, - { "id": "corner", "fg": [ 1390, 1392, 1391, 1389 ] }, - { "id": "t_connection", "fg": [ 1400, 1402, 1401, 1399 ] }, - { "id": "edge", "fg": [ 1394, 1393 ] }, - { "id": "end_piece", "fg": [ 1396, 1398, 1397, 1395 ] }, - { "id": "unconnected", "fg": [ 1403, 1403 ] } + { "id": "center", "fg": 1389 }, + { "id": "corner", "fg": [ 1391, 1393, 1392, 1390 ] }, + { "id": "t_connection", "fg": [ 1401, 1403, 1402, 1400 ] }, + { "id": "edge", "fg": [ 1395, 1394 ] }, + { "id": "end_piece", "fg": [ 1397, 1399, 1398, 1396 ] }, + { "id": "unconnected", "fg": [ 1404, 1404 ] } ] }, { "id": "f_canvas_door", - "fg": 1407, + "fg": 1408, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1407 }, - { "id": "t_connection", "fg": [ 1407, 1406, 1407, 1406 ] }, - { "id": "edge", "fg": [ 1406, 1407 ] }, - { "id": "unconnected", "fg": [ 1407, 1407 ] } + { "id": "center", "fg": 1408 }, + { "id": "t_connection", "fg": [ 1408, 1407, 1408, 1407 ] }, + { "id": "edge", "fg": [ 1407, 1408 ] }, + { "id": "unconnected", "fg": [ 1408, 1408 ] } ] }, { "id": "f_canvas_door_o", - "fg": 1405, + "fg": 1406, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1405 }, - { "id": "t_connection", "fg": [ 1405, 1404, 1405, 1404 ] }, - { "id": "edge", "fg": [ 1404, 1405 ] }, - { "id": "unconnected", "fg": [ 1405, 1405 ] } + { "id": "center", "fg": 1406 }, + { "id": "t_connection", "fg": [ 1406, 1405, 1406, 1405 ] }, + { "id": "edge", "fg": [ 1405, 1406 ] }, + { "id": "unconnected", "fg": [ 1406, 1406 ] } ] }, { "id": "f_canvas_wall", - "fg": 1418, + "fg": 1419, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1418 }, - { "id": "corner", "fg": [ 1409, 1411, 1410, 1408 ] }, - { "id": "t_connection", "fg": [ 1412, 1413, 1412, 1413 ] }, - { "id": "edge", "fg": [ 1413, 1412 ] }, - { "id": "end_piece", "fg": [ 1415, 1417, 1416, 1414 ] }, - { "id": "unconnected", "fg": [ 1418, 1418 ] } + { "id": "center", "fg": 1419 }, + { "id": "corner", "fg": [ 1410, 1412, 1411, 1409 ] }, + { "id": "t_connection", "fg": [ 1413, 1414, 1413, 1414 ] }, + { "id": "edge", "fg": [ 1414, 1413 ] }, + { "id": "end_piece", "fg": [ 1416, 1418, 1417, 1415 ] }, + { "id": "unconnected", "fg": [ 1419, 1419 ] } ] }, - { "id": "f_cardboard_box", "fg": 1419 }, + { "id": "f_cardboard_box", "fg": 1420 }, { "id": "f_curtain", - "fg": 1435, + "fg": 1436, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1435 }, - { "id": "corner", "fg": [ 1421, 1423, 1422, 1420 ] }, - { "id": "t_connection", "fg": [ 1432, 1434, 1433, 1431 ] }, - { "id": "edge", "fg": [ 1425, 1424 ] }, - { "id": "end_piece", "fg": [ 1427, 1429, 1428, 1426 ] }, - { "id": "unconnected", "fg": [ 1435, 1435 ] } + { "id": "center", "fg": 1436 }, + { "id": "corner", "fg": [ 1422, 1424, 1423, 1421 ] }, + { "id": "t_connection", "fg": [ 1433, 1435, 1434, 1432 ] }, + { "id": "edge", "fg": [ 1426, 1425 ] }, + { "id": "end_piece", "fg": [ 1428, 1430, 1429, 1427 ] }, + { "id": "unconnected", "fg": [ 1436, 1436 ] } ] }, { "id": "f_desk", - "fg": 1448, + "fg": 1449, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1436 }, - { "id": "corner", "fg": [ 1438, 1440, 1439, 1437 ] }, - { "id": "t_connection", "fg": [ 1447, 1442, 1441, 1442 ] }, - { "id": "edge", "fg": [ 1442, 1441 ] }, - { "id": "end_piece", "fg": [ 1444, 1446, 1445, 1443 ] }, - { "id": "unconnected", "fg": [ 1448, 1448 ] } + { "id": "center", "fg": 1437 }, + { "id": "corner", "fg": [ 1439, 1441, 1440, 1438 ] }, + { "id": "t_connection", "fg": [ 1448, 1443, 1442, 1443 ] }, + { "id": "edge", "fg": [ 1443, 1442 ] }, + { "id": "end_piece", "fg": [ 1445, 1447, 1446, 1444 ] }, + { "id": "unconnected", "fg": [ 1449, 1449 ] } ] }, - { "id": "f_filing_cabinet", "rotates": true, "fg": [ 1450, 1453, 1452, 1451 ] }, + { "id": "f_filing_cabinet", "rotates": true, "fg": [ 1451, 1454, 1453, 1452 ] }, { "id": "f_large_canvas_door", - "fg": 1459, + "fg": 1460, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1459 }, - { "id": "t_connection", "fg": [ 1459, 1458, 1459, 1458 ] }, - { "id": "edge", "fg": [ 1458, 1459 ] }, - { "id": "unconnected", "fg": [ 1459, 1459 ] } + { "id": "center", "fg": 1460 }, + { "id": "t_connection", "fg": [ 1460, 1459, 1460, 1459 ] }, + { "id": "edge", "fg": [ 1459, 1460 ] }, + { "id": "unconnected", "fg": [ 1460, 1460 ] } ] }, { "id": "f_large_canvas_door_o", - "fg": 1457, + "fg": 1458, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1457 }, - { "id": "t_connection", "fg": [ 1457, 1456, 1457, 1456 ] }, - { "id": "edge", "fg": [ 1456, 1457 ] }, - { "id": "unconnected", "fg": [ 1457, 1457 ] } + { "id": "center", "fg": 1458 }, + { "id": "t_connection", "fg": [ 1458, 1457, 1458, 1457 ] }, + { "id": "edge", "fg": [ 1457, 1458 ] }, + { "id": "unconnected", "fg": [ 1458, 1458 ] } ] }, { "id": "f_large_canvas_wall", - "fg": 1470, + "fg": 1471, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1470 }, - { "id": "corner", "fg": [ 1461, 1463, 1462, 1460 ] }, - { "id": "t_connection", "fg": [ 1464, 1465, 1464, 1465 ] }, - { "id": "edge", "fg": [ 1465, 1464 ] }, - { "id": "end_piece", "fg": [ 1467, 1469, 1468, 1466 ] }, - { "id": "unconnected", "fg": [ 1470, 1470 ] } + { "id": "center", "fg": 1471 }, + { "id": "corner", "fg": [ 1462, 1464, 1463, 1461 ] }, + { "id": "t_connection", "fg": [ 1465, 1466, 1465, 1466 ] }, + { "id": "edge", "fg": [ 1466, 1465 ] }, + { "id": "end_piece", "fg": [ 1468, 1470, 1469, 1467 ] }, + { "id": "unconnected", "fg": [ 1471, 1471 ] } ] }, { "id": "f_skin_door", - "fg": 1475, + "fg": 1476, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1475 }, - { "id": "t_connection", "fg": [ 1475, 1474, 1475, 1474 ] }, - { "id": "edge", "fg": [ 1474, 1475 ] }, - { "id": "unconnected", "fg": [ 1475, 1475 ] } + { "id": "center", "fg": 1476 }, + { "id": "t_connection", "fg": [ 1476, 1475, 1476, 1475 ] }, + { "id": "edge", "fg": [ 1475, 1476 ] }, + { "id": "unconnected", "fg": [ 1476, 1476 ] } ] }, { "id": "f_skin_door_o", - "fg": 1473, + "fg": 1474, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1473 }, - { "id": "t_connection", "fg": [ 1473, 1472, 1473, 1472 ] }, - { "id": "edge", "fg": [ 1472, 1473 ] }, - { "id": "unconnected", "fg": [ 1473, 1473 ] } + { "id": "center", "fg": 1474 }, + { "id": "t_connection", "fg": [ 1474, 1473, 1474, 1473 ] }, + { "id": "edge", "fg": [ 1473, 1474 ] }, + { "id": "unconnected", "fg": [ 1474, 1474 ] } ] }, { "id": "f_skin_wall", - "fg": 1487, + "fg": 1488, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1487 }, - { "id": "corner", "fg": [ 1477, 1479, 1478, 1476 ] }, - { "id": "t_connection", "fg": [ 1481, 1480, 1481, 1480 ] }, - { "id": "edge", "fg": [ 1481, 1480 ] }, - { "id": "end_piece", "fg": [ 1483, 1485, 1484, 1482 ] }, - { "id": "unconnected", "fg": [ 1487, 1487 ] } + { "id": "center", "fg": 1488 }, + { "id": "corner", "fg": [ 1478, 1480, 1479, 1477 ] }, + { "id": "t_connection", "fg": [ 1482, 1481, 1482, 1481 ] }, + { "id": "edge", "fg": [ 1482, 1481 ] }, + { "id": "end_piece", "fg": [ 1484, 1486, 1485, 1483 ] }, + { "id": "unconnected", "fg": [ 1488, 1488 ] } ] }, { "id": "f_table", - "fg": 1504, + "fg": 1505, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1489 }, - { "id": "corner", "fg": [ 1491, 1493, 1492, 1490 ] }, - { "id": "t_connection", "fg": [ 1501, 1503, 1502, 1500 ] }, - { "id": "edge", "fg": [ 1495, 1494 ] }, - { "id": "end_piece", "fg": [ 1497, 1499, 1498, 1496 ] }, - { "id": "unconnected", "fg": [ 1504, 1504 ] } + { "id": "center", "fg": 1490 }, + { "id": "corner", "fg": [ 1492, 1494, 1493, 1491 ] }, + { "id": "t_connection", "fg": [ 1502, 1504, 1503, 1501 ] }, + { "id": "edge", "fg": [ 1496, 1495 ] }, + { "id": "end_piece", "fg": [ 1498, 1500, 1499, 1497 ] }, + { "id": "unconnected", "fg": [ 1505, 1505 ] } ] }, - { "id": [ "2byarm_guard", "2byshin_guard" ], "fg": 1518 }, - { "id": "fried_eggs", "fg": 1562, "rotates": false }, - { "id": [ "money_one", "money_ten", "money_twenty" ], "fg": 1589 }, - { "id": [ "flyer", "necropolis_leaflet" ], "fg": 1640 }, + { "id": [ "2byarm_guard", "2byshin_guard" ], "fg": 1519 }, + { "id": "fried_eggs", "fg": 1563, "rotates": false }, + { "id": [ "money_one", "money_ten", "money_twenty" ], "fg": 1590 }, + { "id": [ "flyer", "necropolis_leaflet" ], "fg": 1641 }, { "id": [ "adv_chemistry", @@ -2338,7 +2338,7 @@ "modern_tanner", "repeater_mod_guide" ], - "fg": 1642 + "fg": 1643 }, { "id": [ @@ -2359,7 +2359,7 @@ "textbook_robots", "textbook_armschina" ], - "fg": 1649 + "fg": 1650 }, { "id": [ @@ -2374,7 +2374,7 @@ "cookbook_daintydishes", "cookbook_liverforkids" ], - "fg": 1643 + "fg": 1644 }, { "id": [ @@ -2387,7 +2387,7 @@ "recipe_melee", "recipe_labchem" ], - "fg": 1647 + "fg": 1648 }, { "id": [ @@ -2404,9 +2404,9 @@ "recipe_creepy", "recipe_maiar" ], - "fg": 1647 + "fg": 1648 }, - { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 1646 }, + { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 1647 }, { "id": [ "mag_rifle", @@ -2426,7 +2426,7 @@ "mag_launcher", "mag_swimming" ], - "fg": 1644 + "fg": 1645 }, { "id": [ @@ -2443,7 +2443,7 @@ "schematics_searchlight", "schematics_secubot" ], - "fg": 1648 + "fg": 1649 }, { "id": [ @@ -2463,9 +2463,9 @@ "manual_shotgun", "manual_fabrication" ], - "fg": 1645 + "fg": 1646 }, - { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 1641 }, + { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 1642 }, { "id": [ "mre_asianbeef_box", @@ -2479,7 +2479,7 @@ "mre_beef_box", "mre_beefstew_box" ], - "fg": 1679, + "fg": 1680, "rotates": false }, { @@ -2490,7 +2490,7 @@ "mre_mexicanchickenstew_box", "mre_chicken_box" ], - "fg": 1681, + "fg": 1682, "rotates": false }, { @@ -2504,38 +2504,38 @@ "mre_ratatouille_box", "mre_sfettuccine_box" ], - "fg": 1685, + "fg": 1686, "rotates": false }, - { "id": [ "mre_hotdog_box", "mre_hashbrownbacon_box", "mre_maplesausage_box" ], "fg": 1682, "rotates": false }, - { "id": [ "mre_accessory", "mre_dessert" ], "fg": 1684, "rotates": false }, - { "id": [ "plastic_plate", "soap_holder" ], "fg": 1769 }, - { "id": "1st_aid", "fg": 1687 }, - { "id": "2x4", "fg": 1688 }, - { "id": "RAM", "fg": 1689 }, - { "id": "helmet_motor", "fg": 1690 }, - { "id": "223_casing", "fg": 1691 }, - { "id": "40mm_casing", "fg": 1692 }, - { "id": "40x46mm_m118_casing", "fg": 1692 }, - { "id": "50_casing", "fg": 1693 }, - { "id": "9mm_casing", "fg": 1694 }, - { "id": "arrow_cf", "fg": 1695 }, - { "id": "arrow_exploding", "fg": 1696 }, - { "id": "arrow_field_point_fletched", "fg": 1697 }, - { "id": "arrow_fire_hardened_fletched", "fg": 1698 }, - { "id": "arrow_flammable", "fg": 1699 }, - { "id": "arrow_flamming", "fg": 1700 }, - { "id": "arrow_heavy_fire_hardened_fletched", "fg": 1701 }, - { "id": "arrow_metal", "fg": 1702 }, - { "id": "arrow_metal_sharpened_fletched", "fg": 1703 }, - { "id": "arrow_plastic", "fg": 1704 }, - { "id": "arrow_small_game_fletched", "fg": 1705 }, - { "id": "arrow_wood", "fg": 1706 }, - { "id": "arrow_wood_heavy", "fg": 1707 }, - { "id": "bolt_cf", "fg": 1708 }, - { "id": "bolt_explosive", "fg": 1709 }, - { "id": "bolt_metal", "fg": 1710 }, - { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 1711 }, + { "id": [ "mre_hotdog_box", "mre_hashbrownbacon_box", "mre_maplesausage_box" ], "fg": 1683, "rotates": false }, + { "id": [ "mre_accessory", "mre_dessert" ], "fg": 1685, "rotates": false }, + { "id": [ "plastic_plate", "soap_holder" ], "fg": 1770 }, + { "id": "1st_aid", "fg": 1688 }, + { "id": "2x4", "fg": 1689 }, + { "id": "RAM", "fg": 1690 }, + { "id": "helmet_motor", "fg": 1691 }, + { "id": "223_casing", "fg": 1692 }, + { "id": "40mm_casing", "fg": 1693 }, + { "id": "40x46mm_m118_casing", "fg": 1693 }, + { "id": "50_casing", "fg": 1694 }, + { "id": "9mm_casing", "fg": 1695 }, + { "id": "arrow_cf", "fg": 1696 }, + { "id": "arrow_exploding", "fg": 1697 }, + { "id": "arrow_field_point_fletched", "fg": 1698 }, + { "id": "arrow_fire_hardened_fletched", "fg": 1699 }, + { "id": "arrow_flammable", "fg": 1700 }, + { "id": "arrow_flamming", "fg": 1701 }, + { "id": "arrow_heavy_fire_hardened_fletched", "fg": 1702 }, + { "id": "arrow_metal", "fg": 1703 }, + { "id": "arrow_metal_sharpened_fletched", "fg": 1704 }, + { "id": "arrow_plastic", "fg": 1705 }, + { "id": "arrow_small_game_fletched", "fg": 1706 }, + { "id": "arrow_wood", "fg": 1707 }, + { "id": "arrow_wood_heavy", "fg": 1708 }, + { "id": "bolt_cf", "fg": 1709 }, + { "id": "bolt_explosive", "fg": 1710 }, + { "id": "bolt_metal", "fg": 1711 }, + { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 1712 }, { "id": [ "bolt_wood", @@ -2546,1195 +2546,1203 @@ "bolt_wood_bodkin", "bolt_wood_small_game" ], - "fg": 1712 - }, - { "id": "shot_hull", "fg": 1713 }, - { "id": "art_sphere", "fg": 1728 }, - { "id": "art_rod", "fg": 1726 }, - { "id": "art_teardrop", "fg": 1730 }, - { "id": "art_lamp", "fg": 1722 }, - { "id": "art_snake", "fg": 1727 }, - { "id": "art_disc", "fg": 1719 }, - { "id": "art_beads", "fg": 1716 }, - { "id": "art_napkin", "fg": 1723 }, - { "id": "art_urchin", "fg": 1732 }, - { "id": "art_jelly", "fg": 1720 }, - { "id": "art_spiral", "fg": 1729 }, - { "id": "art_pin", "fg": 1724 }, - { "id": "art_tube", "fg": 1731 }, - { "id": "art_pyramid", "fg": 1725 }, - { "id": "art_crystal", "fg": 1718 }, - { "id": "art_knot", "fg": 1721 }, - { "id": "art_crescent", "fg": 1717 }, - { "id": "altered_teapot", "fg": 1714 }, - { "id": "architect_cube", "fg": 1715 }, - { "id": "fire_ax", "fg": 2412 }, - { "id": "ax", "fg": 1734 }, - { "id": "hatchet", "fg": 1733 }, - { "id": "backpack", "fg": 1735 }, - { "id": "duffelbag", "fg": 1736 }, - { "id": "molle_pack", "fg": 1737 }, - { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 1740 }, - { "id": "bag_canvas", "fg": 1743 }, - { "id": "basket_laundry", "fg": 1744 }, - { "id": "bat", "fg": 1745 }, - { "id": "bat_metal", "fg": 1746 }, - { "id": "heavy_battery_cell", "fg": 1748 }, - { "id": "heavy_plus_battery_cell", "fg": 1748 }, - { "id": "heavy_disposable_cell", "fg": 1748 }, - { "id": "heavy_atomic_battery_cell", "fg": 1747 }, - { "id": "light_battery_cell", "fg": 1750 }, - { "id": "light_minus_battery_cell", "fg": 1752 }, - { "id": "light_plus_battery_cell", "fg": 1750 }, - { "id": "light_disposable_battery_cell", "fg": 1750 }, - { "id": "light_atomic_battery_cell", "fg": 1749 }, - { "id": "light_minus_atomic_battery_cell", "fg": 1751 }, - { "id": "medium_battery_cell", "fg": 1754 }, - { "id": "medium_plus_battery_cell", "fg": 1754 }, - { "id": "medium_disposable_battery_cell", "fg": 1754 }, - { "id": "medium_atomic_battery_cell", "fg": 1753 }, - { "id": "bead_bracelet", "fg": 1755 }, - { "id": "board_trap", "fg": 1756 }, - { "id": "bone", "fg": 1757 }, - { "id": "bone_tainted", "fg": 1758 }, - { "id": "bottle_twoliter", "fg": 1759 }, - { "id": "box_large", "fg": 1760 }, - { "id": "box_medium", "fg": 1761 }, - { "id": "broom", "fg": 1762 }, - { "id": "knife_butcher", "fg": 1764 }, - { "id": "bwirebat", "fg": 1765 }, - { "id": "cattlefodder", "fg": 1766 }, - { "id": "ceramic_cup", "fg": 1767 }, - { "id": "ceramic_mug", "fg": 1768 }, - { "id": "ceramic_plate", "fg": 1769 }, - { "id": "chain", "fg": 1770 }, - { "id": "chainsaw_off", "fg": 1771 }, - { "id": "clay_lump", "fg": 1772 }, - { "id": "clay_watercont", "fg": 1775 }, - { "id": "clay_hydria", "fg": 1773 }, - { "id": "coffeemaker", "fg": 1807 }, - { "id": "bag_zipper", "fg": 1808 }, - { "id": "bottle_glass", "fg": 1809 }, - { "id": "bottle_plastic", "fg": 1810 }, - { "id": "bottle_plastic_small", "fg": 1811 }, - { "id": "box_cigarette", "fg": 1812 }, - { "id": "box_small", "fg": 1813 }, - { "id": "can_drink", "fg": 1814 }, - { "id": [ "can_drink_unsealed" ], "fg": 1815 }, - { "id": [ "glass", "base_glass_dish", "wine_glass" ], "fg": 1816 }, - { "id": "jar_3l_glass", "fg": 1817 }, - { "id": "jar_3l_glass_sealed", "fg": 1818 }, - { "id": "jar_glass", "fg": 1819 }, - { "id": "jar_glass_sealed", "fg": 1820 }, - { "id": "jug_plastic", "fg": 1821 }, - { "id": "crossbow", "fg": 1822 }, - { "id": "crowbar", "fg": 1823 }, - { "id": "cudgel", "fg": 1824 }, - { "id": "filter_air", "fg": 1825 }, - { "id": "fish_bait", "fg": 1826 }, - { "id": "corpse_mon_fish_tiny", "fg": 1830 }, - { "id": "corpse_mon_fish_small", "fg": 1829 }, - { "id": "corpse_mon_fish_medium", "fg": 1828 }, - { "id": "corpse_mon_fish_large", "fg": 1827 }, - { "id": "fish_trap", "fg": 1831 }, - { "id": "forge", "fg": 1833 }, - { "id": "char_forge", "fg": 1832 }, - { "id": [ "glock_17", "glock_19", "glock_18c", "glock_22", "glock_31" ], "fg": 1834 }, - { "id": "hoboreel", "fg": 1835 }, - { "id": "hydrogen_tank", "fg": 1836 }, - { "id": "inhaler", "fg": 1837 }, - { "id": "knife_chef", "fg": 1838 }, - { "id": "knife_rm42", "fg": 1839 }, - { "id": "leather_tarp", "fg": 1840 }, - { "id": "water", "fg": 1857 }, - { "id": "water_clean", "fg": 1858 }, - { "id": "gasoline", "fg": 1846 }, - { "id": "diesel", "fg": 2392 }, - { "id": "biodiesel", "fg": 1842 }, - { "id": "flamethrower_fuel", "fg": 1845 }, - { "id": "avgas", "fg": 1841 }, - { "id": "lamp_oil", "fg": 1849 }, - { "id": "motor_oil", "fg": 1851 }, - { "id": "napalm", "fg": 1852 }, - { "id": "gelled_gasoline", "fg": 1847 }, - { "id": "blood", "fg": 1843 }, - { "id": [ "oj", "lemonade" ], "fg": 1853 }, - { "id": "log", "fg": 1859 }, - { "id": "longbow", "fg": 1860 }, - { "id": "lucern_hammer", "fg": 1861 }, - { "id": "machete", "fg": 1862 }, - { "id": "matches", "fg": 1863 }, - { "id": "joint", "fg": 1873 }, - { "id": "joint_lit", "fg": 1874 }, - { "id": "aspirin", "fg": 1867 }, - { "id": "bandages", "fg": 1868 }, - { "id": "antibiotics", "fg": 1864 }, - { "id": "weak_antibiotic", "fg": 1880 }, - { "id": "strong_antibiotic", "fg": 1877 }, - { "id": "vitamins", "fg": 1879 }, - { "id": "gummy_vitamins", "fg": 1871 }, - { "id": "calcium_tablet", "fg": 1869 }, - { "id": "oxycodone", "fg": 1875 }, - { "id": "tramadol", "fg": 1878 }, - { "id": "codeine", "fg": 1870 }, - { "id": "prussian_blue", "fg": 1876 }, - { "id": "iodine", "fg": 1872 }, - { "id": "antiparasitic", "fg": 1866 }, - { "id": "antifungal", "fg": 1865 }, - { "id": "microwave", "fg": 1881 }, - { "id": "money_bundle", "fg": 1882 }, - { "id": "mop", "fg": 1883 }, - { "id": "mp5mag", "fg": 1884 }, - { "id": "nail", "fg": 1885 }, - { "id": "nailbat", "fg": 1886 }, - { "id": "nailboard", "fg": 1887 }, - { "id": "needle_bone", "fg": 1888 }, - { "id": "needle_curved", "fg": 1889 }, - { "id": "needle_wood", "fg": 1890 }, - { "id": [ "many_years_old_newspaper" ], "fg": 1891 }, - { "id": "years_old_newspaper", "fg": 1896 }, - { "id": "months_old_newspaper", "fg": 1892 }, - { "id": "newest_newspaper", "fg": 1893 }, - { "id": "one_year_old_newspaper", "fg": 1894 }, - { "id": "weeks_old_newspaper", "fg": 1895 }, - { "id": "pan", "fg": 1897 }, - { "id": "2h_flail_wood", "fg": 1898 }, - { "id": "pine_bough", "fg": 1899 }, - { "id": "pinecone", "fg": 1900 }, - { "id": "pipe", "fg": 1902 }, - { "id": "cu_pipe", "fg": 1901 }, + "fg": 1713 + }, + { "id": "shot_hull", "fg": 1714 }, + { "id": "art_sphere", "fg": 1729 }, + { "id": "art_rod", "fg": 1727 }, + { "id": "art_teardrop", "fg": 1731 }, + { "id": "art_lamp", "fg": 1723 }, + { "id": "art_snake", "fg": 1728 }, + { "id": "art_disc", "fg": 1720 }, + { "id": "art_beads", "fg": 1717 }, + { "id": "art_napkin", "fg": 1724 }, + { "id": "art_urchin", "fg": 1733 }, + { "id": "art_jelly", "fg": 1721 }, + { "id": "art_spiral", "fg": 1730 }, + { "id": "art_pin", "fg": 1725 }, + { "id": "art_tube", "fg": 1732 }, + { "id": "art_pyramid", "fg": 1726 }, + { "id": "art_crystal", "fg": 1719 }, + { "id": "art_knot", "fg": 1722 }, + { "id": "art_crescent", "fg": 1718 }, + { "id": "altered_teapot", "fg": 1715 }, + { "id": "architect_cube", "fg": 1716 }, + { "id": "fire_ax", "fg": 2416 }, + { "id": "ax", "fg": 1735 }, + { "id": "hatchet", "fg": 1734 }, + { "id": "backpack", "fg": 1736 }, + { "id": "duffelbag", "fg": 1737 }, + { "id": "molle_pack", "fg": 1738 }, + { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 1741 }, + { "id": "bag_canvas", "fg": 1744 }, + { "id": "basket_laundry", "fg": 1745 }, + { "id": "bat", "fg": 1746 }, + { "id": "bat_metal", "fg": 1747 }, + { "id": "heavy_battery_cell", "fg": 1749 }, + { "id": "heavy_plus_battery_cell", "fg": 1749 }, + { "id": "heavy_disposable_cell", "fg": 1749 }, + { "id": "heavy_atomic_battery_cell", "fg": 1748 }, + { "id": "light_battery_cell", "fg": 1751 }, + { "id": "light_minus_battery_cell", "fg": 1753 }, + { "id": "light_plus_battery_cell", "fg": 1751 }, + { "id": "light_disposable_battery_cell", "fg": 1751 }, + { "id": "light_atomic_battery_cell", "fg": 1750 }, + { "id": "light_minus_atomic_battery_cell", "fg": 1752 }, + { "id": "medium_battery_cell", "fg": 1755 }, + { "id": "medium_plus_battery_cell", "fg": 1755 }, + { "id": "medium_disposable_battery_cell", "fg": 1755 }, + { "id": "medium_atomic_battery_cell", "fg": 1754 }, + { "id": "bead_bracelet", "fg": 1756 }, + { "id": "board_trap", "fg": 1757 }, + { "id": "bone", "fg": 1758 }, + { "id": "bone_tainted", "fg": 1759 }, + { "id": "bottle_twoliter", "fg": 1760 }, + { "id": "box_large", "fg": 1761 }, + { "id": "box_medium", "fg": 1762 }, + { "id": "broom", "fg": 1763 }, + { "id": "knife_butcher", "fg": 1765 }, + { "id": "bwirebat", "fg": 1766 }, + { "id": "cattlefodder", "fg": 1767 }, + { "id": "ceramic_cup", "fg": 1768 }, + { "id": "ceramic_mug", "fg": 1769 }, + { "id": "ceramic_plate", "fg": 1770 }, + { "id": "chain", "fg": 1771 }, + { "id": "chainsaw_off", "fg": 1772 }, + { "id": "clay_lump", "fg": 1773 }, + { "id": "clay_watercont", "fg": 1776 }, + { "id": "clay_hydria", "fg": 1774 }, + { "id": "coffeemaker", "fg": 1808 }, + { "id": "bag_zipper", "fg": 1809 }, + { "id": "bottle_glass", "fg": 1810 }, + { "id": "bottle_plastic", "fg": 1811 }, + { "id": "bottle_plastic_small", "fg": 1812 }, + { "id": "box_cigarette", "fg": 1813 }, + { "id": "box_small", "fg": 1814 }, + { "id": "can_drink", "fg": 1815 }, + { "id": [ "can_drink_unsealed" ], "fg": 1816 }, + { "id": [ "glass", "base_glass_dish", "wine_glass" ], "fg": 1817 }, + { "id": "jar_3l_glass", "fg": 1818 }, + { "id": "jar_3l_glass_sealed", "fg": 1819 }, + { "id": "jar_glass", "fg": 1820 }, + { "id": "jar_glass_sealed", "fg": 1821 }, + { "id": "jug_plastic", "fg": 1822 }, + { "id": "crossbow", "fg": 1823 }, + { "id": "crowbar", "fg": 1824 }, + { "id": "cudgel", "fg": 1825 }, + { "id": "filter_air", "fg": 1826 }, + { "id": "fish_bait", "fg": 1827 }, + { "id": "corpse_mon_fish_tiny", "fg": 1831 }, + { "id": "corpse_mon_fish_small", "fg": 1830 }, + { "id": "corpse_mon_fish_medium", "fg": 1829 }, + { "id": "corpse_mon_fish_large", "fg": 1828 }, + { "id": "fish_trap", "fg": 1832 }, + { "id": "forge", "fg": 1834 }, + { "id": "char_forge", "fg": 1833 }, + { "id": [ "glock_17", "glock_19", "glock_18c", "glock_22", "glock_31" ], "fg": 1835 }, + { "id": "hoboreel", "fg": 1836 }, + { "id": "hydrogen_tank", "fg": 1837 }, + { "id": "inhaler", "fg": 1838 }, + { "id": "knife_chef", "fg": 1839 }, + { "id": "knife_rm42", "fg": 1840 }, + { "id": "leather_tarp", "fg": 1841 }, + { "id": "water", "fg": 1858 }, + { "id": "water_clean", "fg": 1859 }, + { "id": "gasoline", "fg": 1847 }, + { "id": "diesel", "fg": 2396 }, + { "id": "biodiesel", "fg": 1843 }, + { "id": "flamethrower_fuel", "fg": 1846 }, + { "id": "avgas", "fg": 1842 }, + { "id": "lamp_oil", "fg": 1850 }, + { "id": "motor_oil", "fg": 1852 }, + { "id": "napalm", "fg": 1853 }, + { "id": "gelled_gasoline", "fg": 1848 }, + { "id": "blood", "fg": 1844 }, + { "id": [ "oj", "lemonade" ], "fg": 1854 }, + { "id": "log", "fg": 1860 }, + { "id": "longbow", "fg": 1861 }, + { "id": "lucern_hammer", "fg": 1862 }, + { "id": "machete", "fg": 1863 }, + { "id": "matches", "fg": 1864 }, + { "id": "joint", "fg": 1874 }, + { "id": "joint_lit", "fg": 1875 }, + { "id": "aspirin", "fg": 1868 }, + { "id": "bandages", "fg": 1869 }, + { "id": "antibiotics", "fg": 1865 }, + { "id": "weak_antibiotic", "fg": 1881 }, + { "id": "strong_antibiotic", "fg": 1878 }, + { "id": "vitamins", "fg": 1880 }, + { "id": "gummy_vitamins", "fg": 1872 }, + { "id": "calcium_tablet", "fg": 1870 }, + { "id": "oxycodone", "fg": 1876 }, + { "id": "tramadol", "fg": 1879 }, + { "id": "codeine", "fg": 1871 }, + { "id": "prussian_blue", "fg": 1877 }, + { "id": "iodine", "fg": 1873 }, + { "id": "antiparasitic", "fg": 1867 }, + { "id": "antifungal", "fg": 1866 }, + { "id": "microwave", "fg": 1882 }, + { "id": "money_bundle", "fg": 1883 }, + { "id": "mop", "fg": 1884 }, + { "id": "mp5mag", "fg": 1885 }, + { "id": "nail", "fg": 1886 }, + { "id": "nailbat", "fg": 1887 }, + { "id": "nailboard", "fg": 1888 }, + { "id": "needle_bone", "fg": 1889 }, + { "id": "needle_curved", "fg": 1890 }, + { "id": "needle_wood", "fg": 1891 }, + { "id": [ "many_years_old_newspaper" ], "fg": 1892 }, + { "id": "years_old_newspaper", "fg": 1897 }, + { "id": "months_old_newspaper", "fg": 1893 }, + { "id": "newest_newspaper", "fg": 1894 }, + { "id": "one_year_old_newspaper", "fg": 1895 }, + { "id": "weeks_old_newspaper", "fg": 1896 }, + { "id": "pan", "fg": 1898 }, + { "id": "2h_flail_wood", "fg": 1899 }, + { "id": "pine_bough", "fg": 1900 }, + { "id": "pinecone", "fg": 1901 }, + { "id": "pipe", "fg": 1903 }, + { "id": "cu_pipe", "fg": 1902 }, { "id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ], - "fg": 1903 - }, - { "id": "pipe_shotgun", "fg": 1904 }, - { "id": "plastic_sheet", "fg": 1905 }, - { "id": "pneumatic_shotgun", "fg": 1908 }, - { "id": "pot", "fg": 1910 }, - { "id": "powder_candy", "fg": 1911 }, - { "id": "rag", "fg": 1912 }, - { "id": "rag_bloody", "fg": 1913 }, - { "id": "rebar", "fg": 1914 }, - { "id": "rock", "fg": 1915 }, - { "id": "rolling_pin", "fg": 1916 }, - { "id": "fur_rollmat", "fg": 1917 }, - { "id": "rollmat", "fg": 1918 }, - { "id": "scissors", "fg": 1919 }, - { "id": "screwdriver", "fg": 1920 }, - { "id": "sewing_kit", "fg": 1921 }, - { "id": "sharp_rock", "fg": 1922 }, - { "id": "sheet_metal", "fg": 1923 }, - { "id": "shovel", "fg": 1924 }, - { "id": "slingshot", "fg": 1925 }, - { "id": "solar_panel", "fg": 1927 }, - { "id": "solar_cell", "fg": 1926 }, - { "id": "pointy_stick", "fg": 1928 }, - { "id": "spear_wood", "fg": 1936 }, - { "id": "spear_spike", "fg": 1934 }, - { "id": "spear_knife", "fg": 1930 }, - { "id": "spear_knife_superior", "fg": 1931 }, - { "id": "spear_pipe", "fg": 1932 }, - { "id": "spear_rebar", "fg": 1933 }, - { "id": "spear_steel", "fg": 1935 }, - { "id": "spear_copper", "fg": 1929 }, - { "id": "splinter", "fg": 1937 }, - { "id": "sponge", "fg": 1938 }, - { "id": "spring", "fg": 1939 }, - { "id": "stick", "fg": 1940 }, - { "id": "stick_long", "fg": 1941 }, - { "id": "primitive_hammer", "fg": 1942 }, - { "id": "string_36", "fg": 1943 }, - { "id": "string_6", "fg": 1944 }, - { "id": "survnote", "fg": 1945 }, - { "id": "tailors_kit", "fg": 1946 }, - { "id": "creepy_doll", "fg": 1947 }, - { "id": "talking_doll", "fg": 1947 }, - { "id": "tarp", "fg": 1948 }, - { "id": "television", "fg": 1949 }, - { "id": "thread", "fg": 1950 }, - { "id": "crucible_clay", "fg": 1951 }, - { "id": "flashlight", "fg": 1952 }, - { "id": "heavy_flashlight", "fg": 1954 }, - { "id": "saw", "fg": 1961 }, - { "id": "wrench", "fg": 1962 }, - { "id": "hammer", "fg": 1953 }, - { "id": "knife_meat_cleaver", "fg": 1958 }, - { "id": "knife_vegetable_cleaver", "fg": 1960 }, + "fg": 1904 + }, + { "id": "pipe_shotgun", "fg": 1905 }, + { "id": "plastic_sheet", "fg": 1906 }, + { "id": "pneumatic_shotgun", "fg": 1909 }, + { "id": "pot", "fg": 1911 }, + { "id": "powder_candy", "fg": 1912 }, + { "id": "rag", "fg": 1913 }, + { "id": "rag_bloody", "fg": 1914 }, + { "id": "rebar", "fg": 1915 }, + { "id": "rock", "fg": 1916 }, + { "id": "rolling_pin", "fg": 1917 }, + { "id": "fur_rollmat", "fg": 1918 }, + { "id": "rollmat", "fg": 1919 }, + { "id": "scissors", "fg": 1920 }, + { "id": "screwdriver", "fg": 1921 }, + { "id": "sewing_kit", "fg": 1922 }, + { "id": "sharp_rock", "fg": 1923 }, + { "id": "sheet_metal", "fg": 1924 }, + { "id": "shovel", "fg": 1925 }, + { "id": "slingshot", "fg": 1926 }, + { "id": "solar_panel", "fg": 1928 }, + { "id": "solar_cell", "fg": 1927 }, + { "id": "pointy_stick", "fg": 1929 }, + { "id": "spear_wood", "fg": 1937 }, + { "id": "spear_spike", "fg": 1935 }, + { "id": "spear_knife", "fg": 1931 }, + { "id": "spear_knife_superior", "fg": 1932 }, + { "id": "spear_pipe", "fg": 1933 }, + { "id": "spear_rebar", "fg": 1934 }, + { "id": "spear_steel", "fg": 1936 }, + { "id": "spear_copper", "fg": 1930 }, + { "id": "splinter", "fg": 1938 }, + { "id": "sponge", "fg": 1939 }, + { "id": "spring", "fg": 1940 }, + { "id": "stick", "fg": 1941 }, + { "id": "stick_long", "fg": 1942 }, + { "id": "primitive_hammer", "fg": 1943 }, + { "id": "string_36", "fg": 1944 }, + { "id": "string_6", "fg": 1945 }, + { "id": "survnote", "fg": 1946 }, + { "id": "tailors_kit", "fg": 1947 }, + { "id": "creepy_doll", "fg": 1948 }, + { "id": "talking_doll", "fg": 1948 }, + { "id": "tarp", "fg": 1949 }, + { "id": "television", "fg": 1950 }, + { "id": "thread", "fg": 1951 }, + { "id": "crucible_clay", "fg": 1952 }, + { "id": "flashlight", "fg": 1953 }, + { "id": "heavy_flashlight", "fg": 1955 }, + { "id": "saw", "fg": 1962 }, + { "id": "wrench", "fg": 1963 }, + { "id": "hammer", "fg": 1954 }, + { "id": "knife_meat_cleaver", "fg": 1959 }, + { "id": "knife_vegetable_cleaver", "fg": 1961 }, { "id": "lighter", - "fg": [ { "weight": 1, "sprite": 1956 }, { "weight": 1, "sprite": 1955 }, { "weight": 1, "sprite": 1957 } ] - }, - { "id": "usb_drive", "fg": 1959 }, - { "id": "cash_card", "fg": 1963 }, - { "id": "fp_loyalty_card", "fg": 1964 }, - { "id": "id_industrial", "fg": 1965 }, - { "id": "id_military", "fg": 1966 }, - { "id": "id_science", "fg": 1967 }, - { "id": "bowl_plastic", "fg": 1968 }, - { "id": "cup_plastic", "fg": 1969 }, - { "id": "fork", "fg": 1970 }, - { "id": "glass_plate", "fg": 1971 }, - { "id": "knife_butter", "fg": 1972 }, - { "id": "2h_flail_steel", "fg": 1976 }, - { "id": "washboard", "fg": 1978 }, - { "id": "wash_kit", "fg": 1977 }, - { "id": "welder", "fg": 1979 }, - { "id": "welder_crude", "fg": 1980 }, - { "id": "wood_panel", "fg": 1981 }, - { "id": "wood_sheet", "fg": 1982 }, - { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 2040 }, - { "id": [ "ak47", "aksemi" ], "fg": 1990 }, - { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 2004 }, - { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 2041 }, - { "id": [ "m249", "m249_semi" ], "fg": 2048 }, - { "id": [ "m60", "m60_semi" ], "fg": 2058 }, - { "id": [ "mp40", "mp40semi" ], "fg": 2074 }, - { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2113 }, - { "id": "corpse_mon_alpha_razorclaw", "fg": 2131, "rotates": false }, - { "id": "corpse_mon_ant", "fg": 2132, "rotates": false }, - { "id": "corpse_mon_ant_gueen", "fg": 2133, "rotates": false }, - { "id": "corpse_mon_ant_larva", "fg": 2134, "rotates": false }, - { "id": "corpse_mon_ant_soldier", "fg": 2135, "rotates": false }, - { "id": "corpse_mon_bat", "fg": 2136, "rotates": false }, - { "id": "corpse_mon_bear", "fg": 2137, "rotates": false }, - { "id": "corpse_mon_bee", "fg": 2138, "rotates": false }, - { "id": "corpse_mon_biollante", "fg": 2139, "rotates": false }, - { "id": "corpse_mon_black_rat", "fg": 2140, "rotates": false }, - { "id": "corpse_mon_blank", "fg": 2141, "rotates": false }, - { "id": "corpse_mon_broken_cyborg", "fg": 2142, "rotates": false }, - { "id": "corpse_mon_cat", "fg": 2143, "rotates": false }, - { "id": "corpse_mon_chicken", "fg": 2144, "rotates": false }, - { "id": "corpse_mon_cougar", "fg": 2145, "rotates": false }, - { "id": "corpse_mon_crow", "fg": 2146, "rotates": false }, - { "id": "corpse_mon_deer", "fg": 2147, "rotates": false }, - { "id": "corpse_mon_dermatik", "fg": 2148, "rotates": false }, - { "id": "corpse_mon_dog", "fg": 2149, "rotates": false }, - { "id": "corpse_mon_dog_zombie_cop", "fg": 2150, "rotates": false }, - { "id": "corpse_mon_duck", "fg": 2151, "rotates": false }, - { "id": "corpse_mon_fish_bowfin", "fg": 2152, "rotates": false }, - { "id": "corpse_mon_fish_bullhead", "fg": 2153, "rotates": false }, - { "id": "corpse_mon_fish_carp", "fg": 2154, "rotates": false }, - { "id": "corpse_mon_fish_crayfish", "fg": 2155, "rotates": false }, - { "id": "corpse_mon_fish_perch", "fg": 2156, "rotates": false }, - { "id": "corpse_mon_fish_pickerel", "fg": 2157, "rotates": false }, - { "id": "corpse_mon_fish_pike", "fg": 2158, "rotates": false }, - { "id": "corpse_mon_fish_sbass", "fg": 2159, "rotates": false }, - { "id": "corpse_mon_fish_trout", "fg": 2160, "rotates": false }, - { "id": "corpse_mon_fish_whitefish", "fg": 2161, "rotates": false }, - { "id": "corpse_mon_fish_lbass", "fg": 3112, "rotates": false }, - { "id": "corpse_mon_fish_pbass", "fg": 3113, "rotates": false }, - { "id": "corpse_mon_fish_salmon", "fg": 3114, "rotates": false }, - { "id": "corpse_mon_fish_sunfish", "fg": 3115, "rotates": false }, - { "id": "corpse_mon_flaming_eye", "fg": 2162, "rotates": false }, - { "id": "corpse_mon_fly", "fg": 2163, "rotates": false }, - { "id": "corpse_mon_fox", "fg": 2164, "rotates": false }, - { "id": "corpse_mon_frog_giant", "fg": 2165, "rotates": false }, - { "id": "corpse_mon_frog_small", "fg": 2166, "rotates": false }, - { "id": "corpse_mon_fungaloid", "fg": 2167, "rotates": false }, - { "id": "corpse_mon_fungaloid_young", "fg": 2168, "rotates": false }, - { "id": "corpse_mon_gator", "fg": 2169, "rotates": false }, - { "id": "corpse_mon_giant_cockroach_nymph", "fg": 2170, "rotates": false }, - { "id": "corpse_mon_gozu", "fg": 2171, "rotates": false }, - { "id": "corpse_mon_gragonfly", "fg": 2172, "rotates": false }, - { "id": "corpse_mon_hare", "fg": 2173, "rotates": false }, - { "id": "corpse_mon_hare_season_winter", "fg": 2174, "rotates": false }, - { "id": "corpse_mon_human_snail", "fg": 2175, "rotates": false }, - { "id": "corpse_mon_large_cockroach", "fg": 2176, "rotates": false }, - { "id": "corpse_mon_mi_go", "fg": 2177, "rotates": false }, - { "id": "corpse_mon_moose", "fg": 2178, "rotates": false }, - { "id": "corpse_mon_mosquito", "fg": 2179, "rotates": false }, - { "id": "corpse_mon_racoon", "fg": 2180, "rotates": false }, - { "id": "corpse_mon_rattlesnake_giant", "fg": 2181, "rotates": false }, - { "id": "corpse_mon_razorclaw", "fg": 2182, "rotates": false }, - { "id": "corpse_mon_sewer_snake", "fg": 2183, "rotates": false }, - { "id": "corpse_mon_sheep", "fg": 2184, "rotates": false }, - { "id": "corpse_mon_skeleton", "fg": 2185, "rotates": false }, - { "id": "corpse_mon_slug", "fg": 2186, "rotates": false }, - { "id": "corpse_mon_spider_jumping_giant", "fg": 2187, "rotates": false }, - { "id": "corpse_mon_spider_web", "fg": 2188, "rotates": false }, - { "id": "corpse_mon_spider_web_s", "fg": 2189, "rotates": false }, - { "id": "corpse_mon_spider_widow_giant", "fg": 2190, "rotates": false }, - { "id": "corpse_mon_spider_widow_giant_s", "fg": 2191, "rotates": false }, - { "id": "corpse_mon_spider_wolf_giant", "fg": 2192, "rotates": false }, - { "id": "corpse_mon_spider_wolf_small", "fg": 2193, "rotates": false }, - { "id": "corpse_mon_squirrel", "fg": 2194, "rotates": false }, - { "id": "corpse_mon_turkey", "fg": 2195, "rotates": false }, - { "id": "corpse_mon_twisted_body", "fg": 2196, "rotates": false }, - { "id": "corpse_mon_wasp", "fg": 2197, "rotates": false }, - { "id": "corpse_mon_wolf", "fg": 2198, "rotates": false }, - { "id": "corpse_mon_worm", "fg": 2199, "rotates": false }, - { "id": "corpse_mon_zombear", "fg": 2200, "rotates": false }, - { "id": "corpse_mon_zombie", "fg": 2201, "rotates": false }, - { "id": "corpse_mon_zombie_acidic", "fg": 2202, "rotates": false }, - { "id": "corpse_mon_zombie_beekeeper", "fg": 2203, "rotates": false }, - { "id": "corpse_mon_zombie_bio_op", "fg": 2204, "rotates": false }, - { "id": "corpse_mon_zombie_biter", "fg": 2205, "rotates": false }, - { "id": "corpse_mon_zombie_brainless", "fg": 2206, "rotates": false }, - { "id": "corpse_mon_zombie_brute", "fg": 2207, "rotates": false }, - { "id": "corpse_mon_zombie_brute_grappler", "fg": 2208, "rotates": false }, - { "id": "corpse_mon_zombie_child", "fg": 2209, "rotates": false }, - { "id": "corpse_mon_zombie_child_scorched", "fg": 2210, "rotates": false }, - { "id": "corpse_mon_zombie_cop", "fg": 2211, "rotates": false }, - { "id": "corpse_mon_zombie_crawler", "fg": 2212, "rotates": false }, - { "id": "corpse_mon_zombie_dog", "fg": 2213, "rotates": false }, - { "id": "corpse_mon_zombie_ear", "fg": 2214, "rotates": false }, - { "id": "corpse_mon_zombie_fat", "fg": 2215, "rotates": false }, - { "id": "corpse_mon_zombie_fungus", "fg": 2216, "rotates": false }, - { "id": "corpse_mon_zombie_grappler", "fg": 2217, "rotates": false }, - { "id": "corpse_mon_zombie_hazmat", "fg": 2218, "rotates": false }, - { "id": "corpse_mon_zombie_hunter", "fg": 2219, "rotates": false }, - { "id": "corpse_mon_zombie_kevlar_1", "fg": 2220, "rotates": false }, - { "id": "corpse_mon_zombie_mancroc", "fg": 2221, "rotates": false }, - { "id": "corpse_mon_zombie_predator", "fg": 2222, "rotates": false }, - { "id": "corpse_mon_zombie_rot", "fg": 2223, "rotates": false }, - { "id": "corpse_mon_zombie_scientist", "fg": 2224, "rotates": false }, - { "id": "corpse_mon_zombie_screecher", "fg": 2225, "rotates": false }, - { "id": "corpse_mon_zombie_security", "fg": 2226, "rotates": false }, - { "id": "corpse_mon_zombie_shady", "fg": 2227, "rotates": false }, - { "id": "corpse_mon_zombie_shrieker", "fg": 2228, "rotates": false }, - { "id": "corpse_mon_zombie_shriekling", "fg": 2229, "rotates": false }, - { "id": "corpse_mon_zombie_skull", "fg": 2230, "rotates": false }, - { "id": "corpse_mon_zombie_soldier", "fg": 2231, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_acid_1", "fg": 2232, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_acid_2", "fg": 2233, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_blackops_1", "fg": 2234, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_blackops_2", "fg": 2235, "rotates": false }, - { "id": "corpse_mon_zombie_spitter", "fg": 2236, "rotates": false }, - { "id": "corpse_mon_zombie_sproglodyte", "fg": 2237, "rotates": false }, - { "id": "corpse_mon_zombie_technician", "fg": 2238, "rotates": false }, - { "id": "corpse_mon_zombie_tough", "fg": 2239, "rotates": false }, - { "id": "corpse_mon_zombie_waif", "fg": 2240, "rotates": false }, - { "id": "corpse_mon_zoose", "fg": 2241, "rotates": false }, - { "id": "corpse_mon_zougar", "fg": 2242, "rotates": false }, - { "id": [ "bandages_makeshift", "bandages_makeshift_boiled" ], "fg": 2253, "rotates": false }, - { "id": [ "belt308_reusable", "belt308", "belt223" ], "fg": 2309, "rotates": false }, - { "id": [ "cutlass_inferior", "cutlass_fake" ], "fg": 2385, "rotates": false }, - { "id": [ "jian_fake", "jian_inferior" ], "fg": 2492, "rotates": false }, - { "id": [ "porkbelly", "raw_curing_fatty_meat" ], "fg": 2710, "rotates": false }, - { "id": "raw_cured_fatty_meat", "fg": 2711, "rotates": false }, - { "id": "bacon_uncut", "fg": 2708, "rotates": false }, - { "id": "meat_fatty_cooked", "fg": 2709, "rotates": false }, - { "id": [ "garnet_gold_ring", "ruby_gold_ring" ], "fg": 2732 }, - { "id": [ "garnet_silver_ring", "ruby_silver_ring" ], "fg": 2734 }, - { "id": [ "garnet_platinum_ring", "ruby_platinum_ring" ], "fg": 2733 }, - { "id": [ "sapphire_gold_ring", "alexandrite_gold_ring" ], "fg": 2741 }, - { "id": [ "sapphire_silver_ring", "alexandrite_silver_ring" ], "fg": 2743 }, - { "id": [ "sapphire_platinum_ring", "alexandrite_platinum_ring" ], "fg": 2742 }, - { "id": [ "opal_gold_ring", "pearl_gold_ring" ], "fg": 2735 }, - { "id": [ "opal_silver_ring", "pearl_silver_ring" ], "fg": 2737 }, - { "id": [ "opal_platinum_ring", "pearl_platinum_ring" ], "fg": 2736 }, - { "id": [ "overlay_wielded_weed", "weed" ], "fg": 2749, "rotates": false }, - { "id": "animation_bullet_flame", "fg": 2751, "rotates": false }, - { "id": "animation_bullet_normal", "fg": 2752, "rotates": false }, - { "id": "animation_bullet_shrapnel", "fg": 2753 }, - { "id": "animation_hit", "fg": 2754 }, - { "id": "animation_line", "bg": 2752 }, + "fg": [ { "weight": 1, "sprite": 1957 }, { "weight": 1, "sprite": 1956 }, { "weight": 1, "sprite": 1958 } ] + }, + { "id": "usb_drive", "fg": 1960 }, + { "id": "cash_card", "fg": 1964 }, + { "id": "fp_loyalty_card", "fg": 1965 }, + { "id": "id_industrial", "fg": 1966 }, + { "id": "id_military", "fg": 1967 }, + { "id": "id_science", "fg": 1968 }, + { "id": "bowl_plastic", "fg": 1969 }, + { "id": "cup_plastic", "fg": 1970 }, + { "id": "fork", "fg": 1971 }, + { "id": "glass_plate", "fg": 1972 }, + { "id": "knife_butter", "fg": 1973 }, + { "id": "2h_flail_steel", "fg": 1977 }, + { "id": "washboard", "fg": 1979 }, + { "id": "wash_kit", "fg": 1978 }, + { "id": "welder", "fg": 1980 }, + { "id": "welder_crude", "fg": 1981 }, + { "id": "wood_panel", "fg": 1982 }, + { "id": "wood_sheet", "fg": 1983 }, + { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 2041 }, + { "id": [ "ak47", "aksemi" ], "fg": 1991 }, + { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 2005 }, + { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 2042 }, + { "id": [ "m249", "m249_semi" ], "fg": 2049 }, + { "id": [ "m60", "m60_semi" ], "fg": 2059 }, + { "id": [ "mp40", "mp40semi" ], "fg": 2075 }, + { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2114 }, + { "id": "corpse_mon_alpha_razorclaw", "fg": 2133, "rotates": false }, + { "id": "corpse_mon_ant", "fg": 2134, "rotates": false }, + { "id": "corpse_mon_ant_gueen", "fg": 2135, "rotates": false }, + { "id": "corpse_mon_ant_larva", "fg": 2136, "rotates": false }, + { "id": "corpse_mon_ant_soldier", "fg": 2137, "rotates": false }, + { "id": "corpse_mon_bat", "fg": 2138, "rotates": false }, + { "id": "corpse_mon_bear", "fg": 2139, "rotates": false }, + { "id": "corpse_mon_bee", "fg": 2140, "rotates": false }, + { "id": "corpse_mon_biollante", "fg": 2141, "rotates": false }, + { "id": "corpse_mon_black_rat", "fg": 2142, "rotates": false }, + { "id": "corpse_mon_blank", "fg": 2143, "rotates": false }, + { "id": "corpse_mon_broken_cyborg", "fg": 2144, "rotates": false }, + { "id": "corpse_mon_cat", "fg": 2145, "rotates": false }, + { "id": "corpse_mon_chicken", "fg": 2146, "rotates": false }, + { "id": "corpse_mon_cougar", "fg": 2147, "rotates": false }, + { "id": "corpse_mon_crow", "fg": 2148, "rotates": false }, + { "id": "corpse_mon_deer", "fg": 2149, "rotates": false }, + { "id": "corpse_mon_dermatik", "fg": 2150, "rotates": false }, + { "id": "corpse_mon_dog", "fg": 2151, "rotates": false }, + { "id": "corpse_mon_dog_zombie_cop", "fg": 2152, "rotates": false }, + { "id": "corpse_mon_duck", "fg": 2153, "rotates": false }, + { "id": "corpse_mon_fish_bowfin", "fg": 2154, "rotates": false }, + { "id": "corpse_mon_fish_bullhead", "fg": 2155, "rotates": false }, + { "id": "corpse_mon_fish_carp", "fg": 2156, "rotates": false }, + { "id": "corpse_mon_fish_crayfish", "fg": 2157, "rotates": false }, + { "id": "corpse_mon_fish_perch", "fg": 2158, "rotates": false }, + { "id": "corpse_mon_fish_pickerel", "fg": 2159, "rotates": false }, + { "id": "corpse_mon_fish_pike", "fg": 2160, "rotates": false }, + { "id": "corpse_mon_fish_sbass", "fg": 2161, "rotates": false }, + { "id": "corpse_mon_fish_trout", "fg": 2162, "rotates": false }, + { "id": "corpse_mon_fish_whitefish", "fg": 2163, "rotates": false }, + { "id": "corpse_mon_fish_lbass", "fg": 3115, "rotates": false }, + { "id": "corpse_mon_fish_pbass", "fg": 3116, "rotates": false }, + { "id": "corpse_mon_fish_salmon", "fg": 3117, "rotates": false }, + { "id": "corpse_mon_fish_sunfish", "fg": 3118, "rotates": false }, + { "id": "corpse_mon_flaming_eye", "fg": 2164, "rotates": false }, + { "id": "corpse_mon_fly", "fg": 2165, "rotates": false }, + { "id": "corpse_mon_fox", "fg": 2166, "rotates": false }, + { "id": "corpse_mon_frog_giant", "fg": 2167, "rotates": false }, + { "id": "corpse_mon_frog_small", "fg": 2168, "rotates": false }, + { "id": "corpse_mon_fungaloid", "fg": 2169, "rotates": false }, + { "id": "corpse_mon_fungaloid_young", "fg": 2170, "rotates": false }, + { "id": "corpse_mon_gator", "fg": 2171, "rotates": false }, + { "id": "corpse_mon_giant_cockroach_nymph", "fg": 2172, "rotates": false }, + { "id": "corpse_mon_gozu", "fg": 2173, "rotates": false }, + { "id": "corpse_mon_gragonfly", "fg": 2174, "rotates": false }, + { "id": "corpse_mon_hare", "fg": 2175, "rotates": false }, + { "id": "corpse_mon_hare_season_winter", "fg": 2176, "rotates": false }, + { "id": "corpse_mon_human_snail", "fg": 2177, "rotates": false }, + { "id": "corpse_mon_large_cockroach", "fg": 2178, "rotates": false }, + { "id": "corpse_mon_mi_go", "fg": 2179, "rotates": false }, + { "id": "corpse_mon_moose", "fg": 2180, "rotates": false }, + { "id": "corpse_mon_mosquito", "fg": 2181, "rotates": false }, + { "id": "corpse_mon_racoon", "fg": 2182, "rotates": false }, + { "id": "corpse_mon_rattlesnake_giant", "fg": 2183, "rotates": false }, + { "id": "corpse_mon_razorclaw", "fg": 2184, "rotates": false }, + { "id": "corpse_mon_sewer_snake", "fg": 2185, "rotates": false }, + { "id": "corpse_mon_sheep", "fg": 2186, "rotates": false }, + { "id": "corpse_mon_skeleton", "fg": 2187, "rotates": false }, + { "id": "corpse_mon_slug", "fg": 2188, "rotates": false }, + { "id": "corpse_mon_spider_jumping_giant", "fg": 2189, "rotates": false }, + { "id": "corpse_mon_spider_web", "fg": 2190, "rotates": false }, + { "id": "corpse_mon_spider_web_s", "fg": 2191, "rotates": false }, + { "id": "corpse_mon_spider_widow_giant", "fg": 2192, "rotates": false }, + { "id": "corpse_mon_spider_widow_giant_s", "fg": 2193, "rotates": false }, + { "id": "corpse_mon_spider_wolf_giant", "fg": 2194, "rotates": false }, + { "id": "corpse_mon_spider_wolf_small", "fg": 2195, "rotates": false }, + { "id": "corpse_mon_squirrel", "fg": 2196, "rotates": false }, + { "id": "corpse_mon_turkey", "fg": 2197, "rotates": false }, + { "id": "corpse_mon_twisted_body", "fg": 2198, "rotates": false }, + { "id": "corpse_mon_wasp", "fg": 2199, "rotates": false }, + { "id": "corpse_mon_wolf", "fg": 2200, "rotates": false }, + { "id": "corpse_mon_worm", "fg": 2201, "rotates": false }, + { "id": "corpse_mon_zombear", "fg": 2202, "rotates": false }, + { "id": "corpse_mon_zombie", "fg": 2203, "rotates": false }, + { "id": "corpse_mon_zombie_acidic", "fg": 2204, "rotates": false }, + { "id": "corpse_mon_zombie_beekeeper", "fg": 2205, "rotates": false }, + { "id": "corpse_mon_zombie_bio_op", "fg": 2206, "rotates": false }, + { "id": "corpse_mon_zombie_biter", "fg": 2207, "rotates": false }, + { "id": "corpse_mon_zombie_brainless", "fg": 2208, "rotates": false }, + { "id": "corpse_mon_zombie_brute", "fg": 2209, "rotates": false }, + { "id": "corpse_mon_zombie_brute_grappler", "fg": 2210, "rotates": false }, + { "id": "corpse_mon_zombie_child", "fg": 2211, "rotates": false }, + { "id": "corpse_mon_zombie_child_scorched", "fg": 2212, "rotates": false }, + { "id": "corpse_mon_zombie_cop", "fg": 2213, "rotates": false }, + { "id": "corpse_mon_zombie_crawler", "fg": 2214, "rotates": false }, + { "id": "corpse_mon_zombie_dog", "fg": 2215, "rotates": false }, + { "id": "corpse_mon_zombie_ear", "fg": 2216, "rotates": false }, + { "id": "corpse_mon_zombie_fat", "fg": 2217, "rotates": false }, + { "id": "corpse_mon_zombie_fungus", "fg": 2218, "rotates": false }, + { "id": "corpse_mon_zombie_grappler", "fg": 2219, "rotates": false }, + { "id": "corpse_mon_zombie_hazmat", "fg": 2220, "rotates": false }, + { "id": "corpse_mon_zombie_hunter", "fg": 2221, "rotates": false }, + { "id": "corpse_mon_zombie_kevlar_1", "fg": 2222, "rotates": false }, + { "id": "corpse_mon_zombie_mancroc", "fg": 2223, "rotates": false }, + { "id": "corpse_mon_zombie_predator", "fg": 2224, "rotates": false }, + { "id": "corpse_mon_zombie_rot", "fg": 2225, "rotates": false }, + { "id": "corpse_mon_zombie_scientist", "fg": 2226, "rotates": false }, + { "id": "corpse_mon_zombie_screecher", "fg": 2227, "rotates": false }, + { "id": "corpse_mon_zombie_security", "fg": 2228, "rotates": false }, + { "id": "corpse_mon_zombie_shady", "fg": 2229, "rotates": false }, + { "id": "corpse_mon_zombie_shrieker", "fg": 2230, "rotates": false }, + { "id": "corpse_mon_zombie_shriekling", "fg": 2231, "rotates": false }, + { "id": "corpse_mon_zombie_skull", "fg": 2232, "rotates": false }, + { "id": "corpse_mon_zombie_soldier", "fg": 2233, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_acid_1", "fg": 2234, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_acid_2", "fg": 2235, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_blackops_1", "fg": 2236, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_blackops_2", "fg": 2237, "rotates": false }, + { "id": "corpse_mon_zombie_spitter", "fg": 2238, "rotates": false }, + { "id": "corpse_mon_zombie_sproglodyte", "fg": 2239, "rotates": false }, + { "id": "corpse_mon_zombie_technician", "fg": 2240, "rotates": false }, + { "id": "corpse_mon_zombie_tough", "fg": 2241, "rotates": false }, + { "id": "corpse_mon_zombie_waif", "fg": 2242, "rotates": false }, + { "id": "corpse_mon_zoose", "fg": 2243, "rotates": false }, + { "id": "corpse_mon_zougar", "fg": 2244, "rotates": false }, + { "id": [ "corpse_mon_brute_pupa", "corpse_mon_brute_pupa_decoy" ], "fg": 2245, "rotates": false }, + { "id": [ "bandages_makeshift", "bandages_makeshift_boiled" ], "fg": 2257, "rotates": false }, + { "id": [ "belt308_reusable", "belt308", "belt223" ], "fg": 2313, "rotates": false }, + { "id": [ "cutlass_inferior", "cutlass_fake" ], "fg": 2389, "rotates": false }, + { "id": [ "jian_fake", "jian_inferior" ], "fg": 2496, "rotates": false }, + { "id": [ "porkbelly", "raw_curing_fatty_meat" ], "fg": 2714, "rotates": false }, + { "id": "raw_cured_fatty_meat", "fg": 2715, "rotates": false }, + { "id": "bacon_uncut", "fg": 2712, "rotates": false }, + { "id": "meat_fatty_cooked", "fg": 2713, "rotates": false }, + { "id": [ "garnet_gold_ring", "ruby_gold_ring" ], "fg": 2736 }, + { "id": [ "garnet_silver_ring", "ruby_silver_ring" ], "fg": 2738 }, + { "id": [ "garnet_platinum_ring", "ruby_platinum_ring" ], "fg": 2737 }, + { "id": [ "sapphire_gold_ring", "alexandrite_gold_ring" ], "fg": 2745 }, + { "id": [ "sapphire_silver_ring", "alexandrite_silver_ring" ], "fg": 2747 }, + { "id": [ "sapphire_platinum_ring", "alexandrite_platinum_ring" ], "fg": 2746 }, + { "id": [ "opal_gold_ring", "pearl_gold_ring" ], "fg": 2739 }, + { "id": [ "opal_silver_ring", "pearl_silver_ring" ], "fg": 2741 }, + { "id": [ "opal_platinum_ring", "pearl_platinum_ring" ], "fg": 2740 }, + { "id": [ "overlay_wielded_weed", "weed" ], "fg": 2753, "rotates": false }, + { "id": "animation_bullet_flame", "fg": 2755, "rotates": false }, + { "id": "animation_bullet_normal", "fg": 2756, "rotates": false }, + { "id": "animation_bullet_shrapnel", "fg": 2757 }, + { "id": "animation_hit", "fg": 2758 }, + { "id": "animation_line", "bg": 2756 }, { "id": "craft", "animated": true, - "fg": [ { "weight": 15, "sprite": 2775 }, { "weight": 15, "sprite": 2776 } ] + "fg": [ { "weight": 15, "sprite": 2779 }, { "weight": 15, "sprite": 2780 } ] }, - { "id": "cursor", "fg": 2755, "rotates": false }, + { "id": "cursor", "fg": 2759, "rotates": false }, { "id": "disassembly", "animated": true, - "fg": [ { "weight": 15, "sprite": 2777 }, { "weight": 15, "sprite": 2778 } ] + "fg": [ { "weight": 15, "sprite": 2781 }, { "weight": 15, "sprite": 2782 } ] }, { "id": [ "explosion", "explosion_medium", "explosion_weak" ], - "fg": 2779, + "fg": 2783, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2779 }, - { "id": "corner", "fg": 2756 }, - { "id": "edge", "fg": 2757 }, - { "id": "end_piece", "fg": 2780 }, - { "id": "t_connection", "fg": 2781 }, - { "id": "unconnected", "fg": 2779 } - ] - }, - { "id": "footstep", "fg": 2758, "rotates": false }, - { "id": "highlight", "fg": 2755, "rotates": false }, - { "id": "highlight_item", "fg": 2759, "rotates": false }, - { "id": "infrared_creature", "fg": 2785, "rotates": false }, - { "id": "lighting_boomered_dark", "fg": 2760, "rotates": false }, - { "id": "lighting_boomered_light", "fg": 2761, "rotates": false }, - { "id": [ "lighting_hidden", "unknown_terrain" ], "fg": 2764, "rotates": false }, - { "id": "lighting_lowlight_dark", "fg": 2762, "rotates": false }, - { "id": "lighting_lowlight_light", "fg": 2763, "rotates": false }, - { "id": "line_target", "bg": 2755, "rotates": false }, - { "id": "line_trail", "bg": 2755, "rotates": false }, - { "id": "night_filter1", "fg": 2769 }, - { "id": "night_filter2", "fg": 2770 }, - { "id": "night_filter3", "fg": 2771 }, - { "id": "night_filter4", "fg": 2772 }, - { "id": "night_filter", "fg": 2765 }, - { "id": "nv_filter", "fg": 2767 }, - { "id": "nv_over_filter", "fg": 2768 }, - { "id": "shadow_filter", "fg": 2766 }, + { "id": "center", "fg": 2783 }, + { "id": "corner", "fg": 2760 }, + { "id": "edge", "fg": 2761 }, + { "id": "end_piece", "fg": 2784 }, + { "id": "t_connection", "fg": 2785 }, + { "id": "unconnected", "fg": 2783 } + ] + }, + { "id": "footstep", "fg": 2762, "rotates": false }, + { "id": "highlight", "fg": 2759, "rotates": false }, + { "id": "highlight_item", "fg": 2763, "rotates": false }, + { "id": "infrared_creature", "fg": 2789, "rotates": false }, + { "id": "lighting_boomered_dark", "fg": 2764, "rotates": false }, + { "id": "lighting_boomered_light", "fg": 2765, "rotates": false }, + { "id": [ "lighting_hidden", "unknown_terrain" ], "fg": 2768, "rotates": false }, + { "id": "lighting_lowlight_dark", "fg": 2766, "rotates": false }, + { "id": "lighting_lowlight_light", "fg": 2767, "rotates": false }, + { "id": "line_target", "bg": 2759, "rotates": false }, + { "id": "line_trail", "bg": 2759, "rotates": false }, + { "id": "night_filter1", "fg": 2773 }, + { "id": "night_filter2", "fg": 2774 }, + { "id": "night_filter3", "fg": 2775 }, + { "id": "night_filter4", "fg": 2776 }, + { "id": "night_filter", "fg": 2769 }, + { "id": "nv_filter", "fg": 2771 }, + { "id": "nv_over_filter", "fg": 2772 }, + { "id": "shadow_filter", "fg": 2770 }, { "id": "tr_unfinished_construction", "animated": true, - "fg": [ { "weight": 15, "sprite": 2786 }, { "weight": 15, "sprite": 2787 } ] - }, - { "id": "unknown", "fg": 2788, "rotates": false }, - { "id": "weather_rain_drop", "fg": 2773, "rotates": false }, - { "id": "weather_snowflake", "fg": 2774, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 2824, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 2807, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 2822, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 2805, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 2823, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 2806, "rotates": false }, + "fg": [ { "weight": 15, "sprite": 2790 }, { "weight": 15, "sprite": 2791 } ] + }, + { "id": "unknown", "fg": 2792, "rotates": false }, + { "id": "weather_rain_drop", "fg": 2777, "rotates": false }, + { "id": "weather_snowflake", "fg": 2778, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 2828, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 2811, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 2826, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 2809, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 2827, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 2810, "rotates": false }, { "id": "mon_demon_spiderling", "animated": true, "fg": [ - { "weight": 15, "sprite": 2875 }, - { "weight": 15, "sprite": 2876 }, - { "weight": 15, "sprite": 2877 }, - { "weight": 15, "sprite": 2876 } + { "weight": 15, "sprite": 2879 }, + { "weight": 15, "sprite": 2880 }, + { "weight": 15, "sprite": 2881 }, + { "weight": 15, "sprite": 2880 } ], "rotates": false }, { "id": "mon_marshmallow_kid", - "fg": [ { "weight": 1, "sprite": 2881 }, { "weight": 1, "sprite": 2882 } ], + "fg": [ { "weight": 1, "sprite": 2885 }, { "weight": 1, "sprite": 2886 } ], "bg": [ ], "rotates": false }, { "id": "mon_necco", "fg": [ - { "weight": 1, "sprite": 2884 }, - { "weight": 1, "sprite": 2885 }, - { "weight": 1, "sprite": 2886 }, - { "weight": 1, "sprite": 2887 }, { "weight": 1, "sprite": 2888 }, { "weight": 1, "sprite": 2889 }, - { "weight": 1, "sprite": 2883 } + { "weight": 1, "sprite": 2890 }, + { "weight": 1, "sprite": 2891 }, + { "weight": 1, "sprite": 2892 }, + { "weight": 1, "sprite": 2893 }, + { "weight": 1, "sprite": 2887 } ], "bg": [ ], "rotates": false }, - { "id": "debug_mon", "fg": 2890 }, - { "id": "mon_EMP_hack", "fg": 2963 }, - { "id": "mon_albino_penguin", "fg": 2891, "bg": 3158, "rotates": false }, - { "id": "mon_alpha_razorclaw", "fg": 2892, "bg": 3158 }, - { "id": "mon_ant", "fg": 2893, "bg": 3158, "rotates": false }, - { "id": "mon_ant_acid", "fg": 3110, "bg": 3158, "rotates": false }, - { "id": "mon_ant_acid_larva", "fg": 3109, "bg": 3158, "rotates": false }, - { "id": "mon_ant_acid_queen", "fg": 3111, "bg": 3158, "rotates": false }, - { "id": "mon_ant_acid_soldier", "fg": 3108, "rotates": false }, - { "id": "mon_ant_fungus", "fg": 2894, "bg": 3158, "rotates": false }, - { "id": "mon_ant_larva", "fg": 2895, "bg": 3158, "rotates": false }, - { "id": "mon_ant_queen", "fg": 2896, "bg": 3158, "rotates": false }, - { "id": "mon_ant_soldier", "fg": 2897, "bg": 3158, "rotates": false }, - { "id": "mon_bat", "fg": 2898, "bg": 3158, "rotates": false }, - { "id": "mon_bear", "fg": 2899, "bg": 3158, "rotates": false }, - { "id": "mon_bear_cub", "fg": 2900, "bg": 3158, "rotates": false }, - { "id": "mon_bear_smoky", "fg": 2901, "bg": 3158, "rotates": false }, - { "id": "mon_bee", "fg": 2902, "bg": 3158, "rotates": false }, - { "id": "mon_bee_mega", "fg": 2904, "rotates": false }, - { "id": "mon_bee_small", "fg": 2905, "rotates": false }, - { "id": "mon_beekeeper", "fg": 2903, "bg": 3158, "rotates": false }, - { "id": "mon_biollante", "fg": 2906, "bg": 3158, "rotates": false }, - { "id": "mon_black_rat", "fg": 3015, "rotates": false }, - { "id": "mon_blank", "fg": 2907, "bg": 3158, "rotates": false }, - { "id": "mon_blob", "fg": 2908, "bg": 3158, "rotates": false }, - { "id": "mon_blob_large", "fg": 2909, "rotates": false }, - { "id": "mon_blob_small", "fg": 2910, "rotates": false }, - { "id": "mon_bobcat", "fg": 2911, "bg": 3158, "rotates": false }, - { "id": "mon_boomer", "fg": 2912, "bg": 3158, "rotates": false }, - { "id": "mon_boomer_fungus", "fg": 2913, "bg": 3158, "rotates": false }, - { "id": "mon_breather", "fg": 2914, "rotates": false }, - { "id": "mon_breather_hub", "fg": 2915, "bg": 3158, "rotates": false }, - { "id": "mon_c4_hack", "fg": 2916, "bg": 3158, "rotates": false }, - { "id": "mon_cat", "fg": 2911, "bg": 3158, "rotates": false }, - { "id": "mon_centipede", "fg": 2917, "rotates": false }, - { "id": "mon_centipede_giant", "fg": 2918, "bg": 3158, "rotates": false }, - { "id": "mon_charred_nightmare", "fg": 2919, "rotates": false }, - { "id": "mon_chicken", "fg": 2920, "bg": 3158, "rotates": false }, - { "id": "mon_chipmunk", "fg": 2921, "bg": 3158, "rotates": false }, - { "id": "mon_chud", "fg": 2922, "bg": 3158, "rotates": false }, - { "id": "mon_compsognathus", "fg": 2923, "bg": 3158, "rotates": false }, - { "id": "mon_cougar", "fg": 2924, "bg": 3158, "rotates": false }, - { "id": "mon_coyote", "fg": 2925, "bg": 3158, "rotates": false }, - { "id": "mon_coyote_wolf", "fg": 2926, "bg": 3158, "rotates": false }, - { "id": "mon_crawler", "fg": 2927, "bg": 3158, "rotates": false }, - { "id": "mon_creeper_hub", "fg": 2928, "bg": 3158, "rotates": false }, - { "id": "mon_creeper_vine", "fg": 2929, "bg": 3158, "rotates": false }, - { "id": "mon_crow", "fg": 2930, "bg": 3158, "rotates": false }, - { "id": "mon_darkman", "fg": 2931, "bg": 3158, "rotates": false }, - { "id": "mon_deer", "fg": 2932, "bg": 3158, "rotates": false }, - { "id": "mon_deer_mouse", "fg": 3015, "rotates": false }, - { "id": "mon_deinonychus", "fg": 2933, "bg": 3158, "rotates": false }, - { "id": "mon_dementia", "fg": 2934, "bg": 3158, "rotates": false }, - { "id": "mon_dermatik", "fg": 2935, "bg": 3158, "rotates": false }, - { "id": "mon_dermatik_larva", "fg": 2936, "rotates": false }, - { "id": "mon_dilophosaurus", "fg": 2933, "bg": 3158, "rotates": false }, - { "id": "mon_dimorphodon", "fg": 2937, "bg": 3158, "rotates": false }, - { "id": "mon_dog_skeleton", "fg": 2938, "bg": 3158, "rotates": false }, - { "id": "mon_dog_zombie_cop", "fg": 2939, "bg": 3158, "rotates": false }, - { "id": "mon_dog_zombie_rot", "fg": 2940, "bg": [ ], "rotates": false }, - { "id": "mon_dragonfly_giant", "fg": 2942, "bg": 3158, "rotates": false }, - { "id": "mon_dragonfly_small", "fg": 2941, "rotates": false }, - { "id": "mon_duck", "fg": 2943, "bg": 3158, "rotates": false }, - { "id": "mon_eoraptor", "fg": 2923, "bg": 3158, "rotates": false }, - { "id": "mon_fant", "fg": 2944, "rotates": false }, - { "id": "mon_fish_blinky", "fg": 2945, "rotates": false }, - { "id": "mon_fish_bluegill", "fg": 2946, "rotates": false }, - { "id": "mon_fish_bowfin", "fg": 2947, "rotates": false }, - { "id": "mon_fish_bullhead", "fg": 2948, "rotates": false }, - { "id": "mon_fish_carp", "fg": 2949, "rotates": false }, - { "id": "mon_fish_crayfish", "fg": 2950, "rotates": false }, - { "id": "mon_fish_lbass", "fg": 2951, "rotates": false }, - { "id": "mon_fish_lobster", "fg": 2952, "rotates": false }, - { "id": "mon_fish_pbass", "fg": 2953, "rotates": false }, - { "id": "mon_fish_perch", "fg": 2954, "rotates": false }, - { "id": "mon_fish_pickerel", "fg": 2955, "rotates": false }, - { "id": "mon_fish_pike", "fg": 2956, "rotates": false }, - { "id": "mon_fish_salmon", "fg": 2957, "rotates": false }, - { "id": "mon_fish_sbass", "fg": 2958, "rotates": false }, - { "id": "mon_fish_sunfish", "fg": 2959, "rotates": false }, - { "id": "mon_fish_trout", "fg": 2960, "rotates": false }, - { "id": "mon_fish_whitefish", "fg": 2961, "rotates": false }, - { "id": "mon_flaming_eye", "fg": 2962, "bg": 3158, "rotates": false }, - { "id": "mon_flashbang_hack", "fg": 2963, "bg": 3158, "rotates": false }, - { "id": "mon_fly", "fg": 2964, "bg": 3158, "rotates": false }, - { "id": "mon_fox_gray", "fg": 2965, "bg": 3158, "rotates": false }, - { "id": "mon_fox_red", "fg": 2965, "bg": 3158, "rotates": false }, - { "id": "mon_fungal_blossom", "fg": 2967, "bg": 3158, "rotates": false }, - { "id": "mon_fungal_fighter", "fg": 2968, "bg": 3158, "rotates": false }, - { "id": "mon_fungal_hedgerow", "fg": 2969, "bg": 3158, "rotates": false }, - { "id": "mon_fungal_tendril", "fg": 2970, "bg": 3158, "rotates": false }, - { "id": "mon_fungal_wall", "fg": 2971, "bg": 3158, "rotates": false }, - { "id": "mon_fungaloid_dormant", "fg": 3099, "bg": 3158, "rotates": false }, - { "id": "mon_fungaloid_young", "fg": 2966, "bg": 3158, "rotates": false }, - { "id": "mon_gallimimus", "fg": 2972, "bg": 3158, "rotates": false }, - { "id": "mon_gasbomb_hack", "fg": 2973, "bg": 3158, "rotates": false }, - { "id": "mon_gator", "fg": 2974, "rotates": false }, - { "id": "mon_gelatin", "fg": 2975, "bg": 3158, "rotates": false }, - { "id": "mon_generator", "fg": 2976, "bg": 3158, "rotates": false }, - { "id": "mon_giant_cockroach", "fg": 2977, "rotates": false }, - { "id": "mon_giant_cockroach_nymph", "fg": 2978, "rotates": false }, - { "id": "mon_goat", "fg": 2979, "rotates": false }, - { "id": "mon_gozu", "fg": 2980, "bg": 3158, "rotates": false }, - { "id": "mon_graboid", "fg": 2981, "bg": 3158, "rotates": false }, - { "id": "mon_grenade_hack", "fg": 2982, "bg": 3158, "rotates": false }, - { "id": "mon_groundhog", "fg": 2921, "bg": 3158, "rotates": false }, - { "id": "mon_halfworm", "fg": 2983, "bg": 3158, "rotates": false }, - { "id": "mon_hallu_mom", "fg": 2984, "bg": 3158, "rotates": false }, - { "id": "mon_hare", "fg": 2985, "bg": 3158, "rotates": false }, - { "id": "mon_hare_season_winter", "fg": 2986, "bg": 3158, "rotates": false }, - { "id": "mon_headless_dog_thing", "fg": 2987, "bg": 3158, "rotates": false }, - { "id": "mon_hologram", "fg": 3100, "rotates": false }, - { "id": "mon_human_snail", "fg": 2988, "bg": 3158, "rotates": false }, - { "id": "mon_irradiated_wanderer_1", "fg": 2989, "bg": 3158 }, - { "id": "mon_irradiated_wanderer_2", "fg": 2990, "bg": 3158, "rotates": false }, - { "id": "mon_irradiated_wanderer_3", "fg": 2991, "bg": 3158 }, - { "id": "mon_irradiated_wanderer_4", "fg": 2992, "bg": 3158 }, - { "id": "mon_kreck", "fg": 2993, "bg": 3158, "rotates": false }, - { "id": "mon_laserturret", "fg": 2994, "bg": 3158, "rotates": false }, - { "id": "mon_lemming", "fg": 2921, "bg": 3158, "rotates": false }, - { "id": "mon_manhack", "fg": 2995, "bg": 3158, "rotates": false }, - { "id": "mon_manhack_acid", "fg": 2996, "rotates": false }, - { "id": "mon_mi_go", "fg": 2998, "bg": 3158, "rotates": false }, - { "id": "mon_mininuke_hack", "fg": 2997, "bg": 3158, "rotates": false }, - { "id": "mon_mink", "fg": 2921, "bg": 3158, "rotates": false }, - { "id": "mon_moose", "fg": 2999, "bg": 3158, "rotates": false }, - { "id": "mon_mosquito", "fg": 3000, "rotates": false }, - { "id": "mon_mosquito_giant", "fg": 3001, "bg": 3158, "rotates": false }, - { "id": "mon_muskrat", "fg": 3015, "rotates": false }, - { "id": "mon_mutant_carp", "fg": 3002, "rotates": false }, - { "id": "mon_mutant_salmon", "fg": 3003, "rotates": false }, - { "id": "mon_one_eye", "fg": 3004, "bg": 3158, "rotates": false }, - { "id": "mon_otter", "fg": 2921, "bg": 3158, "rotates": false }, - { "id": "mon_player_blob", "fg": 3005, "bg": 3158, "rotates": false }, - { "id": "mon_pregnant_giant_cockroach", "fg": 3006, "rotates": false }, - { "id": "mon_prototype_cyborg", "fg": 3133, "bg": 3158, "rotates": false }, - { "id": "mon_rabbit", "fg": 3007, "bg": 3158, "rotates": false }, - { "id": "mon_raccoon", "fg": 3008, "bg": 3158, "rotates": false }, - { "id": "mon_rat_king", "fg": 3011, "bg": 3158, "rotates": false }, - { "id": "mon_rattlesnake", "fg": 3009, "bg": 3158, "rotates": false }, - { "id": "mon_rattlesnake_giant", "fg": 3010, "bg": 3158, "rotates": false }, - { "id": "mon_razorclaw", "fg": 3012, "bg": 3158 }, - { "id": "mon_riotbot", "fg": 3013, "bg": 3158, "rotates": false }, - { "id": "mon_sewer_fish", "fg": 3014, "bg": 3158, "rotates": false }, - { "id": "mon_sewer_rat", "fg": 3015, "bg": 3158, "rotates": false }, - { "id": "mon_sewer_snake", "fg": 3016, "bg": 3158, "rotates": false }, - { "id": "mon_shadow", "fg": 3017, "rotates": false }, - { "id": "mon_shadow_snake", "fg": 3018, "rotates": false }, - { "id": "mon_skeleton", "fg": 3019, "bg": 3158, "rotates": false }, - { "id": "mon_skeleton_electric", "fg": 3136, "bg": 3158, "rotates": false }, - { "id": "mon_skitterbot", "fg": 3020, "bg": 3158, "rotates": false }, - { "id": "mon_sludge_crawler", "fg": 3021, "bg": 3158, "rotates": false }, - { "id": "mon_spider_cellar_giant", "fg": 3022, "bg": 3158, "rotates": false }, - { "id": "mon_spider_cellar_giant_s", "fg": 3023, "bg": 3158, "rotates": false }, - { "id": "mon_spider_jumping_giant", "fg": 3025, "bg": 3158, "rotates": false }, - { "id": "mon_spider_jumping_giant_mega", "fg": 3026, "rotates": false }, - { "id": "mon_spider_jumping_small", "fg": 3024, "bg": 3158, "rotates": false }, - { "id": "mon_spider_trapdoor", "fg": 3027, "bg": 3158, "rotates": false }, - { "id": "mon_spider_trapdoor_giant", "fg": 3028, "bg": 3158, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_mega", "fg": 3029, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_small", "fg": 3030, "rotates": false }, - { "id": "mon_spider_web", "fg": 3031, "bg": 3158, "rotates": false }, - { "id": "mon_spider_web_giant", "fg": 3031, "bg": 3158, "rotates": false }, - { "id": "mon_spider_web_mega", "fg": 3032, "rotates": false }, - { "id": "mon_spider_web_s", "fg": 3033, "bg": 3158, "rotates": false }, - { "id": "mon_spider_widow_giant", "fg": 3035, "bg": 3158, "rotates": false }, - { "id": "mon_spider_widow_giant_s", "fg": 3036, "bg": 3158, "rotates": false }, - { "id": "mon_spider_widow_small", "fg": 3034, "bg": 3158, "rotates": false }, - { "id": "mon_spider_wolf_giant", "fg": 3038, "bg": 3158, "rotates": false }, - { "id": "mon_spider_wolf_small", "fg": 3037, "bg": 3158, "rotates": false }, - { "id": "mon_spore", "fg": 3039, "bg": 3158, "rotates": false }, - { "id": "mon_squirrel", "fg": 3040, "bg": 3158, "rotates": false }, - { "id": "mon_squirrel_red", "fg": 3040, "bg": 3158, "rotates": false }, - { "id": "mon_titanis", "fg": 3041, "bg": 3158, "rotates": false }, - { "id": "mon_turkey", "fg": 3042, "bg": 3158, "rotates": false }, - { "id": "mon_velociraptor", "fg": 3043, "bg": 3158, "rotates": false }, - { "id": "mon_vinebeast", "fg": 3044, "bg": 3158, "rotates": false }, - { "id": "mon_vortex", "fg": 3045, "bg": 3158, "rotates": false }, - { "id": "mon_w11b10", "fg": 3102, "rotates": false }, - { "id": "mon_w11b20b4", "fg": 3103, "rotates": false }, - { "id": "mon_w11h10", "fg": 3105, "rotates": false }, - { "id": "mon_w12b10", "fg": 3104, "rotates": false }, - { "id": "mon_w12n10", "fg": 3106, "rotates": false }, - { "id": "mon_wasp", "fg": 3046, "bg": 3158, "rotates": false }, - { "id": "mon_wasp_larvae", "fg": 2936 }, - { "id": "mon_wasp_mega", "fg": 3047 }, - { "id": "mon_wasp_small", "fg": 3048, "rotates": false }, - { "id": "mon_weasel", "fg": 2921, "bg": 3158, "rotates": false }, - { "id": "mon_wolf", "fg": 3049, "bg": 3158, "rotates": false }, - { "id": "mon_worm", "fg": 3050, "bg": 3158, "rotates": false }, - { "id": "mon_zhark", "fg": 3051 }, - { "id": "mon_zolf", "fg": 3052, "bg": 3158, "rotates": false }, - { "id": "mon_zolf_shady", "fg": 3053, "rotates": false }, - { "id": "mon_zombear", "fg": 3054, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_acidic", "fg": 3055, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_anklebiter", "fg": 3056, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_armored", "fg": 3057, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_bio_op", "fg": 3058, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_biter", "fg": 3059, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_blind", "fg": 3060, "rotates": false }, - { "id": "mon_zombie_brainless", "fg": 3140, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_brute", "fg": 3061, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_brute_grappler", "fg": 3062, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_brute_ninja", "fg": 3063, "bg": 3158 }, - { "id": "mon_zombie_brute_shocker", "fg": 3064, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_child_fungus", "fg": 3107, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_child_scorched", "fg": 3065, "bg": 3158 }, - { "id": "mon_zombie_child_scorched_2", "fg": 3066, "rotates": false }, - { "id": "mon_zombie_cop", "fg": 3067, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_crawler", "fg": 3068, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_creepy", "fg": 3069, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_dancer", "fg": 3070, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_dog", "fg": 3071, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_ears", "fg": 3141, "bg": 3158 }, - { "id": "mon_zombie_electric", "fg": 3072, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_fiend", "fg": 3142, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_fireman", "fg": 3073, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_fungus", "fg": [ 3074, 3143 ], "bg": 3158, "rotates": false }, - { "id": "mon_zombie_gasbag", "fg": 3075, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_grappler", "fg": 3076, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_hazmat", "fg": 3077, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_hollow", "fg": 3078, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_hunter", "fg": 3079, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_jackson", "fg": 3080, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_kevlar_1", "fg": 3147, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_mancroc", "fg": 3081, "bg": 3158 }, - { "id": "mon_zombie_master", "fg": 3082, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_military_pilot", "fg": 3101, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_necro", "fg": 3083, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_predator", "fg": 3084, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_rot", "fg": 3085, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_scorched", "fg": 3086, "bg": 3158 }, - { "id": "mon_zombie_shady", "fg": 3087, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_shady_ghost", "fg": 3088, "rotates": false }, - { "id": "mon_zombie_shriekling", "fg": 3089, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_skull", "fg": 3149, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_smoker", "fg": 3090, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_snotgobbler", "fg": 3091, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_soldier", "fg": 3092, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_soldier_acid_1", "fg": 3150, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_soldier_acid_2", "fg": 3151, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_1", "fg": 3152, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_2", "fg": 3153, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_spitter", "fg": 3093, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_sproglodyte", "fg": 3094, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_static", "fg": 3154, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_swimmer", "fg": 3095, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_thorny", "fg": 3155, "rotates": false, "bg": 3158 }, - { "id": "mon_zombie_waif", "fg": 3096, "bg": 3158, "rotates": false }, - { "id": "mon_zombie_wretched", "fg": 3156, "bg": 3158, "rotates": false }, - { "id": "mon_zoose", "fg": 3097, "bg": 3158, "rotates": false }, - { "id": "mon_zougar", "fg": 3098, "bg": 3158, "rotates": false }, - { "id": "mon_triffid", "fg": 3137, "bg": 3158 }, - { "id": "mon_triffid_sprig", "fg": 3138, "bg": 3158 }, - { "id": "mon_triffid_young", "fg": 3139, "bg": 3158 }, + { "id": "debug_mon", "fg": 2894 }, + { "id": "mon_EMP_hack", "fg": 2967 }, + { "id": "mon_albino_penguin", "fg": 2895, "bg": 3161, "rotates": false }, + { "id": "mon_alpha_razorclaw", "fg": 2896, "bg": 3161 }, + { "id": "mon_ant", "fg": 2897, "bg": 3161, "rotates": false }, + { "id": "mon_ant_acid", "fg": 3113, "bg": 3161, "rotates": false }, + { "id": "mon_ant_acid_larva", "fg": 3112, "bg": 3161, "rotates": false }, + { "id": "mon_ant_acid_queen", "fg": 3114, "bg": 3161, "rotates": false }, + { "id": "mon_ant_acid_soldier", "fg": 3111, "rotates": false }, + { "id": "mon_ant_fungus", "fg": 2898, "bg": 3161, "rotates": false }, + { "id": "mon_ant_larva", "fg": 2899, "bg": 3161, "rotates": false }, + { "id": "mon_ant_queen", "fg": 2900, "bg": 3161, "rotates": false }, + { "id": "mon_ant_soldier", "fg": 2901, "bg": 3161, "rotates": false }, + { "id": "mon_bat", "fg": 2902, "bg": 3161, "rotates": false }, + { "id": "mon_bear", "fg": 2903, "bg": 3161, "rotates": false }, + { "id": "mon_bear_cub", "fg": 2904, "bg": 3161, "rotates": false }, + { "id": "mon_bear_smoky", "fg": 2905, "bg": 3161, "rotates": false }, + { "id": "mon_bee", "fg": 2906, "bg": 3161, "rotates": false }, + { "id": "mon_bee_mega", "fg": 2908, "rotates": false }, + { "id": "mon_bee_small", "fg": 2909, "rotates": false }, + { "id": "mon_beekeeper", "fg": 2907, "bg": 3161, "rotates": false }, + { "id": "mon_biollante", "fg": 2910, "bg": 3161, "rotates": false }, + { "id": "mon_black_rat", "fg": 3018, "rotates": false }, + { "id": "mon_blank", "fg": 2911, "bg": 3161, "rotates": false }, + { "id": "mon_blob", "fg": 2912, "bg": 3161, "rotates": false }, + { "id": "mon_blob_large", "fg": 2913, "rotates": false }, + { "id": "mon_blob_small", "fg": 2914, "rotates": false }, + { "id": "mon_bobcat", "fg": 2915, "bg": 3161, "rotates": false }, + { "id": "mon_boomer", "fg": 2916, "bg": 3161, "rotates": false }, + { "id": "mon_boomer_fungus", "fg": 2917, "bg": 3161, "rotates": false }, + { "id": "mon_breather", "fg": 2918, "rotates": false }, + { "id": "mon_breather_hub", "fg": 2919, "bg": 3161, "rotates": false }, + { "id": "mon_c4_hack", "fg": 2920, "bg": 3161, "rotates": false }, + { "id": "mon_cat", "fg": 2915, "bg": 3161, "rotates": false }, + { "id": "mon_centipede", "fg": 2921, "rotates": false }, + { "id": "mon_centipede_giant", "fg": 2922, "bg": 3161, "rotates": false }, + { "id": "mon_charred_nightmare", "fg": 2923, "rotates": false }, + { "id": "mon_chicken", "fg": 2924, "bg": 3161, "rotates": false }, + { "id": "mon_chipmunk", "fg": 2925, "bg": 3161, "rotates": false }, + { "id": "mon_chud", "fg": 2926, "bg": 3161, "rotates": false }, + { "id": "mon_compsognathus", "fg": 2927, "bg": 3161, "rotates": false }, + { "id": "mon_cougar", "fg": 2928, "bg": 3161, "rotates": false }, + { "id": "mon_coyote", "fg": 2929, "bg": 3161, "rotates": false }, + { "id": "mon_coyote_wolf", "fg": 2930, "bg": 3161, "rotates": false }, + { "id": "mon_crawler", "fg": 2931, "bg": 3161, "rotates": false }, + { "id": "mon_creeper_hub", "fg": 2932, "bg": 3161, "rotates": false }, + { "id": "mon_creeper_vine", "fg": 2933, "bg": 3161, "rotates": false }, + { "id": "mon_crow", "fg": 2934, "bg": 3161, "rotates": false }, + { "id": "mon_darkman", "fg": 2935, "bg": 3161, "rotates": false }, + { "id": "mon_deer", "fg": 2936, "bg": 3161, "rotates": false }, + { "id": "mon_deer_mouse", "fg": 3018, "rotates": false }, + { "id": "mon_deinonychus", "fg": 2937, "bg": 3161, "rotates": false }, + { "id": "mon_dementia", "fg": 2938, "bg": 3161, "rotates": false }, + { "id": "mon_dermatik", "fg": 2939, "bg": 3161, "rotates": false }, + { "id": "mon_dermatik_larva", "fg": 2940, "rotates": false }, + { "id": "mon_dilophosaurus", "fg": 2937, "bg": 3161, "rotates": false }, + { "id": "mon_dimorphodon", "fg": 2941, "bg": 3161, "rotates": false }, + { "id": "mon_dog_skeleton", "fg": 2942, "bg": 3161, "rotates": false }, + { "id": "mon_dog_zombie_cop", "fg": 2943, "bg": 3161, "rotates": false }, + { "id": "mon_dog_zombie_rot", "fg": 2944, "bg": [ ], "rotates": false }, + { "id": "mon_dragonfly_giant", "fg": 2946, "bg": 3161, "rotates": false }, + { "id": "mon_dragonfly_small", "fg": 2945, "rotates": false }, + { "id": "mon_duck", "fg": 2947, "bg": 3161, "rotates": false }, + { "id": "mon_eoraptor", "fg": 2927, "bg": 3161, "rotates": false }, + { "id": "mon_fant", "fg": 2948, "rotates": false }, + { "id": "mon_fish_blinky", "fg": 2949, "rotates": false }, + { "id": "mon_fish_bluegill", "fg": 2950, "rotates": false }, + { "id": "mon_fish_bowfin", "fg": 2951, "rotates": false }, + { "id": "mon_fish_bullhead", "fg": 2952, "rotates": false }, + { "id": "mon_fish_carp", "fg": 2953, "rotates": false }, + { "id": "mon_fish_crayfish", "fg": 2954, "rotates": false }, + { "id": "mon_fish_lbass", "fg": 2955, "rotates": false }, + { "id": "mon_fish_lobster", "fg": 2956, "rotates": false }, + { "id": "mon_fish_pbass", "fg": 2957, "rotates": false }, + { "id": "mon_fish_perch", "fg": 2958, "rotates": false }, + { "id": "mon_fish_pickerel", "fg": 2959, "rotates": false }, + { "id": "mon_fish_pike", "fg": 2960, "rotates": false }, + { "id": "mon_fish_salmon", "fg": 2961, "rotates": false }, + { "id": "mon_fish_sbass", "fg": 2962, "rotates": false }, + { "id": "mon_fish_sunfish", "fg": 2963, "rotates": false }, + { "id": "mon_fish_trout", "fg": 2964, "rotates": false }, + { "id": "mon_fish_whitefish", "fg": 2965, "rotates": false }, + { "id": "mon_flaming_eye", "fg": 2966, "bg": 3161, "rotates": false }, + { "id": "mon_flashbang_hack", "fg": 2967, "bg": 3161, "rotates": false }, + { "id": "mon_fly", "fg": 2968, "bg": 3161, "rotates": false }, + { "id": "mon_fox_gray", "fg": 2969, "bg": 3161, "rotates": false }, + { "id": "mon_fox_red", "fg": 2969, "bg": 3161, "rotates": false }, + { "id": "mon_fungal_blossom", "fg": 2971, "bg": 3161, "rotates": false }, + { "id": "mon_fungal_fighter", "fg": 2972, "bg": 3161, "rotates": false }, + { "id": "mon_fungal_hedgerow", "fg": 2973, "bg": 3161, "rotates": false }, + { "id": "mon_fungal_tendril", "fg": 2974, "bg": 3161, "rotates": false }, + { "id": "mon_fungal_wall", "fg": 2975, "bg": 3161, "rotates": false }, + { "id": "mon_fungaloid_dormant", "fg": 3102, "bg": 3161, "rotates": false }, + { "id": "mon_fungaloid_young", "fg": 2970, "bg": 3161, "rotates": false }, + { "id": "mon_gallimimus", "fg": 2976, "bg": 3161, "rotates": false }, + { "id": "mon_gasbomb_hack", "fg": 2977, "bg": 3161, "rotates": false }, + { "id": "mon_gator", "fg": 2978, "rotates": false }, + { "id": "mon_gelatin", "fg": 2979, "bg": 3161, "rotates": false }, + { "id": "mon_generator", "fg": 2980, "bg": 3161, "rotates": false }, + { "id": "mon_giant_cockroach", "fg": 2981, "rotates": false }, + { "id": "mon_giant_cockroach_nymph", "fg": 2982, "rotates": false }, + { "id": "mon_goat", "fg": 2983, "rotates": false }, + { "id": "mon_gozu", "fg": 2984, "bg": 3161, "rotates": false }, + { "id": "mon_graboid", "fg": 2985, "bg": 3161, "rotates": false }, + { "id": "mon_grenade_hack", "fg": 2986, "bg": 3161, "rotates": false }, + { "id": "mon_groundhog", "fg": 2925, "bg": 3161, "rotates": false }, + { "id": "mon_halfworm", "fg": 2987, "bg": 3161, "rotates": false }, + { "id": "mon_hallu_mom", "fg": 2988, "bg": 3161, "rotates": false }, + { "id": "mon_hare", "fg": 2989, "bg": 3161, "rotates": false }, + { "id": "mon_hare_season_winter", "fg": 2990, "bg": 3161, "rotates": false }, + { "id": "mon_headless_dog_thing", "fg": 2991, "bg": 3161, "rotates": false }, + { "id": "mon_hologram", "fg": 3103, "rotates": false }, + { "id": "mon_human_snail", "fg": 2992, "bg": 3161, "rotates": false }, + { "id": "mon_irradiated_wanderer_1", "fg": 2993, "bg": 3161 }, + { "id": "mon_irradiated_wanderer_2", "fg": 2994, "bg": 3161, "rotates": false }, + { "id": "mon_irradiated_wanderer_3", "fg": 2995, "bg": 3161 }, + { "id": "mon_irradiated_wanderer_4", "fg": 2996, "bg": 3161 }, + { "id": "mon_laserturret", "fg": 2997, "bg": 3161, "rotates": false }, + { "id": "mon_lemming", "fg": 2925, "bg": 3161, "rotates": false }, + { "id": "mon_manhack", "fg": 2998, "bg": 3161, "rotates": false }, + { "id": "mon_manhack_acid", "fg": 2999, "rotates": false }, + { "id": "mon_mi_go", "fg": 3001, "bg": 3161, "rotates": false }, + { "id": "mon_mininuke_hack", "fg": 3000, "bg": 3161, "rotates": false }, + { "id": "mon_mink", "fg": 2925, "bg": 3161, "rotates": false }, + { "id": "mon_moose", "fg": 3002, "bg": 3161, "rotates": false }, + { "id": "mon_mosquito", "fg": 3003, "rotates": false }, + { "id": "mon_mosquito_giant", "fg": 3004, "bg": 3161, "rotates": false }, + { "id": "mon_muskrat", "fg": 3018, "rotates": false }, + { "id": "mon_mutant_carp", "fg": 3005, "rotates": false }, + { "id": "mon_mutant_salmon", "fg": 3006, "rotates": false }, + { "id": "mon_one_eye", "fg": 3007, "bg": 3161, "rotates": false }, + { "id": "mon_otter", "fg": 2925, "bg": 3161, "rotates": false }, + { "id": "mon_player_blob", "fg": 3008, "bg": 3161, "rotates": false }, + { "id": "mon_pregnant_giant_cockroach", "fg": 3009, "rotates": false }, + { "id": "mon_prototype_cyborg", "fg": 3136, "bg": 3161, "rotates": false }, + { "id": "mon_rabbit", "fg": 3010, "bg": 3161, "rotates": false }, + { "id": "mon_raccoon", "fg": 3011, "bg": 3161, "rotates": false }, + { "id": "mon_rat_king", "fg": 3014, "bg": 3161, "rotates": false }, + { "id": "mon_rattlesnake", "fg": 3012, "bg": 3161, "rotates": false }, + { "id": "mon_rattlesnake_giant", "fg": 3013, "bg": 3161, "rotates": false }, + { "id": "mon_razorclaw", "fg": 3015, "bg": 3161 }, + { "id": "mon_riotbot", "fg": 3016, "bg": 3161, "rotates": false }, + { "id": "mon_sewer_fish", "fg": 3017, "bg": 3161, "rotates": false }, + { "id": "mon_sewer_rat", "fg": 3018, "bg": 3161, "rotates": false }, + { "id": "mon_sewer_snake", "fg": 3019, "bg": 3161, "rotates": false }, + { "id": "mon_shadow", "fg": 3020, "rotates": false }, + { "id": "mon_shadow_snake", "fg": 3021, "rotates": false }, + { "id": "mon_skeleton", "fg": 3022, "bg": 3161, "rotates": false }, + { "id": "mon_skeleton_electric", "fg": 3139, "bg": 3161, "rotates": false }, + { "id": "mon_skitterbot", "fg": 3023, "bg": 3161, "rotates": false }, + { "id": "mon_sludge_crawler", "fg": 3024, "bg": 3161, "rotates": false }, + { "id": "mon_spider_cellar_giant", "fg": 3025, "bg": 3161, "rotates": false }, + { "id": "mon_spider_cellar_giant_s", "fg": 3026, "bg": 3161, "rotates": false }, + { "id": "mon_spider_jumping_giant", "fg": 3028, "bg": 3161, "rotates": false }, + { "id": "mon_spider_jumping_giant_mega", "fg": 3029, "rotates": false }, + { "id": "mon_spider_jumping_small", "fg": 3027, "bg": 3161, "rotates": false }, + { "id": "mon_spider_trapdoor", "fg": 3030, "bg": 3161, "rotates": false }, + { "id": "mon_spider_trapdoor_giant", "fg": 3031, "bg": 3161, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_mega", "fg": 3032, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_small", "fg": 3033, "rotates": false }, + { "id": "mon_spider_web", "fg": 3034, "bg": 3161, "rotates": false }, + { "id": "mon_spider_web_giant", "fg": 3034, "bg": 3161, "rotates": false }, + { "id": "mon_spider_web_mega", "fg": 3035, "rotates": false }, + { "id": "mon_spider_web_s", "fg": 3036, "bg": 3161, "rotates": false }, + { "id": "mon_spider_widow_giant", "fg": 3038, "bg": 3161, "rotates": false }, + { "id": "mon_spider_widow_giant_s", "fg": 3039, "bg": 3161, "rotates": false }, + { "id": "mon_spider_widow_small", "fg": 3037, "bg": 3161, "rotates": false }, + { "id": "mon_spider_wolf_giant", "fg": 3041, "bg": 3161, "rotates": false }, + { "id": "mon_spider_wolf_small", "fg": 3040, "bg": 3161, "rotates": false }, + { "id": "mon_spore", "fg": 3042, "bg": 3161, "rotates": false }, + { "id": "mon_squirrel", "fg": 3043, "bg": 3161, "rotates": false }, + { "id": "mon_squirrel_red", "fg": 3043, "bg": 3161, "rotates": false }, + { "id": "mon_titanis", "fg": 3044, "bg": 3161, "rotates": false }, + { "id": "mon_turkey", "fg": 3045, "bg": 3161, "rotates": false }, + { "id": "mon_velociraptor", "fg": 3046, "bg": 3161, "rotates": false }, + { "id": "mon_vinebeast", "fg": 3047, "bg": 3161, "rotates": false }, + { "id": "mon_vortex", "fg": 3048, "bg": 3161, "rotates": false }, + { "id": "mon_w11b10", "fg": 3105, "rotates": false }, + { "id": "mon_w11b20b4", "fg": 3106, "rotates": false }, + { "id": "mon_w11h10", "fg": 3108, "rotates": false }, + { "id": "mon_w12b10", "fg": 3107, "rotates": false }, + { "id": "mon_w12n10", "fg": 3109, "rotates": false }, + { "id": "mon_wasp", "fg": 3049, "bg": 3161, "rotates": false }, + { "id": "mon_wasp_larvae", "fg": 2940 }, + { "id": "mon_wasp_mega", "fg": 3050 }, + { "id": "mon_wasp_small", "fg": 3051, "rotates": false }, + { "id": "mon_weasel", "fg": 2925, "bg": 3161, "rotates": false }, + { "id": "mon_wolf", "fg": 3052, "bg": 3161, "rotates": false }, + { "id": "mon_worm", "fg": 3053, "bg": 3161, "rotates": false }, + { "id": "mon_zhark", "fg": 3054 }, + { "id": "mon_zolf", "fg": 3055, "bg": 3161, "rotates": false }, + { "id": "mon_zolf_shady", "fg": 3056, "rotates": false }, + { "id": "mon_zombear", "fg": 3057, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_acidic", "fg": 3058, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_anklebiter", "fg": 3059, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_armored", "fg": 3060, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_bio_op", "fg": 3061, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_biter", "fg": 3062, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_blind", "fg": 3063, "rotates": false }, + { "id": "mon_zombie_brainless", "fg": 3143, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_brute", "fg": 3064, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_brute_grappler", "fg": 3065, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_brute_ninja", "fg": 3066, "bg": 3161 }, + { "id": "mon_zombie_brute_shocker", "fg": 3067, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_child_fungus", "fg": 3110, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_child_scorched", "fg": 3068, "bg": 3161 }, + { "id": "mon_zombie_child_scorched_2", "fg": 3069, "rotates": false }, + { "id": "mon_zombie_cop", "fg": 3070, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_crawler", "fg": 3071, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_creepy", "fg": 3072, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_dancer", "fg": 3073, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_dog", "fg": 3074, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_ears", "fg": 3144, "bg": 3161 }, + { "id": "mon_zombie_electric", "fg": 3075, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_fiend", "fg": 3145, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_fireman", "fg": 3076, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_fungus", "fg": [ 3077, 3146 ], "bg": 3161, "rotates": false }, + { "id": "mon_zombie_gasbag", "fg": 3078, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_grappler", "fg": 3079, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_hazmat", "fg": 3080, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_hollow", "fg": 3081, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_hunter", "fg": 3082, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_jackson", "fg": 3083, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_kevlar_1", "fg": 3150, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_mancroc", "fg": 3084, "bg": 3161 }, + { "id": "mon_zombie_master", "fg": 3085, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_military_pilot", "fg": 3104, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_necro", "fg": 3086, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_predator", "fg": 3087, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_rot", "fg": 3088, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_scorched", "fg": 3089, "bg": 3161 }, + { "id": "mon_zombie_shady", "fg": 3090, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_shady_ghost", "fg": 3091, "rotates": false }, + { "id": "mon_zombie_shriekling", "fg": 3092, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_skull", "fg": 3152, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_smoker", "fg": 3093, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_snotgobbler", "fg": 3094, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_soldier", "fg": 3095, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_soldier_acid_1", "fg": 3153, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_soldier_acid_2", "fg": 3154, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_1", "fg": 3155, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_2", "fg": 3156, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_spitter", "fg": 3096, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_sproglodyte", "fg": 3097, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_static", "fg": 3157, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_swimmer", "fg": 3098, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_thorny", "fg": 3158, "rotates": false, "bg": 3161 }, + { "id": "mon_zombie_waif", "fg": 3099, "bg": 3161, "rotates": false }, + { "id": "mon_zombie_wretched", "fg": 3159, "bg": 3161, "rotates": false }, + { "id": "mon_zoose", "fg": 3100, "bg": 3161, "rotates": false }, + { "id": "mon_zougar", "fg": 3101, "bg": 3161, "rotates": false }, + { "id": "mon_triffid", "fg": 3140, "bg": 3161 }, + { "id": "mon_triffid_sprig", "fg": 3141, "bg": 3161 }, + { "id": "mon_triffid_young", "fg": 3142, "bg": 3161 }, { "id": "mon_broken_cyborg", "fg": [ - { "weight": 1, "sprite": 3168 }, - { "weight": 1, "sprite": 3169 }, - { "weight": 1, "sprite": 3170 }, { "weight": 1, "sprite": 3171 }, { "weight": 1, "sprite": 3172 }, - { "weight": 1, "sprite": 3173 } + { "weight": 1, "sprite": 3173 }, + { "weight": 1, "sprite": 3174 }, + { "weight": 1, "sprite": 3175 }, + { "weight": 1, "sprite": 3176 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { "id": [ "mon_dog", "mon_dog_thing" ], - "fg": [ { "weight": 10, "sprite": 3174 }, { "weight": 1, "sprite": 3175 } ], + "fg": [ { "weight": 10, "sprite": 3177 }, { "weight": 1, "sprite": 3178 } ], "rotates": false }, { "id": "mon_feral_human_crowbar", "fg": [ - { "weight": 1, "sprite": 3186 }, - { "weight": 1, "sprite": 3187 }, - { "weight": 1, "sprite": 3188 }, { "weight": 1, "sprite": 3189 }, { "weight": 1, "sprite": 3190 }, { "weight": 1, "sprite": 3191 }, { "weight": 1, "sprite": 3192 }, - { "weight": 1, "sprite": 3193 } + { "weight": 1, "sprite": 3193 }, + { "weight": 1, "sprite": 3194 }, + { "weight": 1, "sprite": 3195 }, + { "weight": 1, "sprite": 3196 } ], - "bg": 3158 + "bg": 3161 }, { "id": "mon_feral_human_pipe", "fg": [ - { "weight": 1, "sprite": 3194 }, - { "weight": 1, "sprite": 3195 }, - { "weight": 1, "sprite": 3196 }, { "weight": 1, "sprite": 3197 }, { "weight": 1, "sprite": 3198 }, { "weight": 1, "sprite": 3199 }, { "weight": 1, "sprite": 3200 }, - { "weight": 1, "sprite": 3201 } + { "weight": 1, "sprite": 3201 }, + { "weight": 1, "sprite": 3202 }, + { "weight": 1, "sprite": 3203 }, + { "weight": 1, "sprite": 3204 } ], - "bg": 3158 + "bg": 3161 }, { "id": "mon_feral_human_axe", "fg": [ - { "weight": 1, "sprite": 3178 }, - { "weight": 1, "sprite": 3179 }, - { "weight": 1, "sprite": 3180 }, { "weight": 1, "sprite": 3181 }, { "weight": 1, "sprite": 3182 }, { "weight": 1, "sprite": 3183 }, { "weight": 1, "sprite": 3184 }, - { "weight": 1, "sprite": 3185 } + { "weight": 1, "sprite": 3185 }, + { "weight": 1, "sprite": 3186 }, + { "weight": 1, "sprite": 3187 }, + { "weight": 1, "sprite": 3188 } ], - "bg": 3158 + "bg": 3161 }, { "id": "mon_feral_labsecurity_9mm", "fg": [ - { "weight": 1, "sprite": 3202 }, - { "weight": 1, "sprite": 3203 }, - { "weight": 1, "sprite": 3204 }, { "weight": 1, "sprite": 3205 }, { "weight": 1, "sprite": 3206 }, { "weight": 1, "sprite": 3207 }, { "weight": 1, "sprite": 3208 }, - { "weight": 1, "sprite": 3209 } + { "weight": 1, "sprite": 3209 }, + { "weight": 1, "sprite": 3210 }, + { "weight": 1, "sprite": 3211 }, + { "weight": 1, "sprite": 3212 } ], - "bg": 3158 + "bg": 3161 }, { "id": "mon_feral_labsecurity_flashlight", "fg": [ - { "weight": 1, "sprite": 3210 }, - { "weight": 1, "sprite": 3211 }, - { "weight": 1, "sprite": 3212 }, { "weight": 1, "sprite": 3213 }, - { "weight": 1, "sprite": 3214 } + { "weight": 1, "sprite": 3214 }, + { "weight": 1, "sprite": 3215 }, + { "weight": 1, "sprite": 3216 }, + { "weight": 1, "sprite": 3217 } ], - "bg": 3158 + "bg": 3161 }, { "id": "mon_feral_scientist_scalpel", "fg": [ - { "weight": 1, "sprite": 3215 }, - { "weight": 1, "sprite": 3216 }, - { "weight": 1, "sprite": 3217 }, { "weight": 1, "sprite": 3218 }, - { "weight": 1, "sprite": 3219 } + { "weight": 1, "sprite": 3219 }, + { "weight": 1, "sprite": 3220 }, + { "weight": 1, "sprite": 3221 }, + { "weight": 1, "sprite": 3222 } ], - "bg": 3158 + "bg": 3161 }, { "id": "mon_fungaloid", - "fg": [ { "weight": 100, "sprite": 3229 }, { "weight": 1, "sprite": 3230 } ], + "fg": [ { "weight": 100, "sprite": 3230 }, { "weight": 1, "sprite": 3231 } ], + "rotates": false + }, + { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 3243, "rotates": false }, + { + "id": [ "corpse_mon_zombie_crawler_pupa", "corpse_mon_zombie_crawler_pupa_decoy" ], + "fg": 3242, "rotates": false }, { "id": "mon_zombie_giant_heart", "animated": true, "fg": [ - { "weight": 15, "sprite": 3240 }, - { "weight": 15, "sprite": 3241 }, - { "weight": 15, "sprite": 3240 }, - { "weight": 15, "sprite": 3242 } + { "weight": 15, "sprite": 3244 }, + { "weight": 15, "sprite": 3245 }, + { "weight": 15, "sprite": 3244 }, + { "weight": 15, "sprite": 3246 } ], "rotates": false, - "bg": 3158 + "bg": 3161 }, + { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 3251, "rotates": false }, + { "id": [ "corpse_mon_zombie_pupa", "corpse_mon_zombie_pupa_decoy" ], "fg": 3250, "rotates": false }, { "id": "mon_twisted_body", - "fg": [ { "weight": 1, "sprite": 3251 }, { "weight": 1, "sprite": 3252 }, { "weight": 1, "sprite": 3253 } ], - "bg": 3158, + "fg": [ { "weight": 1, "sprite": 3258 }, { "weight": 1, "sprite": 3259 }, { "weight": 1, "sprite": 3260 } ], + "bg": 3161, "rotates": false }, { "id": "mon_zombie", "fg": [ - { "weight": 1, "sprite": 3264 }, - { "weight": 1, "sprite": 3275 }, + { "weight": 1, "sprite": 3271 }, { "weight": 1, "sprite": 3282 }, - { "weight": 1, "sprite": 3283 }, - { "weight": 1, "sprite": 3284 }, - { "weight": 1, "sprite": 3285 }, - { "weight": 1, "sprite": 3286 }, - { "weight": 1, "sprite": 3287 }, - { "weight": 1, "sprite": 3288 }, - { "weight": 1, "sprite": 3254 }, - { "weight": 1, "sprite": 3255 }, - { "weight": 1, "sprite": 3256 }, - { "weight": 1, "sprite": 3257 }, - { "weight": 1, "sprite": 3258 }, - { "weight": 1, "sprite": 3259 }, - { "weight": 1, "sprite": 3260 }, + { "weight": 1, "sprite": 3289 }, + { "weight": 1, "sprite": 3290 }, + { "weight": 1, "sprite": 3291 }, + { "weight": 1, "sprite": 3292 }, + { "weight": 1, "sprite": 3293 }, + { "weight": 1, "sprite": 3294 }, + { "weight": 1, "sprite": 3295 }, { "weight": 1, "sprite": 3261 }, { "weight": 1, "sprite": 3262 }, { "weight": 1, "sprite": 3263 }, + { "weight": 1, "sprite": 3264 }, { "weight": 1, "sprite": 3265 }, { "weight": 1, "sprite": 3266 }, { "weight": 1, "sprite": 3267 }, { "weight": 1, "sprite": 3268 }, { "weight": 1, "sprite": 3269 }, { "weight": 1, "sprite": 3270 }, - { "weight": 1, "sprite": 3271 }, { "weight": 1, "sprite": 3272 }, { "weight": 1, "sprite": 3273 }, { "weight": 1, "sprite": 3274 }, + { "weight": 1, "sprite": 3275 }, { "weight": 1, "sprite": 3276 }, { "weight": 1, "sprite": 3277 }, { "weight": 1, "sprite": 3278 }, { "weight": 1, "sprite": 3279 }, { "weight": 1, "sprite": 3280 }, - { "weight": 1, "sprite": 3281 } + { "weight": 1, "sprite": 3281 }, + { "weight": 1, "sprite": 3283 }, + { "weight": 1, "sprite": 3284 }, + { "weight": 1, "sprite": 3285 }, + { "weight": 1, "sprite": 3286 }, + { "weight": 1, "sprite": 3287 }, + { "weight": 1, "sprite": 3288 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { "id": "mon_zombie_child", "fg": [ - { "weight": 1, "sprite": 3289 }, - { "weight": 1, "sprite": 3290 }, - { "weight": 1, "sprite": 3291 }, - { "weight": 1, "sprite": 3300 }, - { "weight": 1, "sprite": 3301 }, - { "weight": 1, "sprite": 3302 }, - { "weight": 1, "sprite": 3303 }, - { "weight": 1, "sprite": 3304 }, - { "weight": 1, "sprite": 3305 }, - { "weight": 1, "sprite": 3292 }, - { "weight": 1, "sprite": 3293 }, - { "weight": 1, "sprite": 3294 }, - { "weight": 1, "sprite": 3295 }, { "weight": 1, "sprite": 3296 }, { "weight": 1, "sprite": 3297 }, { "weight": 1, "sprite": 3298 }, - { "weight": 1, "sprite": 3299 } - ], - "bg": 3158, - "rotates": false - }, - { - "id": "mon_zombie_fat", - "fg": [ - { "weight": 1, "sprite": 3306 }, { "weight": 1, "sprite": 3307 }, { "weight": 1, "sprite": 3308 }, - { "weight": 1, "sprite": 3316 }, - { "weight": 1, "sprite": 3317 }, - { "weight": 1, "sprite": 3318 }, - { "weight": 1, "sprite": 3319 }, - { "weight": 1, "sprite": 3320 }, - { "weight": 1, "sprite": 3321 }, { "weight": 1, "sprite": 3309 }, { "weight": 1, "sprite": 3310 }, { "weight": 1, "sprite": 3311 }, { "weight": 1, "sprite": 3312 }, - { "weight": 1, "sprite": 3313 }, - { "weight": 1, "sprite": 3314 }, - { "weight": 1, "sprite": 3315 } + { "weight": 1, "sprite": 3299 }, + { "weight": 1, "sprite": 3300 }, + { "weight": 1, "sprite": 3301 }, + { "weight": 1, "sprite": 3302 }, + { "weight": 1, "sprite": 3303 }, + { "weight": 1, "sprite": 3304 }, + { "weight": 1, "sprite": 3305 }, + { "weight": 1, "sprite": 3306 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { - "id": "mon_zombie_grabber", + "id": "mon_zombie_fat", "fg": [ - { "weight": 1, "sprite": 3322 }, + { "weight": 1, "sprite": 3313 }, + { "weight": 1, "sprite": 3314 }, + { "weight": 1, "sprite": 3315 }, { "weight": 1, "sprite": 3323 }, { "weight": 1, "sprite": 3324 }, { "weight": 1, "sprite": 3325 }, { "weight": 1, "sprite": 3326 }, { "weight": 1, "sprite": 3327 }, { "weight": 1, "sprite": 3328 }, - { "weight": 1, "sprite": 3329 }, - { "weight": 1, "sprite": 3330 } + { "weight": 1, "sprite": 3316 }, + { "weight": 1, "sprite": 3317 }, + { "weight": 1, "sprite": 3318 }, + { "weight": 1, "sprite": 3319 }, + { "weight": 1, "sprite": 3320 }, + { "weight": 1, "sprite": 3321 }, + { "weight": 1, "sprite": 3322 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { - "id": "mon_zombie_labsecurity", + "id": "mon_zombie_grabber", "fg": [ + { "weight": 1, "sprite": 3329 }, + { "weight": 1, "sprite": 3330 }, { "weight": 1, "sprite": 3331 }, { "weight": 1, "sprite": 3332 }, { "weight": 1, "sprite": 3333 }, { "weight": 1, "sprite": 3334 }, { "weight": 1, "sprite": 3335 }, - { "weight": 1, "sprite": 3336 } + { "weight": 1, "sprite": 3336 }, + { "weight": 1, "sprite": 3337 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { - "id": "mon_zombie_prisoner", + "id": "mon_zombie_labsecurity", "fg": [ - { "weight": 1, "sprite": 3337 }, { "weight": 1, "sprite": 3338 }, { "weight": 1, "sprite": 3339 }, { "weight": 1, "sprite": 3340 }, { "weight": 1, "sprite": 3341 }, - { "weight": 1, "sprite": 3342 } + { "weight": 1, "sprite": 3342 }, + { "weight": 1, "sprite": 3343 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { - "id": "mon_zombie_runner", + "id": "mon_zombie_prisoner", "fg": [ - { "weight": 1, "sprite": 3343 }, { "weight": 1, "sprite": 3344 }, { "weight": 1, "sprite": 3345 }, { "weight": 1, "sprite": 3346 }, - { "weight": 1, "sprite": 3347 } + { "weight": 1, "sprite": 3347 }, + { "weight": 1, "sprite": 3348 }, + { "weight": 1, "sprite": 3349 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { - "id": "mon_zombie_scientist", + "id": "mon_zombie_runner", "fg": [ - { "weight": 1, "sprite": 3348 }, + { "weight": 1, "sprite": 3350 }, { "weight": 1, "sprite": 3351 }, { "weight": 1, "sprite": 3352 }, { "weight": 1, "sprite": 3353 }, - { "weight": 1, "sprite": 3354 }, - { "weight": 1, "sprite": 3355 }, - { "weight": 1, "sprite": 3356 }, - { "weight": 1, "sprite": 3357 }, - { "weight": 1, "sprite": 3358 }, - { "weight": 1, "sprite": 3349 }, - { "weight": 1, "sprite": 3350 } + { "weight": 1, "sprite": 3354 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { - "id": "mon_zombie_screecher", + "id": "mon_zombie_scientist", "fg": [ + { "weight": 1, "sprite": 3355 }, + { "weight": 1, "sprite": 3358 }, { "weight": 1, "sprite": 3359 }, { "weight": 1, "sprite": 3360 }, { "weight": 1, "sprite": 3361 }, - { "weight": 1, "sprite": 3362 } + { "weight": 1, "sprite": 3362 }, + { "weight": 1, "sprite": 3363 }, + { "weight": 1, "sprite": 3364 }, + { "weight": 1, "sprite": 3365 }, + { "weight": 1, "sprite": 3356 }, + { "weight": 1, "sprite": 3357 } + ], + "bg": 3161, + "rotates": false + }, + { + "id": "mon_zombie_screecher", + "fg": [ + { "weight": 1, "sprite": 3366 }, + { "weight": 1, "sprite": 3367 }, + { "weight": 1, "sprite": 3368 }, + { "weight": 1, "sprite": 3369 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { "id": "mon_zombie_shrieker", "fg": [ - { "weight": 1, "sprite": 3363 }, - { "weight": 1, "sprite": 3364 }, - { "weight": 1, "sprite": 3365 }, - { "weight": 1, "sprite": 3366 } + { "weight": 1, "sprite": 3370 }, + { "weight": 1, "sprite": 3371 }, + { "weight": 1, "sprite": 3372 }, + { "weight": 1, "sprite": 3373 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { "id": "mon_zombie_survivor", - "fg": [ { "weight": 1, "sprite": 3367 }, { "weight": 1, "sprite": 3368 } ], - "bg": 3158, + "fg": [ { "weight": 1, "sprite": 3374 }, { "weight": 1, "sprite": 3375 } ], + "bg": 3161, "rotates": false }, { "id": "mon_zombie_survivor_elite", - "fg": [ { "weight": 1, "sprite": 3369 }, { "weight": 1, "sprite": 3370 }, { "weight": 1, "sprite": 3371 } ], - "bg": 3158, + "fg": [ { "weight": 1, "sprite": 3376 }, { "weight": 1, "sprite": 3377 }, { "weight": 1, "sprite": 3378 } ], + "bg": 3161, "rotates": false }, { "id": "mon_zombie_technician", "fg": [ - { "weight": 1, "sprite": 3372 }, - { "weight": 1, "sprite": 3373 }, - { "weight": 1, "sprite": 3374 }, - { "weight": 1, "sprite": 3375 } + { "weight": 1, "sprite": 3379 }, + { "weight": 1, "sprite": 3380 }, + { "weight": 1, "sprite": 3381 }, + { "weight": 1, "sprite": 3382 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, { "id": "mon_zombie_tough", "fg": [ - { "weight": 1, "sprite": 3376 }, - { "weight": 1, "sprite": 3377 }, - { "weight": 1, "sprite": 3378 }, + { "weight": 1, "sprite": 3383 }, + { "weight": 1, "sprite": 3384 }, { "weight": 1, "sprite": 3385 }, + { "weight": 1, "sprite": 3392 }, + { "weight": 1, "sprite": 3393 }, + { "weight": 1, "sprite": 3394 }, + { "weight": 1, "sprite": 3395 }, + { "weight": 1, "sprite": 3396 }, + { "weight": 1, "sprite": 3397 }, { "weight": 1, "sprite": 3386 }, { "weight": 1, "sprite": 3387 }, { "weight": 1, "sprite": 3388 }, { "weight": 1, "sprite": 3389 }, { "weight": 1, "sprite": 3390 }, - { "weight": 1, "sprite": 3379 }, - { "weight": 1, "sprite": 3380 }, - { "weight": 1, "sprite": 3381 }, - { "weight": 1, "sprite": 3382 }, - { "weight": 1, "sprite": 3383 }, - { "weight": 1, "sprite": 3384 } + { "weight": 1, "sprite": 3391 } ], - "bg": 3158, + "bg": 3161, "rotates": false }, - { "id": "f_aut_gas_console", "fg": 3415 }, - { "id": "f_aut_gas_console_o", "fg": 3416 }, - { "id": "t_atm", "fg": 3393, "bg": 3656, "rotates": false }, - { "id": [ "t_backboard", "t_backboard_in" ], "fg": 3394, "bg": 3650, "rotates": false }, - { "id": "t_barndoor", "fg": 3395, "bg": 3802, "rotates": false }, - { "id": "t_barndoor_season_autumn", "fg": 3395, "bg": 3806 }, - { "id": "t_barndoor_season_summer", "fg": 3395, "bg": 3810 }, - { "id": "t_barndoor_season_winter", "fg": 3395, "bg": 3727 }, - { "id": "t_bars", "fg": 3396, "bg": 3656, "rotates": false }, - { "id": "t_brick_wall_halfway", "fg": 3397, "bg": 3818 }, - { "id": "t_bridge", "fg": 3398, "rotates": false }, - { "id": "t_card_military", "fg": 3399, "bg": 3656, "rotates": false }, - { "id": "t_card_reader_broken", "fg": 3400, "bg": 3656, "rotates": false }, - { "id": "t_card_science", "fg": 3399, "bg": 3656, "rotates": false }, - { "id": "t_carpet_green", "fg": 3401, "rotates": false }, - { "id": "t_carpet_purple", "fg": 3402, "rotates": false }, - { "id": "t_carpet_red", "fg": 3403, "rotates": false }, - { "id": "t_carpet_yellow", "fg": 3404, "rotates": false }, - { "id": "t_chainfence_posts", "fg": 3411, "bg": 3802, "rotates": false }, + { "id": "f_aut_gas_console", "fg": 3422 }, + { "id": "f_aut_gas_console_o", "fg": 3423 }, + { "id": "t_atm", "fg": 3400, "bg": 3663, "rotates": false }, + { "id": [ "t_backboard", "t_backboard_in" ], "fg": 3401, "bg": 3657, "rotates": false }, + { "id": "t_barndoor", "fg": 3402, "bg": 3809, "rotates": false }, + { "id": "t_barndoor_season_autumn", "fg": 3402, "bg": 3813 }, + { "id": "t_barndoor_season_summer", "fg": 3402, "bg": 3817 }, + { "id": "t_barndoor_season_winter", "fg": 3402, "bg": 3734 }, + { "id": "t_bars", "fg": 3403, "bg": 3663, "rotates": false }, + { "id": "t_brick_wall_halfway", "fg": 3404, "bg": 3825 }, + { "id": "t_bridge", "fg": 3405, "rotates": false }, + { "id": "t_card_military", "fg": 3406, "bg": 3663, "rotates": false }, + { "id": "t_card_reader_broken", "fg": 3407, "bg": 3663, "rotates": false }, + { "id": "t_card_science", "fg": 3406, "bg": 3663, "rotates": false }, + { "id": "t_carpet_green", "fg": 3408, "rotates": false }, + { "id": "t_carpet_purple", "fg": 3409, "rotates": false }, + { "id": "t_carpet_red", "fg": 3410, "rotates": false }, + { "id": "t_carpet_yellow", "fg": 3411, "rotates": false }, + { "id": "t_chainfence_posts", "fg": 3418, "bg": 3809, "rotates": false }, { "id": [ "t_chainfence", "t_chainfence_h" ], - "fg": 3405, - "bg": 3650, + "fg": 3412, + "bg": 3657, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3406, "bg": 3650 }, - { "id": "edge", "fg": 3407, "bg": 3650 }, - { "id": "t_connection", "fg": 3409, "bg": 3650 }, - { "id": "center", "fg": 3405, "bg": 3650 }, - { "id": "unconnected", "fg": 3410, "bg": 3650 }, - { "id": "end_piece", "fg": 3408, "bg": 3650 } + { "id": "corner", "fg": 3413, "bg": 3657 }, + { "id": "edge", "fg": 3414, "bg": 3657 }, + { "id": "t_connection", "fg": 3416, "bg": 3657 }, + { "id": "center", "fg": 3412, "bg": 3657 }, + { "id": "unconnected", "fg": 3417, "bg": 3657 }, + { "id": "end_piece", "fg": 3415, "bg": 3657 } ] }, { "id": "t_chainfence_v", - "fg": 3405, - "bg": 3650, + "fg": 3412, + "bg": 3657, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3406, "bg": 3650 }, - { "id": "edge", "fg": 3407, "bg": 3650 }, - { "id": "t_connection", "fg": 3409, "bg": 3650 }, - { "id": "center", "fg": 3405, "bg": 3650 }, - { "id": "unconnected", "fg": 3410, "bg": 3650 }, - { "id": "end_piece", "fg": 3408, "bg": 3650 } + { "id": "corner", "fg": 3413, "bg": 3657 }, + { "id": "edge", "fg": 3414, "bg": 3657 }, + { "id": "t_connection", "fg": 3416, "bg": 3657 }, + { "id": "center", "fg": 3412, "bg": 3657 }, + { "id": "unconnected", "fg": 3417, "bg": 3657 }, + { "id": "end_piece", "fg": 3415, "bg": 3657 } ] }, - { "id": "t_chaingate_c", "fg": 3412, "bg": 3650, "rotates": false }, - { "id": "t_chaingate_l", "fg": 3412, "bg": 3650, "rotates": false }, - { "id": "t_chaingate_o", "fg": 3413, "bg": 3650, "rotates": false }, - { "id": [ "t_claymound", "t_clay" ], "fg": 3659, "bg": 3802 }, - { "id": [ "t_claymound_season_autumn", "t_clay_season_autumn" ], "fg": 3659, "bg": 3806 }, - { "id": [ "t_claymound_season_summer", "t_clay_season_summer" ], "fg": 3659, "bg": 3810 }, - { "id": "t_column", "fg": 3414, "rotates": false }, - { "id": "t_concrete_floor", "fg": 3656, "rotates": false }, - { "id": "t_console", "fg": 3415, "rotates": false }, - { "id": [ "t_console_broken", "t_sliding_concrete_wall_control" ], "fg": 3416, "rotates": false }, + { "id": "t_chaingate_c", "fg": 3419, "bg": 3657, "rotates": false }, + { "id": "t_chaingate_l", "fg": 3419, "bg": 3657, "rotates": false }, + { "id": "t_chaingate_o", "fg": 3420, "bg": 3657, "rotates": false }, + { "id": [ "t_claymound", "t_clay" ], "fg": 3666, "bg": 3809 }, + { "id": [ "t_claymound_season_autumn", "t_clay_season_autumn" ], "fg": 3666, "bg": 3813 }, + { "id": [ "t_claymound_season_summer", "t_clay_season_summer" ], "fg": 3666, "bg": 3817 }, + { "id": "t_column", "fg": 3421, "rotates": false }, + { "id": "t_concrete_floor", "fg": 3663, "rotates": false }, + { "id": "t_console", "fg": 3422, "rotates": false }, + { "id": [ "t_console_broken", "t_sliding_concrete_wall_control" ], "fg": 3423, "rotates": false }, { "id": "t_conveyor", - "fg": 3417, - "bg": 3656, + "fg": 3424, + "bg": 3663, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "edge", "fg": 3417 }, - { "id": "end_piece", "fg": 3417 }, - { "id": "corner", "fg": 3418 }, - { "id": "t_connection", "fg": 3419 } + { "id": "edge", "fg": 3424 }, + { "id": "end_piece", "fg": 3424 }, + { "id": "corner", "fg": 3425 }, + { "id": "t_connection", "fg": 3426 } ] }, - { "id": "t_covered_well", "fg": 3420, "bg": 3656, "rotates": false }, - { "id": "t_current_trans", "fg": 3421, "bg": 3656, "rotates": false }, - { "id": "t_curtains", "fg": 3422, "rotates": false }, + { "id": "t_covered_well", "fg": 3427, "bg": 3663, "rotates": false }, + { "id": "t_current_trans", "fg": 3428, "bg": 3663, "rotates": false }, + { "id": "t_curtains", "fg": 3429, "rotates": false }, { "id": "t_cvdbody", - "fg": 3423, + "fg": 3430, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3424, "bg": 3650 }, - { "id": "t_connection", "fg": 3426, "bg": 3650 }, - { "id": "end_piece", "fg": 3425, "bg": 3650 }, - { "id": "unconnected", "fg": 3423 }, - { "id": "edge", "fg": 3423 }, - { "id": "center", "fg": 3423 } + { "id": "corner", "fg": 3431, "bg": 3657 }, + { "id": "t_connection", "fg": 3433, "bg": 3657 }, + { "id": "end_piece", "fg": 3432, "bg": 3657 }, + { "id": "unconnected", "fg": 3430 }, + { "id": "edge", "fg": 3430 }, + { "id": "center", "fg": 3430 } ] }, - { "id": "t_cvdmachine", "fg": 3427, "bg": 3650 }, - { "id": "t_diesel_pump", "fg": 3428, "bg": 3650 }, - { "id": "t_diesel_pump_smashed", "fg": 3429, "bg": 3650, "rotates": false }, - { "id": [ "t_dirtmound", "t_dirtmoundfloor" ], "fg": 3663, "bg": 3392, "rotates": false }, - { "id": "t_door_b_peep", "fg": 4775, "rotates": false }, + { "id": "t_cvdmachine", "fg": 3434, "bg": 3657 }, + { "id": "t_diesel_pump", "fg": 3435, "bg": 3657 }, + { "id": "t_diesel_pump_smashed", "fg": 3436, "bg": 3657, "rotates": false }, + { "id": [ "t_dirtmound", "t_dirtmoundfloor" ], "fg": 3670, "bg": 3399, "rotates": false }, + { "id": "t_door_b_peep", "fg": 4782, "rotates": false }, { "id": [ "t_door_b", "t_door_lab_b", "t_door_red_b", "t_door_green_b", "t_door_white_b", "t_door_gray_b" ], - "fg": 4777, + "fg": 4784, "rotates": false }, - { "id": "t_door_bar_c", "fg": 3430, "bg": 3656, "rotates": false }, - { "id": "t_door_bar_locked", "fg": 3430, "bg": 3656, "rotates": false }, - { "id": "t_door_bar_o", "fg": 3431, "bg": 3656, "rotates": false }, - { "id": "t_door_boarded", "fg": 3432, "rotates": false }, - { "id": "t_door_boarded_damaged", "fg": 3433, "rotates": false }, - { "id": "t_door_boarded_damaged_peep", "fg": 3434, "rotates": false }, - { "id": "t_door_boarded_peep", "fg": 3435, "rotates": false }, - { "id": "t_door_c_peep", "fg": 4774, "rotates": false }, + { "id": "t_door_bar_c", "fg": 3437, "bg": 3663, "rotates": false }, + { "id": "t_door_bar_locked", "fg": 3437, "bg": 3663, "rotates": false }, + { "id": "t_door_bar_o", "fg": 3438, "bg": 3663, "rotates": false }, + { "id": "t_door_boarded", "fg": 3439, "rotates": false }, + { "id": "t_door_boarded_damaged", "fg": 3440, "rotates": false }, + { "id": "t_door_boarded_damaged_peep", "fg": 3441, "rotates": false }, + { "id": "t_door_boarded_peep", "fg": 3442, "rotates": false }, + { "id": "t_door_c_peep", "fg": 4781, "rotates": false }, { "id": [ "t_door_c", "t_door_lab_c", "t_door_red_c", "t_door_green_c", "t_door_white_c", "t_door_gray_c" ], - "fg": 4776, + "fg": 4783, "rotates": false }, - { "id": "t_door_curtain_c", "fg": 3436, "rotates": false }, - { "id": "t_door_curtain_o", "fg": 3437, "rotates": false }, - { "id": "t_door_frame", "fg": 3438, "bg": 3651, "rotates": false }, + { "id": "t_door_curtain_c", "fg": 3443, "rotates": false }, + { "id": "t_door_curtain_o", "fg": 3444, "rotates": false }, + { "id": "t_door_frame", "fg": 3445, "bg": 3658, "rotates": false }, { "id": [ "t_door_glass_c", @@ -3746,78 +3754,78 @@ "t_door_glass_white_c", "t_door_glass_gray_c" ], - "fg": 3439, + "fg": 3446, "rotates": false }, - { "id": "t_door_glass_gray_o", "fg": 3440, "bg": 3487, "rotates": false }, - { "id": "t_door_glass_green_o", "fg": 3440, "bg": 3401, "rotates": false }, - { "id": [ "t_door_glass_lab_o", "t_door_glass_frosted_lab_o" ], "fg": 3440, "bg": 3656, "rotates": false }, - { "id": [ "t_door_glass_o", "t_door_glass_frosted_o" ], "fg": 3440, "bg": 3651, "rotates": false }, - { "id": "t_door_glass_red_o", "fg": 3440, "bg": 3403, "rotates": false }, - { "id": "t_door_glass_white_o", "fg": 3440, "bg": 3488, "rotates": false }, - { "id": "t_door_gray_frame", "fg": 3438, "bg": 3487, "rotates": false }, - { "id": "t_door_gray_o", "fg": 3447, "bg": 3487, "rotates": false }, - { "id": "t_door_green_frame", "fg": 3438, "bg": 3401, "rotates": false }, - { "id": "t_door_green_o", "fg": 3447, "bg": 3401, "rotates": false }, - { "id": "t_door_lab_frame", "fg": 3438, "bg": 3656, "rotates": false }, - { "id": "t_door_lab_o", "fg": 3447, "bg": 3656, "rotates": false }, - { "id": "t_door_locked", "fg": 4776, "rotates": false }, - { "id": "t_door_locked_alarm", "fg": 4776, "rotates": false }, - { "id": "t_door_locked_interior", "fg": 4776, "rotates": false }, - { "id": "t_door_locked_peep", "fg": 4774 }, - { "id": "t_door_makeshift_c", "fg": 3441, "rotates": false }, - { "id": "t_door_makeshift_o", "fg": 3442, "bg": 3651, "rotates": false }, - { "id": "t_door_metal_c_peep", "fg": 3444, "rotates": false }, - { "id": [ "t_door_metal_c", "t_door_metal_lab_c" ], "fg": 3443, "rotates": true }, - { "id": "t_door_metal_locked", "fg": 3443, "rotates": false }, - { "id": "t_door_metal_o_peep", "fg": 3445, "bg": 3656, "rotates": false }, - { "id": [ "t_door_metal_o", "t_door_metal_lab_o" ], "fg": 3445, "bg": 3656, "rotates": false }, - { "id": "t_door_metal_pickable", "fg": 3446 }, - { "id": "t_door_o", "fg": 3447, "bg": 3651, "rotates": false }, - { "id": "t_door_o_peep", "fg": 3447, "bg": 3651 }, - { "id": "t_door_red_frame", "fg": 3438, "bg": 3403, "rotates": false }, - { "id": "t_door_red_o", "fg": 3447, "bg": 3403, "rotates": false }, - { "id": "t_door_white_frame", "fg": 3438, "bg": 3488, "rotates": false }, - { "id": "t_door_white_o", "fg": 3447, "bg": 3488, "rotates": false }, - { "id": "t_elevator", "fg": 3448, "rotates": false }, - { "id": "t_elevator_control", "fg": 3415, "rotates": false }, - { "id": "t_elevator_control_off", "fg": 3416, "rotates": false }, - { "id": "t_emergency_light", "bg": 3656, "rotates": false }, - { "id": "t_emergency_light_flicker", "bg": 3656, "rotates": false }, - { "id": "t_fault", "fg": 3449, "rotates": false }, - { "id": "t_fence_barbed", "fg": 3452, "bg": 3802, "rotates": false }, - { "id": "t_fence_barbed_season_autumn", "fg": 3452, "bg": 3806 }, - { "id": "t_fence_barbed_season_summer", "fg": 3452, "bg": 3810 }, - { "id": "t_fence_barbed_season_winter", "fg": 3452, "bg": 3727 }, - { "id": "t_fence_post", "fg": 3453, "bg": 3802, "rotates": false }, - { "id": "t_fence_post_season_autumn", "fg": 3453, "bg": 3806 }, - { "id": "t_fence_post_season_summer", "fg": 3453, "bg": 3810 }, - { "id": "t_fence_post_season_winter", "fg": 3453, "bg": 3727 }, - { "id": [ "t_fence_season_autumn" ], "fg": 3454, "bg": 3806 }, - { "id": [ "t_fence_season_summer", "t_fence_h_season_summer" ], "fg": 3454, "bg": 3810 }, - { "id": [ "t_fence_season_winter", "t_fence_h_season_winter" ], "fg": 3454, "bg": 3727 }, - { "id": [ "t_fence", "t_fence_h" ], "fg": 3454, "bg": 3802, "rotates": true }, - { "id": "t_fence_v", "fg": 3454, "bg": 3802 }, - { "id": "t_fence_v_season_autumn", "fg": 3454, "bg": 3806 }, - { "id": "t_fence_v_season_summer", "fg": 3454, "bg": 3810 }, - { "id": "t_fence_v_season_winter", "fg": 3454, "bg": 3727 }, - { "id": "t_fence_wire", "fg": 3455, "bg": 3802, "rotates": false }, - { "id": "t_fence_wire_season_autumn", "fg": 3455, "bg": 3806 }, - { "id": "t_fence_wire_season_summer", "fg": 3455, "bg": 3810 }, - { "id": "t_fence_wire_season_winter", "fg": 3455, "bg": 3727 }, - { "id": "t_fencegate_c", "fg": 3450, "bg": 3802, "rotates": false }, - { "id": "t_fencegate_c_season_autumn", "fg": 3450, "bg": 3806 }, - { "id": "t_fencegate_c_season_summer", "fg": 3450, "bg": 3810 }, - { "id": "t_fencegate_c_season_winter", "fg": 3450, "bg": 3727 }, - { "id": "t_fencegate_o", "fg": 3451, "bg": 3802, "rotates": false }, - { "id": "t_fencegate_o_season_autumn", "fg": 3451, "bg": 3806 }, - { "id": "t_fencegate_o_season_summer", "fg": 3451, "bg": 3810 }, - { "id": "t_fencegate_o_season_winter", "fg": 3451, "bg": 3727 }, - { "id": "t_flat_roof", "bg": 3652, "rotates": false }, - { "id": "t_floor_blue", "fg": 3664, "rotates": false }, - { "id": "t_floor_green", "fg": 3665, "rotates": false }, - { "id": "t_floor_olight", "fg": 3666, "rotates": false }, - { "id": "t_floor_red", "fg": 3667, "rotates": false }, + { "id": "t_door_glass_gray_o", "fg": 3447, "bg": 3494, "rotates": false }, + { "id": "t_door_glass_green_o", "fg": 3447, "bg": 3408, "rotates": false }, + { "id": [ "t_door_glass_lab_o", "t_door_glass_frosted_lab_o" ], "fg": 3447, "bg": 3663, "rotates": false }, + { "id": [ "t_door_glass_o", "t_door_glass_frosted_o" ], "fg": 3447, "bg": 3658, "rotates": false }, + { "id": "t_door_glass_red_o", "fg": 3447, "bg": 3410, "rotates": false }, + { "id": "t_door_glass_white_o", "fg": 3447, "bg": 3495, "rotates": false }, + { "id": "t_door_gray_frame", "fg": 3445, "bg": 3494, "rotates": false }, + { "id": "t_door_gray_o", "fg": 3454, "bg": 3494, "rotates": false }, + { "id": "t_door_green_frame", "fg": 3445, "bg": 3408, "rotates": false }, + { "id": "t_door_green_o", "fg": 3454, "bg": 3408, "rotates": false }, + { "id": "t_door_lab_frame", "fg": 3445, "bg": 3663, "rotates": false }, + { "id": "t_door_lab_o", "fg": 3454, "bg": 3663, "rotates": false }, + { "id": "t_door_locked", "fg": 4783, "rotates": false }, + { "id": "t_door_locked_alarm", "fg": 4783, "rotates": false }, + { "id": "t_door_locked_interior", "fg": 4783, "rotates": false }, + { "id": "t_door_locked_peep", "fg": 4781 }, + { "id": "t_door_makeshift_c", "fg": 3448, "rotates": false }, + { "id": "t_door_makeshift_o", "fg": 3449, "bg": 3658, "rotates": false }, + { "id": "t_door_metal_c_peep", "fg": 3451, "rotates": false }, + { "id": [ "t_door_metal_c", "t_door_metal_lab_c" ], "fg": 3450, "rotates": true }, + { "id": "t_door_metal_locked", "fg": 3450, "rotates": false }, + { "id": "t_door_metal_o_peep", "fg": 3452, "bg": 3663, "rotates": false }, + { "id": [ "t_door_metal_o", "t_door_metal_lab_o" ], "fg": 3452, "bg": 3663, "rotates": false }, + { "id": "t_door_metal_pickable", "fg": 3453 }, + { "id": "t_door_o", "fg": 3454, "bg": 3658, "rotates": false }, + { "id": "t_door_o_peep", "fg": 3454, "bg": 3658 }, + { "id": "t_door_red_frame", "fg": 3445, "bg": 3410, "rotates": false }, + { "id": "t_door_red_o", "fg": 3454, "bg": 3410, "rotates": false }, + { "id": "t_door_white_frame", "fg": 3445, "bg": 3495, "rotates": false }, + { "id": "t_door_white_o", "fg": 3454, "bg": 3495, "rotates": false }, + { "id": "t_elevator", "fg": 3455, "rotates": false }, + { "id": "t_elevator_control", "fg": 3422, "rotates": false }, + { "id": "t_elevator_control_off", "fg": 3423, "rotates": false }, + { "id": "t_emergency_light", "bg": 3663, "rotates": false }, + { "id": "t_emergency_light_flicker", "bg": 3663, "rotates": false }, + { "id": "t_fault", "fg": 3456, "rotates": false }, + { "id": "t_fence_barbed", "fg": 3459, "bg": 3809, "rotates": false }, + { "id": "t_fence_barbed_season_autumn", "fg": 3459, "bg": 3813 }, + { "id": "t_fence_barbed_season_summer", "fg": 3459, "bg": 3817 }, + { "id": "t_fence_barbed_season_winter", "fg": 3459, "bg": 3734 }, + { "id": "t_fence_post", "fg": 3460, "bg": 3809, "rotates": false }, + { "id": "t_fence_post_season_autumn", "fg": 3460, "bg": 3813 }, + { "id": "t_fence_post_season_summer", "fg": 3460, "bg": 3817 }, + { "id": "t_fence_post_season_winter", "fg": 3460, "bg": 3734 }, + { "id": [ "t_fence_season_autumn" ], "fg": 3461, "bg": 3813 }, + { "id": [ "t_fence_season_summer", "t_fence_h_season_summer" ], "fg": 3461, "bg": 3817 }, + { "id": [ "t_fence_season_winter", "t_fence_h_season_winter" ], "fg": 3461, "bg": 3734 }, + { "id": [ "t_fence", "t_fence_h" ], "fg": 3461, "bg": 3809, "rotates": true }, + { "id": "t_fence_v", "fg": 3461, "bg": 3809 }, + { "id": "t_fence_v_season_autumn", "fg": 3461, "bg": 3813 }, + { "id": "t_fence_v_season_summer", "fg": 3461, "bg": 3817 }, + { "id": "t_fence_v_season_winter", "fg": 3461, "bg": 3734 }, + { "id": "t_fence_wire", "fg": 3462, "bg": 3809, "rotates": false }, + { "id": "t_fence_wire_season_autumn", "fg": 3462, "bg": 3813 }, + { "id": "t_fence_wire_season_summer", "fg": 3462, "bg": 3817 }, + { "id": "t_fence_wire_season_winter", "fg": 3462, "bg": 3734 }, + { "id": "t_fencegate_c", "fg": 3457, "bg": 3809, "rotates": false }, + { "id": "t_fencegate_c_season_autumn", "fg": 3457, "bg": 3813 }, + { "id": "t_fencegate_c_season_summer", "fg": 3457, "bg": 3817 }, + { "id": "t_fencegate_c_season_winter", "fg": 3457, "bg": 3734 }, + { "id": "t_fencegate_o", "fg": 3458, "bg": 3809, "rotates": false }, + { "id": "t_fencegate_o_season_autumn", "fg": 3458, "bg": 3813 }, + { "id": "t_fencegate_o_season_summer", "fg": 3458, "bg": 3817 }, + { "id": "t_fencegate_o_season_winter", "fg": 3458, "bg": 3734 }, + { "id": "t_flat_roof", "bg": 3659, "rotates": false }, + { "id": "t_floor_blue", "fg": 3671, "rotates": false }, + { "id": "t_floor_green", "fg": 3672, "rotates": false }, + { "id": "t_floor_olight", "fg": 3673, "rotates": false }, + { "id": "t_floor_red", "fg": 3674, "rotates": false }, { "id": [ "t_floor", @@ -3826,2522 +3834,2522 @@ "t_secretdoor_concrete_wall_o", "t_secretdoor_bookcase_o" ], - "bg": 3651, + "bg": 3658, "rotates": false }, - { "id": "t_floor_wax", "fg": 3456 }, - { "id": "t_floor_waxed", "fg": 3457, "rotates": false }, - { "id": "t_floor_waxed_y", "fg": 3649, "rotates": false }, - { "id": "t_fungus", "bg": 1339, "rotates": false }, - { "id": "t_fungus_floor_in", "bg": 3653, "rotates": false }, - { "id": "t_fungus_floor_out", "bg": 3654, "rotates": false }, - { "id": "t_fungus_floor_sup", "bg": 3655, "rotates": false }, - { "id": "t_fungus_mound", "fg": 3458, "bg": 1339, "rotates": false }, + { "id": "t_floor_wax", "fg": 3463 }, + { "id": "t_floor_waxed", "fg": 3464, "rotates": false }, + { "id": "t_floor_waxed_y", "fg": 3656, "rotates": false }, + { "id": "t_fungus", "bg": 1340, "rotates": false }, + { "id": "t_fungus_floor_in", "bg": 3660, "rotates": false }, + { "id": "t_fungus_floor_out", "bg": 3661, "rotates": false }, + { "id": "t_fungus_floor_sup", "bg": 3662, "rotates": false }, + { "id": "t_fungus_mound", "fg": 3465, "bg": 1340, "rotates": false }, { "id": "t_fungus_wall", - "fg": 3459, - "bg": 3655, + "fg": 3466, + "bg": 3662, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3460, "bg": 3655 }, - { "id": "corner", "fg": 3461, "bg": 3655 }, - { "id": "edge", "fg": 3462, "bg": 3655 }, - { "id": "t_connection", "fg": 3464, "bg": 3655 }, - { "id": "end_piece", "fg": 3463, "bg": 3655 }, - { "id": "unconnected", "fg": 3459, "bg": 3655 } + { "id": "center", "fg": 3467, "bg": 3662 }, + { "id": "corner", "fg": 3468, "bg": 3662 }, + { "id": "edge", "fg": 3469, "bg": 3662 }, + { "id": "t_connection", "fg": 3471, "bg": 3662 }, + { "id": "end_piece", "fg": 3470, "bg": 3662 }, + { "id": "unconnected", "fg": 3466, "bg": 3662 } ] }, { "id": "t_fungus_wall_transformed", - "fg": 3501, - "bg": 3460, - "multitile": true, - "additional_tiles": [ - { "id": "corner", "fg": 3517, "bg": 3460 }, - { "id": "edge", "fg": 3518, "bg": 3460 }, - { "id": "t_connection", "fg": 3520, "bg": 3460 }, - { "id": "center", "fg": 3516, "bg": 3460 }, - { "id": "end_piece", "fg": 3519, "bg": 3460 }, - { "id": "unconnected", "fg": 3501, "bg": 3460 } - ] - }, - { "id": "t_gas_pump", "fg": 3465, "bg": 3650, "rotates": false }, - { "id": "t_gas_pump_a", "fg": 3465, "bg": 3650 }, - { "id": "t_gas_pump_smashed", "fg": 3466, "bg": 3650, "rotates": false }, - { "id": "t_gas_tank", "fg": 3467, "bg": 3650 }, - { "id": "t_gates_control_brick", "fg": 3669, "rotates": false }, - { "id": "t_gates_control_brick_lab", "fg": 3670, "rotates": false }, - { "id": "t_gates_control_concrete", "fg": 3671, "rotates": false }, - { "id": "t_gates_control_concrete_lab", "fg": 3672, "rotates": false }, - { "id": "t_gates_control_metal", "fg": 3673, "rotates": false }, - { "id": "t_gates_control_metal_lab", "fg": 3674, "rotates": false }, - { "id": "t_gates_mech_control", "fg": 3675, "bg": 3498, "rotates": false }, - { "id": "t_gates_mech_control_lab", "fg": 3676, "bg": 3498, "rotates": false }, + "fg": 3508, + "bg": 3467, + "multitile": true, + "additional_tiles": [ + { "id": "corner", "fg": 3524, "bg": 3467 }, + { "id": "edge", "fg": 3525, "bg": 3467 }, + { "id": "t_connection", "fg": 3527, "bg": 3467 }, + { "id": "center", "fg": 3523, "bg": 3467 }, + { "id": "end_piece", "fg": 3526, "bg": 3467 }, + { "id": "unconnected", "fg": 3508, "bg": 3467 } + ] + }, + { "id": "t_gas_pump", "fg": 3472, "bg": 3657, "rotates": false }, + { "id": "t_gas_pump_a", "fg": 3472, "bg": 3657 }, + { "id": "t_gas_pump_smashed", "fg": 3473, "bg": 3657, "rotates": false }, + { "id": "t_gas_tank", "fg": 3474, "bg": 3657 }, + { "id": "t_gates_control_brick", "fg": 3676, "rotates": false }, + { "id": "t_gates_control_brick_lab", "fg": 3677, "rotates": false }, + { "id": "t_gates_control_concrete", "fg": 3678, "rotates": false }, + { "id": "t_gates_control_concrete_lab", "fg": 3679, "rotates": false }, + { "id": "t_gates_control_metal", "fg": 3680, "rotates": false }, + { "id": "t_gates_control_metal_lab", "fg": 3681, "rotates": false }, + { "id": "t_gates_mech_control", "fg": 3682, "bg": 3505, "rotates": false }, + { "id": "t_gates_mech_control_lab", "fg": 3683, "bg": 3505, "rotates": false }, { "id": "t_generator_broken", - "fg": 3468, + "fg": 3475, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "t_connection", "fg": 3469 } ] + "additional_tiles": [ { "id": "t_connection", "fg": 3476 } ] }, - { "id": "t_grate", "fg": 3448, "rotates": false }, + { "id": "t_grate", "fg": 3455, "rotates": false }, { "id": "t_guardrail_bg_dp", - "fg": 3529, - "bg": 3656, + "fg": 3536, + "bg": 3663, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3530, "bg": 3656 }, - { "id": "center", "fg": 3529, "bg": 3656 }, - { "id": "end_piece", "fg": 3532, "bg": 3656 }, - { "id": "t_connection", "fg": 3533, "bg": 3656 }, - { "id": "unconnected", "fg": 3534, "bg": 3656 }, - { "id": "edge", "fg": 3531, "bg": 3656 } + { "id": "corner", "fg": 3537, "bg": 3663 }, + { "id": "center", "fg": 3536, "bg": 3663 }, + { "id": "end_piece", "fg": 3539, "bg": 3663 }, + { "id": "t_connection", "fg": 3540, "bg": 3663 }, + { "id": "unconnected", "fg": 3541, "bg": 3663 }, + { "id": "edge", "fg": 3538, "bg": 3663 } ] }, { "id": "t_hole", - "fg": 3471, + "fg": 3478, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3471 }, - { "id": "center", "fg": 3472 }, - { "id": "corner", "fg": 3473 }, - { "id": "edge", "fg": 3474 }, - { "id": "end_piece", "fg": 3475 }, - { "id": "t_connection", "fg": 3476 } + { "id": "unconnected", "fg": 3478 }, + { "id": "center", "fg": 3479 }, + { "id": "corner", "fg": 3480 }, + { "id": "edge", "fg": 3481 }, + { "id": "end_piece", "fg": 3482 }, + { "id": "t_connection", "fg": 3483 } ] }, - { "id": "t_improvised_shelter", "fg": 3477, "bg": 3802, "rotates": false }, - { "id": "t_improvised_shelter_season_autumn", "fg": 3477, "bg": 3806, "rotates": false }, - { "id": "t_improvised_shelter_season_summer", "fg": 3477, "bg": 3810, "rotates": false }, - { "id": "t_improvised_shelter_season_winter", "fg": 3477, "bg": 3727, "rotates": false }, - { "id": "t_ind_assembler", "fg": 3478, "bg": 3652 }, - { "id": "t_ind_drill", "fg": 3479, "bg": 3391, "rotates": false }, - { "id": "t_ind_furnace", "fg": 3480, "bg": 3650, "rotates": false }, - { "id": "t_ind_lathe", "fg": 3481, "rotates": false }, - { "id": "t_ind_mixer", "fg": 3482, "bg": 3391, "rotates": false }, + { "id": "t_improvised_shelter", "fg": 3484, "bg": 3809, "rotates": false }, + { "id": "t_improvised_shelter_season_autumn", "fg": 3484, "bg": 3813, "rotates": false }, + { "id": "t_improvised_shelter_season_summer", "fg": 3484, "bg": 3817, "rotates": false }, + { "id": "t_improvised_shelter_season_winter", "fg": 3484, "bg": 3734, "rotates": false }, + { "id": "t_ind_assembler", "fg": 3485, "bg": 3659 }, + { "id": "t_ind_drill", "fg": 3486, "bg": 3398, "rotates": false }, + { "id": "t_ind_furnace", "fg": 3487, "bg": 3657, "rotates": false }, + { "id": "t_ind_lathe", "fg": 3488, "rotates": false }, + { "id": "t_ind_mixer", "fg": 3489, "bg": 3398, "rotates": false }, { "id": "t_ind_pipe", - "fg": 3572, - "bg": 3656, + "fg": 3579, + "bg": 3663, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3573, "bg": 3656 }, - { "id": "corner", "fg": 3574, "bg": 3656 }, - { "id": "edge", "fg": 3575, "bg": 3656 }, - { "id": "t_connection", "fg": 3577, "bg": 3656 }, - { "id": "end_piece", "fg": 3576, "bg": 3656 }, - { "id": "unconnected", "fg": 3572, "bg": 3656 } - ] - }, - { "id": "t_ind_press", "fg": 3491 }, - { "id": "t_ladder_down", "fg": 3483, "bg": 3802, "rotates": false }, - { "id": "t_ladder_down_season_autumn", "fg": 3483, "bg": 3806 }, - { "id": "t_ladder_down_season_summer", "fg": 3483, "bg": 3810 }, - { "id": "t_ladder_down_season_winter", "fg": 3483, "bg": 3727 }, - { "id": "t_ladder_up", "fg": 3484, "bg": 3650, "rotates": false }, - { "id": "t_lava", "fg": 3485, "rotates": false }, - { "id": "t_lgtn_arrest", "fg": 3486, "bg": 3656, "rotates": false }, - { "id": "t_linoleum_gray", "fg": 3487, "rotates": false }, - { "id": "t_linoleum_white", "fg": 3488, "rotates": false }, - { "id": "t_little_column", "fg": 3489, "bg": 3650, "rotates": false }, - { "id": "t_low_stairs_begin", "fg": 3595, "rotates": false }, - { "id": "t_low_stairs_end", "fg": 3490, "bg": 3650, "rotates": false }, - { "id": "t_m_frame", "fg": 3508, "bg": 3650, "rotates": false }, - { "id": "t_machinery_electronic", "fg": 3492, "bg": 3656, "rotates": false }, - { "id": "t_machinery_heavy", "fg": 3491, "bg": 3656, "rotates": false }, - { "id": "t_machinery_light", "fg": 3492, "bg": 3656, "rotates": false }, - { "id": "t_machinery_old", "fg": 3493, "bg": 3656, "rotates": false }, - { "id": "t_manhole", "fg": 3494, "bg": 3650, "rotates": false }, - { "id": "t_manhole_cover", "fg": 3495, "bg": 3650, "rotates": false }, - { "id": "t_marloss", "fg": 3496, "bg": 1339, "rotates": false }, - { "id": "t_mdoor_frame", "fg": 3497, "bg": 3651, "rotates": false }, - { "id": "t_mdoor_lab_frame", "fg": 3497, "bg": 3656, "rotates": false }, - { "id": "t_metal_floor", "fg": 3498, "rotates": false }, - { "id": "t_metal_floor_olight", "fg": 3677, "rotates": false }, - { "id": "t_milking_machine", "fg": 3492, "bg": 3656, "rotates": false }, + { "id": "center", "fg": 3580, "bg": 3663 }, + { "id": "corner", "fg": 3581, "bg": 3663 }, + { "id": "edge", "fg": 3582, "bg": 3663 }, + { "id": "t_connection", "fg": 3584, "bg": 3663 }, + { "id": "end_piece", "fg": 3583, "bg": 3663 }, + { "id": "unconnected", "fg": 3579, "bg": 3663 } + ] + }, + { "id": "t_ind_press", "fg": 3498 }, + { "id": "t_ladder_down", "fg": 3490, "bg": 3809, "rotates": false }, + { "id": "t_ladder_down_season_autumn", "fg": 3490, "bg": 3813 }, + { "id": "t_ladder_down_season_summer", "fg": 3490, "bg": 3817 }, + { "id": "t_ladder_down_season_winter", "fg": 3490, "bg": 3734 }, + { "id": "t_ladder_up", "fg": 3491, "bg": 3657, "rotates": false }, + { "id": "t_lava", "fg": 3492, "rotates": false }, + { "id": "t_lgtn_arrest", "fg": 3493, "bg": 3663, "rotates": false }, + { "id": "t_linoleum_gray", "fg": 3494, "rotates": false }, + { "id": "t_linoleum_white", "fg": 3495, "rotates": false }, + { "id": "t_little_column", "fg": 3496, "bg": 3657, "rotates": false }, + { "id": "t_low_stairs_begin", "fg": 3602, "rotates": false }, + { "id": "t_low_stairs_end", "fg": 3497, "bg": 3657, "rotates": false }, + { "id": "t_m_frame", "fg": 3515, "bg": 3657, "rotates": false }, + { "id": "t_machinery_electronic", "fg": 3499, "bg": 3663, "rotates": false }, + { "id": "t_machinery_heavy", "fg": 3498, "bg": 3663, "rotates": false }, + { "id": "t_machinery_light", "fg": 3499, "bg": 3663, "rotates": false }, + { "id": "t_machinery_old", "fg": 3500, "bg": 3663, "rotates": false }, + { "id": "t_manhole", "fg": 3501, "bg": 3657, "rotates": false }, + { "id": "t_manhole_cover", "fg": 3502, "bg": 3657, "rotates": false }, + { "id": "t_marloss", "fg": 3503, "bg": 1340, "rotates": false }, + { "id": "t_mdoor_frame", "fg": 3504, "bg": 3658, "rotates": false }, + { "id": "t_mdoor_lab_frame", "fg": 3504, "bg": 3663, "rotates": false }, + { "id": "t_metal_floor", "fg": 3505, "rotates": false }, + { "id": "t_metal_floor_olight", "fg": 3684, "rotates": false }, + { "id": "t_milking_machine", "fg": 3499, "bg": 3663, "rotates": false }, { "id": "t_missile", - "fg": 3499, - "bg": 3650, + "fg": 3506, + "bg": 3657, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 3500, "bg": 3650 }, { "id": "center", "fg": 3499 }, { "id": "t_connection", "fg": 3504 } ] + "additional_tiles": [ { "id": "corner", "fg": 3507, "bg": 3657 }, { "id": "center", "fg": 3506 }, { "id": "t_connection", "fg": 3511 } ] }, { "id": "t_missile_exploded", - "bg": 3650, + "bg": 3657, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3502, "bg": 3650 }, - { "id": "center", "fg": 3501, "bg": 3656 }, - { "id": "t_connection", "fg": 3503 } + { "id": "corner", "fg": 3509, "bg": 3657 }, + { "id": "center", "fg": 3508, "bg": 3663 }, + { "id": "t_connection", "fg": 3510 } ] }, { "id": "t_monkey_bars", - "fg": 3505, - "bg": 3890, + "fg": 3512, + "bg": 3897, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3505, "bg": 3890 }, - { "id": "corner", "fg": 3506, "bg": 3890 }, - { "id": "t_connection", "fg": 3507, "bg": 3890 } + { "id": "center", "fg": 3512, "bg": 3897 }, + { "id": "corner", "fg": 3513, "bg": 3897 }, + { "id": "t_connection", "fg": 3514, "bg": 3897 } ] }, { "id": "t_monkey_bars_season_autumn", - "fg": 3505, - "bg": 3806, + "fg": 3512, + "bg": 3813, "multitile": true, "additional_tiles": [ - { "id": "edge", "bg": 3806 }, - { "id": "corner", "fg": 3506, "bg": 3806 }, - { "id": "center", "fg": 3505, "bg": 3806 }, - { "id": "t_connection", "fg": 3507, "bg": 3806 } + { "id": "edge", "bg": 3813 }, + { "id": "corner", "fg": 3513, "bg": 3813 }, + { "id": "center", "fg": 3512, "bg": 3813 }, + { "id": "t_connection", "fg": 3514, "bg": 3813 } ] }, { "id": "t_monkey_bars_season_summer", - "fg": 3505, - "bg": 3810, + "fg": 3512, + "bg": 3817, "multitile": true, "additional_tiles": [ - { "id": "edge", "bg": 3810 }, - { "id": "corner", "fg": 3506, "bg": 3810 }, - { "id": "center", "fg": 3505, "bg": 3810 }, - { "id": "t_connection", "fg": 3507, "bg": 3810 } + { "id": "edge", "bg": 3817 }, + { "id": "corner", "fg": 3513, "bg": 3817 }, + { "id": "center", "fg": 3512, "bg": 3817 }, + { "id": "t_connection", "fg": 3514, "bg": 3817 } ] }, { "id": "t_monkey_bars_season_winter", - "fg": 3505, - "bg": 3727, - "multitile": true, - "additional_tiles": [ - { "id": "edge", "bg": 3727 }, - { "id": "corner", "fg": 3506, "bg": 3727 }, - { "id": "center", "fg": 3505, "bg": 3727 }, - { "id": "t_connection", "fg": 3507, "bg": 3727 } - ] - }, - { "id": "t_oil_circ_brkr_l", "fg": 3509, "bg": 3656, "rotates": false }, - { "id": "t_oil_circ_brkr_s", "fg": 3510, "bg": 3656, "rotates": false }, - { "id": "t_open_air", "bg": 3657, "rotates": false }, - { "id": "t_open_air_rooved", "bg": 3657 }, - { "id": "t_ov_reb_cage", "fg": 3511, "bg": 3656 }, - { "id": "t_ov_smreb_cage", "fg": 3512, "rotates": false }, - { "id": "t_palisade", "fg": 3513, "bg": 3802 }, - { "id": "t_palisade_gate", "fg": 3514, "bg": 3802 }, - { "id": "t_palisade_gate_o", "fg": 3515, "bg": 3802 }, - { "id": "t_palisade_gate_o_season_autumn", "fg": 3515, "bg": 3806 }, - { "id": "t_palisade_gate_o_season_summer", "fg": 3515, "bg": 3810 }, - { "id": "t_palisade_gate_o_season_winter", "fg": 3515, "bg": 3727 }, - { "id": "t_palisade_gate_season_autumn", "fg": 3514, "bg": 3806 }, - { "id": "t_palisade_gate_season_summer", "fg": 3514, "bg": 3810 }, - { "id": "t_palisade_gate_season_winter", "fg": 3514, "bg": 3727 }, - { "id": "t_palisade_pulley", "fg": 3395, "bg": 3802, "rotates": false }, - { "id": "t_palisade_pulley_season_autumn", "fg": 3395, "bg": 3806 }, - { "id": "t_palisade_pulley_season_summer", "fg": 3395, "bg": 3810 }, - { "id": "t_palisade_pulley_season_winter", "fg": 3395, "bg": 3727 }, - { "id": "t_palisade_season_autumn", "fg": 3515, "bg": 3806 }, - { "id": "t_palisade_season_summer", "fg": 3515, "bg": 3810 }, - { "id": "t_palisade_season_winter", "fg": 3515, "bg": 3727 }, - { "id": "t_pavement", "bg": 3650, "rotates": false }, - { "id": "t_pavement_bg_dp", "bg": 3650 }, - { "id": "t_pavement_y", "fg": 3521, "bg": 3650, "rotates": false }, - { "id": "t_pavement_y_bg_dp", "fg": 3521, "bg": 3650 }, - { "id": "t_pedestal_temple", "fg": 3522, "bg": 3802, "rotates": false }, - { "id": "t_pedestal_wyrm", "fg": 3523, "bg": 3656 }, - { "id": "t_pit", "fg": 3678, "bg": 3802, "rotates": false }, - { "id": "t_pit_corpsed", "fg": 3679, "bg": 3802, "rotates": false }, - { "id": "t_pit_corpsed_season_autumn", "fg": 3679, "bg": 3806 }, - { "id": "t_pit_corpsed_season_summer", "fg": 3679, "bg": 3810 }, - { "id": "t_pit_corpsed_season_winter", "fg": 3679, "bg": 3727 }, - { "id": "t_pit_covered", "fg": 3680, "bg": 3802, "rotates": false }, - { "id": "t_pit_covered_season_autumn", "fg": 3680, "bg": 3806 }, - { "id": "t_pit_covered_season_summer", "fg": 3680, "bg": 3810 }, - { "id": "t_pit_covered_season_winter", "fg": 3681, "bg": 3727 }, - { "id": "t_pit_glass", "fg": 3682, "bg": 3802, "rotates": false }, - { "id": "t_pit_glass_covered", "fg": 3680, "bg": 3802 }, - { "id": "t_pit_glass_covered_season_autumn", "fg": 3680, "bg": 3806 }, - { "id": "t_pit_glass_covered_season_summer", "fg": 3680, "bg": 3810 }, - { "id": "t_pit_glass_covered_season_winter", "fg": 3681, "bg": 3727 }, - { "id": "t_pit_glass_season_autumn", "fg": 3682, "bg": 3806, "rotates": false }, - { "id": "t_pit_glass_season_summer", "fg": 3682, "bg": 3810, "rotates": false }, - { "id": "t_pit_glass_season_winter", "fg": 3682, "bg": 3727, "rotates": false }, - { "id": "t_pit_season_autumn", "fg": 3678, "bg": 3806 }, - { "id": "t_pit_season_summer", "fg": 3678, "bg": 3810 }, - { "id": "t_pit_season_winter", "fg": 3678, "bg": 3727 }, - { "id": "t_pit_shallow", "fg": 3683, "bg": 3802, "rotates": false }, - { "id": "t_pit_shallow_season_autumn", "fg": 3683, "bg": 3806 }, - { "id": "t_pit_shallow_season_summer", "fg": 3683, "bg": 3810 }, - { "id": "t_pit_shallow_season_winter", "fg": 3684, "bg": 3727 }, - { "id": "t_pit_spiked", "fg": 3685, "bg": 3802, "rotates": false }, - { "id": "t_pit_spiked_covered", "fg": 3680, "bg": 3802, "rotates": false }, - { "id": "t_pit_spiked_covered_season_autumn", "fg": 3680, "bg": 3806 }, - { "id": "t_pit_spiked_covered_season_summer", "fg": 3680, "bg": 3810 }, - { "id": "t_pit_spiked_covered_season_winter", "fg": 3681, "bg": 3727 }, - { "id": "t_pit_spiked_season_autumn", "fg": 3685, "bg": 3806 }, - { "id": "t_pit_spiked_season_summer", "fg": 3685, "bg": 3810 }, - { "id": "t_pit_spiked_season_winter", "fg": 3685, "bg": 3727 }, - { "id": "t_plut_generator", "fg": 3524, "bg": 3656 }, - { "id": "t_portcullis", "fg": 3525, "bg": 3652 }, - { "id": "t_potential_trans", "fg": 3526, "bg": 3656, "rotates": false }, - { "id": "t_radio_controls", "fg": 3416, "rotates": false }, + "fg": 3512, + "bg": 3734, + "multitile": true, + "additional_tiles": [ + { "id": "edge", "bg": 3734 }, + { "id": "corner", "fg": 3513, "bg": 3734 }, + { "id": "center", "fg": 3512, "bg": 3734 }, + { "id": "t_connection", "fg": 3514, "bg": 3734 } + ] + }, + { "id": "t_oil_circ_brkr_l", "fg": 3516, "bg": 3663, "rotates": false }, + { "id": "t_oil_circ_brkr_s", "fg": 3517, "bg": 3663, "rotates": false }, + { "id": "t_open_air", "bg": 3664, "rotates": false }, + { "id": "t_open_air_rooved", "bg": 3664 }, + { "id": "t_ov_reb_cage", "fg": 3518, "bg": 3663 }, + { "id": "t_ov_smreb_cage", "fg": 3519, "rotates": false }, + { "id": "t_palisade", "fg": 3520, "bg": 3809 }, + { "id": "t_palisade_gate", "fg": 3521, "bg": 3809 }, + { "id": "t_palisade_gate_o", "fg": 3522, "bg": 3809 }, + { "id": "t_palisade_gate_o_season_autumn", "fg": 3522, "bg": 3813 }, + { "id": "t_palisade_gate_o_season_summer", "fg": 3522, "bg": 3817 }, + { "id": "t_palisade_gate_o_season_winter", "fg": 3522, "bg": 3734 }, + { "id": "t_palisade_gate_season_autumn", "fg": 3521, "bg": 3813 }, + { "id": "t_palisade_gate_season_summer", "fg": 3521, "bg": 3817 }, + { "id": "t_palisade_gate_season_winter", "fg": 3521, "bg": 3734 }, + { "id": "t_palisade_pulley", "fg": 3402, "bg": 3809, "rotates": false }, + { "id": "t_palisade_pulley_season_autumn", "fg": 3402, "bg": 3813 }, + { "id": "t_palisade_pulley_season_summer", "fg": 3402, "bg": 3817 }, + { "id": "t_palisade_pulley_season_winter", "fg": 3402, "bg": 3734 }, + { "id": "t_palisade_season_autumn", "fg": 3522, "bg": 3813 }, + { "id": "t_palisade_season_summer", "fg": 3522, "bg": 3817 }, + { "id": "t_palisade_season_winter", "fg": 3522, "bg": 3734 }, + { "id": "t_pavement", "bg": 3657, "rotates": false }, + { "id": "t_pavement_bg_dp", "bg": 3657 }, + { "id": "t_pavement_y", "fg": 3528, "bg": 3657, "rotates": false }, + { "id": "t_pavement_y_bg_dp", "fg": 3528, "bg": 3657 }, + { "id": "t_pedestal_temple", "fg": 3529, "bg": 3809, "rotates": false }, + { "id": "t_pedestal_wyrm", "fg": 3530, "bg": 3663 }, + { "id": "t_pit", "fg": 3685, "bg": 3809, "rotates": false }, + { "id": "t_pit_corpsed", "fg": 3686, "bg": 3809, "rotates": false }, + { "id": "t_pit_corpsed_season_autumn", "fg": 3686, "bg": 3813 }, + { "id": "t_pit_corpsed_season_summer", "fg": 3686, "bg": 3817 }, + { "id": "t_pit_corpsed_season_winter", "fg": 3686, "bg": 3734 }, + { "id": "t_pit_covered", "fg": 3687, "bg": 3809, "rotates": false }, + { "id": "t_pit_covered_season_autumn", "fg": 3687, "bg": 3813 }, + { "id": "t_pit_covered_season_summer", "fg": 3687, "bg": 3817 }, + { "id": "t_pit_covered_season_winter", "fg": 3688, "bg": 3734 }, + { "id": "t_pit_glass", "fg": 3689, "bg": 3809, "rotates": false }, + { "id": "t_pit_glass_covered", "fg": 3687, "bg": 3809 }, + { "id": "t_pit_glass_covered_season_autumn", "fg": 3687, "bg": 3813 }, + { "id": "t_pit_glass_covered_season_summer", "fg": 3687, "bg": 3817 }, + { "id": "t_pit_glass_covered_season_winter", "fg": 3688, "bg": 3734 }, + { "id": "t_pit_glass_season_autumn", "fg": 3689, "bg": 3813, "rotates": false }, + { "id": "t_pit_glass_season_summer", "fg": 3689, "bg": 3817, "rotates": false }, + { "id": "t_pit_glass_season_winter", "fg": 3689, "bg": 3734, "rotates": false }, + { "id": "t_pit_season_autumn", "fg": 3685, "bg": 3813 }, + { "id": "t_pit_season_summer", "fg": 3685, "bg": 3817 }, + { "id": "t_pit_season_winter", "fg": 3685, "bg": 3734 }, + { "id": "t_pit_shallow", "fg": 3690, "bg": 3809, "rotates": false }, + { "id": "t_pit_shallow_season_autumn", "fg": 3690, "bg": 3813 }, + { "id": "t_pit_shallow_season_summer", "fg": 3690, "bg": 3817 }, + { "id": "t_pit_shallow_season_winter", "fg": 3691, "bg": 3734 }, + { "id": "t_pit_spiked", "fg": 3692, "bg": 3809, "rotates": false }, + { "id": "t_pit_spiked_covered", "fg": 3687, "bg": 3809, "rotates": false }, + { "id": "t_pit_spiked_covered_season_autumn", "fg": 3687, "bg": 3813 }, + { "id": "t_pit_spiked_covered_season_summer", "fg": 3687, "bg": 3817 }, + { "id": "t_pit_spiked_covered_season_winter", "fg": 3688, "bg": 3734 }, + { "id": "t_pit_spiked_season_autumn", "fg": 3692, "bg": 3813 }, + { "id": "t_pit_spiked_season_summer", "fg": 3692, "bg": 3817 }, + { "id": "t_pit_spiked_season_winter", "fg": 3692, "bg": 3734 }, + { "id": "t_plut_generator", "fg": 3531, "bg": 3663 }, + { "id": "t_portcullis", "fg": 3532, "bg": 3659 }, + { "id": "t_potential_trans", "fg": 3533, "bg": 3663, "rotates": false }, + { "id": "t_radio_controls", "fg": 3423, "rotates": false }, { "id": "t_radio_tower", - "fg": 3527, - "bg": 3650, + "fg": 3534, + "bg": 3657, "multitile": true, - "additional_tiles": [ { "id": "center", "fg": 3528, "bg": 3650 } ] + "additional_tiles": [ { "id": "center", "fg": 3535, "bg": 3657 } ] }, { "id": [ "t_railing", "t_railing_h" ], - "fg": 3529, - "bg": 3656, + "fg": 3536, + "bg": 3663, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3529, "bg": 3656 }, - { "id": "corner", "fg": 3530, "bg": 3656 }, - { "id": "edge", "fg": 3531, "bg": 3656 }, - { "id": "t_connection", "fg": 3533, "bg": 3656 }, - { "id": "end_piece", "fg": 3532, "bg": 3656 }, - { "id": "unconnected", "fg": 3534, "bg": 3656 } + { "id": "center", "fg": 3536, "bg": 3663 }, + { "id": "corner", "fg": 3537, "bg": 3663 }, + { "id": "edge", "fg": 3538, "bg": 3663 }, + { "id": "t_connection", "fg": 3540, "bg": 3663 }, + { "id": "end_piece", "fg": 3539, "bg": 3663 }, + { "id": "unconnected", "fg": 3541, "bg": 3663 } ] }, { "id": "t_railing_v", - "fg": 3529, - "bg": 3656, + "fg": 3536, + "bg": 3663, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3529, "bg": 3656 }, - { "id": "corner", "fg": 3530, "bg": 3656 }, - { "id": "edge", "fg": 3531, "bg": 3656 }, - { "id": "t_connection", "fg": 3533, "bg": 3656 }, - { "id": "end_piece", "fg": 3532, "bg": 3656 }, - { "id": "unconnected", "fg": 3534, "bg": 3656 } + { "id": "center", "fg": 3536, "bg": 3663 }, + { "id": "corner", "fg": 3537, "bg": 3663 }, + { "id": "edge", "fg": 3538, "bg": 3663 }, + { "id": "t_connection", "fg": 3540, "bg": 3663 }, + { "id": "end_piece", "fg": 3539, "bg": 3663 }, + { "id": "unconnected", "fg": 3541, "bg": 3663 } ] }, - { "id": "t_railroad_rubble", "bg": 3640, "rotates": true }, + { "id": "t_railroad_rubble", "bg": 3647, "rotates": true }, { "id": "t_railroad_tie", - "fg": [ 3646, 3647, 3646, 3647 ], + "fg": [ 3653, 3654, 3653, 3654 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "unconnected", "fg": 3640 } ] + "additional_tiles": [ { "id": "unconnected", "fg": 3647 } ] }, - { "id": "t_railroad_tie_h", "fg": 3647, "rotates": false }, - { "id": "t_railroad_tie_v", "fg": 3646, "rotates": false }, + { "id": "t_railroad_tie_h", "fg": 3654, "rotates": false }, + { "id": "t_railroad_tie_v", "fg": 3653, "rotates": false }, { "id": "t_railroad_track", - "fg": [ 3641, 3642, 3641, 3642 ], - "rotates": true, - "multitile": true, - "additional_tiles": [ { "id": "center", "fg": 3648 } ] - }, - { "id": "t_railroad_track_d", "fg": 3643, "bg": 3640, "rotates": true }, - { "id": "t_railroad_track_on_tie", "fg": [ 3645, 3644, 3645, 3644 ], "rotates": true }, - { "id": "t_raincatcher", "fg": 3535, "bg": 1236, "rotates": false }, - { "id": "t_rdoor_b", "fg": 3536, "bg": 3651, "rotates": false }, - { "id": "t_rdoor_boarded", "fg": 3537, "rotates": false }, - { "id": "t_rdoor_boarded_damaged", "fg": 3538, "rotates": false }, - { "id": "t_rdoor_c", "fg": 3539, "bg": 3651, "rotates": false }, - { "id": "t_rdoor_o", "fg": 3540, "bg": 3651, "rotates": false }, - { "id": "t_reb_cage", "fg": 3541, "bg": 3656 }, - { "id": "t_recycler", "fg": 3542, "bg": 3656, "rotates": false }, - { "id": "t_reinforced_door_glass_c", "fg": 3543, "bg": 3650 }, - { "id": "t_reinforced_door_glass_lab_c", "fg": 3543, "bg": 3656 }, - { "id": "t_reinforced_door_glass_lab_o", "fg": 3544, "bg": 3656 }, - { "id": "t_reinforced_door_glass_o", "fg": 3544, "bg": 3650 }, - { "id": "t_reinforced_glass_shutter", "fg": 3545, "bg": 3650, "rotates": false }, - { "id": "t_reinforced_glass_shutter_open", "fg": 3546, "bg": 3650, "rotates": false }, - { "id": "t_rock_floor", "bg": 3650, "rotates": false }, + "fg": [ 3648, 3649, 3648, 3649 ], + "rotates": true, + "multitile": true, + "additional_tiles": [ { "id": "center", "fg": 3655 } ] + }, + { "id": "t_railroad_track_d", "fg": 3650, "bg": 3647, "rotates": true }, + { "id": "t_railroad_track_on_tie", "fg": [ 3652, 3651, 3652, 3651 ], "rotates": true }, + { "id": "t_raincatcher", "fg": 3542, "bg": 1237, "rotates": false }, + { "id": "t_rdoor_b", "fg": 3543, "bg": 3658, "rotates": false }, + { "id": "t_rdoor_boarded", "fg": 3544, "rotates": false }, + { "id": "t_rdoor_boarded_damaged", "fg": 3545, "rotates": false }, + { "id": "t_rdoor_c", "fg": 3546, "bg": 3658, "rotates": false }, + { "id": "t_rdoor_o", "fg": 3547, "bg": 3658, "rotates": false }, + { "id": "t_reb_cage", "fg": 3548, "bg": 3663 }, + { "id": "t_recycler", "fg": 3549, "bg": 3663, "rotates": false }, + { "id": "t_reinforced_door_glass_c", "fg": 3550, "bg": 3657 }, + { "id": "t_reinforced_door_glass_lab_c", "fg": 3550, "bg": 3663 }, + { "id": "t_reinforced_door_glass_lab_o", "fg": 3551, "bg": 3663 }, + { "id": "t_reinforced_door_glass_o", "fg": 3551, "bg": 3657 }, + { "id": "t_reinforced_glass_shutter", "fg": 3552, "bg": 3657, "rotates": false }, + { "id": "t_reinforced_glass_shutter_open", "fg": 3553, "bg": 3657, "rotates": false }, + { "id": "t_rock_floor", "bg": 3657, "rotates": false }, { "id": "t_rock_wall_half", - "fg": 3547, - "bg": 3802, + "fg": 3554, + "bg": 3809, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3547 }, - { "id": "center", "fg": 3548 }, - { "id": "corner", "fg": 3549 }, - { "id": "edge", "fg": 3550 }, - { "id": "end_piece", "fg": 3551 }, - { "id": "t_connection", "fg": 3552 } + { "id": "unconnected", "fg": 3554 }, + { "id": "center", "fg": 3555 }, + { "id": "corner", "fg": 3556 }, + { "id": "edge", "fg": 3557 }, + { "id": "end_piece", "fg": 3558 }, + { "id": "t_connection", "fg": 3559 } ] }, { "id": "t_root_wall", - "fg": 3516, - "bg": 3658, + "fg": 3523, + "bg": 3665, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3517, "bg": 3658 }, - { "id": "center", "fg": 3516, "bg": 3658 }, - { "id": "end_piece", "fg": 3519, "bg": 3658 }, - { "id": "unconnected", "fg": 3501, "bg": 3658 }, - { "id": "t_connection", "fg": 3520, "bg": 3658 }, - { "id": "edge", "fg": 3518, "bg": 3658 } + { "id": "corner", "fg": 3524, "bg": 3665 }, + { "id": "center", "fg": 3523, "bg": 3665 }, + { "id": "end_piece", "fg": 3526, "bg": 3665 }, + { "id": "unconnected", "fg": 3508, "bg": 3665 }, + { "id": "t_connection", "fg": 3527, "bg": 3665 }, + { "id": "edge", "fg": 3525, "bg": 3665 } ] }, - { "id": "t_rope_up", "fg": 3553, "bg": 3650, "rotates": false }, - { "id": "t_sai_box", "fg": 3554, "bg": 3656, "rotates": false }, - { "id": "t_sai_box_damaged", "fg": 3555, "bg": 3656, "rotates": false }, - { "id": "t_sandmound", "fg": 3556, "rotates": false }, - { "id": "t_sconc_wall", "fg": 3557, "bg": 3656 }, - { "id": "t_sconc_wall_halfway", "fg": 3558, "bg": 3656 }, - { "id": "t_scrap_floor", "fg": 3498, "rotates": false }, + { "id": "t_rope_up", "fg": 3560, "bg": 3657, "rotates": false }, + { "id": "t_sai_box", "fg": 3561, "bg": 3663, "rotates": false }, + { "id": "t_sai_box_damaged", "fg": 3562, "bg": 3663, "rotates": false }, + { "id": "t_sandmound", "fg": 3563, "rotates": false }, + { "id": "t_sconc_wall", "fg": 3564, "bg": 3663 }, + { "id": "t_sconc_wall_halfway", "fg": 3565, "bg": 3663 }, + { "id": "t_scrap_floor", "fg": 3505, "rotates": false }, { "id": "t_scrap_wall_halfway", - "fg": 3559, - "bg": 3652, + "fg": 3566, + "bg": 3659, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "t_connection", "fg": 3563, "bg": 3652 }, - { "id": "edge", "fg": 3561, "bg": 3652 }, - { "id": "corner", "fg": 3560, "bg": 3652 }, - { "id": "center", "fg": 3559, "bg": 3652 }, - { "id": "end_piece", "fg": 3562, "bg": 3656 }, - { "id": "unconnected", "fg": 3564, "bg": 3656 } + { "id": "t_connection", "fg": 3570, "bg": 3659 }, + { "id": "edge", "fg": 3568, "bg": 3659 }, + { "id": "corner", "fg": 3567, "bg": 3659 }, + { "id": "center", "fg": 3566, "bg": 3659 }, + { "id": "end_piece", "fg": 3569, "bg": 3663 }, + { "id": "unconnected", "fg": 3571, "bg": 3663 } ] }, { "id": "t_searth_test", - "fg": 3565, - "bg": 4263, + "fg": 3572, + "bg": 4270, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3565, "bg": 4263 }, - { "id": "corner", "fg": 3566, "bg": 4263 }, - { "id": "edge", "fg": 3567, "bg": 4263 }, - { "id": "t_connection", "fg": 3569, "bg": 4263 }, - { "id": "end_piece", "fg": 3568, "bg": 4263 }, - { "id": "unconnected", "fg": 3570, "bg": 4263 } + { "id": "center", "fg": 3572, "bg": 4270 }, + { "id": "corner", "fg": 3573, "bg": 4270 }, + { "id": "edge", "fg": 3574, "bg": 4270 }, + { "id": "t_connection", "fg": 3576, "bg": 4270 }, + { "id": "end_piece", "fg": 3575, "bg": 4270 }, + { "id": "unconnected", "fg": 3577, "bg": 4270 } ] }, - { "id": "t_sewage", "fg": 3571, "rotates": false }, + { "id": "t_sewage", "fg": 3578, "rotates": false }, { "id": "t_sewage_pipe", - "fg": 3572, - "bg": 3656, + "fg": 3579, + "bg": 3663, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3573, "bg": 3656 }, - { "id": "corner", "fg": 3574, "bg": 3656 }, - { "id": "edge", "fg": 3575, "bg": 3656 }, - { "id": "t_connection", "fg": 3577, "bg": 3656 }, - { "id": "end_piece", "fg": 3576, "bg": 3656 }, - { "id": "unconnected", "fg": 3572, "bg": 3656 } + { "id": "center", "fg": 3580, "bg": 3663 }, + { "id": "corner", "fg": 3581, "bg": 3663 }, + { "id": "edge", "fg": 3582, "bg": 3663 }, + { "id": "t_connection", "fg": 3584, "bg": 3663 }, + { "id": "end_piece", "fg": 3583, "bg": 3663 }, + { "id": "unconnected", "fg": 3579, "bg": 3663 } ] }, { "id": "t_sewage_pump", - "bg": 3656, + "bg": 3663, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3578, "bg": 3656 }, - { "id": "corner", "fg": 3579, "bg": 3656 }, - { "id": "edge", "fg": 3575, "bg": 3656 }, - { "id": "t_connection", "fg": 3578, "bg": 3656 }, - { "id": "end_piece", "fg": 3576, "bg": 3656 }, - { "id": "unconnected", "fg": 3578, "bg": 3656 } - ] - }, - { "id": "t_shrub", "fg": 3580, "bg": 3802, "rotates": false }, - { "id": "t_shrub_blueberry", "fg": 3581, "bg": 3802 }, - { "id": "t_shrub_blueberry_harvested", "fg": 3581, "bg": 3802 }, - { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 3581, "bg": 3806 }, - { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 3581, "bg": 3810 }, - { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 3585, "bg": 3727 }, - { "id": "t_shrub_blueberry_season_autumn", "fg": 3470, "bg": 3806 }, - { "id": "t_shrub_blueberry_season_summer", "fg": 3470, "bg": 3810 }, - { "id": "t_shrub_blueberry_season_winter", "fg": 3585, "bg": 3727 }, - { "id": "t_shrub_fungal", "fg": 3582, "bg": 1339, "rotates": false }, - { "id": "t_shrub_season_autumn", "fg": 3580, "bg": 3806 }, - { "id": "t_shrub_season_summer", "fg": 3580, "bg": 3810 }, - { "id": "t_shrub_season_winter", "fg": 3583, "bg": 3727 }, - { "id": "t_shrub_strawberry", "fg": 3581, "bg": 3802 }, - { "id": "t_shrub_strawberry_harvested", "fg": 3581, "bg": 3802 }, - { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 3581, "bg": 3806 }, - { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 3581, "bg": 3810 }, - { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 3585, "bg": 3727 }, - { "id": "t_shrub_strawberry_season_autumn", "fg": 3584, "bg": 3806 }, - { "id": "t_shrub_strawberry_season_summer", "fg": 3584, "bg": 3810 }, - { "id": "t_shrub_strawberry_season_winter", "fg": 3581, "bg": 3727 }, - { "id": "t_sidewalk", "fg": 3656, "rotates": false }, - { "id": "t_sidewalk_bg_dp", "fg": 3656 }, - { "id": "t_skylight", "bg": 3656, "rotates": false }, + { "id": "center", "fg": 3585, "bg": 3663 }, + { "id": "corner", "fg": 3586, "bg": 3663 }, + { "id": "edge", "fg": 3582, "bg": 3663 }, + { "id": "t_connection", "fg": 3585, "bg": 3663 }, + { "id": "end_piece", "fg": 3583, "bg": 3663 }, + { "id": "unconnected", "fg": 3585, "bg": 3663 } + ] + }, + { "id": "t_shrub", "fg": 3587, "bg": 3809, "rotates": false }, + { "id": "t_shrub_blueberry", "fg": 3588, "bg": 3809 }, + { "id": "t_shrub_blueberry_harvested", "fg": 3588, "bg": 3809 }, + { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 3588, "bg": 3813 }, + { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 3588, "bg": 3817 }, + { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 3592, "bg": 3734 }, + { "id": "t_shrub_blueberry_season_autumn", "fg": 3477, "bg": 3813 }, + { "id": "t_shrub_blueberry_season_summer", "fg": 3477, "bg": 3817 }, + { "id": "t_shrub_blueberry_season_winter", "fg": 3592, "bg": 3734 }, + { "id": "t_shrub_fungal", "fg": 3589, "bg": 1340, "rotates": false }, + { "id": "t_shrub_season_autumn", "fg": 3587, "bg": 3813 }, + { "id": "t_shrub_season_summer", "fg": 3587, "bg": 3817 }, + { "id": "t_shrub_season_winter", "fg": 3590, "bg": 3734 }, + { "id": "t_shrub_strawberry", "fg": 3588, "bg": 3809 }, + { "id": "t_shrub_strawberry_harvested", "fg": 3588, "bg": 3809 }, + { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 3588, "bg": 3813 }, + { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 3588, "bg": 3817 }, + { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 3592, "bg": 3734 }, + { "id": "t_shrub_strawberry_season_autumn", "fg": 3591, "bg": 3813 }, + { "id": "t_shrub_strawberry_season_summer", "fg": 3591, "bg": 3817 }, + { "id": "t_shrub_strawberry_season_winter", "fg": 3588, "bg": 3734 }, + { "id": "t_sidewalk", "fg": 3663, "rotates": false }, + { "id": "t_sidewalk_bg_dp", "fg": 3663 }, + { "id": "t_skylight", "bg": 3663, "rotates": false }, { "id": "t_slide", - "fg": 3586, - "bg": 3890, + "fg": 3593, + "bg": 3897, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3586, "bg": 3890 }, { "id": "end_piece", "fg": 3587, "bg": 3890 } ] + "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3897 }, { "id": "end_piece", "fg": 3594, "bg": 3897 } ] }, { "id": "t_slide_season_autumn", - "fg": 3586, - "bg": 3806, + "fg": 3593, + "bg": 3813, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3586, "bg": 3806 }, { "id": "end_piece", "fg": 3587, "bg": 3806 } ] + "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3813 }, { "id": "end_piece", "fg": 3594, "bg": 3813 } ] }, { "id": "t_slide_season_summer", - "fg": 3586, - "bg": 3810, + "fg": 3593, + "bg": 3817, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3586, "bg": 3810 }, { "id": "end_piece", "fg": 3587, "bg": 3810 } ] + "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3817 }, { "id": "end_piece", "fg": 3594, "bg": 3817 } ] }, { "id": "t_slide_season_winter", - "fg": 3586, - "bg": 3727, + "fg": 3593, + "bg": 3734, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3586, "bg": 3727 }, { "id": "end_piece", "fg": 3587, "bg": 3727 } ] + "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3734 }, { "id": "end_piece", "fg": 3594, "bg": 3734 } ] }, { "id": "t_slime", - "fg": 3588, - "bg": 3802, + "fg": 3595, + "bg": 3809, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3588, "bg": 3802 }, - { "id": "center", "fg": 3589, "bg": 3802 }, - { "id": "corner", "fg": 3590, "bg": 3802 }, - { "id": "edge", "fg": 3591, "bg": 3802 }, - { "id": "end_piece", "fg": 3592, "bg": 3802 }, - { "id": "t_connection", "fg": 3593, "bg": 3802 } + { "id": "unconnected", "fg": 3595, "bg": 3809 }, + { "id": "center", "fg": 3596, "bg": 3809 }, + { "id": "corner", "fg": 3597, "bg": 3809 }, + { "id": "edge", "fg": 3598, "bg": 3809 }, + { "id": "end_piece", "fg": 3599, "bg": 3809 }, + { "id": "t_connection", "fg": 3600, "bg": 3809 } ] }, { "id": "t_slime_season_autumn", - "fg": 3588, - "bg": 3806, + "fg": 3595, + "bg": 3813, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3588 }, - { "id": "center", "fg": 3589 }, - { "id": "corner", "fg": 3590 }, - { "id": "edge", "fg": 3591 }, - { "id": "end_piece", "fg": 3592 }, - { "id": "t_connection", "fg": 3593 } + { "id": "unconnected", "fg": 3595 }, + { "id": "center", "fg": 3596 }, + { "id": "corner", "fg": 3597 }, + { "id": "edge", "fg": 3598 }, + { "id": "end_piece", "fg": 3599 }, + { "id": "t_connection", "fg": 3600 } ] }, { "id": "t_slime_season_summer", - "fg": 3588, - "bg": 3810, + "fg": 3595, + "bg": 3817, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3588 }, - { "id": "center", "fg": 3589 }, - { "id": "corner", "fg": 3590 }, - { "id": "edge", "fg": 3591 }, - { "id": "end_piece", "fg": 3592 }, - { "id": "t_connection", "fg": 3593 } + { "id": "unconnected", "fg": 3595 }, + { "id": "center", "fg": 3596 }, + { "id": "corner", "fg": 3597 }, + { "id": "edge", "fg": 3598 }, + { "id": "end_piece", "fg": 3599 }, + { "id": "t_connection", "fg": 3600 } ] }, { "id": "t_slime_season_winter", - "fg": 3588, - "bg": 3727, - "multitile": true, - "additional_tiles": [ - { "id": "unconnected", "fg": 3588 }, - { "id": "center", "fg": 3589 }, - { "id": "corner", "fg": 3590 }, - { "id": "edge", "fg": 3591 }, - { "id": "end_piece", "fg": 3592 }, - { "id": "t_connection", "fg": 3593 } - ] - }, - { "id": "t_slope_down", "fg": 3594, "rotates": false }, - { "id": "t_slope_up", "fg": 3595, "rotates": false }, - { "id": "t_slot_machine", "fg": 3596, "bg": 3656 }, - { "id": [ "t_stairs_down", "t_wood_stairs_down" ], "fg": 3597, "bg": 3651, "rotates": false }, - { "id": [ "t_stairs_up", "t_wood_stairs_up" ], "fg": 3598, "bg": 3650, "rotates": false }, - { "id": "t_station_disc", "fg": 3599, "bg": 3656, "rotates": false }, - { "id": "t_strconc_floor_halfway", "fg": 3600 }, - { "id": "t_strconc_wall_halfway", "fg": 3601, "bg": 3656 }, - { "id": "t_stump", "fg": 3638, "rotates": false, "bg": 3802 }, - { "id": "t_stump_season_autumn", "fg": 3638, "rotates": false, "bg": 3806 }, - { "id": "t_stump_season_summer", "fg": 3638, "rotates": false, "bg": 3810 }, - { "id": "t_stump_season_winter", "fg": 3639, "rotates": false, "bg": 3727 }, - { "id": "t_support_l", "fg": 3602, "bg": 3656, "rotates": false }, - { "id": "t_support_s", "fg": 3603, "bg": 3656, "rotates": false }, - { "id": "t_switchgear_l", "fg": 3604, "bg": 3656, "rotates": false }, - { "id": "t_switchgear_s", "fg": 3605, "bg": 3656, "rotates": false }, - { "id": "t_tarptent", "fg": 3606, "bg": 3802, "rotates": false }, - { "id": "t_thconc_floor", "fg": 3656, "rotates": false }, - { "id": "t_thconc_floor_olight", "fg": 3697, "rotates": false }, - { "id": "t_trunk", "fg": 3698, "bg": 3802, "rotates": false }, - { "id": "t_trunk_season_autumn", "fg": 3698, "bg": 3806 }, - { "id": "t_trunk_season_summer", "fg": 3698, "bg": 3810 }, - { "id": "t_trunk_season_winter", "fg": 3699, "bg": 3727 }, - { "id": "t_underbrush", "fg": 3607, "bg": 3802, "rotates": false }, - { "id": "t_underbrush_harvested_autumn", "fg": 3608, "bg": 3806, "rotates": false }, - { "id": "t_underbrush_harvested_autumn_season_autumn", "fg": 3608, "bg": 3806, "rotates": false }, - { "id": "t_underbrush_harvested_autumn_season_summer", "fg": 3608, "bg": 3810, "rotates": false }, - { "id": "t_underbrush_harvested_autumn_season_winter", "fg": 3608, "bg": 3727, "rotates": false }, - { "id": "t_underbrush_harvested_spring", "fg": 3608, "bg": 3802, "rotates": false }, - { "id": "t_underbrush_harvested_spring_season_winter", "fg": 3608, "bg": 3727, "rotates": false }, - { "id": "t_underbrush_harvested_summer", "fg": 3608, "bg": 3810, "rotates": false }, - { "id": "t_underbrush_harvested_summer_season_winter", "fg": 3608, "bg": 3727, "rotates": false }, - { "id": "t_underbrush_harvested_winter", "fg": 3609, "bg": 3814, "rotates": false }, - { "id": "t_underbrush_harvested_winter_season_winter", "fg": 3609, "bg": 3727, "rotates": false }, - { "id": "t_underbrush_season_winter", "fg": 3610, "bg": 3727, "rotates": false }, - { "id": "t_utility_light", "fg": 3611, "bg": 3656 }, - { "id": "t_wall_half", "fg": 3612 }, - { "id": "t_wall_half_season_winter", "fg": 3612 }, + "fg": 3595, + "bg": 3734, + "multitile": true, + "additional_tiles": [ + { "id": "unconnected", "fg": 3595 }, + { "id": "center", "fg": 3596 }, + { "id": "corner", "fg": 3597 }, + { "id": "edge", "fg": 3598 }, + { "id": "end_piece", "fg": 3599 }, + { "id": "t_connection", "fg": 3600 } + ] + }, + { "id": "t_slope_down", "fg": 3601, "rotates": false }, + { "id": "t_slope_up", "fg": 3602, "rotates": false }, + { "id": "t_slot_machine", "fg": 3603, "bg": 3663 }, + { "id": [ "t_stairs_down", "t_wood_stairs_down" ], "fg": 3604, "bg": 3658, "rotates": false }, + { "id": [ "t_stairs_up", "t_wood_stairs_up" ], "fg": 3605, "bg": 3657, "rotates": false }, + { "id": "t_station_disc", "fg": 3606, "bg": 3663, "rotates": false }, + { "id": "t_strconc_floor_halfway", "fg": 3607 }, + { "id": "t_strconc_wall_halfway", "fg": 3608, "bg": 3663 }, + { "id": "t_stump", "fg": 3645, "rotates": false, "bg": 3809 }, + { "id": "t_stump_season_autumn", "fg": 3645, "rotates": false, "bg": 3813 }, + { "id": "t_stump_season_summer", "fg": 3645, "rotates": false, "bg": 3817 }, + { "id": "t_stump_season_winter", "fg": 3646, "rotates": false, "bg": 3734 }, + { "id": "t_support_l", "fg": 3609, "bg": 3663, "rotates": false }, + { "id": "t_support_s", "fg": 3610, "bg": 3663, "rotates": false }, + { "id": "t_switchgear_l", "fg": 3611, "bg": 3663, "rotates": false }, + { "id": "t_switchgear_s", "fg": 3612, "bg": 3663, "rotates": false }, + { "id": "t_tarptent", "fg": 3613, "bg": 3809, "rotates": false }, + { "id": "t_thconc_floor", "fg": 3663, "rotates": false }, + { "id": "t_thconc_floor_olight", "fg": 3704, "rotates": false }, + { "id": "t_trunk", "fg": 3705, "bg": 3809, "rotates": false }, + { "id": "t_trunk_season_autumn", "fg": 3705, "bg": 3813 }, + { "id": "t_trunk_season_summer", "fg": 3705, "bg": 3817 }, + { "id": "t_trunk_season_winter", "fg": 3706, "bg": 3734 }, + { "id": "t_underbrush", "fg": 3614, "bg": 3809, "rotates": false }, + { "id": "t_underbrush_harvested_autumn", "fg": 3615, "bg": 3813, "rotates": false }, + { "id": "t_underbrush_harvested_autumn_season_autumn", "fg": 3615, "bg": 3813, "rotates": false }, + { "id": "t_underbrush_harvested_autumn_season_summer", "fg": 3615, "bg": 3817, "rotates": false }, + { "id": "t_underbrush_harvested_autumn_season_winter", "fg": 3615, "bg": 3734, "rotates": false }, + { "id": "t_underbrush_harvested_spring", "fg": 3615, "bg": 3809, "rotates": false }, + { "id": "t_underbrush_harvested_spring_season_winter", "fg": 3615, "bg": 3734, "rotates": false }, + { "id": "t_underbrush_harvested_summer", "fg": 3615, "bg": 3817, "rotates": false }, + { "id": "t_underbrush_harvested_summer_season_winter", "fg": 3615, "bg": 3734, "rotates": false }, + { "id": "t_underbrush_harvested_winter", "fg": 3616, "bg": 3821, "rotates": false }, + { "id": "t_underbrush_harvested_winter_season_winter", "fg": 3616, "bg": 3734, "rotates": false }, + { "id": "t_underbrush_season_winter", "fg": 3617, "bg": 3734, "rotates": false }, + { "id": "t_utility_light", "fg": 3618, "bg": 3663 }, + { "id": "t_wall_half", "fg": 3619 }, + { "id": "t_wall_half_season_winter", "fg": 3619 }, { "id": "t_wall_log_half", - "fg": 3613, + "fg": 3620, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3613 }, - { "id": "corner", "fg": 3614 }, - { "id": "edge", "fg": 3615 }, - { "id": "end_piece", "fg": 3616 }, - { "id": "t_connection", "fg": 3617 }, - { "id": "unconnected", "fg": 3618 } + { "id": "center", "fg": 3620 }, + { "id": "corner", "fg": 3621 }, + { "id": "edge", "fg": 3622 }, + { "id": "end_piece", "fg": 3623 }, + { "id": "t_connection", "fg": 3624 }, + { "id": "unconnected", "fg": 3625 } ] }, - { "id": "t_wall_wattle", "fg": 3619, "bg": 3802, "rotates": false }, - { "id": "t_wall_wattle_broken", "fg": 3620, "bg": 3802, "rotates": false }, - { "id": "t_wall_wattle_half", "fg": 3621, "bg": 3802, "rotates": false }, + { "id": "t_wall_wattle", "fg": 3626, "bg": 3809, "rotates": false }, + { "id": "t_wall_wattle_broken", "fg": 3627, "bg": 3809, "rotates": false }, + { "id": "t_wall_wattle_half", "fg": 3628, "bg": 3809, "rotates": false }, { "id": [ "t_water_dp", "t_swater_dp" ], - "fg": 3691, + "fg": 3698, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3691, "bg": 3802 }, - { "id": "corner", "fg": 3692, "bg": 3802 }, - { "id": "edge", "fg": 3693, "bg": 3802 }, - { "id": "end_piece", "fg": 3694, "bg": 3802 }, - { "id": "unconnected", "fg": 3695, "bg": 3802 } + { "id": "center", "fg": 3698, "bg": 3809 }, + { "id": "corner", "fg": 3699, "bg": 3809 }, + { "id": "edge", "fg": 3700, "bg": 3809 }, + { "id": "end_piece", "fg": 3701, "bg": 3809 }, + { "id": "unconnected", "fg": 3702, "bg": 3809 } ], - "bg": 3802 + "bg": 3809 }, { "id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ], - "fg": 3691, + "fg": 3698, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3691, "bg": 3806 }, - { "id": "corner", "fg": 3692, "bg": 3806 }, - { "id": "edge", "fg": 3693, "bg": 3806 }, - { "id": "end_piece", "fg": 3694, "bg": 3806 }, - { "id": "unconnected", "fg": 3695, "bg": 3806 } + { "id": "center", "fg": 3698, "bg": 3813 }, + { "id": "corner", "fg": 3699, "bg": 3813 }, + { "id": "edge", "fg": 3700, "bg": 3813 }, + { "id": "end_piece", "fg": 3701, "bg": 3813 }, + { "id": "unconnected", "fg": 3702, "bg": 3813 } ], - "bg": 3806 + "bg": 3813 }, { "id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ], - "fg": 3691, + "fg": 3698, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3691, "bg": 3810 }, - { "id": "corner", "fg": 3692, "bg": 3810 }, - { "id": "edge", "fg": 3693, "bg": 3810 }, - { "id": "end_piece", "fg": 3694, "bg": 3810 }, - { "id": "unconnected", "fg": 3695, "bg": 3810 } + { "id": "center", "fg": 3698, "bg": 3817 }, + { "id": "corner", "fg": 3699, "bg": 3817 }, + { "id": "edge", "fg": 3700, "bg": 3817 }, + { "id": "end_piece", "fg": 3701, "bg": 3817 }, + { "id": "unconnected", "fg": 3702, "bg": 3817 } ], - "bg": 3810 + "bg": 3817 }, { "id": [ "t_water_season_winter_dp", "t_swater_season_winter_dp" ], - "fg": 3691, + "fg": 3698, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3691, "bg": 3727 }, - { "id": "corner", "fg": 3692, "bg": 3727 }, - { "id": "edge", "fg": 3693, "bg": 3727 }, - { "id": "end_piece", "fg": 3694, "bg": 3727 }, - { "id": "unconnected", "fg": 3695, "bg": 3727 } + { "id": "center", "fg": 3698, "bg": 3734 }, + { "id": "corner", "fg": 3699, "bg": 3734 }, + { "id": "edge", "fg": 3700, "bg": 3734 }, + { "id": "end_piece", "fg": 3701, "bg": 3734 }, + { "id": "unconnected", "fg": 3702, "bg": 3734 } ], - "bg": 3727 + "bg": 3734 }, - { "id": "t_water_pump", "fg": 3622, "bg": 3656, "rotates": false }, + { "id": "t_water_pump", "fg": 3629, "bg": 3663, "rotates": false }, { "id": [ "t_water_sh", "t_swater_sh" ], - "fg": 3700, - "bg": 3802, + "fg": 3707, + "bg": 3809, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3701, "bg": 3802 }, - { "id": "edge", "fg": 3702, "bg": 3802 }, - { "id": "end_piece", "fg": 3703, "bg": 3802 }, - { "id": "center", "fg": 3700, "bg": 3802 }, - { "id": "t_connection", "fg": 3700, "bg": 3802 }, - { "id": "unconnected", "fg": 3704, "bg": 3802 } + { "id": "corner", "fg": 3708, "bg": 3809 }, + { "id": "edge", "fg": 3709, "bg": 3809 }, + { "id": "end_piece", "fg": 3710, "bg": 3809 }, + { "id": "center", "fg": 3707, "bg": 3809 }, + { "id": "t_connection", "fg": 3707, "bg": 3809 }, + { "id": "unconnected", "fg": 3711, "bg": 3809 } ] }, { "id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ], - "fg": 3700, - "bg": 3806, + "fg": 3707, + "bg": 3813, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3701, "bg": 3806 }, - { "id": "edge", "fg": 3702, "bg": 3806 }, - { "id": "end_piece", "fg": 3703, "bg": 3806 }, - { "id": "center", "fg": 3700, "bg": 3806 }, - { "id": "t_connection", "fg": 3700, "bg": 3806 }, - { "id": "unconnected", "fg": 3704, "bg": 3806 } + { "id": "corner", "fg": 3708, "bg": 3813 }, + { "id": "edge", "fg": 3709, "bg": 3813 }, + { "id": "end_piece", "fg": 3710, "bg": 3813 }, + { "id": "center", "fg": 3707, "bg": 3813 }, + { "id": "t_connection", "fg": 3707, "bg": 3813 }, + { "id": "unconnected", "fg": 3711, "bg": 3813 } ] }, { "id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ], - "fg": 3700, - "bg": 3810, + "fg": 3707, + "bg": 3817, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3701, "bg": 3810 }, - { "id": "edge", "fg": 3702, "bg": 3810 }, - { "id": "end_piece", "fg": 3703, "bg": 3810 }, - { "id": "center", "fg": 3700, "bg": 3810 }, - { "id": "t_connection", "fg": 3700, "bg": 3810 }, - { "id": "unconnected", "fg": 3704, "bg": 3810 } + { "id": "corner", "fg": 3708, "bg": 3817 }, + { "id": "edge", "fg": 3709, "bg": 3817 }, + { "id": "end_piece", "fg": 3710, "bg": 3817 }, + { "id": "center", "fg": 3707, "bg": 3817 }, + { "id": "t_connection", "fg": 3707, "bg": 3817 }, + { "id": "unconnected", "fg": 3711, "bg": 3817 } ] }, { "id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ], - "fg": 3700, - "bg": 3727, + "fg": 3707, + "bg": 3734, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3701, "bg": 3727 }, - { "id": "edge", "fg": 3702, "bg": 3727 }, - { "id": "end_piece", "fg": 3703, "bg": 3727 }, - { "id": "center", "fg": 3700, "bg": 3727 }, - { "id": "t_connection", "fg": 3700, "bg": 3727 }, - { "id": "unconnected", "fg": 3704, "bg": 3727 } - ] - }, - { "id": "t_window", "fg": 3623, "bg": 3651, "rotates": false }, - { "id": "t_window_alarm", "fg": 3623, "bg": 3651, "rotates": false }, - { "id": "t_window_alarm_taped", "fg": 3624, "bg": 3651, "rotates": false }, - { "id": "t_window_bars", "fg": 3625, "bg": 3651, "rotates": false }, - { "id": "t_window_bars_alarm", "fg": 3626, "bg": 3651, "rotates": false }, - { "id": "t_window_boarded", "fg": 3627, "bg": 3651, "rotates": false }, - { "id": "t_window_boarded_noglass", "fg": 3628, "bg": 3651, "rotates": false }, - { "id": "t_window_domestic", "fg": 3623, "bg": 3651, "rotates": false }, - { "id": "t_window_domestic_taped", "fg": 3624, "bg": 3651, "rotates": false }, - { "id": "t_window_empty", "fg": 3629, "bg": 3651, "rotates": false }, - { "id": "t_window_enhanced", "fg": 3630, "bg": 3651, "rotates": false }, - { "id": "t_window_enhanced_noglass", "fg": 3630 }, - { "id": "t_window_frame", "fg": 3508, "bg": 3651, "rotates": false }, - { "id": "t_window_no_curtains", "fg": 3623, "bg": 3651, "rotates": false }, - { "id": "t_window_no_curtains_open", "fg": 3631, "bg": 3651, "rotates": false }, - { "id": "t_window_no_curtains_taped", "fg": 3624, "bg": 3651, "rotates": false }, - { "id": "t_window_open", "fg": 3631, "bg": 3651, "rotates": false }, - { "id": "t_window_reinforced", "fg": 3632, "bg": 3651, "rotates": false }, - { "id": "t_window_reinforced_noglass", "fg": 3633, "bg": 3651, "rotates": false }, - { "id": "t_window_stained_blue", "fg": 3634, "rotates": false }, - { "id": "t_window_stained_green", "fg": 3635, "rotates": false }, - { "id": "t_window_stained_red", "fg": 3636, "rotates": false }, - { "id": "t_window_taped", "fg": 3624, "bg": 3651, "rotates": false }, - { "id": "t_zebra", "fg": 3705, "rotates": false }, - { "id": "tr_glass_pit", "fg": 3682, "bg": 3802 }, - { "id": "tr_glass_pit_season_autumn", "fg": 3682, "bg": 3806 }, - { "id": "tr_glass_pit_season_summer", "fg": 3682, "bg": 3810 }, - { "id": "tr_glass_pit_season_winter", "fg": 3682, "bg": 3727 }, - { "id": "tr_light_snare", "bg": 4754, "rotates": false }, - { "id": "tr_pit", "fg": 3678, "bg": 3802, "rotates": false }, - { "id": "tr_pit_season_autumn", "fg": 3678, "bg": 3806 }, - { "id": "tr_pit_season_summer", "fg": 3678, "bg": 3810 }, - { "id": "tr_pit_season_winter", "fg": 3678, "bg": 3727 }, - { "id": "tr_spike_pit", "fg": 3685, "bg": 3802, "rotates": false }, - { "id": "tr_spike_pit_season_autumn", "fg": 3685, "bg": 3806 }, - { "id": "tr_spike_pit_season_summer", "fg": 3685, "bg": 3810 }, - { "id": "tr_spike_pit_season_winter", "fg": 3685, "bg": 3727 }, - { "id": "t_floor_resin", "fg": 3706 }, - { "id": "t_resin_hole_c", "fg": 3708, "rotates": false, "bg": 3706 }, - { "id": "t_resin_hole_o", "fg": 3709, "rotates": false, "bg": 3706 }, + { "id": "corner", "fg": 3708, "bg": 3734 }, + { "id": "edge", "fg": 3709, "bg": 3734 }, + { "id": "end_piece", "fg": 3710, "bg": 3734 }, + { "id": "center", "fg": 3707, "bg": 3734 }, + { "id": "t_connection", "fg": 3707, "bg": 3734 }, + { "id": "unconnected", "fg": 3711, "bg": 3734 } + ] + }, + { "id": "t_window", "fg": 3630, "bg": 3658, "rotates": false }, + { "id": "t_window_alarm", "fg": 3630, "bg": 3658, "rotates": false }, + { "id": "t_window_alarm_taped", "fg": 3631, "bg": 3658, "rotates": false }, + { "id": "t_window_bars", "fg": 3632, "bg": 3658, "rotates": false }, + { "id": "t_window_bars_alarm", "fg": 3633, "bg": 3658, "rotates": false }, + { "id": "t_window_boarded", "fg": 3634, "bg": 3658, "rotates": false }, + { "id": "t_window_boarded_noglass", "fg": 3635, "bg": 3658, "rotates": false }, + { "id": "t_window_domestic", "fg": 3630, "bg": 3658, "rotates": false }, + { "id": "t_window_domestic_taped", "fg": 3631, "bg": 3658, "rotates": false }, + { "id": "t_window_empty", "fg": 3636, "bg": 3658, "rotates": false }, + { "id": "t_window_enhanced", "fg": 3637, "bg": 3658, "rotates": false }, + { "id": "t_window_enhanced_noglass", "fg": 3637 }, + { "id": "t_window_frame", "fg": 3515, "bg": 3658, "rotates": false }, + { "id": "t_window_no_curtains", "fg": 3630, "bg": 3658, "rotates": false }, + { "id": "t_window_no_curtains_open", "fg": 3638, "bg": 3658, "rotates": false }, + { "id": "t_window_no_curtains_taped", "fg": 3631, "bg": 3658, "rotates": false }, + { "id": "t_window_open", "fg": 3638, "bg": 3658, "rotates": false }, + { "id": "t_window_reinforced", "fg": 3639, "bg": 3658, "rotates": false }, + { "id": "t_window_reinforced_noglass", "fg": 3640, "bg": 3658, "rotates": false }, + { "id": "t_window_stained_blue", "fg": 3641, "rotates": false }, + { "id": "t_window_stained_green", "fg": 3642, "rotates": false }, + { "id": "t_window_stained_red", "fg": 3643, "rotates": false }, + { "id": "t_window_taped", "fg": 3631, "bg": 3658, "rotates": false }, + { "id": "t_zebra", "fg": 3712, "rotates": false }, + { "id": "tr_glass_pit", "fg": 3689, "bg": 3809 }, + { "id": "tr_glass_pit_season_autumn", "fg": 3689, "bg": 3813 }, + { "id": "tr_glass_pit_season_summer", "fg": 3689, "bg": 3817 }, + { "id": "tr_glass_pit_season_winter", "fg": 3689, "bg": 3734 }, + { "id": "tr_light_snare", "bg": 4761, "rotates": false }, + { "id": "tr_pit", "fg": 3685, "bg": 3809, "rotates": false }, + { "id": "tr_pit_season_autumn", "fg": 3685, "bg": 3813 }, + { "id": "tr_pit_season_summer", "fg": 3685, "bg": 3817 }, + { "id": "tr_pit_season_winter", "fg": 3685, "bg": 3734 }, + { "id": "tr_spike_pit", "fg": 3692, "bg": 3809, "rotates": false }, + { "id": "tr_spike_pit_season_autumn", "fg": 3692, "bg": 3813 }, + { "id": "tr_spike_pit_season_summer", "fg": 3692, "bg": 3817 }, + { "id": "tr_spike_pit_season_winter", "fg": 3692, "bg": 3734 }, + { "id": "t_floor_resin", "fg": 3713 }, + { "id": "t_resin_hole_c", "fg": 3715, "rotates": false, "bg": 3713 }, + { "id": "t_resin_hole_o", "fg": 3716, "rotates": false, "bg": 3713 }, { "id": "t_wall_resin", - "fg": 3725, + "fg": 3732, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3710, "bg": 3706 }, - { "id": "corner", "fg": [ 3712, 3714, 3713, 3711 ], "bg": 3706 }, - { "id": "t_connection", "fg": [ 3722, 3724, 3723, 3721 ], "bg": 3706 }, - { "id": "edge", "fg": [ 3716, 3715 ], "bg": 3706 }, - { "id": "end_piece", "fg": [ 3718, 3720, 3719, 3717 ], "bg": 3706 }, - { "id": "unconnected", "fg": [ 3725, 3725 ], "bg": 3706 } + { "id": "center", "fg": 3717, "bg": 3713 }, + { "id": "corner", "fg": [ 3719, 3721, 3720, 3718 ], "bg": 3713 }, + { "id": "t_connection", "fg": [ 3729, 3731, 3730, 3728 ], "bg": 3713 }, + { "id": "edge", "fg": [ 3723, 3722 ], "bg": 3713 }, + { "id": "end_piece", "fg": [ 3725, 3727, 3726, 3724 ], "bg": 3713 }, + { "id": "unconnected", "fg": [ 3732, 3732 ], "bg": 3713 } ] }, { "id": [ "t_brick_wall", "t_secretdoor_brick_wall_c", "t_sliding_brick_wall_c" ], - "fg": 3761, + "fg": 3768, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3746 }, - { "id": "corner", "fg": [ 3748, 3750, 3749, 3747 ] }, - { "id": "t_connection", "fg": [ 3758, 3760, 3759, 3757 ] }, - { "id": "edge", "fg": [ 3752, 3751 ] }, - { "id": "end_piece", "fg": [ 3754, 3756, 3755, 3753 ] }, - { "id": "unconnected", "fg": [ 3761, 3761 ] } + { "id": "center", "fg": 3753 }, + { "id": "corner", "fg": [ 3755, 3757, 3756, 3754 ] }, + { "id": "t_connection", "fg": [ 3765, 3767, 3766, 3764 ] }, + { "id": "edge", "fg": [ 3759, 3758 ] }, + { "id": "end_piece", "fg": [ 3761, 3763, 3762, 3760 ] }, + { "id": "unconnected", "fg": [ 3768, 3768 ] } ] }, { "id": "t_concrete_railing", - "fg": 3769, + "fg": 3776, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3769, "bg": 3656 }, - { "id": "corner", "fg": [ 3763, 3765, 3764, 3762 ], "bg": 3656 }, - { "id": "t_connection", "fg": [ 3769, 3766, 3769, 3766 ], "bg": 3656 }, - { "id": "edge", "fg": [ 3766, 3769 ], "bg": 3656 }, - { "id": "end_piece", "fg": [ 3767, 3769, 3768, 3769 ], "bg": 3656 }, - { "id": "unconnected", "fg": [ 3769, 3769 ], "bg": 3656 } + { "id": "center", "fg": 3776, "bg": 3663 }, + { "id": "corner", "fg": [ 3770, 3772, 3771, 3769 ], "bg": 3663 }, + { "id": "t_connection", "fg": [ 3776, 3773, 3776, 3773 ], "bg": 3663 }, + { "id": "edge", "fg": [ 3773, 3776 ], "bg": 3663 }, + { "id": "end_piece", "fg": [ 3774, 3776, 3775, 3776 ], "bg": 3663 }, + { "id": "unconnected", "fg": [ 3776, 3776 ], "bg": 3663 } ] }, { "id": [ "t_concrete_wall", "t_secretdoor_concrete_wall_c", "t_sliding_concrete_wall_c" ], - "fg": 3785, + "fg": 3792, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3770 }, - { "id": "corner", "fg": [ 3772, 3774, 3773, 3771 ] }, - { "id": "t_connection", "fg": [ 3782, 3784, 3783, 3781 ] }, - { "id": "edge", "fg": [ 3776, 3775 ] }, - { "id": "end_piece", "fg": [ 3778, 3780, 3779, 3777 ] }, - { "id": "unconnected", "fg": [ 3785, 3785 ] } + { "id": "center", "fg": 3777 }, + { "id": "corner", "fg": [ 3779, 3781, 3780, 3778 ] }, + { "id": "t_connection", "fg": [ 3789, 3791, 3790, 3788 ] }, + { "id": "edge", "fg": [ 3783, 3782 ] }, + { "id": "end_piece", "fg": [ 3785, 3787, 3786, 3784 ] }, + { "id": "unconnected", "fg": [ 3792, 3792 ] } ] }, { "id": "t_concrete_wall_flesh", - "fg": 3801, + "fg": 3808, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3786 }, - { "id": "corner", "fg": [ 3788, 3790, 3789, 3787 ] }, - { "id": "t_connection", "fg": [ 3798, 3800, 3799, 3797 ] }, - { "id": "edge", "fg": [ 3792, 3791 ] }, - { "id": "end_piece", "fg": [ 3794, 3796, 3795, 3793 ] }, - { "id": "unconnected", "fg": [ 3801, 3801 ] } + { "id": "center", "fg": 3793 }, + { "id": "corner", "fg": [ 3795, 3797, 3796, 3794 ] }, + { "id": "t_connection", "fg": [ 3805, 3807, 3806, 3804 ] }, + { "id": "edge", "fg": [ 3799, 3798 ] }, + { "id": "end_piece", "fg": [ 3801, 3803, 3802, 3800 ] }, + { "id": "unconnected", "fg": [ 3808, 3808 ] } ] }, { "id": "t_dirt", "bg": [ - { "weight": 100, "sprite": 3802 }, - { "weight": 100, "sprite": 3803 }, - { "weight": 100, "sprite": 3804 }, - { "weight": 100, "sprite": 3805 } + { "weight": 100, "sprite": 3809 }, + { "weight": 100, "sprite": 3810 }, + { "weight": 100, "sprite": 3811 }, + { "weight": 100, "sprite": 3812 } ] }, { "id": "t_dirt_season_autumn", "bg": [ - { "weight": 100, "sprite": 3806 }, - { "weight": 100, "sprite": 3807 }, - { "weight": 100, "sprite": 3808 }, - { "weight": 100, "sprite": 3809 } + { "weight": 100, "sprite": 3813 }, + { "weight": 100, "sprite": 3814 }, + { "weight": 100, "sprite": 3815 }, + { "weight": 100, "sprite": 3816 } ] }, { "id": "t_dirt_season_summer", "bg": [ - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 }, - { "weight": 100, "sprite": 3813 } + { "weight": 100, "sprite": 3817 }, + { "weight": 100, "sprite": 3818 }, + { "weight": 100, "sprite": 3819 }, + { "weight": 100, "sprite": 3820 } ] }, { "id": "t_dirt_season_winter", "bg": [ - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 }, - { "weight": 100, "sprite": 3817 } + { "weight": 100, "sprite": 3821 }, + { "weight": 100, "sprite": 3822 }, + { "weight": 100, "sprite": 3823 }, + { "weight": 100, "sprite": 3824 } ] }, { "id": "t_dirtfloor", - "fg": [ { "weight": 1, "sprite": 3818 }, { "weight": 1, "sprite": 3819 }, { "weight": 1, "sprite": 3820 } ], + "fg": [ { "weight": 1, "sprite": 3825 }, { "weight": 1, "sprite": 3826 }, { "weight": 1, "sprite": 3827 } ], "rotates": false }, { "id": "t_dock", - "fg": 3836, + "fg": 3843, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3821 }, - { "id": "corner", "fg": [ 3823, 3825, 3824, 3822 ] }, - { "id": "t_connection", "fg": [ 3833, 3835, 3834, 3832 ] }, - { "id": "edge", "fg": [ 3827, 3826 ] }, - { "id": "end_piece", "fg": [ 3829, 3831, 3830, 3828 ] }, - { "id": "unconnected", "fg": [ 3836, 3836 ] } + { "id": "center", "fg": 3828 }, + { "id": "corner", "fg": [ 3830, 3832, 3831, 3829 ] }, + { "id": "t_connection", "fg": [ 3840, 3842, 3841, 3839 ] }, + { "id": "edge", "fg": [ 3834, 3833 ] }, + { "id": "end_piece", "fg": [ 3836, 3838, 3837, 3835 ] }, + { "id": "unconnected", "fg": [ 3843, 3843 ] } ] }, { "id": "t_dock_deep", - "fg": 3852, + "fg": 3859, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3837 }, - { "id": "corner", "fg": [ 3839, 3841, 3840, 3838 ] }, - { "id": "t_connection", "fg": [ 3849, 3851, 3850, 3848 ] }, - { "id": "edge", "fg": [ 3843, 3842 ] }, - { "id": "end_piece", "fg": [ 3845, 3847, 3846, 3844 ] }, - { "id": "unconnected", "fg": [ 3852, 3852 ] } + { "id": "center", "fg": 3844 }, + { "id": "corner", "fg": [ 3846, 3848, 3847, 3845 ] }, + { "id": "t_connection", "fg": [ 3856, 3858, 3857, 3855 ] }, + { "id": "edge", "fg": [ 3850, 3849 ] }, + { "id": "end_piece", "fg": [ 3852, 3854, 3853, 3851 ] }, + { "id": "unconnected", "fg": [ 3859, 3859 ] } ] }, { "id": "t_fence_metal", - "fg": 3862, + "fg": 3869, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3862, "bg": 3651 }, - { "id": "corner", "fg": [ 3854, 3856, 3855, 3853 ], "bg": 3651 }, - { "id": "t_connection", "fg": [ 3862, 3861, 3862, 3860 ], "bg": 3651 }, - { "id": "edge", "fg": [ 3857, 3862 ], "bg": 3651 }, - { "id": "end_piece", "fg": [ 3858, 3862, 3859, 3862 ], "bg": 3651 }, - { "id": "unconnected", "fg": [ 3862, 3862 ], "bg": 3651 } + { "id": "center", "fg": 3869, "bg": 3658 }, + { "id": "corner", "fg": [ 3861, 3863, 3862, 3860 ], "bg": 3658 }, + { "id": "t_connection", "fg": [ 3869, 3868, 3869, 3867 ], "bg": 3658 }, + { "id": "edge", "fg": [ 3864, 3869 ], "bg": 3658 }, + { "id": "end_piece", "fg": [ 3865, 3869, 3866, 3869 ], "bg": 3658 }, + { "id": "unconnected", "fg": [ 3869, 3869 ], "bg": 3658 } ] }, { "id": "t_fence_rope", - "fg": 3873, + "fg": 3880, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3873, + "fg": 3880, "bg": [ - { "weight": 100, "sprite": 3802 }, - { "weight": 100, "sprite": 3803 }, - { "weight": 100, "sprite": 3804 }, - { "weight": 100, "sprite": 3805 } + { "weight": 100, "sprite": 3809 }, + { "weight": 100, "sprite": 3810 }, + { "weight": 100, "sprite": 3811 }, + { "weight": 100, "sprite": 3812 } ] }, { "id": "corner", - "fg": [ 3864, 3866, 3865, 3863 ], + "fg": [ 3871, 3873, 3872, 3870 ], "bg": [ - { "weight": 100, "sprite": 3802 }, - { "weight": 100, "sprite": 3803 }, - { "weight": 100, "sprite": 3804 }, - { "weight": 100, "sprite": 3805 } + { "weight": 100, "sprite": 3809 }, + { "weight": 100, "sprite": 3810 }, + { "weight": 100, "sprite": 3811 }, + { "weight": 100, "sprite": 3812 } ] }, { "id": "t_connection", - "fg": [ 3867, 3868, 3867, 3868 ], + "fg": [ 3874, 3875, 3874, 3875 ], "bg": [ - { "weight": 100, "sprite": 3802 }, - { "weight": 100, "sprite": 3803 }, - { "weight": 100, "sprite": 3804 }, - { "weight": 100, "sprite": 3805 } + { "weight": 100, "sprite": 3809 }, + { "weight": 100, "sprite": 3810 }, + { "weight": 100, "sprite": 3811 }, + { "weight": 100, "sprite": 3812 } ] }, { "id": "edge", - "fg": [ 3868, 3867 ], + "fg": [ 3875, 3874 ], "bg": [ - { "weight": 100, "sprite": 3802 }, - { "weight": 100, "sprite": 3803 }, - { "weight": 100, "sprite": 3804 }, - { "weight": 100, "sprite": 3805 } + { "weight": 100, "sprite": 3809 }, + { "weight": 100, "sprite": 3810 }, + { "weight": 100, "sprite": 3811 }, + { "weight": 100, "sprite": 3812 } ] }, { "id": "end_piece", - "fg": [ 3870, 3872, 3871, 3869 ], + "fg": [ 3877, 3879, 3878, 3876 ], "bg": [ - { "weight": 100, "sprite": 3802 }, - { "weight": 100, "sprite": 3803 }, - { "weight": 100, "sprite": 3804 }, - { "weight": 100, "sprite": 3805 } + { "weight": 100, "sprite": 3809 }, + { "weight": 100, "sprite": 3810 }, + { "weight": 100, "sprite": 3811 }, + { "weight": 100, "sprite": 3812 } ] }, { "id": "unconnected", - "fg": [ 3873, 3873 ], + "fg": [ 3880, 3880 ], "bg": [ - { "weight": 100, "sprite": 3802 }, - { "weight": 100, "sprite": 3803 }, - { "weight": 100, "sprite": 3804 }, - { "weight": 100, "sprite": 3805 } + { "weight": 100, "sprite": 3809 }, + { "weight": 100, "sprite": 3810 }, + { "weight": 100, "sprite": 3811 }, + { "weight": 100, "sprite": 3812 } ] } ] }, { "id": "t_fence_rope_season_summer", - "fg": 3873, + "fg": 3880, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3873, + "fg": 3880, "bg": [ - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 }, - { "weight": 100, "sprite": 3813 } + { "weight": 100, "sprite": 3817 }, + { "weight": 100, "sprite": 3818 }, + { "weight": 100, "sprite": 3819 }, + { "weight": 100, "sprite": 3820 } ] }, { "id": "corner", - "fg": [ 3864, 3866, 3865, 3863 ], + "fg": [ 3871, 3873, 3872, 3870 ], "bg": [ - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 }, - { "weight": 100, "sprite": 3813 } + { "weight": 100, "sprite": 3817 }, + { "weight": 100, "sprite": 3818 }, + { "weight": 100, "sprite": 3819 }, + { "weight": 100, "sprite": 3820 } ] }, { "id": "t_connection", - "fg": [ 3867, 3868, 3867, 3868 ], + "fg": [ 3874, 3875, 3874, 3875 ], "bg": [ - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 }, - { "weight": 100, "sprite": 3813 } + { "weight": 100, "sprite": 3817 }, + { "weight": 100, "sprite": 3818 }, + { "weight": 100, "sprite": 3819 }, + { "weight": 100, "sprite": 3820 } ] }, { "id": "edge", - "fg": [ 3868, 3867 ], + "fg": [ 3875, 3874 ], "bg": [ - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 }, - { "weight": 100, "sprite": 3813 } + { "weight": 100, "sprite": 3817 }, + { "weight": 100, "sprite": 3818 }, + { "weight": 100, "sprite": 3819 }, + { "weight": 100, "sprite": 3820 } ] }, { "id": "end_piece", - "fg": [ 3870, 3872, 3871, 3869 ], + "fg": [ 3877, 3879, 3878, 3876 ], "bg": [ - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 }, - { "weight": 100, "sprite": 3813 } + { "weight": 100, "sprite": 3817 }, + { "weight": 100, "sprite": 3818 }, + { "weight": 100, "sprite": 3819 }, + { "weight": 100, "sprite": 3820 } ] }, { "id": "unconnected", - "fg": [ 3873, 3873 ], + "fg": [ 3880, 3880 ], "bg": [ - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 }, - { "weight": 100, "sprite": 3813 } + { "weight": 100, "sprite": 3817 }, + { "weight": 100, "sprite": 3818 }, + { "weight": 100, "sprite": 3819 }, + { "weight": 100, "sprite": 3820 } ] } ] }, { "id": "t_fence_rope_season_autumn", - "fg": 3873, + "fg": 3880, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3873, + "fg": 3880, "bg": [ - { "weight": 100, "sprite": 3806 }, - { "weight": 100, "sprite": 3807 }, - { "weight": 100, "sprite": 3808 }, - { "weight": 100, "sprite": 3809 } + { "weight": 100, "sprite": 3813 }, + { "weight": 100, "sprite": 3814 }, + { "weight": 100, "sprite": 3815 }, + { "weight": 100, "sprite": 3816 } ] }, { "id": "corner", - "fg": [ 3864, 3866, 3865, 3863 ], + "fg": [ 3871, 3873, 3872, 3870 ], "bg": [ - { "weight": 100, "sprite": 3806 }, - { "weight": 100, "sprite": 3807 }, - { "weight": 100, "sprite": 3808 }, - { "weight": 100, "sprite": 3809 } + { "weight": 100, "sprite": 3813 }, + { "weight": 100, "sprite": 3814 }, + { "weight": 100, "sprite": 3815 }, + { "weight": 100, "sprite": 3816 } ] }, { "id": "t_connection", - "fg": [ 3867, 3868, 3867, 3868 ], + "fg": [ 3874, 3875, 3874, 3875 ], "bg": [ - { "weight": 100, "sprite": 3806 }, - { "weight": 100, "sprite": 3807 }, - { "weight": 100, "sprite": 3808 }, - { "weight": 100, "sprite": 3809 } + { "weight": 100, "sprite": 3813 }, + { "weight": 100, "sprite": 3814 }, + { "weight": 100, "sprite": 3815 }, + { "weight": 100, "sprite": 3816 } ] }, { "id": "edge", - "fg": [ 3868, 3867 ], + "fg": [ 3875, 3874 ], "bg": [ - { "weight": 100, "sprite": 3806 }, - { "weight": 100, "sprite": 3807 }, - { "weight": 100, "sprite": 3808 }, - { "weight": 100, "sprite": 3809 } + { "weight": 100, "sprite": 3813 }, + { "weight": 100, "sprite": 3814 }, + { "weight": 100, "sprite": 3815 }, + { "weight": 100, "sprite": 3816 } ] }, { "id": "end_piece", - "fg": [ 3870, 3872, 3871, 3869 ], + "fg": [ 3877, 3879, 3878, 3876 ], "bg": [ - { "weight": 100, "sprite": 3806 }, - { "weight": 100, "sprite": 3807 }, - { "weight": 100, "sprite": 3808 }, - { "weight": 100, "sprite": 3809 } + { "weight": 100, "sprite": 3813 }, + { "weight": 100, "sprite": 3814 }, + { "weight": 100, "sprite": 3815 }, + { "weight": 100, "sprite": 3816 } ] }, { "id": "unconnected", - "fg": [ 3873, 3873 ], + "fg": [ 3880, 3880 ], "bg": [ - { "weight": 100, "sprite": 3806 }, - { "weight": 100, "sprite": 3807 }, - { "weight": 100, "sprite": 3808 }, - { "weight": 100, "sprite": 3809 } + { "weight": 100, "sprite": 3813 }, + { "weight": 100, "sprite": 3814 }, + { "weight": 100, "sprite": 3815 }, + { "weight": 100, "sprite": 3816 } ] } ] }, { "id": "t_fence_rope_season_winter", - "fg": 3873, + "fg": 3880, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3873, + "fg": 3880, "bg": [ - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 }, - { "weight": 100, "sprite": 3817 } + { "weight": 100, "sprite": 3821 }, + { "weight": 100, "sprite": 3822 }, + { "weight": 100, "sprite": 3823 }, + { "weight": 100, "sprite": 3824 } ] }, { "id": "corner", - "fg": [ 3864, 3866, 3865, 3863 ], + "fg": [ 3871, 3873, 3872, 3870 ], "bg": [ - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 }, - { "weight": 100, "sprite": 3817 } + { "weight": 100, "sprite": 3821 }, + { "weight": 100, "sprite": 3822 }, + { "weight": 100, "sprite": 3823 }, + { "weight": 100, "sprite": 3824 } ] }, { "id": "t_connection", - "fg": [ 3867, 3868, 3867, 3868 ], + "fg": [ 3874, 3875, 3874, 3875 ], "bg": [ - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 }, - { "weight": 100, "sprite": 3817 } + { "weight": 100, "sprite": 3821 }, + { "weight": 100, "sprite": 3822 }, + { "weight": 100, "sprite": 3823 }, + { "weight": 100, "sprite": 3824 } ] }, { "id": "edge", - "fg": [ 3868, 3867 ], + "fg": [ 3875, 3874 ], "bg": [ - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 }, - { "weight": 100, "sprite": 3817 } + { "weight": 100, "sprite": 3821 }, + { "weight": 100, "sprite": 3822 }, + { "weight": 100, "sprite": 3823 }, + { "weight": 100, "sprite": 3824 } ] }, { "id": "end_piece", - "fg": [ 3870, 3872, 3871, 3869 ], + "fg": [ 3877, 3879, 3878, 3876 ], "bg": [ - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 }, - { "weight": 100, "sprite": 3817 } + { "weight": 100, "sprite": 3821 }, + { "weight": 100, "sprite": 3822 }, + { "weight": 100, "sprite": 3823 }, + { "weight": 100, "sprite": 3824 } ] }, { "id": "unconnected", - "fg": [ 3873, 3873 ], + "fg": [ 3880, 3880 ], "bg": [ - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 }, - { "weight": 100, "sprite": 3817 } + { "weight": 100, "sprite": 3821 }, + { "weight": 100, "sprite": 3822 }, + { "weight": 100, "sprite": 3823 }, + { "weight": 100, "sprite": 3824 } ] } ] }, { "id": "t_glass_railing", - "fg": 3888, + "fg": 3895, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": [ 3875, 3877, 3876, 3874 ], "bg": 3650 }, - { "id": "t_connection", "fg": [ 3885, 3887, 3886, 3884 ], "bg": 3650 }, - { "id": "edge", "fg": [ 3879, 3878 ], "bg": 3650 }, - { "id": "end_piece", "fg": [ 3881, 3883, 3882, 3880 ], "bg": 3650 }, - { "id": "unconnected", "fg": [ 3888, 3888 ], "bg": 3650 } + { "id": "corner", "fg": [ 3882, 3884, 3883, 3881 ], "bg": 3657 }, + { "id": "t_connection", "fg": [ 3892, 3894, 3893, 3891 ], "bg": 3657 }, + { "id": "edge", "fg": [ 3886, 3885 ], "bg": 3657 }, + { "id": "end_piece", "fg": [ 3888, 3890, 3889, 3887 ], "bg": 3657 }, + { "id": "unconnected", "fg": [ 3895, 3895 ], "bg": 3657 } ] }, { "id": "t_grass", "multitile": true, - "fg": 3907, - "bg": 3802, + "fg": 3914, + "bg": 3809, "additional_tiles": [ { "id": "center", - "bg": 3802, + "bg": 3809, "fg": [ - { "weight": 1, "sprite": 3889 }, - { "weight": 1, "sprite": 3890 }, - { "weight": 1, "sprite": 3891 }, - { "weight": 1, "sprite": 3892 } + { "weight": 1, "sprite": 3896 }, + { "weight": 1, "sprite": 3897 }, + { "weight": 1, "sprite": 3898 }, + { "weight": 1, "sprite": 3899 } ] }, - { "id": "corner", "bg": 3802, "fg": [ 3894, 3896, 3895, 3893 ] }, - { "id": "t_connection", "bg": 3802, "fg": [ 3904, 3906, 3905, 3903 ] }, - { "id": "edge", "bg": 3802, "fg": [ 3898, 3897 ] }, - { "id": "end_piece", "bg": 3802, "fg": [ 3900, 3902, 3901, 3899 ] }, - { "bg": 3802, "id": "unconnected", "fg": 3907 } + { "id": "corner", "bg": 3809, "fg": [ 3901, 3903, 3902, 3900 ] }, + { "id": "t_connection", "bg": 3809, "fg": [ 3911, 3913, 3912, 3910 ] }, + { "id": "edge", "bg": 3809, "fg": [ 3905, 3904 ] }, + { "id": "end_piece", "bg": 3809, "fg": [ 3907, 3909, 3908, 3906 ] }, + { "bg": 3809, "id": "unconnected", "fg": 3914 } ] }, { "id": "t_grass_season_summer", "multitile": true, - "fg": 3945, - "bg": 3810, + "fg": 3952, + "bg": 3817, "additional_tiles": [ { "id": "center", - "bg": 3810, + "bg": 3817, "fg": [ - { "weight": 1, "sprite": 3927 }, - { "weight": 1, "sprite": 3928 }, - { "weight": 1, "sprite": 3929 }, - { "weight": 1, "sprite": 3930 } + { "weight": 1, "sprite": 3934 }, + { "weight": 1, "sprite": 3935 }, + { "weight": 1, "sprite": 3936 }, + { "weight": 1, "sprite": 3937 } ] }, - { "id": "corner", "bg": 3810, "fg": [ 3932, 3934, 3933, 3931 ] }, - { "id": "t_connection", "bg": 3810, "fg": [ 3942, 3944, 3943, 3941 ] }, - { "id": "edge", "bg": 3810, "fg": [ 3936, 3935 ] }, - { "id": "end_piece", "bg": 3810, "fg": [ 3938, 3940, 3939, 3937 ] }, - { "bg": 3810, "id": "unconnected", "fg": 3945 } + { "id": "corner", "bg": 3817, "fg": [ 3939, 3941, 3940, 3938 ] }, + { "id": "t_connection", "bg": 3817, "fg": [ 3949, 3951, 3950, 3948 ] }, + { "id": "edge", "bg": 3817, "fg": [ 3943, 3942 ] }, + { "id": "end_piece", "bg": 3817, "fg": [ 3945, 3947, 3946, 3944 ] }, + { "bg": 3817, "id": "unconnected", "fg": 3952 } ] }, { "id": "t_grass_season_autumn", "multitile": true, - "fg": 3926, - "bg": 3806, + "fg": 3933, + "bg": 3813, "additional_tiles": [ { "id": "center", - "bg": 3806, + "bg": 3813, "fg": [ - { "weight": 1, "sprite": 3908 }, - { "weight": 1, "sprite": 3909 }, - { "weight": 1, "sprite": 3910 }, - { "weight": 1, "sprite": 3911 } + { "weight": 1, "sprite": 3915 }, + { "weight": 1, "sprite": 3916 }, + { "weight": 1, "sprite": 3917 }, + { "weight": 1, "sprite": 3918 } ] }, - { "id": "corner", "bg": 3806, "fg": [ 3913, 3915, 3914, 3912 ] }, - { "id": "t_connection", "bg": 3806, "fg": [ 3923, 3925, 3924, 3922 ] }, - { "id": "edge", "bg": 3806, "fg": [ 3917, 3916 ] }, - { "id": "end_piece", "bg": 3806, "fg": [ 3919, 3921, 3920, 3918 ] }, - { "bg": 3806, "id": "unconnected", "fg": 3926 } + { "id": "corner", "bg": 3813, "fg": [ 3920, 3922, 3921, 3919 ] }, + { "id": "t_connection", "bg": 3813, "fg": [ 3930, 3932, 3931, 3929 ] }, + { "id": "edge", "bg": 3813, "fg": [ 3924, 3923 ] }, + { "id": "end_piece", "bg": 3813, "fg": [ 3926, 3928, 3927, 3925 ] }, + { "bg": 3813, "id": "unconnected", "fg": 3933 } ] }, { "id": "t_grass_season_winter", "multitile": true, - "fg": 3745, - "bg": 3814, + "fg": 3752, + "bg": 3821, "additional_tiles": [ { "id": "center", - "bg": 3814, + "bg": 3821, "fg": [ - { "weight": 1, "sprite": 3727 }, - { "weight": 1, "sprite": 3728 }, - { "weight": 1, "sprite": 3729 }, - { "weight": 1, "sprite": 3730 } + { "weight": 1, "sprite": 3734 }, + { "weight": 1, "sprite": 3735 }, + { "weight": 1, "sprite": 3736 }, + { "weight": 1, "sprite": 3737 } ] }, - { "id": "corner", "bg": 3814, "fg": [ 3732, 3734, 3733, 3731 ] }, - { "id": "t_connection", "bg": 3814, "fg": [ 3742, 3744, 3743, 3741 ] }, - { "id": "edge", "bg": 3814, "fg": [ 3736, 3735 ] }, - { "id": "end_piece", "bg": 3814, "fg": [ 3738, 3740, 3739, 3737 ] }, - { "bg": 3814, "id": "unconnected", "fg": 3745 } + { "id": "corner", "bg": 3821, "fg": [ 3739, 3741, 3740, 3738 ] }, + { "id": "t_connection", "bg": 3821, "fg": [ 3749, 3751, 3750, 3748 ] }, + { "id": "edge", "bg": 3821, "fg": [ 3743, 3742 ] }, + { "id": "end_piece", "bg": 3821, "fg": [ 3745, 3747, 3746, 3744 ] }, + { "bg": 3821, "id": "unconnected", "fg": 3752 } ] }, { "id": "t_grass_dead", "multitile": true, - "fg": 3961, - "bg": 3802, + "fg": 3968, + "bg": 3809, "additional_tiles": [ - { "id": "center", "bg": 3802, "fg": 3946 }, - { "id": "corner", "bg": 3802, "fg": [ 3948, 3950, 3949, 3947 ] }, - { "id": "t_connection", "bg": 3802, "fg": [ 3958, 3960, 3959, 3957 ] }, - { "id": "edge", "bg": 3802, "fg": [ 3952, 3951 ] }, - { "id": "end_piece", "bg": 3802, "fg": [ 3954, 3956, 3955, 3953 ] }, - { "bg": 3802, "id": "unconnected", "fg": 3961 } + { "id": "center", "bg": 3809, "fg": 3953 }, + { "id": "corner", "bg": 3809, "fg": [ 3955, 3957, 3956, 3954 ] }, + { "id": "t_connection", "bg": 3809, "fg": [ 3965, 3967, 3966, 3964 ] }, + { "id": "edge", "bg": 3809, "fg": [ 3959, 3958 ] }, + { "id": "end_piece", "bg": 3809, "fg": [ 3961, 3963, 3962, 3960 ] }, + { "bg": 3809, "id": "unconnected", "fg": 3968 } ] }, { "id": "t_grass_dead_season_summer", "multitile": true, - "fg": 3993, - "bg": 3810, + "fg": 4000, + "bg": 3817, "additional_tiles": [ - { "id": "center", "bg": 3810, "fg": 3978 }, - { "id": "corner", "bg": 3810, "fg": [ 3980, 3982, 3981, 3979 ] }, - { "id": "t_connection", "bg": 3810, "fg": [ 3990, 3992, 3991, 3989 ] }, - { "id": "edge", "bg": 3810, "fg": [ 3984, 3983 ] }, - { "id": "end_piece", "bg": 3810, "fg": [ 3986, 3988, 3987, 3985 ] }, - { "bg": 3810, "id": "unconnected", "fg": 3993 } + { "id": "center", "bg": 3817, "fg": 3985 }, + { "id": "corner", "bg": 3817, "fg": [ 3987, 3989, 3988, 3986 ] }, + { "id": "t_connection", "bg": 3817, "fg": [ 3997, 3999, 3998, 3996 ] }, + { "id": "edge", "bg": 3817, "fg": [ 3991, 3990 ] }, + { "id": "end_piece", "bg": 3817, "fg": [ 3993, 3995, 3994, 3992 ] }, + { "bg": 3817, "id": "unconnected", "fg": 4000 } ] }, { "id": "t_grass_dead_season_autumn", "multitile": true, - "fg": 3977, - "bg": 3806, + "fg": 3984, + "bg": 3813, "additional_tiles": [ - { "id": "center", "bg": 3806, "fg": 3962 }, - { "id": "corner", "bg": 3806, "fg": [ 3964, 3966, 3965, 3963 ] }, - { "id": "t_connection", "bg": 3806, "fg": [ 3974, 3976, 3975, 3973 ] }, - { "id": "edge", "bg": 3806, "fg": [ 3968, 3967 ] }, - { "id": "end_piece", "bg": 3806, "fg": [ 3970, 3972, 3971, 3969 ] }, - { "bg": 3806, "id": "unconnected", "fg": 3977 } + { "id": "center", "bg": 3813, "fg": 3969 }, + { "id": "corner", "bg": 3813, "fg": [ 3971, 3973, 3972, 3970 ] }, + { "id": "t_connection", "bg": 3813, "fg": [ 3981, 3983, 3982, 3980 ] }, + { "id": "edge", "bg": 3813, "fg": [ 3975, 3974 ] }, + { "id": "end_piece", "bg": 3813, "fg": [ 3977, 3979, 3978, 3976 ] }, + { "bg": 3813, "id": "unconnected", "fg": 3984 } ] }, { "id": "t_grass_dead_season_winter", "multitile": true, - "fg": 3745, - "bg": 3814, + "fg": 3752, + "bg": 3821, "additional_tiles": [ { "id": "center", - "bg": 3814, + "bg": 3821, "fg": [ - { "weight": 1, "sprite": 3727 }, - { "weight": 1, "sprite": 3728 }, - { "weight": 1, "sprite": 3729 }, - { "weight": 1, "sprite": 3730 } + { "weight": 1, "sprite": 3734 }, + { "weight": 1, "sprite": 3735 }, + { "weight": 1, "sprite": 3736 }, + { "weight": 1, "sprite": 3737 } ] }, - { "id": "corner", "bg": 3814, "fg": [ 3732, 3734, 3733, 3731 ] }, - { "id": "t_connection", "bg": 3814, "fg": [ 3742, 3744, 3743, 3741 ] }, - { "id": "edge", "bg": 3814, "fg": [ 3736, 3735 ] }, - { "id": "end_piece", "bg": 3814, "fg": [ 3738, 3740, 3739, 3737 ] }, - { "bg": 3814, "id": "unconnected", "fg": 3745 } + { "id": "corner", "bg": 3821, "fg": [ 3739, 3741, 3740, 3738 ] }, + { "id": "t_connection", "bg": 3821, "fg": [ 3749, 3751, 3750, 3748 ] }, + { "id": "edge", "bg": 3821, "fg": [ 3743, 3742 ] }, + { "id": "end_piece", "bg": 3821, "fg": [ 3745, 3747, 3746, 3744 ] }, + { "bg": 3821, "id": "unconnected", "fg": 3752 } ] }, { "id": "f_grass_long", "multitile": true, - "fg": 4009, + "fg": 4016, "additional_tiles": [ - { "id": "center", "fg": 3994 }, - { "id": "corner", "fg": [ 3996, 3998, 3997, 3995 ] }, - { "id": "t_connection", "fg": [ 4006, 4008, 4007, 4005 ] }, - { "id": "edge", "fg": [ 4000, 3999 ] }, - { "id": "end_piece", "fg": [ 4002, 4004, 4003, 4001 ] }, - { "id": "unconnected", "fg": 4009 } + { "id": "center", "fg": 4001 }, + { "id": "corner", "fg": [ 4003, 4005, 4004, 4002 ] }, + { "id": "t_connection", "fg": [ 4013, 4015, 4014, 4012 ] }, + { "id": "edge", "fg": [ 4007, 4006 ] }, + { "id": "end_piece", "fg": [ 4009, 4011, 4010, 4008 ] }, + { "id": "unconnected", "fg": 4016 } ] }, { "id": "f_grass_long_season_autumn", "multitile": true, - "fg": 4025, + "fg": 4032, "additional_tiles": [ - { "id": "center", "fg": 4010 }, - { "id": "corner", "fg": [ 4012, 4014, 4013, 4011 ] }, - { "id": "t_connection", "fg": [ 4022, 4024, 4023, 4021 ] }, - { "id": "edge", "fg": [ 4016, 4015 ] }, - { "id": "end_piece", "fg": [ 4018, 4020, 4019, 4017 ] }, - { "id": "unconnected", "fg": 4025 } + { "id": "center", "fg": 4017 }, + { "id": "corner", "fg": [ 4019, 4021, 4020, 4018 ] }, + { "id": "t_connection", "fg": [ 4029, 4031, 4030, 4028 ] }, + { "id": "edge", "fg": [ 4023, 4022 ] }, + { "id": "end_piece", "fg": [ 4025, 4027, 4026, 4024 ] }, + { "id": "unconnected", "fg": 4032 } ] }, { "id": "f_grass_long_season_summer", "multitile": true, - "fg": 4041, + "fg": 4048, "additional_tiles": [ - { "id": "center", "fg": 4026 }, - { "id": "corner", "fg": [ 4028, 4030, 4029, 4027 ] }, - { "id": "t_connection", "fg": [ 4038, 4040, 4039, 4037 ] }, - { "id": "edge", "fg": [ 4032, 4031 ] }, - { "id": "end_piece", "fg": [ 4034, 4036, 4035, 4033 ] }, - { "id": "unconnected", "fg": 4041 } + { "id": "center", "fg": 4033 }, + { "id": "corner", "fg": [ 4035, 4037, 4036, 4034 ] }, + { "id": "t_connection", "fg": [ 4045, 4047, 4046, 4044 ] }, + { "id": "edge", "fg": [ 4039, 4038 ] }, + { "id": "end_piece", "fg": [ 4041, 4043, 4042, 4040 ] }, + { "id": "unconnected", "fg": 4048 } ] }, { "id": "t_grass_long", "multitile": true, - "fg": 4009, - "bg": 3802, + "fg": 4016, + "bg": 3809, "additional_tiles": [ - { "id": "center", "bg": 3802, "fg": 3994 }, - { "id": "corner", "bg": 3802, "fg": [ 3996, 3998, 3997, 3995 ] }, - { "id": "t_connection", "bg": 3802, "fg": [ 4006, 4008, 4007, 4005 ] }, - { "id": "edge", "bg": 3802, "fg": [ 4000, 3999 ] }, - { "id": "end_piece", "bg": 3802, "fg": [ 4002, 4004, 4003, 4001 ] }, - { "bg": 3802, "id": "unconnected", "fg": 4009 } + { "id": "center", "bg": 3809, "fg": 4001 }, + { "id": "corner", "bg": 3809, "fg": [ 4003, 4005, 4004, 4002 ] }, + { "id": "t_connection", "bg": 3809, "fg": [ 4013, 4015, 4014, 4012 ] }, + { "id": "edge", "bg": 3809, "fg": [ 4007, 4006 ] }, + { "id": "end_piece", "bg": 3809, "fg": [ 4009, 4011, 4010, 4008 ] }, + { "bg": 3809, "id": "unconnected", "fg": 4016 } ] }, { "id": "t_grass_long_season_autumn", "multitile": true, - "fg": 4025, - "bg": 3806, + "fg": 4032, + "bg": 3813, "additional_tiles": [ - { "id": "center", "bg": 3806, "fg": 4010 }, - { "id": "corner", "bg": 3806, "fg": [ 4012, 4014, 4013, 4011 ] }, - { "id": "t_connection", "bg": 3806, "fg": [ 4022, 4024, 4023, 4021 ] }, - { "id": "edge", "bg": 3806, "fg": [ 4016, 4015 ] }, - { "id": "end_piece", "bg": 3806, "fg": [ 4018, 4020, 4019, 4017 ] }, - { "bg": 3806, "id": "unconnected", "fg": 4025 } + { "id": "center", "bg": 3813, "fg": 4017 }, + { "id": "corner", "bg": 3813, "fg": [ 4019, 4021, 4020, 4018 ] }, + { "id": "t_connection", "bg": 3813, "fg": [ 4029, 4031, 4030, 4028 ] }, + { "id": "edge", "bg": 3813, "fg": [ 4023, 4022 ] }, + { "id": "end_piece", "bg": 3813, "fg": [ 4025, 4027, 4026, 4024 ] }, + { "bg": 3813, "id": "unconnected", "fg": 4032 } ] }, { "id": "t_grass_long_season_summer", "multitile": true, - "fg": 4041, - "bg": 3810, + "fg": 4048, + "bg": 3817, "additional_tiles": [ - { "id": "center", "bg": 3810, "fg": 4026 }, - { "id": "corner", "bg": 3810, "fg": [ 4028, 4030, 4029, 4027 ] }, - { "id": "t_connection", "bg": 3810, "fg": [ 4038, 4040, 4039, 4037 ] }, - { "id": "edge", "bg": 3810, "fg": [ 4032, 4031 ] }, - { "id": "end_piece", "bg": 3810, "fg": [ 4034, 4036, 4035, 4033 ] }, - { "bg": 3810, "id": "unconnected", "fg": 4041 } + { "id": "center", "bg": 3817, "fg": 4033 }, + { "id": "corner", "bg": 3817, "fg": [ 4035, 4037, 4036, 4034 ] }, + { "id": "t_connection", "bg": 3817, "fg": [ 4045, 4047, 4046, 4044 ] }, + { "id": "edge", "bg": 3817, "fg": [ 4039, 4038 ] }, + { "id": "end_piece", "bg": 3817, "fg": [ 4041, 4043, 4042, 4040 ] }, + { "bg": 3817, "id": "unconnected", "fg": 4048 } ] }, - { "id": "t_grass_long_season_winter", "fg": 3726 }, + { "id": "t_grass_long_season_winter", "fg": 3733 }, { "id": "f_grass_tall", "multitile": true, - "fg": 4057, + "fg": 4064, "additional_tiles": [ - { "id": "center", "fg": 4042 }, - { "id": "corner", "fg": [ 4044, 4046, 4045, 4043 ] }, - { "id": "t_connection", "fg": [ 4054, 4056, 4055, 4053 ] }, - { "id": "edge", "fg": [ 4048, 4047 ] }, - { "id": "end_piece", "fg": [ 4050, 4052, 4051, 4049 ] }, - { "id": "unconnected", "fg": 4057 } + { "id": "center", "fg": 4049 }, + { "id": "corner", "fg": [ 4051, 4053, 4052, 4050 ] }, + { "id": "t_connection", "fg": [ 4061, 4063, 4062, 4060 ] }, + { "id": "edge", "fg": [ 4055, 4054 ] }, + { "id": "end_piece", "fg": [ 4057, 4059, 4058, 4056 ] }, + { "id": "unconnected", "fg": 4064 } ] }, { "id": "f_grass_tall_season_summer", "multitile": true, - "fg": 4089, + "fg": 4096, "additional_tiles": [ - { "id": "center", "fg": 4074 }, - { "id": "corner", "fg": [ 4076, 4078, 4077, 4075 ] }, - { "id": "t_connection", "fg": [ 4086, 4088, 4087, 4085 ] }, - { "id": "edge", "fg": [ 4080, 4079 ] }, - { "id": "end_piece", "fg": [ 4082, 4084, 4083, 4081 ] }, - { "id": "unconnected", "fg": 4089 } + { "id": "center", "fg": 4081 }, + { "id": "corner", "fg": [ 4083, 4085, 4084, 4082 ] }, + { "id": "t_connection", "fg": [ 4093, 4095, 4094, 4092 ] }, + { "id": "edge", "fg": [ 4087, 4086 ] }, + { "id": "end_piece", "fg": [ 4089, 4091, 4090, 4088 ] }, + { "id": "unconnected", "fg": 4096 } ] }, { "id": "f_grass_tall_season_autumn", "multitile": true, - "fg": 4073, + "fg": 4080, "additional_tiles": [ - { "id": "center", "fg": 4058 }, - { "id": "corner", "fg": [ 4060, 4062, 4061, 4059 ] }, - { "id": "t_connection", "fg": [ 4070, 4072, 4071, 4069 ] }, - { "id": "edge", "fg": [ 4064, 4063 ] }, - { "id": "end_piece", "fg": [ 4066, 4068, 4067, 4065 ] }, - { "id": "unconnected", "fg": 4073 } + { "id": "center", "fg": 4065 }, + { "id": "corner", "fg": [ 4067, 4069, 4068, 4066 ] }, + { "id": "t_connection", "fg": [ 4077, 4079, 4078, 4076 ] }, + { "id": "edge", "fg": [ 4071, 4070 ] }, + { "id": "end_piece", "fg": [ 4073, 4075, 4074, 4072 ] }, + { "id": "unconnected", "fg": 4080 } ] }, { "id": "t_grass_tall", "multitile": true, - "fg": 4057, - "bg": 3802, + "fg": 4064, + "bg": 3809, "additional_tiles": [ - { "id": "center", "bg": 3802, "fg": 4042 }, - { "id": "corner", "bg": 3802, "fg": [ 4044, 4046, 4045, 4043 ] }, - { "id": "t_connection", "bg": 3802, "fg": [ 4054, 4056, 4055, 4053 ] }, - { "id": "edge", "bg": 3802, "fg": [ 4048, 4047 ] }, - { "id": "end_piece", "bg": 3802, "fg": [ 4050, 4052, 4051, 4049 ] }, - { "bg": 3802, "id": "unconnected", "fg": 4057 } + { "id": "center", "bg": 3809, "fg": 4049 }, + { "id": "corner", "bg": 3809, "fg": [ 4051, 4053, 4052, 4050 ] }, + { "id": "t_connection", "bg": 3809, "fg": [ 4061, 4063, 4062, 4060 ] }, + { "id": "edge", "bg": 3809, "fg": [ 4055, 4054 ] }, + { "id": "end_piece", "bg": 3809, "fg": [ 4057, 4059, 4058, 4056 ] }, + { "bg": 3809, "id": "unconnected", "fg": 4064 } ] }, { "id": "t_grass_tall_season_summer", "multitile": true, - "fg": 4089, - "bg": 3810, + "fg": 4096, + "bg": 3817, "additional_tiles": [ - { "id": "center", "bg": 3810, "fg": 4074 }, - { "id": "corner", "bg": 3810, "fg": [ 4076, 4078, 4077, 4075 ] }, - { "id": "t_connection", "bg": 3810, "fg": [ 4086, 4088, 4087, 4085 ] }, - { "id": "edge", "bg": 3810, "fg": [ 4080, 4079 ] }, - { "id": "end_piece", "bg": 3810, "fg": [ 4082, 4084, 4083, 4081 ] }, - { "bg": 3810, "id": "unconnected", "fg": 4089 } + { "id": "center", "bg": 3817, "fg": 4081 }, + { "id": "corner", "bg": 3817, "fg": [ 4083, 4085, 4084, 4082 ] }, + { "id": "t_connection", "bg": 3817, "fg": [ 4093, 4095, 4094, 4092 ] }, + { "id": "edge", "bg": 3817, "fg": [ 4087, 4086 ] }, + { "id": "end_piece", "bg": 3817, "fg": [ 4089, 4091, 4090, 4088 ] }, + { "bg": 3817, "id": "unconnected", "fg": 4096 } ] }, { "id": "t_grass_tall_season_autumn", "multitile": true, - "fg": 4073, - "bg": 3806, + "fg": 4080, + "bg": 3813, "additional_tiles": [ - { "id": "center", "bg": 3806, "fg": 4058 }, - { "id": "corner", "bg": 3806, "fg": [ 4060, 4062, 4061, 4059 ] }, - { "id": "t_connection", "bg": 3806, "fg": [ 4070, 4072, 4071, 4069 ] }, - { "id": "edge", "bg": 3806, "fg": [ 4064, 4063 ] }, - { "id": "end_piece", "bg": 3806, "fg": [ 4066, 4068, 4067, 4065 ] }, - { "bg": 3806, "id": "unconnected", "fg": 4073 } + { "id": "center", "bg": 3813, "fg": 4065 }, + { "id": "corner", "bg": 3813, "fg": [ 4067, 4069, 4068, 4066 ] }, + { "id": "t_connection", "bg": 3813, "fg": [ 4077, 4079, 4078, 4076 ] }, + { "id": "edge", "bg": 3813, "fg": [ 4071, 4070 ] }, + { "id": "end_piece", "bg": 3813, "fg": [ 4073, 4075, 4074, 4072 ] }, + { "bg": 3813, "id": "unconnected", "fg": 4080 } ] }, - { "id": "t_grass_tall_season_winter", "fg": 3726 }, + { "id": "t_grass_tall_season_winter", "fg": 3733 }, { "id": "t_metal_railing", - "fg": 4097, + "fg": 4104, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4097, "bg": 3650 }, - { "id": "corner", "fg": [ 4091, 4093, 4092, 4090 ], "bg": 3650 }, - { "id": "t_connection", "fg": [ 4097, 4094, 4097, 4094 ], "bg": 3650 }, - { "id": "edge", "fg": [ 4094, 4097 ], "bg": 3650 }, - { "id": "end_piece", "fg": [ 4095, 4097, 4096, 4097 ], "bg": 3650 }, - { "id": "unconnected", "fg": [ 4097, 4097 ], "bg": 3650 } + { "id": "center", "fg": 4104, "bg": 3657 }, + { "id": "corner", "fg": [ 4098, 4100, 4099, 4097 ], "bg": 3657 }, + { "id": "t_connection", "fg": [ 4104, 4101, 4104, 4101 ], "bg": 3657 }, + { "id": "edge", "fg": [ 4101, 4104 ], "bg": 3657 }, + { "id": "end_piece", "fg": [ 4102, 4104, 4103, 4104 ], "bg": 3657 }, + { "id": "unconnected", "fg": [ 4104, 4104 ], "bg": 3657 } ] }, { "id": "t_paper", - "fg": 4114, + "fg": 4121, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4098 }, - { "id": "corner", "fg": [ 4100, 4102, 4101, 4099 ] }, - { "id": "t_connection", "fg": [ 4111, 4113, 4112, 4110 ] }, - { "id": "edge", "fg": [ 4104, 4103 ] }, - { "id": "end_piece", "fg": [ 4106, 4108, 4107, 4105 ] }, - { "id": "unconnected", "fg": [ 4114, 4114 ] } + { "id": "center", "fg": 4105 }, + { "id": "corner", "fg": [ 4107, 4109, 4108, 4106 ] }, + { "id": "t_connection", "fg": [ 4118, 4120, 4119, 4117 ] }, + { "id": "edge", "fg": [ 4111, 4110 ] }, + { "id": "end_piece", "fg": [ 4113, 4115, 4114, 4112 ] }, + { "id": "unconnected", "fg": [ 4121, 4121 ] } ] }, { "id": "t_pontoon", - "fg": 4130, + "fg": 4137, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4115 }, - { "id": "corner", "fg": [ 4117, 4119, 4118, 4116 ] }, - { "id": "t_connection", "fg": [ 4127, 4129, 4128, 4126 ] }, - { "id": "edge", "fg": [ 4121, 4120 ] }, - { "id": "end_piece", "fg": [ 4123, 4125, 4124, 4122 ] }, - { "id": "unconnected", "fg": [ 4130, 4130 ] } + { "id": "center", "fg": 4122 }, + { "id": "corner", "fg": [ 4124, 4126, 4125, 4123 ] }, + { "id": "t_connection", "fg": [ 4134, 4136, 4135, 4133 ] }, + { "id": "edge", "fg": [ 4128, 4127 ] }, + { "id": "end_piece", "fg": [ 4130, 4132, 4131, 4129 ] }, + { "id": "unconnected", "fg": [ 4137, 4137 ] } ] }, - { "id": [ "t_ramp_up_high", "t_ramp_up_low" ], "fg": 4132 }, - { "id": [ "t_ramp_down_high", "t_ramp_down_low" ], "fg": 4131 }, - { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_up_high" ], "fg": 4134 }, - { "id": [ "t_sidewalk_ramp_down_low", "t_sidewalk_ramp_down_high" ], "fg": 4133 }, + { "id": [ "t_ramp_up_high", "t_ramp_up_low" ], "fg": 4139 }, + { "id": [ "t_ramp_down_high", "t_ramp_down_low" ], "fg": 4138 }, + { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_up_high" ], "fg": 4141 }, + { "id": [ "t_sidewalk_ramp_down_low", "t_sidewalk_ramp_down_high" ], "fg": 4140 }, { "id": "t_reinforced_glass", - "fg": 4150, + "fg": 4157, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4135 }, - { "id": "corner", "fg": [ 4137, 4139, 4138, 4136 ] }, - { "id": "t_connection", "fg": [ 4147, 4149, 4148, 4146 ] }, - { "id": "edge", "fg": [ 4141, 4140 ] }, - { "id": "end_piece", "fg": [ 4143, 4145, 4144, 4142 ] }, - { "id": "unconnected", "fg": [ 4150, 4150 ] } + { "id": "center", "fg": 4142 }, + { "id": "corner", "fg": [ 4144, 4146, 4145, 4143 ] }, + { "id": "t_connection", "fg": [ 4154, 4156, 4155, 4153 ] }, + { "id": "edge", "fg": [ 4148, 4147 ] }, + { "id": "end_piece", "fg": [ 4150, 4152, 4151, 4149 ] }, + { "id": "unconnected", "fg": [ 4157, 4157 ] } ] }, { "id": "t_rock", - "fg": 4166, + "fg": 4173, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4151 }, - { "id": "corner", "fg": [ 4153, 4155, 4154, 4152 ] }, - { "id": "t_connection", "fg": [ 4163, 4165, 4164, 4162 ] }, - { "id": "edge", "fg": [ 4157, 4156 ] }, - { "id": "end_piece", "fg": [ 4159, 4161, 4160, 4158 ] }, - { "id": "unconnected", "fg": [ 4166, 4166 ] } + { "id": "center", "fg": 4158 }, + { "id": "corner", "fg": [ 4160, 4162, 4161, 4159 ] }, + { "id": "t_connection", "fg": [ 4170, 4172, 4171, 4169 ] }, + { "id": "edge", "fg": [ 4164, 4163 ] }, + { "id": "end_piece", "fg": [ 4166, 4168, 4167, 4165 ] }, + { "id": "unconnected", "fg": [ 4173, 4173 ] } ] }, { "id": "t_rock_blue", - "fg": 4182, + "fg": 4189, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4167 }, - { "id": "corner", "fg": [ 4169, 4171, 4170, 4168 ] }, - { "id": "t_connection", "fg": [ 4179, 4181, 4180, 4178 ] }, - { "id": "edge", "fg": [ 4173, 4172 ] }, - { "id": "end_piece", "fg": [ 4175, 4177, 4176, 4174 ] }, - { "id": "unconnected", "fg": [ 4182, 4182 ] } + { "id": "center", "fg": 4174 }, + { "id": "corner", "fg": [ 4176, 4178, 4177, 4175 ] }, + { "id": "t_connection", "fg": [ 4186, 4188, 4187, 4185 ] }, + { "id": "edge", "fg": [ 4180, 4179 ] }, + { "id": "end_piece", "fg": [ 4182, 4184, 4183, 4181 ] }, + { "id": "unconnected", "fg": [ 4189, 4189 ] } ] }, { "id": "t_rock_green", - "fg": 4198, + "fg": 4205, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4183 }, - { "id": "corner", "fg": [ 4185, 4187, 4186, 4184 ] }, - { "id": "t_connection", "fg": [ 4195, 4197, 4196, 4194 ] }, - { "id": "edge", "fg": [ 4189, 4188 ] }, - { "id": "end_piece", "fg": [ 4191, 4193, 4192, 4190 ] }, - { "id": "unconnected", "fg": [ 4198, 4198 ] } + { "id": "center", "fg": 4190 }, + { "id": "corner", "fg": [ 4192, 4194, 4193, 4191 ] }, + { "id": "t_connection", "fg": [ 4202, 4204, 4203, 4201 ] }, + { "id": "edge", "fg": [ 4196, 4195 ] }, + { "id": "end_piece", "fg": [ 4198, 4200, 4199, 4197 ] }, + { "id": "unconnected", "fg": [ 4205, 4205 ] } ] }, { "id": "t_rock_red", - "fg": 4214, + "fg": 4221, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4199 }, - { "id": "corner", "fg": [ 4201, 4203, 4202, 4200 ] }, - { "id": "t_connection", "fg": [ 4211, 4213, 4212, 4210 ] }, - { "id": "edge", "fg": [ 4205, 4204 ] }, - { "id": "end_piece", "fg": [ 4207, 4209, 4208, 4206 ] }, - { "id": "unconnected", "fg": [ 4214, 4214 ] } + { "id": "center", "fg": 4206 }, + { "id": "corner", "fg": [ 4208, 4210, 4209, 4207 ] }, + { "id": "t_connection", "fg": [ 4218, 4220, 4219, 4217 ] }, + { "id": "edge", "fg": [ 4212, 4211 ] }, + { "id": "end_piece", "fg": [ 4214, 4216, 4215, 4213 ] }, + { "id": "unconnected", "fg": [ 4221, 4221 ] } ] }, { "id": "t_rock_smooth", - "fg": 4230, + "fg": 4237, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4215 }, - { "id": "corner", "fg": [ 4217, 4219, 4218, 4216 ] }, - { "id": "t_connection", "fg": [ 4227, 4229, 4228, 4226 ] }, - { "id": "edge", "fg": [ 4221, 4220 ] }, - { "id": "end_piece", "fg": [ 4223, 4225, 4224, 4222 ] }, - { "id": "unconnected", "fg": [ 4230, 4230 ] } + { "id": "center", "fg": 4222 }, + { "id": "corner", "fg": [ 4224, 4226, 4225, 4223 ] }, + { "id": "t_connection", "fg": [ 4234, 4236, 4235, 4233 ] }, + { "id": "edge", "fg": [ 4228, 4227 ] }, + { "id": "end_piece", "fg": [ 4230, 4232, 4231, 4229 ] }, + { "id": "unconnected", "fg": [ 4237, 4237 ] } ] }, { "id": "t_rock_wall", - "fg": 4246, + "fg": 4253, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4231 }, - { "id": "corner", "fg": [ 4233, 4235, 4234, 4232 ] }, - { "id": "t_connection", "fg": [ 4243, 4245, 4244, 4242 ] }, - { "id": "edge", "fg": [ 4237, 4236 ] }, - { "id": "end_piece", "fg": [ 4239, 4241, 4240, 4238 ] }, - { "id": "unconnected", "fg": [ 4246, 4246 ] } + { "id": "center", "fg": 4238 }, + { "id": "corner", "fg": [ 4240, 4242, 4241, 4239 ] }, + { "id": "t_connection", "fg": [ 4250, 4252, 4251, 4249 ] }, + { "id": "edge", "fg": [ 4244, 4243 ] }, + { "id": "end_piece", "fg": [ 4246, 4248, 4247, 4245 ] }, + { "id": "unconnected", "fg": [ 4253, 4253 ] } ] }, { "id": "t_sand", - "fg": 4262, + "fg": 4269, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4247 }, - { "id": "corner", "fg": [ 4249, 4251, 4250, 4248 ] }, - { "id": "t_connection", "fg": [ 4259, 4261, 4260, 4258 ] }, - { "id": "edge", "fg": [ 4253, 4252 ] }, - { "id": "end_piece", "fg": [ 4255, 4257, 4256, 4254 ] }, - { "id": "unconnected", "fg": [ 4262, 4262 ] } + { "id": "center", "fg": 4254 }, + { "id": "corner", "fg": [ 4256, 4258, 4257, 4255 ] }, + { "id": "t_connection", "fg": [ 4266, 4268, 4267, 4265 ] }, + { "id": "edge", "fg": [ 4260, 4259 ] }, + { "id": "end_piece", "fg": [ 4262, 4264, 4263, 4261 ] }, + { "id": "unconnected", "fg": [ 4269, 4269 ] } ] }, { "id": "t_sandbox", - "fg": 4278, + "fg": 4285, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4263 }, - { "id": "corner", "fg": [ 4265, 4267, 4266, 4264 ] }, - { "id": "t_connection", "fg": [ 4275, 4277, 4276, 4274 ] }, - { "id": "edge", "fg": [ 4269, 4268 ] }, - { "id": "end_piece", "fg": [ 4271, 4273, 4272, 4270 ] }, - { "id": "unconnected", "fg": [ 4278, 4278 ] } + { "id": "center", "fg": 4270 }, + { "id": "corner", "fg": [ 4272, 4274, 4273, 4271 ] }, + { "id": "t_connection", "fg": [ 4282, 4284, 4283, 4281 ] }, + { "id": "edge", "fg": [ 4276, 4275 ] }, + { "id": "end_piece", "fg": [ 4278, 4280, 4279, 4277 ] }, + { "id": "unconnected", "fg": [ 4285, 4285 ] } ] }, { "id": "t_scrap_wall", - "fg": 4294, + "fg": 4301, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4279 }, - { "id": "corner", "fg": [ 4281, 4283, 4282, 4280 ] }, - { "id": "t_connection", "fg": [ 4291, 4293, 4292, 4290 ] }, - { "id": "edge", "fg": [ 4285, 4284 ] }, - { "id": "end_piece", "fg": [ 4287, 4289, 4288, 4286 ] }, - { "id": "unconnected", "fg": [ 4294, 4294 ] } + { "id": "center", "fg": 4286 }, + { "id": "corner", "fg": [ 4288, 4290, 4289, 4287 ] }, + { "id": "t_connection", "fg": [ 4298, 4300, 4299, 4297 ] }, + { "id": "edge", "fg": [ 4292, 4291 ] }, + { "id": "end_piece", "fg": [ 4294, 4296, 4295, 4293 ] }, + { "id": "unconnected", "fg": [ 4301, 4301 ] } ] }, { "id": "t_screened_porch_wall", - "fg": 4312, + "fg": 4319, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4297 }, - { "id": "corner", "fg": [ 4299, 4301, 4300, 4298 ] }, - { "id": "t_connection", "fg": [ 4309, 4311, 4310, 4308 ] }, - { "id": "edge", "fg": [ 4303, 4302 ] }, - { "id": "end_piece", "fg": [ 4305, 4307, 4306, 4304 ] }, - { "id": "unconnected", "fg": [ 4312, 4312 ] } + { "id": "center", "fg": 4304 }, + { "id": "corner", "fg": [ 4306, 4308, 4307, 4305 ] }, + { "id": "t_connection", "fg": [ 4316, 4318, 4317, 4315 ] }, + { "id": "edge", "fg": [ 4310, 4309 ] }, + { "id": "end_piece", "fg": [ 4312, 4314, 4313, 4311 ] }, + { "id": "unconnected", "fg": [ 4319, 4319 ] } ] }, { "id": "t_soil", - "fg": 4335, + "fg": 4342, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4313 }, + { "id": "center", "fg": 4320 }, { "id": "corner", "fg": [ - { "weight": 2, "sprite": [ 4315, 4318, 4316, 4314 ] }, - { "weight": 1, "sprite": [ 4315, 4319, 4316, 4314 ] }, - { "weight": 1, "sprite": [ 4315, 4318, 4317, 4314 ] } + { "weight": 2, "sprite": [ 4322, 4325, 4323, 4321 ] }, + { "weight": 1, "sprite": [ 4322, 4326, 4323, 4321 ] }, + { "weight": 1, "sprite": [ 4322, 4325, 4324, 4321 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 2, "sprite": [ 4331, 4334, 4332, 4330 ] }, { "weight": 1, "sprite": [ 4331, 4334, 4333, 4330 ] } ] + "fg": [ { "weight": 2, "sprite": [ 4338, 4341, 4339, 4337 ] }, { "weight": 1, "sprite": [ 4338, 4341, 4340, 4337 ] } ] }, { "id": "edge", - "fg": [ { "weight": 2, "sprite": [ 4322, 4320 ] }, { "weight": 1, "sprite": [ 4322, 4321 ] } ] + "fg": [ { "weight": 2, "sprite": [ 4329, 4327 ] }, { "weight": 1, "sprite": [ 4329, 4328 ] } ] }, { "id": "end_piece", "fg": [ - { "weight": 2, "sprite": [ 4325, 4328, 4326, 4323 ] }, - { "weight": 1, "sprite": [ 4325, 4329, 4326, 4323 ] }, - { "weight": 1, "sprite": [ 4325, 4328, 4327, 4323 ] }, - { "weight": 1, "sprite": [ 4325, 4328, 4326, 4324 ] } + { "weight": 2, "sprite": [ 4332, 4335, 4333, 4330 ] }, + { "weight": 1, "sprite": [ 4332, 4336, 4333, 4330 ] }, + { "weight": 1, "sprite": [ 4332, 4335, 4334, 4330 ] }, + { "weight": 1, "sprite": [ 4332, 4335, 4333, 4331 ] } ] }, - { "id": "unconnected", "fg": [ 4335, 4335 ] } + { "id": "unconnected", "fg": [ 4342, 4342 ] } ] }, { "id": "t_strconc_wall", - "fg": 4351, + "fg": 4358, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4336 }, - { "id": "corner", "fg": [ 4338, 4340, 4339, 4337 ] }, - { "id": "t_connection", "fg": [ 4348, 4350, 4349, 4347 ] }, - { "id": "edge", "fg": [ 4342, 4341 ] }, - { "id": "end_piece", "fg": [ 4344, 4346, 4345, 4343 ] }, - { "id": "unconnected", "fg": [ 4351, 4351 ] } + { "id": "center", "fg": 4343 }, + { "id": "corner", "fg": [ 4345, 4347, 4346, 4344 ] }, + { "id": "t_connection", "fg": [ 4355, 4357, 4356, 4354 ] }, + { "id": "edge", "fg": [ 4349, 4348 ] }, + { "id": "end_piece", "fg": [ 4351, 4353, 4352, 4350 ] }, + { "id": "unconnected", "fg": [ 4358, 4358 ] } ] }, { "id": "t_thatch_roof", - "fg": 4367, + "fg": 4374, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4352 }, - { "id": "corner", "fg": [ 4354, 4356, 4355, 4353 ] }, - { "id": "t_connection", "fg": [ 4364, 4366, 4365, 4363 ] }, - { "id": "edge", "fg": [ 4358, 4357 ] }, - { "id": "end_piece", "fg": [ 4360, 4362, 4361, 4359 ] }, - { "id": "unconnected", "fg": [ 4367, 4367 ] } + { "id": "center", "fg": 4359 }, + { "id": "corner", "fg": [ 4361, 4363, 4362, 4360 ] }, + { "id": "t_connection", "fg": [ 4371, 4373, 4372, 4370 ] }, + { "id": "edge", "fg": [ 4365, 4364 ] }, + { "id": "end_piece", "fg": [ 4367, 4369, 4368, 4366 ] }, + { "id": "unconnected", "fg": [ 4374, 4374 ] } ] }, { "id": "t_wall", - "fg": 4383, + "fg": 4390, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4368 }, - { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ] }, - { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ] }, - { "id": "edge", "fg": [ 4374, 4373 ] }, - { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ] }, - { "id": "unconnected", "fg": [ 4383, 4383 ] } + { "id": "center", "fg": 4375 }, + { "id": "corner", "fg": [ 4377, 4379, 4378, 4376 ] }, + { "id": "t_connection", "fg": [ 4387, 4389, 4388, 4386 ] }, + { "id": "edge", "fg": [ 4381, 4380 ] }, + { "id": "end_piece", "fg": [ 4383, 4385, 4384, 4382 ] }, + { "id": "unconnected", "fg": [ 4390, 4390 ] } ] }, { "id": "t_wall_P", - "fg": 4399, + "fg": 4406, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4384 }, - { "id": "corner", "fg": [ 4386, 4388, 4387, 4385 ] }, - { "id": "t_connection", "fg": [ 4396, 4398, 4397, 4395 ] }, - { "id": "edge", "fg": [ 4390, 4389 ] }, - { "id": "end_piece", "fg": [ 4392, 4394, 4393, 4391 ] }, - { "id": "unconnected", "fg": [ 4399, 4399 ] } + { "id": "center", "fg": 4391 }, + { "id": "corner", "fg": [ 4393, 4395, 4394, 4392 ] }, + { "id": "t_connection", "fg": [ 4403, 4405, 4404, 4402 ] }, + { "id": "edge", "fg": [ 4397, 4396 ] }, + { "id": "end_piece", "fg": [ 4399, 4401, 4400, 4398 ] }, + { "id": "unconnected", "fg": [ 4406, 4406 ] } ] }, { "id": "t_wall_b", - "fg": 4415, + "fg": 4422, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4400 }, - { "id": "corner", "fg": [ 4402, 4404, 4403, 4401 ] }, - { "id": "t_connection", "fg": [ 4412, 4414, 4413, 4411 ] }, - { "id": "edge", "fg": [ 4406, 4405 ] }, - { "id": "end_piece", "fg": [ 4408, 4410, 4409, 4407 ] }, - { "id": "unconnected", "fg": [ 4415, 4415 ] } + { "id": "center", "fg": 4407 }, + { "id": "corner", "fg": [ 4409, 4411, 4410, 4408 ] }, + { "id": "t_connection", "fg": [ 4419, 4421, 4420, 4418 ] }, + { "id": "edge", "fg": [ 4413, 4412 ] }, + { "id": "end_piece", "fg": [ 4415, 4417, 4416, 4414 ] }, + { "id": "unconnected", "fg": [ 4422, 4422 ] } ] }, { "id": "t_wall_g", - "fg": 4431, + "fg": 4438, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4416 }, - { "id": "corner", "fg": [ 4418, 4420, 4419, 4417 ] }, - { "id": "t_connection", "fg": [ 4428, 4430, 4429, 4427 ] }, - { "id": "edge", "fg": [ 4422, 4421 ] }, - { "id": "end_piece", "fg": [ 4424, 4426, 4425, 4423 ] }, - { "id": "unconnected", "fg": [ 4431, 4431 ] } + { "id": "center", "fg": 4423 }, + { "id": "corner", "fg": [ 4425, 4427, 4426, 4424 ] }, + { "id": "t_connection", "fg": [ 4435, 4437, 4436, 4434 ] }, + { "id": "edge", "fg": [ 4429, 4428 ] }, + { "id": "end_piece", "fg": [ 4431, 4433, 4432, 4430 ] }, + { "id": "unconnected", "fg": [ 4438, 4438 ] } ] }, { "id": "t_wall_p", - "fg": 4447, + "fg": 4454, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4432 }, - { "id": "corner", "fg": [ 4434, 4436, 4435, 4433 ] }, - { "id": "t_connection", "fg": [ 4444, 4446, 4445, 4443 ] }, - { "id": "edge", "fg": [ 4438, 4437 ] }, - { "id": "end_piece", "fg": [ 4440, 4442, 4441, 4439 ] }, - { "id": "unconnected", "fg": [ 4447, 4447 ] } + { "id": "center", "fg": 4439 }, + { "id": "corner", "fg": [ 4441, 4443, 4442, 4440 ] }, + { "id": "t_connection", "fg": [ 4451, 4453, 4452, 4450 ] }, + { "id": "edge", "fg": [ 4445, 4444 ] }, + { "id": "end_piece", "fg": [ 4447, 4449, 4448, 4446 ] }, + { "id": "unconnected", "fg": [ 4454, 4454 ] } ] }, { "id": "t_wall_r", - "fg": 4463, + "fg": 4470, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4448 }, - { "id": "corner", "fg": [ 4450, 4452, 4451, 4449 ] }, - { "id": "t_connection", "fg": [ 4460, 4462, 4461, 4459 ] }, - { "id": "edge", "fg": [ 4454, 4453 ] }, - { "id": "end_piece", "fg": [ 4456, 4458, 4457, 4455 ] }, - { "id": "unconnected", "fg": [ 4463, 4463 ] } + { "id": "center", "fg": 4455 }, + { "id": "corner", "fg": [ 4457, 4459, 4458, 4456 ] }, + { "id": "t_connection", "fg": [ 4467, 4469, 4468, 4466 ] }, + { "id": "edge", "fg": [ 4461, 4460 ] }, + { "id": "end_piece", "fg": [ 4463, 4465, 4464, 4462 ] }, + { "id": "unconnected", "fg": [ 4470, 4470 ] } ] }, { "id": "t_wall_w", - "fg": 4479, + "fg": 4486, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4464 }, - { "id": "corner", "fg": [ 4466, 4468, 4467, 4465 ] }, - { "id": "t_connection", "fg": [ 4476, 4478, 4477, 4475 ] }, - { "id": "edge", "fg": [ 4470, 4469 ] }, - { "id": "end_piece", "fg": [ 4472, 4474, 4473, 4471 ] }, - { "id": "unconnected", "fg": [ 4479, 4479 ] } + { "id": "center", "fg": 4471 }, + { "id": "corner", "fg": [ 4473, 4475, 4474, 4472 ] }, + { "id": "t_connection", "fg": [ 4483, 4485, 4484, 4482 ] }, + { "id": "edge", "fg": [ 4477, 4476 ] }, + { "id": "end_piece", "fg": [ 4479, 4481, 4480, 4478 ] }, + { "id": "unconnected", "fg": [ 4486, 4486 ] } ] }, { "id": "t_wall_y", - "fg": 4495, + "fg": 4502, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4480 }, - { "id": "corner", "fg": [ 4482, 4484, 4483, 4481 ] }, - { "id": "t_connection", "fg": [ 4492, 4494, 4493, 4491 ] }, - { "id": "edge", "fg": [ 4486, 4485 ] }, - { "id": "end_piece", "fg": [ 4488, 4490, 4489, 4487 ] }, - { "id": "unconnected", "fg": [ 4495, 4495 ] } + { "id": "center", "fg": 4487 }, + { "id": "corner", "fg": [ 4489, 4491, 4490, 4488 ] }, + { "id": "t_connection", "fg": [ 4499, 4501, 4500, 4498 ] }, + { "id": "edge", "fg": [ 4493, 4492 ] }, + { "id": "end_piece", "fg": [ 4495, 4497, 4496, 4494 ] }, + { "id": "unconnected", "fg": [ 4502, 4502 ] } ] }, { "id": "t_wall_glass", - "fg": 4511, + "fg": 4518, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4496 }, - { "id": "corner", "fg": [ 4498, 4500, 4499, 4497 ] }, - { "id": "t_connection", "fg": [ 4508, 4510, 4509, 4507 ] }, - { "id": "edge", "fg": [ 4502, 4501 ] }, - { "id": "end_piece", "fg": [ 4504, 4506, 4505, 4503 ] }, - { "id": "unconnected", "fg": [ 4511, 4511 ] } + { "id": "center", "fg": 4503 }, + { "id": "corner", "fg": [ 4505, 4507, 4506, 4504 ] }, + { "id": "t_connection", "fg": [ 4515, 4517, 4516, 4514 ] }, + { "id": "edge", "fg": [ 4509, 4508 ] }, + { "id": "end_piece", "fg": [ 4511, 4513, 4512, 4510 ] }, + { "id": "unconnected", "fg": [ 4518, 4518 ] } ] }, { "id": "t_wall_log", - "fg": 4527, + "fg": 4534, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4512 }, - { "id": "corner", "fg": [ 4514, 4516, 4515, 4513 ] }, - { "id": "t_connection", "fg": [ 4524, 4526, 4525, 4523 ] }, - { "id": "edge", "fg": [ 4518, 4517 ] }, - { "id": "end_piece", "fg": [ 4520, 4522, 4521, 4519 ] }, - { "id": "unconnected", "fg": [ 4527, 4527 ] } + { "id": "center", "fg": 4519 }, + { "id": "corner", "fg": [ 4521, 4523, 4522, 4520 ] }, + { "id": "t_connection", "fg": [ 4531, 4533, 4532, 4530 ] }, + { "id": "edge", "fg": [ 4525, 4524 ] }, + { "id": "end_piece", "fg": [ 4527, 4529, 4528, 4526 ] }, + { "id": "unconnected", "fg": [ 4534, 4534 ] } ] }, { "id": "t_wall_log_broken", - "fg": 4543, + "fg": 4550, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4528 }, - { "id": "corner", "fg": [ 4530, 4532, 4531, 4529 ] }, - { "id": "t_connection", "fg": [ 4540, 4542, 4541, 4539 ] }, - { "id": "edge", "fg": [ 4534, 4533 ] }, - { "id": "end_piece", "fg": [ 4536, 4538, 4537, 4535 ] }, - { "id": "unconnected", "fg": [ 4543, 4543 ] } + { "id": "center", "fg": 4535 }, + { "id": "corner", "fg": [ 4537, 4539, 4538, 4536 ] }, + { "id": "t_connection", "fg": [ 4547, 4549, 4548, 4546 ] }, + { "id": "edge", "fg": [ 4541, 4540 ] }, + { "id": "end_piece", "fg": [ 4543, 4545, 4544, 4542 ] }, + { "id": "unconnected", "fg": [ 4550, 4550 ] } ] }, { "id": "t_wall_log_chipped", - "fg": 4559, + "fg": 4566, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4544 }, - { "id": "corner", "fg": [ 4546, 4548, 4547, 4545 ] }, - { "id": "t_connection", "fg": [ 4556, 4558, 4557, 4555 ] }, - { "id": "edge", "fg": [ 4550, 4549 ] }, - { "id": "end_piece", "fg": [ 4552, 4554, 4553, 4551 ] }, - { "id": "unconnected", "fg": [ 4559, 4559 ] } + { "id": "center", "fg": 4551 }, + { "id": "corner", "fg": [ 4553, 4555, 4554, 4552 ] }, + { "id": "t_connection", "fg": [ 4563, 4565, 4564, 4562 ] }, + { "id": "edge", "fg": [ 4557, 4556 ] }, + { "id": "end_piece", "fg": [ 4559, 4561, 4560, 4558 ] }, + { "id": "unconnected", "fg": [ 4566, 4566 ] } ] }, { "id": "t_wall_metal", - "fg": 4575, + "fg": 4582, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4560 }, - { "id": "corner", "fg": [ 4562, 4564, 4563, 4561 ] }, - { "id": "t_connection", "fg": [ 4572, 4574, 4573, 4571 ] }, - { "id": "edge", "fg": [ 4566, 4565 ] }, - { "id": "end_piece", "fg": [ 4568, 4570, 4569, 4567 ] }, - { "id": "unconnected", "fg": [ 4575, 4575 ] } + { "id": "center", "fg": 4567 }, + { "id": "corner", "fg": [ 4569, 4571, 4570, 4568 ] }, + { "id": "t_connection", "fg": [ 4579, 4581, 4580, 4578 ] }, + { "id": "edge", "fg": [ 4573, 4572 ] }, + { "id": "end_piece", "fg": [ 4575, 4577, 4576, 4574 ] }, + { "id": "unconnected", "fg": [ 4582, 4582 ] } ] }, { "id": "t_wall_rammed_earth_autumn", - "fg": 4591, + "fg": 4598, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4576 }, - { "id": "corner", "fg": [ 4578, 4580, 4579, 4577 ] }, - { "id": "t_connection", "fg": [ 4588, 4590, 4589, 4587 ] }, - { "id": "edge", "fg": [ 4582, 4581 ] }, - { "id": "end_piece", "fg": [ 4584, 4586, 4585, 4583 ] }, - { "id": "unconnected", "fg": [ 4591, 4591 ] } + { "id": "center", "fg": 4583 }, + { "id": "corner", "fg": [ 4585, 4587, 4586, 4584 ] }, + { "id": "t_connection", "fg": [ 4595, 4597, 4596, 4594 ] }, + { "id": "edge", "fg": [ 4589, 4588 ] }, + { "id": "end_piece", "fg": [ 4591, 4593, 4592, 4590 ] }, + { "id": "unconnected", "fg": [ 4598, 4598 ] } ] }, { "id": "t_wall_rammed_earth", - "fg": 4607, + "fg": 4614, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4592 }, - { "id": "corner", "fg": [ 4594, 4596, 4595, 4593 ] }, - { "id": "t_connection", "fg": [ 4604, 4606, 4605, 4603 ] }, - { "id": "edge", "fg": [ 4598, 4597 ] }, - { "id": "end_piece", "fg": [ 4600, 4602, 4601, 4599 ] }, - { "id": "unconnected", "fg": [ 4607, 4607 ] } + { "id": "center", "fg": 4599 }, + { "id": "corner", "fg": [ 4601, 4603, 4602, 4600 ] }, + { "id": "t_connection", "fg": [ 4611, 4613, 4612, 4610 ] }, + { "id": "edge", "fg": [ 4605, 4604 ] }, + { "id": "end_piece", "fg": [ 4607, 4609, 4608, 4606 ] }, + { "id": "unconnected", "fg": [ 4614, 4614 ] } ] }, { "id": "t_wall_rammed_earth_summer", - "fg": 4623, + "fg": 4630, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4608 }, - { "id": "corner", "fg": [ 4610, 4612, 4611, 4609 ] }, - { "id": "t_connection", "fg": [ 4620, 4622, 4621, 4619 ] }, - { "id": "edge", "fg": [ 4614, 4613 ] }, - { "id": "end_piece", "fg": [ 4616, 4618, 4617, 4615 ] }, - { "id": "unconnected", "fg": [ 4623, 4623 ] } + { "id": "center", "fg": 4615 }, + { "id": "corner", "fg": [ 4617, 4619, 4618, 4616 ] }, + { "id": "t_connection", "fg": [ 4627, 4629, 4628, 4626 ] }, + { "id": "edge", "fg": [ 4621, 4620 ] }, + { "id": "end_piece", "fg": [ 4623, 4625, 4624, 4622 ] }, + { "id": "unconnected", "fg": [ 4630, 4630 ] } ] }, { "id": "t_wall_rammed_earth_winter", - "fg": 4639, + "fg": 4646, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4624 }, - { "id": "corner", "fg": [ 4626, 4628, 4627, 4625 ] }, - { "id": "t_connection", "fg": [ 4636, 4638, 4637, 4635 ] }, - { "id": "edge", "fg": [ 4630, 4629 ] }, - { "id": "end_piece", "fg": [ 4632, 4634, 4633, 4631 ] }, - { "id": "unconnected", "fg": [ 4639, 4639 ] } + { "id": "center", "fg": 4631 }, + { "id": "corner", "fg": [ 4633, 4635, 4634, 4632 ] }, + { "id": "t_connection", "fg": [ 4643, 4645, 4644, 4642 ] }, + { "id": "edge", "fg": [ 4637, 4636 ] }, + { "id": "end_piece", "fg": [ 4639, 4641, 4640, 4638 ] }, + { "id": "unconnected", "fg": [ 4646, 4646 ] } ] }, { "id": "t_wall_resin_cage", - "fg": 4655, + "fg": 4662, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4640 }, - { "id": "corner", "fg": [ 4642, 4644, 4643, 4641 ] }, - { "id": "t_connection", "fg": [ 4652, 4654, 4653, 4651 ] }, - { "id": "edge", "fg": [ 4646, 4645 ] }, - { "id": "end_piece", "fg": [ 4648, 4650, 4649, 4647 ] }, - { "id": "unconnected", "fg": [ 4655, 4655 ] } + { "id": "center", "fg": 4647 }, + { "id": "corner", "fg": [ 4649, 4651, 4650, 4648 ] }, + { "id": "t_connection", "fg": [ 4659, 4661, 4660, 4658 ] }, + { "id": "edge", "fg": [ 4653, 4652 ] }, + { "id": "end_piece", "fg": [ 4655, 4657, 4656, 4654 ] }, + { "id": "unconnected", "fg": [ 4662, 4662 ] } ] }, { "id": "t_wall_wood", - "fg": 4671, + "fg": 4678, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4656 }, - { "id": "corner", "fg": [ 4658, 4660, 4659, 4657 ] }, - { "id": "t_connection", "fg": [ 4668, 4670, 4669, 4667 ] }, - { "id": "edge", "fg": [ 4662, 4661 ] }, - { "id": "end_piece", "fg": [ 4664, 4666, 4665, 4663 ] }, - { "id": "unconnected", "fg": [ 4671, 4671 ] } + { "id": "center", "fg": 4663 }, + { "id": "corner", "fg": [ 4665, 4667, 4666, 4664 ] }, + { "id": "t_connection", "fg": [ 4675, 4677, 4676, 4674 ] }, + { "id": "edge", "fg": [ 4669, 4668 ] }, + { "id": "end_piece", "fg": [ 4671, 4673, 4672, 4670 ] }, + { "id": "unconnected", "fg": [ 4678, 4678 ] } ] }, { "id": "t_wall_wood_broken", - "fg": 4687, + "fg": 4694, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4672 }, - { "id": "corner", "fg": [ 4674, 4676, 4675, 4673 ] }, - { "id": "t_connection", "fg": [ 4684, 4686, 4685, 4683 ] }, - { "id": "edge", "fg": [ 4678, 4677 ] }, - { "id": "end_piece", "fg": [ 4680, 4682, 4681, 4679 ] }, - { "id": "unconnected", "fg": [ 4687, 4687 ] } + { "id": "center", "fg": 4679 }, + { "id": "corner", "fg": [ 4681, 4683, 4682, 4680 ] }, + { "id": "t_connection", "fg": [ 4691, 4693, 4692, 4690 ] }, + { "id": "edge", "fg": [ 4685, 4684 ] }, + { "id": "end_piece", "fg": [ 4687, 4689, 4688, 4686 ] }, + { "id": "unconnected", "fg": [ 4694, 4694 ] } ] }, { "id": "t_wall_wood_chipped", - "fg": 4703, + "fg": 4710, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4688 }, - { "id": "corner", "fg": [ 4690, 4692, 4691, 4689 ] }, - { "id": "t_connection", "fg": [ 4700, 4702, 4701, 4699 ] }, - { "id": "edge", "fg": [ 4694, 4693 ] }, - { "id": "end_piece", "fg": [ 4696, 4698, 4697, 4695 ] }, - { "id": "unconnected", "fg": [ 4703, 4703 ] } + { "id": "center", "fg": 4695 }, + { "id": "corner", "fg": [ 4697, 4699, 4698, 4696 ] }, + { "id": "t_connection", "fg": [ 4707, 4709, 4708, 4706 ] }, + { "id": "edge", "fg": [ 4701, 4700 ] }, + { "id": "end_piece", "fg": [ 4703, 4705, 4704, 4702 ] }, + { "id": "unconnected", "fg": [ 4710, 4710 ] } ] }, { "id": "t_water_hot", - "fg": 4719, + "fg": 4726, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4704 }, - { "id": "corner", "fg": [ 4706, 4708, 4707, 4705 ] }, - { "id": "t_connection", "fg": [ 4716, 4718, 4717, 4715 ] }, - { "id": "edge", "fg": [ 4710, 4709 ] }, - { "id": "end_piece", "fg": [ 4712, 4714, 4713, 4711 ] }, - { "id": "unconnected", "fg": [ 4719, 4719 ] } + { "id": "center", "fg": 4711 }, + { "id": "corner", "fg": [ 4713, 4715, 4714, 4712 ] }, + { "id": "t_connection", "fg": [ 4723, 4725, 4724, 4722 ] }, + { "id": "edge", "fg": [ 4717, 4716 ] }, + { "id": "end_piece", "fg": [ 4719, 4721, 4720, 4718 ] }, + { "id": "unconnected", "fg": [ 4726, 4726 ] } ] }, { "id": "t_water_pool", - "fg": 4751, + "fg": 4758, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4720 }, - { "id": "corner", "fg": [ 4722, 4724, 4723, 4721 ] }, - { "id": "t_connection", "fg": [ 4748, 4750, 4749, 4747 ] }, - { "id": "edge", "fg": [ 4726, 4725 ] }, - { "id": "end_piece", "fg": [ 4728, 4730, 4729, 4727 ] }, - { "id": "unconnected", "fg": [ 4751, 4751 ] } + { "id": "center", "fg": 4727 }, + { "id": "corner", "fg": [ 4729, 4731, 4730, 4728 ] }, + { "id": "t_connection", "fg": [ 4755, 4757, 4756, 4754 ] }, + { "id": "edge", "fg": [ 4733, 4732 ] }, + { "id": "end_piece", "fg": [ 4735, 4737, 4736, 4734 ] }, + { "id": "unconnected", "fg": [ 4758, 4758 ] } ] }, { "id": "t_water_pool_outdoors", - "fg": 4751, + "fg": 4758, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4720 }, - { "id": "corner", "fg": [ 4722, 4724, 4723, 4721 ] }, - { "id": "t_connection", "fg": [ 4748, 4750, 4749, 4747 ] }, - { "id": "edge", "fg": [ 4726, 4725 ] }, - { "id": "end_piece", "fg": [ 4728, 4730, 4729, 4727 ] }, - { "id": "unconnected", "fg": [ 4751, 4751 ] } + { "id": "center", "fg": 4727 }, + { "id": "corner", "fg": [ 4729, 4731, 4730, 4728 ] }, + { "id": "t_connection", "fg": [ 4755, 4757, 4756, 4754 ] }, + { "id": "edge", "fg": [ 4733, 4732 ] }, + { "id": "end_piece", "fg": [ 4735, 4737, 4736, 4734 ] }, + { "id": "unconnected", "fg": [ 4758, 4758 ] } ] }, { "id": "t_water_pool_shallow", - "fg": 4746, + "fg": 4753, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4731 }, - { "id": "corner", "fg": [ 4733, 4735, 4734, 4732 ] }, - { "id": "t_connection", "fg": [ 4743, 4745, 4744, 4742 ] }, - { "id": "edge", "fg": [ 4737, 4736 ] }, - { "id": "end_piece", "fg": [ 4739, 4741, 4740, 4738 ] }, - { "id": "unconnected", "fg": [ 4746, 4746 ] } + { "id": "center", "fg": 4738 }, + { "id": "corner", "fg": [ 4740, 4742, 4741, 4739 ] }, + { "id": "t_connection", "fg": [ 4750, 4752, 4751, 4749 ] }, + { "id": "edge", "fg": [ 4744, 4743 ] }, + { "id": "end_piece", "fg": [ 4746, 4748, 4747, 4745 ] }, + { "id": "unconnected", "fg": [ 4753, 4753 ] } ] }, { "id": "t_water_pool_shallow_outdoors", - "fg": 4746, + "fg": 4753, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4731 }, - { "id": "corner", "fg": [ 4733, 4735, 4734, 4732 ] }, - { "id": "t_connection", "fg": [ 4743, 4745, 4744, 4742 ] }, - { "id": "edge", "fg": [ 4737, 4736 ] }, - { "id": "end_piece", "fg": [ 4739, 4741, 4740, 4738 ] }, - { "id": "unconnected", "fg": [ 4746, 4746 ] } + { "id": "center", "fg": 4738 }, + { "id": "corner", "fg": [ 4740, 4742, 4741, 4739 ] }, + { "id": "t_connection", "fg": [ 4750, 4752, 4751, 4749 ] }, + { "id": "edge", "fg": [ 4744, 4743 ] }, + { "id": "end_piece", "fg": [ 4746, 4748, 4747, 4745 ] }, + { "id": "unconnected", "fg": [ 4753, 4753 ] } ] }, - { "id": "tr_beartrap", "bg": 4772, "rotates": false }, - { "id": "tr_beartrap_buried", "fg": 4757, "bg": 4772, "rotates": false }, - { "id": "tr_beartrap_buried_season_winter", "fg": 4758, "bg": 4772 }, + { "id": "tr_beartrap", "bg": 4779, "rotates": false }, + { "id": "tr_beartrap_buried", "fg": 4764, "bg": 4779, "rotates": false }, + { "id": "tr_beartrap_buried_season_winter", "fg": 4765, "bg": 4779 }, { "id": "tr_blade", - "fg": 4759, + "fg": 4766, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 4759 } ] + "additional_tiles": [ { "id": "edge", "fg": 4766 } ] }, - { "id": "tr_bubblewrap", "fg": 4760, "rotates": false }, - { "id": "tr_caltrops", "fg": 4761, "rotates": false }, - { "id": "tr_dissector", "fg": 4762, "rotates": false }, + { "id": "tr_bubblewrap", "fg": 4767, "rotates": false }, + { "id": "tr_caltrops", "fg": 4768, "rotates": false }, + { "id": "tr_dissector", "fg": 4769, "rotates": false }, { "id": "tr_drain", - "bg": 4773, + "bg": 4780, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "center", "bg": 4752 }, { "id": "t_connection", "bg": 4752 } ] - }, - { "id": "tr_engine", "fg": 4763 }, - { "id": "tr_fur_rollmat", "fg": 4764, "rotates": false }, - { "id": "tr_goo", "fg": 4765, "bg": 3650, "rotates": false }, - { "id": "tr_heavy_snare", "bg": 4753, "rotates": false }, - { "id": "tr_lava", "fg": 3485, "rotates": false }, - { "id": "tr_leather_funnel", "fg": 4766, "rotates": false }, - { "id": "tr_nailboard", "bg": 4755, "rotates": false }, - { "id": "tr_portal", "fg": 4767, "bg": [ ], "rotates": false }, - { "id": "tr_raincatcher", "fg": 3535, "rotates": false }, - { "id": "tr_rollmat", "fg": 4768, "rotates": false }, - { "id": "tr_sinkhole", "fg": 4769, "rotates": false }, - { "id": "tr_sinkhole_season_winter", "fg": 4770, "rotates": false }, - { "id": "tr_snare", "bg": 4753, "rotates": false }, - { "id": "tr_telepad", "fg": 4771, "bg": [ ], "rotates": false }, - { "id": "tr_temple_flood", "fg": 4769 }, - { "id": "tr_tripwire", "bg": 4756, "rotates": false }, + "additional_tiles": [ { "id": "center", "bg": 4759 }, { "id": "t_connection", "bg": 4759 } ] + }, + { "id": "tr_engine", "fg": 4770 }, + { "id": "tr_fur_rollmat", "fg": 4771, "rotates": false }, + { "id": "tr_goo", "fg": 4772, "bg": 3657, "rotates": false }, + { "id": "tr_heavy_snare", "bg": 4760, "rotates": false }, + { "id": "tr_lava", "fg": 3492, "rotates": false }, + { "id": "tr_leather_funnel", "fg": 4773, "rotates": false }, + { "id": "tr_nailboard", "bg": 4762, "rotates": false }, + { "id": "tr_portal", "fg": 4774, "bg": [ ], "rotates": false }, + { "id": "tr_raincatcher", "fg": 3542, "rotates": false }, + { "id": "tr_rollmat", "fg": 4775, "rotates": false }, + { "id": "tr_sinkhole", "fg": 4776, "rotates": false }, + { "id": "tr_sinkhole_season_winter", "fg": 4777, "rotates": false }, + { "id": "tr_snare", "bg": 4760, "rotates": false }, + { "id": "tr_telepad", "fg": 4778, "bg": [ ], "rotates": false }, + { "id": "tr_temple_flood", "fg": 4776 }, + { "id": "tr_tripwire", "bg": 4763, "rotates": false }, { "id": [ "vp_halfboard_cover_right", "vp_halfboard_cover_left" ], - "fg": [ 4819, 4822, 4821, 4820 ], + "fg": [ 4826, 4829, 4828, 4827 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4819, 4822, 4821, 4820 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4826, 4829, 4828, 4827 ] } ] }, { "id": "vp_halfboard_hatch_wheel_left", - "fg": [ 4839, 4842, 4841, 4840 ], + "fg": [ 4846, 4849, 4848, 4847 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4839, 4842, 4841, 4840 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4846, 4849, 4848, 4847 ] } ] }, { "id": "vp_halfboard_hatch_wheel_right", - "fg": [ 4835, 4838, 4837, 4836 ], + "fg": [ 4842, 4845, 4844, 4843 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4835, 4838, 4837, 4836 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4842, 4845, 4844, 4843 ] } ] }, { "id": "vp_halfboard_wheel_left", - "fg": [ 4850, 4852, 4853, 4851 ], + "fg": [ 4857, 4859, 4860, 4858 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4850, 4852, 4853, 4851 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4857, 4859, 4860, 4858 ] } ] }, { "id": "vp_halfboard_wheel_right", - "fg": [ 4853, 4851, 4850, 4852 ], + "fg": [ 4860, 4858, 4857, 4859 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4853, 4851, 4850, 4852 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4860, 4858, 4857, 4859 ] } ] }, { "id": [ "vp_board_wheel_left", "vp_board_nw_edge" ], - "fg": [ 4802, 4804, 4805, 4803 ], + "fg": [ 4809, 4811, 4812, 4810 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4802, 4804, 4805, 4803 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4809, 4811, 4812, 4810 ] } ] }, { "id": [ "vp_board_wheel_right", "vp_board_ne_edge" ], - "fg": [ 4805, 4803, 4802, 4804 ], + "fg": [ 4812, 4810, 4809, 4811 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4805, 4803, 4802, 4804 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4812, 4810, 4809, 4811 ] } ] }, { "id": "vp_stowboard_wheel_left", - "fg": [ 4972, 4974, 4975, 4973 ], + "fg": [ 4979, 4981, 4982, 4980 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4972, 4974, 4975, 4973 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4979, 4981, 4982, 4980 ] } ] }, { "id": "vp_stowboard_wheel_right", - "fg": [ 4975, 4973, 4972, 4974 ], + "fg": [ 4982, 4980, 4979, 4981 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4975, 4973, 4972, 4974 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4982, 4980, 4979, 4981 ] } ] }, { "id": "vp_windshield_wheel_left", - "fg": [ 5435, 5442, 5441, 5440 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5435, 5442, 5441, 5440 ] } ], + "fg": [ 5442, 5449, 5448, 5447 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5442, 5449, 5448, 5447 ] } ], "multitile": true }, { "id": "vp_windshield_wheel_right", - "fg": [ 5427, 5434, 5433, 5432 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5427, 5434, 5433, 5432 ] } ], + "fg": [ 5434, 5441, 5440, 5439 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5434, 5441, 5440, 5439 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_left", - "fg": [ 5423, 5426, 5425, 5424 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5423, 5426, 5425, 5424 ] } ], + "fg": [ 5430, 5433, 5432, 5431 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5430, 5433, 5432, 5431 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_right", - "fg": [ 5451, 5454, 5453, 5452 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5451, 5454, 5453, 5452 ] } ], + "fg": [ 5458, 5461, 5460, 5459 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5458, 5461, 5460, 5459 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_left", - "fg": [ 5423, 5426, 5425, 5424 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5423, 5426, 5425, 5424 ] } ], + "fg": [ 5430, 5433, 5432, 5431 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5430, 5433, 5432, 5431 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_right", - "fg": [ 5451, 5454, 5453, 5452 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5451, 5454, 5453, 5452 ] } ], + "fg": [ 5458, 5461, 5460, 5459 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5458, 5461, 5460, 5459 ] } ], "multitile": true }, { "id": [ "vp_seed_drill" ], - "fg": [ 4781, 4783, 4782, 4780 ], + "fg": [ 4788, 4790, 4789, 4787 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4781, 4783, 4782, 4780 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4788, 4790, 4789, 4787 ] } ] }, { "id": [ "vp_wing_mirror" ], - "fg": 4778, + "fg": 4785, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4778 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4785 } ] }, { "id": "vp_board_ne", - "fg": [ 4788, 4791, 4790, 4789 ], + "fg": [ 4795, 4798, 4797, 4796 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4788, 4791, 4790, 4789 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4795, 4798, 4797, 4796 ] } ] }, { "id": "vp_board_nw", - "fg": [ 4792, 4795, 4794, 4793 ], + "fg": [ 4799, 4802, 4801, 4800 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4792, 4795, 4794, 4793 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4799, 4802, 4801, 4800 ] } ] }, { "id": "vp_board_se", - "fg": [ 4796, 4798, 4792, 4797 ], + "fg": [ 4803, 4805, 4799, 4804 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4796, 4798, 4792, 4797 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4803, 4805, 4799, 4804 ] } ] }, { "id": "vp_board_sw", - "fg": [ 4799, 4801, 4788, 4800 ], + "fg": [ 4806, 4808, 4795, 4807 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4799, 4801, 4788, 4800 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4806, 4808, 4795, 4807 ] } ] }, { "id": "vp_board_vertical_left", - "fg": [ 4802, 4804, 4805, 4803 ], + "fg": [ 4809, 4811, 4812, 4810 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4802, 4804, 4805, 4803 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4809, 4811, 4812, 4810 ] } ] }, { "id": "vp_board_vertical_right", - "fg": [ 4805, 4803, 4802, 4804 ], + "fg": [ 4812, 4810, 4809, 4811 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4805, 4803, 4802, 4804 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4812, 4810, 4809, 4811 ] } ] }, { "id": [ "vp_board_horizontal", "vp_board_horizontal_2" ], - "fg": 4784, + "fg": 4791, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4784 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4791 } ] }, { "id": "vp_board_horizontal_front", - "fg": [ 4784, 4786, 4784, 4785 ], + "fg": [ 4791, 4793, 4791, 4792 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4784, 4786, 4784, 4785 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4791, 4793, 4791, 4792 ] } ] }, { "id": "vp_board_horizontal_rear", - "fg": [ 4787, 4785, 4784, 4786 ], + "fg": [ 4794, 4792, 4791, 4793 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4787, 4785, 4784, 4786 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4794, 4792, 4791, 4793 ] } ] }, { "id": [ "vp_board_vertical", "vp_board_vertical_2" ], - "fg": 4802, + "fg": 4809, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4802 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4809 } ] }, { "id": "vp_hdboard_ne", - "fg": [ 4866, 4869, 4868, 4867 ], + "fg": [ 4873, 4876, 4875, 4874 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4866, 4869, 4868, 4867 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4873, 4876, 4875, 4874 ] } ] }, { "id": "vp_hdboard_nw", - "fg": [ 4870, 4873, 4872, 4871 ], + "fg": [ 4877, 4880, 4879, 4878 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4870, 4873, 4872, 4871 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4877, 4880, 4879, 4878 ] } ] }, { "id": "vp_hdboard_se", - "fg": [ 4874, 4876, 4870, 4875 ], + "fg": [ 4881, 4883, 4877, 4882 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4874, 4876, 4870, 4875 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4881, 4883, 4877, 4882 ] } ] }, { "id": "vp_hdboard_sw", - "fg": [ 4877, 4879, 4866, 4878 ], + "fg": [ 4884, 4886, 4873, 4885 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4877, 4879, 4866, 4878 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4884, 4886, 4873, 4885 ] } ] }, { "id": "vp_hdboard_vertical_left", - "fg": [ 4880, 4882, 4881, 4882 ], + "fg": [ 4887, 4889, 4888, 4889 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4880, 4882, 4881, 4882 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4887, 4889, 4888, 4889 ] } ] }, { "id": "vp_hdboard_vertical_right", - "fg": [ 4881, 4882, 4880, 4882 ], + "fg": [ 4888, 4889, 4887, 4889 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4881, 4882, 4880, 4882 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4888, 4889, 4887, 4889 ] } ] }, { "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ], - "fg": 4862, + "fg": 4869, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4862 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4869 } ] }, { "id": "vp_hdboard_horizontal_front", - "fg": [ 4862, 4864, 4862, 4863 ], + "fg": [ 4869, 4871, 4869, 4870 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4862, 4864, 4862, 4863 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4869, 4871, 4869, 4870 ] } ] }, { "id": "vp_hdboard_horizontal_rear", - "fg": [ 4865, 4863, 4862, 4864 ], + "fg": [ 4872, 4870, 4869, 4871 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4865, 4863, 4862, 4864 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4872, 4870, 4869, 4871 ] } ] }, { "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ], - "fg": 4880, + "fg": 4887, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4880 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4887 } ] }, { "id": "vp_halfboard_ne", - "fg": [ 4827, 4830, 4829, 4828 ], + "fg": [ 4834, 4837, 4836, 4835 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4827, 4830, 4829, 4828 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4834, 4837, 4836, 4835 ] } ] }, { "id": "vp_halfboard_nw", - "fg": [ 4831, 4834, 4833, 4832 ], + "fg": [ 4838, 4841, 4840, 4839 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4831, 4834, 4833, 4832 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4838, 4841, 4840, 4839 ] } ] }, { "id": "vp_halfboard_se", - "fg": [ 4835, 4838, 4837, 4836 ], + "fg": [ 4842, 4845, 4844, 4843 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4835, 4838, 4837, 4836 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4842, 4845, 4844, 4843 ] } ] }, { "id": "vp_halfboard_sw", - "fg": [ 4839, 4842, 4841, 4840 ], + "fg": [ 4846, 4849, 4848, 4847 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4839, 4842, 4841, 4840 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4846, 4849, 4848, 4847 ] } ] }, { "id": "vp_halfboard_vertical_left", - "fg": [ 4850, 4852, 4853, 4851 ], + "fg": [ 4857, 4859, 4860, 4858 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4850, 4852, 4853, 4851 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4857, 4859, 4860, 4858 ] } ] }, { "id": "vp_halfboard_vertical_2_left", - "fg": [ 4844, 4846, 4847, 4845 ], + "fg": [ 4851, 4853, 4854, 4852 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4844, 4846, 4847, 4845 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4851, 4853, 4854, 4852 ] } ] }, { "id": "vp_halfboard_vertical_right", - "fg": [ 4853, 4851, 4850, 4852 ], + "fg": [ 4860, 4858, 4857, 4859 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4853, 4851, 4850, 4852 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4860, 4858, 4857, 4859 ] } ] }, { "id": "vp_halfboard_vertical_2_right", - "fg": [ 4847, 4849, 4844, 4848 ], + "fg": [ 4854, 4856, 4851, 4855 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4847, 4849, 4844, 4848 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4854, 4856, 4851, 4855 ] } ] }, { "id": "vp_halfboard_vertical_t_left", - "fg": [ 4855, 4857, 4856, 4854 ], + "fg": [ 4862, 4864, 4863, 4861 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4855, 4857, 4856, 4854 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4862, 4864, 4863, 4861 ] } ] }, { "id": "vp_halfboard_vertical_t_right", - "fg": [ 4859, 4861, 4860, 4858 ], + "fg": [ 4866, 4868, 4867, 4865 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4859, 4861, 4860, 4858 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4866, 4868, 4867, 4865 ] } ] }, { "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ], - "fg": 4810, + "fg": 4817, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4810 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4817 } ] }, { "id": "vp_halfboard_horizontal_front", - "fg": [ 4819, 4822, 4821, 4820 ], + "fg": [ 4826, 4829, 4828, 4827 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4819, 4822, 4821, 4820 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4826, 4829, 4828, 4827 ] } ] }, { "id": "vp_halfboard_horizontal_2_front", - "fg": [ 4811, 4814, 4813, 4812 ], + "fg": [ 4818, 4821, 4820, 4819 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4811, 4814, 4813, 4812 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4818, 4821, 4820, 4819 ] } ] }, { "id": "vp_halfboard_horizontal_rear", - "fg": [ 4823, 4826, 4825, 4824 ], + "fg": [ 4830, 4833, 4832, 4831 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4823, 4826, 4825, 4824 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4830, 4833, 4832, 4831 ] } ] }, { "id": "vp_halfboard_horizontal_2_rear", - "fg": [ 4815, 4818, 4817, 4816 ], + "fg": [ 4822, 4825, 4824, 4823 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4815, 4818, 4817, 4816 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4822, 4825, 4824, 4823 ] } ] }, { "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ], - "fg": 4843, + "fg": 4850, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4843 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4850 } ] }, { "id": "vp_halfboard_cover", - "fg": [ 4806, 4809, 4808, 4807 ], + "fg": [ 4813, 4816, 4815, 4814 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4806, 4809, 4808, 4807 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4813, 4816, 4815, 4814 ] } ] }, { "id": "vp_hdhalfboard_ne", - "fg": 4897, + "fg": 4904, "//": [ "vp_hdhalfboard_ne_rotW", "vp_hdhalfboard_ne_rotS", "vp_hdhalfboard_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4897 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4904 } ] }, { "id": "vp_hdhalfboard_nw", - "fg": 4898, + "fg": 4905, "//": [ "vp_hdhalfboard_nw_rotW", "vp_hdhalfboard_nw_rotS", "vp_hdhalfboard_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4898 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4905 } ] }, { "id": "vp_hdhalfboard_se", - "fg": 4899, + "fg": 4906, "//": [ "vp_hdhalfboard_se_rotW", "vp_hdhalfboard_se_rotS", "vp_hdhalfboard_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4899 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4906 } ] }, { "id": "vp_hdhalfboard_sw", - "fg": 4900, + "fg": 4907, "//": [ "vp_hdhalfboard_sw_rotW", "vp_hdhalfboard_sw_rotS", "vp_hdhalfboard_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4900 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4907 } ] }, { "id": "vp_hdhalfboard_vertical_left", - "fg": 4905, + "fg": 4912, "//": [ "vp_hdhalfboard_vertical_left_rotW_right_rotE", "vp_hdhalfboard_vertical_right", @@ -6349,11 +6357,11 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4905 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4912 } ] }, { "id": "vp_hdhalfboard_vertical_right", - "fg": 4906, + "fg": 4913, "//": [ "vp_hdhalfboard_vertical_left_rotE_right_rotW", "vp_hdhalfboard_vertical_left", @@ -6361,118 +6369,118 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4906 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4913 } ] }, { "id": [ "vp_hdhalfboard_horizontal" ], - "fg": 4892, + "fg": 4899, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4892 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4899 } ] }, { "id": [ "vp_hdhalfboard_horizontal_2" ], - "fg": 4887, + "fg": 4894, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4887 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4894 } ] }, { "id": "vp_hdhalfboard_horizontal_front", - "fg": [ 4892, 4895, 4894, 4893 ], + "fg": [ 4899, 4902, 4901, 4900 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4892, 4895, 4894, 4893 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4899, 4902, 4901, 4900 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_front", - "fg": [ 4887, 4890, 4889, 4888 ], + "fg": [ 4894, 4897, 4896, 4895 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4887, 4890, 4889, 4888 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4894, 4897, 4896, 4895 ] } ] }, { "id": "vp_hdhalfboard_horizontal_rear", - "fg": [ 4896, 4893, 4892, 4895 ], + "fg": [ 4903, 4900, 4899, 4902 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4896, 4893, 4892, 4895 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4903, 4900, 4899, 4902 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_rear", - "fg": [ 4891, 4888, 4887, 4890 ], + "fg": [ 4898, 4895, 4894, 4897 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4891, 4888, 4887, 4890 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4898, 4895, 4894, 4897 ] } ] }, { "id": [ "vp_hdhalfboard_vertical" ], - "fg": 4901, + "fg": 4908, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4901 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4908 } ] }, { "id": [ "vp_hdhalfboard_vertical_2" ], - "fg": 4902, + "fg": 4909, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4902 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4909 } ] }, { "id": "vp_hdhalfboard_vertical_2_left", - "fg": 4903, + "fg": 4910, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4903 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4910 } ] }, { "id": "vp_hdhalfboard_vertical_2_right", - "fg": 4904, + "fg": 4911, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4904 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4911 } ] }, { "id": "vp_hdhalfboard_cover", - "fg": [ 4883, 4886, 4885, 4884 ], + "fg": [ 4890, 4893, 4892, 4891 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4883, 4886, 4885, 4884 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4890, 4893, 4892, 4891 ] } ] }, { "id": "vp_xlhalfboard_ne", - "fg": [ 4916, 4919, 4918, 4917 ], + "fg": [ 4923, 4926, 4925, 4924 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4916, 4919, 4918, 4917 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4923, 4926, 4925, 4924 ] } ] }, { "id": "vp_xlhalfboard_nw", - "fg": [ 4920, 4923, 4922, 4921 ], + "fg": [ 4927, 4930, 4929, 4928 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4920, 4923, 4922, 4921 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4927, 4930, 4929, 4928 ] } ] }, { "id": "vp_xlhalfboard_se", - "fg": 4924, + "fg": 4931, "//": [ "vp_xlhalfboard_se_rotW", "vp_xlhalfboard_se_rotS", "vp_xlhalfboard_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4924 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4931 } ] }, { "id": "vp_xlhalfboard_sw", - "fg": 4925, + "fg": 4932, "//": [ "vp_xlhalfboard_sw_rotW", "vp_xlhalfboard_sw_rotS", "vp_xlhalfboard_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4925 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4932 } ] }, { "id": "vp_xlhalfboard_vertical_left", - "fg": 4927, + "fg": 4934, "//": [ "vp_xlhalfboard_vertical_left_rotW_right_rotE", "vp_xlhalfboard_vertical_right", @@ -6480,11 +6488,11 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4927 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4934 } ] }, { "id": "vp_xlhalfboard_vertical_right", - "fg": 4928, + "fg": 4935, "//": [ "vp_xlhalfboard_vertical_left_rotE_right_rotW", "vp_xlhalfboard_vertical_left", @@ -6492,458 +6500,458 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4928 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4935 } ] }, { "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ], - "fg": 4911, + "fg": 4918, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4911 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4918 } ] }, { "id": "vp_xlhalfboard_horizontal_front", - "fg": [ 4911, 4914, 4913, 4912 ], + "fg": [ 4918, 4921, 4920, 4919 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4911, 4914, 4913, 4912 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4918, 4921, 4920, 4919 ] } ] }, { "id": "vp_xlhalfboard_horizontal_rear", - "fg": 4915, + "fg": 4922, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4915 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4922 } ] }, { "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ], - "fg": 4926, + "fg": 4933, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4926 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4933 } ] }, { "id": "vp_xlhalfboard_cover", - "fg": [ 4907, 4910, 4909, 4908 ], + "fg": [ 4914, 4917, 4916, 4915 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4907, 4910, 4909, 4908 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4914, 4917, 4916, 4915 ] } ] }, { "id": "vp_cloth_halfboard_horizontal", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_horizontal_front", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_horizontal_rear", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_horizontal_2", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_horizontal_2_front", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_horizontal_2_rear", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_ne", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_nw", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_se", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_sw", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_vertical", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_vertical_left", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_vertical_right", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_vertical_2", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_vertical_2_left", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_cloth_halfboard_vertical_2_right", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_horizontal", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_horizontal_front", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_horizontal_rear", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_ne", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_nw", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_se", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_sw", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_vertical", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_vertical_left", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, { "id": "vp_clothboard_vertical_right", - "fg": 4929, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4929 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] }, - { "id": "vp_roof_cloth", "fg": 1236, "rotates": false }, + { "id": "vp_roof_cloth", "fg": 1237, "rotates": false }, { "id": "vp_stowboard_ne", - "fg": [ 4958, 4961, 4960, 4959 ], + "fg": [ 4965, 4968, 4967, 4966 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4958, 4961, 4960, 4959 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4965, 4968, 4967, 4966 ] } ] }, { "id": "vp_stowboard_nw", - "fg": [ 4962, 4965, 4964, 4963 ], + "fg": [ 4969, 4972, 4971, 4970 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4962, 4965, 4964, 4963 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4969, 4972, 4971, 4970 ] } ] }, { "id": "vp_stowboard_se", - "fg": [ 4966, 4968, 4962, 4967 ], + "fg": [ 4973, 4975, 4969, 4974 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4966, 4968, 4962, 4967 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4973, 4975, 4969, 4974 ] } ] }, { "id": "vp_stowboard_sw", - "fg": [ 4969, 4971, 4958, 4970 ], + "fg": [ 4976, 4978, 4965, 4977 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4969, 4971, 4958, 4970 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4976, 4978, 4965, 4977 ] } ] }, { "id": "vp_stowboard_vertical_left", - "fg": [ 4972, 4974, 4975, 4973 ], + "fg": [ 4979, 4981, 4982, 4980 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4972, 4974, 4975, 4973 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4979, 4981, 4982, 4980 ] } ] }, { "id": "vp_stowboard_vertical_right", - "fg": [ 4975, 4973, 4972, 4974 ], + "fg": [ 4982, 4980, 4979, 4981 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4975, 4973, 4972, 4974 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4982, 4980, 4979, 4981 ] } ] }, { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ], - "fg": 4953, + "fg": 4960, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4953 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4960 } ] }, { "id": "vp_stowboard_horizontal_front", - "fg": [ 4953, 4956, 4955, 4954 ], + "fg": [ 4960, 4963, 4962, 4961 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4953, 4956, 4955, 4954 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4960, 4963, 4962, 4961 ] } ] }, { "id": "vp_stowboard_horizontal_rear", - "fg": [ 4957, 4954, 4953, 4956 ], + "fg": [ 4964, 4961, 4960, 4963 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4957, 4954, 4953, 4956 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4964, 4961, 4960, 4963 ] } ] }, { "id": [ "vp_stowboard_vertical" ], - "fg": 4973, + "fg": 4980, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4973 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4980 } ] }, { "id": "vp_hdstowboard_ne", - "fg": [ 4935, 4938, 4937, 4936 ], + "fg": [ 4942, 4945, 4944, 4943 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4935, 4938, 4937, 4936 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4942, 4945, 4944, 4943 ] } ] }, { "id": "vp_hdstowboard_nw", - "fg": [ 4939, 4942, 4941, 4940 ], + "fg": [ 4946, 4949, 4948, 4947 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4939, 4942, 4941, 4940 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4946, 4949, 4948, 4947 ] } ] }, { "id": "vp_hdstowboard_se", - "fg": [ 4943, 4945, 4939, 4944 ], + "fg": [ 4950, 4952, 4946, 4951 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4943, 4945, 4939, 4944 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4950, 4952, 4946, 4951 ] } ] }, { "id": "vp_hdstowboard_sw", - "fg": [ 4946, 4948, 4935, 4947 ], + "fg": [ 4953, 4955, 4942, 4954 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4946, 4948, 4935, 4947 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4953, 4955, 4942, 4954 ] } ] }, { "id": "vp_hdstowboard_vertical_left", - "fg": [ 4949, 4951, 4952, 4950 ], + "fg": [ 4956, 4958, 4959, 4957 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4949, 4951, 4952, 4950 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4956, 4958, 4959, 4957 ] } ] }, { "id": "vp_hdstowboard_vertical_right", - "fg": [ 4952, 4950, 4949, 4951 ], + "fg": [ 4959, 4957, 4956, 4958 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4952, 4950, 4949, 4951 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4959, 4957, 4956, 4958 ] } ] }, { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ], - "fg": 4930, + "fg": 4937, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4930 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4937 } ] }, { "id": "vp_hdstowboard_horizontal_front", - "fg": [ 4930, 4933, 4932, 4931 ], + "fg": [ 4937, 4940, 4939, 4938 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4930, 4933, 4932, 4931 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4937, 4940, 4939, 4938 ] } ] }, { "id": "vp_hdstowboard_horizontal_rear", - "fg": [ 4934, 4931, 4930, 4933 ], + "fg": [ 4941, 4938, 4937, 4940 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4934, 4931, 4930, 4933 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4941, 4938, 4937, 4940 ] } ] }, { "id": [ "vp_hdstowboard_vertical" ], - "fg": 4950, + "fg": 4957, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4950 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4957 } ] }, { "id": "vp_woodboard_ne", - "fg": [ 4980, 4981, 4986, 4987 ], + "fg": [ 4987, 4988, 4993, 4994 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4980, 4981, 4986, 4987 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4987, 4988, 4993, 4994 ] } ] }, { "id": "vp_woodboard_nw", - "fg": [ 4982, 4983, 4984, 4985 ], + "fg": [ 4989, 4990, 4991, 4992 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4982, 4983, 4984, 4985 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4989, 4990, 4991, 4992 ] } ] }, { "id": "vp_woodboard_se", - "fg": [ 4984, 4985, 4982, 4983 ], + "fg": [ 4991, 4992, 4989, 4990 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4984, 4985, 4982, 4983 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4991, 4992, 4989, 4990 ] } ] }, { "id": "vp_woodboard_sw", - "fg": [ 4986, 4987, 4980, 4981 ], + "fg": [ 4993, 4994, 4987, 4988 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4986, 4987, 4980, 4981 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4993, 4994, 4987, 4988 ] } ] }, { "id": "vp_woodboard_vertical_left", - "fg": [ 4988, 4978, 4989, 4976 ], + "fg": [ 4995, 4985, 4996, 4983 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4988, 4978, 4989, 4976 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4995, 4985, 4996, 4983 ] } ] }, { "id": "vp_woodboard_vertical_right", - "fg": [ 4989, 4976, 4988, 4978 ], + "fg": [ 4996, 4983, 4995, 4985 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4989, 4976, 4988, 4978 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4996, 4983, 4995, 4985 ] } ] }, { "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ], - "fg": [ 4976, 4977, 4978, 4979 ], + "fg": [ 4983, 4984, 4985, 4986 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4976, 4977, 4978, 4979 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4983, 4984, 4985, 4986 ] } ] }, { "id": "vp_woodboard_horizontal_rear", - "fg": [ 4978, 4979, 4976, 4977 ], + "fg": [ 4985, 4986, 4983, 4984 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 4978, 4979, 4976, 4977 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4985, 4986, 4983, 4984 ] } ] }, { "id": [ "vp_woodhalfboard_ne" ], - "fg": 4994, + "fg": 5001, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4994 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5001 } ] }, { "id": "vp_woodhalfboard_nw", - "fg": 4993, + "fg": 5000, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4993 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5000 } ] }, { "id": "vp_woodhalfboard_se", - "fg": 4998, + "fg": 5005, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4998 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5005 } ] }, { "id": "vp_woodhalfboard_sw", - "fg": 4997, + "fg": 5004, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4997 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5004 } ] }, { "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ], - "fg": 4995, + "fg": 5002, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4995 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5002 } ] }, { "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ], - "fg": 4999, + "fg": 5006, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4999 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5006 } ] }, { "id": [ @@ -6952,550 +6960,550 @@ "vp_woodhalfboard_horizontal_front", "vp_woodhalfboard_horizontal_2_front" ], - "fg": 4992, + "fg": 4999, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4992 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4999 } ] }, { "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ], - "fg": 4996, + "fg": 5003, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4996 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5003 } ] }, { "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ], - "fg": 4991, + "fg": 4998, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4991 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4998 } ] }, { "id": [ "vp_woodhalfboard_cover" ], - "fg": 4990, + "fg": 4997, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 4990 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4997 } ] }, { "id": [ "vp_basketsm", "vp_basketsm_external" ], - "fg": [ 5013, 5012 ], + "fg": [ 5020, 5019 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5013, 5012 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5020, 5019 ] } ] }, { "id": "vp_basketsm_bike_rear", - "fg": [ 5009, 5011, 5010, 5008 ], + "fg": [ 5016, 5018, 5017, 5015 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5009, 5011, 5010, 5008 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5016, 5018, 5017, 5015 ] } ] }, { "id": [ "vp_basketlg", "vp_basketlg_external" ], - "fg": [ 5007, 5006 ], + "fg": [ 5014, 5013 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5007, 5006 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5014, 5013 ] } ] }, { "id": "vp_basketlg_cart", - "fg": [ 5003, 5005, 5004, 5002 ], + "fg": [ 5010, 5012, 5011, 5009 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5003, 5005, 5004, 5002 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5010, 5012, 5011, 5009 ] } ] }, { "id": "vp_box", - "fg": [ 5014, 5015 ], + "fg": [ 5021, 5022 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5014, 5015 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5021, 5022 ] } ] }, { "id": "vp_wood box", - "fg": [ 5024, 5023 ], + "fg": [ 5031, 5030 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5024, 5023 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5031, 5030 ] } ] }, { "id": "vp_box_wheelbarrow", - "fg": [ 5017, 5019, 5018, 5016 ], + "fg": [ 5024, 5026, 5025, 5023 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5017, 5019, 5018, 5016 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5024, 5026, 5025, 5023 ] } ] }, { "id": "vp_trunk", - "fg": 5021, + "fg": 5028, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5021 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5028 } ] }, { "id": "vp_trunk_rear_edge", - "fg": 5022, + "fg": 5029, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5022 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5029 } ] }, { "id": "vp_cargo_space", - "fg": 5020, + "fg": 5027, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5020 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5027 } ] }, { "id": "vp_external_tank", - "fg": 5000, + "fg": 5007, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5000 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5007 } ] }, { "id": [ "vp_door_internal" ], - "fg": [ 5049, 5053, 5051, 5047 ], + "fg": [ 5056, 5060, 5058, 5054 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5050, 5054, 5052, 5048 ] }, { "id": "broken", "fg": 5025, "bg": [ 5049, 5053, 5051, 5047 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5057, 5061, 5059, 5055 ] }, { "id": "broken", "fg": 5032, "bg": [ 5056, 5060, 5058, 5054 ] } ] }, { "id": [ "vp_door", "vp_door_inboard" ], - "fg": 5045, + "fg": 5052, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 5046 }, { "id": "broken", "fg": 5025, "bg": 5045 } ] + "additional_tiles": [ { "id": "open", "fg": 5053 }, { "id": "broken", "fg": 5032, "bg": 5052 } ] }, { "id": [ "vp_door_front" ], - "fg": [ 5037, 5044, 5043, 5042 ], + "fg": [ 5044, 5051, 5050, 5049 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5039, 5041, 5040, 5038 ] }, { "id": "broken", "fg": 5025, "bg": [ 5037, 5044, 5043, 5042 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5044, 5051, 5050, 5049 ] } ] }, { "id": [ "vp_door_rear" ], - "fg": [ 5091, 5098, 5097, 5096 ], + "fg": [ 5098, 5105, 5104, 5103 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5093, 5095, 5094, 5092 ] }, { "id": "broken", "fg": 5025, "bg": [ 5091, 5098, 5097, 5096 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5098, 5105, 5104, 5103 ] } ] }, { "id": [ "vp_door_left", "vp_door_vertical_left" ], - "fg": [ 5029, 5032, 5031, 5030 ], + "fg": [ 5036, 5039, 5038, 5037 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5056, 5058, 5057, 5055 ] }, { "id": "broken", "fg": 5025, "bg": [ 5029, 5032, 5031, 5030 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5063, 5065, 5064, 5062 ] }, { "id": "broken", "fg": 5032, "bg": [ 5036, 5039, 5038, 5037 ] } ] }, { "id": [ "vp_door_nw", "vp_door_front_left" ], - "fg": [ 5063, 5066, 5065, 5064 ], + "fg": [ 5070, 5073, 5072, 5071 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5056, 5058, 5057, 5055 ] }, { "id": "broken", "fg": 5025, "bg": [ 5063, 5066, 5065, 5064 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5063, 5065, 5064, 5062 ] }, { "id": "broken", "fg": 5032, "bg": [ 5070, 5073, 5072, 5071 ] } ] }, { "id": [ "vp_door_sw", "vp_door_rear_left" ], - "fg": [ 5112, 5115, 5114, 5113 ], + "fg": [ 5119, 5122, 5121, 5120 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5056, 5058, 5057, 5055 ] }, { "id": "broken", "fg": 5025, "bg": [ 5112, 5115, 5114, 5113 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5063, 5065, 5064, 5062 ] }, { "id": "broken", "fg": 5032, "bg": [ 5119, 5122, 5121, 5120 ] } ] }, { "id": [ "vp_door_right", "vp_door_vertical_right", "vp_door_sliding" ], - "fg": [ 5033, 5036, 5035, 5034 ], + "fg": [ 5040, 5043, 5042, 5041 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5025, "bg": [ 5033, 5036, 5035, 5034 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5107, 5109, 5108, 5106 ] }, { "id": "broken", "fg": 5032, "bg": [ 5040, 5043, 5042, 5041 ] } ] }, { "id": [ "vp_door_ne", "vp_door_front_right" ], - "fg": [ 5059, 5062, 5061, 5060 ], + "fg": [ 5066, 5069, 5068, 5067 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5025, "bg": [ 5059, 5062, 5061, 5060 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5107, 5109, 5108, 5106 ] }, { "id": "broken", "fg": 5032, "bg": [ 5066, 5069, 5068, 5067 ] } ] }, { "id": [ "vp_door_se", "vp_door_rear_right" ], - "fg": [ 5103, 5106, 5105, 5104 ], + "fg": [ 5110, 5113, 5112, 5111 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5025, "bg": [ 5103, 5106, 5105, 5104 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5107, 5109, 5108, 5106 ] }, { "id": "broken", "fg": 5032, "bg": [ 5110, 5113, 5112, 5111 ] } ] }, { "id": "vp_door_shutter", - "fg": [ 5107, 5111, 5110, 5109 ], + "fg": [ 5114, 5118, 5117, 5116 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 5108 }, { "id": "broken", "fg": 5025, "bg": [ 5107, 5111, 5110, 5109 ] } ] + "additional_tiles": [ { "id": "open", "fg": 5115 }, { "id": "broken", "fg": 5032, "bg": [ 5114, 5118, 5117, 5116 ] } ] }, { "id": "vp_door_trunk", - "fg": [ 5116, 5123, 5122, 5121 ], + "fg": [ 5123, 5130, 5129, 5128 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5117, 5120, 5119, 5118 ] }, { "id": "broken", "fg": 5025, "bg": [ 5116, 5123, 5122, 5121 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5124, 5127, 5126, 5125 ] }, { "id": "broken", "fg": 5032, "bg": [ 5123, 5130, 5129, 5128 ] } ] }, { "id": [ "vp_hddoor_trunk", "vp_hatch", "vp_hatch_opaque", "vp_hdhatch", "vp_hdhatch_opaque" ], - "fg": [ 5172, 5179, 5178, 5177 ], + "fg": [ 5179, 5186, 5185, 5184 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5173, 5176, 5175, 5174 ] }, { "id": "broken", "fg": 5025, "bg": [ 5172, 5179, 5178, 5177 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5180, 5183, 5182, 5181 ] }, { "id": "broken", "fg": 5032, "bg": [ 5179, 5186, 5185, 5184 ] } ] }, { "id": [ "vp_hddoor_left" ], - "fg": [ 5125, 5127, 5126, 5124 ], + "fg": [ 5132, 5134, 5133, 5131 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5137, 5139, 5138, 5136 ] }, { "id": "broken", "fg": 5025, "bg": [ 5125, 5127, 5126, 5124 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5144, 5146, 5145, 5143 ] }, { "id": "broken", "fg": 5032, "bg": [ 5132, 5134, 5133, 5131 ] } ] }, { "id": [ "vp_hddoor_right" ], - "fg": [ 5129, 5131, 5130, 5128 ], + "fg": [ 5136, 5138, 5137, 5135 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5169, 5171, 5170, 5168 ] }, { "id": "broken", "fg": 5025, "bg": [ 5129, 5131, 5130, 5128 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5176, 5178, 5177, 5175 ] }, { "id": "broken", "fg": 5032, "bg": [ 5136, 5138, 5137, 5135 ] } ] }, { "id": [ "vp_hddoor", "vp_hddoor_front" ], - "fg": [ 5133, 5135, 5134, 5132 ], + "fg": [ 5140, 5142, 5141, 5139 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5039, 5041, 5040, 5038 ] }, { "id": "broken", "fg": 5025, "bg": [ 5133, 5135, 5134, 5132 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5140, 5142, 5141, 5139 ] } ] }, { "id": [ "vp_hddoor_rear" ], - "fg": [ 5165, 5167, 5166, 5164 ], + "fg": [ 5172, 5174, 5173, 5171 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5093, 5095, 5094, 5092 ] }, { "id": "broken", "fg": 5025, "bg": [ 5165, 5167, 5166, 5164 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5172, 5174, 5173, 5171 ] } ] }, { "id": [ "vp_door_opaque_left" ], - "fg": [ 5076, 5078, 5077, 5075 ], + "fg": [ 5083, 5085, 5084, 5082 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5072, 5074, 5073, 5071 ] }, { "id": "broken", "fg": 5025, "bg": [ 5076, 5078, 5077, 5075 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5079, 5081, 5080, 5078 ] }, { "id": "broken", "fg": 5032, "bg": [ 5083, 5085, 5084, 5082 ] } ] }, { "id": [ "vp_door_opaque_right" ], - "fg": [ 5088, 5090, 5089, 5087 ], + "fg": [ 5095, 5097, 5096, 5094 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5084, 5086, 5085, 5083 ] }, { "id": "broken", "fg": 5025, "bg": [ 5088, 5090, 5089, 5087 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5091, 5093, 5092, 5090 ] }, { "id": "broken", "fg": 5032, "bg": [ 5095, 5097, 5096, 5094 ] } ] }, { "id": [ "vp_door_opaque", "vp_door_opaque_front" ], - "fg": [ 5068, 5070, 5069, 5067 ], + "fg": [ 5075, 5077, 5076, 5074 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5039, 5041, 5040, 5038 ] }, { "id": "broken", "fg": 5025, "bg": [ 5068, 5070, 5069, 5067 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5075, 5077, 5076, 5074 ] } ] }, { "id": [ "vp_door_opaque_rear" ], - "fg": [ 5080, 5082, 5081, 5079 ], + "fg": [ 5087, 5089, 5088, 5086 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5093, 5095, 5094, 5092 ] }, { "id": "broken", "fg": 5025, "bg": [ 5080, 5082, 5081, 5079 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5087, 5089, 5088, 5086 ] } ] }, { "id": [ "vp_hddoor_opaque_left" ], - "fg": [ 5149, 5151, 5150, 5148 ], + "fg": [ 5156, 5158, 5157, 5155 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5145, 5147, 5146, 5144 ] }, { "id": "broken", "fg": 5025, "bg": [ 5149, 5151, 5150, 5148 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5152, 5154, 5153, 5151 ] }, { "id": "broken", "fg": 5032, "bg": [ 5156, 5158, 5157, 5155 ] } ] }, { "id": [ "vp_hddoor_opaque_right" ], - "fg": [ 5161, 5163, 5162, 5160 ], + "fg": [ 5168, 5170, 5169, 5167 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5157, 5159, 5158, 5156 ] }, { "id": "broken", "fg": 5025, "bg": [ 5161, 5163, 5162, 5160 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5164, 5166, 5165, 5163 ] }, { "id": "broken", "fg": 5032, "bg": [ 5168, 5170, 5169, 5167 ] } ] }, { "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ], - "fg": [ 5141, 5143, 5142, 5140 ], + "fg": [ 5148, 5150, 5149, 5147 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5039, 5041, 5040, 5038 ] }, { "id": "broken", "fg": 5025, "bg": [ 5141, 5143, 5142, 5140 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5148, 5150, 5149, 5147 ] } ] }, { "id": [ "vp_hddoor_opaque_rear" ], - "fg": [ 5153, 5155, 5154, 5152 ], + "fg": [ 5160, 5162, 5161, 5159 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5093, 5095, 5094, 5092 ] }, { "id": "broken", "fg": 5025, "bg": [ 5153, 5155, 5154, 5152 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5160, 5162, 5161, 5159 ] } ] }, { "id": "vp_frame_cover", - "fg": 5180, + "fg": 5187, "//": [ "frame_cover_rotW", "frame_cover_rotS", "frame_cover_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5180 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5187 } ] }, { "id": "vp_frame_cross", - "fg": 5181, + "fg": 5188, "//": [ "frame_cross_rotW", "frame_cross_rotS", "frame_cross_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5181 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5188 } ] }, { "id": "vp_frame_cross_unconnected", - "fg": 5182, + "fg": 5189, "//": [ "frame_cross_unconnected_rotW", "frame_cross_unconnected_rotS", "frame_cross_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5182 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5189 } ] }, { "id": "vp_frame_ne", - "fg": 5195, + "fg": 5202, "//": [ "frame_ne_rotW", "frame_ne_rotS", "frame_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5195 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5202 } ] }, { "id": "vp_frame_nw", - "fg": 5196, + "fg": 5203, "//": [ "frame_nw_rotW", "frame_nw_rotS", "frame_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5196 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5203 } ] }, { "id": "vp_frame_se", - "fg": 5197, + "fg": 5204, "//": [ "frame_se_rotW", "frame_se_rotS", "frame_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5197 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5204 } ] }, { "id": "vp_frame_sw", - "fg": 5198, + "fg": 5205, "//": [ "frame_sw_rotW", "frame_sw_rotS", "frame_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5198 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5205 } ] }, { "id": "vp_frame_vertical_unconnected", - "fg": 5206, + "fg": 5213, "//": [ "frame_vertical_unconnected_rotW_right_rotE", "frame_vertical_right", "frame_vertical_unconnected_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5206 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5213 } ] }, { "id": "vp_frame_vertical_2_unconnected", - "fg": 5203, + "fg": 5210, "//": [ "frame_vertical2_unconnected_rotW", "frame_vertical2_right", "frame_vertical2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5203 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5210 } ] }, { "id": "vp_frame_vertical_left", - "fg": 5204, + "fg": 5211, "//": [ "frame_vertical_left_rotW_right_rotE", "frame_vertical_right", "frame_vertical_left_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5204 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5211 } ] }, { "id": "vp_frame_vertical_2_left", - "fg": 5201, + "fg": 5208, "//": [ "frame_vertical2_left_rotW", "frame_vertical2_right", "frame_vertical2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5201 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5208 } ] }, { "id": "vp_frame_vertical_right", - "fg": 5205, + "fg": 5212, "//": [ "frame_vertical_left_rotE_right_rotW", "frame_vertical_left", "frame_vertical_left_rotW_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5205 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5212 } ] }, { "id": "vp_frame_vertical_2_right", - "fg": 5202, + "fg": 5209, "//": [ "frame_vertical2_right_rotW", "frame_vertical2_left", "frame_vertical2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5202 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5209 } ] }, { "id": "vp_frame_horizontal", - "fg": 5183, + "fg": 5190, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5183 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5190 } ] }, { "id": "vp_frame_horizontal_2", - "fg": 5184, + "fg": 5191, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5184 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5191 } ] }, { "id": "vp_frame_horizontal_unconnected", - "fg": 5194, + "fg": 5201, "//": [ "frame_horizontal_unconnected_rotW", "frame_horizontal_unconnected_rotS", "frame_horizontal_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5194 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5201 } ] }, { "id": "vp_frame_horizontal_2_unconnected", - "fg": 5187, + "fg": 5194, "//": [ "frame_horizontal2_unconnected_rotW", "frame_horizontal2_unconnected_rotS", "frame_horizontal2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5187 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5194 } ] }, { "id": "vp_frame_horizontal_front", - "fg": 5190, + "fg": 5197, "//": [ "frame_horizontal_front_rotW", "frame_horizontal_front_rotS", "frame_horizontal_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5190 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5197 } ] }, { "id": "vp_frame_horizontal_2_front", - "fg": 5185, + "fg": 5192, "//": [ "frame_horizontal2_front_rotW", "frame_horizontal2_front_rotS", "frame_horizontal2_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5185 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5192 } ] }, { "id": "vp_frame_horizontal_rear", - "fg": 5192, + "fg": 5199, "//": [ "frame_horizontal_rear_rotW", "frame_horizontal_rear_rotS", "frame_horizontal_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5192 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5199 } ] }, { "id": "vp_frame_horizontal_2_rear", - "fg": 5186, + "fg": 5193, "//": [ "frame_horizontal2_rear_rotW", "frame_horizontal2_rear_rotS", "frame_horizontal2_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5186 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5193 } ] }, { "id": "vp_frame_horizontal_left", - "fg": 5191, + "fg": 5198, "//": [ "frame_horizontal_left_rotW", "frame_horizontal_left_rotS", "frame_horizontal_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5191 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5198 } ] }, { "id": "vp_frame_horizontal_2_left", - "fg": 5188, + "fg": 5195, "//": [ "frame_horizontal_2_left_rotW", "frame_horizontal_2_left_rotS", "frame_horizontal_2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5188 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5195 } ] }, { "id": "vp_frame_horizontal_right", - "fg": 5193, + "fg": 5200, "//": [ "frame_horizontal_right_rotW", "frame_horizontal_right_rotS", "frame_horizontal_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5193 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5200 } ] }, { "id": "vp_frame_horizontal_2_right", - "fg": 5189, + "fg": 5196, "//": [ "frame_horizontal_2_right_rotW", "frame_horizontal_2_right_rotS", "frame_horizontal_2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5189 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5196 } ] }, { "id": "vp_frame_vertical", - "fg": 5199, + "fg": 5206, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5199 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5206 } ] }, { "id": "vp_frame_vertical_2", - "fg": 5200, + "fg": 5207, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5200 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5207 } ] }, { "id": "vp_hdframe_cover", - "fg": 5207, + "fg": 5214, "//": [ "hdframe_cover_rotW", "hdframe_cover_rotS", "hdframe_cover_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5207 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5214 } ] }, { "id": "vp_hdframe_cross", - "fg": 5208, + "fg": 5215, "//": [ "hdframe_cross_rotW", "hdframe_cross_rotS", "hdframe_cross_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5208 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5215 } ] }, { "id": "vp_hdframe_cross_unconnected", - "fg": 5209, + "fg": 5216, "//": [ "hdframe_cross_unconnected_rotW", "hdframe_cross_unconnected_rotS", "hdframe_cross_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5209 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5216 } ] }, { "id": "vp_hdframe_ne", - "fg": 5222, + "fg": 5229, "//": [ "hdframe_ne_rotW", "hdframe_ne_rotS", "hdframe_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5222 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5229 } ] }, { "id": "vp_hdframe_nw", - "fg": 5223, + "fg": 5230, "//": [ "hdframe_nw_rotW", "hdframe_nw_rotS", "hdframe_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5223 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5230 } ] }, { "id": "vp_hdframe_se", - "fg": 5224, + "fg": 5231, "//": [ "hdframe_se_rotW", "hdframe_se_rotS", "hdframe_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5224 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5231 } ] }, { "id": "vp_hdframe_sw", - "fg": 5225, + "fg": 5232, "//": [ "hdframe_sw_rotW", "hdframe_sw_rotS", "hdframe_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5225 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5232 } ] }, { "id": "vp_hdframe_vertical_unconnected", - "fg": 5233, + "fg": 5240, "//": [ "hdframe_vertical_unconnected_rotW_right_rotE", "hdframe_vertical_right", @@ -7503,73 +7511,73 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5233 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5240 } ] }, { "id": "vp_hdframe_vertical_2_unconnected", - "fg": 5230, + "fg": 5237, "//": [ "hdframe_vertical2_unconnected_rotW", "hdframe_vertical2_right", "hdframe_vertical2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5230 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5237 } ] }, { "id": "vp_hdframe_vertical_left", - "fg": 5231, + "fg": 5238, "//": [ "hdframe_vertical_left_rotW_right_rotE", "hdframe_vertical_right", "hdframe_vertical_left_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5231 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5238 } ] }, { "id": "vp_hdframe_vertical_2_left", - "fg": 5228, + "fg": 5235, "//": [ "hdframe_vertical2_left_rotW", "hdframe_vertical2_right", "hdframe_vertical2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5228 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5235 } ] }, { "id": "vp_hdframe_vertical_right", - "fg": 5232, + "fg": 5239, "//": [ "hdframe_vertical_left_rotE_right_rotW", "hdframe_vertical_left", "hdframe_vertical_left_rotW_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5232 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5239 } ] }, { "id": "vp_hdframe_vertical_2_right", - "fg": 5229, + "fg": 5236, "//": [ "hdframe_vertical2_right_rotW", "hdframe_vertical2_left", "hdframe_vertical2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5229 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5236 } ] }, { "id": "vp_hdframe_horizontal", - "fg": 5210, + "fg": 5217, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5210 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5217 } ] }, { "id": "vp_hdframe_horizontal_2", - "fg": 5211, + "fg": 5218, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5211 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5218 } ] }, { "id": "vp_hdframe_horizontal_unconnected", - "fg": 5221, + "fg": 5228, "//": [ "hdframe_horizontal_unconnected_rotW", "hdframe_horizontal_unconnected_rotS", "hdframe_horizontal_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5221 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5228 } ] }, { "id": "vp_hdframe_horizontal_2_unconnected", - "fg": 5214, + "fg": 5221, "//": [ "hdframe_horizontal2_unconnected_rotW", "hdframe_horizontal2_unconnected_rotS", @@ -7577,145 +7585,145 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5214 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5221 } ] }, { "id": "vp_hdframe_horizontal_front", - "fg": 5217, + "fg": 5224, "//": [ "hdframe_horizontal_front_rotW", "hdframe_horizontal_front_rotS", "hdframe_horizontal_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5217 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5224 } ] }, { "id": "vp_hdframe_horizontal_2_front", - "fg": 5212, + "fg": 5219, "//": [ "hdframe_horizontal2_front_rotW", "hdframe_horizontal2_front_rotS", "hdframe_horizontal2_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5212 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5219 } ] }, { "id": "vp_hdframe_horizontal_rear", - "fg": 5219, + "fg": 5226, "//": [ "hdframe_horizontal_rear_rotW", "hdframe_horizontal_rear_rotS", "hdframe_horizontal_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5219 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5226 } ] }, { "id": "vp_hdframe_horizontal_2_rear", - "fg": 5213, + "fg": 5220, "//": [ "hdframe_horizontal2_rear_rotW", "hdframe_horizontal2_rear_rotS", "hdframe_horizontal2_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5213 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5220 } ] }, { "id": "vp_hdframe_horizontal_left", - "fg": 5218, + "fg": 5225, "//": [ "hdframe_horizontal_left_rotW", "hdframe_horizontal_left_rotS", "hdframe_horizontal_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5218 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5225 } ] }, { "id": "vp_hdframe_horizontal_2_left", - "fg": 5215, + "fg": 5222, "//": [ "hdframe_horizontal_2_left_rotW", "hdframe_horizontal_2_left_rotS", "hdframe_horizontal_2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5215 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5222 } ] }, { "id": "vp_hdframe_horizontal_right", - "fg": 5220, + "fg": 5227, "//": [ "hdframe_horizontal_right_rotW", "hdframe_horizontal_right_rotS", "hdframe_horizontal_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5220 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5227 } ] }, { "id": "vp_hdframe_horizontal_2_right", - "fg": 5216, + "fg": 5223, "//": [ "hdframe_horizontal_2_right_rotW", "hdframe_horizontal_2_right_rotS", "hdframe_horizontal_2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5216 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5223 } ] }, { "id": "vp_hdframe_vertical", - "fg": 5226, + "fg": 5233, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5226 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5233 } ] }, { "id": "vp_hdframe_vertical_2", - "fg": 5227, + "fg": 5234, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5227 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5234 } ] }, { "id": "vp_xlframe_cover", - "fg": 5234, + "fg": 5241, "//": [ "xlframe_cover_rotW", "xlframe_cover_rotS", "xlframe_cover_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5234 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5241 } ] }, { "id": "vp_xlframe_cross", - "fg": 5235, + "fg": 5242, "//": [ "xlframe_cross_rotW", "xlframe_cross_rotS", "xlframe_cross_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5235 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5242 } ] }, { "id": "vp_xlframe_cross_unconnected", - "fg": 5236, + "fg": 5243, "//": [ "xlframe_cross_unconnected_rotW", "xlframe_cross_unconnected_rotS", "xlframe_cross_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5236 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5243 } ] }, { "id": "vp_xlframe_ne", - "fg": 5249, + "fg": 5256, "//": [ "xlframe_ne_rotW", "xlframe_ne_rotS", "xlframe_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5249 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5256 } ] }, { "id": "vp_xlframe_nw", - "fg": 5250, + "fg": 5257, "//": [ "xlframe_nw_rotW", "xlframe_nw_rotS", "xlframe_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5250 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5257 } ] }, { "id": "vp_xlframe_se", - "fg": 5251, + "fg": 5258, "//": [ "xlframe_se_rotW", "xlframe_se_rotS", "xlframe_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5251 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5258 } ] }, { "id": "vp_xlframe_sw", - "fg": 5252, + "fg": 5259, "//": [ "xlframe_sw_rotW", "xlframe_sw_rotS", "xlframe_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5252 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5259 } ] }, { "id": "vp_xlframe_vertical_unconnected", - "fg": 5260, + "fg": 5267, "//": [ "xlframe_vertical_unconnected_rotW_right_rotE", "xlframe_vertical_unconnected", @@ -7723,73 +7731,73 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5260 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5267 } ] }, { "id": "vp_xlframe_vertical_2_unconnected", - "fg": 5257, + "fg": 5264, "//": [ "xlframe_vertical2_unconnected_rotW", "xlframe_vertical2_unconnected", "xlframe_vertical2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5257 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5264 } ] }, { "id": "vp_xlframe_vertical_left", - "fg": 5258, + "fg": 5265, "//": [ "xlframe_vertical_left_rotW_right_rotE", "xlframe_vertical_right", "xlframe_vertical_left_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5258 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5265 } ] }, { "id": "vp_xlframe_vertical_2_left", - "fg": 5255, + "fg": 5262, "//": [ "xlframe_vertical2_left_rotW", "xlframe_vertical2_right", "xlframe_vertical2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5255 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5262 } ] }, { "id": "vp_xlframe_vertical_right", - "fg": 5259, + "fg": 5266, "//": [ "xlframe_vertical_left_rotE_right_rotW", "xlframe_vertical_left", "vp_xlframe_vertical_left_rotW_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5259 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5266 } ] }, { "id": "vp_xlframe_vertical_2_right", - "fg": 5256, + "fg": 5263, "//": [ "xlframe_vertical2_right_rotW", "xlframe_vertical2_left", "vp_xlframe_vertical2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5256 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5263 } ] }, { "id": "vp_xlframe_horizontal", - "fg": 5237, + "fg": 5244, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5237 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5244 } ] }, { "id": "vp_xlframe_horizontal_2", - "fg": 5238, + "fg": 5245, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5238 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5245 } ] }, { "id": "vp_xlframe_horizontal_unconnected", - "fg": 5248, + "fg": 5255, "//": [ "xlframe_horizontal_unconnected_rotW", "xlframe_horizontal_unconnected_rotS", "xlframe_horizontal_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5248 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5255 } ] }, { "id": "vp_xlframe_horizontal_2_unconnected", - "fg": 5241, + "fg": 5248, "//": [ "xlframe_horizontal2_unconnected_rotW", "xlframe_horizontal2_unconnected_rotS", @@ -7797,425 +7805,425 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5241 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5248 } ] }, { "id": "vp_xlframe_horizontal_front", - "fg": 5244, + "fg": 5251, "//": [ "xlframe_horizontal_front_rotW", "xlframe_horizontal_front_rotS", "xlframe_horizontal_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5244 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5251 } ] }, { "id": "vp_xlframe_horizontal_2_front", - "fg": 5239, + "fg": 5246, "//": [ "xlframe_horizontal2_front_rotW", "xlframe_horizontal2_front_rotS", "xlframe_horizontal2_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5239 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5246 } ] }, { "id": "vp_xlframe_horizontal_rear", - "fg": 5246, + "fg": 5253, "//": [ "xlframe_horizontal_rear_rotW", "xlframe_horizontal_rear_rotS", "xlframe_horizontal_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5246 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5253 } ] }, { "id": "vp_xlframe_horizontal_2_rear", - "fg": 5240, + "fg": 5247, "//": [ "xlframe_horizontal2_rear_rotW", "xlframe_horizontal2_rear_rotS", "xlframe_horizontal2_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5240 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5247 } ] }, { "id": "vp_xlframe_horizontal_left", - "fg": 5245, + "fg": 5252, "//": [ "xlframe_horizontal_left_rotW", "xlframe_horizontal_left_rotS", "xlframe_horizontal_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5245 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5252 } ] }, { "id": "vp_xlframe_horizontal_2_left", - "fg": 5242, + "fg": 5249, "//": [ "xlframe_horizontal_2_left_rotW", "xlframe_horizontal_2_left_rotS", "xlframe_horizontal_2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5242 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5249 } ] }, { "id": "vp_xlframe_horizontal_right", - "fg": 5247, + "fg": 5254, "//": [ "xlframe_horizontal_right_rotW", "xlframe_horizontal_right_rotS", "xlframe_horizontal_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5247 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5254 } ] }, { "id": "vp_xlframe_horizontal_2_right", - "fg": 5243, + "fg": 5250, "//": [ "xlframe_horizontal_2_right_rotW", "xlframe_horizontal_2_right_rotS", "xlframe_horizontal_2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5243 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5250 } ] }, { "id": "vp_xlframe_vertical", - "fg": 5253, + "fg": 5260, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5253 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5260 } ] }, { "id": "vp_xlframe_vertical_2", - "fg": 5254, + "fg": 5261, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5254 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5261 } ] }, { "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ], - "fg": 5262 + "fg": 5269 }, { "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ], - "fg": 5261 + "fg": 5268 }, { "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ], - "fg": 5262 + "fg": 5269 }, { "id": "vp_saddle_motor", - "fg": [ 5264, 5266, 5265, 5263 ], + "fg": [ 5271, 5273, 5272, 5270 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5264, 5266, 5265, 5263 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5271, 5273, 5272, 5270 ] } ] }, { "id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ], - "fg": [ 5272, 5274, 5273, 5271 ], + "fg": [ 5279, 5281, 5280, 5278 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5272, 5274, 5273, 5271 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5279, 5281, 5280, 5278 ] } ] }, { "id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ], - "fg": [ 5268, 5270, 5269, 5267 ], + "fg": [ 5275, 5277, 5276, 5274 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5268, 5270, 5269, 5267 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5275, 5277, 5276, 5274 ] } ] }, { "id": "vp_light_blue", - "fg": [ 5293, 5294 ], + "fg": [ 5300, 5301 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5293, 5294 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5300, 5301 ] } ] }, { "id": "vp_light_red", - "fg": [ 5295, 5296 ], + "fg": [ 5302, 5303 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5295, 5296 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5302, 5303 ] } ] }, { "id": [ "vp_floodlight", "vp_directed_floodlight" ], - "fg": [ 5287, 5289, 5288, 5286 ], + "fg": [ 5294, 5296, 5295, 5293 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5287, 5289, 5288, 5286 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5294, 5296, 5295, 5293 ] } ] }, { "id": "vp_veh_table", - "fg": [ 5276, 5276 ], - "bg": [ 5306, 5305 ], - "additional_tiles": [ { "id": "broken", "fg": 5277, "bg": [ 5306, 5305 ] } ], + "fg": [ 5283, 5283 ], + "bg": [ 5313, 5312 ], + "additional_tiles": [ { "id": "broken", "fg": 5284, "bg": [ 5313, 5312 ] } ], "multitile": true, "rotates": true }, { "id": "vp_minifridge", - "fg": 5300, + "fg": 5307, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5300 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5307 } ] }, { "id": "vp_minifreezer", - "fg": 5299, + "fg": 5306, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5299 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5306 } ] }, { "id": "vp_kitchen_unit", - "fg": 5292, + "fg": 5299, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5292 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5299 } ] }, { "id": "vp_welding_rig", - "fg": 5304, + "fg": 5311, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5304 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5311 } ] }, { "id": "vp_craft_rig", - "fg": 5283, + "fg": 5290, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5283 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5290 } ] }, { "id": "vp_washing_machine", - "fg": 5303, + "fg": 5310, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5303 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5310 } ] }, { "id": "vp_bed", - "fg": 5281, + "fg": 5288, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5281 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5288 } ] }, { "id": "vp_veh_forge", - "fg": 5290, + "fg": 5297, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5290 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5297 } ] }, { "id": "vp_veh_kiln", - "fg": 5291, + "fg": 5298, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5291 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5298 } ] }, { "id": "vp_chemlab", - "fg": 5282, + "fg": 5289, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5282 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5289 } ] }, { "id": [ "vp_aisle_vertical" ], - "fg": 5279, + "fg": 5286, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5279 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5286 } ] }, { "id": [ "vp_aisle_horizontal" ], - "fg": 5278, + "fg": 5285, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5278 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5285 } ] }, { "id": [ "vp_trunk_floor" ], - "fg": 5302, - "bg": 5279, + "fg": 5309, + "bg": 5286, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5302 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5309 } ] }, { "id": [ "vp_wooden_aisle_vertical" ], - "fg": [ 5306, 5305 ], + "fg": [ 5313, 5312 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5306, 5305 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5313, 5312 ] } ] }, { "id": [ "vp_wooden_aisle_horizontal" ], - "fg": [ 5305, 5306 ], + "fg": [ 5312, 5313 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5305, 5306 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5312, 5313 ] } ] }, { "id": [ "vp_lit_aisle_vertical" ], - "fg": 5298, + "fg": 5305, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5298 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5305 } ] }, { "id": [ "vp_lit_aisle_horizontal" ], - "fg": 5297, + "fg": 5304, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5297 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5304 } ] }, - { "id": [ "vp_crane_medium", "vp_crane_small", "vp_crane_medium_internal", "crane_tiny" ], "fg": 5284 }, + { "id": [ "vp_crane_medium", "vp_crane_small", "vp_crane_medium_internal", "crane_tiny" ], "fg": 5291 }, { "id": "vp_omnicam", - "fg": 5275, + "fg": 5282, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5275 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5282 } ] }, - { "id": "vp_ram_spiked", "fg": [ 5319, 5321, 5320, 5322 ], "rotates": true }, - { "id": "vp_ram_wood", "fg": [ 5327, 5329, 5328, 5330 ], "rotates": true }, - { "id": "vp_spike_wood", "fg": [ 5331, 5333, 5332, 5334 ], "rotates": true }, - { "id": "vp_ram_military", "fg": [ 5315, 5317, 5316, 5318 ], "rotates": true }, - { "id": "vp_ram_steel", "fg": [ 5323, 5325, 5324, 5326 ], "rotates": true }, - { "id": "vp_ram_hardsteel", "fg": [ 5311, 5313, 5312, 5314 ], "rotates": true }, - { "id": "vp_ram_alloy", "fg": [ 5307, 5309, 5308, 5310 ], "rotates": true }, + { "id": "vp_ram_spiked", "fg": [ 5326, 5328, 5327, 5329 ], "rotates": true }, + { "id": "vp_ram_wood", "fg": [ 5334, 5336, 5335, 5337 ], "rotates": true }, + { "id": "vp_spike_wood", "fg": [ 5338, 5340, 5339, 5341 ], "rotates": true }, + { "id": "vp_ram_military", "fg": [ 5322, 5324, 5323, 5325 ], "rotates": true }, + { "id": "vp_ram_steel", "fg": [ 5330, 5332, 5331, 5333 ], "rotates": true }, + { "id": "vp_ram_hardsteel", "fg": [ 5318, 5320, 5319, 5321 ], "rotates": true }, + { "id": "vp_ram_alloy", "fg": [ 5314, 5316, 5315, 5317 ], "rotates": true }, { "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ], "rotates": true, - "fg": [ 5370, 5368, 5363, 5369 ], + "fg": [ 5377, 5375, 5370, 5376 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5370, 5368, 5363, 5369 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5377, 5375, 5370, 5376 ] } ] }, { "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ], "rotates": true, - "fg": [ 5367, 5365, 5364, 5366 ], + "fg": [ 5374, 5372, 5371, 5373 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5367, 5365, 5364, 5366 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5374, 5372, 5371, 5373 ] } ] }, { "id": [ "vp_seat_wood" ], "rotates": true, - "bg": [ 5306, 5305 ], - "fg": [ 5373, 5373, 5374, 5374 ], + "bg": [ 5313, 5312 ], + "fg": [ 5380, 5380, 5381, 5381 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5373, 5373, 5374, 5374 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5380, 5380, 5381, 5381 ] } ] }, { "id": [ "vp_seat_wood_flimsy" ], "rotates": true, - "bg": [ 5306, 5305 ], - "fg": [ 5371, 5371, 5372, 5372 ], + "bg": [ 5313, 5312 ], + "fg": [ 5378, 5378, 5379, 5379 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5371, 5371, 5372, 5372 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5378, 5378, 5379, 5379 ] } ] }, { "id": "vp_seat_back", - "fg": [ 5361, 5362, 5339, 5340 ], + "fg": [ 5368, 5369, 5346, 5347 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5361, 5362, 5339, 5340 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5368, 5369, 5346, 5347 ] } ] }, { "id": "vp_seat_back_right", - "fg": [ 5359, 5360, 5357, 5358 ], + "fg": [ 5366, 5367, 5364, 5365 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5359, 5360, 5357, 5358 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5366, 5367, 5364, 5365 ] } ] }, { "id": "vp_seat_back_left", - "fg": [ 5355, 5356, 5353, 5354 ], + "fg": [ 5362, 5363, 5360, 5361 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5355, 5356, 5353, 5354 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5362, 5363, 5360, 5361 ] } ] }, { "id": "vp_seat_back_leather", - "fg": [ 5351, 5352, 5341, 5342 ], + "fg": [ 5358, 5359, 5348, 5349 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5351, 5352, 5341, 5342 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5358, 5359, 5348, 5349 ] } ] }, { "id": "vp_seat_back_leather_right", - "fg": [ 5349, 5350, 5347, 5348 ], + "fg": [ 5356, 5357, 5354, 5355 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5349, 5350, 5347, 5348 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5356, 5357, 5354, 5355 ] } ] }, { "id": "vp_seat_back_leather_left", - "fg": [ 5345, 5346, 5343, 5344 ], + "fg": [ 5352, 5353, 5350, 5351 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5345, 5346, 5343, 5344 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5352, 5353, 5350, 5351 ] } ] }, { "id": "vp_seat_back_vertical", - "fg": [ 5340, 5361, 5362, 5339 ], + "fg": [ 5347, 5368, 5369, 5346 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5340, 5361, 5362, 5339 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5347, 5368, 5369, 5346 ] } ] }, { "id": "vp_seat_back_vertical_right", - "fg": [ 5358, 5359, 5360, 5357 ], + "fg": [ 5365, 5366, 5367, 5364 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5358, 5359, 5360, 5357 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5365, 5366, 5367, 5364 ] } ] }, { "id": "vp_seat_back_vertical_left", - "fg": [ 5354, 5355, 5356, 5353 ], + "fg": [ 5361, 5362, 5363, 5360 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5354, 5355, 5356, 5353 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5361, 5362, 5363, 5360 ] } ] }, { "id": "vp_seat_back_leather_vertical", - "fg": [ 5342, 5351, 5352, 5341 ], + "fg": [ 5349, 5358, 5359, 5348 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5342, 5351, 5352, 5341 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5349, 5358, 5359, 5348 ] } ] }, { "id": "vp_seat_back_leather_vertical_right", - "fg": [ 5348, 5349, 5350, 5347 ], + "fg": [ 5355, 5356, 5357, 5354 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5348, 5349, 5350, 5347 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5355, 5356, 5357, 5354 ] } ] }, { "id": "vp_seat_back_leather_vertical_left", - "fg": [ 5344, 5345, 5346, 5343 ], + "fg": [ 5351, 5352, 5353, 5350 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5344, 5345, 5346, 5343 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5351, 5352, 5353, 5350 ] } ] }, { "id": [ "vp_saddle", "vp_saddle_pedal" ], - "fg": [ 5336, 5338, 5337, 5335 ], + "fg": [ 5343, 5345, 5344, 5342 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5336, 5338, 5337, 5335 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5343, 5345, 5344, 5342 ] } ] }, { "id": [ "vp_reinforced_solar_panel_v2", "vp_xreinforced_solar_panel_v2" ], - "fg": 5377, + "fg": 5384, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5378 } ] + "additional_tiles": [ { "id": "broken", "fg": 5385 } ] }, { "id": [ "vp_reinforced_solar_panel", "vp_xreinforced_solar_panel" ], - "fg": 5375, + "fg": 5382, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5376 } ] + "additional_tiles": [ { "id": "broken", "fg": 5383 } ] }, { "id": [ "vp_solar_panel_v2", "vp_xsolar_panel_v2" ], - "fg": 5381, + "fg": 5388, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5382 } ] + "additional_tiles": [ { "id": "broken", "fg": 5389 } ] }, { "id": [ "vp_solar_panel_v3", "vp_xsolar_panel_v3" ], - "fg": 5383, + "fg": 5390, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5384 } ] + "additional_tiles": [ { "id": "broken", "fg": 5391 } ] }, { "id": [ "vp_solar_panel", "vp_xsolar_panel" ], - "fg": 5379, + "fg": 5386, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5380 } ] + "additional_tiles": [ { "id": "broken", "fg": 5387 } ] }, { "id": [ @@ -8232,228 +8240,228 @@ "vp_mounted_m60_semi" ], "//": "rifles and machineguns", - "fg": 5386, - "bg": 5385, + "fg": 5393, + "bg": 5392, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5386 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] }, { "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ], "//": "energy weapons", - "fg": 5386, - "bg": 5385, + "fg": 5393, + "bg": 5392, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5386 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] }, { "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ], "//": "railguns", - "fg": 5386, - "bg": 5385, + "fg": 5393, + "bg": 5392, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5386 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] }, { "id": [ "vp_mounted_bigun", "vp_mounted_m134" ], "//": "multibarrel weapons", - "fg": 5386, - "bg": 5385, + "fg": 5393, + "bg": 5392, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5386 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] }, { "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ], "//": "liquid sprayers", - "fg": 5386, - "bg": 5385, + "fg": 5393, + "bg": 5392, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5386 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] }, { "id": [ "vp_tow_launcher" ], "//": "rocket tubes", - "fg": 5386, - "bg": 5385, + "fg": 5393, + "bg": 5392, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5386 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] }, { "id": "vp_roller_drum", - "fg": 5387, + "fg": 5394, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5387 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5394 } ] }, { "id": [ "vp_wheel", "vp_wheel_steerable" ], - "fg": 5389, + "fg": 5396, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5389 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5396 } ] }, { "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable" ], - "fg": [ 5395, 5397, 5396, 5394 ], + "fg": [ 5402, 5404, 5403, 5401 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5395, 5397, 5396, 5394 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5402, 5404, 5403, 5401 ] } ] }, { "id": [ "vp_wheel_bicycle_or" ], - "fg": [ 5391, 5393, 5392, 5390 ], + "fg": [ 5398, 5400, 5399, 5397 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5391, 5393, 5392, 5390 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5398, 5400, 5399, 5397 ] } ] }, { "id": [ "vp_wheel_bicycle_or_rear" ], - "fg": [ 5392, 5390, 5391, 5393 ], + "fg": [ 5399, 5397, 5398, 5400 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5392, 5390, 5391, 5393 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5399, 5397, 5398, 5400 ] } ] }, { "id": [ "vp_wheel_small", "vp_wheel_small_steerable" ], - "fg": [ 5399, 5401, 5400, 5398 ], + "fg": [ 5406, 5408, 5407, 5405 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5399, 5401, 5400, 5398 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5406, 5408, 5407, 5405 ] } ] }, { "id": [ "vp_wheel_bicycle_rear" ], - "fg": [ 5396, 5394, 5395, 5397 ], + "fg": [ 5403, 5401, 5402, 5404 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5396, 5394, 5395, 5397 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5403, 5401, 5402, 5404 ] } ] }, { "id": [ "vp_mounted_spare_tire" ], - "fg": 5388, + "fg": 5395, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5388 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5395 } ] }, { "id": [ "vp_wheel_wide" ], - "fg": 5402, + "fg": 5409, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5402 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5409 } ] }, { "id": [ "vp_wheel_wood" ], - "fg": [ 5408, 5410, 5409, 5407 ], + "fg": [ 5415, 5417, 5416, 5414 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5408, 5410, 5409, 5407 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5415, 5417, 5416, 5414 ] } ] }, { "id": [ "vp_wheel_wood_b" ], - "fg": [ 5404, 5406, 5405, 5403 ], + "fg": [ 5411, 5413, 5412, 5410 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5404, 5406, 5405, 5403 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5411, 5413, 5412, 5410 ] } ] }, { "id": [ "vp_yoke_harness" ], - "fg": [ 5414, 5412, 5411, 5413 ], + "fg": [ 5421, 5419, 5418, 5420 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 5414, 5412, 5411, 5413 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5421, 5419, 5418, 5420 ] } ] }, { "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ], - "fg": [ 5415, 5422, 5421, 5420 ], - "additional_tiles": [ { "id": "broken", "fg": 5026, "bg": [ 5415, 5422, 5421, 5420 ] } ], + "fg": [ 5422, 5429, 5428, 5427 ], + "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5422, 5429, 5428, 5427 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_horizontal_rear" ], - "fg": [ 5443, 5450, 5449, 5448 ], - "additional_tiles": [ { "id": "broken", "fg": 5026, "bg": [ 5443, 5450, 5449, 5448 ] } ], + "fg": [ 5450, 5457, 5456, 5455 ], + "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5450, 5457, 5456, 5455 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_horizontal_front_edge" ], - "fg": [ 5417, 5419, 5418, 5416 ], - "additional_tiles": [ { "id": "broken", "fg": 5026, "bg": [ 5417, 5419, 5418, 5416 ] } ], + "fg": [ 5424, 5426, 5425, 5423 ], + "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5424, 5426, 5425, 5423 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_horizontal_rear_edge" ], - "fg": [ 5444, 5447, 5446, 5445 ], - "additional_tiles": [ { "id": "broken", "fg": 5026, "bg": [ 5444, 5447, 5446, 5445 ] } ], + "fg": [ 5451, 5454, 5453, 5452 ], + "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5451, 5454, 5453, 5452 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_nw", - "fg": [ 5435, 5442, 5441, 5440 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5435, 5442, 5441, 5440 ] } ], + "fg": [ 5442, 5449, 5448, 5447 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5442, 5449, 5448, 5447 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_ne", - "fg": [ 5427, 5434, 5433, 5432 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5427, 5434, 5433, 5432 ] } ], + "fg": [ 5434, 5441, 5440, 5439 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5434, 5441, 5440, 5439 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_sw", - "fg": [ 5468, 5470, 5469, 5467 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5468, 5470, 5469, 5467 ] } ], + "fg": [ 5475, 5477, 5476, 5474 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5475, 5477, 5476, 5474 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_se", - "fg": [ 5460, 5462, 5461, 5459 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5460, 5462, 5461, 5459 ] } ], + "fg": [ 5467, 5469, 5468, 5466 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5467, 5469, 5468, 5466 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_nw_edge", - "fg": [ 5437, 5439, 5438, 5436 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5437, 5439, 5438, 5436 ] } ], + "fg": [ 5444, 5446, 5445, 5443 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5444, 5446, 5445, 5443 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_ne_edge", - "fg": [ 5429, 5431, 5430, 5428 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5429, 5431, 5430, 5428 ] } ], + "fg": [ 5436, 5438, 5437, 5435 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5436, 5438, 5437, 5435 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_sw_edge", - "fg": [ 5463, 5466, 5465, 5464 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5463, 5466, 5465, 5464 ] } ], + "fg": [ 5470, 5473, 5472, 5471 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5470, 5473, 5472, 5471 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_se_edge", - "fg": [ 5455, 5458, 5457, 5456 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5455, 5458, 5457, 5456 ] } ], + "fg": [ 5462, 5465, 5464, 5463 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5462, 5465, 5464, 5463 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ], - "fg": [ 5423, 5426, 5425, 5424 ], - "additional_tiles": [ { "id": "broken", "fg": 5027, "bg": [ 5423, 5426, 5425, 5424 ] } ], + "fg": [ 5430, 5433, 5432, 5431 ], + "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5430, 5433, 5432, 5431 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ], - "fg": [ 5451, 5454, 5453, 5452 ], - "additional_tiles": [ { "id": "broken", "fg": 5028, "bg": [ 5451, 5454, 5453, 5452 ] } ], + "fg": [ 5458, 5461, 5460, 5459 ], + "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5458, 5461, 5460, 5459 ] } ], "multitile": true, "rotates": true }, @@ -8464,283 +8472,283 @@ "vp_reinforced_windshield_horizontal_front", "vp_reinforced_windshield_front_edge" ], - "fg": 5471, + "fg": 5478, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5471 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5478 } ] }, { "id": [ "vp_reinforced_windshield_horizontal_rear" ], - "fg": 5472, + "fg": 5479, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5472 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5479 } ] }, { "id": [ "vp_reinforced_windshield_horizontal_rear_edge" ], - "fg": 5473, + "fg": 5480, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5473 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5480 } ] }, { "id": "vp_reinforced_windshield_nw", - "fg": 5475, + "fg": 5482, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5475 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5482 } ] }, { "id": "vp_reinforced_windshield_ne", - "fg": 5474, + "fg": 5481, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5474 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5481 } ] }, { "id": "vp_reinforced_windshield_sw", - "fg": 5478, + "fg": 5485, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5478 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5485 } ] }, { "id": "vp_reinforced_windshield_se", - "fg": 5476, + "fg": 5483, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5476 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5483 } ] }, { "id": "vp_reinforced_windshield_sw_edge", - "fg": 5479, + "fg": 5486, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5479 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5486 } ] }, { "id": "vp_reinforced_windshield_se_edge", - "fg": 5477, + "fg": 5484, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5477 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5484 } ] }, { "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ], - "fg": 5480, + "fg": 5487, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5480 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5487 } ] }, { "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ], - "fg": 5481, + "fg": 5488, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5481 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5488 } ] }, { "id": "vp_frame_wood_handle", - "fg": 5482, + "fg": 5489, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5482 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5489 } ] }, { "id": "vp_frame_wood_light_handle", - "fg": 5482, + "fg": 5489, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5482 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5489 } ] }, { "id": "vp_frame_wood_vertical_2", - "fg": 5503, + "fg": 5510, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5503 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5510 } ] }, { "id": "vp_frame_wood_vertical_2_unconnected", - "fg": 5506, + "fg": 5513, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5506 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5513 } ] }, { "id": "vp_frame_wood_vertical_2_right", - "fg": 5505, + "fg": 5512, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5505 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5512 } ] }, { "id": "vp_frame_wood_vertical_2_left", - "fg": 5504, + "fg": 5511, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5504 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5511 } ] }, { "id": "vp_frame_wood_vertical", - "fg": 5502, + "fg": 5509, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5502 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5509 } ] }, { "id": "vp_frame_wood_vertical_unconnected", - "fg": 5509, + "fg": 5516, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5509 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5516 } ] }, { "id": "vp_frame_wood_vertical_right", - "fg": 5508, + "fg": 5515, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5508 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5515 } ] }, { "id": "vp_frame_wood_vertical_left", - "fg": 5507, + "fg": 5514, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5507 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5514 } ] }, { "id": "vp_frame_wood_sw", - "fg": 5501, + "fg": 5508, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5501 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5508 } ] }, { "id": "vp_frame_wood_se", - "fg": 5500, + "fg": 5507, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5500 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5507 } ] }, { "id": "vp_frame_wood_nw", - "fg": 5499, + "fg": 5506, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5499 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5506 } ] }, { "id": "vp_frame_wood_ne", - "fg": 5498, + "fg": 5505, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5498 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5505 } ] }, { "id": "vp_frame_wood_horizontal_2", - "fg": 5487, + "fg": 5494, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5487 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5494 } ] }, { "id": "vp_frame_wood_horizontal_2_unconnected", - "fg": 5492, + "fg": 5499, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5492 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5499 } ] }, { "id": "vp_frame_wood_horizontal_2_right", - "fg": 5491, + "fg": 5498, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5491 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5498 } ] }, { "id": "vp_frame_wood_horizontal_2_rear", - "fg": 5490, + "fg": 5497, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5490 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5497 } ] }, { "id": "vp_frame_wood_horizontal_2_left", - "fg": 5489, + "fg": 5496, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5489 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5496 } ] }, { "id": "vp_frame_wood_horizontal_2_front", - "fg": 5488, + "fg": 5495, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5488 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5495 } ] }, { "id": "vp_frame_wood_horizontal", - "fg": 5486, + "fg": 5493, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5486 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5493 } ] }, { "id": "vp_frame_wood_horizontal_unconnected", - "fg": 5497, + "fg": 5504, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5497 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5504 } ] }, { "id": "vp_frame_wood_horizontal_right", - "fg": 5496, + "fg": 5503, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5496 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5503 } ] }, { "id": "vp_frame_wood_horizontal_rear", - "fg": 5495, + "fg": 5502, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5495 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5502 } ] }, { "id": "vp_frame_wood_horizontal_left", - "fg": 5494, + "fg": 5501, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5494 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5501 } ] }, { "id": "vp_frame_wood_horizontal_front", - "fg": 5493, + "fg": 5500, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5493 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5500 } ] }, { "id": "vp_frame_wood_cross", - "fg": 5484, + "fg": 5491, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5484 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5491 } ] }, { "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ], - "fg": 5485, + "fg": 5492, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5485 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5492 } ] }, { "id": "vp_frame_wood_cover", - "fg": 5483, + "fg": 5490, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": 5483 } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5490 } ] }, { "id": "overlay_female_mutation_BARK", "fg": 137 }, { "id": "overlay_female_mutation_BEAK", "fg": 138 }, @@ -8798,1043 +8806,1046 @@ { "id": "overlay_worn_glasses_reading", "fg": 909 }, { "id": "overlay_worn_gloves_rubber", "fg": 911 }, { "id": "overlay_worn_gold_ear", "fg": 912 }, - { "id": "overlay_worn_leather_collar", "fg": 919 }, - { "id": "overlay_worn_silver_watch", "fg": 932 }, - { "id": "overlay_worn_sunglasses_bifocal", "fg": 935 }, - { "id": "overlay_worn_sunglasses_eye", "fg": 936 }, - { "id": "overlay_worn_sunglasses_reading", "fg": 937 }, - { "id": "overlay_worn_chestguard_hard", "fg": 942 }, - { "id": "1585_f_table_0", "fg": 1302 }, - { "id": "1586_f_table_1", "fg": 1303 }, - { "id": "1587_f_table_2", "fg": 1304 }, - { "id": "1588_f_table_3", "fg": 1305 }, - { "id": "1589_f_table_4", "fg": 1306 }, - { "id": "1590_f_table_5", "fg": 1307 }, - { "id": "f_alien_scar", "fg": 1341 }, - { "id": "f_birdbath", "fg": 1342 }, - { "id": "f_brazier", "fg": 1343 }, - { "id": "f_bulletin", "fg": 1344 }, - { "id": "f_chimney", "fg": 1345 }, - { "id": "f_dandelion", "fg": 1346 }, - { "id": "f_exercise", "fg": 1347 }, - { "id": "f_logstool", "fg": 1348 }, - { "id": "f_pillow_fort", "fg": 1349 }, - { "id": "f_roof_turbine_vent", "fg": 1350 }, - { "id": "f_sink", "fg": 1351 }, - { "id": "f_solar_unit", "fg": 1352 }, - { "id": "f_vent_pipe", "fg": 1353 }, - { "id": "f_crate_c", "fg": 1386 }, - { "id": "f_crate_o", "fg": 1387 }, - { "id": "f_curtain_open", "fg": 1430 }, - { "id": "f_dresser", "fg": 1449 }, - { "id": "f_floor_lamp", "fg": 1454 }, - { "id": "f_glowingbulb", "fg": 1455 }, - { "id": "f_oven", "fg": 1471 }, - { "id": "f_skin_wall_t_connection_e", "fg": 1486 }, - { "id": "f_speaker_cabinet", "fg": 1488 }, - { "id": "f_black_eyed_susan", "fg": 1505 }, - { "id": "f_bluebell", "fg": 1506 }, - { "id": "f_burdock", "fg": 1507 }, - { "id": "f_chamomile", "fg": 1508 }, - { "id": "f_chicory", "fg": 1509 }, - { "id": "f_dahlia", "fg": 1510 }, - { "id": "f_datura", "fg": 1511 }, - { "id": "f_flower_spurge", "fg": 1512 }, - { "id": "f_flower_tulip", "fg": 1513 }, - { "id": "f_lily", "fg": 1514 }, - { "id": "f_mustard", "fg": 1515 }, - { "id": "f_mutpoppy", "fg": 1516 }, - { "id": "f_sunflower", "fg": 1517 }, - { "id": "adhesive_bandages", "fg": 1519 }, - { "id": "airhorn", "fg": 1520 }, - { "id": "alloy_plate", "fg": 1521 }, - { "id": "amplifier_head", "fg": 1522 }, - { "id": "arm_warmers", "fg": 1523 }, - { "id": "autoclave", "fg": 1524 }, - { "id": "bag_plastic", "fg": 1525 }, - { "id": "boltcutters", "fg": 1526 }, - { "id": "bookplate", "fg": 1527 }, - { "id": "bottle_opener", "fg": 1528 }, - { "id": "bow_saw", "fg": 1529 }, - { "id": "boxing_gloves", "fg": 1530 }, - { "id": "broken_dimensional_anchor", "fg": 1531 }, - { "id": "bucket", "fg": 1532 }, - { "id": "butane_tank", "fg": 1533 }, - { "id": "cable_instrument", "fg": 1534 }, - { "id": "cable_xlr", "fg": 1535 }, - { "id": "can_food", "fg": 1536 }, - { "id": "can_opener", "fg": 1537 }, - { "id": "candle", "fg": 1538 }, - { "id": "candle_lit", "fg": 1539 }, - { "id": "cell_phone", "fg": 1540 }, - { "id": "chess", "fg": 1541 }, - { "id": "chopsticks", "fg": 1542 }, - { "id": "clamp", "fg": 1543 }, - { "id": "clay_pot_flower", "fg": 1544 }, - { "id": "comb_pocket", "fg": 1545 }, - { "id": "condom", "fg": 1546 }, - { "id": "cookies", "fg": 1547 }, - { "id": "cutting_board", "fg": 1548 }, - { "id": "dehydrator", "fg": 1549 }, - { "id": "dimensional_anchor", "fg": 1550 }, - { "id": "dimensional_anchor_on", "fg": 1551 }, - { "id": "dnd", "fg": 1552 }, - { "id": "eclipse_glasses", "fg": 1553 }, - { "id": "eyedrops", "fg": 1554 }, - { "id": "fan", "fg": 1555 }, - { "id": "fancy_glasses_bifocal", "fg": 1556 }, - { "id": "fancy_glasses_eye", "fg": 1557 }, - { "id": "fancy_glasses_reading", "fg": 1558 }, - { "id": "feather", "fg": 1559 }, - { "id": "fetid_goop", "fg": 1560 }, - { "id": "flask_hip", "fg": 1561 }, - { "id": "frisbee", "fg": 1563 }, - { "id": "funnel", "fg": 1564 }, - { "id": "glass_sheet", "fg": 1565 }, - { "id": "glasses_bifocale", "fg": 1566 }, - { "id": "glasses_eye", "fg": 1567 }, - { "id": "glasses_reading", "fg": 1568 }, - { "id": "hair_dryer", "fg": 1569 }, - { "id": "hammer_sledge", "fg": 1570 }, - { "id": "hammer_sledge_heavy", "fg": 1571 }, - { "id": "hammer_sledge_short", "fg": 1572 }, - { "id": "hinge", "fg": 1573 }, - { "id": "hotplate", "fg": 1574 }, - { "id": "kettle", "fg": 1575 }, - { "id": "knife_paring", "fg": 1576 }, - { "id": "knife_steak", "fg": 1577 }, - { "id": "knit_scarf", "fg": 1578 }, - { "id": "licorice", "fg": 1579 }, - { "id": "material_limestone", "fg": 1580 }, - { "id": "material_rhodonite", "fg": 1581 }, - { "id": "material_rocksalt", "fg": 1582 }, - { "id": "material_zincite", "fg": 1583 }, - { "id": "mattress", "fg": 1584 }, - { "id": "meat", "fg": 1585 }, - { "id": "meat_tainted", "fg": 1586 }, - { "id": "mil_plate", "fg": 1587 }, - { "id": "mobile_memory_card", "fg": 1588 }, - { "id": "motor_tiny", "fg": 1590 }, - { "id": "mp3", "fg": 1591 }, - { "id": "nanomaterial", "fg": 1592 }, - { "id": "office_holepunch", "fg": 1593 }, - { "id": "paper", "fg": 1594 }, - { "id": "pencil", "fg": 1595 }, - { "id": "permanent_marker", "fg": 1596 }, - { "id": "pipe_fittings", "fg": 1597 }, - { "id": "plastic_straw", "fg": 1598 }, - { "id": "plums", "fg": 1599 }, - { "id": "radio", "fg": 1600 }, - { "id": "radio_on", "fg": 1601 }, - { "id": "rake_plastic", "fg": 1602 }, - { "id": "rapier", "fg": 1603 }, - { "id": "rapier_fake", "fg": 1604 }, - { "id": "rc_car_box", "fg": 1605 }, - { "id": "rebreather_filter", "fg": 1606 }, - { "id": "reinforced_glass_pane", "fg": 1607 }, - { "id": "rhubarb", "fg": 1608 }, - { "id": "rock_flaking", "fg": 1609 }, - { "id": "rock_large", "fg": 1610 }, - { "id": "rock_quern", "fg": 1611 }, - { "id": "rock_sock", "fg": 1612 }, - { "id": "sandpaper", "fg": 1613 }, - { "id": "screwdriver_set", "fg": 1614 }, - { "id": "sm_extinguisher", "fg": 1615 }, - { "id": "spoon", "fg": 1616 }, - { "id": "spray_can", "fg": 1617 }, - { "id": "standard_template_construct", "fg": 1618 }, - { "id": "steel_armor", "fg": 1619 }, - { "id": "steel_plate", "fg": 1620 }, - { "id": "stereo", "fg": 1621 }, - { "id": "stock_pot", "fg": 1622 }, - { "id": "sunglasses", "fg": 1623 }, - { "id": "sunglasses_bifocal", "fg": 1624 }, - { "id": "sunglasses_eye", "fg": 1625 }, - { "id": "sunglasses_reading", "fg": 1626 }, - { "id": "swat_armor", "fg": 1627 }, - { "id": "syringe", "fg": 1628 }, - { "id": "teleumbrella", "fg": 1629 }, - { "id": "toolbox_empty", "fg": 1630 }, - { "id": "tux", "fg": 1631 }, - { "id": "two_way_radio", "fg": 1632 }, - { "id": "vh_autoclave", "fg": 1633 }, - { "id": "wetsuit_spring", "fg": 1634 }, - { "id": "wool_suit", "fg": 1635 }, - { "id": "wrapper", "fg": 1636 }, - { "id": "SICP", "fg": 1637 }, - { "id": "book_fict_soft_ya_rwya", "fg": 1638 }, - { "id": "book_pieces", "fg": 1639 }, - { "id": "manual_first_aid", "fg": 1650 }, - { "id": "novel_adventure", "fg": 1651 }, - { "id": "novel_buddy", "fg": 1652 }, - { "id": "novel_coa", "fg": 1653 }, - { "id": "novel_coa2", "fg": 1654 }, - { "id": "novel_crime", "fg": 1655 }, - { "id": "novel_crime2", "fg": 1656 }, - { "id": "novel_drama", "fg": 1657 }, - { "id": "novel_erotic", "fg": 1658 }, - { "id": "novel_experimental", "fg": 1659 }, - { "id": "novel_fantasy", "fg": 1660 }, - { "id": "novel_horror", "fg": 1661 }, - { "id": "novel_mystery", "fg": 1662 }, - { "id": "novel_pulp", "fg": 1663 }, - { "id": "novel_road", "fg": 1664 }, - { "id": "novel_romance", "fg": 1665 }, - { "id": "novel_samurai", "fg": 1666 }, - { "id": "novel_satire", "fg": 1667 }, - { "id": "novel_scifi", "fg": 1668 }, - { "id": "novel_sports", "fg": 1669 }, - { "id": "novel_spy", "fg": 1670 }, - { "id": "novel_swash", "fg": 1671 }, - { "id": "novel_thriller", "fg": 1672 }, - { "id": "novel_tragedy", "fg": 1673 }, - { "id": "novel_war", "fg": 1674 }, - { "id": "novel_war2", "fg": 1675 }, - { "id": "novel_western", "fg": 1676 }, - { "id": "paperback_novel", "fg": 1677 }, - { "id": "winemaking_beginner", "fg": 1678 }, - { "id": "mre_box", "fg": 1680 }, - { "id": "mre_lemontuna_box", "fg": 1683 }, - { "id": "rifle_case_soft", "fg": 1738 }, - { "id": "rifle_case_soft_2", "fg": 1739 }, - { "id": "rifle_case_soft_leather_2", "fg": 1741 }, - { "id": "rucksack", "fg": 1742 }, - { "id": "bubblewrap", "fg": 1763 }, - { "id": "clay_quern", "fg": 1774 }, - { "id": "balaclava", "fg": 1776 }, - { "id": "beret", "fg": 1777 }, - { "id": "boxer_briefs", "fg": 1778 }, - { "id": "boxer_shorts", "fg": 1779 }, - { "id": "boy_shorts", "fg": 1780 }, - { "id": "bra", "fg": 1781 }, - { "id": "briefs", "fg": 1782 }, - { "id": "coat_lab", "fg": 1783 }, - { "id": "corset", "fg": 1784 }, - { "id": "cowboy_hat", "fg": 1785 }, - { "id": "hat_ball", "fg": 1786 }, - { "id": "hat_cotton", "fg": 1787 }, - { "id": "hat_fur", "fg": 1788 }, - { "id": "helmet_barbute", "fg": 1789 }, - { "id": "helmet_chitin", "fg": 1790 }, - { "id": "helmet_kabuto", "fg": 1791 }, - { "id": "hoodie", "fg": 1792 }, - { "id": "jeans", "fg": 1793 }, - { "id": "longshirt", "fg": 1794 }, - { "id": "mask_dust", "fg": 1795 }, - { "id": "polo_shirt", "fg": 1796 }, - { "id": "ragpouch", "fg": 1797 }, - { "id": "skirt", "fg": 1798 }, - { "id": "sneakers", "fg": 1799 }, - { "id": "socks", "fg": 1800 }, - { "id": "striped_pants", "fg": 1801 }, - { "id": "striped_shirt", "fg": 1802 }, - { "id": "sweater", "fg": 1803 }, - { "id": "sweatshirt", "fg": 1804 }, - { "id": "tshirt", "fg": 1805 }, - { "id": "turban", "fg": 1806 }, - { "id": "cola", "fg": 1844 }, - { "id": "juice", "fg": 1848 }, - { "id": "milk", "fg": 1850 }, - { "id": "purple_drink", "fg": 1854 }, - { "id": "tomato_juice", "fg": 1855 }, - { "id": "vinegar", "fg": 1856 }, - { "id": "plunger_futuristic", "fg": 1906 }, - { "id": "plunger_toilet", "fg": 1907 }, - { "id": "portable_game", "fg": 1909 }, - { "id": "towel", "fg": 1973 }, - { "id": "towel_soiled", "fg": 1974 }, - { "id": "towel_wet", "fg": 1975 }, - { "id": "1895sbl", "fg": 1983 }, - { "id": "AT4", "fg": 1984 }, - { "id": "LAW", "fg": 1985 }, - { "id": "M24", "fg": 1986 }, - { "id": "RPG", "fg": 1987 }, - { "id": "USAS_12", "fg": 1988 }, - { "id": "airspeargun", "fg": 1989 }, - { "id": "ak74", "fg": 1991 }, - { "id": "american_180", "fg": 1992 }, - { "id": "an94", "fg": 1993 }, - { "id": "ar10", "fg": 1994 }, - { "id": "ar15", "fg": 1995 }, - { "id": "arx160", "fg": 1996 }, - { "id": "as50", "fg": 1997 }, - { "id": "atgm_launcher", "fg": 1998 }, - { "id": "bbgun", "fg": 1999 }, - { "id": "bfg50", "fg": 2000 }, - { "id": "bh_m89", "fg": 2001 }, - { "id": "blunderbuss", "fg": 2002 }, - { "id": "browning_blr", "fg": 2003 }, - { "id": "chemical_thrower", "fg": 2005 }, - { "id": "coilgun", "fg": 2006 }, - { "id": "colt_lightning", "fg": 2007 }, - { "id": "colt_ro635", "fg": 2008 }, - { "id": "combination_gun", "fg": 2009 }, - { "id": "cx4", "fg": 2010 }, - { "id": "doublespeargun", "fg": 2011 }, - { "id": "emp_gun", "fg": 2012 }, - { "id": "famas", "fg": 2013 }, - { "id": "flamethrower", "fg": 2014 }, - { "id": "fn_fal", "fg": 2015 }, - { "id": "fs2000", "fg": 2016 }, - { "id": "ftk93", "fg": 2017 }, - { "id": "garand", "fg": 2018 }, - { "id": "heavy_rail_rifle", "fg": 2019 }, - { "id": "helsing", "fg": 2020 }, - { "id": "henry_big_boy", "fg": 2021 }, - { "id": "hk417_13", "fg": 2022 }, - { "id": "hk_g3", "fg": 2023 }, - { "id": "hk_g36", "fg": 2024 }, - { "id": "hk_g80", "fg": 2025 }, - { "id": "hk_mp5k", "fg": 2026 }, - { "id": "hk_mp5sd", "fg": 2027 }, - { "id": "iwi_tavor_x95_300blk", "fg": 2028 }, - { "id": "ksg-25", "fg": 2029 }, - { "id": "ksg", "fg": 2030 }, - { "id": "ksub2000", "fg": 2031 }, - { "id": "laser_cannon", "fg": 2032 }, - { "id": "laser_rifle", "fg": 2033 }, - { "id": "lever_shotgun", "fg": 2034 }, - { "id": "longrifle_flintlock", "fg": 2035 }, - { "id": "m107a1", "fg": 2036 }, - { "id": "m110a1", "fg": 2037 }, - { "id": "m134", "fg": 2038 }, - { "id": "m14ebr", "fg": 2039 }, - { "id": "m1903", "fg": 2042 }, - { "id": "m1918", "fg": 2043 }, - { "id": "m1a", "fg": 2044 }, - { "id": "m2010", "fg": 2045 }, - { "id": "m231pfw", "fg": 2046 }, - { "id": "m240", "fg": 2047 }, - { "id": "m27_assault_rifle_var_h&k416a5", "fg": 2049 }, - { "id": "m27_assault_rifle_var_m27iar", "fg": 2050 }, - { "id": "m27_assault_rifle_var_m38dmr", "fg": 2051 }, - { "id": "m27_assault_rifle_var_scar_l", "fg": 2052 }, - { "id": "m2browning", "fg": 2053 }, - { "id": "m2browning_sawn", "fg": 2054 }, - { "id": "m3_carlgustav", "fg": 2055 }, - { "id": "m4_carbine_var_m4a1", "fg": 2056 }, - { "id": "m4_carlgustav", "fg": 2057 }, - { "id": "m79", "fg": 2059 }, - { "id": "mark19", "fg": 2060 }, - { "id": "marlin_9a", "fg": 2061 }, - { "id": "mininuke_launcher", "fg": 2062 }, - { "id": "mosin44", "fg": 2063 }, - { "id": "mosin44_ebr", "fg": 2064 }, - { "id": "mosin91_30", "fg": 2065 }, - { "id": "mosin91_30_ebr", "fg": 2066 }, - { "id": "mossberg_500", "fg": 2067 }, - { "id": "mossberg_500_var_mossberg_500_security", "fg": 2068 }, - { "id": "mossberg_590", "fg": 2069 }, - { "id": "mossberg_590_var_SPAS_12", "fg": 2070 }, - { "id": "mossberg_930", "fg": 2071 }, - { "id": "mossberg_930_var_m1014", "fg": 2072 }, - { "id": "mp18", "fg": 2073 }, - { "id": "needlegun", "fg": 2075 }, - { "id": "pamd68", "fg": 2076 }, - { "id": "pamd71z", "fg": 2077 }, - { "id": "pipe_combination_gun", "fg": 2078 }, - { "id": "plasma_gun", "fg": 2079 }, - { "id": "plasma_rifle", "fg": 2080 }, - { "id": "ppsh", "fg": 2081 }, - { "id": "rebar_rifle", "fg": 2082 }, - { "id": "remington700_270", "fg": 2083 }, - { "id": "remington_700", "fg": 2084 }, - { "id": "remington_870", "fg": 2085 }, - { "id": "remington_870_breacher", "fg": 2086 }, - { "id": "remington_870_express", "fg": 2087 }, - { "id": "remington_870_var_browning_a5", "fg": 2088 }, - { "id": "remington_870_var_remington_1100", "fg": 2089 }, - { "id": "rifle_flintlock", "fg": 2090 }, - { "id": "rm120c", "fg": 2091 }, - { "id": "rm20", "fg": 2092 }, - { "id": "rm298", "fg": 2093 }, - { "id": "rm451_flamethrower", "fg": 2094 }, - { "id": "rm51_assault_rifle", "fg": 2095 }, - { "id": "rm614_lmg", "fg": 2096 }, - { "id": "rm802", "fg": 2097 }, - { "id": "rm88_battle_rifle", "fg": 2098 }, - { "id": "ruger_1022", "fg": 2099 }, - { "id": "ruger_mini", "fg": 2100 }, - { "id": "saiga_12", "fg": 2101 }, - { "id": "saiga_410", "fg": 2102 }, - { "id": "savage_111f", "fg": 2103 }, - { "id": "scar_h", "fg": 2104 }, - { "id": "sharps", "fg": 2105 }, - { "id": "shotgun_410", "fg": 2106 }, - { "id": "shotgun_d", "fg": 2107 }, - { "id": "shotgun_s", "fg": 2108 }, - { "id": "sig552", "fg": 2109 }, - { "id": "sig_mcx_rattler_sbr", "fg": 2110 }, - { "id": "skorpion_82", "fg": 2111 }, - { "id": "sks", "fg": 2112 }, - { "id": "smg_9mm", "fg": 2114 }, - { "id": "speargun", "fg": 2115 }, - { "id": "sten", "fg": 2116 }, - { "id": "steyr_aug", "fg": 2117 }, - { "id": "surv_rocket_launcher", "fg": 2118 }, - { "id": "survivor_special_700", "fg": 2119 }, - { "id": "tac50", "fg": 2120 }, - { "id": "tavor_12", "fg": 2121 }, - { "id": "tihar", "fg": 2122 }, - { "id": "tommygun", "fg": 2123 }, - { "id": "trex_gun", "fg": 2124 }, - { "id": "weatherby_5", "fg": 2125 }, - { "id": "win70", "fg": 2126 }, - { "id": "winchester_1887", "fg": 2127 }, - { "id": "winchester_1897", "fg": 2128 }, - { "id": "broadsword", "fg": 2129 }, - { "id": "corpse", "fg": 2130 }, - { "id": "corpse_mon_mantis_giant", "fg": 2243 }, - { "id": "foodperson_mask", "fg": 2244 }, - { "id": "foodperson_mask_on", "fg": 2245 }, - { "id": "gloves_fingerless", "fg": 2246 }, - { "id": "gloves_leather", "fg": 2247 }, - { "id": "gloves_liner", "fg": 2248 }, - { "id": "hand_pump", "fg": 2249 }, - { "id": "inflatable_dragon", "fg": 2250 }, - { "id": "analytical_set_basic", "fg": 2251 }, - { "id": "balance_small", "fg": 2252 }, - { "id": "bandages_makeshift_bleached", "fg": 2254 }, - { "id": "beaker", "fg": 2255 }, - { "id": "flask_glass", "fg": 2256 }, - { "id": "gradcylinder", "fg": 2257 }, - { "id": "ph_meter", "fg": 2258 }, - { "id": "rack_test_tube", "fg": 2259 }, - { "id": "spectrophotometer", "fg": 2260 }, - { "id": "test_tube", "fg": 2261 }, - { "id": "voltmeter", "fg": 2262 }, - { "id": "10mm", "fg": 2263 }, - { "id": "223", "fg": 2264 }, - { "id": "22_cb", "fg": 2265 }, - { "id": "22_fmj", "fg": 2266 }, - { "id": "22_lr", "fg": 2267 }, - { "id": "22_ratshot", "fg": 2268 }, - { "id": "3006_incendiary", "fg": 2269 }, - { "id": "36navy", "fg": 2270 }, - { "id": "38_special", "fg": 2271 }, - { "id": "38_super", "fg": 2272 }, - { "id": "40fmj", "fg": 2273 }, - { "id": "40mm_flechet", "fg": 2274 }, - { "id": "40mm_shot", "fg": 2275 }, - { "id": "44army", "fg": 2276 }, - { "id": "44magnum", "fg": 2277 }, - { "id": "45_acp", "fg": 2278 }, - { "id": "45_jhp", "fg": 2279 }, - { "id": "500_Magnum", "fg": 2280 }, - { "id": "50match", "fg": 2281 }, - { "id": "545-ap", "fg": 2282 }, - { "id": "762_51", "fg": 2283 }, - { "id": "762_51_incendiary", "fg": 2284 }, - { "id": "762_m43", "fg": 2285 }, - { "id": "9mmP", "fg": 2286 }, - { "id": "9mmfmj", "fg": 2287 }, - { "id": "abstractmap", "fg": 2288 }, - { "id": "acidchitin_piece", "fg": 2289 }, - { "id": "acidchitin_plate", "fg": 2290 }, - { "id": "acoustic_guitar", "fg": 2291 }, - { "id": "aluminum_foil", "fg": 2292 }, - { "id": "ammonia", "fg": 2293 }, - { "id": "arming_sword", "fg": 2294 }, - { "id": "armor_lorica", "fg": 2295 }, - { "id": "arrowrest", "fg": 2296 }, - { "id": "atgm_heat", "fg": 2297 }, - { "id": "atomic_coffee", "fg": 2298 }, - { "id": "b_paint", "fg": 2299 }, - { "id": "bag_canvas_small", "fg": 2300 }, - { "id": "bagpipes", "fg": 2301 }, - { "id": "ballistic_vest_esapi", "fg": 2302 }, - { "id": "banjo", "fg": 2303 }, - { "id": "barley", "fg": 2304 }, - { "id": "basketball", "fg": 2305 }, - { "id": "battleaxe", "fg": 2306 }, - { "id": "beer", "fg": 2307 }, - { "id": "belgian_ale", "fg": 2308 }, - { "id": "bfipowder", "fg": 2310 }, - { "id": "bindle", "fg": 2311 }, - { "id": "bio_int_enhancer", "fg": 2312 }, - { "id": "birchbark", "fg": 2313 }, - { "id": "bismuth", "fg": 2314 }, - { "id": "blanket", "fg": 2315 }, - { "id": "bleach", "fg": 2316 }, - { "id": "blueberries_cooked", "fg": 2317 }, - { "id": "boiled_egg", "fg": 2318 }, - { "id": "bone_flute", "fg": 2319 }, - { "id": "bone_human", "fg": 2320 }, - { "id": "boots_acidchitin", "fg": 2321 }, - { "id": "boots_bunker", "fg": 2322 }, - { "id": "boots_hsurvivor", "fg": 2323 }, - { "id": "boots_lsurvivor", "fg": 2324 }, - { "id": "boots_survivor", "fg": 2325 }, - { "id": "boots_western", "fg": 2326 }, - { "id": "bottle_folding", "fg": 2327 }, - { "id": "bottle_metal", "fg": 2328 }, - { "id": "bottle_plastic_smal", "fg": 2329 }, - { "id": "bowling_pin", "fg": 2330 }, - { "id": "briefcase", "fg": 2331 }, - { "id": "broken_manhack", "fg": 2332 }, - { "id": "broken_skitterbot", "fg": 2333 }, - { "id": "broth_bone", "fg": 2334 }, - { "id": "bum_wine", "fg": 2335 }, - { "id": "camisole", "fg": 2336 }, - { "id": "can_food_unsealed", "fg": 2337 }, - { "id": "case_violin", "fg": 2338 }, - { "id": "cattail_rhizome", "fg": 2339 }, - { "id": "cattail_stalk", "fg": 2340 }, - { "id": "cell_phone_flashlight", "fg": 2341 }, - { "id": "ceramic_armor", "fg": 2342 }, - { "id": "ceramic_shard", "fg": 2343 }, - { "id": "chainmail_arms", "fg": 2344 }, - { "id": "chainmail_hauberk", "fg": 2345 }, - { "id": "chainmail_hood", "fg": 2346 }, - { "id": "chainmail_legs", "fg": 2347 }, - { "id": "chainmail_vest", "fg": 2348 }, - { "id": "chem_aluminium_powder", "fg": 2349 }, - { "id": "chem_aluminium_sulphate", "fg": 2350 }, - { "id": "chem_hexamine", "fg": 2351 }, - { "id": "chestwrap", "fg": 2352 }, - { "id": "chestwrap_fur", "fg": 2353 }, - { "id": "chestwrap_leather", "fg": 2354 }, - { "id": "chestwrap_wool", "fg": 2355 }, - { "id": "chili", "fg": 2356 }, - { "id": "chili_pepper", "fg": 2357 }, - { "id": "chipper", "fg": 2358 }, - { "id": "choc_drink", "fg": 2359 }, - { "id": "chocpretzels", "fg": 2360 }, - { "id": "cig_butt", "fg": 2361 }, - { "id": "cig_lit", "fg": 2362 }, - { "id": "clarinet", "fg": 2363 }, - { "id": "coffee", "fg": 2364 }, - { "id": "colamdew", "fg": 2365 }, - { "id": "con_milk", "fg": 2366 }, - { "id": "con_mix", "fg": 2367 }, - { "id": "concrete", "fg": 2368 }, - { "id": "contacts", "fg": 2369 }, - { "id": "cooking_oil", "fg": 2370 }, - { "id": "copper", "fg": 2371 }, - { "id": "copper_bracelet", "fg": 2372 }, - { "id": "copper_knife", "fg": 2373 }, - { "id": "corndogs_cooked", "fg": 2374 }, - { "id": "corndogs_frozen", "fg": 2375 }, - { "id": "cow_bell", "fg": 2376 }, - { "id": "crispycran", "fg": 2377 }, - { "id": "crown_golden", "fg": 2378 }, - { "id": "cs_lajatang_off", "fg": 2379 }, - { "id": "cured_hide", "fg": 2380 }, - { "id": "cured_pelt", "fg": 2381 }, - { "id": "curry_meat", "fg": 2382 }, - { "id": "curry_powder", "fg": 2383 }, - { "id": "curry_veggy", "fg": 2384 }, - { "id": "dahlia_baked", "fg": 2386 }, - { "id": "dao", "fg": 2387 }, - { "id": "detergent", "fg": 2388 }, - { "id": "diamond", "fg": 2389 }, - { "id": "diamond_dental_grill", "fg": 2390 }, - { "id": "diazepam", "fg": 2391 }, - { "id": "distaff_spindle", "fg": 2393 }, - { "id": "down_blanket", "fg": 2394 }, - { "id": "down_pillow", "fg": 2395 }, - { "id": "dry_fish", "fg": 2396 }, - { "id": "dry_meat_tainted", "fg": 2397 }, - { "id": "dry_veggy_tainted", "fg": 2398 }, - { "id": "egg_bird", "fg": 2399 }, - { "id": "egg_reptile", "fg": 2400 }, - { "id": "eink_tablet_pc", "fg": 2401 }, - { "id": "elec_hairtrimmer", "fg": 2402 }, - { "id": "electric_blanket", "fg": 2403 }, - { "id": "emer_blanket", "fg": 2404 }, - { "id": "emer_blanket_on", "fg": 2405 }, - { "id": "esbit_stove", "fg": 2406 }, - { "id": "estoc", "fg": 2407 }, - { "id": "fat", "fg": 2408 }, - { "id": "fat_tainted", "fg": 2409 }, - { "id": "felt_patch", "fg": 2410 }, - { "id": "file", "fg": 2411 }, - { "id": "fire_lance", "fg": 2413 }, - { "id": "firehelmet", "fg": 2414 }, - { "id": "fish", "fg": 2415 }, - { "id": "fish_smoked", "fg": 2416 }, - { "id": "fishing_hook_basic", "fg": 2417 }, - { "id": "fishing_rod_basic", "fg": 2418 }, - { "id": "fishing_rod_professional", "fg": 2419 }, - { "id": "flask_yeast", "fg": 2420 }, - { "id": "flatbread", "fg": 2421 }, - { "id": "flint_steel", "fg": 2422 }, - { "id": "flute", "fg": 2423 }, - { "id": "folding_poncho", "fg": 2424 }, - { "id": "folding_poncho_on", "fg": 2425 }, - { "id": "food_processor", "fg": 2426 }, - { "id": "footrags", "fg": 2427 }, - { "id": "footrags_fur", "fg": 2428 }, - { "id": "footrags_leather", "fg": 2429 }, - { "id": "footrags_wool", "fg": 2430 }, - { "id": "fruit_cooked", "fg": 2431 }, - { "id": "fungicide", "fg": 2432 }, - { "id": "fur_blanket", "fg": 2433 }, - { "id": "g_carpet", "fg": 2434 }, - { "id": "g_paint", "fg": 2435 }, - { "id": "g_shovel", "fg": 2436 }, - { "id": "gal_drum", "fg": 2437 }, - { "id": "gambeson", "fg": 2438 }, - { "id": "garlic", "fg": 2439 }, - { "id": "gasdiscount_gold", "fg": 2440 }, - { "id": "gasdiscount_platinum", "fg": 2441 }, - { "id": "gasdiscount_silver", "fg": 2442 }, - { "id": "glass_shard", "fg": 2443 }, - { "id": "glass_shiv", "fg": 2444 }, - { "id": "glass_tinted", "fg": 2445 }, - { "id": "gloves_wraps_fur", "fg": 2446 }, - { "id": "gold_bracelet", "fg": 2447 }, - { "id": "gold_dental_grill", "fg": 2448 }, - { "id": "golf_ball", "fg": 2449 }, - { "id": "gown", "fg": 2450 }, - { "id": "grapnel", "fg": 2451 }, - { "id": "h&k416a5", "fg": 2452 }, - { "id": "hacksaw", "fg": 2453 }, - { "id": "halligan", "fg": 2454 }, - { "id": "halter_top", "fg": 2455 }, - { "id": "hand_axe", "fg": 2456 }, - { "id": "hand_paddles", "fg": 2457 }, - { "id": "hand_rims", "fg": 2458 }, - { "id": "handflare", "fg": 2459 }, - { "id": "handflare_dead", "fg": 2460 }, - { "id": "handflare_lit", "fg": 2461 }, - { "id": "handrolled_cig", "fg": 2462 }, - { "id": "hat_hard", "fg": 2463 }, - { "id": "hat_hard_hooded", "fg": 2464 }, - { "id": "hat_knit", "fg": 2465 }, - { "id": "hat_newsboy", "fg": 2466 }, - { "id": "hbolt_metal", "fg": 2467 }, - { "id": "hbolt_wood", "fg": 2468 }, - { "id": "hdframe", "fg": 2469 }, - { "id": "heatpack", "fg": 2470 }, - { "id": "heatpack_used", "fg": 2471 }, - { "id": "helmet_army", "fg": 2472 }, - { "id": "hickory_nut", "fg": 2473 }, - { "id": "hickory_nut_roasted", "fg": 2474 }, - { "id": "hickory_nut_unshell", "fg": 2475 }, - { "id": "hickory_root", "fg": 2476 }, - { "id": "hobo_stove", "fg": 2477 }, - { "id": "holy_symbol", "fg": 2478 }, - { "id": "honey_bottled", "fg": 2479 }, - { "id": "hotdogs_cooked", "fg": 2480 }, - { "id": "i_combustion", "fg": 2481 }, - { "id": "iceaxe", "fg": 2482 }, - { "id": "inflatable_boat", "fg": 2483 }, - { "id": "inflatable_section", "fg": 2484 }, - { "id": "jacket_army", "fg": 2485 }, - { "id": "jacket_jean", "fg": 2486 }, - { "id": "jacket_leather", "fg": 2487 }, - { "id": "jacket_light", "fg": 2488 }, - { "id": "jam_strawberries", "fg": 2489 }, - { "id": "ji", "fg": 2490 }, - { "id": "jian", "fg": 2491 }, - { "id": "joint_roach", "fg": 2493 }, - { "id": "khopesh", "fg": 2494 }, - { "id": "knife", "fg": 2495 }, - { "id": "kukri", "fg": 2496 }, - { "id": "l-stick", "fg": 2497 }, - { "id": "l-stick_on", "fg": 2498 }, - { "id": "lead_ball", "fg": 2499 }, - { "id": "leg_warmers_f", "fg": 2500 }, - { "id": "link_sheet", "fg": 2501 }, - { "id": "locket", "fg": 2502 }, - { "id": "longsword", "fg": 2503 }, - { "id": "longsword_fake", "fg": 2504 }, - { "id": "mace", "fg": 2505 }, - { "id": "maid_dress", "fg": 2506 }, - { "id": "maid_hat", "fg": 2507 }, - { "id": "makeshift_axe", "fg": 2508 }, - { "id": "makeshift_crowbar", "fg": 2509 }, - { "id": "makeshift_funnel", "fg": 2510 }, - { "id": "makeshift_hammer", "fg": 2511 }, - { "id": "marble", "fg": 2512 }, - { "id": "marshmallow", "fg": 2513 }, - { "id": "material_aluminium_ingot", "fg": 2514 }, - { "id": "material_sand", "fg": 2515 }, - { "id": "material_shrd_limestone", "fg": 2516 }, - { "id": "meat_salted", "fg": 2517 }, - { "id": "mess_tin", "fg": 2518 }, - { "id": "metal_funnel", "fg": 2519 }, - { "id": "metal_tank_little", "fg": 2520 }, - { "id": "metal_tank_small", "fg": 2521 }, - { "id": "meth", "fg": 2522 }, - { "id": "mjolnir", "fg": 2523 }, - { "id": "morphine", "fg": 2524 }, - { "id": "mortar_pestle", "fg": 2525 }, - { "id": "mouthpiece", "fg": 2526 }, - { "id": "mustard", "fg": 2527 }, - { "id": "mutagen_bird", "fg": 2528 }, - { "id": "mutagen_cattle", "fg": 2529 }, - { "id": "mutagen_elfa", "fg": 2530 }, - { "id": "mutagen_fish", "fg": 2531 }, - { "id": "mutagen_plant", "fg": 2532 }, - { "id": "mutagen_slime", "fg": 2533 }, - { "id": "nachosc", "fg": 2534 }, - { "id": "naginata", "fg": 2535 }, - { "id": "nanoskirt", "fg": 2536 }, - { "id": "omnicamera", "fg": 2537 }, - { "id": "onion_rings", "fg": 2538 }, - { "id": "oxy_torch", "fg": 2539 }, - { "id": "p_carpet", "fg": 2540 }, - { "id": "p_paint", "fg": 2541 }, - { "id": "panties", "fg": 2542 }, - { "id": "pants", "fg": 2543 }, - { "id": "pants_army", "fg": 2544 }, - { "id": "pants_cargo", "fg": 2545 }, - { "id": "pants_checkered", "fg": 2546 }, - { "id": "pants_leather", "fg": 2547 }, - { "id": "pants_ski", "fg": 2548 }, - { "id": "pillow", "fg": 2549 }, - { "id": "pitchfork", "fg": 2550 }, - { "id": "plastic_shopping_bag", "fg": 2551 }, - { "id": "pliers", "fg": 2552 }, - { "id": "plut_cell", "fg": 2553 }, - { "id": "pool_ball", "fg": 2554 }, - { "id": "pot_canning", "fg": 2555 }, - { "id": "pot_copper", "fg": 2556 }, - { "id": "pot_makeshift", "fg": 2557 }, - { "id": "pot_makeshift_copper", "fg": 2558 }, - { "id": "powder_eggs", "fg": 2559 }, - { "id": "powered_earmuffs", "fg": 2560 }, - { "id": "protein_powder", "fg": 2561 }, - { "id": "qiang", "fg": 2562 }, - { "id": "r_carpet", "fg": 2563 }, - { "id": "r_paint", "fg": 2564 }, - { "id": "radio_car", "fg": 2565 }, - { "id": "radio_car_on", "fg": 2566 }, - { "id": "radiocontrol", "fg": 2567 }, - { "id": "raw_fur", "fg": 2568 }, - { "id": "raw_hleather", "fg": 2569 }, - { "id": "razor_blade", "fg": 2570 }, - { "id": "ref_lighter", "fg": 2571 }, - { "id": "reinforced_glass_sheet", "fg": 2572 }, - { "id": "reloaded_454_Casull", "fg": 2573 }, - { "id": "reloaded_shot_he", "fg": 2574 }, - { "id": "reloaded_shot_slug", "fg": 2575 }, - { "id": "reloaded_signal_fla", "fg": 2576 }, - { "id": "reloaded_ss", "fg": 2577 }, - { "id": "reloaded_sw", "fg": 2578 }, - { "id": "reloaded_xdart", "fg": 2579 }, - { "id": "ring_engagement", "fg": 2580 }, - { "id": "robe", "fg": 2581 }, - { "id": "rollerskates", "fg": 2582 }, - { "id": "sandwich_cheese", "fg": 2583 }, - { "id": "sandwich_cheese_gri", "fg": 2584 }, - { "id": "sandwich_cucumber", "fg": 2585 }, - { "id": "sandwich_honey", "fg": 2586 }, - { "id": "sandwich_jam", "fg": 2587 }, - { "id": "sandwich_pb", "fg": 2588 }, - { "id": "sandwich_pbj", "fg": 2589 }, - { "id": "sandwich_pbm", "fg": 2590 }, - { "id": "sandwich_sauce", "fg": 2591 }, - { "id": "sausage_wasteland", "fg": 2592 }, - { "id": "saxophone", "fg": 2593 }, - { "id": "scabbard", "fg": 2594 }, - { "id": "scrap_bronze", "fg": 2595 }, - { "id": "scrap_copper", "fg": 2596 }, - { "id": "sharp_toothbrush", "fg": 2597 }, - { "id": "shavingkit", "fg": 2598 }, - { "id": "sheath", "fg": 2599 }, - { "id": "sheet_metal_small", "fg": 2600 }, - { "id": "shillelagh", "fg": 2601 }, - { "id": "shorts_denim", "fg": 2602 }, - { "id": "shot_00", "fg": 2603 }, - { "id": "shot_bird", "fg": 2604 }, - { "id": "shot_flechette", "fg": 2605 }, - { "id": "silver_bracelet", "fg": 2606 }, - { "id": "silver_small", "fg": 2607 }, - { "id": "skirt_leather", "fg": 2608 }, - { "id": "smart_phone", "fg": 2609 }, - { "id": "smart_phone_flashlight", "fg": 2610 }, - { "id": "soap", "fg": 2611 }, - { "id": "soup_chicken", "fg": 2612 }, - { "id": "soup_dumplings", "fg": 2613 }, - { "id": "soup_fish", "fg": 2614 }, - { "id": "soup_mushroom", "fg": 2615 }, - { "id": "soup_tomato", "fg": 2616 }, - { "id": "soup_veggy", "fg": 2617 }, - { "id": "soup_woods", "fg": 2618 }, - { "id": "spear_dory", "fg": 2619 }, - { "id": "spear_forked", "fg": 2620 }, - { "id": "spear_stone", "fg": 2621 }, - { "id": "spider_egg", "fg": 2622 }, - { "id": "sports_bra", "fg": 2623 }, - { "id": "stepladder", "fg": 2624 }, - { "id": "stomach", "fg": 2625 }, - { "id": "straw_doll", "fg": 2626 }, - { "id": "sugar_beet", "fg": 2627 }, - { "id": "survivor_hairtrimmer", "fg": 2628 }, - { "id": "survivor_scope", "fg": 2629 }, - { "id": "survivor_vest", "fg": 2630 }, - { "id": "sushi_fishroll", "fg": 2631 }, - { "id": "swag_bag", "fg": 2632 }, - { "id": "sword_xiphos", "fg": 2633 }, - { "id": "tallow", "fg": 2634 }, - { "id": "tallow_tainted", "fg": 2635 }, - { "id": "tanbark", "fg": 2636 }, - { "id": "tanned_hide", "fg": 2637 }, - { "id": "tanned_pelt", "fg": 2638 }, - { "id": "tanto", "fg": 2639 }, - { "id": "tea", "fg": 2640 }, - { "id": "telepad", "fg": 2641 }, - { "id": "thermometer", "fg": 2642 }, - { "id": "thermos", "fg": 2643 }, - { "id": "throwing_stick", "fg": 2644 }, - { "id": "tieclip", "fg": 2645 }, - { "id": "tin", "fg": 2646 }, - { "id": "tinder", "fg": 2647 }, - { "id": "tinderbox", "fg": 2648 }, - { "id": "tinfoil_hat", "fg": 2649 }, - { "id": "toothbrush_plain", "fg": 2650 }, - { "id": "trimmer_off", "fg": 2651 }, - { "id": "trimmer_on", "fg": 2652 }, - { "id": "trumpet", "fg": 2653 }, - { "id": "tuba", "fg": 2654 }, - { "id": "tunic", "fg": 2655 }, - { "id": "tunic_rag", "fg": 2656 }, - { "id": "ukulele", "fg": 2657 }, - { "id": "undershirt", "fg": 2658 }, - { "id": "unfinished_charcoal", "fg": 2659 }, - { "id": "v_combustion", "fg": 2660 }, - { "id": "v_scoop_item", "fg": 2661 }, - { "id": "vehicle_dashboard", "fg": 2662 }, - { "id": "vibrator", "fg": 2663 }, - { "id": "violin", "fg": 2664 }, - { "id": "violin_golden", "fg": 2665 }, - { "id": "w_paint", "fg": 2666 }, - { "id": "waffleiron", "fg": 2667 }, - { "id": "wakizashi", "fg": 2668 }, - { "id": "warhammer", "fg": 2669 }, - { "id": "water_acid_weak", "fg": 2670 }, - { "id": "waterproof_gunmod", "fg": 2671 }, - { "id": "wearable_light", "fg": 2672 }, - { "id": "wearable_light_on", "fg": 2673 }, - { "id": "wheel_armor", "fg": 2674 }, - { "id": "wheel_bicycle", "fg": 2675 }, - { "id": "wheel_caster", "fg": 2676 }, - { "id": "wheel_motorbike", "fg": 2677 }, - { "id": "wheel_small", "fg": 2678 }, - { "id": "wheel_wide", "fg": 2679 }, - { "id": "whiskey", "fg": 2680 }, - { "id": "whistle", "fg": 2681 }, - { "id": "y_carpet", "fg": 2682 }, - { "id": "y_paint", "fg": 2683 }, - { "id": "yarn", "fg": 2684 }, - { "id": "yeast", "fg": 2685 }, - { "id": "yoghurt", "fg": 2686 }, - { "id": "zubon_gi", "fg": 2687 }, - { "id": "zweihander", "fg": 2688 }, - { "id": "cloak", "fg": 2689 }, - { "id": "cloak_fur", "fg": 2690 }, - { "id": "cloak_leather", "fg": 2691 }, - { "id": "cloak_wool", "fg": 2692 }, - { "id": "coat_rain", "fg": 2693 }, - { "id": "optical_cloak", "fg": 2694 }, - { "id": "legrig", "fg": 2695 }, - { "id": "ketchup", "fg": 2696 }, - { "id": "mayonnaise", "fg": 2697 }, - { "id": "book_nonf_zine_news_anlyst", "fg": 2698 }, - { "id": "mag_animecon", "fg": 2699 }, - { "id": "mag_dodge", "fg": 2700 }, - { "id": "mag_fabrication", "fg": 2701 }, - { "id": "mag_firstaid", "fg": 2702 }, - { "id": "mag_guns", "fg": 2703 }, - { "id": "mag_news", "fg": 2704 }, - { "id": "mag_porn", "fg": 2705 }, - { "id": "mag_throwing", "fg": 2706 }, - { "id": "mag_unarmed", "fg": 2707 }, - { "id": "multi_cooker", "fg": 2712 }, - { "id": "multi_cooker_filled", "fg": 2713 }, - { "id": "oxygen_tank", "fg": 2714 }, - { "id": "pet_carrier", "fg": 2715 }, - { "id": "primitive_shovel", "fg": 2716 }, - { "id": "amethyst_gold_ring", "fg": 2717 }, - { "id": "amethyst_platinum_ring", "fg": 2718 }, - { "id": "amethyst_silver_ring", "fg": 2719 }, - { "id": "aquamarine_gold_ring", "fg": 2720 }, - { "id": "aquamarine_platinum_ring", "fg": 2721 }, - { "id": "aquamarine_silver_ring", "fg": 2722 }, - { "id": "citrine_gold_ring", "fg": 2723 }, - { "id": "citrine_platinum_ring", "fg": 2724 }, - { "id": "citrine_silver_ring", "fg": 2725 }, - { "id": "diamond_platinum_ring", "fg": 2726 }, - { "id": "diamond_ring", "fg": 2727 }, - { "id": "diamond_silver_ring", "fg": 2728 }, - { "id": "emerald_gold_ring", "fg": 2729 }, - { "id": "emerald_platinum_ring", "fg": 2730 }, - { "id": "emerald_silver_ring", "fg": 2731 }, - { "id": "peridot_gold_ring", "fg": 2738 }, - { "id": "peridot_platinum_ring", "fg": 2739 }, - { "id": "peridot_silver_ring", "fg": 2740 }, - { "id": "tourmaline_gold_ring", "fg": 2744 }, - { "id": "tourmaline_platinum_ring", "fg": 2745 }, - { "id": "tourmaline_silver_ring", "fg": 2746 }, - { "id": "teddy_bear", "fg": 2747 }, - { "id": "tire_iron", "fg": 2748 }, - { "id": "winter_gloves_army", "fg": 2750 }, - { "id": "footstep_above", "fg": 2782 }, - { "id": "footstep_below", "fg": 2783 }, - { "id": "graffiti", "fg": 2784 }, - { "id": "zombie_revival_indicator", "fg": 2789 }, - { "id": "overlay_mutation_bio_sneeze_beam", "fg": 2790 }, - { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 2791 }, - { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 2792 }, - { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 2793 }, - { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 2794 }, - { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 2795 }, - { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 2796 }, - { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 2797 }, - { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 2798 }, - { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 2799 }, - { "id": "overlay_female_mutation_MANA_LUM", "fg": 2800 }, - { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 2801 }, - { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 2802 }, - { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 2803 }, - { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 2804 }, - { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 2808 }, - { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 2809 }, - { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 2810 }, - { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 2811 }, - { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 2812 }, - { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 2813 }, - { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 2814 }, - { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 2815 }, - { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 2816 }, - { "id": "overlay_male_mutation_MANA_LUM", "fg": 2817 }, - { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 2818 }, - { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 2819 }, - { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 2820 }, - { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 2821 }, - { "id": "overlay_mutation_DEMON_CLAWS", "fg": 2825 }, - { "id": "overlay_mutation_DEMON_POSSES", "fg": 2826 }, - { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 2827 }, - { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 2828 }, - { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 2829 }, - { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 2830 }, - { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 2831 }, - { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 2832 }, - { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 2833 }, - { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 2834 }, - { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 2835 }, - { "id": "DEBUG_spellbook", "fg": 2836 }, - { "id": "animist_shadows", "fg": 2837 }, - { "id": "bio_fuel_cell_blood", "fg": 2838 }, - { "id": "bio_sneeze_beam", "fg": 2839 }, - { "id": "biomancer_spellbook", "fg": 2840 }, - { "id": "disp_wand", "fg": 2841 }, - { "id": "druid_spellbook", "fg": 2842 }, - { "id": "eshaper_spellbook", "fg": 2843 }, - { "id": "generic_spellbook", "fg": 2844 }, - { "id": "light_manipulation_spellbook", "fg": 2845 }, - { "id": "magus_spellbook", "fg": 2846 }, - { "id": "magus_spellbook_move", "fg": 2847 }, - { "id": "mring_copper", "fg": 2848 }, - { "id": "mring_gold", "fg": 2849 }, - { "id": "mring_platinum", "fg": 2850 }, - { "id": "mring_silver", "fg": 2851 }, - { "id": "novice_stormshaper_book", "fg": 2852 }, - { "id": "priest_advanced", "fg": 2853 }, - { "id": "priest_beginner", "fg": 2854 }, - { "id": "pyro", "fg": 2855 }, - { "id": "recovery_spellbook", "fg": 2856 }, - { "id": "small_mana_crystal", "fg": 2857 }, - { "id": "spell_scroll", "fg": 2858 }, - { "id": "spell_wand", "fg": 2859 }, - { "id": "stat_up_spellbook", "fg": 2860 }, - { "id": "summon_scroll_smudged", "fg": 2861 }, - { "id": "summon_undead_spellbook", "fg": 2862 }, - { "id": "techno_em", "fg": 2863 }, - { "id": "techno_fundamentals", "fg": 2864 }, - { "id": "techno_idiots", "fg": 2865 }, - { "id": "tome_of_storms", "fg": 2866 }, - { "id": "translocate_spellbook", "fg": 2867 }, - { "id": "winter_grasp", "fg": 2868 }, - { "id": "wizard_advanced", "fg": 2869 }, - { "id": "wizard_beginner", "fg": 2870 }, - { "id": "wizard_utility", "fg": 2871 }, - { "id": "mon_goblin_chieftain", "fg": 2872 }, - { "id": "mon_goblin_slinger", "fg": 2873 }, - { "id": "mon_goblin_warrior", "fg": 2874 }, - { "id": "mon_cookie", "fg": 2878 }, - { "id": "mon_cow_calf_choc", "fg": 2879 }, - { "id": "mon_cow_choc", "fg": 2880 }, - { "id": "lemming_shadow", "fg": 3116 }, - { "id": "mon_boar_wild", "fg": 3117 }, - { "id": "mon_boar_wild_piglet", "fg": 3118 }, - { "id": "mon_copbot", "fg": 3119 }, - { "id": "mon_cow", "fg": 3120 }, - { "id": "mon_cow_calf", "fg": 3121 }, - { "id": "mon_fish_eel", "fg": 3122 }, - { "id": "mon_frog", "fg": 3123 }, - { "id": "mon_frog_small", "fg": 3124 }, - { "id": "mon_gracke", "fg": 3125 }, - { "id": "mon_grocerybot", "fg": 3126 }, - { "id": "mon_grocerybot_busted", "fg": 3127 }, - { "id": "mon_hallu_mannequin", "fg": 3128 }, - { "id": "mon_lab_rat", "fg": 3129 }, - { "id": "mon_pig", "fg": 3130 }, - { "id": "mon_pig_piglet", "fg": 3131 }, - { "id": "mon_pigeon", "fg": 3132 }, - { "id": "mon_sheep", "fg": 3134 }, - { "id": "mon_skeleton_brute", "fg": 3135 }, - { "id": "mon_zombie_gasbag_crawler", "fg": 3144 }, - { "id": "mon_zombie_gasbag_immobile", "fg": 3145 }, - { "id": "mon_zombie_hanging_innards", "fg": 3146 }, - { "id": "mon_zombie_pig", "fg": 3148 }, - { "id": "mon_zow", "fg": 3157 }, - { "id": "shadow_32x32_small", "fg": 3159 }, - { "id": "corpse_mon_beaver", "fg": 3160 }, - { "id": "corpse_mon_beaver_mutant_avian", "fg": 3161 }, - { "id": "corpse_mon_beaver_mutant_huge", "fg": 3162 }, - { "id": "corpse_mon_zombeaver", "fg": 3163 }, - { "id": "mon_beaver", "fg": 3164 }, - { "id": "mon_beaver_mutant_avian", "fg": 3165 }, - { "id": "mon_beaver_mutant_huge", "fg": 3166 }, - { "id": "mon_zombeaver", "fg": 3167 }, - { "id": "mon_dog_bull", "fg": 3176 }, - { "id": "mon_dog_rottweiler", "fg": 3177 }, - { "id": "corpse_mon_aphid", "fg": 3220 }, - { "id": "mon_aphid", "fg": 3221 }, - { "id": "corpse_mon_brute_pupa", "fg": 3222 }, - { "id": "mon_brute_pupa", "fg": 3223 }, - { "id": "corpse_mon_coyote_mutant_venom", "fg": 3224 }, - { "id": "mon_coyote_mutant_venom", "fg": 3225 }, - { "id": "bot_eyebot", "fg": 3226 }, - { "id": "broken_eyebot", "fg": 3227 }, - { "id": "mon_eyebot", "fg": 3228 }, - { "id": "corpse_mon_fungaloid_shambler", "fg": 3231 }, - { "id": "mon_fungaloid_shambler", "fg": 3232 }, - { "id": "mon_goose_canadian", "fg": 3233 }, - { "id": "mon_grouse", "fg": 3234 }, - { "id": "corpse_mon_mantis_small", "fg": 3235 }, - { "id": "mon_mantis_small", "fg": 3236 }, - { "id": "mon_pheasant", "fg": 3237 }, - { "id": "mon_tadpole_grabber", "fg": 3238 }, - { "id": "mon_tazer_hack", "fg": 3239 }, - { "id": "mon_zombie_necro_boomer", "fg": 3243 }, - { "id": "mon_zombie_pig_gas", "fg": 3244 }, - { "id": "corpse_mon_zombie_rust", "fg": 3245 }, - { "id": "corpse_mon_zombie_shell", "fg": 3246 }, - { "id": "corpse_mon_zombie_urchin", "fg": 3247 }, - { "id": "mon_zombie_rust", "fg": 3248 }, - { "id": "mon_zombie_shell", "fg": 3249 }, - { "id": "mon_zombie_urchin", "fg": 3250 }, - { "id": "3957_t_metal_0", "fg": 3637 }, - { "id": "t_concrete", "fg": 3660 }, - { "id": "t_diesel_tank", "fg": 3661 }, - { "id": "t_diesel_tank_smashed", "fg": 3662 }, - { "id": "t_gas_tank_smashed", "fg": 3668 }, - { "id": "t_shingle_flat_roof", "fg": 3689 }, - { "id": "t_strconc_floor", "fg": 3690 }, - { "id": "t_thconc_floor_flesh", "fg": 3696 }, - { "id": "t_resin_hole", "fg": 3707 }, - { "id": "t_paper_roof", "fg": 4109 }, - { "id": "t_screen_door_c", "fg": 4295 }, - { "id": "t_screen_door_o", "fg": 4296 }, - { "id": "vp_animal_compartment", "fg": 5001 }, - { "id": "vp_autoclave", "fg": 5280 }, - { "id": "vp_dishwasher", "fg": 5285 }, - { "id": "vp_recharge_station", "fg": 5301 } + { "id": "overlay_worn_helmet_motor_raised", "fg": 918 }, + { "id": "overlay_worn_leather_collar", "fg": 920 }, + { "id": "overlay_worn_silver_watch", "fg": 933 }, + { "id": "overlay_worn_sunglasses_bifocal", "fg": 936 }, + { "id": "overlay_worn_sunglasses_eye", "fg": 937 }, + { "id": "overlay_worn_sunglasses_reading", "fg": 938 }, + { "id": "overlay_worn_chestguard_hard", "fg": 943 }, + { "id": "1585_f_table_0", "fg": 1303 }, + { "id": "1586_f_table_1", "fg": 1304 }, + { "id": "1587_f_table_2", "fg": 1305 }, + { "id": "1588_f_table_3", "fg": 1306 }, + { "id": "1589_f_table_4", "fg": 1307 }, + { "id": "1590_f_table_5", "fg": 1308 }, + { "id": "f_alien_scar", "fg": 1342 }, + { "id": "f_birdbath", "fg": 1343 }, + { "id": "f_brazier", "fg": 1344 }, + { "id": "f_bulletin", "fg": 1345 }, + { "id": "f_chimney", "fg": 1346 }, + { "id": "f_dandelion", "fg": 1347 }, + { "id": "f_exercise", "fg": 1348 }, + { "id": "f_logstool", "fg": 1349 }, + { "id": "f_pillow_fort", "fg": 1350 }, + { "id": "f_roof_turbine_vent", "fg": 1351 }, + { "id": "f_sink", "fg": 1352 }, + { "id": "f_solar_unit", "fg": 1353 }, + { "id": "f_vent_pipe", "fg": 1354 }, + { "id": "f_crate_c", "fg": 1387 }, + { "id": "f_crate_o", "fg": 1388 }, + { "id": "f_curtain_open", "fg": 1431 }, + { "id": "f_dresser", "fg": 1450 }, + { "id": "f_floor_lamp", "fg": 1455 }, + { "id": "f_glowingbulb", "fg": 1456 }, + { "id": "f_oven", "fg": 1472 }, + { "id": "f_skin_wall_t_connection_e", "fg": 1487 }, + { "id": "f_speaker_cabinet", "fg": 1489 }, + { "id": "f_black_eyed_susan", "fg": 1506 }, + { "id": "f_bluebell", "fg": 1507 }, + { "id": "f_burdock", "fg": 1508 }, + { "id": "f_chamomile", "fg": 1509 }, + { "id": "f_chicory", "fg": 1510 }, + { "id": "f_dahlia", "fg": 1511 }, + { "id": "f_datura", "fg": 1512 }, + { "id": "f_flower_spurge", "fg": 1513 }, + { "id": "f_flower_tulip", "fg": 1514 }, + { "id": "f_lily", "fg": 1515 }, + { "id": "f_mustard", "fg": 1516 }, + { "id": "f_mutpoppy", "fg": 1517 }, + { "id": "f_sunflower", "fg": 1518 }, + { "id": "adhesive_bandages", "fg": 1520 }, + { "id": "airhorn", "fg": 1521 }, + { "id": "alloy_plate", "fg": 1522 }, + { "id": "amplifier_head", "fg": 1523 }, + { "id": "arm_warmers", "fg": 1524 }, + { "id": "autoclave", "fg": 1525 }, + { "id": "bag_plastic", "fg": 1526 }, + { "id": "boltcutters", "fg": 1527 }, + { "id": "bookplate", "fg": 1528 }, + { "id": "bottle_opener", "fg": 1529 }, + { "id": "bow_saw", "fg": 1530 }, + { "id": "boxing_gloves", "fg": 1531 }, + { "id": "broken_dimensional_anchor", "fg": 1532 }, + { "id": "bucket", "fg": 1533 }, + { "id": "butane_tank", "fg": 1534 }, + { "id": "cable_instrument", "fg": 1535 }, + { "id": "cable_xlr", "fg": 1536 }, + { "id": "can_food", "fg": 1537 }, + { "id": "can_opener", "fg": 1538 }, + { "id": "candle", "fg": 1539 }, + { "id": "candle_lit", "fg": 1540 }, + { "id": "cell_phone", "fg": 1541 }, + { "id": "chess", "fg": 1542 }, + { "id": "chopsticks", "fg": 1543 }, + { "id": "clamp", "fg": 1544 }, + { "id": "clay_pot_flower", "fg": 1545 }, + { "id": "comb_pocket", "fg": 1546 }, + { "id": "condom", "fg": 1547 }, + { "id": "cookies", "fg": 1548 }, + { "id": "cutting_board", "fg": 1549 }, + { "id": "dehydrator", "fg": 1550 }, + { "id": "dimensional_anchor", "fg": 1551 }, + { "id": "dimensional_anchor_on", "fg": 1552 }, + { "id": "dnd", "fg": 1553 }, + { "id": "eclipse_glasses", "fg": 1554 }, + { "id": "eyedrops", "fg": 1555 }, + { "id": "fan", "fg": 1556 }, + { "id": "fancy_glasses_bifocal", "fg": 1557 }, + { "id": "fancy_glasses_eye", "fg": 1558 }, + { "id": "fancy_glasses_reading", "fg": 1559 }, + { "id": "feather", "fg": 1560 }, + { "id": "fetid_goop", "fg": 1561 }, + { "id": "flask_hip", "fg": 1562 }, + { "id": "frisbee", "fg": 1564 }, + { "id": "funnel", "fg": 1565 }, + { "id": "glass_sheet", "fg": 1566 }, + { "id": "glasses_bifocale", "fg": 1567 }, + { "id": "glasses_eye", "fg": 1568 }, + { "id": "glasses_reading", "fg": 1569 }, + { "id": "hair_dryer", "fg": 1570 }, + { "id": "hammer_sledge", "fg": 1571 }, + { "id": "hammer_sledge_heavy", "fg": 1572 }, + { "id": "hammer_sledge_short", "fg": 1573 }, + { "id": "hinge", "fg": 1574 }, + { "id": "hotplate", "fg": 1575 }, + { "id": "kettle", "fg": 1576 }, + { "id": "knife_paring", "fg": 1577 }, + { "id": "knife_steak", "fg": 1578 }, + { "id": "knit_scarf", "fg": 1579 }, + { "id": "licorice", "fg": 1580 }, + { "id": "material_limestone", "fg": 1581 }, + { "id": "material_rhodonite", "fg": 1582 }, + { "id": "material_rocksalt", "fg": 1583 }, + { "id": "material_zincite", "fg": 1584 }, + { "id": "mattress", "fg": 1585 }, + { "id": "meat", "fg": 1586 }, + { "id": "meat_tainted", "fg": 1587 }, + { "id": "mil_plate", "fg": 1588 }, + { "id": "mobile_memory_card", "fg": 1589 }, + { "id": "motor_tiny", "fg": 1591 }, + { "id": "mp3", "fg": 1592 }, + { "id": "nanomaterial", "fg": 1593 }, + { "id": "office_holepunch", "fg": 1594 }, + { "id": "paper", "fg": 1595 }, + { "id": "pencil", "fg": 1596 }, + { "id": "permanent_marker", "fg": 1597 }, + { "id": "pipe_fittings", "fg": 1598 }, + { "id": "plastic_straw", "fg": 1599 }, + { "id": "plums", "fg": 1600 }, + { "id": "radio", "fg": 1601 }, + { "id": "radio_on", "fg": 1602 }, + { "id": "rake_plastic", "fg": 1603 }, + { "id": "rapier", "fg": 1604 }, + { "id": "rapier_fake", "fg": 1605 }, + { "id": "rc_car_box", "fg": 1606 }, + { "id": "rebreather_filter", "fg": 1607 }, + { "id": "reinforced_glass_pane", "fg": 1608 }, + { "id": "rhubarb", "fg": 1609 }, + { "id": "rock_flaking", "fg": 1610 }, + { "id": "rock_large", "fg": 1611 }, + { "id": "rock_quern", "fg": 1612 }, + { "id": "rock_sock", "fg": 1613 }, + { "id": "sandpaper", "fg": 1614 }, + { "id": "screwdriver_set", "fg": 1615 }, + { "id": "sm_extinguisher", "fg": 1616 }, + { "id": "spoon", "fg": 1617 }, + { "id": "spray_can", "fg": 1618 }, + { "id": "standard_template_construct", "fg": 1619 }, + { "id": "steel_armor", "fg": 1620 }, + { "id": "steel_plate", "fg": 1621 }, + { "id": "stereo", "fg": 1622 }, + { "id": "stock_pot", "fg": 1623 }, + { "id": "sunglasses", "fg": 1624 }, + { "id": "sunglasses_bifocal", "fg": 1625 }, + { "id": "sunglasses_eye", "fg": 1626 }, + { "id": "sunglasses_reading", "fg": 1627 }, + { "id": "swat_armor", "fg": 1628 }, + { "id": "syringe", "fg": 1629 }, + { "id": "teleumbrella", "fg": 1630 }, + { "id": "toolbox_empty", "fg": 1631 }, + { "id": "tux", "fg": 1632 }, + { "id": "two_way_radio", "fg": 1633 }, + { "id": "vh_autoclave", "fg": 1634 }, + { "id": "wetsuit_spring", "fg": 1635 }, + { "id": "wool_suit", "fg": 1636 }, + { "id": "wrapper", "fg": 1637 }, + { "id": "SICP", "fg": 1638 }, + { "id": "book_fict_soft_ya_rwya", "fg": 1639 }, + { "id": "book_pieces", "fg": 1640 }, + { "id": "manual_first_aid", "fg": 1651 }, + { "id": "novel_adventure", "fg": 1652 }, + { "id": "novel_buddy", "fg": 1653 }, + { "id": "novel_coa", "fg": 1654 }, + { "id": "novel_coa2", "fg": 1655 }, + { "id": "novel_crime", "fg": 1656 }, + { "id": "novel_crime2", "fg": 1657 }, + { "id": "novel_drama", "fg": 1658 }, + { "id": "novel_erotic", "fg": 1659 }, + { "id": "novel_experimental", "fg": 1660 }, + { "id": "novel_fantasy", "fg": 1661 }, + { "id": "novel_horror", "fg": 1662 }, + { "id": "novel_mystery", "fg": 1663 }, + { "id": "novel_pulp", "fg": 1664 }, + { "id": "novel_road", "fg": 1665 }, + { "id": "novel_romance", "fg": 1666 }, + { "id": "novel_samurai", "fg": 1667 }, + { "id": "novel_satire", "fg": 1668 }, + { "id": "novel_scifi", "fg": 1669 }, + { "id": "novel_sports", "fg": 1670 }, + { "id": "novel_spy", "fg": 1671 }, + { "id": "novel_swash", "fg": 1672 }, + { "id": "novel_thriller", "fg": 1673 }, + { "id": "novel_tragedy", "fg": 1674 }, + { "id": "novel_war", "fg": 1675 }, + { "id": "novel_war2", "fg": 1676 }, + { "id": "novel_western", "fg": 1677 }, + { "id": "paperback_novel", "fg": 1678 }, + { "id": "winemaking_beginner", "fg": 1679 }, + { "id": "mre_box", "fg": 1681 }, + { "id": "mre_lemontuna_box", "fg": 1684 }, + { "id": "rifle_case_soft", "fg": 1739 }, + { "id": "rifle_case_soft_2", "fg": 1740 }, + { "id": "rifle_case_soft_leather_2", "fg": 1742 }, + { "id": "rucksack", "fg": 1743 }, + { "id": "bubblewrap", "fg": 1764 }, + { "id": "clay_quern", "fg": 1775 }, + { "id": "balaclava", "fg": 1777 }, + { "id": "beret", "fg": 1778 }, + { "id": "boxer_briefs", "fg": 1779 }, + { "id": "boxer_shorts", "fg": 1780 }, + { "id": "boy_shorts", "fg": 1781 }, + { "id": "bra", "fg": 1782 }, + { "id": "briefs", "fg": 1783 }, + { "id": "coat_lab", "fg": 1784 }, + { "id": "corset", "fg": 1785 }, + { "id": "cowboy_hat", "fg": 1786 }, + { "id": "hat_ball", "fg": 1787 }, + { "id": "hat_cotton", "fg": 1788 }, + { "id": "hat_fur", "fg": 1789 }, + { "id": "helmet_barbute", "fg": 1790 }, + { "id": "helmet_chitin", "fg": 1791 }, + { "id": "helmet_kabuto", "fg": 1792 }, + { "id": "hoodie", "fg": 1793 }, + { "id": "jeans", "fg": 1794 }, + { "id": "longshirt", "fg": 1795 }, + { "id": "mask_dust", "fg": 1796 }, + { "id": "polo_shirt", "fg": 1797 }, + { "id": "ragpouch", "fg": 1798 }, + { "id": "skirt", "fg": 1799 }, + { "id": "sneakers", "fg": 1800 }, + { "id": "socks", "fg": 1801 }, + { "id": "striped_pants", "fg": 1802 }, + { "id": "striped_shirt", "fg": 1803 }, + { "id": "sweater", "fg": 1804 }, + { "id": "sweatshirt", "fg": 1805 }, + { "id": "tshirt", "fg": 1806 }, + { "id": "turban", "fg": 1807 }, + { "id": "cola", "fg": 1845 }, + { "id": "juice", "fg": 1849 }, + { "id": "milk", "fg": 1851 }, + { "id": "purple_drink", "fg": 1855 }, + { "id": "tomato_juice", "fg": 1856 }, + { "id": "vinegar", "fg": 1857 }, + { "id": "plunger_futuristic", "fg": 1907 }, + { "id": "plunger_toilet", "fg": 1908 }, + { "id": "portable_game", "fg": 1910 }, + { "id": "towel", "fg": 1974 }, + { "id": "towel_soiled", "fg": 1975 }, + { "id": "towel_wet", "fg": 1976 }, + { "id": "1895sbl", "fg": 1984 }, + { "id": "AT4", "fg": 1985 }, + { "id": "LAW", "fg": 1986 }, + { "id": "M24", "fg": 1987 }, + { "id": "RPG", "fg": 1988 }, + { "id": "USAS_12", "fg": 1989 }, + { "id": "airspeargun", "fg": 1990 }, + { "id": "ak74", "fg": 1992 }, + { "id": "american_180", "fg": 1993 }, + { "id": "an94", "fg": 1994 }, + { "id": "ar10", "fg": 1995 }, + { "id": "ar15", "fg": 1996 }, + { "id": "arx160", "fg": 1997 }, + { "id": "as50", "fg": 1998 }, + { "id": "atgm_launcher", "fg": 1999 }, + { "id": "bbgun", "fg": 2000 }, + { "id": "bfg50", "fg": 2001 }, + { "id": "bh_m89", "fg": 2002 }, + { "id": "blunderbuss", "fg": 2003 }, + { "id": "browning_blr", "fg": 2004 }, + { "id": "chemical_thrower", "fg": 2006 }, + { "id": "coilgun", "fg": 2007 }, + { "id": "colt_lightning", "fg": 2008 }, + { "id": "colt_ro635", "fg": 2009 }, + { "id": "combination_gun", "fg": 2010 }, + { "id": "cx4", "fg": 2011 }, + { "id": "doublespeargun", "fg": 2012 }, + { "id": "emp_gun", "fg": 2013 }, + { "id": "famas", "fg": 2014 }, + { "id": "flamethrower", "fg": 2015 }, + { "id": "fn_fal", "fg": 2016 }, + { "id": "fs2000", "fg": 2017 }, + { "id": "ftk93", "fg": 2018 }, + { "id": "garand", "fg": 2019 }, + { "id": "heavy_rail_rifle", "fg": 2020 }, + { "id": "helsing", "fg": 2021 }, + { "id": "henry_big_boy", "fg": 2022 }, + { "id": "hk417_13", "fg": 2023 }, + { "id": "hk_g3", "fg": 2024 }, + { "id": "hk_g36", "fg": 2025 }, + { "id": "hk_g80", "fg": 2026 }, + { "id": "hk_mp5k", "fg": 2027 }, + { "id": "hk_mp5sd", "fg": 2028 }, + { "id": "iwi_tavor_x95_300blk", "fg": 2029 }, + { "id": "ksg-25", "fg": 2030 }, + { "id": "ksg", "fg": 2031 }, + { "id": "ksub2000", "fg": 2032 }, + { "id": "laser_cannon", "fg": 2033 }, + { "id": "laser_rifle", "fg": 2034 }, + { "id": "lever_shotgun", "fg": 2035 }, + { "id": "longrifle_flintlock", "fg": 2036 }, + { "id": "m107a1", "fg": 2037 }, + { "id": "m110a1", "fg": 2038 }, + { "id": "m134", "fg": 2039 }, + { "id": "m14ebr", "fg": 2040 }, + { "id": "m1903", "fg": 2043 }, + { "id": "m1918", "fg": 2044 }, + { "id": "m1a", "fg": 2045 }, + { "id": "m2010", "fg": 2046 }, + { "id": "m231pfw", "fg": 2047 }, + { "id": "m240", "fg": 2048 }, + { "id": "m27_assault_rifle_var_h&k416a5", "fg": 2050 }, + { "id": "m27_assault_rifle_var_m27iar", "fg": 2051 }, + { "id": "m27_assault_rifle_var_m38dmr", "fg": 2052 }, + { "id": "m27_assault_rifle_var_scar_l", "fg": 2053 }, + { "id": "m2browning", "fg": 2054 }, + { "id": "m2browning_sawn", "fg": 2055 }, + { "id": "m3_carlgustav", "fg": 2056 }, + { "id": "m4_carbine_var_m4a1", "fg": 2057 }, + { "id": "m4_carlgustav", "fg": 2058 }, + { "id": "m79", "fg": 2060 }, + { "id": "mark19", "fg": 2061 }, + { "id": "marlin_9a", "fg": 2062 }, + { "id": "mininuke_launcher", "fg": 2063 }, + { "id": "mosin44", "fg": 2064 }, + { "id": "mosin44_ebr", "fg": 2065 }, + { "id": "mosin91_30", "fg": 2066 }, + { "id": "mosin91_30_ebr", "fg": 2067 }, + { "id": "mossberg_500", "fg": 2068 }, + { "id": "mossberg_500_var_mossberg_500_security", "fg": 2069 }, + { "id": "mossberg_590", "fg": 2070 }, + { "id": "mossberg_590_var_SPAS_12", "fg": 2071 }, + { "id": "mossberg_930", "fg": 2072 }, + { "id": "mossberg_930_var_m1014", "fg": 2073 }, + { "id": "mp18", "fg": 2074 }, + { "id": "needlegun", "fg": 2076 }, + { "id": "pamd68", "fg": 2077 }, + { "id": "pamd71z", "fg": 2078 }, + { "id": "pipe_combination_gun", "fg": 2079 }, + { "id": "plasma_gun", "fg": 2080 }, + { "id": "plasma_rifle", "fg": 2081 }, + { "id": "ppsh", "fg": 2082 }, + { "id": "rebar_rifle", "fg": 2083 }, + { "id": "remington700_270", "fg": 2084 }, + { "id": "remington_700", "fg": 2085 }, + { "id": "remington_870", "fg": 2086 }, + { "id": "remington_870_breacher", "fg": 2087 }, + { "id": "remington_870_express", "fg": 2088 }, + { "id": "remington_870_var_browning_a5", "fg": 2089 }, + { "id": "remington_870_var_remington_1100", "fg": 2090 }, + { "id": "rifle_flintlock", "fg": 2091 }, + { "id": "rm120c", "fg": 2092 }, + { "id": "rm20", "fg": 2093 }, + { "id": "rm298", "fg": 2094 }, + { "id": "rm451_flamethrower", "fg": 2095 }, + { "id": "rm51_assault_rifle", "fg": 2096 }, + { "id": "rm614_lmg", "fg": 2097 }, + { "id": "rm802", "fg": 2098 }, + { "id": "rm88_battle_rifle", "fg": 2099 }, + { "id": "ruger_1022", "fg": 2100 }, + { "id": "ruger_mini", "fg": 2101 }, + { "id": "saiga_12", "fg": 2102 }, + { "id": "saiga_410", "fg": 2103 }, + { "id": "savage_111f", "fg": 2104 }, + { "id": "scar_h", "fg": 2105 }, + { "id": "sharps", "fg": 2106 }, + { "id": "shotgun_410", "fg": 2107 }, + { "id": "shotgun_d", "fg": 2108 }, + { "id": "shotgun_s", "fg": 2109 }, + { "id": "sig552", "fg": 2110 }, + { "id": "sig_mcx_rattler_sbr", "fg": 2111 }, + { "id": "skorpion_82", "fg": 2112 }, + { "id": "sks", "fg": 2113 }, + { "id": "smg_9mm", "fg": 2115 }, + { "id": "speargun", "fg": 2116 }, + { "id": "sten", "fg": 2117 }, + { "id": "steyr_aug", "fg": 2118 }, + { "id": "surv_rocket_launcher", "fg": 2119 }, + { "id": "survivor_special_700", "fg": 2120 }, + { "id": "tac50", "fg": 2121 }, + { "id": "tavor_12", "fg": 2122 }, + { "id": "tihar", "fg": 2123 }, + { "id": "tommygun", "fg": 2124 }, + { "id": "trex_gun", "fg": 2125 }, + { "id": "weatherby_5", "fg": 2126 }, + { "id": "win70", "fg": 2127 }, + { "id": "winchester_1887", "fg": 2128 }, + { "id": "winchester_1897", "fg": 2129 }, + { "id": "broadsword", "fg": 2130 }, + { "id": "cards_magic", "fg": 2131 }, + { "id": "corpse", "fg": 2132 }, + { "id": "corpse_mon_mantis_giant", "fg": 2246 }, + { "id": "corpse_mon_spawn_raptor", "fg": 2247 }, + { "id": "foodperson_mask", "fg": 2248 }, + { "id": "foodperson_mask_on", "fg": 2249 }, + { "id": "gloves_fingerless", "fg": 2250 }, + { "id": "gloves_leather", "fg": 2251 }, + { "id": "gloves_liner", "fg": 2252 }, + { "id": "hand_pump", "fg": 2253 }, + { "id": "inflatable_dragon", "fg": 2254 }, + { "id": "analytical_set_basic", "fg": 2255 }, + { "id": "balance_small", "fg": 2256 }, + { "id": "bandages_makeshift_bleached", "fg": 2258 }, + { "id": "beaker", "fg": 2259 }, + { "id": "flask_glass", "fg": 2260 }, + { "id": "gradcylinder", "fg": 2261 }, + { "id": "ph_meter", "fg": 2262 }, + { "id": "rack_test_tube", "fg": 2263 }, + { "id": "spectrophotometer", "fg": 2264 }, + { "id": "test_tube", "fg": 2265 }, + { "id": "voltmeter", "fg": 2266 }, + { "id": "10mm", "fg": 2267 }, + { "id": "223", "fg": 2268 }, + { "id": "22_cb", "fg": 2269 }, + { "id": "22_fmj", "fg": 2270 }, + { "id": "22_lr", "fg": 2271 }, + { "id": "22_ratshot", "fg": 2272 }, + { "id": "3006_incendiary", "fg": 2273 }, + { "id": "36navy", "fg": 2274 }, + { "id": "38_special", "fg": 2275 }, + { "id": "38_super", "fg": 2276 }, + { "id": "40fmj", "fg": 2277 }, + { "id": "40mm_flechet", "fg": 2278 }, + { "id": "40mm_shot", "fg": 2279 }, + { "id": "44army", "fg": 2280 }, + { "id": "44magnum", "fg": 2281 }, + { "id": "45_acp", "fg": 2282 }, + { "id": "45_jhp", "fg": 2283 }, + { "id": "500_Magnum", "fg": 2284 }, + { "id": "50match", "fg": 2285 }, + { "id": "545-ap", "fg": 2286 }, + { "id": "762_51", "fg": 2287 }, + { "id": "762_51_incendiary", "fg": 2288 }, + { "id": "762_m43", "fg": 2289 }, + { "id": "9mmP", "fg": 2290 }, + { "id": "9mmfmj", "fg": 2291 }, + { "id": "abstractmap", "fg": 2292 }, + { "id": "acidchitin_piece", "fg": 2293 }, + { "id": "acidchitin_plate", "fg": 2294 }, + { "id": "acoustic_guitar", "fg": 2295 }, + { "id": "aluminum_foil", "fg": 2296 }, + { "id": "ammonia", "fg": 2297 }, + { "id": "arming_sword", "fg": 2298 }, + { "id": "armor_lorica", "fg": 2299 }, + { "id": "arrowrest", "fg": 2300 }, + { "id": "atgm_heat", "fg": 2301 }, + { "id": "atomic_coffee", "fg": 2302 }, + { "id": "b_paint", "fg": 2303 }, + { "id": "bag_canvas_small", "fg": 2304 }, + { "id": "bagpipes", "fg": 2305 }, + { "id": "ballistic_vest_esapi", "fg": 2306 }, + { "id": "banjo", "fg": 2307 }, + { "id": "barley", "fg": 2308 }, + { "id": "basketball", "fg": 2309 }, + { "id": "battleaxe", "fg": 2310 }, + { "id": "beer", "fg": 2311 }, + { "id": "belgian_ale", "fg": 2312 }, + { "id": "bfipowder", "fg": 2314 }, + { "id": "bindle", "fg": 2315 }, + { "id": "bio_int_enhancer", "fg": 2316 }, + { "id": "birchbark", "fg": 2317 }, + { "id": "bismuth", "fg": 2318 }, + { "id": "blanket", "fg": 2319 }, + { "id": "bleach", "fg": 2320 }, + { "id": "blueberries_cooked", "fg": 2321 }, + { "id": "boiled_egg", "fg": 2322 }, + { "id": "bone_flute", "fg": 2323 }, + { "id": "bone_human", "fg": 2324 }, + { "id": "boots_acidchitin", "fg": 2325 }, + { "id": "boots_bunker", "fg": 2326 }, + { "id": "boots_hsurvivor", "fg": 2327 }, + { "id": "boots_lsurvivor", "fg": 2328 }, + { "id": "boots_survivor", "fg": 2329 }, + { "id": "boots_western", "fg": 2330 }, + { "id": "bottle_folding", "fg": 2331 }, + { "id": "bottle_metal", "fg": 2332 }, + { "id": "bottle_plastic_smal", "fg": 2333 }, + { "id": "bowling_pin", "fg": 2334 }, + { "id": "briefcase", "fg": 2335 }, + { "id": "broken_manhack", "fg": 2336 }, + { "id": "broken_skitterbot", "fg": 2337 }, + { "id": "broth_bone", "fg": 2338 }, + { "id": "bum_wine", "fg": 2339 }, + { "id": "camisole", "fg": 2340 }, + { "id": "can_food_unsealed", "fg": 2341 }, + { "id": "case_violin", "fg": 2342 }, + { "id": "cattail_rhizome", "fg": 2343 }, + { "id": "cattail_stalk", "fg": 2344 }, + { "id": "cell_phone_flashlight", "fg": 2345 }, + { "id": "ceramic_armor", "fg": 2346 }, + { "id": "ceramic_shard", "fg": 2347 }, + { "id": "chainmail_arms", "fg": 2348 }, + { "id": "chainmail_hauberk", "fg": 2349 }, + { "id": "chainmail_hood", "fg": 2350 }, + { "id": "chainmail_legs", "fg": 2351 }, + { "id": "chainmail_vest", "fg": 2352 }, + { "id": "chem_aluminium_powder", "fg": 2353 }, + { "id": "chem_aluminium_sulphate", "fg": 2354 }, + { "id": "chem_hexamine", "fg": 2355 }, + { "id": "chestwrap", "fg": 2356 }, + { "id": "chestwrap_fur", "fg": 2357 }, + { "id": "chestwrap_leather", "fg": 2358 }, + { "id": "chestwrap_wool", "fg": 2359 }, + { "id": "chili", "fg": 2360 }, + { "id": "chili_pepper", "fg": 2361 }, + { "id": "chipper", "fg": 2362 }, + { "id": "choc_drink", "fg": 2363 }, + { "id": "chocpretzels", "fg": 2364 }, + { "id": "cig_butt", "fg": 2365 }, + { "id": "cig_lit", "fg": 2366 }, + { "id": "clarinet", "fg": 2367 }, + { "id": "coffee", "fg": 2368 }, + { "id": "colamdew", "fg": 2369 }, + { "id": "con_milk", "fg": 2370 }, + { "id": "con_mix", "fg": 2371 }, + { "id": "concrete", "fg": 2372 }, + { "id": "contacts", "fg": 2373 }, + { "id": "cooking_oil", "fg": 2374 }, + { "id": "copper", "fg": 2375 }, + { "id": "copper_bracelet", "fg": 2376 }, + { "id": "copper_knife", "fg": 2377 }, + { "id": "corndogs_cooked", "fg": 2378 }, + { "id": "corndogs_frozen", "fg": 2379 }, + { "id": "cow_bell", "fg": 2380 }, + { "id": "crispycran", "fg": 2381 }, + { "id": "crown_golden", "fg": 2382 }, + { "id": "cs_lajatang_off", "fg": 2383 }, + { "id": "cured_hide", "fg": 2384 }, + { "id": "cured_pelt", "fg": 2385 }, + { "id": "curry_meat", "fg": 2386 }, + { "id": "curry_powder", "fg": 2387 }, + { "id": "curry_veggy", "fg": 2388 }, + { "id": "dahlia_baked", "fg": 2390 }, + { "id": "dao", "fg": 2391 }, + { "id": "detergent", "fg": 2392 }, + { "id": "diamond", "fg": 2393 }, + { "id": "diamond_dental_grill", "fg": 2394 }, + { "id": "diazepam", "fg": 2395 }, + { "id": "distaff_spindle", "fg": 2397 }, + { "id": "down_blanket", "fg": 2398 }, + { "id": "down_pillow", "fg": 2399 }, + { "id": "dry_fish", "fg": 2400 }, + { "id": "dry_meat_tainted", "fg": 2401 }, + { "id": "dry_veggy_tainted", "fg": 2402 }, + { "id": "egg_bird", "fg": 2403 }, + { "id": "egg_reptile", "fg": 2404 }, + { "id": "eink_tablet_pc", "fg": 2405 }, + { "id": "elec_hairtrimmer", "fg": 2406 }, + { "id": "electric_blanket", "fg": 2407 }, + { "id": "emer_blanket", "fg": 2408 }, + { "id": "emer_blanket_on", "fg": 2409 }, + { "id": "esbit_stove", "fg": 2410 }, + { "id": "estoc", "fg": 2411 }, + { "id": "fat", "fg": 2412 }, + { "id": "fat_tainted", "fg": 2413 }, + { "id": "felt_patch", "fg": 2414 }, + { "id": "file", "fg": 2415 }, + { "id": "fire_lance", "fg": 2417 }, + { "id": "firehelmet", "fg": 2418 }, + { "id": "fish", "fg": 2419 }, + { "id": "fish_smoked", "fg": 2420 }, + { "id": "fishing_hook_basic", "fg": 2421 }, + { "id": "fishing_rod_basic", "fg": 2422 }, + { "id": "fishing_rod_professional", "fg": 2423 }, + { "id": "flask_yeast", "fg": 2424 }, + { "id": "flatbread", "fg": 2425 }, + { "id": "flint_steel", "fg": 2426 }, + { "id": "flute", "fg": 2427 }, + { "id": "folding_poncho", "fg": 2428 }, + { "id": "folding_poncho_on", "fg": 2429 }, + { "id": "food_processor", "fg": 2430 }, + { "id": "footrags", "fg": 2431 }, + { "id": "footrags_fur", "fg": 2432 }, + { "id": "footrags_leather", "fg": 2433 }, + { "id": "footrags_wool", "fg": 2434 }, + { "id": "fruit_cooked", "fg": 2435 }, + { "id": "fungicide", "fg": 2436 }, + { "id": "fur_blanket", "fg": 2437 }, + { "id": "g_carpet", "fg": 2438 }, + { "id": "g_paint", "fg": 2439 }, + { "id": "g_shovel", "fg": 2440 }, + { "id": "gal_drum", "fg": 2441 }, + { "id": "gambeson", "fg": 2442 }, + { "id": "garlic", "fg": 2443 }, + { "id": "gasdiscount_gold", "fg": 2444 }, + { "id": "gasdiscount_platinum", "fg": 2445 }, + { "id": "gasdiscount_silver", "fg": 2446 }, + { "id": "glass_shard", "fg": 2447 }, + { "id": "glass_shiv", "fg": 2448 }, + { "id": "glass_tinted", "fg": 2449 }, + { "id": "gloves_wraps_fur", "fg": 2450 }, + { "id": "gold_bracelet", "fg": 2451 }, + { "id": "gold_dental_grill", "fg": 2452 }, + { "id": "golf_ball", "fg": 2453 }, + { "id": "gown", "fg": 2454 }, + { "id": "grapnel", "fg": 2455 }, + { "id": "h&k416a5", "fg": 2456 }, + { "id": "hacksaw", "fg": 2457 }, + { "id": "halligan", "fg": 2458 }, + { "id": "halter_top", "fg": 2459 }, + { "id": "hand_axe", "fg": 2460 }, + { "id": "hand_paddles", "fg": 2461 }, + { "id": "hand_rims", "fg": 2462 }, + { "id": "handflare", "fg": 2463 }, + { "id": "handflare_dead", "fg": 2464 }, + { "id": "handflare_lit", "fg": 2465 }, + { "id": "handrolled_cig", "fg": 2466 }, + { "id": "hat_hard", "fg": 2467 }, + { "id": "hat_hard_hooded", "fg": 2468 }, + { "id": "hat_knit", "fg": 2469 }, + { "id": "hat_newsboy", "fg": 2470 }, + { "id": "hbolt_metal", "fg": 2471 }, + { "id": "hbolt_wood", "fg": 2472 }, + { "id": "hdframe", "fg": 2473 }, + { "id": "heatpack", "fg": 2474 }, + { "id": "heatpack_used", "fg": 2475 }, + { "id": "helmet_army", "fg": 2476 }, + { "id": "hickory_nut", "fg": 2477 }, + { "id": "hickory_nut_roasted", "fg": 2478 }, + { "id": "hickory_nut_unshell", "fg": 2479 }, + { "id": "hickory_root", "fg": 2480 }, + { "id": "hobo_stove", "fg": 2481 }, + { "id": "holy_symbol", "fg": 2482 }, + { "id": "honey_bottled", "fg": 2483 }, + { "id": "hotdogs_cooked", "fg": 2484 }, + { "id": "i_combustion", "fg": 2485 }, + { "id": "iceaxe", "fg": 2486 }, + { "id": "inflatable_boat", "fg": 2487 }, + { "id": "inflatable_section", "fg": 2488 }, + { "id": "jacket_army", "fg": 2489 }, + { "id": "jacket_jean", "fg": 2490 }, + { "id": "jacket_leather", "fg": 2491 }, + { "id": "jacket_light", "fg": 2492 }, + { "id": "jam_strawberries", "fg": 2493 }, + { "id": "ji", "fg": 2494 }, + { "id": "jian", "fg": 2495 }, + { "id": "joint_roach", "fg": 2497 }, + { "id": "khopesh", "fg": 2498 }, + { "id": "knife", "fg": 2499 }, + { "id": "kukri", "fg": 2500 }, + { "id": "l-stick", "fg": 2501 }, + { "id": "l-stick_on", "fg": 2502 }, + { "id": "lead_ball", "fg": 2503 }, + { "id": "leg_warmers_f", "fg": 2504 }, + { "id": "link_sheet", "fg": 2505 }, + { "id": "locket", "fg": 2506 }, + { "id": "longsword", "fg": 2507 }, + { "id": "longsword_fake", "fg": 2508 }, + { "id": "mace", "fg": 2509 }, + { "id": "maid_dress", "fg": 2510 }, + { "id": "maid_hat", "fg": 2511 }, + { "id": "makeshift_axe", "fg": 2512 }, + { "id": "makeshift_crowbar", "fg": 2513 }, + { "id": "makeshift_funnel", "fg": 2514 }, + { "id": "makeshift_hammer", "fg": 2515 }, + { "id": "marble", "fg": 2516 }, + { "id": "marshmallow", "fg": 2517 }, + { "id": "material_aluminium_ingot", "fg": 2518 }, + { "id": "material_sand", "fg": 2519 }, + { "id": "material_shrd_limestone", "fg": 2520 }, + { "id": "meat_salted", "fg": 2521 }, + { "id": "mess_tin", "fg": 2522 }, + { "id": "metal_funnel", "fg": 2523 }, + { "id": "metal_tank_little", "fg": 2524 }, + { "id": "metal_tank_small", "fg": 2525 }, + { "id": "meth", "fg": 2526 }, + { "id": "mjolnir", "fg": 2527 }, + { "id": "morphine", "fg": 2528 }, + { "id": "mortar_pestle", "fg": 2529 }, + { "id": "mouthpiece", "fg": 2530 }, + { "id": "mustard", "fg": 2531 }, + { "id": "mutagen_bird", "fg": 2532 }, + { "id": "mutagen_cattle", "fg": 2533 }, + { "id": "mutagen_elfa", "fg": 2534 }, + { "id": "mutagen_fish", "fg": 2535 }, + { "id": "mutagen_plant", "fg": 2536 }, + { "id": "mutagen_slime", "fg": 2537 }, + { "id": "nachosc", "fg": 2538 }, + { "id": "naginata", "fg": 2539 }, + { "id": "nanoskirt", "fg": 2540 }, + { "id": "omnicamera", "fg": 2541 }, + { "id": "onion_rings", "fg": 2542 }, + { "id": "oxy_torch", "fg": 2543 }, + { "id": "p_carpet", "fg": 2544 }, + { "id": "p_paint", "fg": 2545 }, + { "id": "panties", "fg": 2546 }, + { "id": "pants", "fg": 2547 }, + { "id": "pants_army", "fg": 2548 }, + { "id": "pants_cargo", "fg": 2549 }, + { "id": "pants_checkered", "fg": 2550 }, + { "id": "pants_leather", "fg": 2551 }, + { "id": "pants_ski", "fg": 2552 }, + { "id": "pillow", "fg": 2553 }, + { "id": "pitchfork", "fg": 2554 }, + { "id": "plastic_shopping_bag", "fg": 2555 }, + { "id": "pliers", "fg": 2556 }, + { "id": "plut_cell", "fg": 2557 }, + { "id": "pool_ball", "fg": 2558 }, + { "id": "pot_canning", "fg": 2559 }, + { "id": "pot_copper", "fg": 2560 }, + { "id": "pot_makeshift", "fg": 2561 }, + { "id": "pot_makeshift_copper", "fg": 2562 }, + { "id": "powder_eggs", "fg": 2563 }, + { "id": "powered_earmuffs", "fg": 2564 }, + { "id": "protein_powder", "fg": 2565 }, + { "id": "qiang", "fg": 2566 }, + { "id": "r_carpet", "fg": 2567 }, + { "id": "r_paint", "fg": 2568 }, + { "id": "radio_car", "fg": 2569 }, + { "id": "radio_car_on", "fg": 2570 }, + { "id": "radiocontrol", "fg": 2571 }, + { "id": "raw_fur", "fg": 2572 }, + { "id": "raw_hleather", "fg": 2573 }, + { "id": "razor_blade", "fg": 2574 }, + { "id": "ref_lighter", "fg": 2575 }, + { "id": "reinforced_glass_sheet", "fg": 2576 }, + { "id": "reloaded_454_Casull", "fg": 2577 }, + { "id": "reloaded_shot_he", "fg": 2578 }, + { "id": "reloaded_shot_slug", "fg": 2579 }, + { "id": "reloaded_signal_fla", "fg": 2580 }, + { "id": "reloaded_ss", "fg": 2581 }, + { "id": "reloaded_sw", "fg": 2582 }, + { "id": "reloaded_xdart", "fg": 2583 }, + { "id": "ring_engagement", "fg": 2584 }, + { "id": "robe", "fg": 2585 }, + { "id": "rollerskates", "fg": 2586 }, + { "id": "sandwich_cheese", "fg": 2587 }, + { "id": "sandwich_cheese_gri", "fg": 2588 }, + { "id": "sandwich_cucumber", "fg": 2589 }, + { "id": "sandwich_honey", "fg": 2590 }, + { "id": "sandwich_jam", "fg": 2591 }, + { "id": "sandwich_pb", "fg": 2592 }, + { "id": "sandwich_pbj", "fg": 2593 }, + { "id": "sandwich_pbm", "fg": 2594 }, + { "id": "sandwich_sauce", "fg": 2595 }, + { "id": "sausage_wasteland", "fg": 2596 }, + { "id": "saxophone", "fg": 2597 }, + { "id": "scabbard", "fg": 2598 }, + { "id": "scrap_bronze", "fg": 2599 }, + { "id": "scrap_copper", "fg": 2600 }, + { "id": "sharp_toothbrush", "fg": 2601 }, + { "id": "shavingkit", "fg": 2602 }, + { "id": "sheath", "fg": 2603 }, + { "id": "sheet_metal_small", "fg": 2604 }, + { "id": "shillelagh", "fg": 2605 }, + { "id": "shorts_denim", "fg": 2606 }, + { "id": "shot_00", "fg": 2607 }, + { "id": "shot_bird", "fg": 2608 }, + { "id": "shot_flechette", "fg": 2609 }, + { "id": "silver_bracelet", "fg": 2610 }, + { "id": "silver_small", "fg": 2611 }, + { "id": "skirt_leather", "fg": 2612 }, + { "id": "smart_phone", "fg": 2613 }, + { "id": "smart_phone_flashlight", "fg": 2614 }, + { "id": "soap", "fg": 2615 }, + { "id": "soup_chicken", "fg": 2616 }, + { "id": "soup_dumplings", "fg": 2617 }, + { "id": "soup_fish", "fg": 2618 }, + { "id": "soup_mushroom", "fg": 2619 }, + { "id": "soup_tomato", "fg": 2620 }, + { "id": "soup_veggy", "fg": 2621 }, + { "id": "soup_woods", "fg": 2622 }, + { "id": "spear_dory", "fg": 2623 }, + { "id": "spear_forked", "fg": 2624 }, + { "id": "spear_stone", "fg": 2625 }, + { "id": "spider_egg", "fg": 2626 }, + { "id": "sports_bra", "fg": 2627 }, + { "id": "stepladder", "fg": 2628 }, + { "id": "stomach", "fg": 2629 }, + { "id": "straw_doll", "fg": 2630 }, + { "id": "sugar_beet", "fg": 2631 }, + { "id": "survivor_hairtrimmer", "fg": 2632 }, + { "id": "survivor_scope", "fg": 2633 }, + { "id": "survivor_vest", "fg": 2634 }, + { "id": "sushi_fishroll", "fg": 2635 }, + { "id": "swag_bag", "fg": 2636 }, + { "id": "sword_xiphos", "fg": 2637 }, + { "id": "tallow", "fg": 2638 }, + { "id": "tallow_tainted", "fg": 2639 }, + { "id": "tanbark", "fg": 2640 }, + { "id": "tanned_hide", "fg": 2641 }, + { "id": "tanned_pelt", "fg": 2642 }, + { "id": "tanto", "fg": 2643 }, + { "id": "tea", "fg": 2644 }, + { "id": "telepad", "fg": 2645 }, + { "id": "thermometer", "fg": 2646 }, + { "id": "thermos", "fg": 2647 }, + { "id": "throwing_stick", "fg": 2648 }, + { "id": "tieclip", "fg": 2649 }, + { "id": "tin", "fg": 2650 }, + { "id": "tinder", "fg": 2651 }, + { "id": "tinderbox", "fg": 2652 }, + { "id": "tinfoil_hat", "fg": 2653 }, + { "id": "toothbrush_plain", "fg": 2654 }, + { "id": "trimmer_off", "fg": 2655 }, + { "id": "trimmer_on", "fg": 2656 }, + { "id": "trumpet", "fg": 2657 }, + { "id": "tuba", "fg": 2658 }, + { "id": "tunic", "fg": 2659 }, + { "id": "tunic_rag", "fg": 2660 }, + { "id": "ukulele", "fg": 2661 }, + { "id": "undershirt", "fg": 2662 }, + { "id": "unfinished_charcoal", "fg": 2663 }, + { "id": "v_combustion", "fg": 2664 }, + { "id": "v_scoop_item", "fg": 2665 }, + { "id": "vehicle_dashboard", "fg": 2666 }, + { "id": "vibrator", "fg": 2667 }, + { "id": "violin", "fg": 2668 }, + { "id": "violin_golden", "fg": 2669 }, + { "id": "w_paint", "fg": 2670 }, + { "id": "waffleiron", "fg": 2671 }, + { "id": "wakizashi", "fg": 2672 }, + { "id": "warhammer", "fg": 2673 }, + { "id": "water_acid_weak", "fg": 2674 }, + { "id": "waterproof_gunmod", "fg": 2675 }, + { "id": "wearable_light", "fg": 2676 }, + { "id": "wearable_light_on", "fg": 2677 }, + { "id": "wheel_armor", "fg": 2678 }, + { "id": "wheel_bicycle", "fg": 2679 }, + { "id": "wheel_caster", "fg": 2680 }, + { "id": "wheel_motorbike", "fg": 2681 }, + { "id": "wheel_small", "fg": 2682 }, + { "id": "wheel_wide", "fg": 2683 }, + { "id": "whiskey", "fg": 2684 }, + { "id": "whistle", "fg": 2685 }, + { "id": "y_carpet", "fg": 2686 }, + { "id": "y_paint", "fg": 2687 }, + { "id": "yarn", "fg": 2688 }, + { "id": "yeast", "fg": 2689 }, + { "id": "yoghurt", "fg": 2690 }, + { "id": "zubon_gi", "fg": 2691 }, + { "id": "zweihander", "fg": 2692 }, + { "id": "cloak", "fg": 2693 }, + { "id": "cloak_fur", "fg": 2694 }, + { "id": "cloak_leather", "fg": 2695 }, + { "id": "cloak_wool", "fg": 2696 }, + { "id": "coat_rain", "fg": 2697 }, + { "id": "optical_cloak", "fg": 2698 }, + { "id": "legrig", "fg": 2699 }, + { "id": "ketchup", "fg": 2700 }, + { "id": "mayonnaise", "fg": 2701 }, + { "id": "book_nonf_zine_news_anlyst", "fg": 2702 }, + { "id": "mag_animecon", "fg": 2703 }, + { "id": "mag_dodge", "fg": 2704 }, + { "id": "mag_fabrication", "fg": 2705 }, + { "id": "mag_firstaid", "fg": 2706 }, + { "id": "mag_guns", "fg": 2707 }, + { "id": "mag_news", "fg": 2708 }, + { "id": "mag_porn", "fg": 2709 }, + { "id": "mag_throwing", "fg": 2710 }, + { "id": "mag_unarmed", "fg": 2711 }, + { "id": "multi_cooker", "fg": 2716 }, + { "id": "multi_cooker_filled", "fg": 2717 }, + { "id": "oxygen_tank", "fg": 2718 }, + { "id": "pet_carrier", "fg": 2719 }, + { "id": "primitive_shovel", "fg": 2720 }, + { "id": "amethyst_gold_ring", "fg": 2721 }, + { "id": "amethyst_platinum_ring", "fg": 2722 }, + { "id": "amethyst_silver_ring", "fg": 2723 }, + { "id": "aquamarine_gold_ring", "fg": 2724 }, + { "id": "aquamarine_platinum_ring", "fg": 2725 }, + { "id": "aquamarine_silver_ring", "fg": 2726 }, + { "id": "citrine_gold_ring", "fg": 2727 }, + { "id": "citrine_platinum_ring", "fg": 2728 }, + { "id": "citrine_silver_ring", "fg": 2729 }, + { "id": "diamond_platinum_ring", "fg": 2730 }, + { "id": "diamond_ring", "fg": 2731 }, + { "id": "diamond_silver_ring", "fg": 2732 }, + { "id": "emerald_gold_ring", "fg": 2733 }, + { "id": "emerald_platinum_ring", "fg": 2734 }, + { "id": "emerald_silver_ring", "fg": 2735 }, + { "id": "peridot_gold_ring", "fg": 2742 }, + { "id": "peridot_platinum_ring", "fg": 2743 }, + { "id": "peridot_silver_ring", "fg": 2744 }, + { "id": "tourmaline_gold_ring", "fg": 2748 }, + { "id": "tourmaline_platinum_ring", "fg": 2749 }, + { "id": "tourmaline_silver_ring", "fg": 2750 }, + { "id": "teddy_bear", "fg": 2751 }, + { "id": "tire_iron", "fg": 2752 }, + { "id": "winter_gloves_army", "fg": 2754 }, + { "id": "footstep_above", "fg": 2786 }, + { "id": "footstep_below", "fg": 2787 }, + { "id": "graffiti", "fg": 2788 }, + { "id": "zombie_revival_indicator", "fg": 2793 }, + { "id": "overlay_mutation_bio_sneeze_beam", "fg": 2794 }, + { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 2795 }, + { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 2796 }, + { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 2797 }, + { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 2798 }, + { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 2799 }, + { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 2800 }, + { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 2801 }, + { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 2802 }, + { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 2803 }, + { "id": "overlay_female_mutation_MANA_LUM", "fg": 2804 }, + { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 2805 }, + { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 2806 }, + { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 2807 }, + { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 2808 }, + { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 2812 }, + { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 2813 }, + { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 2814 }, + { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 2815 }, + { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 2816 }, + { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 2817 }, + { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 2818 }, + { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 2819 }, + { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 2820 }, + { "id": "overlay_male_mutation_MANA_LUM", "fg": 2821 }, + { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 2822 }, + { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 2823 }, + { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 2824 }, + { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 2825 }, + { "id": "overlay_mutation_DEMON_CLAWS", "fg": 2829 }, + { "id": "overlay_mutation_DEMON_POSSES", "fg": 2830 }, + { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 2831 }, + { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 2832 }, + { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 2833 }, + { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 2834 }, + { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 2835 }, + { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 2836 }, + { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 2837 }, + { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 2838 }, + { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 2839 }, + { "id": "DEBUG_spellbook", "fg": 2840 }, + { "id": "animist_shadows", "fg": 2841 }, + { "id": "bio_fuel_cell_blood", "fg": 2842 }, + { "id": "bio_sneeze_beam", "fg": 2843 }, + { "id": "biomancer_spellbook", "fg": 2844 }, + { "id": "disp_wand", "fg": 2845 }, + { "id": "druid_spellbook", "fg": 2846 }, + { "id": "eshaper_spellbook", "fg": 2847 }, + { "id": "generic_spellbook", "fg": 2848 }, + { "id": "light_manipulation_spellbook", "fg": 2849 }, + { "id": "magus_spellbook", "fg": 2850 }, + { "id": "magus_spellbook_move", "fg": 2851 }, + { "id": "mring_copper", "fg": 2852 }, + { "id": "mring_gold", "fg": 2853 }, + { "id": "mring_platinum", "fg": 2854 }, + { "id": "mring_silver", "fg": 2855 }, + { "id": "novice_stormshaper_book", "fg": 2856 }, + { "id": "priest_advanced", "fg": 2857 }, + { "id": "priest_beginner", "fg": 2858 }, + { "id": "pyro", "fg": 2859 }, + { "id": "recovery_spellbook", "fg": 2860 }, + { "id": "small_mana_crystal", "fg": 2861 }, + { "id": "spell_scroll", "fg": 2862 }, + { "id": "spell_wand", "fg": 2863 }, + { "id": "stat_up_spellbook", "fg": 2864 }, + { "id": "summon_scroll_smudged", "fg": 2865 }, + { "id": "summon_undead_spellbook", "fg": 2866 }, + { "id": "techno_em", "fg": 2867 }, + { "id": "techno_fundamentals", "fg": 2868 }, + { "id": "techno_idiots", "fg": 2869 }, + { "id": "tome_of_storms", "fg": 2870 }, + { "id": "translocate_spellbook", "fg": 2871 }, + { "id": "winter_grasp", "fg": 2872 }, + { "id": "wizard_advanced", "fg": 2873 }, + { "id": "wizard_beginner", "fg": 2874 }, + { "id": "wizard_utility", "fg": 2875 }, + { "id": "mon_goblin_chieftain", "fg": 2876 }, + { "id": "mon_goblin_slinger", "fg": 2877 }, + { "id": "mon_goblin_warrior", "fg": 2878 }, + { "id": "mon_cookie", "fg": 2882 }, + { "id": "mon_cow_calf_choc", "fg": 2883 }, + { "id": "mon_cow_choc", "fg": 2884 }, + { "id": "lemming_shadow", "fg": 3119 }, + { "id": "mon_boar_wild", "fg": 3120 }, + { "id": "mon_boar_wild_piglet", "fg": 3121 }, + { "id": "mon_copbot", "fg": 3122 }, + { "id": "mon_cow", "fg": 3123 }, + { "id": "mon_cow_calf", "fg": 3124 }, + { "id": "mon_fish_eel", "fg": 3125 }, + { "id": "mon_frog", "fg": 3126 }, + { "id": "mon_frog_small", "fg": 3127 }, + { "id": "mon_gracke", "fg": 3128 }, + { "id": "mon_grocerybot", "fg": 3129 }, + { "id": "mon_grocerybot_busted", "fg": 3130 }, + { "id": "mon_hallu_mannequin", "fg": 3131 }, + { "id": "mon_lab_rat", "fg": 3132 }, + { "id": "mon_pig", "fg": 3133 }, + { "id": "mon_pig_piglet", "fg": 3134 }, + { "id": "mon_pigeon", "fg": 3135 }, + { "id": "mon_sheep", "fg": 3137 }, + { "id": "mon_skeleton_brute", "fg": 3138 }, + { "id": "mon_zombie_gasbag_crawler", "fg": 3147 }, + { "id": "mon_zombie_gasbag_immobile", "fg": 3148 }, + { "id": "mon_zombie_hanging_innards", "fg": 3149 }, + { "id": "mon_zombie_pig", "fg": 3151 }, + { "id": "mon_zow", "fg": 3160 }, + { "id": "shadow_32x32_small", "fg": 3162 }, + { "id": "corpse_mon_beaver", "fg": 3163 }, + { "id": "corpse_mon_beaver_mutant_avian", "fg": 3164 }, + { "id": "corpse_mon_beaver_mutant_huge", "fg": 3165 }, + { "id": "corpse_mon_zombeaver", "fg": 3166 }, + { "id": "mon_beaver", "fg": 3167 }, + { "id": "mon_beaver_mutant_avian", "fg": 3168 }, + { "id": "mon_beaver_mutant_huge", "fg": 3169 }, + { "id": "mon_zombeaver", "fg": 3170 }, + { "id": "mon_dog_bull", "fg": 3179 }, + { "id": "mon_dog_rottweiler", "fg": 3180 }, + { "id": "corpse_mon_aphid", "fg": 3223 }, + { "id": "mon_aphid", "fg": 3224 }, + { "id": "corpse_mon_coyote_mutant_venom", "fg": 3225 }, + { "id": "mon_coyote_mutant_venom", "fg": 3226 }, + { "id": "bot_eyebot", "fg": 3227 }, + { "id": "broken_eyebot", "fg": 3228 }, + { "id": "mon_eyebot", "fg": 3229 }, + { "id": "corpse_mon_fungaloid_shambler", "fg": 3232 }, + { "id": "mon_fungaloid_shambler", "fg": 3233 }, + { "id": "mon_goose_canadian", "fg": 3234 }, + { "id": "mon_grouse", "fg": 3235 }, + { "id": "mon_kreck", "fg": 3236 }, + { "id": "corpse_mon_mantis_small", "fg": 3237 }, + { "id": "mon_mantis_small", "fg": 3238 }, + { "id": "mon_pheasant", "fg": 3239 }, + { "id": "mon_tadpole_grabber", "fg": 3240 }, + { "id": "mon_tazer_hack", "fg": 3241 }, + { "id": "mon_zombie_necro_boomer", "fg": 3247 }, + { "id": "mon_zombie_phase_skulker", "fg": 3248 }, + { "id": "mon_zombie_pig_gas", "fg": 3249 }, + { "id": "corpse_mon_zombie_rust", "fg": 3252 }, + { "id": "corpse_mon_zombie_shell", "fg": 3253 }, + { "id": "corpse_mon_zombie_urchin", "fg": 3254 }, + { "id": "mon_zombie_rust", "fg": 3255 }, + { "id": "mon_zombie_shell", "fg": 3256 }, + { "id": "mon_zombie_urchin", "fg": 3257 }, + { "id": "3957_t_metal_0", "fg": 3644 }, + { "id": "t_concrete", "fg": 3667 }, + { "id": "t_diesel_tank", "fg": 3668 }, + { "id": "t_diesel_tank_smashed", "fg": 3669 }, + { "id": "t_gas_tank_smashed", "fg": 3675 }, + { "id": "t_shingle_flat_roof", "fg": 3696 }, + { "id": "t_strconc_floor", "fg": 3697 }, + { "id": "t_thconc_floor_flesh", "fg": 3703 }, + { "id": "t_resin_hole", "fg": 3714 }, + { "id": "t_paper_roof", "fg": 4116 }, + { "id": "t_screen_door_c", "fg": 4302 }, + { "id": "t_screen_door_o", "fg": 4303 }, + { "id": "vp_animal_compartment", "fg": 5008 }, + { "id": "vp_autoclave", "fg": 5287 }, + { "id": "vp_dishwasher", "fg": 5292 }, + { "id": "vp_recharge_station", "fg": 5308 } ] }, { @@ -10243,29 +10254,32 @@ { "id": "judo_belt_orange", "fg": 5856 }, { "id": "judo_belt_white", "fg": 5857 }, { "id": "judo_belt_yellow", "fg": 5858 }, - { "id": "fetus", "fg": 5859 }, - { "id": "fish_bowl", "fg": 5860 }, - { "id": "leather_cat_tail", "fg": 5861 }, - { "id": "light_disposable_cell", "fg": 5862 }, - { "id": "match", "fg": 5863 }, - { "id": "mirror", "fg": 5864 }, - { "id": "money", "fg": 5865 }, - { "id": "pebble", "fg": 5866 }, - { "id": "blue_pen", "fg": 5867 }, - { "id": "green_pen", "fg": 5868 }, - { "id": "pen", "fg": 5869 }, - { "id": "red_pen", "fg": 5870 }, - { "id": "pipebomb", "fg": 5871 }, - { "id": "pipebomb_act", "fg": 5872 }, - { "id": "primitive_axe", "fg": 5873 }, - { "id": "pur_tablets", "fg": 5874 }, - { "id": "radio_car_wheel", "fg": 5875 }, - { "id": "soldering_iron", "fg": 5876 }, - { "id": "strawberries", "fg": 5877 }, - { "id": "superglue", "fg": 5878 }, - { "id": "toaster", "fg": 5879 }, - { "id": "corpse_mon_aphid_small", "fg": 5880 }, - { "id": "mon_aphid_small", "fg": 5881 } + { "id": "duct_tape", "fg": 5859 }, + { "id": "fetus", "fg": 5860 }, + { "id": "fish_bowl", "fg": 5861 }, + { "id": "honey_ant", "fg": 5862 }, + { "id": "leather_cat_tail", "fg": 5863 }, + { "id": "light_disposable_cell", "fg": 5864 }, + { "id": "magic_8_ball", "fg": 5865 }, + { "id": "match", "fg": 5866 }, + { "id": "mirror", "fg": 5867 }, + { "id": "money", "fg": 5868 }, + { "id": "pebble", "fg": 5869 }, + { "id": "blue_pen", "fg": 5870 }, + { "id": "green_pen", "fg": 5871 }, + { "id": "pen", "fg": 5872 }, + { "id": "red_pen", "fg": 5873 }, + { "id": "pipebomb", "fg": 5874 }, + { "id": "pipebomb_act", "fg": 5875 }, + { "id": "primitive_axe", "fg": 5876 }, + { "id": "pur_tablets", "fg": 5877 }, + { "id": "radio_car_wheel", "fg": 5878 }, + { "id": "soldering_iron", "fg": 5879 }, + { "id": "strawberries", "fg": 5880 }, + { "id": "superglue", "fg": 5881 }, + { "id": "toaster", "fg": 5882 }, + { "id": "corpse_mon_aphid_small", "fg": 5883 }, + { "id": "mon_aphid_small", "fg": 5884 } ] }, { @@ -10342,80 +10356,81 @@ "rotates": false }, { "id": "mon_nursebot", "fg": [ 5941, 5942, 5943 ], "rotates": false }, + { "id": [ "mon_brute_pupa", "mon_brute_pupa_decoy" ], "fg": 5945, "rotates": false }, { "id": "mon_firefly", "animated": true, "fg": [ - { "weight": 15, "sprite": 5945 }, { "weight": 15, "sprite": 5946 }, { "weight": 15, "sprite": 5947 }, - { "weight": 15, "sprite": 5946 } - ] - }, - { "id": "overlay_worn_10gal_hat", "fg": 5950, "rotates": false }, - { "id": "overlay_worn_bowhat", "fg": 5951, "rotates": false }, - { "id": "overlay_worn_eboshi", "fg": 5952, "rotates": false }, - { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 5953, "rotates": false }, - { "id": "overlay_worn_firehelmet", "fg": 5954, "rotates": false }, - { "id": "overlay_worn_hat_chef", "fg": 5955, "rotates": false }, - { "id": "overlay_worn_hat_hard", "fg": 5956, "rotates": false }, - { "id": "overlay_worn_hat_hard_hooded", "fg": 5957, "rotates": false }, - { "id": "overlay_worn_hat_sombrero", "fg": 5958, "rotates": false }, - { "id": "overlay_worn_helmet_kabuto", "fg": 5959, "rotates": false }, - { "id": "overlay_worn_miner_hat", "fg": 5960, "rotates": false }, - { "id": "overlay_worn_miner_hat_on", "fg": 5961, "rotates": false }, - { "id": "overlay_worn_pickelhaube", "fg": 5962, "rotates": false }, - { "id": "overlay_worn_porkpie", "fg": 5963, "rotates": false }, - { "id": "overlay_worn_straw_fedora", "fg": 5964, "rotates": false }, - { "id": "overlay_worn_straw_hat", "fg": 5965, "rotates": false }, - { "id": "overlay_worn_tinfoil_hat", "fg": 5966, "rotates": false }, - { "id": "overlay_worn_tophat", "fg": 5967, "rotates": false }, - { "id": "overlay_worn_veil_wedding", "fg": 5968, "rotates": false }, - { "id": "overlay_worn_welding_mask_crude_raised", "fg": 5969, "rotates": false }, - { "id": "overlay_worn_welding_mask_raised", "fg": 5970, "rotates": false }, - { "id": "overlay_effect_badpoison", "fg": 5972 }, - { "id": "overlay_effect_bleed", "fg": 5973 }, - { "id": "overlay_effect_bouldering", "fg": 5974 }, - { "id": "overlay_effect_common_cold", "fg": 5975 }, - { "id": "overlay_effect_dazed", "fg": 5976 }, - { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 5977 }, - { "id": "overlay_effect_downed", "fg": 5978 }, - { "id": "overlay_effect_drunk", "fg": 5979 }, - { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 5980 }, - { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 5981 }, - { "id": "overlay_effect_fungus", "fg": 5982 }, - { "id": "overlay_effect_grabbed", "fg": 5983 }, - { "id": "overlay_female_effect_haslight", "fg": 5992 }, - { "id": "overlay_male_effect_haslight", "fg": 5993 }, - { "id": "overlay_effect_high", "fg": 5984 }, - { "id": "overlay_effect_paralyzepoison", "fg": 5985 }, - { "id": "overlay_effect_poison", "fg": 5986 }, - { "id": "overlay_effect_sleep", "fg": 5987 }, - { "id": "overlay_effect_spores", "fg": 5988 }, - { "id": "overlay_effect_stunned", "fg": 5989 }, - { "id": "overlay_effect_visuals", "fg": 5990 }, - { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 5991 }, - { "id": "overlay_female_mutation_hair_black_fro", "fg": 6005, "rotates": false }, - { "id": "overlay_female_mutation_hair_gray_fro", "fg": 6008, "rotates": false }, - { "id": "overlay_female_mutation_hair_blond_fro", "fg": 6006, "rotates": false }, - { "id": "overlay_female_mutation_hair_brown_fro", "fg": 6007, "rotates": false }, - { "id": "overlay_female_mutation_hair_white_fro", "fg": 6010, "rotates": false }, - { "id": "overlay_female_mutation_hair_red_fro", "fg": 6009, "rotates": false }, - { "id": "overlay_male_mutation_hair_black_fro", "fg": 6011, "rotates": false }, - { "id": "overlay_male_mutation_hair_gray_fro", "fg": 6014, "rotates": false }, - { "id": "overlay_male_mutation_hair_blond_fro", "fg": 6012, "rotates": false }, - { "id": "overlay_male_mutation_hair_brown_fro", "fg": 6013, "rotates": false }, - { "id": "overlay_male_mutation_hair_white_fro", "fg": 6016, "rotates": false }, - { "id": "overlay_male_mutation_hair_red_fro", "fg": 6015, "rotates": false }, - { "id": "overlay_mutation_hair_black_mohawk", "fg": 6017, "rotates": false }, - { "id": "overlay_mutation_hair_gray_mohawk", "fg": 6020, "rotates": false }, - { "id": "overlay_mutation_hair_blond_mohawk", "fg": 6018, "rotates": false }, - { "id": "overlay_mutation_hair_brown_mohawk", "fg": 6019, "rotates": false }, - { "id": "overlay_mutation_hair_white_mohawk", "fg": 6022, "rotates": false }, - { "id": "overlay_mutation_hair_red_mohawk", "fg": 6021, "rotates": false }, + { "weight": 15, "sprite": 5948 }, + { "weight": 15, "sprite": 5947 } + ] + }, + { "id": "overlay_worn_10gal_hat", "fg": 5952, "rotates": false }, + { "id": "overlay_worn_bowhat", "fg": 5953, "rotates": false }, + { "id": "overlay_worn_eboshi", "fg": 5954, "rotates": false }, + { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 5955, "rotates": false }, + { "id": "overlay_worn_firehelmet", "fg": 5956, "rotates": false }, + { "id": "overlay_worn_hat_chef", "fg": 5957, "rotates": false }, + { "id": "overlay_worn_hat_hard", "fg": 5958, "rotates": false }, + { "id": "overlay_worn_hat_hard_hooded", "fg": 5959, "rotates": false }, + { "id": "overlay_worn_hat_sombrero", "fg": 5960, "rotates": false }, + { "id": "overlay_worn_helmet_kabuto", "fg": 5961, "rotates": false }, + { "id": "overlay_worn_miner_hat", "fg": 5962, "rotates": false }, + { "id": "overlay_worn_miner_hat_on", "fg": 5963, "rotates": false }, + { "id": "overlay_worn_pickelhaube", "fg": 5964, "rotates": false }, + { "id": "overlay_worn_porkpie", "fg": 5965, "rotates": false }, + { "id": "overlay_worn_straw_fedora", "fg": 5966, "rotates": false }, + { "id": "overlay_worn_straw_hat", "fg": 5967, "rotates": false }, + { "id": "overlay_worn_tinfoil_hat", "fg": 5968, "rotates": false }, + { "id": "overlay_worn_tophat", "fg": 5969, "rotates": false }, + { "id": "overlay_worn_veil_wedding", "fg": 5970, "rotates": false }, + { "id": "overlay_worn_welding_mask_crude_raised", "fg": 5971, "rotates": false }, + { "id": "overlay_worn_welding_mask_raised", "fg": 5972, "rotates": false }, + { "id": "overlay_effect_badpoison", "fg": 5974 }, + { "id": "overlay_effect_bleed", "fg": 5975 }, + { "id": "overlay_effect_bouldering", "fg": 5976 }, + { "id": "overlay_effect_common_cold", "fg": 5977 }, + { "id": "overlay_effect_dazed", "fg": 5978 }, + { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 5979 }, + { "id": "overlay_effect_downed", "fg": 5980 }, + { "id": "overlay_effect_drunk", "fg": 5981 }, + { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 5982 }, + { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 5983 }, + { "id": "overlay_effect_fungus", "fg": 5984 }, + { "id": "overlay_effect_grabbed", "fg": 5985 }, + { "id": "overlay_female_effect_haslight", "fg": 5994 }, + { "id": "overlay_male_effect_haslight", "fg": 5995 }, + { "id": "overlay_effect_high", "fg": 5986 }, + { "id": "overlay_effect_paralyzepoison", "fg": 5987 }, + { "id": "overlay_effect_poison", "fg": 5988 }, + { "id": "overlay_effect_sleep", "fg": 5989 }, + { "id": "overlay_effect_spores", "fg": 5990 }, + { "id": "overlay_effect_stunned", "fg": 5991 }, + { "id": "overlay_effect_visuals", "fg": 5992 }, + { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 5993 }, + { "id": "overlay_female_mutation_hair_black_fro", "fg": 6007, "rotates": false }, + { "id": "overlay_female_mutation_hair_gray_fro", "fg": 6010, "rotates": false }, + { "id": "overlay_female_mutation_hair_blond_fro", "fg": 6008, "rotates": false }, + { "id": "overlay_female_mutation_hair_brown_fro", "fg": 6009, "rotates": false }, + { "id": "overlay_female_mutation_hair_white_fro", "fg": 6012, "rotates": false }, + { "id": "overlay_female_mutation_hair_red_fro", "fg": 6011, "rotates": false }, + { "id": "overlay_male_mutation_hair_black_fro", "fg": 6013, "rotates": false }, + { "id": "overlay_male_mutation_hair_gray_fro", "fg": 6016, "rotates": false }, + { "id": "overlay_male_mutation_hair_blond_fro", "fg": 6014, "rotates": false }, + { "id": "overlay_male_mutation_hair_brown_fro", "fg": 6015, "rotates": false }, + { "id": "overlay_male_mutation_hair_white_fro", "fg": 6018, "rotates": false }, + { "id": "overlay_male_mutation_hair_red_fro", "fg": 6017, "rotates": false }, + { "id": "overlay_mutation_hair_black_mohawk", "fg": 6019, "rotates": false }, + { "id": "overlay_mutation_hair_gray_mohawk", "fg": 6022, "rotates": false }, + { "id": "overlay_mutation_hair_blond_mohawk", "fg": 6020, "rotates": false }, + { "id": "overlay_mutation_hair_brown_mohawk", "fg": 6021, "rotates": false }, + { "id": "overlay_mutation_hair_white_mohawk", "fg": 6024, "rotates": false }, + { "id": "overlay_mutation_hair_red_mohawk", "fg": 6023, "rotates": false }, { "id": [ "overlay_female_mutation_BIOLUM0", "overlay_female_mutation_BIOLUM1", "overlay_female_mutation_BIOLUM2" ], - "fg": 6023, + "fg": 6025, "rotates": false }, { @@ -10424,12 +10439,12 @@ "overlay_female_mutation_BIOLUM1_active", "overlay_female_mutation_BIOLUM2_active" ], - "fg": 6024, + "fg": 6026, "rotates": false }, { "id": [ "overlay_male_mutation_BIOLUM0", "overlay_male_mutation_BIOLUM1", "overlay_male_mutation_BIOLUM2" ], - "fg": 6025, + "fg": 6027, "rotates": false }, { @@ -10438,76 +10453,76 @@ "overlay_male_mutation_BIOLUM1_active", "overlay_male_mutation_BIOLUM2_active" ], - "fg": 6026, + "fg": 6028, "rotates": false }, - { "id": "overlay_mutation_HORNS_POINTED", "fg": 6027, "rotates": false }, + { "id": "overlay_mutation_HORNS_POINTED", "fg": 6029, "rotates": false }, { "id": "t_privacy_fence", - "fg": 6041, - "bg": 6032, + "fg": 6043, + "bg": 6034, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6041, "bg": 6032 }, - { "id": "corner", "fg": [ 6035, 6037, 6036, 6034 ], "bg": 6032 }, - { "id": "t_connection", "fg": [ 6038, 3686, 6038, 3686 ], "bg": 6032 }, - { "id": "edge", "fg": [ 3686, 6038 ], "bg": 6032 }, - { "id": "end_piece", "fg": [ 3687, 6040, 3688, 6039 ], "bg": 6032 }, - { "id": "unconnected", "fg": [ 6041, 6041 ], "bg": 6032 } + { "id": "center", "fg": 6043, "bg": 6034 }, + { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6034 }, + { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6034 }, + { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6034 }, + { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6034 }, + { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6034 } ] }, { "id": "t_privacy_fence_season_autumn", - "fg": 6041, - "bg": 6030, + "fg": 6043, + "bg": 6032, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6041, "bg": 6030 }, - { "id": "corner", "fg": [ 6035, 6037, 6036, 6034 ], "bg": 6030 }, - { "id": "t_connection", "fg": [ 6038, 3686, 6038, 3686 ], "bg": 6030 }, - { "id": "edge", "fg": [ 3686, 6038 ], "bg": 6030 }, - { "id": "end_piece", "fg": [ 3687, 6040, 3688, 6039 ], "bg": 6030 }, - { "id": "unconnected", "fg": [ 6041, 6041 ], "bg": 6030 } + { "id": "center", "fg": 6043, "bg": 6032 }, + { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6032 }, + { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6032 }, + { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6032 }, + { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6032 }, + { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6032 } ] }, { "id": "t_privacy_fence_season_summer", - "fg": 6041, - "bg": 6031, + "fg": 6043, + "bg": 6033, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6041, "bg": 6031 }, - { "id": "corner", "fg": [ 6035, 6037, 6036, 6034 ], "bg": 6031 }, - { "id": "t_connection", "fg": [ 6038, 3686, 6038, 3686 ], "bg": 6031 }, - { "id": "edge", "fg": [ 3686, 6038 ], "bg": 6031 }, - { "id": "end_piece", "fg": [ 3687, 6040, 3688, 6039 ], "bg": 6031 }, - { "id": "unconnected", "fg": [ 6041, 6041 ], "bg": 6031 } + { "id": "center", "fg": 6043, "bg": 6033 }, + { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6033 }, + { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6033 }, + { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6033 }, + { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6033 }, + { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6033 } ] }, { "id": "t_privacy_fence_season_winter", - "fg": 6041, - "bg": 6033, + "fg": 6043, + "bg": 6035, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6041, "bg": 6033 }, - { "id": "corner", "fg": [ 6035, 6037, 6036, 6034 ], "bg": 6033 }, - { "id": "t_connection", "fg": [ 6038, 3686, 6038, 3686 ], "bg": 6033 }, - { "id": "edge", "fg": [ 3686, 6038 ], "bg": 6033 }, - { "id": "end_piece", "fg": [ 3687, 6040, 3688, 6039 ], "bg": 6033 }, - { "id": "unconnected", "fg": [ 6041, 6041 ], "bg": 6033 } + { "id": "center", "fg": 6043, "bg": 6035 }, + { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6035 }, + { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6035 }, + { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6035 }, + { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6035 }, + { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6035 } ] }, { "id": "t_vat", - "fg": [ { "weight": 1, "sprite": 6044 }, { "weight": 1, "sprite": 6042 }, { "weight": 1, "sprite": 6043 } ], + "fg": [ { "weight": 1, "sprite": 6046 }, { "weight": 1, "sprite": 6044 }, { "weight": 1, "sprite": 6045 } ], "rotates": false }, { "id": "vp_frame_handle", - "fg": [ 6046, 6048, 6047, 6045 ], + "fg": [ 6048, 6050, 6049, 6047 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5025, "bg": [ 6046, 6048, 6047, 6045 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 6048, 6050, 6049, 6047 ] } ] }, { "id": "f_alien_anemone", "fg": 5904 }, { "id": "f_alien_gasper", "fg": 5905 }, @@ -10522,22 +10537,23 @@ { "id": "cauldron_demon_chitin", "fg": 5934 }, { "id": "cauldron_orichalcum", "fg": 5935 }, { "id": "mon_zombie_scissorlimbs", "fg": 5944 }, - { "id": "mon_mantis_giant", "fg": 5948 }, - { "id": "mon_robofac_prototype", "fg": 5949 }, - { "id": "overlay_crouch", "fg": 5971 }, - { "id": "overlay_run", "fg": 5994 }, - { "id": "overlay_effect_weary_0", "fg": 5995 }, - { "id": "overlay_effect_weary_1", "fg": 5996 }, - { "id": "overlay_effect_weary_2", "fg": 5997 }, - { "id": "overlay_effect_weary_3", "fg": 5998 }, - { "id": "overlay_effect_weary_4", "fg": 5999 }, - { "id": "overlay_effect_weary_5", "fg": 6000 }, - { "id": "overlay_effect_weary_6", "fg": 6001 }, - { "id": "overlay_effect_weary_7", "fg": 6002 }, - { "id": "overlay_effect_weary_8", "fg": 6003 }, - { "id": "overlay_prone", "fg": 6004 }, - { "id": "overlay_wielded_mattress", "fg": 6028 }, - { "id": "t_bulk_tank", "fg": 6029 } + { "id": "mon_mantis_giant", "fg": 5949 }, + { "id": "mon_robofac_prototype", "fg": 5950 }, + { "id": "mon_spawn_raptor", "fg": 5951 }, + { "id": "overlay_crouch", "fg": 5973 }, + { "id": "overlay_run", "fg": 5996 }, + { "id": "overlay_effect_weary_0", "fg": 5997 }, + { "id": "overlay_effect_weary_1", "fg": 5998 }, + { "id": "overlay_effect_weary_2", "fg": 5999 }, + { "id": "overlay_effect_weary_3", "fg": 6000 }, + { "id": "overlay_effect_weary_4", "fg": 6001 }, + { "id": "overlay_effect_weary_5", "fg": 6002 }, + { "id": "overlay_effect_weary_6", "fg": 6003 }, + { "id": "overlay_effect_weary_7", "fg": 6004 }, + { "id": "overlay_effect_weary_8", "fg": 6005 }, + { "id": "overlay_prone", "fg": 6006 }, + { "id": "overlay_wielded_mattress", "fg": 6030 }, + { "id": "t_bulk_tank", "fg": 6031 } ] }, { @@ -10648,15 +10664,17 @@ { "id": "mon_zombie_hulk", "fg": 6117, "rotates": false }, { "id": "mon_zombie_kevlar_2", "fg": 6154, "bg": [ ], "rotates": false }, { "id": "mon_zombie_nullfield", "fg": 6156, "bg": [ ], "rotates": false }, - { "id": "overlay_wielded_pike", "fg": 6167, "rotates": false }, - { "id": "overlay_wielded_qiang", "fg": 6167, "rotates": false }, - { "id": "f_boulder_large", "fg": 6212, "rotates": false }, - { "id": "t_leanto", "fg": 6208, "bg": 6231, "rotates": false }, - { "id": "t_leanto_season_winter", "fg": 6208, "bg": 6234, "rotates": false }, - { "id": "t_marloss_tree", "fg": 6196, "bg": 6197, "rotates": false }, - { "id": "t_tree", "fg": 6175, "bg": 6231, "rotates": false }, - { "id": "t_tree_almond_season_autumn", "fg": 6229, "bg": 6232, "rotates": false }, - { "id": "t_tree_almond_season_spring", "fg": 6228, "bg": 6231, "rotates": false }, + { "id": [ "mon_hulk_pupa", "mon_hulk_pupa_decoy" ], "fg": 6166, "rotates": false }, + { "id": [ "corpse_mon_hulk_pupa", "corpse_mon_hulk_pupa_decoy" ], "fg": 6165, "rotates": false }, + { "id": "overlay_wielded_pike", "fg": 6169, "rotates": false }, + { "id": "overlay_wielded_qiang", "fg": 6169, "rotates": false }, + { "id": "f_boulder_large", "fg": 6214, "rotates": false }, + { "id": "t_leanto", "fg": 6210, "bg": 6233, "rotates": false }, + { "id": "t_leanto_season_winter", "fg": 6210, "bg": 6236, "rotates": false }, + { "id": "t_marloss_tree", "fg": 6198, "bg": 6199, "rotates": false }, + { "id": "t_tree", "fg": 6177, "bg": 6233, "rotates": false }, + { "id": "t_tree_almond_season_autumn", "fg": 6231, "bg": 6234, "rotates": false }, + { "id": "t_tree_almond_season_spring", "fg": 6230, "bg": 6233, "rotates": false }, { "id": [ "t_tree_apple_harvested_season_winter", @@ -10672,8 +10690,8 @@ "t_tree_pear_season_winter", "t_tree_plum_season_winter" ], - "fg": 6187, - "bg": 6234 + "fg": 6189, + "bg": 6236 }, { "id": [ @@ -10690,19 +10708,19 @@ "t_tree_pear", "t_tree_plum" ], - "fg": 6180, - "bg": 6231 - }, - { "id": "t_tree_apple_season_autumn", "fg": 6183, "bg": 6232 }, - { "id": "t_tree_apricot_season_summer", "fg": 6185, "bg": 6233 }, - { "id": "t_tree_beech_season_autumn", "fg": 6223, "bg": 6232, "rotates": false }, - { "id": "t_tree_birch", "fg": 6198, "bg": 6231, "rotates": false }, - { "id": "t_tree_birch_harvested", "fg": 6199, "bg": 6231, "rotates": false }, - { "id": "t_tree_birch_harvested_season_winter", "fg": 6199, "bg": 6234, "rotates": false }, - { "id": "t_tree_birch_season_winter", "fg": 6200, "bg": 6234, "rotates": false }, - { "id": "t_tree_blackjack", "fg": 6188, "bg": 6231, "rotates": false }, - { "id": "t_tree_blackjack_season_winter", "fg": 6189, "bg": 6234, "rotates": false }, - { "id": "t_tree_cherry_season_summer", "fg": 6181, "bg": 6233 }, + "fg": 6182, + "bg": 6233 + }, + { "id": "t_tree_apple_season_autumn", "fg": 6185, "bg": 6234 }, + { "id": "t_tree_apricot_season_summer", "fg": 6187, "bg": 6235 }, + { "id": "t_tree_beech_season_autumn", "fg": 6225, "bg": 6234, "rotates": false }, + { "id": "t_tree_birch", "fg": 6200, "bg": 6233, "rotates": false }, + { "id": "t_tree_birch_harvested", "fg": 6201, "bg": 6233, "rotates": false }, + { "id": "t_tree_birch_harvested_season_winter", "fg": 6201, "bg": 6236, "rotates": false }, + { "id": "t_tree_birch_season_winter", "fg": 6202, "bg": 6236, "rotates": false }, + { "id": "t_tree_blackjack", "fg": 6190, "bg": 6233, "rotates": false }, + { "id": "t_tree_blackjack_season_winter", "fg": 6191, "bg": 6236, "rotates": false }, + { "id": "t_tree_cherry_season_summer", "fg": 6183, "bg": 6235 }, { "id": [ "t_tree_chestnut_harvested_season_autumn", @@ -10710,11 +10728,11 @@ "t_tree_pecan_harvested_season_autumn", "t_tree_beech_harvested_season_autumn" ], - "fg": 6218, - "bg": 6232, + "fg": 6220, + "bg": 6234, "rotates": false }, - { "id": "t_tree_chestnut_season_autumn", "fg": 6220, "bg": 6232, "rotates": false }, + { "id": "t_tree_chestnut_season_autumn", "fg": 6222, "bg": 6234, "rotates": false }, { "id": [ "t_tree_chestnut_season_winter", @@ -10726,29 +10744,29 @@ "t_tree_pecan_harvested_season_winter", "t_tree_beech_harvested_season_winter" ], - "fg": 6219, - "bg": 6234, + "fg": 6221, + "bg": 6236, "rotates": false }, { "id": [ "t_tree_chestnut", "t_tree_walnut", "t_tree_pecan", "t_tree_beech" ], - "fg": 6217, - "bg": 6231, + "fg": 6219, + "bg": 6233, "rotates": false }, - { "id": [ "t_tree_dead_season_winter", "t_tree_hickory_dead_season_winter" ], "fg": 6190, "bg": 6234 }, - { "id": [ "t_tree_dead", "t_tree_hickory_dead" ], "fg": 6190, "bg": 6231 }, - { "id": "t_tree_deadpine", "fg": 6191, "bg": 6231, "rotates": false }, - { "id": "t_tree_deadpine_season_winter", "fg": 6191, "bg": 6234, "rotates": false }, - { "id": "t_tree_elderberry_season_summer", "fg": 6174, "bg": 6233, "rotates": false }, - { "id": "t_tree_fungal", "fg": 6195, "bg": 6197, "rotates": false }, + { "id": [ "t_tree_dead_season_winter", "t_tree_hickory_dead_season_winter" ], "fg": 6192, "bg": 6236 }, + { "id": [ "t_tree_dead", "t_tree_hickory_dead" ], "fg": 6192, "bg": 6233 }, + { "id": "t_tree_deadpine", "fg": 6193, "bg": 6233, "rotates": false }, + { "id": "t_tree_deadpine_season_winter", "fg": 6193, "bg": 6236, "rotates": false }, + { "id": "t_tree_elderberry_season_summer", "fg": 6176, "bg": 6235, "rotates": false }, + { "id": "t_tree_fungal", "fg": 6197, "bg": 6199, "rotates": false }, { "id": [ "t_tree_hazelnut_harvested", "t_tree_almond_harvested", "t_tree_pistachio_harvested" ], - "fg": 6225, - "bg": 6231, + "fg": 6227, + "bg": 6233, "rotates": false }, - { "id": "t_tree_hazelnut_season_autumn", "fg": 6227, "bg": 6232, "rotates": false }, + { "id": "t_tree_hazelnut_season_autumn", "fg": 6229, "bg": 6234, "rotates": false }, { "id": [ "t_tree_hazelnut_season_winter", @@ -10758,26 +10776,26 @@ "t_tree_almond_harvested_season_winter", "t_tree_pistachio_harvested_season_winter" ], - "fg": 6226, - "bg": 6234, + "fg": 6228, + "bg": 6236, "rotates": false }, - { "id": [ "t_tree_hazelnut", "t_tree_almond", "t_tree_pistachio" ], "fg": 6224, "bg": 6231, "rotates": false }, - { "id": "t_tree_hickory_season_autumn", "fg": 6193, "bg": 6232, "rotates": false }, + { "id": [ "t_tree_hazelnut", "t_tree_almond", "t_tree_pistachio" ], "fg": 6226, "bg": 6233, "rotates": false }, + { "id": "t_tree_hickory_season_autumn", "fg": 6195, "bg": 6234, "rotates": false }, { "id": [ "t_tree_hickory_season_winter", "t_tree_hickory_harvested_season_winter" ], - "fg": 6194, - "bg": 6234, + "fg": 6196, + "bg": 6236, "rotates": false }, - { "id": [ "t_tree_hickory", "t_tree_hickory_harvested" ], "fg": 6192, "bg": 6231, "rotates": false }, - { "id": "t_tree_maple", "fg": 6201, "bg": 6231, "rotates": false }, - { "id": "t_tree_maple_season_autumn", "fg": 6203, "bg": 6232, "rotates": false }, - { "id": "t_tree_maple_season_winter", "fg": 6203, "bg": 6234, "rotates": false }, - { "id": "t_tree_maple_tapped", "fg": 6202, "bg": 6231 }, - { "id": "t_tree_maple_tapped_season_autumn", "fg": 6204, "bg": 6232 }, - { "id": "t_tree_maple_tapped_season_winter", "fg": 6204, "bg": 6234 }, - { "id": "t_tree_mulberry_season_summer", "fg": 6173, "bg": 6233, "rotates": false }, + { "id": [ "t_tree_hickory", "t_tree_hickory_harvested" ], "fg": 6194, "bg": 6233, "rotates": false }, + { "id": "t_tree_maple", "fg": 6203, "bg": 6233, "rotates": false }, + { "id": "t_tree_maple_season_autumn", "fg": 6205, "bg": 6234, "rotates": false }, + { "id": "t_tree_maple_season_winter", "fg": 6205, "bg": 6236, "rotates": false }, + { "id": "t_tree_maple_tapped", "fg": 6204, "bg": 6233 }, + { "id": "t_tree_maple_tapped_season_autumn", "fg": 6206, "bg": 6234 }, + { "id": "t_tree_maple_tapped_season_winter", "fg": 6206, "bg": 6236 }, + { "id": "t_tree_mulberry_season_summer", "fg": 6175, "bg": 6235, "rotates": false }, { "id": [ "t_tree_mulberry_season_winter", @@ -10785,64 +10803,64 @@ "t_tree_mulberry_harvested_season_winter", "t_tree_elderberry_harvested_season_winter" ], - "fg": 6172, - "bg": 6234, + "fg": 6174, + "bg": 6236, "rotates": false }, { "id": [ "t_tree_mulberry", "t_tree_elderberry", "t_tree_mulberry_harvested", "t_tree_elderberry_harvested" ], - "fg": 6171, - "bg": 6231, + "fg": 6173, + "bg": 6233, "rotates": false }, - { "id": "t_tree_peach_season_summer", "fg": 6182, "bg": 6233 }, - { "id": "t_tree_pear_season_autumn", "fg": 6184, "bg": 6233 }, - { "id": "t_tree_pecan_season_autumn", "fg": 6222, "bg": 6232, "rotates": false }, - { "id": "t_tree_pine", "fg": 6176, "bg": 6231, "rotates": false }, - { "id": "t_tree_pine_season_winter", "fg": 6179, "bg": 6234, "rotates": false }, - { "id": "t_tree_pistachio_season_autumn", "fg": 6230, "bg": 6232, "rotates": false }, - { "id": "t_tree_plum_season_summer", "fg": 6186, "bg": 6233 }, + { "id": "t_tree_peach_season_summer", "fg": 6184, "bg": 6235 }, + { "id": "t_tree_pear_season_autumn", "fg": 6186, "bg": 6235 }, + { "id": "t_tree_pecan_season_autumn", "fg": 6224, "bg": 6234, "rotates": false }, + { "id": "t_tree_pine", "fg": 6178, "bg": 6233, "rotates": false }, + { "id": "t_tree_pine_season_winter", "fg": 6181, "bg": 6236, "rotates": false }, + { "id": "t_tree_pistachio_season_autumn", "fg": 6232, "bg": 6234, "rotates": false }, + { "id": "t_tree_plum_season_summer", "fg": 6188, "bg": 6235 }, { "id": "t_tree_season_autumn", - "fg": [ { "weight": 1, "sprite": 6209 }, { "weight": 1, "sprite": 6211 } ], - "bg": 6232, + "fg": [ { "weight": 1, "sprite": 6211 }, { "weight": 1, "sprite": 6213 } ], + "bg": 6234, "rotates": false }, { "id": "t_tree_season_spring", - "fg": [ { "weight": 1, "sprite": 6175 }, { "weight": 1, "sprite": 6211 } ], - "bg": 6231, + "fg": [ { "weight": 1, "sprite": 6177 }, { "weight": 1, "sprite": 6213 } ], + "bg": 6233, "rotates": false }, - { "id": "t_tree_season_winter", "fg": 6178, "bg": 6234, "rotates": false }, - { "id": "t_tree_walnut_season_autumn", "fg": 6221, "bg": 6232, "rotates": false }, - { "id": "t_tree_willow", "fg": 6205, "bg": 6231, "rotates": false }, - { "id": "t_tree_willow_harvested", "fg": 6206, "bg": 6231, "rotates": false }, - { "id": "t_tree_willow_harvested_season_winter", "fg": 6206, "bg": 6234, "rotates": false }, - { "id": "t_tree_willow_season_winter", "fg": 6207, "bg": 6234, "rotates": false }, - { "id": "t_tree_young", "fg": 6177, "bg": 6231, "rotates": false }, - { "id": "t_tree_young_season_autumn", "fg": 6210, "bg": 6232, "rotates": false }, - { "id": "t_tree_young_season_winter", "fg": 6210, "bg": 6234, "rotates": false }, + { "id": "t_tree_season_winter", "fg": 6180, "bg": 6236, "rotates": false }, + { "id": "t_tree_walnut_season_autumn", "fg": 6223, "bg": 6234, "rotates": false }, + { "id": "t_tree_willow", "fg": 6207, "bg": 6233, "rotates": false }, + { "id": "t_tree_willow_harvested", "fg": 6208, "bg": 6233, "rotates": false }, + { "id": "t_tree_willow_harvested_season_winter", "fg": 6208, "bg": 6236, "rotates": false }, + { "id": "t_tree_willow_season_winter", "fg": 6209, "bg": 6236, "rotates": false }, + { "id": "t_tree_young", "fg": 6179, "bg": 6233, "rotates": false }, + { "id": "t_tree_young_season_autumn", "fg": 6212, "bg": 6234, "rotates": false }, + { "id": "t_tree_young_season_winter", "fg": 6212, "bg": 6236, "rotates": false }, { "id": "vp_solar_array2", - "fg": 6215, + "fg": 6217, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 6216 } ] + "additional_tiles": [ { "id": "broken", "fg": 6218 } ] }, { "id": "vp_solar_array2r", - "fg": 6215, + "fg": 6217, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 6216 } ] + "additional_tiles": [ { "id": "broken", "fg": 6218 } ] }, { "id": "vp_solar_array", - "fg": 6213, + "fg": 6215, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 6214 } ] + "additional_tiles": [ { "id": "broken", "fg": 6216 } ] }, { "id": "corpse_mon_afs_headless_horror", "fg": 6090 }, { "id": "broken_claygolem", "fg": 6091 }, @@ -10867,11 +10885,11 @@ { "id": "mon_flying_polyp", "fg": 6162 }, { "id": "corpse_mon_frog_mother", "fg": 6163 }, { "id": "mon_frog_mother", "fg": 6164 }, - { "id": "corpse_mon_zpig_brute", "fg": 6165 }, - { "id": "mon_zpig_brute", "fg": 6166 }, - { "id": "overlay_worn_cape_fp", "fg": 6168 }, - { "id": "overlay_worn_foodperson_mask", "fg": 6169 }, - { "id": "overlay_worn_foodperson_mask_on", "fg": 6170 } + { "id": "corpse_mon_zpig_brute", "fg": 6167 }, + { "id": "mon_zpig_brute", "fg": 6168 }, + { "id": "overlay_worn_cape_fp", "fg": 6170 }, + { "id": "overlay_worn_foodperson_mask", "fg": 6171 }, + { "id": "overlay_worn_foodperson_mask_on", "fg": 6172 } ] }, { @@ -11066,70 +11084,69 @@ { "id": "mon_cat_bengal", "fg": [ { "weight": 1, "sprite": 6342 }, { "weight": 1, "sprite": 6341 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_calico", "fg": [ { "weight": 1, "sprite": 6345 }, { "weight": 1, "sprite": 6344 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_chonker", "fg": [ { "weight": 1, "sprite": 6348 }, { "weight": 1, "sprite": 6347 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_devon_rex", "fg": [ { "weight": 1, "sprite": 6351 }, { "weight": 1, "sprite": 6350 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_longhair", "fg": [ { "weight": 1, "sprite": 6354 }, { "weight": 1, "sprite": 6353 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_maine_coon", "fg": [ { "weight": 1, "sprite": 6357 }, { "weight": 1, "sprite": 6356 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_persian", "fg": [ { "weight": 1, "sprite": 6360 }, { "weight": 1, "sprite": 6359 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_siamese", "fg": [ { "weight": 1, "sprite": 6364 }, { "weight": 1, "sprite": 6363 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_sphynx", "fg": [ { "weight": 1, "sprite": 6367 }, { "weight": 1, "sprite": 6366 } ], - "bg": 3159 + "bg": 3162 }, { "id": "mon_cat_tabby", "fg": [ { "weight": 1, "sprite": 6370 }, { "weight": 1, "sprite": 6369 } ], - "bg": 3159 - }, - { "id": "mon_cat_kitten", "fg": 6361, "bg": 3159 }, - { "id": "mon_cat_bengal_kitten", "fg": 6340, "bg": 3159 }, - { "id": "mon_cat_calico_kitten", "fg": 6343, "bg": 3159 }, - { "id": "mon_cat_chonker_kitten", "fg": 6346, "bg": 3159 }, - { "id": "mon_cat_devon_rex_kitten", "fg": 6349, "bg": 3159 }, - { "id": "mon_cat_longhair_kitten", "fg": 6352, "bg": 3159 }, - { "id": "mon_cat_maine_coon_kitten", "fg": 6355, "bg": 3159 }, - { "id": "mon_cat_persian_kitten", "fg": 6358, "bg": 3159 }, - { "id": "mon_cat_siamese_kitten", "fg": 6362, "bg": 3159 }, - { "id": "mon_cat_sphynx_kitten", "fg": 6365, "bg": 3159 }, - { "id": "mon_cat_tabby_kitten", "fg": 6368, "bg": 3159 }, - { "id": "mon_dog_beagle", "fg": 6371, "bg": 3159 }, - { "id": "mon_dog_boxer", "fg": 6372, "bg": 3158 }, - { "id": "mon_dog_gshepherd", "fg": 6374, "bg": 3158 }, - { "id": "mon_dog_dachshund", "fg": 6373, "bg": 3158 }, - { "id": "mon_spawn_raptor", "fg": 6375, "bg": 3158 }, - { "id": "mon_crow_mutant_small", "fg": 6376, "bg": 3158 }, + "bg": 3162 + }, + { "id": "mon_cat_kitten", "fg": 6361, "bg": 3162 }, + { "id": "mon_cat_bengal_kitten", "fg": 6340, "bg": 3162 }, + { "id": "mon_cat_calico_kitten", "fg": 6343, "bg": 3162 }, + { "id": "mon_cat_chonker_kitten", "fg": 6346, "bg": 3162 }, + { "id": "mon_cat_devon_rex_kitten", "fg": 6349, "bg": 3162 }, + { "id": "mon_cat_longhair_kitten", "fg": 6352, "bg": 3162 }, + { "id": "mon_cat_maine_coon_kitten", "fg": 6355, "bg": 3162 }, + { "id": "mon_cat_persian_kitten", "fg": 6358, "bg": 3162 }, + { "id": "mon_cat_siamese_kitten", "fg": 6362, "bg": 3162 }, + { "id": "mon_cat_sphynx_kitten", "fg": 6365, "bg": 3162 }, + { "id": "mon_cat_tabby_kitten", "fg": 6368, "bg": 3162 }, + { "id": "mon_dog_beagle", "fg": 6371, "bg": 3162 }, + { "id": "mon_dog_boxer", "fg": 6372, "bg": 3161 }, + { "id": "mon_dog_gshepherd", "fg": 6374, "bg": 3161 }, + { "id": "mon_dog_dachshund", "fg": 6373, "bg": 3161 }, + { "id": "mon_crow_mutant_small", "fg": 6375, "bg": 3161 }, { "id": "clay_pot", "fg": 6337 }, { "id": "mic_stand_tall", "fg": 6338 }, { "id": "spike", "fg": 6339 } @@ -11143,22 +11160,19 @@ "sprite_offset_x": 0, "sprite_offset_y": -32, "tiles": [ - { "id": "mon_zombie_phase_skulker", "fg": 6386, "bg": 6384 }, { "id": "mon_zombie_phase_shrike", "fg": 6385, "bg": 6384 }, { "id": "mon_exodii_worker", "fg": [ + { "weight": 15, "sprite": 6386 }, { "weight": 15, "sprite": 6387 }, - { "weight": 15, "sprite": 6388 }, - { "weight": 10, "sprite": 6389 }, - { "weight": 10, "sprite": 6390 } + { "weight": 10, "sprite": 6388 }, + { "weight": 10, "sprite": 6389 } ], "bg": 6384 }, - { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 6391, "bg": 6384 }, - { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 6392, "bg": 6384 }, - { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 6393, "bg": 6384 }, - { "id": "mon_zombie_winged", "fg": 6394, "bg": 6384 } + { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 6390, "bg": 6384 }, + { "id": "mon_zombie_winged", "fg": 6391, "bg": 6384 } ] }, { diff --git a/gfx/MshockXotto+/tiles.png b/gfx/MshockXotto+/tiles.png index f7207d8fd47b3..36cd5f7ab8cc5 100644 Binary files a/gfx/MshockXotto+/tiles.png and b/gfx/MshockXotto+/tiles.png differ diff --git a/gfx/SurveyorsMap/fallback.png b/gfx/SurveyorsMap/fallback.png new file mode 100644 index 0000000000000..e887c29a82a34 Binary files /dev/null and b/gfx/SurveyorsMap/fallback.png differ diff --git a/gfx/SurveyorsMap/overmap.png b/gfx/SurveyorsMap/overmap.png new file mode 100644 index 0000000000000..6d47f5c9871bb Binary files /dev/null and b/gfx/SurveyorsMap/overmap.png differ diff --git a/gfx/SurveyorsMap/tile_config.json b/gfx/SurveyorsMap/tile_config.json new file mode 100644 index 0000000000000..af33d55960db5 --- /dev/null +++ b/gfx/SurveyorsMap/tile_config.json @@ -0,0 +1,894 @@ +{ + "tile_info": [ + { "pixelscale": 1, "width": 24, "height": 24 } + ], + "tiles-new": [ + { + "file": "overmap.png", + "//": "range 1 to 3071", + "tiles": [ + { "id": [ "abandonedwarehouse" ], "fg": [ 2, 1, 3, 4 ], "bg": 2970, "rotates": true }, + { "id": [ "abandonedwarehouse_roof" ], "fg": [ 6, 5, 7, 8 ], "bg": 2973, "rotates": true }, + { "id": [ "abandonedwarehouse_1" ], "fg": [ 10, 9, 11, 12 ], "bg": 2970, "rotates": true }, + { "id": [ "abandonedwarehouse_1_roof" ], "fg": [ 14, 13, 15, 16 ], "bg": 2973, "rotates": true }, + { "id": [ "abandonedwarehouse_2" ], "fg": [ 18, 17, 19, 20 ], "bg": 2970, "rotates": true }, + { "id": [ "abandonedwarehouse_2_roof" ], "fg": [ 22, 21, 23, 24 ], "bg": 2973, "rotates": true }, + { "id": [ "abandonedwarehouse_3" ], "fg": [ 26, 25, 27, 28 ], "bg": 2970, "rotates": true }, + { "id": [ "abandonedwarehouse_3_roof" ], "fg": [ 30, 29, 31, 32 ], "bg": 2973, "rotates": true }, + { "id": [ "abandonedwarehouse_4" ], "fg": [ 34, 33, 35, 36 ], "bg": 2970, "rotates": true }, + { "id": [ "abandonedwarehouse_4_roof" ], "fg": [ 38, 37, 39, 40 ], "bg": 2973, "rotates": true }, + { "id": [ "abstorefront" ], "fg": [ 42, 41, 43, 44 ], "bg": 2970, "rotates": true }, + { "id": [ "abstorefront_roof" ], "fg": [ 46, 45, 47, 48 ], "bg": 2973, "rotates": true }, + { "id": [ "abstorefront_1" ], "fg": [ 50, 49, 51, 52 ], "bg": 2970, "rotates": true }, + { "id": [ "abstorefront_roof_1" ], "fg": [ 54, 53, 55, 56 ], "bg": 2973, "rotates": true }, + { "id": [ "abstorefront_2" ], "fg": [ 58, 57, 59, 60 ], "bg": 2970, "rotates": true }, + { "id": [ "abstorefront_roof_2" ], "fg": [ 62, 61, 63, 64 ], "bg": 2973, "rotates": true }, + { "id": [ "dirt_road" ], "fg": [ 70, 69 ], "bg": 2970, "rotates": true }, + { "id": [ "dirt_road_3way" ], "fg": [ 72, 71, 73, 74 ], "bg": 2970, "rotates": true }, + { "id": [ "dirt_road_turn" ], "fg": [ 65, 67, 68, 66 ], "bg": 2970, "rotates": true }, + { "id": [ "dirt_road_turn1" ], "fg": [ 66, 65, 67, 68 ], "bg": 2970, "rotates": true }, + { "id": [ "dirt_road_forest" ], "fg": [ 70, 69 ], "bg": 2971, "rotates": true }, + { "id": [ "dirt_road_3way_forest" ], "fg": [ 72, 71, 73, 74 ], "bg": 2971, "rotates": true }, + { "id": [ "dirt_road_turn_forest" ], "fg": [ 65, 67, 68, 66 ], "bg": 2971, "rotates": true }, + { "id": [ "dirt_road_turn1_forest" ], "fg": [ 66, 65, 67, 68 ], "bg": 2971, "rotates": true }, + { "id": [ "rural_road" ], "fg": [ 80, 79 ], "bg": 2970, "rotates": true }, + { "id": [ "rural_road_3way" ], "fg": [ 82, 81, 83, 84 ], "bg": 2970, "rotates": true }, + { "id": [ "rural_road_turn" ], "fg": [ 75, 77, 78, 76 ], "bg": 2970, "rotates": true }, + { "id": [ "rural_road_turn1" ], "fg": [ 76, 75, 77, 78 ], "bg": 2970, "rotates": true }, + { "id": [ "rural_road_forest" ], "fg": [ 80, 79 ], "bg": 2971, "rotates": true }, + { "id": [ "rural_road_3way_forest" ], "fg": [ 82, 81, 83, 84 ], "bg": 2971, "rotates": true }, + { "id": [ "rural_road_turn_forest" ], "fg": [ 75, 77, 78, 76 ], "bg": 2971, "rotates": true }, + { "id": [ "rural_road_turn1_forest" ], "fg": [ 76, 75, 77, 78 ], "bg": 2971, "rotates": true }, + { "id": [ "subway_ew", "lab_subway_ew" ], "fg": 89, "bg": 2975, "rotates": true }, + { "id": [ "subway_ns", "lab_subway_ns" ], "fg": 90, "bg": 2975, "rotates": true }, + { "id": [ "subway_nsw", "lab_subway_nsw" ], "fg": 98, "bg": 2975, "rotates": true }, + { "id": [ "subway_nes", "lab_subway_nes" ], "fg": 95, "bg": 2975, "rotates": true }, + { "id": [ "subway_esw", "lab_subway_esw" ], "fg": 96, "bg": 2975, "rotates": true }, + { "id": [ "subway_new", "lab_subway_new" ], "fg": 97, "bg": 2975, "rotates": true }, + { "id": [ "subway_sw", "lab_subway_sw" ], "fg": 88, "bg": 2975, "rotates": true }, + { "id": [ "subway_se", "lab_subway_se" ], "fg": 87, "bg": 2975, "rotates": true }, + { "id": [ "subway_nw", "lab_subway_nw" ], "fg": 86, "bg": 2975, "rotates": true }, + { "id": [ "subway_ne", "lab_subway_ne" ], "fg": 85, "bg": 2975, "rotates": true }, + { "id": [ "subway_end", "lab_subway_end" ], "fg": [ 92, 91, 93, 94 ], "bg": 2975, "rotates": true }, + { "id": [ "animalpound" ], "fg": [ 100, 99, 101, 102 ], "bg": 2970, "rotates": true }, + { "id": [ "animalpound_roof" ], "fg": [ 104, 103, 105, 106 ], "bg": 2973, "rotates": true }, + { "id": [ "animalshelter" ], "fg": [ 108, 107, 109, 110 ], "bg": 2970, "rotates": true }, + { "id": [ "animalshelter_roof" ], "fg": [ 112, 111, 113, 114 ], "bg": 2973, "rotates": true }, + { "id": [ "art_gallery" ], "fg": [ 116, 115, 117, 118 ], "bg": 2970, "rotates": true }, + { "id": [ "art_gallery_roof" ], "fg": [ 120, 119, 121, 122 ], "bg": 2973, "rotates": true }, + { "id": [ "bakery" ], "fg": [ 124, 123, 125, 126 ], "rotates": true }, + { "id": [ "bakery_roof" ], "fg": [ 128, 127, 129, 130 ], "bg": 2973, "rotates": true }, + { "id": [ "bakery_upper_roof" ], "fg": [ 132, 131, 133, 134 ], "bg": 2973, "rotates": true }, + { "id": [ "bank" ], "fg": [ 136, 135, 137, 138 ], "bg": 2970, "rotates": true }, + { "id": [ "bank_roof" ], "fg": [ 140, 139, 141, 142 ], "bg": 2973, "rotates": true }, + { "id": [ "bank_1" ], "fg": [ 144, 143, 145, 146 ], "bg": 2970, "rotates": true }, + { "id": [ "bank_roof_1" ], "fg": [ 148, 147, 149, 150 ], "bg": 2973, "rotates": true }, + { "id": [ "bar" ], "fg": [ 152, 151, 153, 154 ], "rotates": true }, + { "id": [ "bar_roof" ], "fg": [ 156, 155, 157, 158 ], "bg": 2973, "rotates": true }, + { "id": [ "bar_1" ], "fg": [ 160, 159, 161, 162 ], "rotates": true }, + { "id": [ "bar_roof_1" ], "fg": [ 164, 163, 165, 166 ], "bg": 2973, "rotates": true }, + { "id": [ "s_baseballfield_a1" ], "fg": [ 168, 167, 169, 170 ], "bg": 2970, "rotates": true }, + { "id": [ "s_baseballfield_a2" ], "fg": [ 172, 171, 173, 174 ], "bg": 2970, "rotates": true }, + { "id": [ "s_baseballfield_b1" ], "fg": [ 176, 175, 177, 178 ], "bg": 2970, "rotates": true }, + { "id": [ "s_baseballfield_b2" ], "fg": [ 180, 179, 181, 182 ], "bg": 2970, "rotates": true }, + { "id": [ "s_bookstore" ], "fg": [ 184, 183, 185, 186 ], "rotates": true }, + { "id": [ "s_bookstore_roof" ], "fg": [ 188, 187, 189, 190 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bookstore_upper_roof" ], "fg": [ 192, 191, 193, 194 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bookstore_1" ], "fg": [ 196, 195, 197, 198 ], "rotates": true }, + { "id": [ "s_bookstore_roof_1" ], "fg": [ 200, 199, 201, 202 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bookstore_upper_roof_1" ], "fg": [ 204, 203, 205, 206 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bookstore_2" ], "fg": [ 208, 207, 209, 210 ], "rotates": true }, + { "id": [ "s_bookstore_roof_2" ], "fg": [ 212, 211, 213, 214 ], "bg": 2973, "rotates": true }, + { "id": [ "s_library" ], "fg": [ 216, 215, 217, 218 ], "rotates": true }, + { "id": [ "s_library_roof" ], "fg": [ 220, 219, 221, 222 ], "bg": 2973, "rotates": true }, + { "id": [ "s_library_1" ], "fg": [ 224, 223, 225, 226 ], "rotates": true }, + { "id": [ "s_library_roof_1" ], "fg": [ 228, 227, 229, 230 ], "bg": 2973, "rotates": true }, + { "id": [ "s_library_2" ], "fg": [ 232, 231, 233, 234 ], "rotates": true }, + { "id": [ "s_library_roof_2" ], "fg": [ 236, 235, 237, 238 ], "bg": 2973, "rotates": true }, + { "id": [ "bowling_alley" ], "fg": [ 240, 239, 241, 242 ], "bg": 2970, "rotates": true }, + { "id": [ "bowling_alley_roof" ], "fg": [ 244, 243, 245, 246 ], "bg": 2973, "rotates": true }, + { "id": [ "s_camping" ], "fg": [ 248, 247, 249, 250 ], "rotates": true }, + { "id": [ "s_camping_roof" ], "fg": [ 252, 251, 253, 254 ], "bg": 2973, "rotates": true }, + { "id": [ "candy_shop" ], "fg": [ 256, 255, 257, 258 ], "rotates": true }, + { "id": [ "candy_shop_roof" ], "fg": [ 260, 259, 261, 262 ], "bg": 2973, "rotates": true }, + { "id": [ "candy_shop_1" ], "fg": [ 264, 263, 265, 266 ], "rotates": true }, + { "id": [ "candy_shop_roof_1" ], "fg": [ 268, 267, 269, 270 ], "bg": 2973, "rotates": true }, + { "id": [ "cemetery_small" ], "fg": [ 272, 271, 273, 274 ], "bg": 2970, "rotates": true }, + { "id": [ "church" ], "fg": [ 276, 275, 277, 278 ], "bg": 2970, "rotates": true }, + { "id": [ "church_roof" ], "fg": [ 280, 279, 281, 282 ], "bg": 2973, "rotates": true }, + { "id": [ "church_steeple" ], "fg": [ 284, 283, 285, 286 ], "bg": 2973, "rotates": true }, + { "id": [ "church_steeple_end" ], "fg": [ 288, 287, 289, 290 ], "bg": 2973, "rotates": true }, + { "id": [ "church_steeple_roof" ], "fg": [ 292, 291, 293, 294 ], "bg": 2973, "rotates": true }, + { "id": [ "church_1" ], "fg": [ 296, 295, 297, 298 ], "bg": 2970, "rotates": true }, + { "id": [ "church_2ndfloor_1" ], "fg": [ 300, 299, 301, 302 ], "bg": 2973, "rotates": true }, + { "id": [ "church_3rdfloor_1" ], "fg": [ 304, 303, 305, 306 ], "bg": 2973, "rotates": true }, + { "id": [ "church_roof_1" ], "fg": [ 308, 307, 309, 310 ], "bg": 2973, "rotates": true }, + { "id": [ "crater_core", "crater" ], "fg": [ 312, 311, 313, 314 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_car_dealership" ], "fg": [ 316, 315, 317, 318 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_car_dealership_roof" ], "fg": [ 320, 319, 321, 322 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_car_showroom" ], "fg": [ 328, 327, 329, 330 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_car_showroom_2ndfloor" ], "fg": [ 324, 323, 325, 326 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_car_showroom_roof" ], "fg": [ 332, 331, 333, 334 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_city_dump_small" ], "fg": [ 336, 335, 337, 338 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_gardening_allotment" ], "fg": [ 340, 339, 341, 342 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_gardening_allotment_roof" ], "fg": [ 344, 343, 345, 346 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_internet_cafe" ], "fg": [ 348, 347, 349, 350 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_internet_cafe_roof" ], "fg": [ 352, 351, 353, 354 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_internet_cafe_upper_roof" ], "fg": [ 356, 355, 357, 358 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_market_small" ], "fg": [ 360, 359, 361, 362 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_open_sewer" ], "fg": [ 364, 363, 365, 366 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_private_park" ], "fg": [ 368, 367, 369, 370 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_private_park_roof" ], "fg": [ 372, 371, 373, 374 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_public_art_piece" ], "fg": [ 376, 375, 377, 378 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_public_space" ], "fg": [ 380, 379, 381, 382 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_sex_shop" ], "fg": [ 384, 383, 385, 386 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_sex_shop_roof" ], "fg": [ 388, 387, 389, 390 ], "bg": 2973, "rotates": true }, + { "id": [ "cs_tire_shop" ], "fg": [ 392, 391, 393, 394 ], "bg": 2970, "rotates": true }, + { "id": [ "cs_tire_shop_roof" ], "fg": [ 396, 395, 397, 398 ], "bg": 2973, "rotates": true }, + { "id": [ "dispensary" ], "fg": [ 400, 399, 401, 402 ], "bg": 2970, "rotates": true }, + { "id": [ "dispensary_roof" ], "fg": [ 404, 403, 405, 406 ], "bg": 2973, "rotates": true }, + { "id": [ "dispensary_1" ], "fg": [ 408, 407, 409, 410 ], "bg": 2970, "rotates": true }, + { "id": [ "dispensary_roof_1" ], "fg": [ 412, 411, 413, 414 ], "bg": 2973, "rotates": true }, + { "id": [ "dispensary_2" ], "fg": [ 416, 415, 417, 418 ], "bg": 2970, "rotates": true }, + { "id": [ "dispensary_roof_2" ], "fg": [ 420, 419, 421, 422 ], "bg": 2973, "rotates": true }, + { "id": [ "dojo" ], "fg": [ 424, 423, 425, 426 ], "rotates": true }, + { "id": [ "dojo_roof" ], "fg": [ 428, 427, 429, 430 ], "bg": 2973, "rotates": true }, + { "id": [ "dojo_upper_roof" ], "fg": [ 432, 431, 433, 434 ], "bg": 2973, "rotates": true }, + { "id": [ "dojo_1" ], "fg": [ 436, 435, 437, 438 ], "rotates": true }, + { "id": [ "dojo_roof_1" ], "fg": [ 440, 439, 441, 442 ], "bg": 2973, "rotates": true }, + { "id": [ "dojo_upper_roof_1" ], "fg": [ 444, 443, 445, 446 ], "bg": 2973, "rotates": true }, + { "id": [ "dollarstore" ], "fg": [ 448, 447, 449, 450 ], "bg": 2970, "rotates": true }, + { "id": [ "dollarstore_roof" ], "fg": [ 452, 451, 453, 454 ], "bg": 2973, "rotates": true }, + { "id": [ "dollarstore_1" ], "fg": [ 456, 455, 457, 458 ], "bg": 2970, "rotates": true }, + { "id": [ "dollarstore_roof_1" ], "fg": [ 460, 459, 461, 462 ], "bg": 2973, "rotates": true }, + { "id": [ "dump" ], "fg": [ 464, 463, 465, 466 ], "bg": 2970, "rotates": true }, + { "id": [ "dumpsite" ], "fg": 467, "bg": 2971, "rotates": true }, + { "id": [ "emptycommerciallot" ], "fg": 468, "bg": 2970, "rotates": true }, + { "id": [ "emptyresidentiallot" ], "fg": 469, "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_straight_h" ], "fg": [ 479, 478, 480, 481 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_straight_v" ], "fg": [ 487, 486, 488, 489 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_straight_v_open" ], "fg": [ 491, 490, 492, 493 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_straight_h_open" ], "fg": [ 483, 482, 484, 485 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_turn_h_open" ], "fg": [ 499, 498, 500, 501 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_turn_v_open" ], "fg": [ 511, 510, 512, 513 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_m" ], "fg": [ 471, 470, 472, 473 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_m1" ], "fg": [ 475, 474, 476, 477 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_turn_h" ], "fg": [ 495, 494, 496, 497 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_turn_uni" ], "fg": [ 503, 502, 504, 505 ], "bg": 2970, "rotates": true }, + { "id": [ "farm_lot_wire_turn_v" ], "fg": [ 507, 506, 508, 509 ], "bg": 2970, "rotates": true }, + { "id": [ "fire_station" ], "fg": [ 515, 514, 516, 517 ], "bg": 2970, "rotates": true }, + { "id": [ "fire_station_roof" ], "fg": [ 519, 518, 520, 521 ], "bg": 2973, "rotates": true }, + { "id": [ "fire_station_1" ], "fg": [ 523, 522, 524, 525 ], "bg": 2970, "rotates": true }, + { "id": [ "fire_station_roof_1" ], "fg": [ 527, 526, 528, 529 ], "bg": 2973, "rotates": true }, + { "id": [ "gym_fitness" ], "fg": [ 531, 530, 532, 533 ], "rotates": true }, + { "id": [ "gym_fitness_roof" ], "fg": [ 535, 534, 536, 537 ], "bg": 2973, "rotates": true }, + { "id": [ "gym_fitness_1" ], "fg": [ 539, 538, 540, 541 ], "rotates": true }, + { "id": [ "gym_fitness_2ndFloor_1" ], "fg": [ 543, 542, 544, 545 ], "bg": 2973, "rotates": true }, + { "id": [ "gym_fitness_roof_1" ], "fg": [ 547, 546, 548, 549 ], "bg": 2973, "rotates": true }, + { "id": [ "furniture" ], "fg": [ 551, 550, 552, 553 ], "bg": 2970, "rotates": true }, + { "id": [ "furniture_roof" ], "fg": [ 555, 554, 556, 557 ], "bg": 2973, "rotates": true }, + { "id": [ "furniture_upper_roof" ], "fg": [ 559, 558, 560, 561 ], "bg": 2973, "rotates": true }, + { "id": [ "gambling_hall" ], "fg": [ 563, 562, 564, 565 ], "bg": 2970, "rotates": true }, + { "id": [ "gambling_hall_roof" ], "fg": [ 567, 566, 568, 569 ], "bg": 2973, "rotates": true }, + { "id": [ "gambling_hall_upper_roof" ], "fg": [ 571, 570, 572, 573 ], "bg": 2973, "rotates": true }, + { "id": [ "gambling_hall_1" ], "fg": [ 575, 574, 576, 577 ], "bg": 2970, "rotates": true }, + { "id": [ "gambling_hall_roof_1" ], "fg": [ 579, 578, 580, 581 ], "bg": 2973, "rotates": true }, + { "id": [ "garage_gas_1" ], "fg": [ 583, 582, 584, 585 ], "bg": 2970, "rotates": true }, + { "id": [ "garage_gas_2" ], "fg": [ 587, 586, 588, 589 ], "bg": 2970, "rotates": true }, + { "id": [ "garage_gas_3" ], "fg": [ 591, 590, 592, 593 ], "bg": 2970, "rotates": true }, + { "id": [ "garage_gas_roof_1" ], "fg": [ 595, 594, 596, 597 ], "bg": 2973, "rotates": true }, + { "id": [ "garage_gas_roof_2" ], "fg": [ 599, 598, 600, 601 ], "bg": 2973, "rotates": true }, + { "id": [ "garage_gas_roof_3" ], "fg": [ 603, 602, 604, 605 ], "bg": 2973, "rotates": true }, + { "id": [ "craft_shop" ], "fg": [ 607, 606, 608, 609 ], "bg": 2970, "rotates": true }, + { "id": [ "craft_shop_roof" ], "fg": [ 611, 610, 612, 613 ], "bg": 2973, "rotates": true }, + { "id": [ "craft_shop_upper_roof" ], "fg": [ 615, 614, 616, 617 ], "bg": 2973, "rotates": true }, + { "id": [ "gym" ], "fg": [ 619, 618, 620, 621 ], "rotates": true }, + { "id": [ "gym_roof" ], "fg": [ 623, 622, 624, 625 ], "bg": 2973, "rotates": true }, + { "id": [ "gym_upper_roof" ], "fg": [ 627, 626, 628, 629 ], "bg": 2973, "rotates": true }, + { "id": [ "headshop" ], "fg": [ 631, 630, 632, 633 ], "bg": 2970, "rotates": true }, + { "id": [ "headshop_roof" ], "fg": [ 635, 634, 636, 637 ], "bg": 2973, "rotates": true }, + { "id": [ "headshop_upper_roof" ], "fg": [ 639, 638, 640, 641 ], "bg": 2973, "rotates": true }, + { "id": [ "home_improvement" ], "fg": [ 643, 642, 644, 645 ], "bg": 2970, "rotates": true }, + { "id": [ "home_improvement_roof" ], "fg": [ 647, 646, 648, 649 ], "bg": 2973, "rotates": true }, + { "id": [ "house_01" ], "fg": [ 691, 690, 692, 693 ], "bg": 2970, "rotates": true }, + { "id": [ "house_01_roof" ], "fg": [ 695, 694, 696, 697 ], "bg": 2973, "rotates": true }, + { "id": [ "house_02" ], "fg": [ 699, 698, 700, 701 ], "bg": 2970, "rotates": true }, + { "id": [ "house_02_roof" ], "fg": [ 703, 702, 704, 705 ], "bg": 2973, "rotates": true }, + { "id": [ "house_03" ], "fg": [ 707, 706, 708, 709 ], "bg": 2970, "rotates": true }, + { "id": [ "house_03_roof" ], "fg": [ 711, 710, 712, 713 ], "bg": 2973, "rotates": true }, + { "id": [ "house_04" ], "fg": [ 715, 714, 716, 717 ], "bg": 2970, "rotates": true }, + { "id": [ "house_04_roof" ], "fg": [ 723, 722, 724, 725 ], "bg": 2973, "rotates": true }, + { "id": [ "house_04_basement" ], "fg": [ 719, 718, 720, 721 ], "bg": 2974, "rotates": true }, + { "id": [ "house_05ab" ], "fg": [ 735, 734, 736, 737 ], "bg": 2970, "rotates": true }, + { "id": [ "house_05ab_basement" ], "fg": [ 739, 738, 740, 741 ], "bg": 2974, "rotates": true }, + { "id": [ "house_05" ], "fg": [ 727, 726, 728, 729 ], "bg": 2970, "rotates": true }, + { "id": [ "house_05_basement" ], "fg": [ 731, 730, 732, 733 ], "bg": 2974, "rotates": true }, + { "id": [ "house_06" ], "fg": [ 743, 742, 744, 745 ], "bg": 2970, "rotates": true }, + { "id": [ "house_07" ], "fg": [ 747, 746, 748, 749 ], "bg": 2970, "rotates": true }, + { "id": [ "house_08" ], "fg": [ 751, 750, 752, 753 ], "bg": 2970, "rotates": true }, + { "id": [ "house_08_roof" ], "fg": [ 759, 758, 760, 761 ], "bg": 2973, "rotates": true }, + { "id": [ "house_08_basement" ], "fg": [ 755, 754, 756, 757 ], "bg": 2974, "rotates": true }, + { "id": [ "house_09" ], "fg": [ 763, 762, 764, 765 ], "bg": 2970, "rotates": true }, + { "id": [ "house_09_roof" ], "fg": [ 771, 770, 772, 773 ], "bg": 2973, "rotates": true }, + { + "id": [ "basement_bionic", "basement_bionic_decoy" ], + "fg": [ 767, 766, 768, 769 ], + "bg": 2974, + "rotates": true + }, + { "id": [ "house_10" ], "fg": [ 775, 774, 776, 777 ], "bg": 2970, "rotates": true }, + { "id": [ "house_10_roof" ], "fg": [ 783, 782, 784, 785 ], "bg": 2973, "rotates": true }, + { "id": [ "house_10_basement" ], "fg": [ 779, 778, 780, 781 ], "bg": 2974, "rotates": true }, + { "id": [ "house_11" ], "fg": [ 787, 786, 788, 789 ], "bg": 2970, "rotates": true }, + { "id": [ "house_11_roof" ], "fg": [ 795, 794, 796, 797 ], "bg": 2973, "rotates": true }, + { "id": [ "house_11_basement" ], "fg": [ 791, 790, 792, 793 ], "bg": 2974, "rotates": true }, + { "id": [ "house_12" ], "fg": [ 799, 798, 800, 801 ], "bg": 2970, "rotates": true }, + { "id": [ "house_12_roof" ], "fg": [ 807, 806, 808, 809 ], "bg": 2973, "rotates": true }, + { "id": [ "house_12_basement" ], "fg": [ 803, 802, 804, 805 ], "bg": 2974, "rotates": true }, + { "id": [ "house_dogs" ], "fg": [ 1276, 1275, 1277, 1278 ], "bg": 2970, "rotates": true }, + { "id": [ "house_dogs_roof" ], "fg": [ 1280, 1279, 1281, 1282 ], "bg": 2973, "rotates": true }, + { "id": [ "2storyModern01_first" ], "fg": [ 651, 650, 652, 653 ], "bg": 2970, "rotates": true }, + { "id": [ "2storyModern01_second" ], "fg": [ 658, 663, 664, 665 ], "bg": 2973, "rotates": true }, + { "id": [ "2storyModern01_roof" ], "fg": [ 655, 654, 656, 657 ], "bg": 2973, "rotates": true }, + { "id": [ "2storyModern01_basement" ], "fg": [ 660, 659, 661, 662 ], "bg": 2974, "rotates": true }, + { "id": [ "duplex" ], "fg": [ 667, 666, 668, 669 ], "bg": 2970, "rotates": true }, + { "id": [ "duplex_roof" ], "fg": [ 671, 670, 672, 673 ], "bg": 2973, "rotates": true }, + { "id": [ "garden_house_1_floor_1" ], "fg": [ 679, 678, 680, 681 ], "bg": 2970, "rotates": true }, + { "id": [ "garden_house_1_floor_2" ], "fg": [ 683, 682, 684, 685 ], "bg": 2973, "rotates": true }, + { "id": [ "garden_house_1_basement" ], "fg": [ 675, 674, 676, 677 ], "bg": 2974, "rotates": true }, + { "id": [ "garden_house_1_roof" ], "fg": [ 687, 686, 688, 689 ], "bg": 2973, "rotates": true }, + { "id": [ "house_13" ], "fg": [ 811, 810, 812, 813 ], "bg": 2970, "rotates": true }, + { "id": [ "house_13_roof" ], "fg": [ 819, 818, 820, 821 ], "bg": 2973, "rotates": true }, + { "id": [ "house_13_basement" ], "fg": [ 815, 814, 816, 817 ], "bg": 2974, "rotates": true }, + { "id": [ "house_14" ], "fg": [ 823, 822, 824, 825 ], "bg": 2970, "rotates": true }, + { "id": [ "house_14_roof" ], "fg": [ 831, 830, 832, 833 ], "bg": 2973, "rotates": true }, + { "id": [ "house_14_basement" ], "fg": [ 827, 826, 828, 829 ], "bg": 2974, "rotates": true }, + { "id": [ "house_15" ], "fg": [ 835, 834, 836, 837 ], "bg": 2970, "rotates": true }, + { "id": [ "house_15_roof" ], "fg": [ 843, 842, 844, 845 ], "bg": 2973, "rotates": true }, + { "id": [ "house_15_basement" ], "fg": [ 839, 838, 840, 841 ], "bg": 2974, "rotates": true }, + { "id": [ "house_16" ], "fg": [ 847, 846, 848, 849 ], "bg": 2970, "rotates": true }, + { "id": [ "house_16_roof" ], "fg": [ 855, 854, 856, 857 ], "bg": 2973, "rotates": true }, + { "id": [ "house_16_basement" ], "fg": [ 851, 850, 852, 853 ], "bg": 2974, "rotates": true }, + { "id": [ "house_17" ], "fg": [ 859, 858, 860, 861 ], "bg": 2970, "rotates": true }, + { "id": [ "house_17_roof" ], "fg": [ 867, 866, 868, 869 ], "bg": 2973, "rotates": true }, + { "id": [ "house_17_basement" ], "fg": [ 863, 862, 864, 865 ], "bg": 2974, "rotates": true }, + { "id": [ "house_18" ], "fg": [ 871, 870, 872, 873 ], "bg": 2970, "rotates": true }, + { "id": [ "house_18_roof" ], "fg": [ 875, 874, 876, 877 ], "bg": 2973, "rotates": true }, + { "id": [ "house_19" ], "fg": [ 879, 878, 880, 881 ], "bg": 2970, "rotates": true }, + { "id": [ "house_19_roof" ], "fg": [ 887, 886, 888, 889 ], "bg": 2973, "rotates": true }, + { "id": [ "house_19_basement" ], "fg": [ 883, 882, 884, 885 ], "bg": 2974, "rotates": true }, + { "id": [ "house_20" ], "fg": [ 891, 890, 892, 893 ], "bg": 2970, "rotates": true }, + { "id": [ "house_20_roof" ], "fg": [ 895, 894, 896, 897 ], "bg": 2973, "rotates": true }, + { "id": [ "house_21" ], "fg": [ 899, 898, 900, 901 ], "bg": 2970, "rotates": true }, + { "id": [ "house_21_roof" ], "fg": [ 903, 902, 904, 905 ], "bg": 2973, "rotates": true }, + { "id": [ "house_22" ], "fg": [ 907, 906, 908, 909 ], "bg": 2970, "rotates": true }, + { "id": [ "house_22_roof" ], "fg": [ 915, 914, 916, 917 ], "bg": 2973, "rotates": true }, + { "id": [ "house_22_basement" ], "fg": [ 911, 910, 912, 913 ], "bg": 2974, "rotates": true }, + { "id": [ "house_23" ], "fg": [ 919, 918, 920, 921 ], "bg": 2970, "rotates": true }, + { "id": [ "house_23_roof" ], "fg": [ 923, 922, 924, 925 ], "bg": 2973, "rotates": true }, + { "id": [ "house_24" ], "fg": [ 927, 926, 928, 929 ], "bg": 2970, "rotates": true }, + { "id": [ "house_24_roof" ], "fg": [ 931, 930, 932, 933 ], "bg": 2973, "rotates": true }, + { "id": [ "house_25" ], "fg": [ 935, 934, 936, 937 ], "bg": 2970, "rotates": true }, + { "id": [ "house_25_roof" ], "fg": [ 939, 938, 940, 941 ], "bg": 2973, "rotates": true }, + { "id": [ "house_26" ], "fg": [ 943, 942, 944, 945 ], "bg": 2970, "rotates": true }, + { "id": [ "house_26_roof" ], "fg": [ 951, 950, 952, 953 ], "bg": 2973, "rotates": true }, + { "id": [ "basement_survival" ], "fg": [ 947, 946, 948, 949 ], "bg": 2974, "rotates": true }, + { "id": [ "house_27" ], "fg": [ 955, 954, 956, 957 ], "bg": 2970, "rotates": true }, + { "id": [ "house_27_roof" ], "fg": [ 963, 962, 964, 965 ], "bg": 2973, "rotates": true }, + { "id": [ "basement_meth" ], "fg": [ 959, 958, 960, 961 ], "bg": 2974, "rotates": true }, + { "id": [ "house_28" ], "fg": [ 967, 966, 968, 969 ], "bg": 2970, "rotates": true }, + { "id": [ "house_28_roof" ], "fg": [ 975, 974, 976, 977 ], "bg": 2973, "rotates": true }, + { "id": [ "basement_weed" ], "fg": [ 971, 970, 972, 973 ], "bg": 2974, "rotates": true }, + { "id": [ "house_29" ], "fg": [ 979, 978, 980, 981 ], "bg": 2970, "rotates": true }, + { "id": [ "house_29_roof" ], "fg": [ 987, 986, 988, 989 ], "bg": 2973, "rotates": true }, + { "id": [ "basement_chem" ], "fg": [ 983, 982, 984, 985 ], "bg": 2974, "rotates": true }, + { "id": [ "house_2story_base" ], "fg": [ 991, 990, 992, 993 ], "bg": 2970, "rotates": true }, + { "id": [ "house_2story_second" ], "fg": [ 1003, 1002, 1004, 1005 ], "bg": 2973, "rotates": true }, + { "id": [ "house_2story_basement" ], "fg": [ 995, 994, 996, 997 ], "bg": 2974, "rotates": true }, + { "id": [ "house_2story_roof" ], "fg": [ 999, 998, 1000, 1001 ], "bg": 2973, "rotates": true }, + { "id": [ "house_30" ], "fg": [ 1007, 1006, 1008, 1009 ], "bg": 2970, "rotates": true }, + { "id": [ "house_30_roof" ], "fg": [ 1015, 1014, 1016, 1017 ], "bg": 2973, "rotates": true }, + { "id": [ "basement_chem2" ], "fg": [ 1011, 1010, 1012, 1013 ], "bg": 2974, "rotates": true }, + { "id": [ "house_31" ], "fg": [ 1020, 1019, 1021, 1022 ], "bg": 2970, "rotates": true }, + { "id": [ "house_31_roof" ], "fg": [ 1024, 1023, 1025, 1026 ], "bg": 2973, "rotates": true }, + { "id": [ "basement" ], "fg": 1018, "bg": 2974, "rotates": true }, + { "id": [ "house_32" ], "fg": [ 1028, 1027, 1029, 1030 ], "bg": 2970, "rotates": true }, + { "id": [ "house_32_roof" ], "fg": [ 1032, 1031, 1033, 1034 ], "bg": 2973, "rotates": true }, + { "id": [ "house_33" ], "fg": [ 1036, 1035, 1037, 1038 ], "bg": 2970, "rotates": true }, + { "id": [ "house_33_roof" ], "fg": [ 1044, 1043, 1045, 1046 ], "bg": 2973, "rotates": true }, + { "id": [ "house_33_basement" ], "fg": [ 1040, 1039, 1041, 1042 ], "bg": 2974, "rotates": true }, + { "id": [ "house_34" ], "fg": [ 1048, 1047, 1049, 1050 ], "bg": 2970, "rotates": true }, + { "id": [ "house_34_roof" ], "fg": [ 1056, 1055, 1057, 1058 ], "bg": 2973, "rotates": true }, + { "id": [ "house_34_basement" ], "fg": [ 1052, 1051, 1053, 1054 ], "bg": 2974, "rotates": true }, + { "id": [ "house_35" ], "fg": [ 1060, 1059, 1061, 1062 ], "bg": 2970, "rotates": true }, + { "id": [ "house_35_roof" ], "fg": [ 1064, 1063, 1065, 1066 ], "bg": 2973, "rotates": true }, + { "id": [ "house_36" ], "fg": [ 1068, 1067, 1069, 1070 ], "bg": 2970, "rotates": true }, + { "id": [ "house_36_roof" ], "fg": [ 1076, 1075, 1077, 1078 ], "bg": 2973, "rotates": true }, + { "id": [ "house_36_basement" ], "fg": [ 1072, 1071, 1073, 1074 ], "bg": 2974, "rotates": true }, + { "id": [ "house_37" ], "fg": [ 1080, 1079, 1081, 1082 ], "bg": 2970, "rotates": true }, + { "id": [ "house_37_roof" ], "fg": [ 1088, 1087, 1089, 1090 ], "bg": 2973, "rotates": true }, + { "id": [ "house_37_basement" ], "fg": [ 1084, 1083, 1085, 1086 ], "bg": 2974, "rotates": true }, + { "id": [ "house_38" ], "fg": [ 1092, 1091, 1093, 1094 ], "bg": 2970, "rotates": true }, + { "id": [ "house_38_roof" ], "fg": [ 1096, 1095, 1097, 1098 ], "bg": 2973, "rotates": true }, + { "id": [ "house_39" ], "fg": [ 1100, 1099, 1101, 1102 ], "bg": 2970, "rotates": true }, + { "id": [ "house_39_roof" ], "fg": [ 1108, 1107, 1109, 1110 ], "bg": 2973, "rotates": true }, + { "id": [ "house_39_basement" ], "fg": [ 1104, 1103, 1105, 1106 ], "bg": 2974, "rotates": true }, + { "id": [ "house_40" ], "fg": [ 1112, 1111, 1113, 1114 ], "bg": 2970, "rotates": true }, + { "id": [ "house_40_roof" ], "fg": [ 1116, 1115, 1117, 1118 ], "bg": 2973, "rotates": true }, + { "id": [ "house_41" ], "fg": [ 1120, 1119, 1121, 1122 ], "bg": 2970, "rotates": true }, + { "id": [ "house_41_roof" ], "fg": [ 1124, 1123, 1125, 1126 ], "bg": 2973, "rotates": true }, + { "id": [ "house_42" ], "fg": [ 1128, 1127, 1129, 1130 ], "bg": 2970, "rotates": true }, + { "id": [ "house_42_roof" ], "fg": [ 1132, 1131, 1133, 1134 ], "bg": 2973, "rotates": true }, + { "id": [ "house_crack1", "house_crack2" ], "fg": [ 1140, 1139, 1141, 1142 ], "bg": 2970, "rotates": true }, + { "id": [ "house_crack1_roof" ], "fg": [ 1144, 1143, 1145, 1146 ], "bg": 2973, "rotates": true }, + { "id": [ "basement_messed" ], "fg": [ 1136, 1135, 1137, 1138 ], "bg": 2974, "rotates": true }, + { "id": [ "house_crack3" ], "fg": [ 1148, 1147, 1149, 1150 ], "bg": 2970, "rotates": true }, + { "id": [ "house_crack3_roof" ], "fg": [ 1156, 1155, 1157, 1158 ], "bg": 2973, "rotates": true }, + { "id": [ "house_crack3_basement" ], "fg": [ 1152, 1151, 1153, 1154 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched1" ], "fg": [ 1160, 1159, 1161, 1162 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched1_roof" ], "fg": [ 1168, 1167, 1169, 1170 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched1_basement" ], "fg": [ 1164, 1163, 1165, 1166 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched10" ], "fg": [ 1172, 1171, 1173, 1174 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched10_roof" ], "fg": [ 1176, 1175, 1177, 1178 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched2" ], "fg": [ 1180, 1179, 1181, 1182 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched2_roof" ], "fg": [ 1188, 1187, 1189, 1190 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched2_basement" ], "fg": [ 1184, 1183, 1185, 1186 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched3" ], "fg": [ 1192, 1191, 1193, 1194 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched3_roof" ], "fg": [ 1200, 1199, 1201, 1202 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched3_basement" ], "fg": [ 1196, 1195, 1197, 1198 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched4" ], "fg": [ 1204, 1203, 1205, 1206 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched4_roof" ], "fg": [ 1212, 1211, 1213, 1214 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched4_basement" ], "fg": [ 1208, 1207, 1209, 1210 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched5" ], "fg": [ 1216, 1215, 1217, 1218 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched5_roof" ], "fg": [ 1224, 1223, 1225, 1226 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched5_basement" ], "fg": [ 1220, 1219, 1221, 1222 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched6" ], "fg": [ 1228, 1227, 1229, 1230 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched6_roof" ], "fg": [ 1236, 1235, 1237, 1238 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched6_basement" ], "fg": [ 1232, 1231, 1233, 1234 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched7" ], "fg": [ 1240, 1239, 1241, 1242 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched7_roof" ], "fg": [ 1248, 1247, 1249, 1250 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched7_basement" ], "fg": [ 1244, 1243, 1245, 1246 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched8" ], "fg": [ 1252, 1251, 1253, 1254 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched8_roof" ], "fg": [ 1260, 1259, 1261, 1262 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched8_basement" ], "fg": [ 1256, 1255, 1257, 1258 ], "bg": 2974, "rotates": true }, + { "id": [ "house_detatched9" ], "fg": [ 1264, 1263, 1265, 1266 ], "bg": 2970, "rotates": true }, + { "id": [ "house_detatched9_roof" ], "fg": [ 1272, 1271, 1273, 1274 ], "bg": 2973, "rotates": true }, + { "id": [ "house_detatched9_basement" ], "fg": [ 1268, 1267, 1269, 1270 ], "bg": 2974, "rotates": true }, + { "id": [ "house_duplex10" ], "fg": [ 1284, 1283, 1285, 1286 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex10_roof" ], "fg": [ 1288, 1287, 1289, 1290 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex11" ], "fg": [ 1292, 1291, 1293, 1294 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex11_roof" ], "fg": [ 1296, 1295, 1297, 1298 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex2" ], "fg": [ 1300, 1299, 1301, 1302 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex2_roof" ], "fg": [ 1304, 1303, 1305, 1306 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex3" ], "fg": [ 1308, 1307, 1309, 1310 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex3_roof" ], "fg": [ 1312, 1311, 1313, 1314 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex4" ], "fg": [ 1316, 1315, 1317, 1318 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex4_roof" ], "fg": [ 1320, 1319, 1321, 1322 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex5" ], "fg": [ 1324, 1323, 1325, 1326 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex5_roof" ], "fg": [ 1328, 1327, 1329, 1330 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex6" ], "fg": [ 1332, 1331, 1333, 1334 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex6_roof" ], "fg": [ 1336, 1335, 1337, 1338 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex7" ], "fg": [ 1340, 1339, 1341, 1342 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex7_roof" ], "fg": [ 1344, 1343, 1345, 1346 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex8" ], "fg": [ 1348, 1347, 1349, 1350 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex8_roof" ], "fg": [ 1352, 1351, 1353, 1354 ], "bg": 2973, "rotates": true }, + { "id": [ "house_duplex9" ], "fg": [ 1356, 1355, 1357, 1358 ], "bg": 2970, "rotates": true }, + { "id": [ "house_duplex9_roof" ], "fg": [ 1360, 1359, 1361, 1362 ], "bg": 2973, "rotates": true }, + { "id": [ "house_fortified" ], "fg": [ 1364, 1363, 1365, 1366 ], "bg": 2970, "rotates": true }, + { "id": [ "house_fortified_roof" ], "fg": [ 1372, 1371, 1373, 1374 ], "bg": 2973, "rotates": true }, + { "id": [ "house_fortified_basement" ], "fg": [ 1368, 1367, 1369, 1370 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage" ], "fg": [ 1376, 1375, 1377, 1378 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage_roof" ], "fg": [ 1384, 1383, 1385, 1386 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage_basement" ], "fg": [ 1380, 1379, 1381, 1382 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage2" ], "fg": [ 1388, 1387, 1389, 1390 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage2_roof" ], "fg": [ 1396, 1395, 1397, 1398 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage2_basement" ], "fg": [ 1392, 1391, 1393, 1394 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage3" ], "fg": [ 1400, 1399, 1401, 1402 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage3_roof" ], "fg": [ 1408, 1407, 1409, 1410 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage3_basement" ], "fg": [ 1404, 1403, 1405, 1406 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage4" ], "fg": [ 1412, 1411, 1413, 1414 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage4_roof" ], "fg": [ 1420, 1419, 1421, 1422 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage4_basement" ], "fg": [ 1416, 1415, 1417, 1418 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage5" ], "fg": [ 1424, 1423, 1425, 1426 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage5_roof" ], "fg": [ 1432, 1431, 1433, 1434 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage5_basement" ], "fg": [ 1428, 1427, 1429, 1430 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage6" ], "fg": [ 1436, 1435, 1437, 1438 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage6_roof" ], "fg": [ 1444, 1443, 1445, 1446 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage6_basement" ], "fg": [ 1440, 1439, 1441, 1442 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage7" ], "fg": [ 1448, 1447, 1449, 1450 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage7_roof" ], "fg": [ 1456, 1455, 1457, 1458 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage7_basement" ], "fg": [ 1452, 1451, 1453, 1454 ], "bg": 2974, "rotates": true }, + { "id": [ "house_garage8" ], "fg": [ 1460, 1459, 1461, 1462 ], "bg": 2970, "rotates": true }, + { "id": [ "house_garage8_roof" ], "fg": [ 1468, 1467, 1469, 1470 ], "bg": 2973, "rotates": true }, + { "id": [ "house_garage8_basement" ], "fg": [ 1464, 1463, 1465, 1466 ], "bg": 2974, "rotates": true }, + { "id": [ "house_gardener" ], "fg": [ 1472, 1471, 1473, 1474 ], "bg": 2970, "rotates": true }, + { "id": [ "house_gardener_roof" ], "fg": [ 1480, 1479, 1481, 1482 ], "bg": 2973, "rotates": true }, + { "id": [ "house_gardener_basement" ], "fg": [ 1476, 1475, 1477, 1478 ], "bg": 2974, "rotates": true }, + { "id": [ "house_inner_garden" ], "fg": [ 1484, 1483, 1485, 1486 ], "bg": 2970, "rotates": true }, + { "id": [ "house_inner_garden_roof" ], "fg": [ 1488, 1487, 1489, 1490 ], "bg": 2973, "rotates": true }, + { "id": [ "house_library" ], "fg": [ 1492, 1491, 1493, 1494 ], "bg": 2970, "rotates": true }, + { "id": [ "house_modern_1" ], "fg": [ 1496, 1495, 1497, 1498 ], "bg": 2970, "rotates": true }, + { "id": [ "house_modern_1_roof" ], "fg": [ 1504, 1503, 1505, 1506 ], "bg": 2973, "rotates": true }, + { "id": [ "house_modern_1_basement" ], "fg": [ 1500, 1499, 1501, 1502 ], "bg": 2974, "rotates": true }, + { "id": [ "house_patio" ], "fg": [ 1508, 1507, 1509, 1510 ], "bg": 2970, "rotates": true }, + { "id": [ "house_patio_roof" ], "fg": [ 1516, 1515, 1517, 1518 ], "bg": 2973, "rotates": true }, + { "id": [ "house_patio_basement" ], "fg": [ 1512, 1511, 1513, 1514 ], "bg": 2974, "rotates": true }, + { "id": [ "house_porch" ], "fg": [ 1520, 1519, 1521, 1522 ], "bg": 2970, "rotates": true }, + { "id": [ "house_porch_roof" ], "fg": [ 1528, 1527, 1529, 1530 ], "bg": 2973, "rotates": true }, + { "id": [ "house_porch_basement" ], "fg": [ 1524, 1523, 1525, 1526 ], "bg": 2974, "rotates": true }, + { "id": [ "house_prepper" ], "fg": [ 1532, 1531, 1533, 1534 ], "bg": 2970, "rotates": true }, + { "id": [ "house_prepper_basement" ], "fg": [ 1536, 1535, 1537, 1538 ], "bg": 2974, "rotates": true }, + { "id": [ "house_prepper2" ], "fg": [ 1540, 1539, 1541, 1542 ], "bg": 2970, "rotates": true }, + { "id": [ "house_prepper2_roof" ], "fg": [ 1548, 1547, 1549, 1550 ], "bg": 2973, "rotates": true }, + { "id": [ "house_prepper2_basement" ], "fg": [ 1544, 1543, 1545, 1546 ], "bg": 2974, "rotates": true }, + { "id": [ "house_quiverfull" ], "fg": [ 1552, 1551, 1553, 1554 ], "bg": 2970, "rotates": true }, + { "id": [ "house_rv" ], "fg": [ 1556, 1555, 1557, 1558 ], "bg": 2970, "rotates": true }, + { "id": [ "house_rv_roof" ], "fg": [ 1564, 1563, 1565, 1566 ], "bg": 2973, "rotates": true }, + { "id": [ "house_rv_basement" ], "fg": [ 1560, 1559, 1561, 1562 ], "bg": 2974, "rotates": true }, + { "id": [ "house_suicide" ], "fg": [ 1568, 1567, 1569, 1570 ], "bg": 2970, "rotates": true }, + { "id": [ "house_suicide_roof" ], "fg": [ 1572, 1571, 1573, 1574 ], "bg": 2973, "rotates": true }, + { "id": [ "house_toolshed" ], "fg": [ 1576, 1575, 1577, 1578 ], "bg": 2970, "rotates": true }, + { "id": [ "house_toolshed_roof" ], "fg": [ 1584, 1583, 1585, 1586 ], "bg": 2973, "rotates": true }, + { "id": [ "house_toolshed_basement" ], "fg": [ 1580, 1579, 1581, 1582 ], "bg": 2974, "rotates": true }, + { "id": [ "urban_8_1" ], "fg": [ 1588, 1587, 1589, 1590 ], "bg": 2970, "rotates": true }, + { "id": [ "urban_8_2" ], "fg": [ 1592, 1591, 1593, 1594 ], "bg": 2970, "rotates": true }, + { "id": [ "urban_8_3" ], "fg": [ 1596, 1595, 1597, 1598 ], "bg": 2973, "rotates": true }, + { "id": [ "urban_8_4" ], "fg": [ 1600, 1599, 1601, 1602 ], "bg": 2973, "rotates": true }, + { "id": [ "urban_8_6" ], "fg": [ 1604, 1603, 1605, 1606 ], "bg": 2973, "rotates": true }, + { "id": [ "house_vacant" ], "fg": [ 1608, 1607, 1609, 1610 ], "bg": 2970, "rotates": true }, + { "id": [ "house_vacant2" ], "fg": [ 1612, 1611, 1613, 1614 ], "bg": 2970, "rotates": true }, + { "id": [ "house_w_1" ], "fg": [ 1616, 1615, 1617, 1618 ], "bg": 2970, "rotates": true }, + { "id": [ "house_w_1_roof" ], "fg": [ 1624, 1623, 1625, 1626 ], "bg": 2973, "rotates": true }, + { "id": [ "house_w_1_basement" ], "fg": [ 1620, 1619, 1621, 1622 ], "bg": 2974, "rotates": true }, + { "id": [ "house_w_2" ], "fg": [ 1628, 1627, 1629, 1630 ], "bg": 2970, "rotates": true }, + { "id": [ "house_w_2_roof" ], "fg": [ 1636, 1635, 1637, 1638 ], "bg": 2973, "rotates": true }, + { "id": [ "house_w_2_basement" ], "fg": [ 1632, 1631, 1633, 1634 ], "bg": 2974, "rotates": true }, + { "id": [ "house_w_3" ], "fg": [ 1640, 1639, 1641, 1642 ], "bg": 2970, "rotates": true }, + { "id": [ "house_w_3_roof" ], "fg": [ 1648, 1647, 1649, 1650 ], "bg": 2973, "rotates": true }, + { "id": [ "house_w_3_basement" ], "fg": [ 1644, 1643, 1645, 1646 ], "bg": 2974, "rotates": true }, + { "id": [ "house_w_4" ], "fg": [ 1652, 1651, 1653, 1654 ], "bg": 2970, "rotates": true }, + { "id": [ "house_w_4_roof" ], "fg": [ 1660, 1659, 1661, 1662 ], "bg": 2973, "rotates": true }, + { "id": [ "house_w_4_basement" ], "fg": [ 1656, 1655, 1657, 1658 ], "bg": 2974, "rotates": true }, + { "id": [ "house_w_5" ], "fg": [ 1664, 1663, 1665, 1666 ], "bg": 2970, "rotates": true }, + { "id": [ "house_w_5_roof" ], "fg": [ 1672, 1671, 1673, 1674 ], "bg": 2973, "rotates": true }, + { "id": [ "house_w_5_basement" ], "fg": [ 1668, 1667, 1669, 1670 ], "bg": 2974, "rotates": true }, + { "id": [ "house_w_6" ], "fg": [ 1680, 1679, 1681, 1682 ], "bg": 2970, "rotates": true }, + { "id": [ "house_w_6_2ndfloor" ], "fg": [ 1676, 1675, 1677, 1678 ], "bg": 2973, "rotates": true }, + { "id": [ "house_w_6_roof" ], "fg": [ 1688, 1687, 1689, 1690 ], "bg": 2973, "rotates": true }, + { "id": [ "house_w_6_basement" ], "fg": [ 1684, 1683, 1685, 1686 ], "bg": 2974, "rotates": true }, + { "id": [ "house_wooded" ], "fg": [ 1692, 1691, 1693, 1694 ], "bg": 2970, "rotates": true }, + { "id": [ "house_roof" ], "fg": [ 1696, 1695, 1697, 1698 ], "bg": 2973, "rotates": true }, + { "id": [ "rural_house1" ], "fg": [ 1700, 1699, 1701, 1702 ], "bg": 2970, "rotates": true }, + { "id": [ "rural_house1_roof" ], "fg": [ 1704, 1703, 1705, 1706 ], "bg": 2973, "rotates": true }, + { "id": [ "rural_house2" ], "fg": [ 1708, 1707, 1709, 1710 ], "bg": 2970, "rotates": true }, + { "id": [ "rural_house2_roof" ], "fg": [ 1716, 1715, 1717, 1718 ], "bg": 2973, "rotates": true }, + { "id": [ "rural_house2_basement" ], "fg": [ 1712, 1711, 1713, 1714 ], "bg": 2974, "rotates": true }, + { "id": [ "icecream_shop" ], "fg": [ 1720, 1719, 1721, 1722 ], "rotates": true }, + { "id": [ "icecream_shop_roof" ], "fg": [ 1724, 1723, 1725, 1726 ], "bg": 2973, "rotates": true }, + { "id": [ "lancenter" ], "fg": [ 1728, 1727, 1729, 1730 ], "bg": 2970, "rotates": true }, + { "id": [ "lancenter_roof" ], "fg": [ 1732, 1731, 1733, 1734 ], "bg": 2973, "rotates": true }, + { "id": [ "lancenter_1" ], "fg": [ 1736, 1735, 1737, 1738 ], "bg": 2970, "rotates": true }, + { "id": [ "lancenter_roof_1" ], "fg": [ 1740, 1739, 1741, 1742 ], "bg": 2973, "rotates": true }, + { "id": [ "landscapingsupplyco_1a" ], "fg": [ 1744, 1743, 1745, 1746 ], "bg": 2970, "rotates": true }, + { "id": [ "landscapingsupplyco_1b" ], "fg": [ 1748, 1747, 1749, 1750 ], "bg": 2970, "rotates": true }, + { "id": [ "landscapingsupplyco_1b_roof" ], "fg": [ 1752, 1751, 1753, 1754 ], "bg": 2973, "rotates": true }, + { "id": [ "craft_shop_1" ], "fg": [ 1756, 1755, 1757, 1758 ], "bg": 2970, "rotates": true }, + { "id": [ "craft_shop_roof_1" ], "fg": [ 1760, 1759, 1761, 1762 ], "bg": 2973, "rotates": true }, + { "id": [ "mil_surplus" ], "fg": [ 1764, 1763, 1765, 1766 ], "bg": 2970, "rotates": true }, + { "id": [ "mil_surplus_roof" ], "fg": [ 1768, 1767, 1769, 1770 ], "bg": 2973, "rotates": true }, + { "id": [ "mil_surplus_1" ], "fg": [ 1772, 1771, 1773, 1774 ], "bg": 2970, "rotates": true }, + { "id": [ "mil_surplus_roof_1" ], "fg": [ 1776, 1775, 1777, 1778 ], "bg": 2973, "rotates": true }, + { "id": [ "mil_surplus_2" ], "fg": [ 1780, 1779, 1781, 1782 ], "bg": 2970, "rotates": true }, + { "id": [ "mil_surplus_roof_2" ], "fg": [ 1784, 1783, 1785, 1786 ], "bg": 2973, "rotates": true }, + { "id": "cursor", "fg": 1787, "rotates": false }, + { "id": "overmap_horde_3", "fg": 1788, "rotates": false }, + { "id": "overmap_horde_4", "fg": 1789, "rotates": false }, + { "id": "overmap_horde_5", "fg": 1790, "rotates": false }, + { "id": "overmap_horde_6", "fg": 1791, "rotates": false }, + { "id": "mission_arrow_down", "fg": 1792, "rotates": false }, + { "id": "mission_arrow_e", "fg": 1793, "rotates": false }, + { "id": "mission_arrow_n", "fg": 1794, "rotates": false }, + { "id": "mission_arrow_ne", "fg": 1795, "rotates": false }, + { "id": "mission_arrow_nw", "fg": 1796, "rotates": false }, + { "id": "mission_arrow_s", "fg": 1797, "rotates": false }, + { "id": "mission_arrow_se", "fg": 1798, "rotates": false }, + { "id": "mission_arrow_sw", "fg": 1799, "rotates": false }, + { "id": "mission_arrow_up", "fg": 1800, "rotates": false }, + { "id": "mission_arrow_w", "fg": 1801, "rotates": false }, + { "id": "mission_cursor", "fg": 1802, "rotates": false }, + { "id": "npc_female", "fg": 1803, "rotates": false }, + { "id": "npc_male", "fg": 1803, "rotates": false }, + { "id": "player_male", "fg": 1805, "rotates": false }, + { "id": "player_female", "fg": 1805, "rotates": false }, + { "id": "overmap_remembered_vehicle", "fg": 1804, "rotates": false }, + { "id": [ "unknown_map_extra" ], "fg": 1806, "rotates": true }, + { "id": [ "moonshine_still" ], "fg": [ 1808, 1807, 1809, 1810 ], "bg": 2971, "rotates": true }, + { "id": [ "moonshine_still_roof" ], "fg": [ 1812, 1811, 1813, 1814 ], "bg": 2973, "rotates": true }, + { "id": [ "moonshine_still_1" ], "fg": [ 1816, 1815, 1817, 1818 ], "bg": 2971, "rotates": true }, + { "id": [ "moonshine_still_roof_1" ], "fg": [ 1820, 1819, 1821, 1822 ], "bg": 2973, "rotates": true }, + { "id": [ "moonshine_still_2" ], "fg": [ 1824, 1823, 1825, 1826 ], "bg": 2971, "rotates": true }, + { "id": [ "moonshine_still_roof_2" ], "fg": [ 1828, 1827, 1829, 1830 ], "bg": 2973, "rotates": true }, + { "id": [ "mortuary" ], "fg": [ 1832, 1831, 1833, 1834 ], "bg": 2970, "rotates": true }, + { "id": [ "mortuary_roof" ], "fg": [ 1836, 1835, 1837, 1838 ], "bg": 2973, "rotates": true }, + { "id": [ "museum" ], "fg": [ 1840, 1839, 1841, 1842 ], "bg": 2970, "rotates": true }, + { "id": [ "museum_roof" ], "fg": [ 1844, 1843, 1845, 1846 ], "bg": 2973, "rotates": true }, + { "id": [ "music_venue" ], "fg": [ 1848, 1847, 1849, 1850 ], "bg": 2970, "rotates": true }, + { "id": [ "music_venue_roof" ], "fg": [ 1852, 1851, 1853, 1854 ], "bg": 2973, "rotates": true }, + { "id": [ "music_venue_1" ], "fg": [ 1856, 1855, 1857, 1858 ], "bg": 2970, "rotates": true }, + { "id": [ "music_venue_1_roof" ], "fg": [ 1860, 1859, 1861, 1862 ], "bg": 2973, "rotates": true }, + { "id": [ "music_venue_1_roof_top" ], "fg": [ 1864, 1863, 1865, 1866 ], "bg": 2973, "rotates": true }, + { "id": [ "NatureTrail_1a" ], "fg": [ 1868, 1867, 1869, 1870 ], "bg": 2972, "rotates": true }, + { "id": [ "NatureTrail_1b" ], "fg": [ 1872, 1871, 1873, 1874 ], "bg": 2972, "rotates": true }, + { "id": [ "office_cubical" ], "fg": [ 1876, 1875, 1877, 1878 ], "bg": 2970, "rotates": true }, + { "id": [ "office_cubical_roof" ], "fg": [ 1880, 1879, 1881, 1882 ], "bg": 2973, "rotates": true }, + { "id": [ "office_cubical_1" ], "fg": [ 1884, 1883, 1885, 1886 ], "bg": 2970, "rotates": true }, + { "id": [ "office_cubical_roof_1" ], "fg": [ 1888, 1887, 1889, 1890 ], "bg": 2973, "rotates": true }, + { "id": [ "office_doctor" ], "fg": [ 1892, 1891, 1893, 1894 ], "rotates": true }, + { "id": [ "office_doctor_roof" ], "fg": [ 1896, 1895, 1897, 1898 ], "bg": 2973, "rotates": true }, + { "id": [ "office_doctor_1" ], "fg": [ 1900, 1899, 1901, 1902 ], "rotates": true }, + { "id": [ "office_doctor_roof_1" ], "fg": [ 1904, 1903, 1905, 1906 ], "bg": 2973, "rotates": true }, + { "id": [ "office_doctor_2" ], "fg": [ 1908, 1907, 1909, 1910 ], "rotates": true }, + { "id": [ "office_doctor_roof_2" ], "fg": [ 1912, 1911, 1913, 1914 ], "bg": 2973, "rotates": true }, + { "id": [ "office_doctor_upper_roof_2" ], "fg": [ 1916, 1915, 1917, 1918 ], "bg": 2973, "rotates": true }, + { "id": [ "orchard" ], "fg": [ 1920, 1919, 1921, 1922 ], "bg": 2970, "rotates": true }, + { "id": [ "paintball_field" ], "fg": [ 1924, 1923, 1925, 1926 ], "bg": 2970, "rotates": true }, + { "id": [ "paintball_field_roof" ], "fg": [ 1928, 1927, 1929, 1930 ], "bg": 2973, "rotates": true }, + { "id": [ "paintball_field_1" ], "fg": [ 1932, 1931, 1933, 1934 ], "bg": 2970, "rotates": true }, + { "id": [ "paintball_field_roof_1" ], "fg": [ 1936, 1935, 1937, 1938 ], "bg": 2973, "rotates": true }, + { "id": [ "publicgarden_2" ], "fg": 1995, "bg": 2970, "rotates": true }, + { "id": [ "communitygarden" ], "fg": [ 1949, 1948, 1950, 1951 ], "bg": 2970, "rotates": true }, + { "id": [ "communitygarden_2" ], "fg": 1943, "bg": 2970, "rotates": true }, + { "id": [ "communitygarden_3" ], "fg": [ 1945, 1944, 1946, 1947 ], "bg": 2970, "rotates": true }, + { "id": [ "baskeball_court" ], "fg": [ 1940, 1939, 1941, 1942 ], "rotates": true }, + { "id": [ "tennis_court" ], "fg": [ 1997, 1996, 1998, 1999 ], "rotates": true }, + { "id": [ "volleyball_court" ], "fg": [ 2001, 2000, 2002, 2003 ], "bg": 2970, "rotates": true }, + { "id": [ "dog_park" ], "fg": [ 1953, 1952, 1954, 1955 ], "bg": 2970, "rotates": true }, + { "id": [ "park_maze" ], "fg": [ 1984, 1983, 1985, 1986 ], "bg": 2970, "rotates": true }, + { "id": [ "park_maze_2" ], "fg": [ 1980, 1979, 1981, 1982 ], "bg": 2970, "rotates": true }, + { "id": [ "park" ], "fg": [ 1976, 1975, 1977, 1978 ], "bg": 2970, "rotates": true }, + { "id": [ "park_2" ], "fg": 1956, "bg": 2970, "rotates": true }, + { "id": [ "park_3" ], "fg": [ 1958, 1957, 1959, 1960 ], "bg": 2970, "rotates": true }, + { "id": [ "park_4" ], "fg": [ 1962, 1961, 1963, 1964 ], "bg": 2970, "rotates": true }, + { "id": [ "park_5" ], "fg": [ 1966, 1965, 1967, 1968 ], "bg": 2970, "rotates": true }, + { "id": [ "park_6" ], "fg": [ 1970, 1969, 1970, 1969 ], "bg": 2970, "rotates": true }, + { "id": [ "park_7" ], "fg": [ 1972, 1971, 1973, 1974 ], "bg": 2970, "rotates": true }, + { "id": [ "playground" ], "fg": [ 1992, 1991, 1993, 1994 ], "bg": 2970, "rotates": true }, + { "id": [ "playground_1" ], "fg": [ 1988, 1987, 1989, 1990 ], "bg": 2970, "rotates": true }, + { "id": [ "PublicPond_1a" ], "fg": [ 2005, 2004, 2006, 2007 ], "bg": 2971, "rotates": true }, + { "id": [ "PublicPond_1b" ], "fg": [ 2009, 2008, 2010, 2011 ], "bg": 2971, "rotates": true }, + { "id": [ "BotanicalGarden_1a" ], "fg": [ 2013, 2012, 2014, 2015 ], "bg": 2970, "rotates": true }, + { "id": [ "BotanicalGarden_1a_roof" ], "fg": [ 2017, 2016, 2018, 2019 ], "bg": 2973, "rotates": true }, + { "id": [ "BotanicalGarden_1b" ], "fg": [ 2021, 2020, 2022, 2023 ], "bg": 2970, "rotates": true }, + { "id": [ "BotanicalGarden_1b_roof" ], "fg": [ 2025, 2024, 2026, 2027 ], "bg": 2973, "rotates": true }, + { "id": [ "pavilion" ], "fg": [ 2029, 2028, 2030, 2031 ], "bg": 2970, "rotates": true }, + { "id": [ "pavilion_roof" ], "fg": [ 2033, 2032, 2034, 2035 ], "bg": 2973, "rotates": true }, + { "id": [ "pavilion_1" ], "fg": [ 2037, 2036, 2038, 2039 ], "bg": 2970, "rotates": true }, + { "id": [ "pavilion_roof_1" ], "fg": [ 2041, 2040, 2042, 2043 ], "bg": 2973, "rotates": true }, + { "id": [ "pawn" ], "fg": [ 2045, 2044, 2046, 2047 ], "bg": 2970, "rotates": true }, + { "id": [ "pawn_roof" ], "fg": [ 2049, 2048, 2050, 2051 ], "bg": 2973, "rotates": true }, + { "id": [ "pawn_1" ], "fg": [ 2053, 2052, 2054, 2055 ], "bg": 2970, "rotates": true }, + { "id": [ "pawn_roof_1" ], "fg": [ 2057, 2056, 2058, 2059 ], "bg": 2973, "rotates": true }, + { "id": [ "pawn_pf" ], "fg": [ 2061, 2060, 2062, 2063 ], "bg": 2970, "rotates": true }, + { "id": [ "pawn_pf_roof" ], "fg": [ 2065, 2064, 2066, 2067 ], "bg": 2973, "rotates": true }, + { "id": [ "pawn_pf_under" ], "fg": [ 2069, 2068, 2070, 2071 ], "bg": 2974, "rotates": true }, + { "id": [ "s_pharm" ], "fg": [ 2073, 2072, 2074, 2075 ], "rotates": true }, + { "id": [ "s_pharm_roof" ], "fg": [ 2077, 2076, 2078, 2079 ], "bg": 2973, "rotates": true }, + { "id": [ "s_pharm_1" ], "fg": [ 2081, 2080, 2082, 2083 ], "rotates": true }, + { "id": [ "s_pharm_roof_1" ], "fg": [ 2085, 2084, 2086, 2087 ], "bg": 2973, "rotates": true }, + { "id": [ "police" ], "fg": [ 2089, 2088, 2090, 2091 ], "bg": 2970, "rotates": true }, + { "id": [ "police_roof" ], "fg": [ 2093, 2092, 2094, 2095 ], "bg": 2973, "rotates": true }, + { "id": [ "police_1" ], "fg": [ 2097, 2096, 2098, 2099 ], "bg": 2970, "rotates": true }, + { "id": [ "police_2ndfloor_1" ], "fg": [ 2101, 2100, 2102, 2103 ], "bg": 2973, "rotates": true }, + { "id": [ "police_roof_1" ], "fg": [ 2105, 2104, 2106, 2107 ], "bg": 2973, "rotates": true }, + { "id": [ "police_2" ], "fg": [ 2109, 2108, 2110, 2111 ], "bg": 2970, "rotates": true }, + { "id": [ "police_roof_2" ], "fg": [ 2113, 2112, 2114, 2115 ], "bg": 2973, "rotates": true }, + { "id": [ "police_2ndfloor_2" ], "fg": [ 2117, 2116, 2118, 2119 ], "bg": 2973, "rotates": true }, + { "id": [ "pond_field" ], "fg": [ 2125, 2124, 2126, 2127 ], "bg": 2970, "rotates": true }, + { "id": [ "pond_forest" ], "fg": [ 2125, 2124, 2126, 2127 ], "bg": 2971, "rotates": true }, + { "id": [ "pond_swamp" ], "fg": [ 2125, 2124, 2126, 2127 ], "bg": 2976, "rotates": true }, + { "id": [ "hot_springs" ], "fg": [ 2121, 2120, 2122, 2123 ], "bg": 2970, "rotates": true }, + { "id": [ "pool" ], "fg": [ 2129, 2128, 2130, 2131 ], "bg": 2970, "rotates": true }, + { "id": [ "pool_roof" ], "fg": [ 2133, 2132, 2134, 2135 ], "bg": 2973, "rotates": true }, + { "id": [ "pool_1" ], "fg": [ 2137, 2136, 2138, 2139 ], "bg": 2970, "rotates": true }, + { "id": [ "pool_roof_1" ], "fg": [ 2141, 2140, 2142, 2143 ], "bg": 2973, "rotates": true }, + { "id": [ "pool_2" ], "fg": [ 2145, 2144, 2146, 2147 ], "bg": 2970, "rotates": true }, + { "id": [ "pool_roof_2" ], "fg": [ 2149, 2148, 2150, 2151 ], "bg": 2973, "rotates": true }, + { "id": [ "pool_3" ], "fg": [ 2153, 2152, 2154, 2155 ], "bg": 2970, "rotates": true }, + { "id": [ "pool_roof_3" ], "fg": [ 2157, 2156, 2158, 2159 ], "bg": 2973, "rotates": true }, + { "id": [ "pool_4" ], "fg": [ 2161, 2160, 2162, 2163 ], "bg": 2970, "rotates": true }, + { "id": [ "pool_roof_4" ], "fg": [ 2165, 2164, 2166, 2167 ], "bg": 2973, "rotates": true }, + { "id": [ "pool_5" ], "fg": [ 2169, 2168, 2170, 2171 ], "bg": 2970, "rotates": true }, + { "id": [ "pool_6" ], "fg": [ 2173, 2172, 2174, 2175 ], "bg": 2970, "rotates": true }, + { "id": [ "post_office" ], "fg": [ 2177, 2176, 2178, 2179 ], "bg": 2970, "rotates": true }, + { "id": [ "post_office_roof" ], "fg": [ 2181, 2180, 2182, 2183 ], "bg": 2973, "rotates": true }, + { "id": [ "post_office_1" ], "fg": [ 2185, 2184, 2186, 2187 ], "bg": 2970, "rotates": true }, + { "id": [ "post_office_roof_1" ], "fg": [ 2189, 2188, 2190, 2191 ], "bg": 2973, "rotates": true }, + { "id": [ "craft_shop_2" ], "fg": [ 2193, 2192, 2194, 2195 ], "bg": 2970, "rotates": true }, + { "id": [ "craft_shop_2ndfloor_2" ], "fg": [ 2197, 2196, 2198, 2199 ], "bg": 2973, "rotates": true }, + { "id": [ "craft_shop_roof_2" ], "fg": [ 2201, 2200, 2202, 2203 ], "bg": 2973, "rotates": true }, + { "id": [ "publicgarden" ], "fg": 2204, "bg": 2970, "rotates": true }, + { "id": [ "recyclecenter" ], "fg": [ 2206, 2205, 2207, 2208 ], "bg": 2970, "rotates": true }, + { "id": [ "recyclecenter_roof" ], "fg": [ 2210, 2209, 2211, 2212 ], "bg": 2973, "rotates": true }, + { "id": [ "recyclecenter_1" ], "fg": [ 2214, 2213, 2215, 2216 ], "bg": 2970, "rotates": true }, + { "id": [ "recyclecenter_roof_1" ], "fg": [ 2218, 2217, 2219, 2220 ], "bg": 2973, "rotates": true }, + { "id": [ "recyclecenter_2" ], "fg": [ 2222, 2221, 2223, 2224 ], "bg": 2970, "rotates": true }, + { "id": [ "recyclecenter_roof_2" ], "fg": [ 2226, 2225, 2227, 2228 ], "bg": 2973, "rotates": true }, + { "id": "road_nesw_manhole", "fg": 2240, "bg": 2229 }, + { + "id": "road", + "fg": 2245, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 2229 }, + { "id": "corner", "fg": [ 2231, 2233, 2232, 2230 ], "bg": 2970 }, + { "id": "t_connection", "fg": [ 2242, 2244, 2243, 2241 ] }, + { "id": "edge", "fg": [ 2235, 2234 ] }, + { "id": "end_piece", "fg": [ 2237, 2239, 2238, 2236 ] }, + { "id": "unconnected", "fg": [ 2245, 2245 ], "bg": 2970 } + ] + }, + { "id": [ "roadstop" ], "fg": [ 2247, 2246, 2248, 2249 ], "bg": 2970, "rotates": true }, + { "id": [ "roadstop_roof" ], "fg": [ 2251, 2250, 2252, 2253 ], "bg": 2973, "rotates": true }, + { "id": [ "roadstop_a" ], "fg": [ 2255, 2254, 2256, 2257 ], "bg": 2970, "rotates": true }, + { "id": [ "roadstop_a_roof" ], "fg": [ 2259, 2258, 2260, 2261 ], "bg": 2973, "rotates": true }, + { "id": [ "roadstop_b" ], "fg": [ 2263, 2262, 2264, 2265 ], "bg": 2970, "rotates": true }, + { "id": [ "roadstop_b_roof" ], "fg": [ 2267, 2266, 2268, 2269 ], "bg": 2973, "rotates": true }, + { "id": [ "s_antique" ], "fg": [ 2271, 2270, 2272, 2273 ], "bg": 2970, "rotates": true }, + { "id": [ "s_antique_roof" ], "fg": [ 2275, 2274, 2276, 2277 ], "bg": 2973, "rotates": true }, + { "id": [ "s_apt" ], "fg": [ 2283, 2282, 2284, 2285 ], "bg": 2970, "rotates": true }, + { "id": [ "s_apt_2ndfloor" ], "fg": [ 2279, 2278, 2280, 2281 ], "bg": 2973, "rotates": true }, + { "id": [ "s_apt_roof" ], "fg": [ 2287, 2286, 2288, 2289 ], "bg": 2973, "rotates": true }, + { "id": [ "s_apt_upper_roof" ], "fg": [ 2291, 2290, 2292, 2293 ], "bg": 2973, "rotates": true }, + { "id": [ "s_apt_2" ], "fg": [ 2299, 2298, 2300, 2301 ], "bg": 2970, "rotates": true }, + { "id": [ "s_apt_2_2ndfloor" ], "fg": [ 2295, 2294, 2296, 2297 ], "bg": 2973, "rotates": true }, + { "id": [ "s_apt_2_roof" ], "fg": [ 2303, 2302, 2304, 2305 ], "bg": 2973, "rotates": true }, + { "id": [ "s_apt_2_upper_roof" ], "fg": [ 2307, 2306, 2308, 2309 ], "bg": 2973, "rotates": true }, + { "id": [ "s_arcade" ], "fg": [ 2311, 2310, 2312, 2313 ], "bg": 2970, "rotates": true }, + { "id": [ "s_arcade_roof" ], "fg": [ 2315, 2314, 2316, 2317 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bike_shop" ], "fg": [ 2319, 2318, 2320, 2321 ], "bg": 2970, "rotates": true }, + { "id": [ "s_bike_shop_roof" ], "fg": [ 2323, 2322, 2324, 2325 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bike_shop_1" ], "fg": [ 2327, 2326, 2328, 2329 ], "bg": 2970, "rotates": true }, + { "id": [ "s_bike_shop_roof_1" ], "fg": [ 2331, 2330, 2332, 2333 ], "bg": 2973, "rotates": true }, + { "id": [ "s_butcher" ], "fg": [ 2335, 2334, 2336, 2337 ], "rotates": true }, + { "id": [ "s_butcher_roof" ], "fg": [ 2339, 2338, 2340, 2341 ], "bg": 2973, "rotates": true }, + { "id": [ "s_butcher_upper_roof" ], "fg": [ 2343, 2342, 2344, 2345 ], "bg": 2973, "rotates": true }, + { "id": [ "s_butcher_1" ], "fg": [ 2347, 2346, 2348, 2349 ], "rotates": true }, + { "id": [ "s_butcher_roof_1" ], "fg": [ 2351, 2350, 2352, 2353 ], "bg": 2973, "rotates": true }, + { "id": [ "s_butcher_upper_roof_1" ], "fg": [ 2355, 2354, 2356, 2357 ], "bg": 2973, "rotates": true }, + { "id": [ "s_butcher_2" ], "fg": [ 2359, 2358, 2360, 2361 ], "rotates": true }, + { "id": [ "s_butcher_roof_2" ], "fg": [ 2363, 2362, 2364, 2365 ], "bg": 2973, "rotates": true }, + { "id": [ "s_cardealer" ], "fg": [ 2367, 2366, 2368, 2369 ], "bg": 2970, "rotates": true }, + { "id": [ "s_cardealer_roof" ], "fg": [ 2371, 2370, 2372, 2373 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes" ], "fg": [ 2375, 2374, 2376, 2377 ], "bg": 2970, "rotates": true }, + { "id": [ "s_clothes_roof" ], "fg": [ 2379, 2378, 2380, 2381 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes_1" ], "fg": [ 2383, 2382, 2384, 2385 ], "bg": 2970, "rotates": true }, + { "id": [ "s_clothes_roof_1" ], "fg": [ 2387, 2386, 2388, 2389 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes_2" ], "fg": [ 2391, 2390, 2392, 2393 ], "bg": 2970, "rotates": true }, + { "id": [ "s_clothes_roof_2" ], "fg": [ 2395, 2394, 2396, 2397 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes_3" ], "fg": [ 2399, 2398, 2400, 2401 ], "bg": 2970, "rotates": true }, + { "id": [ "s_clothes_roof_3" ], "fg": [ 2403, 2402, 2404, 2405 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes_4" ], "fg": [ 2407, 2406, 2408, 2409 ], "bg": 2970, "rotates": true }, + { "id": [ "s_clothes_roof_4" ], "fg": [ 2411, 2410, 2412, 2413 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes_upper_roof_4" ], "fg": [ 2415, 2414, 2416, 2417 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes_5" ], "fg": [ 2419, 2418, 2420, 2421 ], "bg": 2970, "rotates": true }, + { "id": [ "s_clothes_roof_5" ], "fg": [ 2423, 2422, 2424, 2425 ], "bg": 2973, "rotates": true }, + { "id": [ "s_clothes_6" ], "fg": [ 2427, 2426, 2428, 2429 ], "bg": 2970, "rotates": true }, + { "id": [ "s_clothes_roof_6" ], "fg": [ 2431, 2430, 2432, 2433 ], "bg": 2973, "rotates": true }, + { "id": [ "s_daycare" ], "fg": [ 2435, 2434, 2436, 2437 ], "bg": 2970, "rotates": true }, + { "id": [ "s_daycare_roof" ], "fg": [ 2439, 2438, 2440, 2441 ], "bg": 2973, "rotates": true }, + { "id": [ "s_diner" ], "fg": [ 2447, 2446, 2448, 2449 ], "rotates": true }, + { "id": [ "s_diner_2ndfloor" ], "fg": [ 2443, 2442, 2444, 2445 ], "bg": 2973, "rotates": true }, + { "id": [ "s_diner_roof" ], "fg": [ 2451, 2450, 2452, 2453 ], "bg": 2973, "rotates": true }, + { "id": [ "s_electronics" ], "fg": [ 2455, 2454, 2456, 2457 ], "bg": 2970, "rotates": true }, + { "id": [ "s_electronics_roof" ], "fg": [ 2459, 2458, 2460, 2461 ], "bg": 2973, "rotates": true }, + { "id": [ "s_electronics_1" ], "fg": [ 2463, 2462, 2464, 2465 ], "bg": 2970, "rotates": true }, + { "id": [ "s_electronics_roof_1" ], "fg": [ 2467, 2466, 2468, 2469 ], "bg": 2973, "rotates": true }, + { "id": [ "s_electronicstore" ], "fg": [ 2475, 2474, 2476, 2477 ], "bg": 2970, "rotates": true }, + { "id": [ "s_electronicstore_2ndfloor" ], "fg": [ 2471, 2470, 2472, 2473 ], "bg": 2973, "rotates": true }, + { "id": [ "s_electronicstore_roof" ], "fg": [ 2479, 2478, 2480, 2481 ], "bg": 2973, "rotates": true }, + { "id": [ "s_games" ], "fg": [ 2483, 2482, 2484, 2485 ], "bg": 2970, "rotates": true }, + { "id": [ "s_games_roof" ], "fg": [ 2487, 2486, 2488, 2489 ], "bg": 2973, "rotates": true }, + { "id": [ "s_garage" ], "fg": [ 2491, 2490, 2492, 2493 ], "rotates": true }, + { "id": [ "s_garage_roof" ], "fg": [ 2495, 2494, 2496, 2497 ], "bg": 2973, "rotates": true }, + { "id": [ "s_garage_1" ], "fg": [ 2499, 2498, 2500, 2501 ], "rotates": true }, + { "id": [ "s_garage_roof_1" ], "fg": [ 2503, 2502, 2504, 2505 ], "bg": 2973, "rotates": true }, + { "id": [ "s_garage_2" ], "fg": [ 2507, 2506, 2508, 2509 ], "rotates": true }, + { "id": [ "s_garage_roof_2" ], "fg": [ 2511, 2510, 2512, 2513 ], "bg": 2973, "rotates": true }, + { "id": [ "s_garage_upper_roof_2" ], "fg": [ 2515, 2514, 2516, 2517 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gardening" ], "fg": [ 2519, 2518, 2520, 2521 ], "bg": 2970, "rotates": true }, + { "id": [ "s_gardening_roof" ], "fg": [ 2523, 2522, 2524, 2525 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gas" ], "fg": [ 2527, 2526, 2528, 2529 ], "bg": 2970, "rotates": true }, + { "id": [ "s_gas_1" ], "fg": [ 2531, 2530, 2532, 2533 ], "bg": 2970, "rotates": true }, + { "id": [ "s_gas_roof_1" ], "fg": [ 2535, 2534, 2536, 2537 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gas_rural" ], "fg": [ 2539, 2538, 2540, 2541 ], "bg": 2970, "rotates": true }, + { "id": [ "s_gas_rural_roof" ], "fg": [ 2543, 2542, 2544, 2545 ], "bg": 2973, "rotates": true }, + { "id": [ "s_grocery" ], "fg": [ 2547, 2546, 2548, 2549 ], "rotates": true }, + { "id": [ "s_grocery_roof" ], "fg": [ 2551, 2550, 2552, 2553 ], "bg": 2973, "rotates": true }, + { "id": [ "s_grocery_1" ], "fg": [ 2555, 2554, 2556, 2557 ], "rotates": true }, + { "id": [ "s_grocery_roof_1" ], "fg": [ 2559, 2558, 2560, 2561 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gun" ], "fg": [ 2563, 2562, 2564, 2565 ], "rotates": true }, + { "id": [ "s_gun_roof" ], "fg": [ 2567, 2566, 2568, 2569 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gun_1", "s_gun_2" ], "fg": [ 2571, 2570, 2572, 2573 ], "rotates": true }, + { "id": [ "s_gun_roof_1", "s_gun_roof_2" ], "fg": [ 2575, 2574, 2576, 2577 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gun_3" ], "fg": [ 2579, 2578, 2580, 2581 ], "rotates": true }, + { "id": [ "s_gun_roof_3" ], "fg": [ 2583, 2582, 2584, 2585 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gun_4" ], "fg": [ 2591, 2590, 2592, 2593 ], "rotates": true }, + { "id": [ "s_gun_2ndfloor_4" ], "fg": [ 2587, 2586, 2588, 2589 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gun_roof_4" ], "fg": [ 2595, 2594, 2596, 2597 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gunstore" ], "fg": [ 2603, 2602, 2604, 2605 ], "rotates": true }, + { "id": [ "s_gunstore_2ndfloor" ], "fg": [ 2599, 2598, 2600, 2601 ], "bg": 2973, "rotates": true }, + { "id": [ "s_gunstore_roof" ], "fg": [ 2607, 2606, 2608, 2609 ], "bg": 2973, "rotates": true }, + { "id": [ "s_hardware" ], "fg": [ 2611, 2610, 2612, 2613 ], "bg": 2970, "rotates": true }, + { "id": [ "s_hardware_roof" ], "fg": [ 2615, 2614, 2616, 2617 ], "bg": 2973, "rotates": true }, + { "id": [ "s_hardware_1" ], "fg": [ 2619, 2618, 2620, 2621 ], "bg": 2970, "rotates": true }, + { "id": [ "s_hardware_roof_1" ], "fg": [ 2623, 2622, 2624, 2625 ], "bg": 2973, "rotates": true }, + { "id": [ "s_hardware_2" ], "fg": [ 2627, 2626, 2628, 2629 ], "bg": 2970, "rotates": true }, + { "id": [ "s_hardware_roof_2" ], "fg": [ 2631, 2630, 2632, 2633 ], "bg": 2973, "rotates": true }, + { "id": [ "s_hardware_3" ], "fg": [ 2635, 2634, 2636, 2637 ], "bg": 2970, "rotates": true }, + { "id": [ "s_hardware_roof_3" ], "fg": [ 2639, 2638, 2640, 2641 ], "bg": 2973, "rotates": true }, + { "id": [ "s_hunting" ], "fg": [ 2643, 2642, 2644, 2645 ], "rotates": true }, + { "id": [ "s_hunting_roof" ], "fg": [ 2647, 2646, 2648, 2649 ], "bg": 2973, "rotates": true }, + { "id": [ "s_jewelry" ], "fg": [ 2651, 2650, 2652, 2653 ], "bg": 2970, "rotates": true }, + { "id": [ "s_jewelry_roof" ], "fg": [ 2655, 2654, 2656, 2657 ], "bg": 2973, "rotates": true }, + { "id": [ "s_laundromat" ], "fg": [ 2659, 2658, 2660, 2661 ], "bg": 2970, "rotates": true }, + { "id": [ "s_laundromat_roof" ], "fg": [ 2663, 2662, 2664, 2665 ], "bg": 2973, "rotates": true }, + { "id": [ "s_laundromat_1" ], "fg": [ 2667, 2666, 2668, 2669 ], "bg": 2970, "rotates": true }, + { "id": [ "s_laundromat_roof_1" ], "fg": [ 2671, 2670, 2672, 2673 ], "bg": 2973, "rotates": true }, + { "id": [ "s_liquor" ], "fg": [ 2675, 2674, 2676, 2677 ], "rotates": true }, + { "id": [ "s_liquor_roof" ], "fg": [ 2679, 2678, 2680, 2681 ], "bg": 2973, "rotates": true }, + { "id": [ "s_lot" ], "fg": [ 2683, 2682, 2684, 2685 ], "bg": 2970, "rotates": true }, + { "id": [ "s_music" ], "fg": [ 2687, 2686, 2688, 2689 ], "bg": 2970, "rotates": true }, + { "id": [ "s_music_roof" ], "fg": [ 2691, 2690, 2692, 2693 ], "bg": 2973, "rotates": true }, + { "id": [ "s_petstore" ], "fg": [ 2695, 2694, 2696, 2697 ], "bg": 2970, "rotates": true }, + { "id": [ "s_petstore_roof" ], "fg": [ 2699, 2698, 2700, 2701 ], "bg": 2973, "rotates": true }, + { "id": [ "s_petstore_1" ], "fg": [ 2703, 2702, 2704, 2705 ], "bg": 2970, "rotates": true }, + { "id": [ "s_petstore_roof_1" ], "fg": [ 2707, 2706, 2708, 2709 ], "bg": 2973, "rotates": true }, + { "id": [ "s_petstore_2" ], "fg": [ 2711, 2710, 2712, 2713 ], "bg": 2970, "rotates": true }, + { "id": [ "s_petstore_roof_2" ], "fg": [ 2715, 2714, 2716, 2717 ], "bg": 2973, "rotates": true }, + { "id": [ "s_pizza_parlor" ], "fg": [ 2719, 2718, 2720, 2721 ], "rotates": true }, + { "id": [ "s_pizza_parlor_roof" ], "fg": [ 2723, 2722, 2724, 2725 ], "bg": 2973, "rotates": true }, + { "id": [ "s_pizza_parlor_1" ], "fg": [ 2727, 2726, 2728, 2729 ], "rotates": true }, + { "id": [ "s_pizza_parlor_roof_1" ], "fg": [ 2731, 2730, 2732, 2733 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant", "s_restaurant_foodplace" ], "fg": [ 2735, 2734, 2736, 2737 ], "rotates": true }, + { "id": [ "s_restaurant_roof" ], "fg": [ 2739, 2738, 2740, 2741 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_1" ], "fg": [ 2743, 2742, 2744, 2745 ], "rotates": true }, + { "id": [ "s_restaurant_roof_1" ], "fg": [ 2747, 2746, 2748, 2749 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_2" ], "fg": [ 2751, 2750, 2752, 2753 ], "rotates": true }, + { "id": [ "s_restaurant_roof_2" ], "fg": [ 2755, 2754, 2756, 2757 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_3" ], "fg": [ 2759, 2758, 2760, 2761 ], "rotates": true }, + { "id": [ "s_restaurant_roof_3" ], "fg": [ 2763, 2762, 2764, 2765 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_coffee" ], "fg": [ 2767, 2766, 2768, 2769 ], "rotates": true }, + { "id": [ "s_restaurant_coffee_roof" ], "fg": [ 2771, 2770, 2772, 2773 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_coffee_1" ], "fg": [ 2775, 2774, 2776, 2777 ], "rotates": true }, + { "id": [ "s_restaurant_coffee_roof_1" ], "fg": [ 2779, 2778, 2780, 2781 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_coffee_2" ], "fg": [ 2783, 2782, 2784, 2785 ], "rotates": true }, + { "id": [ "s_restaurant_coffee_roof_2" ], "fg": [ 2787, 2786, 2788, 2789 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_fast" ], "fg": [ 2791, 2790, 2792, 2793 ], "rotates": true }, + { "id": [ "s_restaurant_fast_roof" ], "fg": [ 2795, 2794, 2796, 2797 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_fast_1" ], "fg": [ 2799, 2798, 2800, 2801 ], "rotates": true }, + { "id": [ "s_restaurant_fast_roof_1" ], "fg": [ 2803, 2802, 2804, 2805 ], "bg": 2973, "rotates": true }, + { "id": [ "s_restaurant_foodplace_roof" ], "fg": [ 2807, 2806, 2808, 2809 ], "bg": 2973, "rotates": true }, + { + "id": [ "s_restaurant_foodplace_upper_roof" ], + "fg": [ 2811, 2810, 2812, 2813 ], + "bg": 2973, + "rotates": true + }, + { "id": [ "s_sports" ], "fg": [ 2815, 2814, 2816, 2817 ], "rotates": true }, + { "id": [ "s_sports_roof" ], "fg": [ 2819, 2818, 2820, 2821 ], "bg": 2973, "rotates": true }, + { "id": [ "s_teashop" ], "fg": [ 2823, 2822, 2824, 2825 ], "rotates": true }, + { "id": [ "s_teashop_roof" ], "fg": [ 2827, 2826, 2828, 2829 ], "bg": 2973, "rotates": true }, + { "id": [ "s_teashop_1" ], "fg": [ 2831, 2830, 2832, 2833 ], "rotates": true }, + { "id": [ "s_teashop_roof_1" ], "fg": [ 2835, 2834, 2836, 2837 ], "bg": 2973, "rotates": true }, + { "id": [ "s_teashop_upper_roof_1" ], "fg": [ 2839, 2838, 2840, 2841 ], "bg": 2973, "rotates": true }, + { "id": [ "s_thrift" ], "fg": [ 2843, 2842, 2844, 2845 ], "bg": 2970, "rotates": true }, + { "id": [ "s_thrift_roof" ], "fg": [ 2847, 2846, 2848, 2849 ], "bg": 2973, "rotates": true }, + { "id": [ "sai" ], "fg": [ 2851, 2850, 2852, 2853 ], "bg": 2970, "rotates": true }, + { "id": [ "skate_park" ], "fg": [ 2855, 2854, 2856, 2857 ], "bg": 2970, "rotates": true }, + { "id": [ "small_office" ], "fg": [ 2859, 2858, 2860, 2861 ], "bg": 2970, "rotates": true }, + { "id": [ "small_office_roof" ], "fg": [ 2863, 2862, 2864, 2865 ], "bg": 2973, "rotates": true }, + { "id": [ "small_office_upper_roof" ], "fg": [ 2867, 2866, 2868, 2869 ], "bg": 2973, "rotates": true }, + { "id": [ "small_storage_units" ], "fg": [ 2871, 2870, 2872, 2873 ], "bg": 2970, "rotates": true }, + { "id": [ "small_storage_units_roof" ], "fg": [ 2875, 2874, 2876, 2877 ], "bg": 2973, "rotates": true }, + { "id": [ "small_storage_units_1" ], "fg": [ 2879, 2878, 2880, 2881 ], "bg": 2970, "rotates": true }, + { "id": [ "small_storage_units_roof_1" ], "fg": [ 2883, 2882, 2884, 2885 ], "bg": 2973, "rotates": true }, + { "id": [ "small_wooded_trail" ], "fg": [ 2891, 2890, 2892, 2893 ], "bg": 2971, "rotates": true }, + { "id": [ "small_wooded_trail_2" ], "fg": [ 2887, 2886, 2888, 2889 ], "bg": 2971, "rotates": true }, + { "id": [ "smallscrapyard" ], "fg": [ 2895, 2894, 2896, 2897 ], "bg": 2970, "rotates": true }, + { "id": [ "smoke_lounge" ], "fg": [ 2899, 2898, 2900, 2901 ], "bg": 2970, "rotates": true }, + { "id": [ "smoke_lounge_roof" ], "fg": [ 2903, 2902, 2904, 2905 ], "bg": 2973, "rotates": true }, + { "id": [ "smoke_lounge_1" ], "fg": [ 2907, 2906, 2908, 2909 ], "bg": 2970, "rotates": true }, + { "id": [ "smoke_lounge_roof_1" ], "fg": [ 2911, 2910, 2912, 2913 ], "bg": 2973, "rotates": true }, + { "id": [ "station_radio" ], "fg": [ 2915, 2914, 2916, 2917 ], "bg": 2970, "rotates": true }, + { "id": [ "station_radio_roof" ], "fg": [ 2919, 2918, 2920, 2921 ], "bg": 2973, "rotates": true }, + { "id": [ "station_radio_1" ], "fg": [ 2923, 2922, 2924, 2925 ], "bg": 2970, "rotates": true }, + { "id": [ "station_radio_roof_1" ], "fg": [ 2927, 2926, 2928, 2929 ], "bg": 2973, "rotates": true }, + { "id": [ "stripclub" ], "fg": [ 2931, 2930, 2932, 2933 ], "bg": 2970, "rotates": true }, + { "id": [ "stripclub_roof" ], "fg": [ 2935, 2934, 2936, 2937 ], "bg": 2973, "rotates": true }, + { "id": [ "stripclub_1" ], "fg": [ 2939, 2938, 2940, 2941 ], "bg": 2970, "rotates": true }, + { "id": [ "stripclub_roof_1" ], "fg": [ 2943, 2942, 2944, 2945 ], "bg": 2973, "rotates": true }, + { "id": [ "stripclub_2" ], "fg": [ 2947, 2946, 2948, 2949 ], "bg": 2970, "rotates": true }, + { "id": [ "stripclub_roof_2" ], "fg": [ 2951, 2950, 2952, 2953 ], "bg": 2973, "rotates": true }, + { "id": [ "sub_station" ], "fg": [ 2959, 2958, 2960, 2961 ], "bg": 2970, "rotates": true }, + { "id": [ "sub_station_roof" ], "fg": [ 2963, 2962, 2964, 2965 ], "bg": 2973, "rotates": true }, + { "id": [ "sewer_sub_station" ], "fg": [ 2955, 2954, 2956, 2957 ], "bg": 2974, "rotates": true }, + { "id": [ "underground_sub_station" ], "fg": [ 2967, 2966, 2968, 2969 ], "bg": 2974, "rotates": true }, + { "id": "forest_water", "fg": 2976 }, + { "id": [ "forest", "special_forest" ], "fg": 2971, "bg": 2970 }, + { "id": [ "forest_thick", "special_forest_thick" ], "fg": 2972, "bg": 2970 }, + { "id": [ "field", "special_field" ], "fg": 2970 }, + { "id": "open_air", "fg": 2973 }, + { "id": "solid_earth", "fg": 2974 }, + { "id": [ "deep_rock", "empty_rock" ], "fg": 2975 }, + { + "id": "forest_trail", + "fg": 2992, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 2977, "bg": 2972 }, + { "id": "corner", "fg": [ 2979, 2981, 2980, 2978 ], "bg": 2972 }, + { "id": "t_connection", "fg": [ 2989, 2991, 2990, 2988 ], "bg": 2972 }, + { "id": "edge", "fg": [ 2983, 2982 ], "bg": 2972 }, + { "id": "end_piece", "fg": [ 2985, 2987, 2986, 2984 ], "bg": 2972 }, + { "id": "unconnected", "fg": 2992, "bg": 2972 } + ] + }, + { "id": "river_nw", "fg": 2999, "bg": 2970, "rotates": false }, + { "id": "river_sw", "fg": 3001, "bg": 2970, "rotates": false }, + { "id": "river_se", "fg": 3000, "bg": 2970, "rotates": false }, + { "id": "river_ne", "fg": 2998, "bg": 2970, "rotates": false }, + { "id": "river_north", "fg": 2994, "bg": 2970, "rotates": false }, + { "id": "river_west", "fg": 2996, "bg": 2970, "rotates": false }, + { "id": "river_east", "fg": 2993, "bg": 2970, "rotates": false }, + { "id": "river_south", "fg": 2995, "bg": 2970, "rotates": false }, + { + "id": [ "river_center", "lake_surface", "lake_water_cube", "lake_shore" ], + "fg": 2997, + "bg": 2970, + "rotates": false + }, + { "id": "river", "fg": [ 2994, 2993, 2995, 2996 ], "bg": 2970, "rotates": true }, + { "id": "river_c_not_nw", "fg": 2997, "bg": 2970, "rotates": false }, + { "id": "river_c_not_ne", "fg": 2997, "bg": 2970, "rotates": false }, + { "id": "river_c_not_sw", "fg": 2997, "bg": 2970, "rotates": false }, + { "id": "river_c_not_se", "fg": 2997, "bg": 2970, "rotates": false }, + { "id": [ "trailhead" ], "fg": [ 3003, 3002, 3004, 3005 ], "bg": 2971, "rotates": true }, + { "id": [ "trailhead_outhouse_z0" ], "fg": [ 3007, 3006, 3008, 3009 ], "bg": 2971, "rotates": true }, + { "id": [ "trailhead_outhouse_z1" ], "fg": [ 3011, 3010, 3012, 3013 ], "bg": 2973, "rotates": true }, + { "id": [ "trailhead_shack_z0" ], "fg": [ 3015, 3014, 3016, 3017 ], "bg": 2971, "rotates": true }, + { "id": [ "trailhead_shack_z1" ], "fg": [ 3019, 3018, 3020, 3021 ], "bg": 2973, "rotates": true }, + { "id": [ "veterinarian" ], "fg": [ 3023, 3022, 3024, 3025 ], "bg": 2970, "rotates": true }, + { "id": [ "veterinarian_roof" ], "fg": [ 3027, 3026, 3028, 3029 ], "bg": 2973, "rotates": true }, + { "id": [ "s_vfw" ], "fg": [ 3031, 3030, 3032, 3033 ], "bg": 2970, "rotates": true }, + { "id": [ "s_vfw_roof" ], "fg": [ 3035, 3034, 3036, 3037 ], "bg": 2973, "rotates": true }, + { "id": [ "warehouse" ], "fg": [ 3039, 3038, 3040, 3041 ], "bg": 2970, "rotates": true }, + { "id": [ "warehouse_roof" ], "fg": [ 3043, 3042, 3044, 3045 ], "bg": 2973, "rotates": true }, + { "id": [ "craft_shop_3" ], "fg": [ 3051, 3050, 3052, 3053 ], "bg": 2970, "rotates": true }, + { "id": [ "craft_shop_2ndfloor_3" ], "fg": [ 3047, 3046, 3048, 3049 ], "bg": 2973, "rotates": true }, + { "id": [ "craft_shop_roof_3" ], "fg": [ 3055, 3054, 3056, 3057 ], "bg": 2973, "rotates": true } + ] + }, + { + "file": "fallback.png", + "tiles": [ ], + "ascii": [ + { "offset": 0, "bold": false, "color": "BLACK" }, + { "offset": 256, "bold": true, "color": "WHITE" }, + { "offset": 512, "bold": false, "color": "WHITE" }, + { "offset": 768, "bold": true, "color": "BLACK" }, + { "offset": 1024, "bold": false, "color": "RED" }, + { "offset": 1280, "bold": false, "color": "GREEN" }, + { "offset": 1536, "bold": false, "color": "BLUE" }, + { "offset": 1792, "bold": false, "color": "CYAN" }, + { "offset": 2048, "bold": false, "color": "MAGENTA" }, + { "offset": 2304, "bold": false, "color": "YELLOW" }, + { "offset": 2560, "bold": true, "color": "RED" }, + { "offset": 2816, "bold": true, "color": "GREEN" }, + { "offset": 3072, "bold": true, "color": "BLUE" }, + { "offset": 3328, "bold": true, "color": "CYAN" }, + { "offset": 3584, "bold": true, "color": "MAGENTA" }, + { "offset": 3840, "bold": true, "color": "YELLOW" } + ] + } + ] +} diff --git a/gfx/SurveyorsMap/tileset.txt b/gfx/SurveyorsMap/tileset.txt new file mode 100644 index 0000000000000..8afae7321ccfe --- /dev/null +++ b/gfx/SurveyorsMap/tileset.txt @@ -0,0 +1,8 @@ +#Name of the tileset +NAME: SurveyorsMap +#Viewing (Option) name of the tileset +VIEW: SurveyorsMap +#JSON Path - Default of gfx/tile_config.json +JSON: tile_config.json +#Tileset Path - Default of gfx/tinytile.png +TILESET: tiles.png diff --git a/gfx/UltimateCataclysm/fillerhoder.png b/gfx/UltimateCataclysm/fillerhoder.png index c9fee22e410c3..51853c123ddb3 100644 Binary files a/gfx/UltimateCataclysm/fillerhoder.png and b/gfx/UltimateCataclysm/fillerhoder.png differ diff --git a/gfx/UltimateCataclysm/giant.png b/gfx/UltimateCataclysm/giant.png index 41c31d68899ad..1b5cc7c1a7bb1 100644 Binary files a/gfx/UltimateCataclysm/giant.png and b/gfx/UltimateCataclysm/giant.png differ diff --git a/gfx/UltimateCataclysm/huge.png b/gfx/UltimateCataclysm/huge.png index c4a36a1484370..72475507892e0 100644 Binary files a/gfx/UltimateCataclysm/huge.png and b/gfx/UltimateCataclysm/huge.png differ diff --git a/gfx/UltimateCataclysm/human_body.png b/gfx/UltimateCataclysm/human_body.png index 4c29ee7c58dca..35c0ead2a0069 100644 Binary files a/gfx/UltimateCataclysm/human_body.png and b/gfx/UltimateCataclysm/human_body.png differ diff --git a/gfx/UltimateCataclysm/human_body_plus.png b/gfx/UltimateCataclysm/human_body_plus.png index bd791ebde2722..0e863bd771f07 100644 Binary files a/gfx/UltimateCataclysm/human_body_plus.png and b/gfx/UltimateCataclysm/human_body_plus.png differ diff --git a/gfx/UltimateCataclysm/incomplete.png b/gfx/UltimateCataclysm/incomplete.png index 089518739ea64..fdad52550adc7 100644 Binary files a/gfx/UltimateCataclysm/incomplete.png and b/gfx/UltimateCataclysm/incomplete.png differ diff --git a/gfx/UltimateCataclysm/incomplete_large.png b/gfx/UltimateCataclysm/incomplete_large.png index 26cc3c9a06467..18e10677f7493 100644 Binary files a/gfx/UltimateCataclysm/incomplete_large.png and b/gfx/UltimateCataclysm/incomplete_large.png differ diff --git a/gfx/UltimateCataclysm/large.png b/gfx/UltimateCataclysm/large.png index d53fc69c3f727..536ec5cf5a2fb 100644 Binary files a/gfx/UltimateCataclysm/large.png and b/gfx/UltimateCataclysm/large.png differ diff --git a/gfx/UltimateCataclysm/normal.png b/gfx/UltimateCataclysm/normal.png index 4c1a464d84242..2df2ef00edf8e 100644 Binary files a/gfx/UltimateCataclysm/normal.png and b/gfx/UltimateCataclysm/normal.png differ diff --git a/gfx/UltimateCataclysm/small.png b/gfx/UltimateCataclysm/small.png index d11a7cec45310..a08c16e1d0fef 100644 Binary files a/gfx/UltimateCataclysm/small.png and b/gfx/UltimateCataclysm/small.png differ diff --git a/gfx/UltimateCataclysm/tile_config.json b/gfx/UltimateCataclysm/tile_config.json index 64a990d109e60..cdea145fc3670 100644 --- a/gfx/UltimateCataclysm/tile_config.json +++ b/gfx/UltimateCataclysm/tile_config.json @@ -18,33 +18,33 @@ { "id": [ "fancy_glasses_bifocal", "fancy_glasses_eye", "fancy_glasses_reading" ], "fg": 136 }, { "id": [ "glasses_eye", "glasses_reading" ], "fg": 156 }, { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 174 }, - { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 235 }, - { "id": "helmet_motor", "fg": 265 }, - { "id": "katana", "fg": 266 }, - { "id": "katana_fake", "fg": 266 }, - { "id": "katana_inferior", "fg": 266 }, - { "id": "223_casing", "fg": 267 }, - { "id": "40mm_casing", "fg": 268 }, - { "id": "40x46mm_m118_casing", "fg": 268 }, - { "id": "50_casing", "fg": 269 }, - { "id": "9mm_casing", "fg": 270 }, - { "id": "arrow_cf", "fg": 271 }, - { "id": "arrow_exploding", "fg": 272 }, - { "id": "arrow_field_point_fletched", "fg": 273 }, - { "id": "arrow_fire_hardened_fletched", "fg": 274 }, - { "id": "flamable_arrow", "fg": 288 }, - { "id": "arrow_flamming", "fg": 275 }, - { "id": "arrow_heavy_fire_hardened_fletched", "fg": 276 }, - { "id": "arrow_metal", "fg": 277 }, - { "id": "arrow_metal_sharpened_fletched", "fg": 278 }, - { "id": "arrow_plastic", "fg": 279 }, - { "id": "arrow_small_game_fletched", "fg": 280 }, - { "id": "arrow_wood", "fg": 281 }, - { "id": "arrow_wood_heavy", "fg": 282 }, - { "id": "bolt_cf", "fg": 283 }, - { "id": "bolt_explosive", "fg": 284 }, - { "id": "bolt_metal", "fg": 285 }, - { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 286 }, + { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 237 }, + { "id": "helmet_motor", "fg": 268 }, + { "id": "katana", "fg": 269 }, + { "id": "katana_fake", "fg": 269 }, + { "id": "katana_inferior", "fg": 269 }, + { "id": "223_casing", "fg": 270 }, + { "id": "40mm_casing", "fg": 271 }, + { "id": "40x46mm_m118_casing", "fg": 271 }, + { "id": "50_casing", "fg": 272 }, + { "id": "9mm_casing", "fg": 273 }, + { "id": "arrow_cf", "fg": 274 }, + { "id": "arrow_exploding", "fg": 275 }, + { "id": "arrow_field_point_fletched", "fg": 276 }, + { "id": "arrow_fire_hardened_fletched", "fg": 277 }, + { "id": "flamable_arrow", "fg": 291 }, + { "id": "arrow_flamming", "fg": 278 }, + { "id": "arrow_heavy_fire_hardened_fletched", "fg": 279 }, + { "id": "arrow_metal", "fg": 280 }, + { "id": "arrow_metal_sharpened_fletched", "fg": 281 }, + { "id": "arrow_plastic", "fg": 282 }, + { "id": "arrow_small_game_fletched", "fg": 283 }, + { "id": "arrow_wood", "fg": 284 }, + { "id": "arrow_wood_heavy", "fg": 285 }, + { "id": "bolt_cf", "fg": 286 }, + { "id": "bolt_explosive", "fg": 287 }, + { "id": "bolt_metal", "fg": 288 }, + { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 289 }, { "id": [ "bolt_wood", @@ -55,62 +55,62 @@ "bolt_wood_bodkin", "bolt_wood_small_game" ], - "fg": 287 - }, - { "id": "shot_hull", "fg": 289 }, - { "id": [ "90two", "90two40" ], "fg": 301 }, - { "id": [ "TDI", "TDI_10" ], "fg": 303 }, - { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 334 }, - { "id": [ "hptjcp", "hptjhp" ], "fg": 340 }, - { "id": [ "m1911", "m1911a1_38super" ], "fg": 351 }, - { "id": "basket_laundry", "fg": 424 }, - { "id": "heavy_battery_cell", "fg": 426 }, - { "id": "heavy_plus_battery_cell", "fg": 426 }, - { "id": "heavy_disposable_cell", "fg": 426 }, - { "id": "heavy_atomic_battery_cell", "fg": 425 }, - { "id": "light_battery_cell", "fg": 428 }, - { "id": "light_minus_battery_cell", "fg": 430 }, - { "id": "light_plus_battery_cell", "fg": 428 }, - { "id": "light_disposable_cell", "fg": 428 }, - { "id": "light_atomic_battery_cell", "fg": 427 }, - { "id": "light_minus_atomic_battery_cell", "fg": 429 }, - { "id": "medium_battery_cell", "fg": 432 }, - { "id": "medium_plus_battery_cell", "fg": 432 }, - { "id": "medium_disposable_cell", "fg": 432 }, - { "id": "medium_atomic_battery_cell", "fg": 431 }, - { "id": "bead_bracelet", "fg": 433 }, - { "id": "bone", "fg": 434 }, - { "id": "bone_human", "fg": 435 }, - { "id": "bone_tainted", "fg": 436 }, - { "id": "SICP", "fg": 437 }, - { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 440 }, - { "id": "book_fict_soft_tpl", "fg": 450 }, - { "id": "novel_adventure", "fg": 450 }, - { "id": "novel_buddy", "fg": 451 }, - { "id": "novel_coa", "fg": 452 }, - { "id": "novel_coa2", "fg": 453 }, - { "id": "novel_crime", "fg": 454 }, - { "id": "novel_crime2", "fg": 455 }, - { "id": "novel_drama", "fg": 456 }, - { "id": "novel_erotic", "fg": 457 }, - { "id": "novel_experimental", "fg": 458 }, - { "id": "novel_fantasy", "fg": 459 }, - { "id": "novel_horror", "fg": 460 }, - { "id": "novel_mystery", "fg": 461 }, - { "id": "novel_pulp", "fg": 462 }, - { "id": "novel_road", "fg": 463 }, - { "id": "novel_romance", "fg": 464 }, - { "id": "novel_samurai", "fg": 465 }, - { "id": "novel_satire", "fg": 466 }, - { "id": "novel_scifi", "fg": 467 }, - { "id": "novel_sports", "fg": 468 }, - { "id": "novel_spy", "fg": 469 }, - { "id": "novel_swash", "fg": 470 }, - { "id": "novel_thriller", "fg": 471 }, - { "id": "novel_tragedy", "fg": 472 }, - { "id": "novel_war", "fg": 473 }, - { "id": "novel_war2", "fg": 474 }, - { "id": "novel_western", "fg": 475 }, + "fg": 290 + }, + { "id": "shot_hull", "fg": 292 }, + { "id": [ "90two", "90two40" ], "fg": 304 }, + { "id": [ "TDI", "TDI_10" ], "fg": 306 }, + { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 337 }, + { "id": [ "hptjcp", "hptjhp" ], "fg": 343 }, + { "id": [ "m1911", "m1911a1_38super" ], "fg": 354 }, + { "id": "basket_laundry", "fg": 427 }, + { "id": "heavy_battery_cell", "fg": 429 }, + { "id": "heavy_plus_battery_cell", "fg": 429 }, + { "id": "heavy_disposable_cell", "fg": 429 }, + { "id": "heavy_atomic_battery_cell", "fg": 428 }, + { "id": "light_battery_cell", "fg": 431 }, + { "id": "light_minus_battery_cell", "fg": 433 }, + { "id": "light_plus_battery_cell", "fg": 431 }, + { "id": "light_disposable_cell", "fg": 431 }, + { "id": "light_atomic_battery_cell", "fg": 430 }, + { "id": "light_minus_atomic_battery_cell", "fg": 432 }, + { "id": "medium_battery_cell", "fg": 435 }, + { "id": "medium_plus_battery_cell", "fg": 435 }, + { "id": "medium_disposable_cell", "fg": 435 }, + { "id": "medium_atomic_battery_cell", "fg": 434 }, + { "id": "bead_bracelet", "fg": 436 }, + { "id": "bone", "fg": 437 }, + { "id": "bone_human", "fg": 438 }, + { "id": "bone_tainted", "fg": 439 }, + { "id": "SICP", "fg": 440 }, + { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 443 }, + { "id": "book_fict_soft_tpl", "fg": 453 }, + { "id": "novel_adventure", "fg": 453 }, + { "id": "novel_buddy", "fg": 454 }, + { "id": "novel_coa", "fg": 455 }, + { "id": "novel_coa2", "fg": 456 }, + { "id": "novel_crime", "fg": 457 }, + { "id": "novel_crime2", "fg": 458 }, + { "id": "novel_drama", "fg": 459 }, + { "id": "novel_erotic", "fg": 460 }, + { "id": "novel_experimental", "fg": 461 }, + { "id": "novel_fantasy", "fg": 462 }, + { "id": "novel_horror", "fg": 463 }, + { "id": "novel_mystery", "fg": 464 }, + { "id": "novel_pulp", "fg": 465 }, + { "id": "novel_road", "fg": 466 }, + { "id": "novel_romance", "fg": 467 }, + { "id": "novel_samurai", "fg": 468 }, + { "id": "novel_satire", "fg": 469 }, + { "id": "novel_scifi", "fg": 470 }, + { "id": "novel_sports", "fg": 471 }, + { "id": "novel_spy", "fg": 472 }, + { "id": "novel_swash", "fg": 473 }, + { "id": "novel_thriller", "fg": 474 }, + { "id": "novel_tragedy", "fg": 475 }, + { "id": "novel_war", "fg": 476 }, + { "id": "novel_war2", "fg": 477 }, + { "id": "novel_western", "fg": 478 }, { "id": [ "adv_chemistry", @@ -130,7 +130,7 @@ "modern_tanner", "repeater_mod_guide" ], - "fg": 442 + "fg": 445 }, { "id": [ @@ -151,7 +151,7 @@ "textbook_robots", "textbook_armschina" ], - "fg": 449 + "fg": 452 }, { "id": [ @@ -166,7 +166,7 @@ "cookbook_daintydishes", "cookbook_liverforkids" ], - "fg": 443 + "fg": 446 }, { "id": [ @@ -179,7 +179,7 @@ "recipe_melee", "recipe_labchem" ], - "fg": 447 + "fg": 450 }, { "id": [ @@ -196,9 +196,9 @@ "recipe_creepy", "recipe_maiar" ], - "fg": 447 + "fg": 450 }, - { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 446 }, + { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 449 }, { "id": [ "mag_rifle", @@ -222,7 +222,7 @@ "mag_swimming", "mag_news" ], - "fg": 444 + "fg": 447 }, { "id": [ @@ -239,7 +239,7 @@ "schematics_searchlight", "schematics_secubot" ], - "fg": 448 + "fg": 451 }, { "id": [ @@ -260,113 +260,113 @@ "manual_shotgun", "manual_fabrication" ], - "fg": 445 + "fg": 448 }, - { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 441 }, - { "id": "bottle_twoliter", "fg": 476 }, - { "id": "bowl_pewter", "fg": 477 }, - { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 568 }, - { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 569 }, - { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 584 }, - { "id": [ "flour", "bread_flour" ], "fg": 607 }, - { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 638 }, - { "id": [ "microscope", "microscope_dissecting" ], "fg": 632 }, - { "id": "digging_stick", "fg": 656 }, - { "id": "sword_cane", "fg": 715 }, - { "id": "hollow_cane", "fg": 692 }, - { "id": "cane", "fg": 718 }, - { "id": "i_staff", "fg": 694 }, - { "id": "shock_staff", "fg": 707 }, - { "id": "q_staff", "fg": 708 }, - { "id": "scarf_fur", "fg": 712 }, - { "id": "knit_scarf", "fg": 695 }, - { "id": "scarf_fur_long", "fg": 713 }, - { "id": "long_knit_scarf", "fg": 696 }, - { "id": "long_patchwork_scarf", "fg": 697 }, - { "id": "scarf_long", "fg": 714 }, - { "id": "patchwork_scarf", "fg": 705 }, - { "id": "scarf", "fg": 711 }, - { "id": "scarf_fur_loose", "fg": 712 }, - { "id": "knit_scarf_loose", "fg": 695 }, - { "id": "scarf_fur_long_loose", "fg": 713 }, - { "id": "long_knit_scarf_loose", "fg": 696 }, - { "id": "long_patchwork_scarf_loose", "fg": 697 }, - { "id": "scarf_long_loose", "fg": 714 }, - { "id": "patchwork_scarf_loose", "fg": 705 }, - { "id": "scarf_loose", "fg": 711 }, - { "id": "ceramic_cup", "fg": 728 }, - { "id": "ceramic_mug", "fg": 729 }, - { "id": "ceramic_shard", "fg": 730 }, - { "id": "chain", "fg": 731 }, - { "id": "clay_lump", "fg": 734 }, - { "id": "bag_plastic", "fg": 735 }, - { "id": "bag_zipper", "fg": 736 }, - { "id": "bottle_glass", "fg": 737 }, - { "id": "bottle_plastic", "fg": 738 }, - { "id": "bottle_plastic_small", "fg": 739 }, - { "id": "box_cigarette", "fg": 740 }, - { "id": "box_small", "fg": 741 }, - { "id": "can_drink", "fg": 742 }, - { "id": "can_drink_unsealed", "fg": 743 }, - { "id": [ "glass", "base_glass_dish" ], "fg": 744 }, - { "id": "jar_3l_glass", "fg": 745 }, - { "id": "jar_3l_glass_sealed", "fg": 746 }, - { "id": "jar_glass", "fg": 747 }, - { "id": "jar_glass_sealed", "fg": 748 }, - { "id": "jug_plastic", "fg": 749 }, - { "id": "wrapper", "fg": 750 }, - { "id": "cudgel", "fg": 751 }, - { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 823 }, - { "id": [ "waffles", "fruit_waffles" ], "fg": 827 }, - { "id": [ "cookies", "crackers", "biscuit" ], "fg": 819 }, - { "id": [ "cake2", "cake3", "space_cake" ], "fg": 818 }, - { "id": "hinge", "fg": 871 }, - { "id": "inhaler", "fg": 872 }, - { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 873 }, - { "id": "cig_butt", "fg": 900 }, - { "id": "joint", "fg": 903 }, - { "id": "joint_lit", "fg": 904 }, - { "id": "joint_roach", "fg": 905 }, - { "id": "aspirin", "fg": 897 }, - { "id": "bandages", "fg": 898 }, - { "id": "syringe", "fg": 909 }, - { "id": "antibiotics", "fg": 894 }, - { "id": "weak_antibiotic", "fg": 912 }, - { "id": "strong_antibiotic", "fg": 908 }, - { "id": "vitamins", "fg": 911 }, - { "id": "gummy_vitamins", "fg": 901 }, - { "id": "calcium_tablet", "fg": 899 }, - { "id": "oxycodone", "fg": 906 }, - { "id": "tramadol", "fg": 910 }, - { "id": "codeine", "fg": 925 }, - { "id": "prussian_blue", "fg": 907 }, - { "id": "iodine", "fg": 902 }, - { "id": "antiparasitic", "fg": 896 }, - { "id": "antifungal", "fg": 895 }, - { "id": "money_bundle", "fg": 913 }, - { "id": "mp3", "fg": 914 }, - { "id": "permanent_marker", "fg": 949 }, - { "id": "pipe", "fg": 951 }, - { "id": "cu_pipe", "fg": 950 }, - { "id": "acorns", "fg": 952 }, - { "id": "chips", "fg": 956 }, - { "id": "apple", "fg": 953 }, - { "id": "banana", "fg": 954 }, - { "id": "broccoli", "fg": 955 }, - { "id": "corn", "fg": 957 }, - { "id": "cucumber", "fg": 958 }, - { "id": "egg_bird", "fg": 959 }, - { "id": "grapes", "fg": 960 }, - { "id": "lemon", "fg": 964 }, - { "id": "onion", "fg": 965 }, - { "id": "orange", "fg": 966 }, - { "id": "pear", "fg": 967 }, - { "id": "potato", "fg": 968 }, - { "id": "pumpkin", "fg": 969 }, - { "id": "tomato", "fg": 972 }, - { "id": "hickory_nut", "fg": 961 }, - { "id": "hickory_root", "fg": 962 }, - { "id": "juniper", "fg": 963 }, + { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 444 }, + { "id": "bottle_twoliter", "fg": 479 }, + { "id": "bowl_pewter", "fg": 480 }, + { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 572 }, + { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 573 }, + { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 589 }, + { "id": [ "flour", "bread_flour" ], "fg": 612 }, + { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 643 }, + { "id": [ "microscope", "microscope_dissecting" ], "fg": 637 }, + { "id": "digging_stick", "fg": 661 }, + { "id": "sword_cane", "fg": 720 }, + { "id": "hollow_cane", "fg": 697 }, + { "id": "cane", "fg": 723 }, + { "id": "i_staff", "fg": 699 }, + { "id": "shock_staff", "fg": 712 }, + { "id": "q_staff", "fg": 713 }, + { "id": "scarf_fur", "fg": 717 }, + { "id": "knit_scarf", "fg": 700 }, + { "id": "scarf_fur_long", "fg": 718 }, + { "id": "long_knit_scarf", "fg": 701 }, + { "id": "long_patchwork_scarf", "fg": 702 }, + { "id": "scarf_long", "fg": 719 }, + { "id": "patchwork_scarf", "fg": 710 }, + { "id": "scarf", "fg": 716 }, + { "id": "scarf_fur_loose", "fg": 717 }, + { "id": "knit_scarf_loose", "fg": 700 }, + { "id": "scarf_fur_long_loose", "fg": 718 }, + { "id": "long_knit_scarf_loose", "fg": 701 }, + { "id": "long_patchwork_scarf_loose", "fg": 702 }, + { "id": "scarf_long_loose", "fg": 719 }, + { "id": "patchwork_scarf_loose", "fg": 710 }, + { "id": "scarf_loose", "fg": 716 }, + { "id": "ceramic_cup", "fg": 733 }, + { "id": "ceramic_mug", "fg": 734 }, + { "id": "ceramic_shard", "fg": 735 }, + { "id": "chain", "fg": 736 }, + { "id": "clay_lump", "fg": 739 }, + { "id": "bag_plastic", "fg": 740 }, + { "id": "bag_zipper", "fg": 741 }, + { "id": "bottle_glass", "fg": 742 }, + { "id": "bottle_plastic", "fg": 743 }, + { "id": "bottle_plastic_small", "fg": 744 }, + { "id": "box_cigarette", "fg": 745 }, + { "id": "box_small", "fg": 746 }, + { "id": "can_drink", "fg": 747 }, + { "id": "can_drink_unsealed", "fg": 748 }, + { "id": [ "glass", "base_glass_dish" ], "fg": 749 }, + { "id": "jar_3l_glass", "fg": 750 }, + { "id": "jar_3l_glass_sealed", "fg": 751 }, + { "id": "jar_glass", "fg": 752 }, + { "id": "jar_glass_sealed", "fg": 753 }, + { "id": "jug_plastic", "fg": 754 }, + { "id": "wrapper", "fg": 755 }, + { "id": "cudgel", "fg": 756 }, + { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 828 }, + { "id": [ "waffles", "fruit_waffles" ], "fg": 832 }, + { "id": [ "cookies", "crackers", "biscuit" ], "fg": 824 }, + { "id": [ "cake2", "cake3", "space_cake" ], "fg": 823 }, + { "id": "hinge", "fg": 876 }, + { "id": "inhaler", "fg": 877 }, + { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 878 }, + { "id": "cig_butt", "fg": 905 }, + { "id": "joint", "fg": 908 }, + { "id": "joint_lit", "fg": 909 }, + { "id": "joint_roach", "fg": 910 }, + { "id": "aspirin", "fg": 902 }, + { "id": "bandages", "fg": 903 }, + { "id": "syringe", "fg": 914 }, + { "id": "antibiotics", "fg": 899 }, + { "id": "weak_antibiotic", "fg": 917 }, + { "id": "strong_antibiotic", "fg": 913 }, + { "id": "vitamins", "fg": 916 }, + { "id": "gummy_vitamins", "fg": 906 }, + { "id": "calcium_tablet", "fg": 904 }, + { "id": "oxycodone", "fg": 911 }, + { "id": "tramadol", "fg": 915 }, + { "id": "codeine", "fg": 930 }, + { "id": "prussian_blue", "fg": 912 }, + { "id": "iodine", "fg": 907 }, + { "id": "antiparasitic", "fg": 901 }, + { "id": "antifungal", "fg": 900 }, + { "id": "money_bundle", "fg": 918 }, + { "id": "mp3", "fg": 919 }, + { "id": "permanent_marker", "fg": 954 }, + { "id": "pipe", "fg": 956 }, + { "id": "cu_pipe", "fg": 955 }, + { "id": "acorns", "fg": 957 }, + { "id": "chips", "fg": 961 }, + { "id": "apple", "fg": 958 }, + { "id": "banana", "fg": 959 }, + { "id": "broccoli", "fg": 960 }, + { "id": "corn", "fg": 962 }, + { "id": "cucumber", "fg": 963 }, + { "id": "egg_bird", "fg": 964 }, + { "id": "grapes", "fg": 965 }, + { "id": "lemon", "fg": 969 }, + { "id": "onion", "fg": 970 }, + { "id": "orange", "fg": 971 }, + { "id": "pear", "fg": 972 }, + { "id": "potato", "fg": 973 }, + { "id": "pumpkin", "fg": 974 }, + { "id": "tomato", "fg": 977 }, + { "id": "hickory_nut", "fg": 966 }, + { "id": "hickory_root", "fg": 967 }, + { "id": "juniper", "fg": 968 }, { "id": [ "seed_hops", @@ -434,73 +434,73 @@ "seed_mulberries", "seed_elderberries" ], - "fg": 970 - }, - { "id": "straw_pile", "fg": 971 }, - { "id": "wheat", "fg": 973 }, - { "id": "withered", "fg": 974 }, - { "id": "bee_balm", "fg": 975 }, - { "id": "carrot_wild", "fg": 976 }, - { "id": "dogbane", "fg": 977 }, - { "id": "egg_reptile", "fg": 978 }, - { "id": "mugwort", "fg": 979 }, - { "id": "thyme", "fg": 980 }, - { "id": "veggy_wild", "fg": 981 }, - { "id": "wild_herbs", "fg": 982 }, - { "id": "feces_manure", "fg": 986 }, - { "id": "feces_bird", "fg": 983 }, - { "id": "feces_cow", "fg": 984 }, - { "id": "feces_dog", "fg": 985 }, - { "id": "feces_roach", "fg": 987 }, - { "id": "fetid_goop", "fg": 988 }, - { "id": "rag_bloody", "fg": 991 }, - { "id": "ash", "fg": 1041 }, - { "id": "brick", "fg": 1042 }, - { "id": "scrap", "fg": 1045 }, - { "id": "e_scrap", "fg": 1044 }, - { "id": "steel_chunk", "fg": 1046 }, - { "id": "steel_lump", "fg": 1047 }, - { "id": "wire", "fg": 1048 }, - { "id": "cable", "fg": 1043 }, - { "id": "spring", "fg": 1050 }, - { "id": "survnote", "fg": 1051 }, - { "id": "creepy_doll", "fg": 1052 }, - { "id": "talking_doll", "fg": 1052 }, - { "id": "teapot", "fg": 1054 }, - { "id": "thermometer", "fg": 1055 }, - { "id": "crucible_clay", "fg": 1057 }, - { "id": "flashlight", "fg": 1059 }, - { "id": "heavy_flashlight", "fg": 1062 }, - { "id": "saw", "fg": 1072 }, - { "id": "screwdriver_set", "fg": 1068 }, - { "id": "wrench", "fg": 1073 }, - { "id": "hammer", "fg": 1061 }, - { "id": "hacksaw", "fg": 1060 }, - { "id": "knife_meat_cleaver", "fg": 1067 }, - { "id": "knife_vegetable_cleaver", "fg": 1071 }, + "fg": 975 + }, + { "id": "straw_pile", "fg": 976 }, + { "id": "wheat", "fg": 978 }, + { "id": "withered", "fg": 979 }, + { "id": "bee_balm", "fg": 980 }, + { "id": "carrot_wild", "fg": 981 }, + { "id": "dogbane", "fg": 982 }, + { "id": "egg_reptile", "fg": 983 }, + { "id": "mugwort", "fg": 984 }, + { "id": "thyme", "fg": 985 }, + { "id": "veggy_wild", "fg": 986 }, + { "id": "wild_herbs", "fg": 987 }, + { "id": "feces_manure", "fg": 991 }, + { "id": "feces_bird", "fg": 988 }, + { "id": "feces_cow", "fg": 989 }, + { "id": "feces_dog", "fg": 990 }, + { "id": "feces_roach", "fg": 992 }, + { "id": "fetid_goop", "fg": 993 }, + { "id": "rag_bloody", "fg": 996 }, + { "id": "ash", "fg": 1046 }, + { "id": "brick", "fg": 1047 }, + { "id": "scrap", "fg": 1050 }, + { "id": "e_scrap", "fg": 1049 }, + { "id": "steel_chunk", "fg": 1051 }, + { "id": "steel_lump", "fg": 1052 }, + { "id": "wire", "fg": 1053 }, + { "id": "cable", "fg": 1048 }, + { "id": "spring", "fg": 1055 }, + { "id": "survnote", "fg": 1056 }, + { "id": "creepy_doll", "fg": 1057 }, + { "id": "talking_doll", "fg": 1057 }, + { "id": "teapot", "fg": 1059 }, + { "id": "thermometer", "fg": 1060 }, + { "id": "crucible_clay", "fg": 1062 }, + { "id": "flashlight", "fg": 1064 }, + { "id": "heavy_flashlight", "fg": 1067 }, + { "id": "saw", "fg": 1077 }, + { "id": "screwdriver_set", "fg": 1073 }, + { "id": "wrench", "fg": 1078 }, + { "id": "hammer", "fg": 1066 }, + { "id": "hacksaw", "fg": 1065 }, + { "id": "knife_meat_cleaver", "fg": 1072 }, + { "id": "knife_vegetable_cleaver", "fg": 1076 }, { "id": "lighter", - "fg": [ { "weight": 1, "sprite": 1064 }, { "weight": 1, "sprite": 1063 }, { "weight": 1, "sprite": 1065 } ] - }, - { "id": "makeshift_crowbar", "fg": 1066 }, - { "id": "esbit_stove", "fg": 1058 }, - { "id": "usb_drive", "fg": 1070 }, - { "id": "cash_card", "fg": 1074 }, - { "id": "file", "fg": 1075 }, - { "id": "fp_loyalty_card", "fg": 1076 }, - { "id": "id_industrial", "fg": 1077 }, - { "id": "id_military", "fg": 1078 }, - { "id": "id_science", "fg": 1079 }, - { "id": "bowl_plastic", "fg": 1080 }, - { "id": "cup_plastic", "fg": 1081 }, - { "id": "fork", "fg": 1082 }, - { "id": "knife_butter", "fg": 1083 }, - { "id": "washboard", "fg": 1090 }, - { "id": "wash_kit", "fg": 1089 }, - { "id": "helmet_army", "fg": 1095 }, - { "id": "foodperson_mask", "fg": 1093 }, - { "id": "foodperson_mask_on", "fg": 1094 }, - { "id": "ballistic_vest_esapi", "fg": 1092 }, + "fg": [ { "weight": 1, "sprite": 1069 }, { "weight": 1, "sprite": 1068 }, { "weight": 1, "sprite": 1070 } ] + }, + { "id": "makeshift_crowbar", "fg": 1071 }, + { "id": "esbit_stove", "fg": 1063 }, + { "id": "usb_drive", "fg": 1075 }, + { "id": "cash_card", "fg": 1079 }, + { "id": "file", "fg": 1080 }, + { "id": "fp_loyalty_card", "fg": 1081 }, + { "id": "id_industrial", "fg": 1082 }, + { "id": "id_military", "fg": 1083 }, + { "id": "id_science", "fg": 1084 }, + { "id": "bowl_plastic", "fg": 1085 }, + { "id": "cup_plastic", "fg": 1086 }, + { "id": "fork", "fg": 1087 }, + { "id": "knife_butter", "fg": 1088 }, + { "id": "washboard", "fg": 1095 }, + { "id": "wash_kit", "fg": 1094 }, + { "id": "helmet_army", "fg": 1100 }, + { "id": "foodperson_mask", "fg": 1098 }, + { "id": "foodperson_mask_on", "fg": 1099 }, + { "id": "ballistic_vest_esapi", "fg": 1097 }, { "id": "saddle", "fg": 1 }, { "id": "blt", "fg": 4 }, { "id": "brain_cooked", "fg": 5 }, @@ -682,1273 +682,1307 @@ { "id": "matches", "fg": 185 }, { "id": "material_shrd_limestone", "fg": 186 }, { "id": "mbag", "fg": 187 }, - { "id": "mess_tin", "fg": 188 }, - { "id": "meth", "fg": 189 }, - { "id": "morphine", "fg": 190 }, - { "id": "mortar_pestle", "fg": 191 }, - { "id": "motor_tiny", "fg": 192 }, - { "id": "mouthpiece", "fg": 193 }, - { "id": "office_holepunch", "fg": 194 }, - { "id": "omnicamera", "fg": 195 }, - { "id": "p_paint", "fg": 196 }, - { "id": "paint_brush", "fg": 197 }, - { "id": "pan", "fg": 198 }, - { "id": "paper", "fg": 199 }, - { "id": "peeler", "fg": 200 }, - { "id": "pipe_fittings", "fg": 201 }, - { "id": "plastic_pot_flower", "fg": 202 }, - { "id": "pliers", "fg": 203 }, - { "id": "plums", "fg": 204 }, - { "id": "pot", "fg": 205 }, - { "id": "pot_canning", "fg": 206 }, - { "id": "pot_copper", "fg": 207 }, - { "id": "pot_helmet", "fg": 208 }, - { "id": "pot_makeshift", "fg": 209 }, - { "id": "pot_makeshift_copper", "fg": 210 }, - { "id": "potato_masher", "fg": 211 }, - { "id": "r_paint", "fg": 212 }, - { "id": "reading_light", "fg": 213 }, - { "id": "reading_light_on", "fg": 214 }, - { "id": "receiver", "fg": 215 }, - { "id": "reinforced_glass_pane", "fg": 216 }, - { "id": "rolling_pin", "fg": 217 }, - { "id": "scrap_bronze", "fg": 218 }, - { "id": "scrap_felt", "fg": 219 }, - { "id": "sheet_felt", "fg": 220 }, - { "id": "sheet_felt_patchwork", "fg": 221 }, - { "id": "shocktonfa_off", "fg": 222 }, - { "id": "shocktonfa_on", "fg": 223 }, - { "id": "slingpack", "fg": 224 }, - { "id": "smart_phone", "fg": 225 }, - { "id": "soap", "fg": 226 }, - { "id": "solder_wire", "fg": 227 }, - { "id": "spatula", "fg": 228 }, - { "id": "spider_egg", "fg": 229 }, - { "id": "spike", "fg": 230 }, - { "id": "steel_armor", "fg": 231 }, - { "id": "steel_pan", "fg": 232 }, - { "id": "stethoscope", "fg": 233 }, - { "id": "stock_pot", "fg": 234 }, - { "id": "swage", "fg": 236 }, - { "id": "tazer", "fg": 237 }, - { "id": "teleumbrella", "fg": 238 }, - { "id": "tinder", "fg": 239 }, - { "id": "tinderbox", "fg": 240 }, - { "id": "tinfoil_hat", "fg": 241 }, - { "id": "tonfa", "fg": 242 }, - { "id": "tonfa_wood", "fg": 243 }, - { "id": "tongs", "fg": 244 }, - { "id": "unfinished_charcoal", "fg": 245 }, - { "id": "w_paint", "fg": 246 }, - { "id": "water_purifier", "fg": 247 }, - { "id": "wheel", "fg": 248 }, - { "id": "wheel_10", "fg": 249 }, - { "id": "wheel_barrow", "fg": 250 }, - { "id": "wheel_bicycle", "fg": 251 }, - { "id": "wheel_bicycle_or", "fg": 252 }, - { "id": "wheel_motorbike", "fg": 253 }, - { "id": "wheel_motorbike_or", "fg": 254 }, - { "id": "wheel_skate", "fg": 255 }, - { "id": "wheel_slick", "fg": 256 }, - { "id": "wheel_small", "fg": 257 }, - { "id": "wheel_tricycle", "fg": 258 }, - { "id": "wheel_wheelchair", "fg": 259 }, - { "id": "whisk", "fg": 260 }, - { "id": "wine_glass", "fg": 261 }, - { "id": "wire_barbed", "fg": 262 }, - { "id": "y_paint", "fg": 263 }, - { "id": "halligan", "fg": 264 }, - { "id": "cig", "fg": 290 }, - { "id": "cig_lit", "fg": 291 }, - { "id": "copper_ring", "fg": 292 }, - { "id": "g_shovel", "fg": 293 }, - { "id": "lsd", "fg": 294 }, - { "id": "silver_ring", "fg": 295 }, - { "id": "thermal_mask", "fg": 296 }, - { "id": "thermal_socks", "fg": 297 }, - { "id": "tie_clipon", "fg": 298 }, - { "id": "whistle", "fg": 299 }, - { "id": "2_shot_special", "fg": 300 }, - { "id": "LAW_Packed", "fg": 302 }, - { "id": "af2011a1_38super", "fg": 304 }, - { "id": "ar_pistol", "fg": 305 }, - { "id": "ashot", "fg": 306 }, - { "id": "bfr", "fg": 307 }, - { "id": "bigun", "fg": 308 }, - { "id": "bond_410", "fg": 309 }, - { "id": "bt_apc9k", "fg": 310 }, - { "id": "colt_army", "fg": 311 }, - { "id": "colt_navy", "fg": 312 }, - { "id": "colt_saa", "fg": 313 }, - { "id": "cop_38", "fg": 314 }, - { "id": "cz75", "fg": 315 }, - { "id": "deagle_44", "fg": 316 }, - { "id": "draco", "fg": 317 }, - { "id": "flamethrower_crude", "fg": 318 }, - { "id": "flamethrower_simple", "fg": 319 }, - { "id": "fn1910", "fg": 320 }, - { "id": "fn57", "fg": 321 }, - { "id": "fn_p90", "fg": 322 }, - { "id": "glock_17", "fg": 323 }, - { "id": "glock_18c", "fg": 324 }, - { "id": "glock_19", "fg": 325 }, - { "id": "glock_20", "fg": 326 }, - { "id": "glock_20_var_glock_40", "fg": 327 }, - { "id": "glock_21", "fg": 328 }, - { "id": "glock_22", "fg": 329 }, - { "id": "glock_29", "fg": 330 }, - { "id": "glock_31", "fg": 331 }, - { "id": "hi_power_40", "fg": 332 }, - { "id": "hi_power_9mm", "fg": 333 }, - { "id": "hk_mp5_semi_pistol", "fg": 335 }, - { "id": "hk_mp7", "fg": 336 }, - { "id": "hk_ump45", "fg": 337 }, - { "id": "hptc9", "fg": 338 }, - { "id": "hptcf380", "fg": 339 }, - { "id": "kp32", "fg": 341 }, - { "id": "kp3at", "fg": 342 }, - { "id": "kpf9", "fg": 343 }, - { "id": "l_bak_223", "fg": 344 }, - { "id": "launcher_simple", "fg": 345 }, - { "id": "lemat_revolver", "fg": 346 }, - { "id": "m11", "fg": 347 }, - { "id": "m17", "fg": 348 }, - { "id": "m18", "fg": 349 }, - { "id": "m1911-460", "fg": 350 }, - { "id": "m1911_10", "fg": 352 }, - { "id": "m1911_var_m1911_MEU", "fg": 353 }, - { "id": "m320", "fg": 354 }, - { "id": "m4_carbine_var_m4_cqbr", "fg": 355 }, - { "id": "m9", "fg": 356 }, - { "id": "mac_10", "fg": 357 }, - { "id": "mac_11", "fg": 358 }, - { "id": "makarov", "fg": 359 }, - { "id": "mauser_c96", "fg": 360 }, - { "id": "mauser_m714", "fg": 361 }, - { "id": "mgl", "fg": 362 }, - { "id": "minispeargun", "fg": 363 }, - { "id": "model_10_revolver", "fg": 364 }, - { "id": "moss_brownie", "fg": 365 }, - { "id": "nailgun", "fg": 366 }, - { "id": "nailrifle", "fg": 367 }, - { "id": "needlepistol", "fg": 368 }, - { "id": "oa93", "fg": 369 }, - { "id": "p08", "fg": 370 }, - { "id": "p220_10", "fg": 371 }, - { "id": "p226_357sig", "fg": 372 }, - { "id": "p226_9mm", "fg": 373 }, - { "id": "p320_357sig", "fg": 374 }, - { "id": "paintballgun", "fg": 375 }, - { "id": "pipe_double_shotgun", "fg": 376 }, - { "id": "pistol_flintlock", "fg": 377 }, - { "id": "px4", "fg": 378 }, - { "id": "px4_40", "fg": 379 }, - { "id": "raging_bull", "fg": 380 }, - { "id": "raging_judge", "fg": 381 }, - { "id": "revolver_shotgun", "fg": 382 }, - { "id": "rm103a_pistol", "fg": 383 }, - { "id": "rm2000_smg", "fg": 384 }, - { "id": "rm228", "fg": 385 }, - { "id": "ruger_lcr_22", "fg": 386 }, - { "id": "ruger_lcr_38", "fg": 387 }, - { "id": "ruger_redhawk", "fg": 388 }, - { "id": "rugerlcp", "fg": 389 }, - { "id": "sig_40", "fg": 390 }, - { "id": "sig_mosquito", "fg": 391 }, - { "id": "sig_p230", "fg": 392 }, - { "id": "skorpion_61", "fg": 393 }, - { "id": "smg_40", "fg": 394 }, - { "id": "smg_45", "fg": 395 }, - { "id": "sp2022", "fg": 396 }, - { "id": "streetsweeper", "fg": 397 }, - { "id": "surv_hand_cannon", "fg": 398 }, - { "id": "surv_six_shooter", "fg": 399 }, - { "id": "sw629", "fg": 400 }, - { "id": "sw_22", "fg": 401 }, - { "id": "sw_500", "fg": 402 }, - { "id": "sw_610", "fg": 403 }, - { "id": "sw_619", "fg": 404 }, - { "id": "taurus_spectrum", "fg": 405 }, - { "id": "tec9", "fg": 406 }, - { "id": "tokarev", "fg": 407 }, - { "id": "triple_launcher_simple", "fg": 408 }, - { "id": "unbio_blaster_gun", "fg": 409 }, - { "id": "usp_45", "fg": 410 }, - { "id": "usp_45_var_mk23", "fg": 411 }, - { "id": "usp_9mm", "fg": 412 }, - { "id": "uzi", "fg": 413 }, - { "id": "v29", "fg": 414 }, - { "id": "v29_cheap", "fg": 415 }, - { "id": "walther_ccp", "fg": 416 }, - { "id": "walther_p22", "fg": 417 }, - { "id": "walther_p38", "fg": 418 }, - { "id": "walther_ppq_40", "fg": 419 }, - { "id": "walther_ppq_45", "fg": 420 }, - { "id": "walther_ppq_9mm", "fg": 421 }, - { "id": "witness_10", "fg": 422 }, - { "id": "xd_10", "fg": 423 }, - { "id": "book_pieces", "fg": 438 }, - { "id": "book_ruined", "fg": 439 }, - { "id": "button_plastic", "fg": 478 }, - { "id": "button_steel", "fg": 479 }, - { "id": "button_wood", "fg": 480 }, - { "id": "antenna", "fg": 481 }, - { "id": "badge_deputy", "fg": 482 }, - { "id": "coconut", "fg": 483 }, - { "id": "directional_antenna", "fg": 484 }, - { "id": "halter_top", "fg": 485 }, - { "id": "hand_crank_charger", "fg": 486 }, - { "id": "hops", "fg": 487 }, - { "id": "kidney", "fg": 488 }, - { "id": "lettuce", "fg": 489 }, - { "id": "lily_flower", "fg": 490 }, - { "id": "scorecard", "fg": 491 }, - { "id": "spinach", "fg": 492 }, - { "id": "altered_comb", "fg": 493 }, - { "id": "gasdiscount_gold", "fg": 494 }, - { "id": "gasdiscount_platinum", "fg": 495 }, - { "id": "gasdiscount_silver", "fg": 496 }, - { "id": "gold_hairpin", "fg": 497 }, - { "id": "nanoskirt", "fg": 498 }, - { "id": "pearl", "fg": 499 }, - { "id": "platinum_ring", "fg": 500 }, - { "id": "skirt_grass", "fg": 501 }, - { "id": "skirt_leather", "fg": 502 }, - { "id": "wallet_leather", "fg": 503 }, - { "id": "copper_necklace", "fg": 504 }, - { "id": "pearl_collar", "fg": 505 }, - { "id": "alexandrite_gold_pendant_necklace", "fg": 506 }, - { "id": "amethyst_gold_pendant_necklace", "fg": 507 }, - { "id": "aquamarine_gold_pendant_necklace", "fg": 508 }, - { "id": "blue_topaz_gold_pendant_necklace", "fg": 509 }, - { "id": "citrine_gold_pendant_necklace", "fg": 510 }, - { "id": "diamond_gold_pendant_necklace", "fg": 511 }, - { "id": "emerald_gold_pendant_necklace", "fg": 512 }, - { "id": "garnet_gold_pendant_necklace", "fg": 513 }, - { "id": "gold_necklace", "fg": 514 }, - { "id": "opal_gold_pendant_necklace", "fg": 515 }, - { "id": "pearl_gold_pendant_necklace", "fg": 516 }, - { "id": "peridot_gold_pendant_necklace", "fg": 517 }, - { "id": "ruby_gold_pendant_necklace", "fg": 518 }, - { "id": "sapphire_gold_pendant_necklace", "fg": 519 }, - { "id": "tourmaline_gold_pendant_necklace", "fg": 520 }, - { "id": "alexandrite_platinum_pendant_necklace", "fg": 521 }, - { "id": "amethyst_platinum_pendant_necklace", "fg": 522 }, - { "id": "aquamarine_platinum_pendant_necklace", "fg": 523 }, - { "id": "blue_topaz_platinum_pendant_necklace", "fg": 524 }, - { "id": "citrine_platinum_pendant_necklace", "fg": 525 }, - { "id": "diamond_platinum_pendant_necklace", "fg": 526 }, - { "id": "emerald_platinum_pendant_necklace", "fg": 527 }, - { "id": "garnet_platinum_pendant_necklace", "fg": 528 }, - { "id": "opal_platinum_pendant_necklace", "fg": 529 }, - { "id": "pearl_platinum_pendant_necklace", "fg": 530 }, - { "id": "peridot_platinum_pendant_necklace", "fg": 531 }, - { "id": "platinum_necklace", "fg": 532 }, - { "id": "ruby_platinum_pendant_necklace", "fg": 533 }, - { "id": "sapphire_platinum_pendant_necklace", "fg": 534 }, - { "id": "tourmaline_platinum_pendant_necklace", "fg": 535 }, - { "id": "alexandrite_silver_pendant_necklace", "fg": 536 }, - { "id": "amethyst_silver_pendant_necklace", "fg": 537 }, - { "id": "aquamarine_silver_pendant_necklace", "fg": 538 }, - { "id": "blue_topaz_silver_pendant_necklace", "fg": 539 }, - { "id": "citrine_silver_pendant_necklace", "fg": 540 }, - { "id": "diamond_silver_pendant_necklace", "fg": 541 }, - { "id": "emerald_silver_pendant_necklace", "fg": 542 }, - { "id": "garnet_silver_pendant_necklace", "fg": 543 }, - { "id": "opal_silver_pendant_necklace", "fg": 544 }, - { "id": "pearl_silver_pendant_necklace", "fg": 545 }, - { "id": "peridot_silver_pendant_necklace", "fg": 546 }, - { "id": "ruby_silver_pendant_necklace", "fg": 547 }, - { "id": "sapphire_silver_pendant_necklace", "fg": 548 }, - { "id": "silver_necklace", "fg": 549 }, - { "id": "tourmaline_silver_pendant_necklace", "fg": 550 }, - { "id": "alder_bark", "fg": 551 }, - { "id": "barrette", "fg": 552 }, - { "id": "birchbark", "fg": 553 }, - { "id": "caff_gum", "fg": 554 }, - { "id": "cattail_stalk", "fg": 555 }, - { "id": "golf_tee", "fg": 556 }, - { "id": "gum", "fg": 557 }, - { "id": "hand_pump", "fg": 558 }, - { "id": "ifak_pouch", "fg": 559 }, - { "id": "knitting_needles", "fg": 560 }, - { "id": "lasagne", "fg": 561 }, - { "id": "magnifying_glass", "fg": 562 }, - { "id": "mininuke", "fg": 563 }, - { "id": "mininuke_act", "fg": 564 }, - { "id": "net", "fg": 565 }, - { "id": "rolling_paper", "fg": 566 }, - { "id": "tanbark", "fg": 567 }, - { "id": "willowbark", "fg": 570 }, - { "id": "deck_of_cards", "fg": 571 }, - { "id": "hairpin", "fg": 572 }, - { "id": "weed", "fg": 573 }, - { "id": "ceramic_bowl", "fg": 574 }, - { "id": "chestrig", "fg": 575 }, - { "id": "radio_car", "fg": 576 }, - { "id": "radio_car_box", "fg": 577 }, - { "id": "radio_car_on", "fg": 578 }, - { "id": "radio_car_wheel", "fg": 579 }, - { "id": "radiocontrol", "fg": 580 }, - { "id": "rc_car_box", "fg": 581 }, - { "id": "toaster", "fg": 582 }, - { "id": "xl_chestrig", "fg": 583 }, - { "id": "alternator_truck", "fg": 585 }, - { "id": "ammolink", "fg": 586 }, - { "id": "angle_grinder", "fg": 587 }, - { "id": "atomic_lamp", "fg": 588 }, - { "id": "atomic_lamp_off", "fg": 589 }, - { "id": "barometer", "fg": 590 }, - { "id": "birdfood", "fg": 591 }, - { "id": "bismuth", "fg": 592 }, - { "id": "brick_kiln", "fg": 593 }, - { "id": "caffeine", "fg": 594 }, - { "id": "camera", "fg": 595 }, - { "id": "chem_citric_acid", "fg": 596 }, - { "id": "chem_sulphur", "fg": 597 }, - { "id": "chunk_sulfur", "fg": 598 }, - { "id": "circsaw_off", "fg": 599 }, - { "id": "circsaw_on", "fg": 600 }, - { "id": "coal_lump", "fg": 601 }, - { "id": "con_mix", "fg": 602 }, - { "id": "disc_golf", "fg": 603 }, - { "id": "drivebelt", "fg": 604 }, - { "id": "eink_tablet_pc", "fg": 605 }, - { "id": "flatbread", "fg": 606 }, - { "id": "gelbox", "fg": 608 }, - { "id": "generator_7500w", "fg": 609 }, - { "id": "glowstick", "fg": 610 }, - { "id": "glowstick_dead", "fg": 611 }, - { "id": "glowstick_lit", "fg": 612 }, - { "id": "gold_small", "fg": 613 }, - { "id": "golf_club", "fg": 614 }, - { "id": "handflare", "fg": 615 }, - { "id": "heatpack", "fg": 616 }, - { "id": "heatpack_used", "fg": 617 }, - { "id": "hoe", "fg": 618 }, - { "id": "homeopathic_pills", "fg": 619 }, - { "id": "horn_bicycle", "fg": 620 }, - { "id": "jumper_cable", "fg": 621 }, - { "id": "kiln", "fg": 622 }, - { "id": "lead", "fg": 623 }, - { "id": "leather", "fg": 624 }, - { "id": "lightstrip", "fg": 625 }, - { "id": "material_aluminium_ingot", "fg": 626 }, - { "id": "material_limestone", "fg": 627 }, - { "id": "material_rhodonite", "fg": 628 }, - { "id": "material_rocksalt", "fg": 629 }, - { "id": "material_zincite", "fg": 630 }, - { "id": "metal_smoother", "fg": 631 }, - { "id": "multitool", "fg": 633 }, - { "id": "nic_gum", "fg": 634 }, - { "id": "pencil", "fg": 635 }, - { "id": "pipe_cleaner", "fg": 636 }, - { "id": "pipe_glass", "fg": 637 }, - { "id": "platinum_small", "fg": 639 }, - { "id": "polisher", "fg": 640 }, - { "id": "press", "fg": 641 }, - { "id": "puller", "fg": 642 }, - { "id": "rake", "fg": 643 }, - { "id": "razorclaw_roe", "fg": 644 }, - { "id": "sickle", "fg": 645 }, - { "id": "silver_small", "fg": 646 }, - { "id": "small_repairkit", "fg": 647 }, - { "id": "tanned_hide", "fg": 648 }, - { "id": "tanned_pelt", "fg": 649 }, - { "id": "tourist_table", "fg": 650 }, - { "id": "zinc_metal", "fg": 651 }, - { "id": "beartrap", "fg": 652 }, - { "id": "tr_beartrap", "fg": 653 }, - { "id": "wire_mesh", "fg": 654 }, - { "id": "cannabis", "fg": 655 }, - { "id": "dnd_handbook", "fg": 657 }, - { "id": "holybook_bible1", "fg": 658 }, - { "id": "holybook_bible3", "fg": 659 }, - { "id": "l-stick", "fg": 660 }, - { "id": "l-stick_on", "fg": 661 }, - { "id": "makarovmag", "fg": 662 }, - { "id": "manual_brawl", "fg": 663 }, - { "id": "manual_carpentry", "fg": 664 }, - { "id": "manual_dodge_kid", "fg": 665 }, - { "id": "manual_driving", "fg": 666 }, - { "id": "manual_melee", "fg": 667 }, - { "id": "philosophy_book", "fg": 668 }, - { "id": "phonebook", "fg": 669 }, - { "id": "photo_album", "fg": 670 }, - { "id": "plastic_bucket", "fg": 671 }, - { "id": "record_weather", "fg": 672 }, - { "id": "straw_fedora", "fg": 673 }, - { "id": "textbook_computer", "fg": 674 }, - { "id": "textbook_fabrication", "fg": 675 }, - { "id": "textbook_survival", "fg": 676 }, - { "id": "water_faucet", "fg": 677 }, - { "id": "can_food", "fg": 678 }, - { "id": "can_food_big", "fg": 679 }, - { "id": "can_food_big_unsealed", "fg": 680 }, - { "id": "can_food_unsealed", "fg": 681 }, - { "id": "can_medium", "fg": 682 }, - { "id": "can_medium_unsealed", "fg": 683 }, - { "id": "clamp", "fg": 684 }, - { "id": "crude_picklock", "fg": 685 }, - { "id": "cured_hide", "fg": 686 }, - { "id": "cured_pelt", "fg": 687 }, - { "id": "demihuman_fat", "fg": 688 }, - { "id": "fat", "fg": 689 }, - { "id": "fat_tainted", "fg": 690 }, - { "id": "headscarf", "fg": 691 }, - { "id": "human_fat", "fg": 693 }, - { "id": "marloss_scarf", "fg": 698 }, - { "id": "meat", "fg": 699 }, - { "id": "meat_tainted", "fg": 700 }, - { "id": "mutant_fat", "fg": 701 }, - { "id": "mutant_human_fat", "fg": 702 }, - { "id": "mutant_human_flesh", "fg": 703 }, - { "id": "mutant_meat", "fg": 704 }, - { "id": "pipe_tobacco", "fg": 706 }, - { "id": "raw_fur", "fg": 709 }, - { "id": "raw_leather", "fg": 710 }, - { "id": "tanning_hide", "fg": 716 }, - { "id": "tanning_pelt", "fg": 717 }, - { "id": "analytical_set_basic", "fg": 719 }, - { "id": "balance_small", "fg": 720 }, - { "id": "beaker", "fg": 721 }, - { "id": "flask_glass", "fg": 722 }, - { "id": "gradcylinder", "fg": 723 }, - { "id": "ph_meter", "fg": 724 }, - { "id": "spectrophotometer", "fg": 725 }, - { "id": "test_tube", "fg": 726 }, - { "id": "voltmeter", "fg": 727 }, - { "id": "acidchitin_piece", "fg": 732 }, - { "id": "chitin_piece", "fg": 733 }, - { "id": "coin_dime", "fg": 752 }, - { "id": "coin_dollar", "fg": 753 }, - { "id": "coin_half_dollar", "fg": 754 }, - { "id": "coin_nickel", "fg": 755 }, - { "id": "coin_penny", "fg": 756 }, - { "id": "coin_quarter", "fg": 757 }, - { "id": "money_fifty", "fg": 758 }, - { "id": "money_five", "fg": 759 }, - { "id": "money_hundred", "fg": 760 }, - { "id": "money_one", "fg": 761 }, - { "id": "money_ten", "fg": 762 }, - { "id": "money_twenty", "fg": 763 }, - { "id": "money_two", "fg": 764 }, - { "id": "alexandrite_gold_earring", "fg": 765 }, - { "id": "alexandrite_platinum_earring", "fg": 766 }, - { "id": "alexandrite_silver_earring", "fg": 767 }, - { "id": "amethyst_gold_earring", "fg": 768 }, - { "id": "amethyst_platinum_earring", "fg": 769 }, - { "id": "amethyst_silver_earring", "fg": 770 }, - { "id": "aquamarine_gold_earring", "fg": 771 }, - { "id": "aquamarine_platinum_earring", "fg": 772 }, - { "id": "aquamarine_silver_earring", "fg": 773 }, - { "id": "bead_ear", "fg": 774 }, - { "id": "blue_topaz_gold_earring", "fg": 775 }, - { "id": "blue_topaz_platinum_earring", "fg": 776 }, - { "id": "blue_topaz_silver_earring", "fg": 777 }, - { "id": "citrine_gold_earring", "fg": 778 }, - { "id": "citrine_platinum_earring", "fg": 779 }, - { "id": "citrine_silver_earring", "fg": 780 }, - { "id": "copper_ear", "fg": 781 }, - { "id": "diamond_gold_earring", "fg": 782 }, - { "id": "diamond_platinum_earring", "fg": 783 }, - { "id": "diamond_silver_earring", "fg": 784 }, - { "id": "emerald_gold_earring", "fg": 785 }, - { "id": "emerald_platinum_earring", "fg": 786 }, - { "id": "emerald_silver_earring", "fg": 787 }, - { "id": "garnet_gold_earring", "fg": 788 }, - { "id": "garnet_platinum_earring", "fg": 789 }, - { "id": "garnet_silver_earring", "fg": 790 }, - { "id": "gold_ear", "fg": 791 }, - { "id": "opal_gold_earring", "fg": 792 }, - { "id": "opal_platinum_earring", "fg": 793 }, - { "id": "opal_silver_earring", "fg": 794 }, - { "id": "pearl_gold_earring", "fg": 795 }, - { "id": "pearl_platinum_earring", "fg": 796 }, - { "id": "pearl_silver_earring", "fg": 797 }, - { "id": "peridot_gold_earring", "fg": 798 }, - { "id": "peridot_platinum_earring", "fg": 799 }, - { "id": "peridot_silver_earring", "fg": 800 }, - { "id": "platinum_ear", "fg": 801 }, - { "id": "ruby_gold_earring", "fg": 802 }, - { "id": "ruby_platinum_earring", "fg": 803 }, - { "id": "ruby_silver_earring", "fg": 804 }, - { "id": "sapphire_gold_earring", "fg": 805 }, - { "id": "sapphire_platinum_earring", "fg": 806 }, - { "id": "sapphire_silver_earring", "fg": 807 }, - { "id": "silver_ear", "fg": 808 }, - { "id": "tourmaline_gold_earring", "fg": 809 }, - { "id": "tourmaline_platinum_earring", "fg": 810 }, - { "id": "tourmaline_silver_earring", "fg": 811 }, - { "id": "flaregun", "fg": 812 }, - { "id": "signal_flare", "fg": 813 }, - { "id": "bread", "fg": 814 }, - { "id": "brioche", "fg": 815 }, - { "id": "brown_bread", "fg": 816 }, - { "id": "brownie", "fg": 817 }, - { "id": "cornbread", "fg": 820 }, - { "id": "jihelucake", "fg": 821 }, - { "id": "pancakes", "fg": 822 }, - { "id": "sourdough_bread", "fg": 824 }, - { "id": "sponge_cake", "fg": 825 }, - { "id": "tortilla_corn", "fg": 826 }, - { "id": "wastebread", "fg": 828 }, - { "id": "airhorn", "fg": 829 }, - { "id": "aluminum_foil", "fg": 830 }, - { "id": "bowling_pin", "fg": 831 }, - { "id": "boxing_gloves", "fg": 832 }, - { "id": "chopsticks", "fg": 833 }, - { "id": "comb_pocket", "fg": 834 }, - { "id": "copper", "fg": 835 }, - { "id": "eclipse_glasses", "fg": 836 }, - { "id": "fish", "fg": 837 }, - { "id": "licorice", "fg": 838 }, - { "id": "metal_tank", "fg": 839 }, - { "id": "metal_tank_little", "fg": 840 }, - { "id": "nanomaterial", "fg": 841 }, - { "id": "plut_cell", "fg": 842 }, - { "id": "rebreather_filter", "fg": 843 }, - { "id": "rock_sock", "fg": 844 }, - { "id": "rollerskates", "fg": 845 }, - { "id": "sandpaper", "fg": 846 }, - { "id": "throwing_stick", "fg": 847 }, - { "id": "waterproof_gunmod", "fg": 848 }, - { "id": "circsaw_blade", "fg": 849 }, - { "id": "mirror", "fg": 850 }, - { "id": "glass_bowl", "fg": 851 }, - { "id": "plastic_bowl_kids", "fg": 852 }, - { "id": "blue_pen", "fg": 853 }, - { "id": "green_pen", "fg": 854 }, - { "id": "pen", "fg": 855 }, - { "id": "red_pen", "fg": 856 }, - { "id": "soldering_iron", "fg": 857 }, - { "id": "superglue", "fg": 858 }, - { "id": "grenade", "fg": 859 }, - { "id": "grenade_act", "fg": 860 }, - { "id": "grenade_emp", "fg": 861 }, - { "id": "grenade_emp_act", "fg": 862 }, - { "id": "grenade_inc", "fg": 863 }, - { "id": "grenade_inc_act", "fg": 864 }, - { "id": "pipebomb", "fg": 865 }, - { "id": "pipebomb_act", "fg": 866 }, - { "id": "scrambler", "fg": 867 }, - { "id": "scrambler_act", "fg": 868 }, - { "id": "smokebomb", "fg": 869 }, - { "id": "smokebomb_act", "fg": 870 }, - { "id": "boxcutter", "fg": 874 }, - { "id": "copper_knife", "fg": 875 }, - { "id": "diveknife", "fg": 876 }, - { "id": "knife_bread", "fg": 877 }, - { "id": "knife_butcher", "fg": 878 }, - { "id": "knife_carving", "fg": 879 }, - { "id": "knife_chef", "fg": 880 }, - { "id": "knife_combat", "fg": 881 }, - { "id": "knife_folding", "fg": 882 }, - { "id": "knife_hunting", "fg": 883 }, - { "id": "knife_paring", "fg": 884 }, - { "id": "knife_rambo", "fg": 885 }, - { "id": "knife_rm42", "fg": 886 }, - { "id": "knife_steak", "fg": 887 }, - { "id": "knife_swissarmy", "fg": 888 }, - { "id": "knife_trench", "fg": 889 }, - { "id": "makeshift_knife", "fg": 890 }, - { "id": "pockknife", "fg": 891 }, - { "id": "primitive_knife", "fg": 892 }, - { "id": "throwing_knife", "fg": 893 }, - { "id": "baseball", "fg": 915 }, - { "id": "basketball", "fg": 916 }, - { "id": "battery_car", "fg": 917 }, - { "id": "beach_volleyball", "fg": 918 }, - { "id": "bowling_ball", "fg": 919 }, - { "id": "cell_phone", "fg": 920 }, - { "id": "cell_phone_flashlight", "fg": 921 }, - { "id": "cigar", "fg": 922 }, - { "id": "cigar_butt", "fg": 923 }, - { "id": "cigar_lit", "fg": 924 }, - { "id": "ear_plugs", "fg": 926 }, - { "id": "fiddlehead_boiled", "fg": 927 }, - { "id": "fiddlehead_raw", "fg": 928 }, - { "id": "fiddlehead_sauteed", "fg": 929 }, - { "id": "flask_hip", "fg": 930 }, - { "id": "football", "fg": 931 }, - { "id": "golf_ball", "fg": 932 }, - { "id": "holo_sight", "fg": 933 }, - { "id": "indoor_volleyball", "fg": 934 }, - { "id": "misc_repairkit", "fg": 935 }, - { "id": "mre_beef_box", "fg": 936 }, - { "id": "peephole", "fg": 937 }, - { "id": "portable_game", "fg": 938 }, - { "id": "puck", "fg": 939 }, - { "id": "purse", "fg": 940 }, - { "id": "suppressor", "fg": 941 }, - { "id": "tourniquet_upper", "fg": 942 }, - { "id": "two_way_radio", "fg": 943 }, - { "id": "wristwatch", "fg": 944 }, - { "id": "mushroom", "fg": 945 }, - { "id": "cable_speaker", "fg": 946 }, - { "id": "headphones_circumaural", "fg": 947 }, - { "id": "microphone_xlr_generic", "fg": 948 }, - { "id": "popcan_stove", "fg": 989 }, - { "id": "rad_badge", "fg": 990 }, - { "id": "alexandrite_gold_ring", "fg": 992 }, - { "id": "alexandrite_platinum_ring", "fg": 993 }, - { "id": "alexandrite_silver_ring", "fg": 994 }, - { "id": "amethyst_gold_ring", "fg": 995 }, - { "id": "amethyst_platinum_ring", "fg": 996 }, - { "id": "amethyst_silver_ring", "fg": 997 }, - { "id": "aquamarine_gold_ring", "fg": 998 }, - { "id": "aquamarine_platinum_ring", "fg": 999 }, - { "id": "aquamarine_silver_ring", "fg": 1000 }, - { "id": "blue_topaz_gold_ring", "fg": 1001 }, - { "id": "blue_topaz_platinum_ring", "fg": 1002 }, - { "id": "blue_topaz_silver_ring", "fg": 1003 }, - { "id": "citrine_gold_ring", "fg": 1004 }, - { "id": "citrine_platinum_ring", "fg": 1005 }, - { "id": "citrine_silver_ring", "fg": 1006 }, - { "id": "diamond_platinum_ring", "fg": 1007 }, - { "id": "diamond_ring", "fg": 1008 }, - { "id": "diamond_silver_ring", "fg": 1009 }, - { "id": "emerald_gold_ring", "fg": 1010 }, - { "id": "emerald_platinum_ring", "fg": 1011 }, - { "id": "emerald_silver_ring", "fg": 1012 }, - { "id": "garnet_gold_ring", "fg": 1013 }, - { "id": "garnet_platinum_ring", "fg": 1014 }, - { "id": "garnet_silver_ring", "fg": 1015 }, - { "id": "gold_ring", "fg": 1016 }, - { "id": "opal_gold_ring", "fg": 1017 }, - { "id": "opal_platinum_ring", "fg": 1018 }, - { "id": "opal_silver_ring", "fg": 1019 }, - { "id": "pearl_gold_ring", "fg": 1020 }, - { "id": "pearl_platinum_ring", "fg": 1021 }, - { "id": "pearl_silver_ring", "fg": 1022 }, - { "id": "peridot_gold_ring", "fg": 1023 }, - { "id": "peridot_platinum_ring", "fg": 1024 }, - { "id": "peridot_silver_ring", "fg": 1025 }, - { "id": "ring_engagement", "fg": 1026 }, - { "id": "ruby_gold_ring", "fg": 1027 }, - { "id": "ruby_platinum_ring", "fg": 1028 }, - { "id": "ruby_silver_ring", "fg": 1029 }, - { "id": "sapphire_gold_ring", "fg": 1030 }, - { "id": "sapphire_platinum_ring", "fg": 1031 }, - { "id": "sapphire_silver_ring", "fg": 1032 }, - { "id": "tourmaline_gold_ring", "fg": 1033 }, - { "id": "tourmaline_platinum_ring", "fg": 1034 }, - { "id": "tourmaline_silver_ring", "fg": 1035 }, - { "id": "pebble", "fg": 1036 }, - { "id": "pebble_clay", "fg": 1037 }, - { "id": "rock", "fg": 1038 }, - { "id": "rock_flaking", "fg": 1039 }, - { "id": "rock_large", "fg": 1040 }, - { "id": "slime_scrap", "fg": 1049 }, - { "id": "clay_teapot", "fg": 1053 }, - { "id": "crucible", "fg": 1056 }, - { "id": "tire_iron", "fg": 1069 }, - { "id": "towel", "fg": 1084 }, - { "id": "towel_soiled", "fg": 1085 }, - { "id": "towel_wet", "fg": 1086 }, - { "id": "battery_charger", "fg": 1087 }, - { "id": "recharge_station", "fg": 1088 }, - { "id": "wax", "fg": 1091 } + { "id": "mess_kit", "fg": 188 }, + { "id": "mess_tin", "fg": 189 }, + { "id": "meth", "fg": 190 }, + { "id": "mil_mess_kit", "fg": 191 }, + { "id": "morphine", "fg": 192 }, + { "id": "mortar_pestle", "fg": 193 }, + { "id": "motor_tiny", "fg": 194 }, + { "id": "mouthpiece", "fg": 195 }, + { "id": "office_holepunch", "fg": 196 }, + { "id": "omnicamera", "fg": 197 }, + { "id": "p_paint", "fg": 198 }, + { "id": "paint_brush", "fg": 199 }, + { "id": "pan", "fg": 200 }, + { "id": "paper", "fg": 201 }, + { "id": "peeler", "fg": 202 }, + { "id": "pipe_fittings", "fg": 203 }, + { "id": "plastic_pot_flower", "fg": 204 }, + { "id": "pliers", "fg": 205 }, + { "id": "plums", "fg": 206 }, + { "id": "pot", "fg": 207 }, + { "id": "pot_canning", "fg": 208 }, + { "id": "pot_copper", "fg": 209 }, + { "id": "pot_helmet", "fg": 210 }, + { "id": "pot_makeshift", "fg": 211 }, + { "id": "pot_makeshift_copper", "fg": 212 }, + { "id": "potato_masher", "fg": 213 }, + { "id": "r_paint", "fg": 214 }, + { "id": "reading_light", "fg": 215 }, + { "id": "reading_light_on", "fg": 216 }, + { "id": "receiver", "fg": 217 }, + { "id": "reinforced_glass_pane", "fg": 218 }, + { "id": "rolling_pin", "fg": 219 }, + { "id": "scrap_bronze", "fg": 220 }, + { "id": "scrap_felt", "fg": 221 }, + { "id": "sheet_felt", "fg": 222 }, + { "id": "sheet_felt_patchwork", "fg": 223 }, + { "id": "shocktonfa_off", "fg": 224 }, + { "id": "shocktonfa_on", "fg": 225 }, + { "id": "slingpack", "fg": 226 }, + { "id": "smart_phone", "fg": 227 }, + { "id": "soap", "fg": 228 }, + { "id": "solder_wire", "fg": 229 }, + { "id": "spatula", "fg": 230 }, + { "id": "spider_egg", "fg": 231 }, + { "id": "spike", "fg": 232 }, + { "id": "steel_armor", "fg": 233 }, + { "id": "steel_pan", "fg": 234 }, + { "id": "stethoscope", "fg": 235 }, + { "id": "stock_pot", "fg": 236 }, + { "id": "survivor_mess_kit", "fg": 238 }, + { "id": "swage", "fg": 239 }, + { "id": "tazer", "fg": 240 }, + { "id": "teleumbrella", "fg": 241 }, + { "id": "tinder", "fg": 242 }, + { "id": "tinderbox", "fg": 243 }, + { "id": "tinfoil_hat", "fg": 244 }, + { "id": "tonfa", "fg": 245 }, + { "id": "tonfa_wood", "fg": 246 }, + { "id": "tongs", "fg": 247 }, + { "id": "unfinished_charcoal", "fg": 248 }, + { "id": "w_paint", "fg": 249 }, + { "id": "water_purifier", "fg": 250 }, + { "id": "wheel", "fg": 251 }, + { "id": "wheel_10", "fg": 252 }, + { "id": "wheel_barrow", "fg": 253 }, + { "id": "wheel_bicycle", "fg": 254 }, + { "id": "wheel_bicycle_or", "fg": 255 }, + { "id": "wheel_motorbike", "fg": 256 }, + { "id": "wheel_motorbike_or", "fg": 257 }, + { "id": "wheel_skate", "fg": 258 }, + { "id": "wheel_slick", "fg": 259 }, + { "id": "wheel_small", "fg": 260 }, + { "id": "wheel_tricycle", "fg": 261 }, + { "id": "wheel_wheelchair", "fg": 262 }, + { "id": "whisk", "fg": 263 }, + { "id": "wine_glass", "fg": 264 }, + { "id": "wire_barbed", "fg": 265 }, + { "id": "y_paint", "fg": 266 }, + { "id": "halligan", "fg": 267 }, + { "id": "cig", "fg": 293 }, + { "id": "cig_lit", "fg": 294 }, + { "id": "copper_ring", "fg": 295 }, + { "id": "g_shovel", "fg": 296 }, + { "id": "lsd", "fg": 297 }, + { "id": "silver_ring", "fg": 298 }, + { "id": "thermal_mask", "fg": 299 }, + { "id": "thermal_socks", "fg": 300 }, + { "id": "tie_clipon", "fg": 301 }, + { "id": "whistle", "fg": 302 }, + { "id": "2_shot_special", "fg": 303 }, + { "id": "LAW_Packed", "fg": 305 }, + { "id": "af2011a1_38super", "fg": 307 }, + { "id": "ar_pistol", "fg": 308 }, + { "id": "ashot", "fg": 309 }, + { "id": "bfr", "fg": 310 }, + { "id": "bigun", "fg": 311 }, + { "id": "bond_410", "fg": 312 }, + { "id": "bt_apc9k", "fg": 313 }, + { "id": "colt_army", "fg": 314 }, + { "id": "colt_navy", "fg": 315 }, + { "id": "colt_saa", "fg": 316 }, + { "id": "cop_38", "fg": 317 }, + { "id": "cz75", "fg": 318 }, + { "id": "deagle_44", "fg": 319 }, + { "id": "draco", "fg": 320 }, + { "id": "flamethrower_crude", "fg": 321 }, + { "id": "flamethrower_simple", "fg": 322 }, + { "id": "fn1910", "fg": 323 }, + { "id": "fn57", "fg": 324 }, + { "id": "fn_p90", "fg": 325 }, + { "id": "glock_17", "fg": 326 }, + { "id": "glock_18c", "fg": 327 }, + { "id": "glock_19", "fg": 328 }, + { "id": "glock_20", "fg": 329 }, + { "id": "glock_20_var_glock_40", "fg": 330 }, + { "id": "glock_21", "fg": 331 }, + { "id": "glock_22", "fg": 332 }, + { "id": "glock_29", "fg": 333 }, + { "id": "glock_31", "fg": 334 }, + { "id": "hi_power_40", "fg": 335 }, + { "id": "hi_power_9mm", "fg": 336 }, + { "id": "hk_mp5_semi_pistol", "fg": 338 }, + { "id": "hk_mp7", "fg": 339 }, + { "id": "hk_ump45", "fg": 340 }, + { "id": "hptc9", "fg": 341 }, + { "id": "hptcf380", "fg": 342 }, + { "id": "kp32", "fg": 344 }, + { "id": "kp3at", "fg": 345 }, + { "id": "kpf9", "fg": 346 }, + { "id": "l_bak_223", "fg": 347 }, + { "id": "launcher_simple", "fg": 348 }, + { "id": "lemat_revolver", "fg": 349 }, + { "id": "m11", "fg": 350 }, + { "id": "m17", "fg": 351 }, + { "id": "m18", "fg": 352 }, + { "id": "m1911-460", "fg": 353 }, + { "id": "m1911_10", "fg": 355 }, + { "id": "m1911_var_m1911_MEU", "fg": 356 }, + { "id": "m320", "fg": 357 }, + { "id": "m4_carbine_var_m4_cqbr", "fg": 358 }, + { "id": "m9", "fg": 359 }, + { "id": "mac_10", "fg": 360 }, + { "id": "mac_11", "fg": 361 }, + { "id": "makarov", "fg": 362 }, + { "id": "mauser_c96", "fg": 363 }, + { "id": "mauser_m714", "fg": 364 }, + { "id": "mgl", "fg": 365 }, + { "id": "minispeargun", "fg": 366 }, + { "id": "model_10_revolver", "fg": 367 }, + { "id": "moss_brownie", "fg": 368 }, + { "id": "nailgun", "fg": 369 }, + { "id": "nailrifle", "fg": 370 }, + { "id": "needlepistol", "fg": 371 }, + { "id": "oa93", "fg": 372 }, + { "id": "p08", "fg": 373 }, + { "id": "p220_10", "fg": 374 }, + { "id": "p226_357sig", "fg": 375 }, + { "id": "p226_9mm", "fg": 376 }, + { "id": "p320_357sig", "fg": 377 }, + { "id": "paintballgun", "fg": 378 }, + { "id": "pipe_double_shotgun", "fg": 379 }, + { "id": "pistol_flintlock", "fg": 380 }, + { "id": "px4", "fg": 381 }, + { "id": "px4_40", "fg": 382 }, + { "id": "raging_bull", "fg": 383 }, + { "id": "raging_judge", "fg": 384 }, + { "id": "revolver_shotgun", "fg": 385 }, + { "id": "rm103a_pistol", "fg": 386 }, + { "id": "rm2000_smg", "fg": 387 }, + { "id": "rm228", "fg": 388 }, + { "id": "ruger_lcr_22", "fg": 389 }, + { "id": "ruger_lcr_38", "fg": 390 }, + { "id": "ruger_redhawk", "fg": 391 }, + { "id": "rugerlcp", "fg": 392 }, + { "id": "sig_40", "fg": 393 }, + { "id": "sig_mosquito", "fg": 394 }, + { "id": "sig_p230", "fg": 395 }, + { "id": "skorpion_61", "fg": 396 }, + { "id": "smg_40", "fg": 397 }, + { "id": "smg_45", "fg": 398 }, + { "id": "sp2022", "fg": 399 }, + { "id": "streetsweeper", "fg": 400 }, + { "id": "surv_hand_cannon", "fg": 401 }, + { "id": "surv_six_shooter", "fg": 402 }, + { "id": "sw629", "fg": 403 }, + { "id": "sw_22", "fg": 404 }, + { "id": "sw_500", "fg": 405 }, + { "id": "sw_610", "fg": 406 }, + { "id": "sw_619", "fg": 407 }, + { "id": "taurus_spectrum", "fg": 408 }, + { "id": "tec9", "fg": 409 }, + { "id": "tokarev", "fg": 410 }, + { "id": "triple_launcher_simple", "fg": 411 }, + { "id": "unbio_blaster_gun", "fg": 412 }, + { "id": "usp_45", "fg": 413 }, + { "id": "usp_45_var_mk23", "fg": 414 }, + { "id": "usp_9mm", "fg": 415 }, + { "id": "uzi", "fg": 416 }, + { "id": "v29", "fg": 417 }, + { "id": "v29_cheap", "fg": 418 }, + { "id": "walther_ccp", "fg": 419 }, + { "id": "walther_p22", "fg": 420 }, + { "id": "walther_p38", "fg": 421 }, + { "id": "walther_ppq_40", "fg": 422 }, + { "id": "walther_ppq_45", "fg": 423 }, + { "id": "walther_ppq_9mm", "fg": 424 }, + { "id": "witness_10", "fg": 425 }, + { "id": "xd_10", "fg": 426 }, + { "id": "book_pieces", "fg": 441 }, + { "id": "book_ruined", "fg": 442 }, + { "id": "button_plastic", "fg": 481 }, + { "id": "button_steel", "fg": 482 }, + { "id": "button_wood", "fg": 483 }, + { "id": "antenna", "fg": 484 }, + { "id": "badge_deputy", "fg": 485 }, + { "id": "coconut", "fg": 486 }, + { "id": "directional_antenna", "fg": 487 }, + { "id": "halter_top", "fg": 488 }, + { "id": "hand_crank_charger", "fg": 489 }, + { "id": "hops", "fg": 490 }, + { "id": "kidney", "fg": 491 }, + { "id": "lettuce", "fg": 492 }, + { "id": "lily_flower", "fg": 493 }, + { "id": "scorecard", "fg": 494 }, + { "id": "spinach", "fg": 495 }, + { "id": "altered_comb", "fg": 496 }, + { "id": "gasdiscount_gold", "fg": 497 }, + { "id": "gasdiscount_platinum", "fg": 498 }, + { "id": "gasdiscount_silver", "fg": 499 }, + { "id": "gold_hairpin", "fg": 500 }, + { "id": "nanoskirt", "fg": 501 }, + { "id": "pearl", "fg": 502 }, + { "id": "platinum_ring", "fg": 503 }, + { "id": "skirt_grass", "fg": 504 }, + { "id": "skirt_leather", "fg": 505 }, + { "id": "wallet_leather", "fg": 506 }, + { "id": "copper_necklace", "fg": 507 }, + { "id": "pearl_collar", "fg": 508 }, + { "id": "alexandrite_gold_pendant_necklace", "fg": 509 }, + { "id": "amethyst_gold_pendant_necklace", "fg": 510 }, + { "id": "aquamarine_gold_pendant_necklace", "fg": 511 }, + { "id": "blue_topaz_gold_pendant_necklace", "fg": 512 }, + { "id": "citrine_gold_pendant_necklace", "fg": 513 }, + { "id": "diamond_gold_pendant_necklace", "fg": 514 }, + { "id": "emerald_gold_pendant_necklace", "fg": 515 }, + { "id": "garnet_gold_pendant_necklace", "fg": 516 }, + { "id": "gold_necklace", "fg": 517 }, + { "id": "opal_gold_pendant_necklace", "fg": 518 }, + { "id": "pearl_gold_pendant_necklace", "fg": 519 }, + { "id": "peridot_gold_pendant_necklace", "fg": 520 }, + { "id": "ruby_gold_pendant_necklace", "fg": 521 }, + { "id": "sapphire_gold_pendant_necklace", "fg": 522 }, + { "id": "tourmaline_gold_pendant_necklace", "fg": 523 }, + { "id": "alexandrite_platinum_pendant_necklace", "fg": 524 }, + { "id": "amethyst_platinum_pendant_necklace", "fg": 525 }, + { "id": "aquamarine_platinum_pendant_necklace", "fg": 526 }, + { "id": "blue_topaz_platinum_pendant_necklace", "fg": 527 }, + { "id": "citrine_platinum_pendant_necklace", "fg": 528 }, + { "id": "diamond_platinum_pendant_necklace", "fg": 529 }, + { "id": "emerald_platinum_pendant_necklace", "fg": 530 }, + { "id": "garnet_platinum_pendant_necklace", "fg": 531 }, + { "id": "opal_platinum_pendant_necklace", "fg": 532 }, + { "id": "pearl_platinum_pendant_necklace", "fg": 533 }, + { "id": "peridot_platinum_pendant_necklace", "fg": 534 }, + { "id": "platinum_necklace", "fg": 535 }, + { "id": "ruby_platinum_pendant_necklace", "fg": 536 }, + { "id": "sapphire_platinum_pendant_necklace", "fg": 537 }, + { "id": "tourmaline_platinum_pendant_necklace", "fg": 538 }, + { "id": "alexandrite_silver_pendant_necklace", "fg": 539 }, + { "id": "amethyst_silver_pendant_necklace", "fg": 540 }, + { "id": "aquamarine_silver_pendant_necklace", "fg": 541 }, + { "id": "blue_topaz_silver_pendant_necklace", "fg": 542 }, + { "id": "citrine_silver_pendant_necklace", "fg": 543 }, + { "id": "diamond_silver_pendant_necklace", "fg": 544 }, + { "id": "emerald_silver_pendant_necklace", "fg": 545 }, + { "id": "garnet_silver_pendant_necklace", "fg": 546 }, + { "id": "opal_silver_pendant_necklace", "fg": 547 }, + { "id": "pearl_silver_pendant_necklace", "fg": 548 }, + { "id": "peridot_silver_pendant_necklace", "fg": 549 }, + { "id": "ruby_silver_pendant_necklace", "fg": 550 }, + { "id": "sapphire_silver_pendant_necklace", "fg": 551 }, + { "id": "silver_necklace", "fg": 552 }, + { "id": "tourmaline_silver_pendant_necklace", "fg": 553 }, + { "id": "alder_bark", "fg": 554 }, + { "id": "barrette", "fg": 555 }, + { "id": "birchbark", "fg": 556 }, + { "id": "caff_gum", "fg": 557 }, + { "id": "cattail_stalk", "fg": 558 }, + { "id": "golf_tee", "fg": 559 }, + { "id": "gum", "fg": 560 }, + { "id": "hand_pump", "fg": 561 }, + { "id": "honeydew", "fg": 562 }, + { "id": "ifak_pouch", "fg": 563 }, + { "id": "knitting_needles", "fg": 564 }, + { "id": "lasagne", "fg": 565 }, + { "id": "magnifying_glass", "fg": 566 }, + { "id": "mininuke", "fg": 567 }, + { "id": "mininuke_act", "fg": 568 }, + { "id": "net", "fg": 569 }, + { "id": "rolling_paper", "fg": 570 }, + { "id": "tanbark", "fg": 571 }, + { "id": "willowbark", "fg": 574 }, + { "id": "shoulder_strap", "fg": 575 }, + { "id": "deck_of_cards", "fg": 576 }, + { "id": "hairpin", "fg": 577 }, + { "id": "weed", "fg": 578 }, + { "id": "ceramic_bowl", "fg": 579 }, + { "id": "chestrig", "fg": 580 }, + { "id": "radio_car", "fg": 581 }, + { "id": "radio_car_box", "fg": 582 }, + { "id": "radio_car_on", "fg": 583 }, + { "id": "radio_car_wheel", "fg": 584 }, + { "id": "radiocontrol", "fg": 585 }, + { "id": "rc_car_box", "fg": 586 }, + { "id": "toaster", "fg": 587 }, + { "id": "xl_chestrig", "fg": 588 }, + { "id": "alternator_truck", "fg": 590 }, + { "id": "ammolink", "fg": 591 }, + { "id": "angle_grinder", "fg": 592 }, + { "id": "atomic_lamp", "fg": 593 }, + { "id": "atomic_lamp_off", "fg": 594 }, + { "id": "barometer", "fg": 595 }, + { "id": "birdfood", "fg": 596 }, + { "id": "bismuth", "fg": 597 }, + { "id": "brick_kiln", "fg": 598 }, + { "id": "caffeine", "fg": 599 }, + { "id": "camera", "fg": 600 }, + { "id": "chem_citric_acid", "fg": 601 }, + { "id": "chem_sulphur", "fg": 602 }, + { "id": "chunk_sulfur", "fg": 603 }, + { "id": "circsaw_off", "fg": 604 }, + { "id": "circsaw_on", "fg": 605 }, + { "id": "coal_lump", "fg": 606 }, + { "id": "con_mix", "fg": 607 }, + { "id": "disc_golf", "fg": 608 }, + { "id": "drivebelt", "fg": 609 }, + { "id": "eink_tablet_pc", "fg": 610 }, + { "id": "flatbread", "fg": 611 }, + { "id": "gelbox", "fg": 613 }, + { "id": "generator_7500w", "fg": 614 }, + { "id": "glowstick", "fg": 615 }, + { "id": "glowstick_dead", "fg": 616 }, + { "id": "glowstick_lit", "fg": 617 }, + { "id": "gold_small", "fg": 618 }, + { "id": "golf_club", "fg": 619 }, + { "id": "handflare", "fg": 620 }, + { "id": "heatpack", "fg": 621 }, + { "id": "heatpack_used", "fg": 622 }, + { "id": "hoe", "fg": 623 }, + { "id": "homeopathic_pills", "fg": 624 }, + { "id": "horn_bicycle", "fg": 625 }, + { "id": "jumper_cable", "fg": 626 }, + { "id": "kiln", "fg": 627 }, + { "id": "lead", "fg": 628 }, + { "id": "leather", "fg": 629 }, + { "id": "lightstrip", "fg": 630 }, + { "id": "material_aluminium_ingot", "fg": 631 }, + { "id": "material_limestone", "fg": 632 }, + { "id": "material_rhodonite", "fg": 633 }, + { "id": "material_rocksalt", "fg": 634 }, + { "id": "material_zincite", "fg": 635 }, + { "id": "metal_smoother", "fg": 636 }, + { "id": "multitool", "fg": 638 }, + { "id": "nic_gum", "fg": 639 }, + { "id": "pencil", "fg": 640 }, + { "id": "pipe_cleaner", "fg": 641 }, + { "id": "pipe_glass", "fg": 642 }, + { "id": "platinum_small", "fg": 644 }, + { "id": "polisher", "fg": 645 }, + { "id": "press", "fg": 646 }, + { "id": "puller", "fg": 647 }, + { "id": "rake", "fg": 648 }, + { "id": "razorclaw_roe", "fg": 649 }, + { "id": "sickle", "fg": 650 }, + { "id": "silver_small", "fg": 651 }, + { "id": "small_repairkit", "fg": 652 }, + { "id": "tanned_hide", "fg": 653 }, + { "id": "tanned_pelt", "fg": 654 }, + { "id": "tourist_table", "fg": 655 }, + { "id": "zinc_metal", "fg": 656 }, + { "id": "beartrap", "fg": 657 }, + { "id": "tr_beartrap", "fg": 658 }, + { "id": "wire_mesh", "fg": 659 }, + { "id": "cannabis", "fg": 660 }, + { "id": "dnd_handbook", "fg": 662 }, + { "id": "holybook_bible1", "fg": 663 }, + { "id": "holybook_bible3", "fg": 664 }, + { "id": "l-stick", "fg": 665 }, + { "id": "l-stick_on", "fg": 666 }, + { "id": "makarovmag", "fg": 667 }, + { "id": "manual_brawl", "fg": 668 }, + { "id": "manual_carpentry", "fg": 669 }, + { "id": "manual_dodge_kid", "fg": 670 }, + { "id": "manual_driving", "fg": 671 }, + { "id": "manual_melee", "fg": 672 }, + { "id": "philosophy_book", "fg": 673 }, + { "id": "phonebook", "fg": 674 }, + { "id": "photo_album", "fg": 675 }, + { "id": "plastic_bucket", "fg": 676 }, + { "id": "record_weather", "fg": 677 }, + { "id": "straw_fedora", "fg": 678 }, + { "id": "textbook_computer", "fg": 679 }, + { "id": "textbook_fabrication", "fg": 680 }, + { "id": "textbook_survival", "fg": 681 }, + { "id": "water_faucet", "fg": 682 }, + { "id": "can_food", "fg": 683 }, + { "id": "can_food_big", "fg": 684 }, + { "id": "can_food_big_unsealed", "fg": 685 }, + { "id": "can_food_unsealed", "fg": 686 }, + { "id": "can_medium", "fg": 687 }, + { "id": "can_medium_unsealed", "fg": 688 }, + { "id": "clamp", "fg": 689 }, + { "id": "crude_picklock", "fg": 690 }, + { "id": "cured_hide", "fg": 691 }, + { "id": "cured_pelt", "fg": 692 }, + { "id": "demihuman_fat", "fg": 693 }, + { "id": "fat", "fg": 694 }, + { "id": "fat_tainted", "fg": 695 }, + { "id": "headscarf", "fg": 696 }, + { "id": "human_fat", "fg": 698 }, + { "id": "marloss_scarf", "fg": 703 }, + { "id": "meat", "fg": 704 }, + { "id": "meat_tainted", "fg": 705 }, + { "id": "mutant_fat", "fg": 706 }, + { "id": "mutant_human_fat", "fg": 707 }, + { "id": "mutant_human_flesh", "fg": 708 }, + { "id": "mutant_meat", "fg": 709 }, + { "id": "pipe_tobacco", "fg": 711 }, + { "id": "raw_fur", "fg": 714 }, + { "id": "raw_leather", "fg": 715 }, + { "id": "tanning_hide", "fg": 721 }, + { "id": "tanning_pelt", "fg": 722 }, + { "id": "analytical_set_basic", "fg": 724 }, + { "id": "balance_small", "fg": 725 }, + { "id": "beaker", "fg": 726 }, + { "id": "flask_glass", "fg": 727 }, + { "id": "gradcylinder", "fg": 728 }, + { "id": "ph_meter", "fg": 729 }, + { "id": "spectrophotometer", "fg": 730 }, + { "id": "test_tube", "fg": 731 }, + { "id": "voltmeter", "fg": 732 }, + { "id": "acidchitin_piece", "fg": 737 }, + { "id": "chitin_piece", "fg": 738 }, + { "id": "coin_dime", "fg": 757 }, + { "id": "coin_dollar", "fg": 758 }, + { "id": "coin_half_dollar", "fg": 759 }, + { "id": "coin_nickel", "fg": 760 }, + { "id": "coin_penny", "fg": 761 }, + { "id": "coin_quarter", "fg": 762 }, + { "id": "money_fifty", "fg": 763 }, + { "id": "money_five", "fg": 764 }, + { "id": "money_hundred", "fg": 765 }, + { "id": "money_one", "fg": 766 }, + { "id": "money_ten", "fg": 767 }, + { "id": "money_twenty", "fg": 768 }, + { "id": "money_two", "fg": 769 }, + { "id": "alexandrite_gold_earring", "fg": 770 }, + { "id": "alexandrite_platinum_earring", "fg": 771 }, + { "id": "alexandrite_silver_earring", "fg": 772 }, + { "id": "amethyst_gold_earring", "fg": 773 }, + { "id": "amethyst_platinum_earring", "fg": 774 }, + { "id": "amethyst_silver_earring", "fg": 775 }, + { "id": "aquamarine_gold_earring", "fg": 776 }, + { "id": "aquamarine_platinum_earring", "fg": 777 }, + { "id": "aquamarine_silver_earring", "fg": 778 }, + { "id": "bead_ear", "fg": 779 }, + { "id": "blue_topaz_gold_earring", "fg": 780 }, + { "id": "blue_topaz_platinum_earring", "fg": 781 }, + { "id": "blue_topaz_silver_earring", "fg": 782 }, + { "id": "citrine_gold_earring", "fg": 783 }, + { "id": "citrine_platinum_earring", "fg": 784 }, + { "id": "citrine_silver_earring", "fg": 785 }, + { "id": "copper_ear", "fg": 786 }, + { "id": "diamond_gold_earring", "fg": 787 }, + { "id": "diamond_platinum_earring", "fg": 788 }, + { "id": "diamond_silver_earring", "fg": 789 }, + { "id": "emerald_gold_earring", "fg": 790 }, + { "id": "emerald_platinum_earring", "fg": 791 }, + { "id": "emerald_silver_earring", "fg": 792 }, + { "id": "garnet_gold_earring", "fg": 793 }, + { "id": "garnet_platinum_earring", "fg": 794 }, + { "id": "garnet_silver_earring", "fg": 795 }, + { "id": "gold_ear", "fg": 796 }, + { "id": "opal_gold_earring", "fg": 797 }, + { "id": "opal_platinum_earring", "fg": 798 }, + { "id": "opal_silver_earring", "fg": 799 }, + { "id": "pearl_gold_earring", "fg": 800 }, + { "id": "pearl_platinum_earring", "fg": 801 }, + { "id": "pearl_silver_earring", "fg": 802 }, + { "id": "peridot_gold_earring", "fg": 803 }, + { "id": "peridot_platinum_earring", "fg": 804 }, + { "id": "peridot_silver_earring", "fg": 805 }, + { "id": "platinum_ear", "fg": 806 }, + { "id": "ruby_gold_earring", "fg": 807 }, + { "id": "ruby_platinum_earring", "fg": 808 }, + { "id": "ruby_silver_earring", "fg": 809 }, + { "id": "sapphire_gold_earring", "fg": 810 }, + { "id": "sapphire_platinum_earring", "fg": 811 }, + { "id": "sapphire_silver_earring", "fg": 812 }, + { "id": "silver_ear", "fg": 813 }, + { "id": "tourmaline_gold_earring", "fg": 814 }, + { "id": "tourmaline_platinum_earring", "fg": 815 }, + { "id": "tourmaline_silver_earring", "fg": 816 }, + { "id": "flaregun", "fg": 817 }, + { "id": "signal_flare", "fg": 818 }, + { "id": "bread", "fg": 819 }, + { "id": "brioche", "fg": 820 }, + { "id": "brown_bread", "fg": 821 }, + { "id": "brownie", "fg": 822 }, + { "id": "cornbread", "fg": 825 }, + { "id": "jihelucake", "fg": 826 }, + { "id": "pancakes", "fg": 827 }, + { "id": "sourdough_bread", "fg": 829 }, + { "id": "sponge_cake", "fg": 830 }, + { "id": "tortilla_corn", "fg": 831 }, + { "id": "wastebread", "fg": 833 }, + { "id": "airhorn", "fg": 834 }, + { "id": "aluminum_foil", "fg": 835 }, + { "id": "bowling_pin", "fg": 836 }, + { "id": "boxing_gloves", "fg": 837 }, + { "id": "chopsticks", "fg": 838 }, + { "id": "comb_pocket", "fg": 839 }, + { "id": "copper", "fg": 840 }, + { "id": "eclipse_glasses", "fg": 841 }, + { "id": "fish", "fg": 842 }, + { "id": "licorice", "fg": 843 }, + { "id": "metal_tank", "fg": 844 }, + { "id": "metal_tank_little", "fg": 845 }, + { "id": "nanomaterial", "fg": 846 }, + { "id": "plut_cell", "fg": 847 }, + { "id": "rebreather_filter", "fg": 848 }, + { "id": "rock_sock", "fg": 849 }, + { "id": "rollerskates", "fg": 850 }, + { "id": "sandpaper", "fg": 851 }, + { "id": "throwing_stick", "fg": 852 }, + { "id": "waterproof_gunmod", "fg": 853 }, + { "id": "circsaw_blade", "fg": 854 }, + { "id": "mirror", "fg": 855 }, + { "id": "glass_bowl", "fg": 856 }, + { "id": "plastic_bowl_kids", "fg": 857 }, + { "id": "blue_pen", "fg": 858 }, + { "id": "green_pen", "fg": 859 }, + { "id": "pen", "fg": 860 }, + { "id": "red_pen", "fg": 861 }, + { "id": "soldering_iron", "fg": 862 }, + { "id": "superglue", "fg": 863 }, + { "id": "grenade", "fg": 864 }, + { "id": "grenade_act", "fg": 865 }, + { "id": "grenade_emp", "fg": 866 }, + { "id": "grenade_emp_act", "fg": 867 }, + { "id": "grenade_inc", "fg": 868 }, + { "id": "grenade_inc_act", "fg": 869 }, + { "id": "pipebomb", "fg": 870 }, + { "id": "pipebomb_act", "fg": 871 }, + { "id": "scrambler", "fg": 872 }, + { "id": "scrambler_act", "fg": 873 }, + { "id": "smokebomb", "fg": 874 }, + { "id": "smokebomb_act", "fg": 875 }, + { "id": "boxcutter", "fg": 879 }, + { "id": "copper_knife", "fg": 880 }, + { "id": "diveknife", "fg": 881 }, + { "id": "knife_bread", "fg": 882 }, + { "id": "knife_butcher", "fg": 883 }, + { "id": "knife_carving", "fg": 884 }, + { "id": "knife_chef", "fg": 885 }, + { "id": "knife_combat", "fg": 886 }, + { "id": "knife_folding", "fg": 887 }, + { "id": "knife_hunting", "fg": 888 }, + { "id": "knife_paring", "fg": 889 }, + { "id": "knife_rambo", "fg": 890 }, + { "id": "knife_rm42", "fg": 891 }, + { "id": "knife_steak", "fg": 892 }, + { "id": "knife_swissarmy", "fg": 893 }, + { "id": "knife_trench", "fg": 894 }, + { "id": "makeshift_knife", "fg": 895 }, + { "id": "pockknife", "fg": 896 }, + { "id": "primitive_knife", "fg": 897 }, + { "id": "throwing_knife", "fg": 898 }, + { "id": "baseball", "fg": 920 }, + { "id": "basketball", "fg": 921 }, + { "id": "battery_car", "fg": 922 }, + { "id": "beach_volleyball", "fg": 923 }, + { "id": "bowling_ball", "fg": 924 }, + { "id": "cell_phone", "fg": 925 }, + { "id": "cell_phone_flashlight", "fg": 926 }, + { "id": "cigar", "fg": 927 }, + { "id": "cigar_butt", "fg": 928 }, + { "id": "cigar_lit", "fg": 929 }, + { "id": "ear_plugs", "fg": 931 }, + { "id": "fiddlehead_boiled", "fg": 932 }, + { "id": "fiddlehead_raw", "fg": 933 }, + { "id": "fiddlehead_sauteed", "fg": 934 }, + { "id": "flask_hip", "fg": 935 }, + { "id": "football", "fg": 936 }, + { "id": "golf_ball", "fg": 937 }, + { "id": "holo_sight", "fg": 938 }, + { "id": "indoor_volleyball", "fg": 939 }, + { "id": "misc_repairkit", "fg": 940 }, + { "id": "mre_beef_box", "fg": 941 }, + { "id": "peephole", "fg": 942 }, + { "id": "portable_game", "fg": 943 }, + { "id": "puck", "fg": 944 }, + { "id": "purse", "fg": 945 }, + { "id": "suppressor", "fg": 946 }, + { "id": "tourniquet_upper", "fg": 947 }, + { "id": "two_way_radio", "fg": 948 }, + { "id": "wristwatch", "fg": 949 }, + { "id": "mushroom", "fg": 950 }, + { "id": "cable_speaker", "fg": 951 }, + { "id": "headphones_circumaural", "fg": 952 }, + { "id": "microphone_xlr_generic", "fg": 953 }, + { "id": "popcan_stove", "fg": 994 }, + { "id": "rad_badge", "fg": 995 }, + { "id": "alexandrite_gold_ring", "fg": 997 }, + { "id": "alexandrite_platinum_ring", "fg": 998 }, + { "id": "alexandrite_silver_ring", "fg": 999 }, + { "id": "amethyst_gold_ring", "fg": 1000 }, + { "id": "amethyst_platinum_ring", "fg": 1001 }, + { "id": "amethyst_silver_ring", "fg": 1002 }, + { "id": "aquamarine_gold_ring", "fg": 1003 }, + { "id": "aquamarine_platinum_ring", "fg": 1004 }, + { "id": "aquamarine_silver_ring", "fg": 1005 }, + { "id": "blue_topaz_gold_ring", "fg": 1006 }, + { "id": "blue_topaz_platinum_ring", "fg": 1007 }, + { "id": "blue_topaz_silver_ring", "fg": 1008 }, + { "id": "citrine_gold_ring", "fg": 1009 }, + { "id": "citrine_platinum_ring", "fg": 1010 }, + { "id": "citrine_silver_ring", "fg": 1011 }, + { "id": "diamond_platinum_ring", "fg": 1012 }, + { "id": "diamond_ring", "fg": 1013 }, + { "id": "diamond_silver_ring", "fg": 1014 }, + { "id": "emerald_gold_ring", "fg": 1015 }, + { "id": "emerald_platinum_ring", "fg": 1016 }, + { "id": "emerald_silver_ring", "fg": 1017 }, + { "id": "garnet_gold_ring", "fg": 1018 }, + { "id": "garnet_platinum_ring", "fg": 1019 }, + { "id": "garnet_silver_ring", "fg": 1020 }, + { "id": "gold_ring", "fg": 1021 }, + { "id": "opal_gold_ring", "fg": 1022 }, + { "id": "opal_platinum_ring", "fg": 1023 }, + { "id": "opal_silver_ring", "fg": 1024 }, + { "id": "pearl_gold_ring", "fg": 1025 }, + { "id": "pearl_platinum_ring", "fg": 1026 }, + { "id": "pearl_silver_ring", "fg": 1027 }, + { "id": "peridot_gold_ring", "fg": 1028 }, + { "id": "peridot_platinum_ring", "fg": 1029 }, + { "id": "peridot_silver_ring", "fg": 1030 }, + { "id": "ring_engagement", "fg": 1031 }, + { "id": "ruby_gold_ring", "fg": 1032 }, + { "id": "ruby_platinum_ring", "fg": 1033 }, + { "id": "ruby_silver_ring", "fg": 1034 }, + { "id": "sapphire_gold_ring", "fg": 1035 }, + { "id": "sapphire_platinum_ring", "fg": 1036 }, + { "id": "sapphire_silver_ring", "fg": 1037 }, + { "id": "tourmaline_gold_ring", "fg": 1038 }, + { "id": "tourmaline_platinum_ring", "fg": 1039 }, + { "id": "tourmaline_silver_ring", "fg": 1040 }, + { "id": "pebble", "fg": 1041 }, + { "id": "pebble_clay", "fg": 1042 }, + { "id": "rock", "fg": 1043 }, + { "id": "rock_flaking", "fg": 1044 }, + { "id": "rock_large", "fg": 1045 }, + { "id": "slime_scrap", "fg": 1054 }, + { "id": "clay_teapot", "fg": 1058 }, + { "id": "crucible", "fg": 1061 }, + { "id": "tire_iron", "fg": 1074 }, + { "id": "towel", "fg": 1089 }, + { "id": "towel_soiled", "fg": 1090 }, + { "id": "towel_wet", "fg": 1091 }, + { "id": "battery_charger", "fg": 1092 }, + { "id": "recharge_station", "fg": 1093 }, + { "id": "wax", "fg": 1096 } ] }, { "file": "normal.png", - "//": "range 1104 to 4431", + "//": "range 1104 to 4511", "tiles": [ { "id": "fd_acid", - "fg": 1122, + "fg": 1125, "multitile": true, "additional_tiles": [ { "id": "center", "animated": true, "fg": [ - { "weight": 8, "sprite": 1107 }, - { "weight": 8, "sprite": 1123 }, - { "weight": 8, "sprite": 1139 }, - { "weight": 8, "sprite": 1155 }, - { "weight": 8, "sprite": 1171 }, - { "weight": 8, "sprite": 1187 }, - { "weight": 8, "sprite": 1203 }, - { "weight": 8, "sprite": 1219 } + { "weight": 8, "sprite": 1110 }, + { "weight": 8, "sprite": 1126 }, + { "weight": 8, "sprite": 1142 }, + { "weight": 8, "sprite": 1158 }, + { "weight": 8, "sprite": 1174 }, + { "weight": 8, "sprite": 1190 }, + { "weight": 8, "sprite": 1206 }, + { "weight": 8, "sprite": 1222 } ] }, { "id": "corner", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1109, 1111, 1110, 1108 ] }, - { "weight": 8, "sprite": [ 1125, 1127, 1126, 1124 ] }, - { "weight": 8, "sprite": [ 1141, 1143, 1142, 1140 ] }, - { "weight": 8, "sprite": [ 1157, 1159, 1158, 1156 ] }, - { "weight": 8, "sprite": [ 1173, 1175, 1174, 1172 ] }, - { "weight": 8, "sprite": [ 1189, 1191, 1190, 1188 ] }, - { "weight": 8, "sprite": [ 1205, 1207, 1206, 1204 ] }, - { "weight": 8, "sprite": [ 1221, 1223, 1222, 1220 ] } + { "weight": 8, "sprite": [ 1112, 1114, 1113, 1111 ] }, + { "weight": 8, "sprite": [ 1128, 1130, 1129, 1127 ] }, + { "weight": 8, "sprite": [ 1144, 1146, 1145, 1143 ] }, + { "weight": 8, "sprite": [ 1160, 1162, 1161, 1159 ] }, + { "weight": 8, "sprite": [ 1176, 1178, 1177, 1175 ] }, + { "weight": 8, "sprite": [ 1192, 1194, 1193, 1191 ] }, + { "weight": 8, "sprite": [ 1208, 1210, 1209, 1207 ] }, + { "weight": 8, "sprite": [ 1224, 1226, 1225, 1223 ] } ] }, { "id": "t_connection", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1119, 1121, 1120, 1118 ] }, - { "weight": 8, "sprite": [ 1135, 1137, 1136, 1134 ] }, - { "weight": 8, "sprite": [ 1151, 1153, 1152, 1150 ] }, - { "weight": 8, "sprite": [ 1167, 1169, 1168, 1166 ] }, - { "weight": 8, "sprite": [ 1183, 1185, 1184, 1182 ] }, - { "weight": 8, "sprite": [ 1199, 1201, 1200, 1198 ] }, - { "weight": 8, "sprite": [ 1215, 1217, 1216, 1214 ] }, - { "weight": 8, "sprite": [ 1231, 1233, 1232, 1230 ] } + { "weight": 8, "sprite": [ 1122, 1124, 1123, 1121 ] }, + { "weight": 8, "sprite": [ 1138, 1140, 1139, 1137 ] }, + { "weight": 8, "sprite": [ 1154, 1156, 1155, 1153 ] }, + { "weight": 8, "sprite": [ 1170, 1172, 1171, 1169 ] }, + { "weight": 8, "sprite": [ 1186, 1188, 1187, 1185 ] }, + { "weight": 8, "sprite": [ 1202, 1204, 1203, 1201 ] }, + { "weight": 8, "sprite": [ 1218, 1220, 1219, 1217 ] }, + { "weight": 8, "sprite": [ 1234, 1236, 1235, 1233 ] } ] }, { "id": "edge", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1113, 1112 ] }, - { "weight": 8, "sprite": [ 1129, 1128 ] }, - { "weight": 8, "sprite": [ 1145, 1144 ] }, - { "weight": 8, "sprite": [ 1161, 1160 ] }, - { "weight": 8, "sprite": [ 1177, 1176 ] }, - { "weight": 8, "sprite": [ 1193, 1192 ] }, - { "weight": 8, "sprite": [ 1209, 1208 ] }, - { "weight": 8, "sprite": [ 1225, 1224 ] } + { "weight": 8, "sprite": [ 1116, 1115 ] }, + { "weight": 8, "sprite": [ 1132, 1131 ] }, + { "weight": 8, "sprite": [ 1148, 1147 ] }, + { "weight": 8, "sprite": [ 1164, 1163 ] }, + { "weight": 8, "sprite": [ 1180, 1179 ] }, + { "weight": 8, "sprite": [ 1196, 1195 ] }, + { "weight": 8, "sprite": [ 1212, 1211 ] }, + { "weight": 8, "sprite": [ 1228, 1227 ] } ] }, { "id": "end_piece", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1115, 1117, 1116, 1114 ] }, - { "weight": 8, "sprite": [ 1131, 1133, 1132, 1130 ] }, - { "weight": 8, "sprite": [ 1147, 1149, 1148, 1146 ] }, - { "weight": 8, "sprite": [ 1163, 1165, 1164, 1162 ] }, - { "weight": 8, "sprite": [ 1179, 1181, 1180, 1178 ] }, - { "weight": 8, "sprite": [ 1195, 1197, 1196, 1194 ] }, - { "weight": 8, "sprite": [ 1211, 1213, 1212, 1210 ] }, - { "weight": 8, "sprite": [ 1227, 1229, 1228, 1226 ] } + { "weight": 8, "sprite": [ 1118, 1120, 1119, 1117 ] }, + { "weight": 8, "sprite": [ 1134, 1136, 1135, 1133 ] }, + { "weight": 8, "sprite": [ 1150, 1152, 1151, 1149 ] }, + { "weight": 8, "sprite": [ 1166, 1168, 1167, 1165 ] }, + { "weight": 8, "sprite": [ 1182, 1184, 1183, 1181 ] }, + { "weight": 8, "sprite": [ 1198, 1200, 1199, 1197 ] }, + { "weight": 8, "sprite": [ 1214, 1216, 1215, 1213 ] }, + { "weight": 8, "sprite": [ 1230, 1232, 1231, 1229 ] } ] }, { "id": "unconnected", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1122, 1122 ] }, - { "weight": 8, "sprite": [ 1138, 1138 ] }, - { "weight": 8, "sprite": [ 1154, 1154 ] }, - { "weight": 8, "sprite": [ 1170, 1170 ] }, - { "weight": 8, "sprite": [ 1186, 1186 ] }, - { "weight": 8, "sprite": [ 1202, 1202 ] }, - { "weight": 8, "sprite": [ 1218, 1218 ] }, - { "weight": 8, "sprite": [ 1234, 1234 ] } + { "weight": 8, "sprite": [ 1125, 1125 ] }, + { "weight": 8, "sprite": [ 1141, 1141 ] }, + { "weight": 8, "sprite": [ 1157, 1157 ] }, + { "weight": 8, "sprite": [ 1173, 1173 ] }, + { "weight": 8, "sprite": [ 1189, 1189 ] }, + { "weight": 8, "sprite": [ 1205, 1205 ] }, + { "weight": 8, "sprite": [ 1221, 1221 ] }, + { "weight": 8, "sprite": [ 1237, 1237 ] } ] } ] }, { "id": "fd_bile", - "fg": 1250, + "fg": 1253, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1235 }, - { "id": "corner", "fg": [ 1237, 1239, 1238, 1236 ] }, - { "id": "t_connection", "fg": [ 1247, 1249, 1248, 1246 ] }, - { "id": "edge", "fg": [ 1241, 1240 ] }, - { "id": "end_piece", "fg": [ 1243, 1245, 1244, 1242 ] }, - { "id": "unconnected", "fg": [ 1250, 1250 ] } + { "id": "center", "fg": 1238 }, + { "id": "corner", "fg": [ 1240, 1242, 1241, 1239 ] }, + { "id": "t_connection", "fg": [ 1250, 1252, 1251, 1249 ] }, + { "id": "edge", "fg": [ 1244, 1243 ] }, + { "id": "end_piece", "fg": [ 1246, 1248, 1247, 1245 ] }, + { "id": "unconnected", "fg": [ 1253, 1253 ] } + ] + }, + { + "id": "fd_electricity", + "fg": 1269, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 1254 }, + { "id": "corner", "fg": [ 1256, 1258, 1257, 1255 ] }, + { "id": "t_connection", "fg": [ 1266, 1268, 1267, 1265 ] }, + { "id": "edge", "fg": [ 1260, 1259 ] }, + { "id": "end_piece", "fg": [ 1262, 1264, 1263, 1261 ] }, + { "id": "unconnected", "fg": [ 1269, 1269 ] } ] }, { "id": "fd_sludge", - "fg": 1298, + "fg": 1317, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 1251 }, { "weight": 1, "sprite": 1267 }, { "weight": 1, "sprite": 1283 } ] + "fg": [ { "weight": 1, "sprite": 1270 }, { "weight": 1, "sprite": 1286 }, { "weight": 1, "sprite": 1302 } ] }, { "id": "corner", "fg": [ - { "weight": 1, "sprite": [ 1253, 1255, 1254, 1252 ] }, - { "weight": 1, "sprite": [ 1269, 1271, 1270, 1268 ] }, - { "weight": 1, "sprite": [ 1285, 1287, 1286, 1284 ] } + { "weight": 1, "sprite": [ 1272, 1274, 1273, 1271 ] }, + { "weight": 1, "sprite": [ 1288, 1290, 1289, 1287 ] }, + { "weight": 1, "sprite": [ 1304, 1306, 1305, 1303 ] } ] }, { "id": "t_connection", "fg": [ - { "weight": 1, "sprite": [ 1263, 1265, 1264, 1262 ] }, - { "weight": 1, "sprite": [ 1279, 1281, 1280, 1278 ] }, - { "weight": 1, "sprite": [ 1295, 1297, 1296, 1294 ] } + { "weight": 1, "sprite": [ 1282, 1284, 1283, 1281 ] }, + { "weight": 1, "sprite": [ 1298, 1300, 1299, 1297 ] }, + { "weight": 1, "sprite": [ 1314, 1316, 1315, 1313 ] } ] }, { "id": "edge", "fg": [ - { "weight": 1, "sprite": [ 1257, 1256 ] }, - { "weight": 1, "sprite": [ 1273, 1272 ] }, - { "weight": 1, "sprite": [ 1289, 1288 ] } + { "weight": 1, "sprite": [ 1276, 1275 ] }, + { "weight": 1, "sprite": [ 1292, 1291 ] }, + { "weight": 1, "sprite": [ 1308, 1307 ] } ] }, { "id": "end_piece", "fg": [ - { "weight": 1, "sprite": [ 1259, 1261, 1260, 1258 ] }, - { "weight": 1, "sprite": [ 1275, 1277, 1276, 1274 ] }, - { "weight": 1, "sprite": [ 1291, 1293, 1292, 1290 ] } + { "weight": 1, "sprite": [ 1278, 1280, 1279, 1277 ] }, + { "weight": 1, "sprite": [ 1294, 1296, 1295, 1293 ] }, + { "weight": 1, "sprite": [ 1310, 1312, 1311, 1309 ] } ] }, { "id": "unconnected", "fg": [ - { "weight": 1, "sprite": [ 1266, 1266 ] }, - { "weight": 1, "sprite": [ 1282, 1282 ] }, - { "weight": 1, "sprite": [ 1298, 1298 ] } + { "weight": 1, "sprite": [ 1285, 1285 ] }, + { "weight": 1, "sprite": [ 1301, 1301 ] }, + { "weight": 1, "sprite": [ 1317, 1317 ] } ] } ] }, - { "id": "f_plant_seed", "fg": 1308, "rotates": false }, - { "id": "f_plant_seedling", "fg": 1309, "rotates": false }, - { "id": "f_plant_mature", "fg": 1307, "rotates": false }, - { "id": "f_plant_harvest", "fg": 1306, "rotates": false }, - { "id": "tr_rollmat", "fg": 1311 }, - { "id": "tr_fur_rollmat", "fg": 1310 }, - { "id": "f_air_conditioner", "fg": 1313 }, - { "id": "f_armchair", "rotates": true, "fg": [ 1316, 1317, 1315, 1314 ] }, - { "id": "f_ash", "fg": 1318 }, - { "id": "f_barricade_road", "fg": 1319 }, + { + "id": "fd_tindalos_gas", + "fg": [ + { "weight": 5, "sprite": 1328 }, + { "weight": 5, "sprite": 1330 }, + { "weight": 5, "sprite": 1331 }, + { "weight": 5, "sprite": 1332 }, + { "weight": 5, "sprite": 1333 }, + { "weight": 5, "sprite": 1334 }, + { "weight": 5, "sprite": 1335 }, + { "weight": 5, "sprite": 1336 }, + { "weight": 5, "sprite": 1337 }, + { "weight": 5, "sprite": 1329 } + ], + "animated": true + }, + { "id": "f_plant_seed", "fg": 1347, "rotates": false }, + { "id": "f_plant_seedling", "fg": 1348, "rotates": false }, + { "id": "f_plant_mature", "fg": 1346, "rotates": false }, + { "id": "f_plant_harvest", "fg": 1345, "rotates": false }, + { "id": "tr_rollmat", "fg": 1350 }, + { "id": "tr_fur_rollmat", "fg": 1349 }, + { "id": "f_air_conditioner", "fg": 1352 }, + { "id": "f_armchair", "rotates": true, "fg": [ 1355, 1356, 1354, 1353 ] }, + { "id": "f_ash", "fg": 1357 }, + { "id": "f_barricade_road", "fg": 1358 }, { "id": "f_bathtub", "multitile": true, - "fg": 1335, + "fg": 1374, "additional_tiles": [ - { "id": "center", "fg": 1320 }, - { "id": "corner", "fg": [ 1322, 1324, 1323, 1321 ] }, - { "id": "t_connection", "fg": [ 1332, 1334, 1333, 1331 ] }, - { "id": "edge", "fg": [ 1326, 1325 ] }, - { "id": "end_piece", "fg": [ 1328, 1330, 1329, 1327 ] }, - { "id": "unconnected", "fg": [ 1335, 1335 ] } + { "id": "center", "fg": 1359 }, + { "id": "corner", "fg": [ 1361, 1363, 1362, 1360 ] }, + { "id": "t_connection", "fg": [ 1371, 1373, 1372, 1370 ] }, + { "id": "edge", "fg": [ 1365, 1364 ] }, + { "id": "end_piece", "fg": [ 1367, 1369, 1368, 1366 ] }, + { "id": "unconnected", "fg": [ 1374, 1374 ] } ] }, { "id": "f_bed", "multitile": true, - "fg": 1353, + "fg": 1392, "additional_tiles": [ - { "id": "center", "fg": 1338 }, - { "id": "corner", "fg": [ 1340, 1342, 1341, 1339 ] }, - { "id": "t_connection", "fg": [ 1350, 1352, 1351, 1349 ] }, - { "id": "edge", "fg": [ 1344, 1343 ] }, - { "id": "end_piece", "fg": [ 1346, 1348, 1347, 1345 ] }, - { "id": "unconnected", "fg": [ 1353, 1353 ] } + { "id": "center", "fg": 1377 }, + { "id": "corner", "fg": [ 1379, 1381, 1380, 1378 ] }, + { "id": "t_connection", "fg": [ 1389, 1391, 1390, 1388 ] }, + { "id": "edge", "fg": [ 1383, 1382 ] }, + { "id": "end_piece", "fg": [ 1385, 1387, 1386, 1384 ] }, + { "id": "unconnected", "fg": [ 1392, 1392 ] } ] }, { "id": "f_bench", "multitile": true, - "fg": 1369, + "fg": 1408, "additional_tiles": [ - { "id": "center", "fg": 1354 }, - { "id": "corner", "fg": [ 1356, 1358, 1357, 1355 ] }, - { "id": "t_connection", "fg": [ 1366, 1368, 1367, 1365 ] }, - { "id": "edge", "fg": [ 1360, 1359 ] }, - { "id": "end_piece", "fg": [ 1362, 1364, 1363, 1361 ] }, - { "id": "unconnected", "fg": [ 1369, 1369 ] } + { "id": "center", "fg": 1393 }, + { "id": "corner", "fg": [ 1395, 1397, 1396, 1394 ] }, + { "id": "t_connection", "fg": [ 1405, 1407, 1406, 1404 ] }, + { "id": "edge", "fg": [ 1399, 1398 ] }, + { "id": "end_piece", "fg": [ 1401, 1403, 1402, 1400 ] }, + { "id": "unconnected", "fg": [ 1408, 1408 ] } ] }, - { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 1371 }, { "weight": 2, "sprite": 1372 } ] }, - { "id": "f_boulder_medium", "fg": 1373 }, - { "id": "f_boulder_small", "fg": 1374 }, - { "id": "f_generator_broken", "fg": 1375 }, - { "id": "t_generator_broken", "fg": 1375, "bg": 2999 }, - { "id": "f_bulletin", "fg": 1376 }, - { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 1377 }, - { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 1378 }, + { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 1410 }, { "weight": 2, "sprite": 1411 } ] }, + { "id": "f_boulder_medium", "fg": 1412 }, + { "id": "f_boulder_small", "fg": 1413 }, + { "id": "f_generator_broken", "fg": 1414 }, + { "id": "t_generator_broken", "fg": 1414, "bg": 3058 }, + { "id": "f_bulletin", "fg": 1415 }, + { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 1416 }, + { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 1417 }, { "id": [ "f_canvas_wall", "f_large_canvas_wall" ], "multitile": true, - "fg": 1394, + "fg": 1433, "additional_tiles": [ - { "id": "center", "fg": 1379 }, - { "id": "corner", "fg": [ 1381, 1383, 1382, 1380 ] }, - { "id": "t_connection", "fg": [ 1391, 1393, 1392, 1390 ] }, - { "id": "edge", "fg": [ 1385, 1384 ] }, - { "id": "end_piece", "fg": [ 1387, 1389, 1388, 1386 ] }, - { "id": "unconnected", "fg": 1394 } + { "id": "center", "fg": 1418 }, + { "id": "corner", "fg": [ 1420, 1422, 1421, 1419 ] }, + { "id": "t_connection", "fg": [ 1430, 1432, 1431, 1429 ] }, + { "id": "edge", "fg": [ 1424, 1423 ] }, + { "id": "end_piece", "fg": [ 1426, 1428, 1427, 1425 ] }, + { "id": "unconnected", "fg": 1433 } ] }, - { "id": "f_cardboard_box", "fg": 1395 }, - { "id": "f_centrifuge", "fg": 1396 }, - { "id": "t_centrifuge", "fg": 1396, "bg": 3228 }, - { "id": "f_chair", "rotates": true, "fg": [ 1399, 1400, 1398, 1397 ] }, - { "id": "f_chamomile", "fg": 1401 }, - { "id": "f_compact_ASRG_containment", "fg": 1403 }, + { "id": "f_cardboard_box", "fg": 1434 }, + { "id": "f_centrifuge", "fg": 1435 }, + { "id": "t_centrifuge", "fg": 1435, "bg": 3287 }, + { "id": "f_chair", "rotates": true, "fg": [ 1438, 1439, 1437, 1436 ] }, + { "id": "f_chamomile", "fg": 1440 }, + { "id": "f_compact_ASRG_containment", "fg": 1442 }, { "id": "f_counter", "multitile": true, - "fg": 1419, + "fg": 1458, "additional_tiles": [ - { "id": "center", "fg": 1404 }, - { "id": "corner", "fg": [ 1406, 1408, 1407, 1405 ] }, - { "id": "t_connection", "fg": [ 1416, 1418, 1417, 1415 ] }, - { "id": "edge", "fg": [ 1410, 1409 ] }, - { "id": "end_piece", "fg": [ 1412, 1414, 1413, 1411 ] }, - { "id": "unconnected", "fg": [ 1419, 1419 ] } + { "id": "center", "fg": 1443 }, + { "id": "corner", "fg": [ 1445, 1447, 1446, 1444 ] }, + { "id": "t_connection", "fg": [ 1455, 1457, 1456, 1454 ] }, + { "id": "edge", "fg": [ 1449, 1448 ] }, + { "id": "end_piece", "fg": [ 1451, 1453, 1452, 1450 ] }, + { "id": "unconnected", "fg": [ 1458, 1458 ] } ] }, { "id": "f_cupboard", "multitile": true, - "fg": 1435, + "fg": 1474, "additional_tiles": [ - { "id": "center", "fg": 1420 }, - { "id": "corner", "fg": [ 1422, 1424, 1423, 1421 ] }, - { "id": "t_connection", "fg": [ 1432, 1434, 1433, 1431 ] }, - { "id": "edge", "fg": [ 1426, 1425 ] }, - { "id": "end_piece", "fg": [ 1428, 1430, 1429, 1427 ] }, - { "id": "unconnected", "fg": [ 1435, 1435 ] } + { "id": "center", "fg": 1459 }, + { "id": "corner", "fg": [ 1461, 1463, 1462, 1460 ] }, + { "id": "t_connection", "fg": [ 1471, 1473, 1472, 1470 ] }, + { "id": "edge", "fg": [ 1465, 1464 ] }, + { "id": "end_piece", "fg": [ 1467, 1469, 1468, 1466 ] }, + { "id": "unconnected", "fg": [ 1474, 1474 ] } ] }, - { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 1438 }, { "weight": 2, "sprite": 1439 } ] }, - { "id": "f_dandelion_season_spring", "fg": 1440 }, - { "id": "f_dandelion_season_summer", "fg": 1442 }, - { "id": "f_dandelion_season_autumn", "fg": 1441 }, - { "id": "f_dandelion_season_winter", "fg": 1443 }, - { "id": "f_datura", "fg": 1444 }, + { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 1477 }, { "weight": 2, "sprite": 1478 } ] }, + { "id": "f_dandelion_season_spring", "fg": 1479 }, + { "id": "f_dandelion_season_summer", "fg": 1481 }, + { "id": "f_dandelion_season_autumn", "fg": 1480 }, + { "id": "f_dandelion_season_winter", "fg": 1482 }, + { "id": "f_datura", "fg": 1483 }, { "id": "f_desk", "multitile": true, - "fg": 1460, + "fg": 1499, "additional_tiles": [ - { "id": "center", "fg": 1445 }, - { "id": "corner", "fg": [ 1447, 1449, 1448, 1446 ] }, - { "id": "t_connection", "fg": [ 1457, 1459, 1458, 1456 ] }, - { "id": "edge", "fg": [ 1451, 1450 ] }, - { "id": "end_piece", "fg": [ 1453, 1455, 1454, 1452 ] }, - { "id": "unconnected", "fg": [ 1460, 1460 ] } + { "id": "center", "fg": 1484 }, + { "id": "corner", "fg": [ 1486, 1488, 1487, 1485 ] }, + { "id": "t_connection", "fg": [ 1496, 1498, 1497, 1495 ] }, + { "id": "edge", "fg": [ 1490, 1489 ] }, + { "id": "end_piece", "fg": [ 1492, 1494, 1493, 1491 ] }, + { "id": "unconnected", "fg": [ 1499, 1499 ] } ] }, - { "id": "f_displaycase", "fg": 1461 }, - { "id": "f_entertainment_center", "fg": 1462 }, - { "id": "f_filing_cabinet", "fg": 1463 }, - { "id": "f_firering", "fg": 1464 }, - { "id": "f_flower_spurge", "fg": 1465 }, - { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 1466 }, { "weight": 2, "sprite": 1467 } ] }, + { "id": "f_displaycase", "fg": 1500 }, + { "id": "f_entertainment_center", "fg": 1501 }, + { "id": "f_filing_cabinet", "fg": 1502 }, + { "id": "f_firering", "fg": 1503 }, + { "id": "f_flower_spurge", "fg": 1504 }, + { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 1505 }, { "weight": 2, "sprite": 1506 } ] }, { "id": [ "f_grave_stone", "f_grave_head" ], - "fg": [ { "weight": 1, "sprite": 1468 }, { "weight": 1, "sprite": 1469 } ] - }, - { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 1470 }, { "weight": 1, "sprite": 1471 } ] }, - { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 1472 }, - { "id": "f_gunsafe_ml", "fg": 1475 }, - { "id": "f_gunsafe_mj", "fg": 1474 }, - { "id": "f_gun_safe_el", "fg": 1473 }, - { "id": "f_hay", "fg": 1476 }, - { "id": "f_indoor_plant", "fg": 1477 }, - { "id": "f_indoor_plant_y", "fg": 1478 }, - { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 1479 }, - { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 1480 }, - { "id": "f_leather_tarp", "fg": 1481 }, - { "id": "f_mailbox", "fg": 1483 }, - { "id": "f_metal_crate_r", "fg": 1486 }, - { "id": "f_metal_crate_c", "fg": 1484 }, - { "id": "f_metal_crate_o", "fg": 1485 }, + "fg": [ { "weight": 1, "sprite": 1507 }, { "weight": 1, "sprite": 1508 } ] + }, + { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 1509 }, { "weight": 1, "sprite": 1510 } ] }, + { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 1511 }, + { "id": "f_gunsafe_ml", "fg": 1514 }, + { "id": "f_gunsafe_mj", "fg": 1513 }, + { "id": "f_gun_safe_el", "fg": 1512 }, + { "id": "f_hay", "fg": 1515 }, + { "id": "f_indoor_plant", "fg": 1516 }, + { "id": "f_indoor_plant_y", "fg": 1517 }, + { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 1518 }, + { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 1519 }, + { "id": "f_leather_tarp", "fg": 1520 }, + { "id": "f_mailbox", "fg": 1522 }, + { "id": "f_metal_crate_r", "fg": 1525 }, + { "id": "f_metal_crate_c", "fg": 1523 }, + { "id": "f_metal_crate_o", "fg": 1524 }, { "id": "f_metal_table", "multitile": true, - "fg": 1502, + "fg": 1541, "additional_tiles": [ - { "id": "center", "fg": 1487 }, - { "id": "corner", "fg": [ 1489, 1491, 1490, 1488 ] }, - { "id": "t_connection", "fg": [ 1499, 1501, 1500, 1498 ] }, - { "id": "edge", "fg": [ 1493, 1492 ] }, - { "id": "end_piece", "fg": [ 1495, 1497, 1496, 1494 ] }, - { "id": "unconnected", "fg": [ 1502, 1502 ] } + { "id": "center", "fg": 1526 }, + { "id": "corner", "fg": [ 1528, 1530, 1529, 1527 ] }, + { "id": "t_connection", "fg": [ 1538, 1540, 1539, 1537 ] }, + { "id": "edge", "fg": [ 1532, 1531 ] }, + { "id": "end_piece", "fg": [ 1534, 1536, 1535, 1533 ] }, + { "id": "unconnected", "fg": [ 1541, 1541 ] } ] }, - { "id": "f_alien_anemone", "fg": 1503 }, - { "id": "f_alien_table", "fg": 1504 }, - { "id": "f_mustard_season_spring", "fg": 1506, "rotates": false }, - { "id": "f_mustard_season_summer", "fg": 1507, "rotates": false }, - { "id": "f_mustard_season_autumn", "fg": 1505, "rotates": false }, - { "id": "f_mustard_season_winter", "fg": 1508, "rotates": false }, - { "id": "f_mutpoppy", "fg": 1509 }, + { "id": "f_alien_anemone", "fg": 1542 }, + { "id": "f_alien_table", "fg": 1543 }, + { "id": "f_mustard_season_spring", "fg": 1545, "rotates": false }, + { "id": "f_mustard_season_summer", "fg": 1546, "rotates": false }, + { "id": "f_mustard_season_autumn", "fg": 1544, "rotates": false }, + { "id": "f_mustard_season_winter", "fg": 1547, "rotates": false }, + { "id": "f_mutpoppy", "fg": 1548 }, { "id": "f_planter", "multitile": true, - "fg": 1525, + "fg": 1564, "additional_tiles": [ - { "id": "center", "fg": 1510 }, - { "id": "corner", "fg": [ 1512, 1514, 1513, 1511 ] }, - { "id": "t_connection", "fg": [ 1522, 1524, 1523, 1521 ] }, - { "id": "edge", "fg": [ 1516, 1515 ] }, - { "id": "end_piece", "fg": [ 1518, 1520, 1519, 1517 ] }, - { "id": "unconnected", "fg": [ 1525, 1525 ] } + { "id": "center", "fg": 1549 }, + { "id": "corner", "fg": [ 1551, 1553, 1552, 1550 ] }, + { "id": "t_connection", "fg": [ 1561, 1563, 1562, 1560 ] }, + { "id": "edge", "fg": [ 1555, 1554 ] }, + { "id": "end_piece", "fg": [ 1557, 1559, 1558, 1556 ] }, + { "id": "unconnected", "fg": [ 1564, 1564 ] } ] }, { "id": "f_planter_harvest", "multitile": true, - "fg": 1541, + "fg": 1580, "additional_tiles": [ - { "id": "center", "fg": 1526 }, - { "id": "corner", "fg": [ 1528, 1530, 1529, 1527 ] }, - { "id": "t_connection", "fg": [ 1538, 1540, 1539, 1537 ] }, - { "id": "edge", "fg": [ 1532, 1531 ] }, - { "id": "end_piece", "fg": [ 1534, 1536, 1535, 1533 ] }, - { "id": "unconnected", "fg": [ 1541, 1541 ] } + { "id": "center", "fg": 1565 }, + { "id": "corner", "fg": [ 1567, 1569, 1568, 1566 ] }, + { "id": "t_connection", "fg": [ 1577, 1579, 1578, 1576 ] }, + { "id": "edge", "fg": [ 1571, 1570 ] }, + { "id": "end_piece", "fg": [ 1573, 1575, 1574, 1572 ] }, + { "id": "unconnected", "fg": [ 1580, 1580 ] } ] }, { "id": "f_planter_mature", "multitile": true, - "fg": 1557, + "fg": 1596, "additional_tiles": [ - { "id": "center", "fg": 1542 }, - { "id": "corner", "fg": [ 1544, 1546, 1545, 1543 ] }, - { "id": "t_connection", "fg": [ 1554, 1556, 1555, 1553 ] }, - { "id": "edge", "fg": [ 1548, 1547 ] }, - { "id": "end_piece", "fg": [ 1550, 1552, 1551, 1549 ] }, - { "id": "unconnected", "fg": [ 1557, 1557 ] } + { "id": "center", "fg": 1581 }, + { "id": "corner", "fg": [ 1583, 1585, 1584, 1582 ] }, + { "id": "t_connection", "fg": [ 1593, 1595, 1594, 1592 ] }, + { "id": "edge", "fg": [ 1587, 1586 ] }, + { "id": "end_piece", "fg": [ 1589, 1591, 1590, 1588 ] }, + { "id": "unconnected", "fg": [ 1596, 1596 ] } ] }, { "id": "f_planter_seedling", "multitile": true, - "fg": 1573, + "fg": 1612, "additional_tiles": [ - { "id": "center", "fg": 1558 }, - { "id": "corner", "fg": [ 1560, 1562, 1561, 1559 ] }, - { "id": "t_connection", "fg": [ 1570, 1572, 1571, 1569 ] }, - { "id": "edge", "fg": [ 1564, 1563 ] }, - { "id": "end_piece", "fg": [ 1566, 1568, 1567, 1565 ] }, - { "id": "unconnected", "fg": [ 1573, 1573 ] } + { "id": "center", "fg": 1597 }, + { "id": "corner", "fg": [ 1599, 1601, 1600, 1598 ] }, + { "id": "t_connection", "fg": [ 1609, 1611, 1610, 1608 ] }, + { "id": "edge", "fg": [ 1603, 1602 ] }, + { "id": "end_piece", "fg": [ 1605, 1607, 1606, 1604 ] }, + { "id": "unconnected", "fg": [ 1612, 1612 ] } ] }, - { "id": "f_plastic_groundsheet", "fg": 1574 }, + { "id": "f_plastic_groundsheet", "fg": 1613 }, { "id": "f_pool_table", "multitile": true, - "fg": 1590, + "fg": 1629, "additional_tiles": [ - { "id": "center", "fg": 1575 }, - { "id": "corner", "fg": [ 1577, 1579, 1578, 1576 ] }, - { "id": "t_connection", "fg": [ 1587, 1589, 1588, 1586 ] }, - { "id": "edge", "fg": [ 1581, 1580 ] }, - { "id": "end_piece", "fg": [ 1583, 1585, 1584, 1582 ] }, - { "id": "unconnected", "fg": 1590 } + { "id": "center", "fg": 1614 }, + { "id": "corner", "fg": [ 1616, 1618, 1617, 1615 ] }, + { "id": "t_connection", "fg": [ 1626, 1628, 1627, 1625 ] }, + { "id": "edge", "fg": [ 1620, 1619 ] }, + { "id": "end_piece", "fg": [ 1622, 1624, 1623, 1621 ] }, + { "id": "unconnected", "fg": 1629 } ] }, - { "id": "f_rack", "fg": 1591 }, - { "id": "f_rack_wood", "fg": 1592 }, - { "id": "f_recycle_bin", "fg": 1593 }, - { "id": "f_rubble", "fg": 1594 }, - { "id": "f_rubble_rock", "fg": 1595 }, + { "id": "f_rack", "fg": 1630 }, + { "id": "f_rack_wood", "fg": 1631 }, + { "id": "f_recycle_bin", "fg": 1632 }, + { "id": "f_rubble", "fg": 1633 }, + { "id": "f_rubble_rock", "fg": 1634 }, { "id": "f_scrap_bridge", - "fg": 1611, + "fg": 1650, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1596 }, - { "id": "corner", "fg": [ 1598, 1600, 1599, 1597 ] }, - { "id": "t_connection", "fg": [ 1608, 1610, 1609, 1607 ] }, - { "id": "edge", "fg": [ 1602, 1601 ] }, - { "id": "end_piece", "fg": [ 1604, 1606, 1605, 1603 ] }, - { "id": "unconnected", "fg": [ 1611, 1611 ] } + { "id": "center", "fg": 1635 }, + { "id": "corner", "fg": [ 1637, 1639, 1638, 1636 ] }, + { "id": "t_connection", "fg": [ 1647, 1649, 1648, 1646 ] }, + { "id": "edge", "fg": [ 1641, 1640 ] }, + { "id": "end_piece", "fg": [ 1643, 1645, 1644, 1642 ] }, + { "id": "unconnected", "fg": [ 1650, 1650 ] } ] }, - { "id": "f_sign", "fg": 1612 }, - { "id": "f_skin_door", "fg": 1613 }, - { "id": "f_skin_door_o", "fg": 1614 }, + { "id": "f_sign", "fg": 1651 }, + { "id": "f_skin_door", "fg": 1652 }, + { "id": "f_skin_door_o", "fg": 1653 }, { "id": "f_skin_wall", - "fg": 1631, + "fg": 1670, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1616 }, - { "id": "corner", "fg": [ 1618, 1620, 1619, 1617 ] }, - { "id": "t_connection", "fg": [ 1628, 1630, 1629, 1627 ] }, - { "id": "edge", "fg": [ 1622, 1621 ] }, - { "id": "end_piece", "fg": [ 1624, 1626, 1625, 1623 ] }, - { "id": "unconnected", "fg": 1631 } + { "id": "center", "fg": 1655 }, + { "id": "corner", "fg": [ 1657, 1659, 1658, 1656 ] }, + { "id": "t_connection", "fg": [ 1667, 1669, 1668, 1666 ] }, + { "id": "edge", "fg": [ 1661, 1660 ] }, + { "id": "end_piece", "fg": [ 1663, 1665, 1664, 1662 ] }, + { "id": "unconnected", "fg": 1670 } ] }, { "id": "f_sofa", "multitile": true, - "fg": 1647, + "fg": 1686, "additional_tiles": [ - { "id": "center", "fg": 1632 }, - { "id": "corner", "fg": [ 1634, 1636, 1635, 1633 ] }, - { "id": "t_connection", "fg": [ 1644, 1646, 1645, 1643 ] }, - { "id": "edge", "fg": [ 1638, 1637 ] }, - { "id": "end_piece", "fg": [ 1640, 1642, 1641, 1639 ] }, - { "id": "unconnected", "fg": [ 1647, 1647 ] } + { "id": "center", "fg": 1671 }, + { "id": "corner", "fg": [ 1673, 1675, 1674, 1672 ] }, + { "id": "t_connection", "fg": [ 1683, 1685, 1684, 1682 ] }, + { "id": "edge", "fg": [ 1677, 1676 ] }, + { "id": "end_piece", "fg": [ 1679, 1681, 1680, 1678 ] }, + { "id": "unconnected", "fg": [ 1686, 1686 ] } ] }, - { "id": "f_stool", "fg": 1648 }, - { "id": "f_sunflower_season_spring", "fg": 1649 }, - { "id": "f_sunflower_season_winter", "fg": 1650 }, + { "id": "f_stool", "fg": 1687 }, + { "id": "f_sunflower_season_spring", "fg": 1688 }, + { "id": "f_sunflower_season_winter", "fg": 1689 }, { "id": "f_table", "multitile": true, - "fg": 1666, + "fg": 1705, "additional_tiles": [ - { "id": "center", "fg": 1651 }, - { "id": "corner", "fg": [ 1653, 1655, 1654, 1652 ] }, - { "id": "t_connection", "fg": [ 1663, 1665, 1664, 1662 ] }, - { "id": "edge", "fg": [ 1657, 1656 ] }, - { "id": "end_piece", "fg": [ 1659, 1661, 1660, 1658 ] }, - { "id": "unconnected", "fg": [ 1666, 1666 ] } + { "id": "center", "fg": 1690 }, + { "id": "corner", "fg": [ 1692, 1694, 1693, 1691 ] }, + { "id": "t_connection", "fg": [ 1702, 1704, 1703, 1701 ] }, + { "id": "edge", "fg": [ 1696, 1695 ] }, + { "id": "end_piece", "fg": [ 1698, 1700, 1699, 1697 ] }, + { "id": "unconnected", "fg": [ 1705, 1705 ] } ] }, - { "id": "f_toilet", "fg": 1667 }, - { "id": "f_trashcan", "fg": 1668 }, - { "id": "f_wreckage", "fg": 1669 }, - { "id": "f_lilypad", "fg": 1670 }, - { "id": "f_small_satelitte_dish", "fg": 1674 }, - { "id": "f_TV_antenna", "fg": 1671 }, - { "id": "f_cellphone_booster", "fg": 1672 }, - { "id": "f_vent_pipe", "fg": 1675 }, - { "id": "f_roof_turbine_vent", "fg": 1673 }, + { "id": "f_toilet", "fg": 1706 }, + { "id": "f_trashcan", "fg": 1707 }, + { "id": "f_wreckage", "fg": 1708 }, + { "id": "f_lilypad", "fg": 1709 }, + { "id": "f_small_satelitte_dish", "fg": 1713 }, + { "id": "f_TV_antenna", "fg": 1710 }, + { "id": "f_cellphone_booster", "fg": 1711 }, + { "id": "f_vent_pipe", "fg": 1714 }, + { "id": "f_roof_turbine_vent", "fg": 1712 }, { "id": "f_sandbag_half", "multitile": true, - "fg": 1691, - "additional_tiles": [ - { "id": "center", "fg": 1676 }, - { "id": "corner", "fg": [ 1678, 1680, 1679, 1677 ] }, - { "id": "t_connection", "fg": [ 1688, 1690, 1689, 1687 ] }, - { "id": "edge", "fg": [ 1682, 1681 ] }, - { "id": "end_piece", "fg": [ 1684, 1686, 1685, 1683 ] }, - { "id": "unconnected", "fg": [ 1691, 1691 ] } - ] - }, - { "id": "1st_aid", "fg": 1692 }, - { "id": "2x4", "fg": 1693 }, - { "id": "halberd", "fg": 1714 }, - { "id": "halberd_fake", "fg": 1714 }, - { "id": "nodachi", "fg": 1722 }, - { "id": "nodachi_fake", "fg": 1722 }, - { "id": "nodachi_inferior", "fg": 1722 }, - { "id": "arming_sword", "fg": 1858 }, - { "id": "art_sphere", "fg": 1873 }, - { "id": "art_rod", "fg": 1871 }, - { "id": "art_teardrop", "fg": 1875 }, - { "id": "art_lamp", "fg": 1867 }, - { "id": "art_snake", "fg": 1872 }, - { "id": "art_disc", "fg": 1864 }, - { "id": "art_beads", "fg": 1861 }, - { "id": "art_napkin", "fg": 1868 }, - { "id": "art_urchin", "fg": 1877 }, - { "id": "art_jelly", "fg": 1865 }, - { "id": "art_spiral", "fg": 1874 }, - { "id": "art_pin", "fg": 1869 }, - { "id": "art_tube", "fg": 1876 }, - { "id": "art_pyramid", "fg": 1870 }, - { "id": "art_crystal", "fg": 1863 }, - { "id": "art_knot", "fg": 1866 }, - { "id": "art_crescent", "fg": 1862 }, - { "id": "altered_teapot", "fg": 1859 }, - { "id": "architect_cube", "fg": 1860 }, - { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 1935 }, - { "id": [ "ak47", "aksemi" ], "fg": 1885 }, - { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 1899 }, - { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 1936 }, - { "id": [ "m249", "m249_semi" ], "fg": 1944 }, - { "id": [ "m60", "m60_semi" ], "fg": 1954 }, - { "id": [ "mp40", "mp40semi" ], "fg": 1970 }, - { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2009 }, - { "id": "fire_ax", "fg": 2025 }, - { "id": "ax", "fg": 2028 }, - { "id": "hatchet", "fg": 2026 }, - { "id": "backpack", "fg": 2029 }, - { "id": "duffelbag", "fg": 2030 }, - { "id": "molle_pack", "fg": 2031 }, - { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 2034 }, - { "id": "bag_canvas", "fg": 2037 }, - { "id": "bat", "fg": 2038 }, - { "id": "bat_metal", "fg": 2039 }, - { "id": "blanket", "fg": 2040 }, - { "id": "down_blanket", "fg": 2041 }, - { "id": "electric_blanket", "fg": 2042 }, - { "id": "board_trap", "fg": 2043 }, - { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 2044 }, - { "id": "box_large", "fg": 2055 }, - { "id": "box_medium", "fg": 2056 }, - { "id": "broom", "fg": 2057 }, - { "id": "bwirebat", "fg": 2058 }, - { "id": "cattlefodder", "fg": 2077 }, - { "id": "chainsaw_off", "fg": 2078 }, - { "id": "axe_ring", "fg": 2085 }, - { "id": "balclava", "fg": 2086 }, - { "id": "beret", "fg": 2087 }, - { "id": "boots", "fg": 2088 }, - { "id": "boxer_briefs", "fg": 2089 }, - { "id": "boxer_shorts", "fg": 2090 }, - { "id": "boy_shorts", "fg": 2091 }, - { "id": "bra", "fg": 2092 }, - { "id": "briefs", "fg": 2093 }, - { "id": "bscabbard", "fg": 2094 }, - { "id": "corset", "fg": 2097 }, - { "id": "cowboy_hat", "fg": 2098 }, - { "id": "dress_shoes", "fg": 2099 }, - { "id": "hat_ball", "fg": 2100 }, - { "id": "hat_cotton", "fg": 2101 }, - { "id": "hat_fur", "fg": 2102 }, - { "id": "hat_knit", "fg": 2104 }, - { "id": "hat_noise_cancelling", "fg": 2105 }, - { "id": "helmet_barbute", "fg": 2106 }, - { "id": "helmet_chitin", "fg": 2107 }, - { "id": "helmet_kabuto", "fg": 2108 }, - { "id": "holster", "fg": 2109 }, - { "id": "hoodie", "fg": 2110 }, - { "id": "jeans", "fg": 2113 }, - { "id": "leather_belt", "fg": 2114 }, - { "id": "longshirt", "fg": 2115 }, - { "id": "maid_dress", "fg": 2116 }, - { "id": "maid_hat", "fg": 2117 }, - { "id": "mask_dust", "fg": 2118 }, - { "id": "panties", "fg": 2119 }, - { "id": "pants", "fg": 2120 }, - { "id": "pants_cargo", "fg": 2121 }, - { "id": "polo_shirt", "fg": 2122 }, - { "id": "ragpouch", "fg": 2123 }, - { "id": "scabbard", "fg": 2124 }, - { "id": "sneakers", "fg": 2126 }, - { "id": "socks", "fg": 2127 }, - { "id": "spearsling", "fg": 2128 }, - { "id": "stockings", "fg": 2130 }, - { "id": "sweater", "fg": 2133 }, - { "id": "sweatshirt", "fg": 2134 }, - { "id": "tank_top", "fg": 2135 }, - { "id": "tool_belt", "fg": 2136 }, - { "id": "tshirt", "fg": 2137 }, - { "id": "turban", "fg": 2138 }, - { "id": "undershirt", "fg": 2139 }, - { "id": "coat_lab", "fg": 2095 }, - { "id": "coat_rain", "fg": 2096 }, - { "id": "sports_bra", "fg": 2129 }, - { "id": "skirt", "fg": 2125 }, - { "id": "jacket_light", "fg": 2112 }, - { "id": "jacket_army", "fg": 2111 }, - { "id": "hat_hard", "fg": 2103 }, - { "id": "striped_pants", "fg": 2131 }, - { "id": "striped_shirt", "fg": 2132 }, - { "id": "cloak", "fg": 2140 }, - { "id": "cloak_wool", "fg": 2143 }, - { "id": "cloak_leather", "fg": 2142 }, - { "id": "cloak_fur", "fg": 2141 }, - { "id": "coffeemaker", "fg": 2144 }, - { "id": "contacts", "fg": 2145 }, - { "id": "corpse", "fg": 2146 }, - { "id": "corpse_generic_human", "fg": 2147 }, - { "id": "crowbar", "fg": 2155 }, - { "id": "filter_air", "fg": 2158 }, - { "id": "fish_bait", "fg": 2159 }, + "fg": 1730, + "additional_tiles": [ + { "id": "center", "fg": 1715 }, + { "id": "corner", "fg": [ 1717, 1719, 1718, 1716 ] }, + { "id": "t_connection", "fg": [ 1727, 1729, 1728, 1726 ] }, + { "id": "edge", "fg": [ 1721, 1720 ] }, + { "id": "end_piece", "fg": [ 1723, 1725, 1724, 1722 ] }, + { "id": "unconnected", "fg": [ 1730, 1730 ] } + ] + }, + { "id": "1st_aid", "fg": 1731 }, + { "id": "2x4", "fg": 1732 }, + { "id": "halberd", "fg": 1753 }, + { "id": "halberd_fake", "fg": 1753 }, + { "id": "nodachi", "fg": 1761 }, + { "id": "nodachi_fake", "fg": 1761 }, + { "id": "nodachi_inferior", "fg": 1761 }, + { "id": "arming_sword", "fg": 1897 }, + { "id": "art_sphere", "fg": 1912 }, + { "id": "art_rod", "fg": 1910 }, + { "id": "art_teardrop", "fg": 1914 }, + { "id": "art_lamp", "fg": 1906 }, + { "id": "art_snake", "fg": 1911 }, + { "id": "art_disc", "fg": 1903 }, + { "id": "art_beads", "fg": 1900 }, + { "id": "art_napkin", "fg": 1907 }, + { "id": "art_urchin", "fg": 1916 }, + { "id": "art_jelly", "fg": 1904 }, + { "id": "art_spiral", "fg": 1913 }, + { "id": "art_pin", "fg": 1908 }, + { "id": "art_tube", "fg": 1915 }, + { "id": "art_pyramid", "fg": 1909 }, + { "id": "art_crystal", "fg": 1902 }, + { "id": "art_knot", "fg": 1905 }, + { "id": "art_crescent", "fg": 1901 }, + { "id": "altered_teapot", "fg": 1898 }, + { "id": "architect_cube", "fg": 1899 }, + { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 1974 }, + { "id": [ "ak47", "aksemi" ], "fg": 1924 }, + { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 1938 }, + { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 1975 }, + { "id": [ "m249", "m249_semi" ], "fg": 1983 }, + { "id": [ "m60", "m60_semi" ], "fg": 1993 }, + { "id": [ "mp40", "mp40semi" ], "fg": 2009 }, + { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2048 }, + { "id": "fire_ax", "fg": 2064 }, + { "id": "ax", "fg": 2067 }, + { "id": "hatchet", "fg": 2065 }, + { "id": "backpack", "fg": 2068 }, + { "id": "duffelbag", "fg": 2069 }, + { "id": "molle_pack", "fg": 2070 }, + { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 2073 }, + { "id": "bag_canvas", "fg": 2076 }, + { "id": "bat", "fg": 2077 }, + { "id": "bat_metal", "fg": 2078 }, + { "id": "blanket", "fg": 2079 }, + { "id": "down_blanket", "fg": 2080 }, + { "id": "electric_blanket", "fg": 2081 }, + { "id": "board_trap", "fg": 2082 }, + { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 2083 }, + { "id": "box_large", "fg": 2094 }, + { "id": "box_medium", "fg": 2095 }, + { "id": "broom", "fg": 2096 }, + { "id": "bwirebat", "fg": 2097 }, + { "id": "cattlefodder", "fg": 2116 }, + { "id": "chainsaw_off", "fg": 2117 }, + { "id": "axe_ring", "fg": 2124 }, + { "id": "balclava", "fg": 2125 }, + { "id": "beret", "fg": 2126 }, + { "id": "boots", "fg": 2127 }, + { "id": "boxer_briefs", "fg": 2128 }, + { "id": "boxer_shorts", "fg": 2129 }, + { "id": "boy_shorts", "fg": 2130 }, + { "id": "bra", "fg": 2131 }, + { "id": "briefs", "fg": 2132 }, + { "id": "bscabbard", "fg": 2133 }, + { "id": "corset", "fg": 2136 }, + { "id": "cowboy_hat", "fg": 2137 }, + { "id": "dress_shoes", "fg": 2138 }, + { "id": "hat_ball", "fg": 2139 }, + { "id": "hat_cotton", "fg": 2140 }, + { "id": "hat_fur", "fg": 2141 }, + { "id": "hat_knit", "fg": 2143 }, + { "id": "hat_noise_cancelling", "fg": 2144 }, + { "id": "helmet_barbute", "fg": 2145 }, + { "id": "helmet_chitin", "fg": 2146 }, + { "id": "helmet_kabuto", "fg": 2147 }, + { "id": "holster", "fg": 2148 }, + { "id": "hoodie", "fg": 2149 }, + { "id": "jeans", "fg": 2152 }, + { "id": "leather_belt", "fg": 2153 }, + { "id": "longshirt", "fg": 2154 }, + { "id": "maid_dress", "fg": 2155 }, + { "id": "maid_hat", "fg": 2156 }, + { "id": "mask_dust", "fg": 2157 }, + { "id": "panties", "fg": 2158 }, + { "id": "pants", "fg": 2159 }, + { "id": "pants_cargo", "fg": 2160 }, + { "id": "polo_shirt", "fg": 2161 }, + { "id": "ragpouch", "fg": 2162 }, + { "id": "scabbard", "fg": 2163 }, + { "id": "sneakers", "fg": 2165 }, + { "id": "socks", "fg": 2166 }, + { "id": "spearsling", "fg": 2167 }, + { "id": "stockings", "fg": 2169 }, + { "id": "sweater", "fg": 2172 }, + { "id": "sweatshirt", "fg": 2173 }, + { "id": "tank_top", "fg": 2174 }, + { "id": "tool_belt", "fg": 2175 }, + { "id": "tshirt", "fg": 2176 }, + { "id": "turban", "fg": 2177 }, + { "id": "undershirt", "fg": 2178 }, + { "id": "coat_lab", "fg": 2134 }, + { "id": "coat_rain", "fg": 2135 }, + { "id": "sports_bra", "fg": 2168 }, + { "id": "skirt", "fg": 2164 }, + { "id": "jacket_light", "fg": 2151 }, + { "id": "jacket_army", "fg": 2150 }, + { "id": "hat_hard", "fg": 2142 }, + { "id": "striped_pants", "fg": 2170 }, + { "id": "striped_shirt", "fg": 2171 }, + { "id": "cloak", "fg": 2179 }, + { "id": "cloak_wool", "fg": 2182 }, + { "id": "cloak_leather", "fg": 2181 }, + { "id": "cloak_fur", "fg": 2180 }, + { "id": "coffeemaker", "fg": 2183 }, + { "id": "contacts", "fg": 2184 }, + { "id": "corpse", "fg": 2185 }, + { "id": "corpse_generic_human", "fg": 2186 }, + { "id": "crowbar", "fg": 2194 }, + { "id": "filter_air", "fg": 2197 }, + { "id": "fish_bait", "fg": 2198 }, { "id": [ "corpse_mon_fish_white_bass", @@ -1962,7 +1996,7 @@ "corpse_mon_fish_white_catfish", "corpse_mon_fish_pickerel" ], - "fg": 2163 + "fg": 2202 }, { "id": [ @@ -1974,7 +2008,7 @@ "corpse_mon_fish_white_sucker", "corpse_mon_fish_fallfish" ], - "fg": 2162 + "fg": 2201 }, { "id": [ @@ -1989,7 +2023,7 @@ "corpse_mon_fish_bullhead", "corpse_mon_fish_carp" ], - "fg": 2161 + "fg": 2200 }, { "id": [ @@ -2005,469 +2039,486 @@ "corpse_mon_fish_grass_carp", "corpse_mon_fish_bowfin" ], - "fg": 2160 - }, - { "id": "fish_trap", "fg": 2164 }, - { "id": "fishing_rod_basic", "fg": 2165 }, - { "id": "fishing_rod_professional", "fg": 2166 }, - { "id": "forge", "fg": 2168 }, - { "id": "char_forge", "fg": 2167 }, - { "id": "glass_shard", "fg": 2192 }, - { "id": "hoboreel", "fg": 2193 }, - { "id": "hydrogen_tank", "fg": 2194 }, - { "id": "leather_tarp", "fg": 2195 }, - { "id": "water", "fg": 2206 }, - { "id": "water_clean", "fg": 2207 }, - { "id": "gasoline", "fg": 2201 }, - { "id": "diesel", "fg": 2199 }, - { "id": "biodiesel", "fg": 2197 }, - { "id": "flamethrower_fuel", "fg": 2200 }, - { "id": "avgas", "fg": 2196 }, - { "id": "lamp_oil", "fg": 2203 }, - { "id": "motor_oil", "fg": 2204 }, - { "id": "napalm", "fg": 2205 }, - { "id": "gelled_gasoline", "fg": 2202 }, - { "id": "blood", "fg": 2198 }, - { "id": "log", "fg": 2208 }, - { "id": "lucern_hammer", "fg": 2209 }, - { "id": "marble", "fg": 2211 }, - { "id": "microwave", "fg": 2212 }, - { "id": "mjolnir", "fg": 2213 }, - { "id": "mop", "fg": 2214 }, - { "id": "mp5mag", "fg": 2215 }, - { "id": "nail", "fg": 2223 }, - { "id": "nailbat", "fg": 2224 }, - { "id": "nailboard", "fg": 2225 }, - { "id": "needle_bone", "fg": 2226 }, - { "id": "needle_curved", "fg": 2227 }, - { "id": "needle_wood", "fg": 2228 }, - { "id": "many_years_old_newspaper", "fg": 2229 }, - { "id": "years_old_newspaper", "fg": 2234 }, - { "id": "months_old_newspaper", "fg": 2230 }, - { "id": "newest_newspaper", "fg": 2231 }, - { "id": "one_year_old_newspaper", "fg": 2232 }, - { "id": "weeks_old_newspaper", "fg": 2233 }, - { "id": "2h_flail_wood", "fg": 2235 }, - { "id": "pillow", "fg": 2237 }, - { "id": "down_pillow", "fg": 2236 }, - { "id": "pine_bough", "fg": 2238 }, - { "id": "pinecone", "fg": 2239 }, + "fg": 2199 + }, + { "id": "fish_trap", "fg": 2203 }, + { "id": "fishing_rod_basic", "fg": 2204 }, + { "id": "fishing_rod_professional", "fg": 2205 }, + { "id": "forge", "fg": 2207 }, + { "id": "char_forge", "fg": 2206 }, + { "id": "glass_shard", "fg": 2231 }, + { "id": "hoboreel", "fg": 2232 }, + { "id": "hydrogen_tank", "fg": 2233 }, + { "id": "leather_tarp", "fg": 2234 }, + { "id": "water", "fg": 2245 }, + { "id": "water_clean", "fg": 2246 }, + { "id": "gasoline", "fg": 2240 }, + { "id": "diesel", "fg": 2238 }, + { "id": "biodiesel", "fg": 2236 }, + { "id": "flamethrower_fuel", "fg": 2239 }, + { "id": "avgas", "fg": 2235 }, + { "id": "lamp_oil", "fg": 2242 }, + { "id": "motor_oil", "fg": 2243 }, + { "id": "napalm", "fg": 2244 }, + { "id": "gelled_gasoline", "fg": 2241 }, + { "id": "blood", "fg": 2237 }, + { "id": "log", "fg": 2247 }, + { "id": "lucern_hammer", "fg": 2248 }, + { "id": "marble", "fg": 2250 }, + { "id": "microwave", "fg": 2251 }, + { "id": "mjolnir", "fg": 2252 }, + { "id": "mop", "fg": 2253 }, + { "id": "mp5mag", "fg": 2254 }, + { "id": "nail", "fg": 2262 }, + { "id": "nailbat", "fg": 2263 }, + { "id": "nailboard", "fg": 2264 }, + { "id": "needle_bone", "fg": 2265 }, + { "id": "needle_curved", "fg": 2266 }, + { "id": "needle_wood", "fg": 2267 }, + { "id": "many_years_old_newspaper", "fg": 2268 }, + { "id": "years_old_newspaper", "fg": 2273 }, + { "id": "months_old_newspaper", "fg": 2269 }, + { "id": "newest_newspaper", "fg": 2270 }, + { "id": "one_year_old_newspaper", "fg": 2271 }, + { "id": "weeks_old_newspaper", "fg": 2272 }, + { "id": "2h_flail_wood", "fg": 2274 }, + { "id": "pillow", "fg": 2276 }, + { "id": "down_pillow", "fg": 2275 }, + { "id": "pine_bough", "fg": 2277 }, + { "id": "pinecone", "fg": 2278 }, { "id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ], - "fg": 2240 - }, - { "id": "plastic_sheet", "fg": 2242 }, - { "id": "plastic_shopping_bag", "fg": 2243 }, - { "id": "pneumatic_shotgun", "fg": 2244 }, - { "id": "pool_ball", "fg": 2245 }, - { "id": "powder_candy", "fg": 2247 }, - { "id": "rag", "fg": 2248 }, - { "id": "rebar", "fg": 2249 }, - { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 2250 }, - { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 2251 }, - { "id": "scissors", "fg": 2252 }, - { "id": "screwdriver", "fg": 2253 }, - { "id": "sewing_kit", "fg": 2254 }, - { "id": "sharp_rock", "fg": 2255 }, - { "id": "sheet_metal", "fg": 2256 }, - { "id": "sheet_metal_small", "fg": 2257 }, - { "id": "shovel", "fg": 2258 }, - { "id": "slingshot", "fg": 2259 }, - { "id": "solar_panel", "fg": 2261 }, - { "id": "solar_cell", "fg": 2260 }, - { "id": "pointy_stick", "fg": 2262 }, - { "id": "spear_wood", "fg": 2270 }, - { "id": "spear_spike", "fg": 2268 }, - { "id": "spear_knife", "fg": 2264 }, - { "id": "spear_knife_superior", "fg": 2265 }, - { "id": "spear_pipe", "fg": 2266 }, - { "id": "spear_rebar", "fg": 2267 }, - { "id": "spear_steel", "fg": 2269 }, - { "id": "spear_copper", "fg": 2263 }, - { "id": "splinter", "fg": 2271 }, - { "id": "sponge", "fg": 2272 }, - { "id": "spoon", "fg": 2273 }, - { "id": "stick", "fg": 2274 }, - { "id": "stick_long", "fg": 2275 }, - { "id": "primitive_hammer", "fg": 2276 }, - { "id": "string_36", "fg": 2277 }, - { "id": "string_6", "fg": 2278 }, - { "id": "tailors_kit", "fg": 2280 }, - { "id": "tarp", "fg": 2281 }, - { "id": "television", "fg": 2282 }, - { "id": "thermos", "fg": 2283 }, - { "id": "thread", "fg": 2284 }, - { "id": "2h_flail_steel", "fg": 2289 }, - { "id": "welder", "fg": 2290 }, - { "id": "welder_crude", "fg": 2291 }, - { "id": "wood_panel", "fg": 2292 }, - { "id": "wood_sheet", "fg": 2293 }, - { "id": "corpse_mon_troll", "fg": 2294 }, - { "id": "mon_bat", "fg": 2298, "bg": 2450 }, - { "id": "mon_goose_canadian", "fg": 2310, "bg": 2450 }, - { "id": "mon_bluejay", "fg": 2299, "bg": 2450 }, - { "id": "mon_bluejay_chick", "fg": 2300, "bg": 2450 }, - { "id": "mon_cardinal", "fg": 2301, "bg": 2450 }, - { "id": "mon_cardinal_chick", "fg": 2302, "bg": 2450 }, + "fg": 2279 + }, + { "id": "plastic_sheet", "fg": 2281 }, + { "id": "plastic_shopping_bag", "fg": 2282 }, + { "id": "pneumatic_shotgun", "fg": 2283 }, + { "id": "pool_ball", "fg": 2284 }, + { "id": "powder_candy", "fg": 2286 }, + { "id": "rag", "fg": 2287 }, + { "id": "rebar", "fg": 2288 }, + { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 2289 }, + { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 2290 }, + { "id": "scissors", "fg": 2291 }, + { "id": "screwdriver", "fg": 2292 }, + { "id": "sewing_kit", "fg": 2293 }, + { "id": "sharp_rock", "fg": 2294 }, + { "id": "sheet_metal", "fg": 2295 }, + { "id": "sheet_metal_small", "fg": 2296 }, + { "id": "shovel", "fg": 2297 }, + { "id": "slingshot", "fg": 2298 }, + { "id": "solar_panel", "fg": 2300 }, + { "id": "solar_cell", "fg": 2299 }, + { "id": "pointy_stick", "fg": 2301 }, + { "id": "spear_wood", "fg": 2309 }, + { "id": "spear_spike", "fg": 2307 }, + { "id": "spear_knife", "fg": 2303 }, + { "id": "spear_knife_superior", "fg": 2304 }, + { "id": "spear_pipe", "fg": 2305 }, + { "id": "spear_rebar", "fg": 2306 }, + { "id": "spear_steel", "fg": 2308 }, + { "id": "spear_copper", "fg": 2302 }, + { "id": "splinter", "fg": 2310 }, + { "id": "sponge", "fg": 2311 }, + { "id": "spoon", "fg": 2312 }, + { "id": "stick", "fg": 2313 }, + { "id": "stick_long", "fg": 2314 }, + { "id": "primitive_hammer", "fg": 2315 }, + { "id": "string_36", "fg": 2316 }, + { "id": "string_6", "fg": 2317 }, + { "id": "tailors_kit", "fg": 2319 }, + { "id": "tarp", "fg": 2320 }, + { "id": "television", "fg": 2321 }, + { "id": "thermos", "fg": 2322 }, + { "id": "thread", "fg": 2323 }, + { "id": "2h_flail_steel", "fg": 2328 }, + { "id": "welder", "fg": 2329 }, + { "id": "welder_crude", "fg": 2330 }, + { "id": "wood_panel", "fg": 2331 }, + { "id": "wood_sheet", "fg": 2332 }, + { "id": "corpse_mon_troll", "fg": 2333 }, + { "id": "mon_bat", "fg": 2337, "bg": 2498 }, + { "id": "mon_goose_canadian", "fg": 2350, "bg": 2498 }, + { "id": "mon_bluejay", "fg": 2338, "bg": 2498 }, + { "id": "mon_bluejay_chick", "fg": 2339, "bg": 2498 }, + { "id": "mon_cardinal", "fg": 2340, "bg": 2498 }, + { "id": "mon_cardinal_chick", "fg": 2341, "bg": 2498 }, { "id": "mon_chicken", - "fg": [ { "weight": 2, "sprite": 2303 }, { "weight": 1, "sprite": 2304 } ], - "bg": 2450 - }, - { "id": "mon_chicken_chick", "fg": 2305, "bg": 2450 }, - { "id": "mon_crow", "fg": 2306, "bg": 2450 }, - { "id": "mon_crow_chick", "fg": 2307, "bg": 2450 }, - { "id": "mon_duck", "fg": 2308, "bg": 2450 }, - { "id": "mon_duck_chick", "fg": 2309, "bg": 2450 }, - { "id": "mon_goose_canadian_chick", "fg": 2311, "bg": 2450 }, - { "id": "mon_grouse", "fg": 2312, "bg": 2450 }, - { "id": "mon_grouse_chick", "fg": 2313, "bg": 2450 }, - { "id": "mon_pheasant", "fg": 2314, "bg": 2449 }, - { "id": "mon_pheasant_chick", "fg": 2315, "bg": 2450 }, - { "id": "mon_raven", "fg": 2317, "bg": 2450 }, - { "id": "mon_raven_chick", "fg": 2318, "bg": 2450 }, - { "id": "mon_robin", "fg": 2319, "bg": 2450 }, - { "id": "mon_robin_chick", "fg": 2320, "bg": 2450 }, - { "id": "mon_sparrow", "fg": 2321, "bg": 2450 }, - { "id": "mon_sparrow_chick", "fg": 2322, "bg": 2450 }, - { "id": "mon_turkey", "fg": 2323, "bg": 2449 }, - { "id": "mon_turkey_chick", "fg": 2324, "bg": 2450 }, - { "id": "mon_crow_mutant_small", "fg": 2325, "bg": 2449 }, - { "id": "mon_pigeon", "fg": 2316, "bg": 2450 }, - { "id": "mon_fish_blinky", "fg": 2326 }, + "fg": [ { "weight": 2, "sprite": 2342 }, { "weight": 1, "sprite": 2343 } ], + "bg": 2498 + }, + { "id": "mon_chicken_chick", "fg": 2344, "bg": 2498 }, + { "id": "mon_crow", "fg": 2345, "bg": 2498 }, + { "id": "mon_crow_chick", "fg": 2346, "bg": 2498 }, + { "id": "mon_crow_mutant", "fg": 2347, "bg": 2497 }, + { "id": "mon_duck", "fg": 2348, "bg": 2498 }, + { "id": "mon_duck_chick", "fg": 2349, "bg": 2498 }, + { "id": "mon_goose_canadian_chick", "fg": 2351, "bg": 2498 }, + { "id": "mon_grouse", "fg": 2352, "bg": 2498 }, + { "id": "mon_grouse_chick", "fg": 2353, "bg": 2498 }, + { "id": "mon_pheasant", "fg": 2354, "bg": 2497 }, + { "id": "mon_pheasant_chick", "fg": 2355, "bg": 2498 }, + { "id": "mon_raven", "fg": 2357, "bg": 2498 }, + { "id": "mon_raven_chick", "fg": 2358, "bg": 2498 }, + { "id": "mon_robin", "fg": 2359, "bg": 2498 }, + { "id": "mon_robin_chick", "fg": 2360, "bg": 2498 }, + { "id": "mon_sparrow", "fg": 2361, "bg": 2498 }, + { "id": "mon_sparrow_chick", "fg": 2362, "bg": 2498 }, + { "id": "mon_turkey", "fg": 2363, "bg": 2497 }, + { "id": "mon_turkey_chick", "fg": 2364, "bg": 2498 }, + { "id": "mon_crow_mutant_small", "fg": 2365, "bg": 2497 }, + { "id": "mon_pigeon", "fg": 2356, "bg": 2498 }, + { "id": "mon_fish_blinky", "fg": 2366 }, { "id": "mon_cat", "fg": [ - { "weight": 1, "sprite": 2327 }, - { "weight": 1, "sprite": 2328 }, - { "weight": 1, "sprite": 2352 }, - { "weight": 1, "sprite": 2351 } + { "weight": 1, "sprite": 2367 }, + { "weight": 1, "sprite": 2368 }, + { "weight": 1, "sprite": 2392 }, + { "weight": 1, "sprite": 2391 } ], - "bg": 2450 + "bg": 2498 }, { "id": "mon_cat_bengal", - "fg": [ { "weight": 1, "sprite": 2331 }, { "weight": 1, "sprite": 2330 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2371 }, { "weight": 1, "sprite": 2370 } ], + "bg": 2498 }, { "id": "mon_cat_calico", - "fg": [ { "weight": 1, "sprite": 2334 }, { "weight": 1, "sprite": 2333 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2374 }, { "weight": 1, "sprite": 2373 } ], + "bg": 2498 }, { "id": "mon_cat_chonker", - "fg": [ { "weight": 1, "sprite": 2337 }, { "weight": 1, "sprite": 2336 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2377 }, { "weight": 1, "sprite": 2376 } ], + "bg": 2498 }, { "id": "mon_cat_devon_rex", - "fg": [ { "weight": 1, "sprite": 2340 }, { "weight": 1, "sprite": 2339 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2380 }, { "weight": 1, "sprite": 2379 } ], + "bg": 2498 }, { "id": "mon_cat_longhair", - "fg": [ { "weight": 1, "sprite": 2343 }, { "weight": 1, "sprite": 2342 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2383 }, { "weight": 1, "sprite": 2382 } ], + "bg": 2498 }, { "id": "mon_cat_maine_coon", - "fg": [ { "weight": 1, "sprite": 2346 }, { "weight": 1, "sprite": 2345 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2386 }, { "weight": 1, "sprite": 2385 } ], + "bg": 2498 }, { "id": "mon_cat_persian", - "fg": [ { "weight": 1, "sprite": 2349 }, { "weight": 1, "sprite": 2348 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2389 }, { "weight": 1, "sprite": 2388 } ], + "bg": 2498 }, { "id": "mon_cat_siamese", - "fg": [ { "weight": 1, "sprite": 2355 }, { "weight": 1, "sprite": 2354 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2395 }, { "weight": 1, "sprite": 2394 } ], + "bg": 2498 }, { "id": "mon_cat_sphynx", - "fg": [ { "weight": 1, "sprite": 2358 }, { "weight": 1, "sprite": 2357 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2398 }, { "weight": 1, "sprite": 2397 } ], + "bg": 2498 }, { "id": "mon_cat_tabby", - "fg": [ { "weight": 1, "sprite": 2361 }, { "weight": 1, "sprite": 2360 } ], - "bg": 2450 - }, - { "id": "mon_cat_kitten", "fg": 2350, "bg": 2450 }, - { "id": "mon_cat_bengal_kitten", "fg": 2329, "bg": 2450 }, - { "id": "mon_cat_calico_kitten", "fg": 2332, "bg": 2450 }, - { "id": "mon_cat_chonker_kitten", "fg": 2335, "bg": 2450 }, - { "id": "mon_cat_devon_rex_kitten", "fg": 2338, "bg": 2450 }, - { "id": "mon_cat_longhair_kitten", "fg": 2341, "bg": 2450 }, - { "id": "mon_cat_maine_coon_kitten", "fg": 2344, "bg": 2450 }, - { "id": "mon_cat_persian_kitten", "fg": 2347, "bg": 2450 }, - { "id": "mon_cat_siamese_kitten", "fg": 2353, "bg": 2450 }, - { "id": "mon_cat_sphynx_kitten", "fg": 2356, "bg": 2450 }, - { "id": "mon_cat_tabby_kitten", "fg": 2359, "bg": 2450 }, - { "id": "mon_coyote", "fg": 2362, "bg": 2449 }, - { "id": "mon_coyote_wolf", "fg": 2363, "bg": 2449 }, - { "id": "mon_dog", "fg": 2364, "bg": 2449 }, - { "id": "mon_dog_skeleton", "fg": 2390, "bg": 2449 }, + "fg": [ { "weight": 1, "sprite": 2401 }, { "weight": 1, "sprite": 2400 } ], + "bg": 2498 + }, + { "id": "mon_cat_kitten", "fg": 2390, "bg": 2498 }, + { "id": "mon_cat_bengal_kitten", "fg": 2369, "bg": 2498 }, + { "id": "mon_cat_calico_kitten", "fg": 2372, "bg": 2498 }, + { "id": "mon_cat_chonker_kitten", "fg": 2375, "bg": 2498 }, + { "id": "mon_cat_devon_rex_kitten", "fg": 2378, "bg": 2498 }, + { "id": "mon_cat_longhair_kitten", "fg": 2381, "bg": 2498 }, + { "id": "mon_cat_maine_coon_kitten", "fg": 2384, "bg": 2498 }, + { "id": "mon_cat_persian_kitten", "fg": 2387, "bg": 2498 }, + { "id": "mon_cat_siamese_kitten", "fg": 2393, "bg": 2498 }, + { "id": "mon_cat_sphynx_kitten", "fg": 2396, "bg": 2498 }, + { "id": "mon_cat_tabby_kitten", "fg": 2399, "bg": 2498 }, + { "id": "mon_coyote", "fg": 2402, "bg": 2497 }, + { "id": "mon_coyote_wolf", "fg": 2403, "bg": 2497 }, + { "id": "mon_dog", "fg": 2404, "bg": 2497 }, + { "id": "mon_dog_skeleton", "fg": 2431, "bg": 2497 }, { "id": "mon_zombie_dog", - "fg": [ { "weight": 1, "sprite": 2391 }, { "weight": 1, "sprite": 2392 } ], - "bg": 2449 - }, - { "id": "mon_dog_beagle", "fg": 2369, "bg": 2450 }, - { "id": "mon_dog_gshepherd", "fg": 2381, "bg": 2449 }, - { "id": "mon_dog_boxer", "fg": 2371, "bg": 2449 }, - { "id": "mon_dog_dachshund", "fg": 2377, "bg": 2449 }, - { "id": "mon_dog_auscattle", "fg": 2365, "bg": 2449 }, - { "id": "mon_dog_bcollie", "fg": 2367, "bg": 2449 }, - { "id": "mon_dog_bull", "fg": 2373, "bg": 2450 }, - { "id": "mon_dog_chihuahua", "fg": 2375, "bg": 2450 }, - { "id": "mon_dog_gpyrenees", "fg": 2379, "bg": 2449 }, - { "id": "mon_dog_pitbullmix", "fg": 2383, "bg": 2449 }, - { "id": "mon_dog_samoyed", "fg": 2388, "bg": 2449 }, - { "id": "mon_dog_rottweiler", "fg": 2386, "bg": 2449 }, - { "id": "mon_dog_auscattle_pup", "fg": 2366, "bg": 2450 }, - { "id": "mon_dog_bcollie_pup", "fg": 2368, "bg": 2450 }, - { "id": "mon_dog_beagle_pup", "fg": 2370, "bg": 2450 }, - { "id": "mon_dog_boxer_pup", "fg": 2372, "bg": 2450 }, - { "id": "mon_dog_bull_pup", "fg": 2374, "bg": 2450 }, - { "id": "mon_dog_chihuahua_pup", "fg": 2376, "bg": 2450 }, - { "id": "mon_dog_dachshund_pup", "fg": 2378, "bg": 2450 }, - { "id": "mon_dog_gpyrenees_pup", "fg": 2380, "bg": 2450 }, - { "id": "mon_dog_gshepherd_pup", "fg": 2382, "bg": 2450 }, - { "id": "mon_dog_pitbullmix_pup", "fg": 2384, "bg": 2450 }, - { "id": "mon_dog_pup", "fg": 2385, "bg": 2450 }, - { "id": "mon_dog_rottweiler_pup", "fg": 2387, "bg": 2450 }, - { "id": "mon_dog_samoyed_pup", "fg": 2389, "bg": 2450 }, - { "id": "mon_fish_tiny", "fg": 2396 }, - { "id": "mon_fish_small", "fg": 2395 }, - { "id": "mon_fish_medium", "fg": 2394 }, - { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 2393 }, - { "id": "mon_sewer_fish", "fg": 2397 }, - { "id": "mon_mink", "fg": 2398, "bg": 2450 }, - { "id": "mon_cockatrice_chick", "fg": 2400, "bg": 2450 }, - { "id": "mon_cockatrice", "fg": 2399, "bg": 2450 }, - { "id": "mon_sewer_rat", "fg": 2401, "bg": 2450 }, + "fg": [ { "weight": 1, "sprite": 2432 }, { "weight": 1, "sprite": 2433 } ], + "bg": 2497 + }, + { "id": "mon_dog_beagle", "fg": 2409, "bg": 2498 }, + { "id": "mon_dog_gshepherd", "fg": 2421, "bg": 2497 }, + { "id": "mon_dog_boxer", "fg": 2411, "bg": 2497 }, + { "id": "mon_dog_dachshund", "fg": 2417, "bg": 2497 }, + { "id": "mon_dog_auscattle", "fg": 2405, "bg": 2497 }, + { "id": "mon_dog_bcollie", "fg": 2407, "bg": 2497 }, + { "id": "mon_dog_bull", "fg": 2413, "bg": 2498 }, + { "id": "mon_dog_chihuahua", "fg": 2415, "bg": 2498 }, + { "id": "mon_dog_gpyrenees", "fg": 2419, "bg": 2497 }, + { "id": "mon_dog_pitbullmix", "fg": 2424, "bg": 2497 }, + { "id": "mon_dog_samoyed", "fg": 2429, "bg": 2497 }, + { "id": "mon_dog_rottweiler", "fg": 2427, "bg": 2497 }, + { "id": "mon_dog_mutant_mongrel", "fg": 2423, "bg": 2497 }, + { "id": "mon_dog_auscattle_pup", "fg": 2406, "bg": 2498 }, + { "id": "mon_dog_bcollie_pup", "fg": 2408, "bg": 2498 }, + { "id": "mon_dog_beagle_pup", "fg": 2410, "bg": 2498 }, + { "id": "mon_dog_boxer_pup", "fg": 2412, "bg": 2498 }, + { "id": "mon_dog_bull_pup", "fg": 2414, "bg": 2498 }, + { "id": "mon_dog_chihuahua_pup", "fg": 2416, "bg": 2498 }, + { "id": "mon_dog_dachshund_pup", "fg": 2418, "bg": 2498 }, + { "id": "mon_dog_gpyrenees_pup", "fg": 2420, "bg": 2498 }, + { "id": "mon_dog_gshepherd_pup", "fg": 2422, "bg": 2498 }, + { "id": "mon_dog_pitbullmix_pup", "fg": 2425, "bg": 2498 }, + { "id": "mon_dog_pup", "fg": 2426, "bg": 2498 }, + { "id": "mon_dog_rottweiler_pup", "fg": 2428, "bg": 2498 }, + { "id": "mon_dog_samoyed_pup", "fg": 2430, "bg": 2498 }, + { "id": "mon_fish_tiny", "fg": 2437 }, + { "id": "mon_fish_small", "fg": 2436 }, + { "id": "mon_fish_medium", "fg": 2435 }, + { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 2434 }, + { "id": "mon_sewer_fish", "fg": 2438 }, + { "id": "mon_mink", "fg": 2439, "bg": 2498 }, + { "id": "mon_bobcat", "fg": 2440, "bg": 2498 }, + { "id": "mon_cockatrice_chick", "fg": 2442, "bg": 2498 }, + { "id": "mon_cockatrice", "fg": 2441, "bg": 2498 }, + { "id": "mon_sewer_rat", "fg": 2443, "bg": 2498 }, { "id": "mon_pig", - "fg": [ { "weight": 8, "sprite": 2404 }, { "weight": 3, "sprite": 2402 }, { "weight": 1, "sprite": 2403 } ], - "bg": 2449 - }, - { "id": "mon_pig_piglet", "fg": 2405, "bg": 2450 }, - { "id": "mon_bear_cub", "fg": 2406, "bg": 2450 }, - { "id": "mon_fox_gray", "fg": 2407, "bg": 2449 }, - { "id": "mon_fox_red", "fg": 2408, "bg": 2449 }, - { "id": "mon_wolf", "fg": 2409, "bg": 2449 }, - { "id": "mon_rattlesnake_giant", "fg": 2411, "bg": 2449 }, - { "id": "mon_rattlesnake", "fg": 2410, "bg": 2450 }, - { "id": "mon_sewer_snake", "fg": 2412, "bg": 2450 }, - { "id": "mon_chipmunk", "fg": 2417, "bg": 2450 }, - { "id": "mon_groundhog", "fg": 2419, "bg": 2450 }, - { "id": "mon_lemming", "fg": 2413, "bg": 2414 }, - { "id": "mon_beaver", "fg": 2415, "bg": 2450 }, - { "id": "mon_black_rat", "fg": 2416, "bg": 2450 }, - { "id": "mon_deer_mouse", "fg": 2418, "bg": 2450 }, - { "id": "mon_lab_rat", "fg": 2420, "bg": 2450 }, - { "id": "mon_muskrat", "fg": 2421, "bg": 2450 }, - { "id": "mon_otter", "fg": 2423, "bg": 2450 }, - { "id": "mon_rabbit", "fg": 2424, "bg": 2450 }, - { "id": "mon_squirrel", "fg": 2425, "bg": 2450 }, - { "id": "mon_squirrel_red", "fg": 2426, "bg": 2450 }, - { "id": "mon_opossum", "fg": 2422, "bg": 2450 }, - { "id": "mon_centipede_giant", "fg": 2427, "bg": 2449 }, - { "id": "mon_dragonfly_small", "fg": 2428, "bg": 2450 }, - { "id": "mon_locust", "fg": 2429, "bg": 2449 }, - { "id": "mon_locust_nymph", "fg": 2430, "bg": 2450 }, - { "id": "mon_mosquito", "fg": 2431, "bg": 2450 }, - { "id": "mon_ant", "fg": 2436, "bg": 2449 }, - { "id": "mon_ant_acid", "fg": 2437, "bg": 2449 }, - { "id": "corpse_mon_ant", "fg": 2432 }, - { "id": "corpse_mon_ant_acid", "fg": 2433 }, - { "id": "mon_ant_larva", "fg": 2440, "bg": 2450 }, - { "id": "mon_ant_acid_larva", "fg": 2438, "bg": 2450 }, - { "id": "corpse_mon_ant_larva", "fg": 2435 }, - { "id": "corpse_mon_ant_acid_larva", "fg": 2434 }, - { "id": "mon_ant_fungus", "fg": 2439, "bg": 2449 }, - { "id": "mon_dermatik_larva", "fg": 2441, "bg": 2450 }, - { "id": "mon_wasp_small", "fg": 2442, "bg": 2450 }, - { "id": "mon_giant_cockroach", "fg": 2443, "bg": 2449 }, - { "id": "mon_giant_cockroach_nymph", "fg": 2444, "bg": 2450 }, - { "id": "mon_plague_nymph", "fg": 2445, "bg": 2450 }, - { "id": "mon_plague_vector", "fg": 2446, "bg": 2449 }, - { "id": "mon_pregnant_giant_cockroach", "fg": 2447, "bg": 2449 }, - { "id": "mon_skittering_plague", "fg": 2448, "bg": 2449 }, - { "id": "mon_eyebot", "fg": 2451, "bg": 2450 }, - { "id": "mon_firefly", "fg": 2452, "bg": 2450 }, - { "id": "mon_kreck", "fg": 2455, "bg": 2449 }, + "fg": [ { "weight": 8, "sprite": 2446 }, { "weight": 3, "sprite": 2444 }, { "weight": 1, "sprite": 2445 } ], + "bg": 2497 + }, + { "id": "mon_pig_piglet", "fg": 2447, "bg": 2498 }, + { "id": "mon_bear_cub", "fg": 2448, "bg": 2498 }, + { "id": "mon_fox_gray", "fg": 2449, "bg": 2497 }, + { "id": "mon_fox_red", "fg": 2450, "bg": 2497 }, + { "id": "mon_wolf", "fg": 2451, "bg": 2497 }, + { "id": "mon_rattlesnake_giant", "fg": 2453, "bg": 2497 }, + { "id": "mon_rattlesnake", "fg": 2452, "bg": 2498 }, + { "id": "mon_sewer_snake", "fg": 2454, "bg": 2498 }, + { "id": "mon_chipmunk", "fg": 2459, "bg": 2498 }, + { "id": "mon_groundhog", "fg": 2461, "bg": 2498 }, + { "id": "mon_lemming", "fg": 2455, "bg": 2456 }, + { "id": "mon_beaver", "fg": 2457, "bg": 2498 }, + { "id": "mon_black_rat", "fg": 2458, "bg": 2498 }, + { "id": "mon_deer_mouse", "fg": 2460, "bg": 2498 }, + { "id": "mon_lab_rat", "fg": 2462, "bg": 2498 }, + { "id": "mon_muskrat", "fg": 2463, "bg": 2498 }, + { "id": "mon_otter", "fg": 2465, "bg": 2498 }, + { "id": "mon_rabbit", "fg": 2466, "bg": 2498 }, + { "id": "mon_squirrel", "fg": 2467, "bg": 2498 }, + { "id": "mon_squirrel_red", "fg": 2468, "bg": 2498 }, + { "id": "mon_opossum", "fg": 2464, "bg": 2498 }, + { "id": "mon_boar_wild", "fg": 2469, "bg": 2497 }, + { "id": "mon_boar_wild_piglet", "fg": 2470, "bg": 2498 }, + { "id": "mon_zpig_brute", "fg": 2471, "bg": 2497 }, + { "id": "mon_centipede_giant", "fg": 2472, "bg": 2497 }, + { "id": "mon_dragonfly_small", "fg": 2473, "bg": 2498 }, + { "id": "mon_locust", "fg": 2474, "bg": 2497 }, + { "id": "mon_locust_nymph", "fg": 2475, "bg": 2498 }, + { "id": "mon_locust_small", "fg": 2476, "bg": 2498 }, + { "id": "mon_mosquito_small", "fg": 2477, "bg": 2498 }, + { "id": "mon_ant", "fg": 2482, "bg": 2497 }, + { "id": "mon_ant_acid", "fg": 2483, "bg": 2497 }, + { "id": "corpse_mon_ant", "fg": 2478 }, + { "id": "corpse_mon_ant_acid", "fg": 2479 }, + { "id": "mon_ant_larva", "fg": 2487, "bg": 2498 }, + { "id": "mon_ant_acid_larva", "fg": 2484, "bg": 2498 }, + { "id": "corpse_mon_ant_larva", "fg": 2481 }, + { "id": "corpse_mon_ant_acid_larva", "fg": 2480 }, + { "id": "mon_ant_fungus", "fg": 2486, "bg": 2497 }, + { "id": "mon_ant_small", "fg": 2488, "bg": 2498 }, + { "id": "mon_ant_acid_small", "fg": 2485, "bg": 2498 }, + { "id": "mon_dermatik_larva", "fg": 2489, "bg": 2498 }, + { "id": "mon_wasp_small", "fg": 2490, "bg": 2498 }, + { "id": "mon_giant_cockroach", "fg": 2491, "bg": 2497 }, + { "id": "mon_giant_cockroach_nymph", "fg": 2492, "bg": 2498 }, + { "id": "mon_plague_nymph", "fg": 2493, "bg": 2498 }, + { "id": "mon_plague_vector", "fg": 2494, "bg": 2497 }, + { "id": "mon_pregnant_giant_cockroach", "fg": 2495, "bg": 2497 }, + { "id": "mon_skittering_plague", "fg": 2496, "bg": 2497 }, + { "id": "mon_eyebot", "fg": 2499, "bg": 2498 }, + { "id": "mon_firefly", "fg": 2500, "bg": 2498 }, + { "id": "mon_kreck", "fg": 2503, "bg": 2497 }, { "id": "mon_aphid_small", - "fg": [ { "weight": 1, "sprite": 2456 }, { "weight": 1, "sprite": 2457 }, { "weight": 1, "sprite": 2458 } ], - "bg": 2450 + "fg": [ { "weight": 1, "sprite": 2504 }, { "weight": 1, "sprite": 2505 }, { "weight": 1, "sprite": 2506 } ], + "bg": 2498 }, - { "id": "mon_blob", "fg": 2459, "bg": 2449 }, + { "id": "mon_beaver_mutant_avian", "fg": 2507, "bg": 2498 }, + { "id": "mon_beaver_mutant_huge", "fg": 2508, "bg": 2497 }, + { "id": "mon_blob", "fg": 2509, "bg": 2497 }, { "id": "mon_blob_small", - "fg": [ { "weight": 1, "sprite": 2460 }, { "weight": 1, "sprite": 2461 } ], - "bg": 2450 - }, - { "id": "mon_cow_calf", "fg": 2462, "bg": 2449 }, - { "id": "mon_deer_fawn", "fg": 2464, "bg": 2449 }, - { "id": "mon_dog_zombie_rot", "fg": 2465, "bg": 2449 }, - { "id": "mon_frog", "fg": 2468, "bg": 2450 }, - { "id": "mon_frog_small", "fg": 2469, "bg": 2449 }, - { "id": "mon_fungal_fighter", "fg": 2470, "bg": 2449 }, - { "id": "mon_fungal_hedgerow", "fg": 2471, "bg": 2449 }, - { "id": "mon_fungaloid_young", "fg": 2472, "bg": 2450 }, - { "id": "mon_grasshopper_small", "fg": 2474, "bg": 2450 }, - { "id": "mon_halfworm", "fg": 2475, "bg": 2450 }, - { "id": "mon_hallu_multicooker", "fg": 2476, "bg": 2449 }, - { "id": "mon_hazmatbot", "fg": 2477, "bg": 2449 }, + "fg": [ { "weight": 1, "sprite": 2510 }, { "weight": 1, "sprite": 2511 } ], + "bg": 2498 + }, + { "id": "mon_cat_mutant_kitten_prism", "fg": 2512, "bg": 2498 }, + { "id": "mon_cat_mutant_prism", "fg": 2513, "bg": 2498 }, + { "id": "mon_cow_calf", "fg": 2514, "bg": 2497 }, + { "id": "mon_coyote_mutant_shark", "fg": 2515, "bg": 2497 }, + { "id": "mon_coyote_mutant_venom", "fg": 2516, "bg": 2497 }, + { "id": "mon_crayfish_small", "fg": 2517, "bg": 2497 }, + { "id": "mon_deer_fawn", "fg": 2519, "bg": 2497 }, + { "id": "mon_deer_mutant_spider_fawn", "fg": 2520, "bg": 2497 }, + { "id": "mon_dog_zombie_rot", "fg": 2521, "bg": 2497 }, + { "id": "mon_frog", "fg": 2524, "bg": 2498 }, + { "id": "mon_frog_small", "fg": 2525, "bg": 2497 }, + { "id": "mon_fungal_fighter", "fg": 2526, "bg": 2497 }, + { "id": "mon_fungal_hedgerow", "fg": 2527, "bg": 2497 }, + { "id": "mon_fungaloid_young", "fg": 2528, "bg": 2498 }, + { "id": "mon_grasshopper_small", "fg": 2530, "bg": 2498 }, + { "id": "mon_halfworm", "fg": 2531, "bg": 2498 }, + { "id": "mon_hallu_multicooker", "fg": 2532, "bg": 2497 }, + { "id": "mon_hazmatbot", "fg": 2533, "bg": 2497 }, { "id": [ "mon_hound_tindalos", "mon_hound_tindalos_afterimage" ], "fg": [ - { "weight": 1, "sprite": 2478 }, - { "weight": 1, "sprite": 2479 }, - { "weight": 1, "sprite": 2480 }, - { "weight": 1, "sprite": 2481 }, - { "weight": 1, "sprite": 2482 }, - { "weight": 1, "sprite": 2483 }, - { "weight": 1, "sprite": 2484 }, - { "weight": 1, "sprite": 2485 }, - { "weight": 1, "sprite": 2486 } + { "weight": 1, "sprite": 2534 }, + { "weight": 1, "sprite": 2535 }, + { "weight": 1, "sprite": 2536 }, + { "weight": 1, "sprite": 2537 }, + { "weight": 1, "sprite": 2538 }, + { "weight": 1, "sprite": 2539 }, + { "weight": 1, "sprite": 2540 }, + { "weight": 1, "sprite": 2541 }, + { "weight": 1, "sprite": 2542 } ] }, { "id": "mon_lab_security_drone_BM", "animated": true, "fg": [ - { "weight": 10, "sprite": 2490 }, - { "weight": 10, "sprite": 2491 }, - { "weight": 10, "sprite": 2492 }, - { "weight": 10, "sprite": 2491 } + { "weight": 10, "sprite": 2546 }, + { "weight": 10, "sprite": 2547 }, + { "weight": 10, "sprite": 2548 }, + { "weight": 10, "sprite": 2547 } ] }, { "id": "mon_lab_security_drone_BM2", "animated": true, "fg": [ - { "weight": 10, "sprite": 2487 }, - { "weight": 10, "sprite": 2488 }, - { "weight": 10, "sprite": 2489 }, - { "weight": 10, "sprite": 2488 } + { "weight": 10, "sprite": 2543 }, + { "weight": 10, "sprite": 2544 }, + { "weight": 10, "sprite": 2545 }, + { "weight": 10, "sprite": 2544 } ] }, { "id": "mon_lab_security_drone_BS", "animated": true, "fg": [ - { "weight": 10, "sprite": 2493 }, - { "weight": 10, "sprite": 2494 }, - { "weight": 10, "sprite": 2495 }, - { "weight": 10, "sprite": 2494 } + { "weight": 10, "sprite": 2549 }, + { "weight": 10, "sprite": 2550 }, + { "weight": 10, "sprite": 2551 }, + { "weight": 10, "sprite": 2550 } ] }, { "id": "mon_lab_security_drone_GM", "animated": true, "fg": [ - { "weight": 10, "sprite": 2496 }, - { "weight": 10, "sprite": 2497 }, - { "weight": 10, "sprite": 2498 }, - { "weight": 10, "sprite": 2497 } + { "weight": 10, "sprite": 2552 }, + { "weight": 10, "sprite": 2553 }, + { "weight": 10, "sprite": 2554 }, + { "weight": 10, "sprite": 2553 } ] }, { "id": "mon_lab_security_drone_GR", "animated": true, "fg": [ - { "weight": 10, "sprite": 2499 }, - { "weight": 10, "sprite": 2500 }, - { "weight": 10, "sprite": 2501 }, - { "weight": 10, "sprite": 2500 } + { "weight": 10, "sprite": 2555 }, + { "weight": 10, "sprite": 2556 }, + { "weight": 10, "sprite": 2557 }, + { "weight": 10, "sprite": 2556 } ] }, { "id": "mon_lab_security_drone_YM", "animated": true, "fg": [ - { "weight": 10, "sprite": 2502 }, - { "weight": 10, "sprite": 2503 }, - { "weight": 10, "sprite": 2504 }, - { "weight": 10, "sprite": 2503 } - ] - }, - { "id": "mon_player_blob", "fg": 2508, "bg": 2449 }, - { "id": "mon_reindeer_fawn", "fg": 2509, "bg": 2449 }, - { "id": "mon_shadow_snake", "fg": 2510, "bg": 2450 }, - { "id": "mon_sheep_lamb", "fg": 2511, "bg": 2449 }, - { "id": "mon_spawn_raptor", "fg": 2512, "bg": 2449 }, - { "id": "mon_spore", "fg": 2516, "bg": 2449 }, - { "id": "mon_tazer_hack", "fg": 2518, "bg": 2450 }, - { "id": "mon_zolf", "fg": 2521, "bg": 2449 }, - { "id": "mon_zombeaver", "fg": 2522, "bg": 2450 }, - { "id": "mon_zombie_crawler", "fg": 2523, "bg": 2449 }, - { "id": "mon_zombie_dog_acidic", "fg": 2524, "bg": 2449 }, - { "id": "mon_zombie_hollow", "fg": 2525, "bg": 2449 }, - { "id": "mon_zombie_pig", "fg": 2526, "bg": 2449 }, - { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 2527, "bg": 2449 }, - { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 2528, "bg": 2449 }, - { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 2529, "bg": 2449 }, - { "id": "mon_zombie_rot", "fg": 2531, "bg": 2449 }, - { "id": "corpse_mon_zombie_rot", "fg": 2530 }, - { "id": "mon_zombie_wretched", "fg": 2532, "bg": 2449 }, - { "id": "mon_hare", "fg": 2533, "bg": 2450 }, - { "id": "mon_skitterbot", "fg": 2534, "bg": 2449 }, - { "id": "mon_spider_cellar_small", "fg": 2536, "bg": 2450 }, - { "id": "mon_spider_jumping_small", "fg": 2537, "bg": 2450 }, - { "id": "mon_spider_trapdoor_small", "fg": 2538, "bg": 2450 }, - { "id": "mon_spider_web_small", "fg": 2540, "bg": 2450 }, - { "id": "mon_spider_wolf_small", "fg": 2543, "bg": 2450 }, - { "id": "mon_spider_web_s", "fg": 2539, "bg": 2450 }, - { "id": "mon_spider_widow_giant_s", "fg": 2541, "bg": 2450 }, - { "id": "mon_spider_cellar_giant_s", "fg": 2535, "bg": 2450 }, - { "id": "mon_zpider_mass", "fg": 2544, "bg": 2450 }, - { "id": "mon_spider_widow_small", "fg": 2542, "bg": 2450 }, - { "id": "mon_dog_zombie_cop", "fg": 2545, "bg": 2449 }, + { "weight": 10, "sprite": 2558 }, + { "weight": 10, "sprite": 2559 }, + { "weight": 10, "sprite": 2560 }, + { "weight": 10, "sprite": 2559 } + ] + }, + { "id": "mon_large_cockroach", "fg": 2561, "bg": 2497 }, + { "id": "mon_player_blob", "fg": 2565, "bg": 2497 }, + { "id": "mon_reindeer_fawn", "fg": 2566, "bg": 2497 }, + { "id": "mon_shadow_snake", "fg": 2567, "bg": 2498 }, + { "id": "mon_sheep_lamb", "fg": 2568, "bg": 2497 }, + { "id": "mon_slug_small", "fg": 2569, "bg": 2497 }, + { "id": "mon_spawn_raptor", "fg": 2570, "bg": 2497 }, + { "id": "mon_spore", "fg": 2574, "bg": 2497 }, + { "id": "mon_tazer_hack", "fg": 2576, "bg": 2498 }, + { "id": "mon_wolf_skeleton", "fg": 2579, "bg": 2497 }, + { "id": "mon_worm", "fg": 2580, "bg": 2497 }, + { "id": "mon_worm_small", "fg": 2581, "bg": 2498 }, + { "id": "mon_zolf", "fg": 2582, "bg": 2497 }, + { "id": "mon_zombeaver", "fg": 2583, "bg": 2498 }, + { "id": "mon_zombie_crawler", "fg": 2584, "bg": 2497 }, + { "id": "mon_zombie_dog_acidic", "fg": 2585, "bg": 2497 }, + { "id": "mon_zombie_hollow", "fg": 2586, "bg": 2497 }, + { "id": "mon_zombie_pig", "fg": 2587, "bg": 2497 }, + { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 2588, "bg": 2497 }, + { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 2589, "bg": 2497 }, + { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 2590, "bg": 2497 }, + { "id": "mon_zombie_rot", "fg": 2592, "bg": 2497 }, + { "id": "corpse_mon_zombie_rot", "fg": 2591 }, + { "id": "mon_zombie_wretched", "fg": 2593, "bg": 2497 }, + { "id": "mon_hare", "fg": 2594, "bg": 2498 }, + { "id": "mon_skitterbot", "fg": 2595, "bg": 2497 }, + { "id": "mon_spider_cellar_small", "fg": 2597, "bg": 2498 }, + { "id": "mon_spider_jumping_small", "fg": 2598, "bg": 2498 }, + { "id": "mon_spider_trapdoor_small", "fg": 2599, "bg": 2498 }, + { "id": "mon_spider_web_small", "fg": 2601, "bg": 2498 }, + { "id": "mon_spider_wolf_small", "fg": 2604, "bg": 2498 }, + { "id": "mon_spider_web_s", "fg": 2600, "bg": 2498 }, + { "id": "mon_spider_widow_giant_s", "fg": 2602, "bg": 2498 }, + { "id": "mon_spider_cellar_giant_s", "fg": 2596, "bg": 2498 }, + { "id": "mon_zpider_mass", "fg": 2605, "bg": 2498 }, + { "id": "mon_spider_widow_small", "fg": 2603, "bg": 2498 }, + { "id": "mon_dog_zombie_cop", "fg": 2606, "bg": 2497 }, { "id": "mon_zombie_child", - "fg": [ - { "weight": 1, "sprite": 2548 }, - { "weight": 1, "sprite": 2550 }, - { "weight": 5, "sprite": 2549 }, - { "weight": 5, "sprite": 2551 } - ], - "bg": 2450 - }, - { "id": "mon_zombie_anklebiter", "fg": 2547, "bg": 2450 }, - { "id": "mon_zombie_creepy", "fg": 2554, "bg": 2450 }, - { "id": "mon_zombie_shriekling", "fg": 2555, "bg": 2450 }, - { "id": "mon_zombie_snotgobbler", "fg": 2556, "bg": 2450 }, - { "id": "mon_zombie_sproglodyte", "fg": 2557, "bg": 2450 }, - { "id": "mon_zombie_waif", "fg": 2546, "bg": 2450 }, - { "id": "mon_zombie_child_scorched", "fg": 2553, "bg": 2450 }, - { "id": "mon_zombie_child_fungus", "fg": 2552, "bg": 2450 }, - { "id": "lighting_lowlight_dark", "fg": 2563 }, - { "id": "lighting_boomered_dark", "fg": 2558 }, + "fg": [ { "weight": 1, "sprite": 2609 }, { "weight": 1, "sprite": 2610 } ], + "bg": 2498 + }, + { "id": "mon_zombie_anklebiter", "fg": 2608, "bg": 2498 }, + { "id": "mon_zombie_creepy", "fg": 2613, "bg": 2498 }, + { "id": "mon_zombie_shriekling", "fg": 2614, "bg": 2498 }, + { "id": "mon_zombie_snotgobbler", "fg": 2615, "bg": 2498 }, + { "id": "mon_zombie_sproglodyte", "fg": 2616, "bg": 2498 }, + { "id": "mon_zombie_waif", "fg": 2607, "bg": 2498 }, + { "id": "mon_zombie_child_scorched", "fg": 2612, "bg": 2498 }, + { "id": "mon_zombie_child_fungus", "fg": 2611, "bg": 2498 }, + { "id": "lighting_lowlight_dark", "fg": 2622 }, + { "id": "lighting_boomered_dark", "fg": 2617 }, { "id": "lighting_hidden", "fg": [ - { "weight": 100, "sprite": 2559 }, - { "weight": 100, "sprite": 2560 }, - { "weight": 100, "sprite": 2561 }, - { "weight": 100, "sprite": 2562 } - ] - }, - { "id": "animation_hit", "fg": 2581 }, - { "id": "cursor", "fg": 2583 }, - { "id": "highlight", "fg": 2585 }, - { "id": "highlight_item", "fg": 2586 }, - { "id": "line_target", "fg": 2584 }, - { "id": "line_trail", "fg": 2587 }, - { "id": "animation_line", "fg": 2582 }, - { "id": "overlay_effect_common_cold", "fg": 2596 }, - { "id": "overlay_effect_flu", "fg": 2596 }, - { "id": "generic_city_building", "fg": 2617, "bg": 2614 }, + { "weight": 100, "sprite": 2618 }, + { "weight": 100, "sprite": 2619 }, + { "weight": 100, "sprite": 2620 }, + { "weight": 100, "sprite": 2621 } + ] + }, + { "id": "animation_hit", "fg": 2640 }, + { "id": "cursor", "fg": 2642 }, + { "id": "highlight", "fg": 2644 }, + { "id": "highlight_item", "fg": 2645 }, + { "id": "line_target", "fg": 2643 }, + { "id": "line_trail", "fg": 2646 }, + { "id": "animation_line", "fg": 2641 }, + { "id": "overlay_effect_common_cold", "fg": 2655 }, + { "id": "overlay_effect_flu", "fg": 2655 }, + { "id": "generic_city_building", "fg": 2676, "bg": 2673 }, { "id": [ "abstorefront_1", @@ -2496,25 +2547,25 @@ "s_sports", "veterinarian" ], - "fg": 2617, - "bg": 2614 + "fg": 2676, + "bg": 2673 }, - { "id": "forest_water", "fg": 2622 }, - { "id": [ "forest", "special_forest" ], "fg": 2615, "bg": 2614 }, - { "id": [ "field", "special_field" ], "fg": 2614 }, - { "id": "open_air", "fg": 2616 }, + { "id": "forest_water", "fg": 2681 }, + { "id": [ "forest", "special_forest" ], "fg": 2674, "bg": 2673 }, + { "id": [ "field", "special_field" ], "fg": 2673 }, + { "id": "open_air", "fg": 2675 }, { "id": "railroad", - "fg": 3723, - "bg": 3700, + "fg": 3798, + "bg": 3775, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 3700, "fg": 3717 }, - { "id": "corner", "bg": 3700, "fg": [ 3719, 3721, 3720, 3718 ] }, - { "id": "t_connection", "bg": 3700, "fg": [ 3725, 3727, 3726, 3724 ] }, - { "id": "edge", "bg": 3700, "fg": [ 3723, 3722 ] }, - { "id": "end_piece", "bg": 3700, "fg": [ 3723, 3722, 3723, 3722 ] }, - { "id": "unconnected", "bg": 3700, "fg": [ 3723, 3722 ] } + { "id": "center", "bg": 3775, "fg": 3792 }, + { "id": "corner", "bg": 3775, "fg": [ 3794, 3796, 3795, 3793 ] }, + { "id": "t_connection", "bg": 3775, "fg": [ 3800, 3802, 3801, 3799 ] }, + { "id": "edge", "bg": 3775, "fg": [ 3798, 3797 ] }, + { "id": "end_piece", "bg": 3775, "fg": [ 3798, 3797, 3798, 3797 ] }, + { "id": "unconnected", "bg": 3775, "fg": [ 3798, 3797 ] } ] }, { @@ -2737,19 +2788,19 @@ "urban_13_11", "urban_13_12" ], - "fg": [ 2619, 2618, 2620, 2621 ], - "bg": 2614, + "fg": [ 2678, 2677, 2679, 2680 ], + "bg": 2673, "rotates": true }, - { "id": "anthill", "fg": 2624, "bg": 2614, "rotates": false }, - { "id": "acid_anthill", "fg": 2623, "bg": 2614, "rotates": false }, + { "id": "anthill", "fg": 2683, "bg": 2673, "rotates": false }, + { "id": "acid_anthill", "fg": 2682, "bg": 2673, "rotates": false }, { "id": [ "2farm_3", "farm_3", "farm_isherwood_3", "farm_dairy_twd_6", "farm_dairy_twd_12", "ranch_camp_66", "dairy_farm_SE" ], - "fg": [ 2626, 2625, 2626, 2625 ], - "bg": 2614, + "fg": [ 2685, 2684, 2685, 2684 ], + "bg": 2673, "rotates": true }, - { "id": [ "desolatebarn", "barn_aban1" ], "fg": 2627, "bg": 2614 }, + { "id": [ "desolatebarn", "barn_aban1" ], "fg": 2686, "bg": 2673 }, { "id": [ "2farm_loft_3", @@ -2762,8 +2813,8 @@ "ranch_camp_66_roof", "dairy_farm_SE_roof" ], - "fg": [ 2626, 2625, 2626, 2625 ], - "bg": 2616, + "fg": [ 2685, 2684, 2685, 2684 ], + "bg": 2675, "rotates": true }, { @@ -2785,8 +2836,8 @@ "cabin_strange_b", "riverside_dwelling" ], - "fg": [ 2629, 2628, 2630, 2631 ], - "bg": 2614, + "fg": [ 2688, 2687, 2689, 2690 ], + "bg": 2673, "rotates": true }, { @@ -2804,8 +2855,8 @@ "cabin_lake_roof", "lake_cabin_boathouse_roof" ], - "fg": [ 2629, 2628, 2630, 2631 ], - "bg": 2616, + "fg": [ 2688, 2687, 2689, 2690 ], + "bg": 2675, "rotates": true }, { @@ -2821,12 +2872,12 @@ "ws_survivor_camp", "homelesscamp" ], - "fg": 2632, - "bg": 2614 + "fg": 2691, + "bg": 2673 }, - { "id": "cave", "fg": 2633, "bg": 2614 }, - { "id": "cave_underground", "fg": 2633 }, - { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 2635, "rotates": false }, + { "id": "cave", "fg": 2692, "bg": 2673 }, + { "id": "cave_underground", "fg": 2692 }, + { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 2694, "rotates": false }, { "id": [ "airliner_1a", @@ -2859,26 +2910,26 @@ "airliner_2j", "airliner_3j" ], - "fg": 2636 + "fg": 2695 }, - { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 2616 }, - { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 2643, 2642 ], "rotates": true }, - { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 2649, 2648, 2650, 2651 ], "rotates": true }, - { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 2638, 2640, 2641, 2639 ], "rotates": true }, - { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 2639, 2638, 2640, 2641 ], "rotates": true }, + { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 2675 }, + { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 2702, 2701 ], "rotates": true }, + { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 2708, 2707, 2709, 2710 ], "rotates": true }, + { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 2697, 2699, 2700, 2698 ], "rotates": true }, + { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 2698, 2697, 2699, 2700 ], "rotates": true }, { "id": [ "shelter", "shelter_1", "shelter_2", "shelter_vandal", "shelter_1_vandal", "shelter_2_vandal" ], - "fg": [ 2654, 2653, 2655, 2656 ], - "bg": 2614, + "fg": [ 2713, 2712, 2714, 2715 ], + "bg": 2673, "rotates": true }, { "id": [ "shelter_roof", "shelter_roof_1", "shelter_roof_2" ], - "fg": [ 2654, 2653, 2655, 2656 ], - "bg": 2616, + "fg": [ 2713, 2712, 2714, 2715 ], + "bg": 2675, "rotates": true }, - { "id": "shelter_under", "fg": [ 2654, 2653, 2655, 2656 ], "rotates": true }, + { "id": "shelter_under", "fg": [ 2713, 2712, 2714, 2715 ], "rotates": true }, { "id": [ "2farm_1", @@ -2947,19 +2998,19 @@ "horse_farm_isherwood_2", "yard" ], - "fg": 2657 + "fg": 2716 }, { "id": "forest_trail", - "fg": 2673, + "fg": 2732, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2658 }, - { "id": "corner", "fg": [ 2660, 2662, 2661, 2659 ] }, - { "id": "t_connection", "fg": [ 2670, 2672, 2671, 2669 ] }, - { "id": "edge", "fg": [ 2664, 2663 ] }, - { "id": "end_piece", "fg": [ 2666, 2668, 2667, 2665 ] }, - { "id": "unconnected", "fg": [ 2673, 2673 ] } + { "id": "center", "fg": 2717 }, + { "id": "corner", "fg": [ 2719, 2721, 2720, 2718 ] }, + { "id": "t_connection", "fg": [ 2729, 2731, 2730, 2728 ] }, + { "id": "edge", "fg": [ 2723, 2722 ] }, + { "id": "end_piece", "fg": [ 2725, 2727, 2726, 2724 ] }, + { "id": "unconnected", "fg": [ 2732, 2732 ] } ] }, { @@ -2976,46 +3027,46 @@ "garage_gas_roof_2", "garage_gas_roof_3" ], - "fg": [ 2675, 2674, 2676, 2677 ], - "bg": 2614 - }, - { "id": "2farm_7", "fg": 2658 }, - { "id": "crater", "fg": 3571, "bg": 2614 }, - { "id": "ranch_camp_17", "fg": 4378, "bg": 2705 }, - { "id": "ranch_camp_76", "fg": 2658 }, - { "id": "ranch_camp_77", "fg": [ 2759, 2758, 2760, 2761 ], "bg": 2614, "rotates": true }, - { "id": "lighthouse_z2", "fg": 2685, "bg": 2616 }, - { "id": "lighthouse_z3", "fg": 2686, "bg": 2616 }, - { "id": "lighthouse_z4", "fg": 2687, "bg": 2616 }, - { "id": "lighthouse_z5", "fg": 2688, "bg": 2616 }, - { "id": "lighthouse_roof", "fg": 2684, "bg": 2616 }, - { "id": "note_!_black", "fg": 2689 }, - { "id": "note_!_red", "fg": 2702 }, - { "id": "note_!_green", "fg": 2694 }, - { "id": "note_!_brown", "fg": 2691 }, - { "id": "note_!_blue", "fg": 2690 }, - { "id": "note_!_magenta", "fg": 2700 }, - { "id": "note_!_cyan", "fg": 2692 }, - { "id": "note_!_light_gray", "fg": 2697 }, - { "id": "note_!_dark_gray", "fg": 2693 }, - { "id": "note_!_light_red", "fg": 2699 }, - { "id": "note_!_light_green", "fg": 2698 }, - { "id": "note_!_yellow", "fg": 2704 }, - { "id": "note_!_light_blue", "fg": 2695 }, - { "id": "note_!_pink", "fg": 2701 }, - { "id": "note_!_light_cyan", "fg": 2696 }, - { "id": "note_!_white", "fg": 2703 }, - { "id": "2farm_4", "fg": [ 2713, 2712, 2714, 2715 ], "rotates": true }, - { "id": "2farm_8", "fg": [ 2714, 2715, 2713, 2712 ], "rotates": true }, - { "id": "dairy_farm_NW", "fg": [ 2715, 2713, 2712, 2714 ], "rotates": true }, - { "id": "dairy_farm_NE", "fg": [ 2712, 2714, 2715, 2713 ], "rotates": true }, - { "id": "ranch_camp_1", "fg": [ 2709, 2708, 2710, 2711 ], "rotates": true }, + "fg": [ 2734, 2733, 2735, 2736 ], + "bg": 2673 + }, + { "id": "2farm_7", "fg": 2717 }, + { "id": "crater", "fg": 3630, "bg": 2673 }, + { "id": "ranch_camp_17", "fg": 4453, "bg": 2764 }, + { "id": "ranch_camp_76", "fg": 2717 }, + { "id": "ranch_camp_77", "fg": [ 2818, 2817, 2819, 2820 ], "bg": 2673, "rotates": true }, + { "id": "lighthouse_z2", "fg": 2744, "bg": 2675 }, + { "id": "lighthouse_z3", "fg": 2745, "bg": 2675 }, + { "id": "lighthouse_z4", "fg": 2746, "bg": 2675 }, + { "id": "lighthouse_z5", "fg": 2747, "bg": 2675 }, + { "id": "lighthouse_roof", "fg": 2743, "bg": 2675 }, + { "id": "note_!_black", "fg": 2748 }, + { "id": "note_!_red", "fg": 2761 }, + { "id": "note_!_green", "fg": 2753 }, + { "id": "note_!_brown", "fg": 2750 }, + { "id": "note_!_blue", "fg": 2749 }, + { "id": "note_!_magenta", "fg": 2759 }, + { "id": "note_!_cyan", "fg": 2751 }, + { "id": "note_!_light_gray", "fg": 2756 }, + { "id": "note_!_dark_gray", "fg": 2752 }, + { "id": "note_!_light_red", "fg": 2758 }, + { "id": "note_!_light_green", "fg": 2757 }, + { "id": "note_!_yellow", "fg": 2763 }, + { "id": "note_!_light_blue", "fg": 2754 }, + { "id": "note_!_pink", "fg": 2760 }, + { "id": "note_!_light_cyan", "fg": 2755 }, + { "id": "note_!_white", "fg": 2762 }, + { "id": "2farm_4", "fg": [ 2772, 2771, 2773, 2774 ], "rotates": true }, + { "id": "2farm_8", "fg": [ 2773, 2774, 2772, 2771 ], "rotates": true }, + { "id": "dairy_farm_NW", "fg": [ 2774, 2772, 2771, 2773 ], "rotates": true }, + { "id": "dairy_farm_NE", "fg": [ 2771, 2773, 2774, 2772 ], "rotates": true }, + { "id": "ranch_camp_1", "fg": [ 2768, 2767, 2769, 2770 ], "rotates": true }, { "id": [ "ranch_camp_2", "ranch_camp_3", "ranch_camp_4", "ranch_camp_5", "ranch_camp_6", "ranch_camp_7", "ranch_camp_8" ], - "fg": [ 2717, 2716, 2718, 2719 ], + "fg": [ 2776, 2775, 2777, 2778 ], "rotates": true }, - { "id": "ranch_camp_9", "fg": [ 2708, 2710, 2711, 2709 ], "rotates": true }, + { "id": "ranch_camp_9", "fg": [ 2767, 2769, 2770, 2768 ], "rotates": true }, { "id": [ "ranch_camp_10", @@ -3026,7 +3077,7 @@ "ranch_camp_55", "ranch_camp_64" ], - "fg": [ 2719, 2717, 2716, 2718 ], + "fg": [ 2778, 2776, 2775, 2777 ], "rotates": true }, { @@ -3076,7 +3127,7 @@ "ranch_camp_70", "ranch_camp_71" ], - "fg": 2705, + "fg": 2764, "rotates": true }, { @@ -3089,730 +3140,730 @@ "ranch_camp_63", "ranch_camp_72" ], - "fg": [ 2716, 2718, 2719, 2717 ], + "fg": [ 2775, 2777, 2778, 2776 ], "rotates": true }, - { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 2711, 2709, 2708, 2710 ], "rotates": true }, + { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 2770, 2768, 2767, 2769 ], "rotates": true }, { "id": [ "ranch_camp_74", "ranch_camp_79", "ranch_camp_80" ], - "fg": [ 2718, 2719, 2717, 2716 ], + "fg": [ 2777, 2778, 2776, 2775 ], "rotates": true }, - { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 2710, 2711, 2709, 2708 ], "rotates": true }, - { "id": "pond_field", "fg": 2722, "bg": 2614, "rotates": false }, - { "id": "pond_forest", "fg": 2723, "bg": 2614, "rotates": false }, - { "id": "pond_swamp", "fg": 2724, "bg": 2614, "rotates": false }, - { "id": "hot_springs", "fg": 2721, "bg": 2614, "rotates": false }, + { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 2769, 2770, 2768, 2767 ], "rotates": true }, + { "id": "pond_field", "fg": 2781, "bg": 2673, "rotates": false }, + { "id": "pond_forest", "fg": 2782, "bg": 2673, "rotates": false }, + { "id": "pond_swamp", "fg": 2783, "bg": 2673, "rotates": false }, + { "id": "hot_springs", "fg": 2780, "bg": 2673, "rotates": false }, { "id": [ "pool", "pool_1", "pool_2", "pool_3", "pool_4" ], - "fg": [ 2726, 2725, 2727, 2728 ], - "bg": 2614, + "fg": [ 2785, 2784, 2786, 2787 ], + "bg": 2673, "rotates": true }, - { "id": [ "pool_5", "pool_6" ], "fg": [ 2730, 2729, 2731, 2732 ], "bg": 2614, "rotates": true }, + { "id": [ "pool_5", "pool_6" ], "fg": [ 2789, 2788, 2790, 2791 ], "bg": 2673, "rotates": true }, { "id": [ "pool_roof", "pool_roof_1", "pool_roof_2", "pool_roof_3", "pool_roof_4" ], - "fg": [ 2726, 2725, 2727, 2728 ], - "bg": 2616, + "fg": [ 2785, 2784, 2786, 2787 ], + "bg": 2675, "rotates": true }, - { "id": "publicgarden", "fg": 2733 }, - { "id": "PublicPond_1a", "fg": [ 2737, 2735, 2734, 2736 ], "rotates": true }, - { "id": "PublicPond_1b", "fg": [ 2734, 2736, 2737, 2735 ], "rotates": true }, - { "id": "river_nw", "fg": 2746, "bg": 2614, "rotates": false }, - { "id": "river_sw", "fg": 2749, "bg": 2614, "rotates": false }, - { "id": "river_se", "fg": 2747, "bg": 2614, "rotates": false }, - { "id": "river_ne", "fg": 2744, "bg": 2614, "rotates": false }, - { "id": "river_north", "fg": 2745, "bg": 2614, "rotates": false }, - { "id": "river_west", "fg": 2750, "bg": 2614, "rotates": false }, - { "id": "river_east", "fg": 2743, "bg": 2614, "rotates": false }, - { "id": "river_south", "fg": 2748, "bg": 2614, "rotates": false }, - { "id": "river_center", "fg": 2742, "bg": 2614, "rotates": false }, - { "id": "river", "fg": [ 2745, 2743, 2748, 2750 ], "bg": 2614, "rotates": true }, - { "id": "river_c_not_nw", "fg": 2739, "bg": 2614, "rotates": false }, - { "id": "river_c_not_ne", "fg": 2738, "bg": 2614, "rotates": false }, - { "id": "river_c_not_sw", "fg": 2741, "bg": 2614, "rotates": false }, - { "id": "river_c_not_se", "fg": 2740, "bg": 2614, "rotates": false }, + { "id": "publicgarden", "fg": 2792 }, + { "id": "PublicPond_1a", "fg": [ 2796, 2794, 2793, 2795 ], "rotates": true }, + { "id": "PublicPond_1b", "fg": [ 2793, 2795, 2796, 2794 ], "rotates": true }, + { "id": "river_nw", "fg": 2805, "bg": 2673, "rotates": false }, + { "id": "river_sw", "fg": 2808, "bg": 2673, "rotates": false }, + { "id": "river_se", "fg": 2806, "bg": 2673, "rotates": false }, + { "id": "river_ne", "fg": 2803, "bg": 2673, "rotates": false }, + { "id": "river_north", "fg": 2804, "bg": 2673, "rotates": false }, + { "id": "river_west", "fg": 2809, "bg": 2673, "rotates": false }, + { "id": "river_east", "fg": 2802, "bg": 2673, "rotates": false }, + { "id": "river_south", "fg": 2807, "bg": 2673, "rotates": false }, + { "id": "river_center", "fg": 2801, "bg": 2673, "rotates": false }, + { "id": "river", "fg": [ 2804, 2802, 2807, 2809 ], "bg": 2673, "rotates": true }, + { "id": "river_c_not_nw", "fg": 2798, "bg": 2673, "rotates": false }, + { "id": "river_c_not_ne", "fg": 2797, "bg": 2673, "rotates": false }, + { "id": "river_c_not_sw", "fg": 2800, "bg": 2673, "rotates": false }, + { "id": "river_c_not_se", "fg": 2799, "bg": 2673, "rotates": false }, { "id": "road", - "fg": 2766, + "fg": 2825, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2751 }, - { "id": "corner", "fg": [ 2753, 2755, 2754, 2752 ], "bg": 2614 }, - { "id": "t_connection", "fg": [ 2763, 2765, 2764, 2762 ] }, - { "id": "edge", "fg": [ 2757, 2756 ] }, - { "id": "end_piece", "fg": [ 2759, 2761, 2760, 2758 ] }, - { "id": "unconnected", "fg": [ 2766, 2766 ], "bg": 2614 } + { "id": "center", "fg": 2810 }, + { "id": "corner", "fg": [ 2812, 2814, 2813, 2811 ], "bg": 2673 }, + { "id": "t_connection", "fg": [ 2822, 2824, 2823, 2821 ] }, + { "id": "edge", "fg": [ 2816, 2815 ] }, + { "id": "end_piece", "fg": [ 2818, 2820, 2819, 2817 ] }, + { "id": "unconnected", "fg": [ 2825, 2825 ], "bg": 2673 } ] }, - { "id": "road_nesw_manhole", "fg": 2767, "bg": 2751 }, + { "id": "road_nesw_manhole", "fg": 2826, "bg": 2810 }, { "id": [ "house_farm", "farm_2", "farm_isherwood_2", "2farm_11" ], - "fg": [ 2769, 2768, 2770, 2771 ], - "bg": 2614, + "fg": [ 2828, 2827, 2829, 2830 ], + "bg": 2673, "rotates": true }, - { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 2770, 2771, 2769, 2768 ], "bg": 2614, "rotates": true }, + { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 2829, 2830, 2828, 2827 ], "bg": 2673, "rotates": true }, { "id": [ "house_farm_roof", "farm_2_roof", "farm_isherwood_2_roof", "2farm_roof_11" ], - "fg": [ 2769, 2768, 2770, 2771 ], - "bg": 2616, + "fg": [ 2828, 2827, 2829, 2830 ], + "bg": 2675, "rotates": true }, { "id": [ "dairy_farm_SW_roof", "ranch_camp_68_roof" ], - "fg": [ 2770, 2771, 2769, 2768 ], - "bg": 2616, + "fg": [ 2829, 2830, 2828, 2827 ], + "bg": 2675, "rotates": true }, - { "id": "farm_isherwood_2_cellar", "fg": [ 2769, 2768, 2770, 2771 ], "rotates": true }, - { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 2773, 2772, 2773, 2772 ], "bg": 2614, "rotates": true }, + { "id": "farm_isherwood_2_cellar", "fg": [ 2828, 2827, 2829, 2830 ], "rotates": true }, + { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 2832, 2831, 2832, 2831 ], "bg": 2673, "rotates": true }, { "id": [ "2silos_1", "2silos_2", "2silos_roof" ], - "fg": [ 2773, 2772, 2773, 2772 ], - "bg": 2616, + "fg": [ 2832, 2831, 2832, 2831 ], + "bg": 2675, "rotates": true }, - { "id": "slimepit_top", "fg": 2774, "bg": 2614 }, - { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 3987 }, - { "id": "hunter_shack", "fg": [ 2780, 2779, 2781, 2782 ], "bg": 2614, "rotates": true }, - { "id": "hunter_shack_1", "fg": [ 2777, 2775, 2776, 2778 ], "bg": 2614, "rotates": true }, - { "id": "hunter_shack_roof", "fg": [ 2780, 2779, 2781, 2782 ], "bg": 2616, "rotates": true }, - { "id": "hunter_shack_roof_1", "fg": [ 2777, 2775, 2776, 2778 ], "bg": 2616, "rotates": true }, - { "id": "ws_fire_lookout_tower_base", "fg": 2783, "bg": 2614, "rotates": false }, - { "id": "ws_fire_lookout_tower_f1", "fg": 2783, "bg": 2616 }, - { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 2784, "bg": 2616 }, - { "id": "t_reb_cage", "fg": 2786, "bg": 3780 }, + { "id": "slimepit_top", "fg": 2833, "bg": 2673 }, + { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 4062 }, + { "id": "hunter_shack", "fg": [ 2839, 2838, 2840, 2841 ], "bg": 2673, "rotates": true }, + { "id": "hunter_shack_1", "fg": [ 2836, 2834, 2835, 2837 ], "bg": 2673, "rotates": true }, + { "id": "hunter_shack_roof", "fg": [ 2839, 2838, 2840, 2841 ], "bg": 2675, "rotates": true }, + { "id": "hunter_shack_roof_1", "fg": [ 2836, 2834, 2835, 2837 ], "bg": 2675, "rotates": true }, + { "id": "ws_fire_lookout_tower_base", "fg": 2842, "bg": 2673, "rotates": false }, + { "id": "ws_fire_lookout_tower_f1", "fg": 2842, "bg": 2675 }, + { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 2843, "bg": 2675 }, + { "id": "t_reb_cage", "fg": 2845, "bg": 3855 }, { "id": "f_earthbag_half", "multitile": true, - "fg": 2802, - "bg": 3331, + "fg": 2861, + "bg": 3390, "additional_tiles": [ - { "id": "center", "fg": 2787 }, - { "id": "corner", "fg": [ 2789, 2791, 2790, 2788 ] }, - { "id": "t_connection", "fg": [ 2799, 2801, 2800, 2798 ] }, - { "id": "edge", "fg": [ 2793, 2792 ] }, - { "id": "end_piece", "fg": [ 2795, 2797, 2796, 2794 ] }, - { "id": "unconnected", "fg": [ 2802, 2802 ] } + { "id": "center", "fg": 2846 }, + { "id": "corner", "fg": [ 2848, 2850, 2849, 2847 ] }, + { "id": "t_connection", "fg": [ 2858, 2860, 2859, 2857 ] }, + { "id": "edge", "fg": [ 2852, 2851 ] }, + { "id": "end_piece", "fg": [ 2854, 2856, 2855, 2853 ] }, + { "id": "unconnected", "fg": [ 2861, 2861 ] } ] }, - { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 3536 }, - { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 3971 }, + { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 3595 }, + { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 4046 }, { "id": "t_splitrail_fence", "multitile": true, - "fg": 2845, - "bg": 3331, + "fg": 2904, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 2830 }, - { "id": "corner", "bg": 3331, "fg": [ 2832, 2834, 2833, 2831 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 2842, 2844, 2843, 2841 ] }, - { "id": "edge", "bg": 3331, "fg": [ 2836, 2835 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 2838, 2840, 2839, 2837 ] }, - { "bg": 3331, "id": "unconnected", "fg": [ 2845, 2845 ] } + { "id": "center", "bg": 3390, "fg": 2889 }, + { "id": "corner", "bg": 3390, "fg": [ 2891, 2893, 2892, 2890 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 2901, 2903, 2902, 2900 ] }, + { "id": "edge", "bg": 3390, "fg": [ 2895, 2894 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 2897, 2899, 2898, 2896 ] }, + { "bg": 3390, "id": "unconnected", "fg": [ 2904, 2904 ] } ] }, { "id": "t_splitrail_fence_season_summer", "multitile": true, - "fg": 2845, - "bg": 3341, + "fg": 2904, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": 2830 }, - { "id": "corner", "bg": 3341, "fg": [ 2832, 2834, 2833, 2831 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 2842, 2844, 2843, 2841 ] }, - { "id": "edge", "bg": 3341, "fg": [ 2836, 2835 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 2838, 2840, 2839, 2837 ] }, - { "bg": 3341, "id": "unconnected", "fg": [ 2845, 2845 ] } + { "id": "center", "bg": 3400, "fg": 2889 }, + { "id": "corner", "bg": 3400, "fg": [ 2891, 2893, 2892, 2890 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 2901, 2903, 2902, 2900 ] }, + { "id": "edge", "bg": 3400, "fg": [ 2895, 2894 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 2897, 2899, 2898, 2896 ] }, + { "bg": 3400, "id": "unconnected", "fg": [ 2904, 2904 ] } ] }, { "id": "t_splitrail_fence_season_autumn", "multitile": true, - "fg": 2845, - "bg": 3336, + "fg": 2904, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": 2830 }, - { "id": "corner", "bg": 3336, "fg": [ 2832, 2834, 2833, 2831 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 2842, 2844, 2843, 2841 ] }, - { "id": "edge", "bg": 3336, "fg": [ 2836, 2835 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 2838, 2840, 2839, 2837 ] }, - { "bg": 3336, "id": "unconnected", "fg": [ 2845, 2845 ] } + { "id": "center", "bg": 3395, "fg": 2889 }, + { "id": "corner", "bg": 3395, "fg": [ 2891, 2893, 2892, 2890 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 2901, 2903, 2902, 2900 ] }, + { "id": "edge", "bg": 3395, "fg": [ 2895, 2894 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 2897, 2899, 2898, 2896 ] }, + { "bg": 3395, "id": "unconnected", "fg": [ 2904, 2904 ] } ] }, { "id": "t_splitrail_fence_season_winter", "multitile": true, - "fg": 2845, - "bg": 2811, + "fg": 2904, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": 2830 }, - { "id": "corner", "bg": 2811, "fg": [ 2832, 2834, 2833, 2831 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 2842, 2844, 2843, 2841 ] }, - { "id": "edge", "bg": 2811, "fg": [ 2836, 2835 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 2838, 2840, 2839, 2837 ] }, - { "bg": 2811, "id": "unconnected", "fg": [ 2845, 2845 ] } + { "id": "center", "bg": 2870, "fg": 2889 }, + { "id": "corner", "bg": 2870, "fg": [ 2891, 2893, 2892, 2890 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 2901, 2903, 2902, 2900 ] }, + { "id": "edge", "bg": 2870, "fg": [ 2895, 2894 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 2897, 2899, 2898, 2896 ] }, + { "bg": 2870, "id": "unconnected", "fg": [ 2904, 2904 ] } ] }, - { "id": "t_stairs_down", "fg": 2846 }, - { "id": "t_wood_stairs_down", "fg": 2847 }, + { "id": "t_stairs_down", "fg": 2905 }, + { "id": "t_wood_stairs_down", "fg": 2906 }, { "id": "t_adobe_brick_wall", "multitile": true, - "fg": 2863, + "fg": 2922, "additional_tiles": [ - { "id": "center", "fg": 2848 }, - { "id": "corner", "fg": [ 2850, 2852, 2851, 2849 ] }, - { "id": "t_connection", "fg": [ 2860, 2862, 2861, 2859 ] }, - { "id": "edge", "fg": [ 2854, 2853 ] }, - { "id": "end_piece", "fg": [ 2856, 2858, 2857, 2855 ] }, - { "id": "unconnected", "fg": [ 2863, 2863 ] } + { "id": "center", "fg": 2907 }, + { "id": "corner", "fg": [ 2909, 2911, 2910, 2908 ] }, + { "id": "t_connection", "fg": [ 2919, 2921, 2920, 2918 ] }, + { "id": "edge", "fg": [ 2913, 2912 ] }, + { "id": "end_piece", "fg": [ 2915, 2917, 2916, 2914 ] }, + { "id": "unconnected", "fg": [ 2922, 2922 ] } ] }, - { "id": "t_bars", "fg": 2864 }, + { "id": "t_bars", "fg": 2923 }, { "id": "t_brick_wall", "multitile": true, - "fg": 2880, + "fg": 2939, "additional_tiles": [ - { "id": "center", "fg": 2865 }, - { "id": "corner", "fg": [ 2867, 2869, 2868, 2866 ] }, - { "id": "t_connection", "fg": [ 2877, 2879, 2878, 2876 ] }, - { "id": "edge", "fg": [ 2871, 2870 ] }, - { "id": "end_piece", "fg": [ 2873, 2875, 2874, 2872 ] }, - { "id": "unconnected", "fg": 2880 } + { "id": "center", "fg": 2924 }, + { "id": "corner", "fg": [ 2926, 2928, 2927, 2925 ] }, + { "id": "t_connection", "fg": [ 2936, 2938, 2937, 2935 ] }, + { "id": "edge", "fg": [ 2930, 2929 ] }, + { "id": "end_piece", "fg": [ 2932, 2934, 2933, 2931 ] }, + { "id": "unconnected", "fg": 2939 } ] }, { "id": "t_bridge", "multitile": true, - "fg": 2896, + "fg": 2955, "additional_tiles": [ - { "id": "center", "fg": 2881 }, - { "id": "corner", "fg": [ 2883, 2885, 2884, 2882 ] }, - { "id": "t_connection", "fg": [ 2893, 2895, 2894, 2892 ] }, - { "id": "edge", "fg": [ 2887, 2886 ] }, - { "id": "end_piece", "fg": [ 2889, 2891, 2890, 2888 ] }, - { "id": "unconnected", "fg": [ 2896, 2896 ] } + { "id": "center", "fg": 2940 }, + { "id": "corner", "fg": [ 2942, 2944, 2943, 2941 ] }, + { "id": "t_connection", "fg": [ 2952, 2954, 2953, 2951 ] }, + { "id": "edge", "fg": [ 2946, 2945 ] }, + { "id": "end_piece", "fg": [ 2948, 2950, 2949, 2947 ] }, + { "id": "unconnected", "fg": [ 2955, 2955 ] } ] }, { "id": "t_carpet_green", "multitile": true, - "fg": 2915, + "fg": 2974, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 2897 }, - { "weight": 1, "sprite": 2898 }, - { "weight": 1, "sprite": 2899 }, - { "weight": 1, "sprite": 2900 } + { "weight": 1, "sprite": 2956 }, + { "weight": 1, "sprite": 2957 }, + { "weight": 1, "sprite": 2958 }, + { "weight": 1, "sprite": 2959 } ] }, - { "id": "corner", "fg": [ 2902, 2904, 2903, 2901 ] }, - { "id": "t_connection", "fg": [ 2912, 2914, 2913, 2911 ] }, - { "id": "edge", "fg": [ 2906, 2905 ] }, - { "id": "end_piece", "fg": [ 2908, 2910, 2909, 2907 ] }, - { "id": "unconnected", "fg": 2915 } + { "id": "corner", "fg": [ 2961, 2963, 2962, 2960 ] }, + { "id": "t_connection", "fg": [ 2971, 2973, 2972, 2970 ] }, + { "id": "edge", "fg": [ 2965, 2964 ] }, + { "id": "end_piece", "fg": [ 2967, 2969, 2968, 2966 ] }, + { "id": "unconnected", "fg": 2974 } ] }, { "id": "t_carpet_purple", "multitile": true, - "fg": 2934, + "fg": 2993, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 2916 }, - { "weight": 1, "sprite": 2917 }, - { "weight": 1, "sprite": 2918 }, - { "weight": 1, "sprite": 2919 } + { "weight": 1, "sprite": 2975 }, + { "weight": 1, "sprite": 2976 }, + { "weight": 1, "sprite": 2977 }, + { "weight": 1, "sprite": 2978 } ] }, - { "id": "corner", "fg": [ 2921, 2923, 2922, 2920 ] }, - { "id": "t_connection", "fg": [ 2931, 2933, 2932, 2930 ] }, - { "id": "edge", "fg": [ 2925, 2924 ] }, - { "id": "end_piece", "fg": [ 2927, 2929, 2928, 2926 ] }, - { "id": "unconnected", "fg": 2934 } + { "id": "corner", "fg": [ 2980, 2982, 2981, 2979 ] }, + { "id": "t_connection", "fg": [ 2990, 2992, 2991, 2989 ] }, + { "id": "edge", "fg": [ 2984, 2983 ] }, + { "id": "end_piece", "fg": [ 2986, 2988, 2987, 2985 ] }, + { "id": "unconnected", "fg": 2993 } ] }, { "id": "t_carpet_red", "multitile": true, - "fg": 2950, + "fg": 3009, "additional_tiles": [ - { "id": "center", "fg": 2935 }, - { "id": "corner", "fg": [ 2937, 2939, 2938, 2936 ] }, - { "id": "t_connection", "fg": [ 2947, 2949, 2948, 2946 ] }, - { "id": "edge", "fg": [ 2941, 2940 ] }, - { "id": "end_piece", "fg": [ 2943, 2945, 2944, 2942 ] }, - { "id": "unconnected", "fg": 2950 } + { "id": "center", "fg": 2994 }, + { "id": "corner", "fg": [ 2996, 2998, 2997, 2995 ] }, + { "id": "t_connection", "fg": [ 3006, 3008, 3007, 3005 ] }, + { "id": "edge", "fg": [ 3000, 2999 ] }, + { "id": "end_piece", "fg": [ 3002, 3004, 3003, 3001 ] }, + { "id": "unconnected", "fg": 3009 } ] }, { "id": "t_carpet_yellow", "multitile": true, - "fg": 2966, + "fg": 3025, "additional_tiles": [ - { "id": "center", "fg": 2951 }, - { "id": "corner", "fg": [ 2953, 2955, 2954, 2952 ] }, - { "id": "t_connection", "fg": [ 2963, 2965, 2964, 2962 ] }, - { "id": "edge", "fg": [ 2957, 2956 ] }, - { "id": "end_piece", "fg": [ 2959, 2961, 2960, 2958 ] }, - { "id": "unconnected", "fg": 2966 } + { "id": "center", "fg": 3010 }, + { "id": "corner", "fg": [ 3012, 3014, 3013, 3011 ] }, + { "id": "t_connection", "fg": [ 3022, 3024, 3023, 3021 ] }, + { "id": "edge", "fg": [ 3016, 3015 ] }, + { "id": "end_piece", "fg": [ 3018, 3020, 3019, 3017 ] }, + { "id": "unconnected", "fg": 3025 } ] }, { "id": "t_chainfence", - "fg": 2982, + "fg": 3041, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2967, "bg": 3536 }, - { "id": "corner", "fg": [ 2969, 2971, 2970, 2968 ], "bg": 3536 }, - { "id": "t_connection", "fg": [ 2979, 2981, 2980, 2978 ], "bg": 3536 }, - { "id": "edge", "fg": [ 2973, 2972 ], "bg": 3536 }, - { "id": "end_piece", "fg": [ 2975, 2977, 2976, 2974 ], "bg": 3536 }, - { "id": "unconnected", "fg": [ 2982, 2982 ], "bg": 3536 } + { "id": "center", "fg": 3026, "bg": 3595 }, + { "id": "corner", "fg": [ 3028, 3030, 3029, 3027 ], "bg": 3595 }, + { "id": "t_connection", "fg": [ 3038, 3040, 3039, 3037 ], "bg": 3595 }, + { "id": "edge", "fg": [ 3032, 3031 ], "bg": 3595 }, + { "id": "end_piece", "fg": [ 3034, 3036, 3035, 3033 ], "bg": 3595 }, + { "id": "unconnected", "fg": [ 3041, 3041 ], "bg": 3595 } ], - "bg": 3536 + "bg": 3595 }, { "id": "t_chainfence_season_winter", - "fg": 2982, + "fg": 3041, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2967, "bg": 2811 }, - { "id": "corner", "fg": [ 2969, 2971, 2970, 2968 ], "bg": 2811 }, - { "id": "t_connection", "fg": [ 2979, 2981, 2980, 2978 ], "bg": 2811 }, - { "id": "edge", "fg": [ 2973, 2972 ], "bg": 2811 }, - { "id": "end_piece", "fg": [ 2975, 2977, 2976, 2974 ], "bg": 2811 }, - { "id": "unconnected", "fg": [ 2982, 2982 ], "bg": 2811 } + { "id": "center", "fg": 3026, "bg": 2870 }, + { "id": "corner", "fg": [ 3028, 3030, 3029, 3027 ], "bg": 2870 }, + { "id": "t_connection", "fg": [ 3038, 3040, 3039, 3037 ], "bg": 2870 }, + { "id": "edge", "fg": [ 3032, 3031 ], "bg": 2870 }, + { "id": "end_piece", "fg": [ 3034, 3036, 3035, 3033 ], "bg": 2870 }, + { "id": "unconnected", "fg": [ 3041, 3041 ], "bg": 2870 } ], - "bg": 2811 + "bg": 2870 }, { "id": "t_clay", "multitile": true, - "fg": 2998, - "bg": 3331, + "fg": 3057, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 2983 }, - { "id": "corner", "bg": 3331, "fg": [ 2985, 2987, 2986, 2984 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 2995, 2997, 2996, 2994 ] }, - { "id": "edge", "bg": 3331, "fg": [ 2989, 2988 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 2991, 2993, 2992, 2990 ] }, - { "bg": 3331, "id": "unconnected", "fg": 2998 } + { "id": "center", "bg": 3390, "fg": 3042 }, + { "id": "corner", "bg": 3390, "fg": [ 3044, 3046, 3045, 3043 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3054, 3056, 3055, 3053 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3048, 3047 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3050, 3052, 3051, 3049 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3057 } ] }, { "id": "t_clay_season_summer", "multitile": true, - "fg": 2998, - "bg": 3341, + "fg": 3057, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": 2983 }, - { "id": "corner", "bg": 3341, "fg": [ 2985, 2987, 2986, 2984 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 2995, 2997, 2996, 2994 ] }, - { "id": "edge", "bg": 3341, "fg": [ 2989, 2988 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 2991, 2993, 2992, 2990 ] }, - { "bg": 3341, "id": "unconnected", "fg": 2998 } + { "id": "center", "bg": 3400, "fg": 3042 }, + { "id": "corner", "bg": 3400, "fg": [ 3044, 3046, 3045, 3043 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3054, 3056, 3055, 3053 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3048, 3047 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3050, 3052, 3051, 3049 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3057 } ] }, { "id": "t_clay_season_autumn", "multitile": true, - "fg": 2998, - "bg": 3336, + "fg": 3057, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": 2983 }, - { "id": "corner", "bg": 3336, "fg": [ 2985, 2987, 2986, 2984 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 2995, 2997, 2996, 2994 ] }, - { "id": "edge", "bg": 3336, "fg": [ 2989, 2988 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 2991, 2993, 2992, 2990 ] }, - { "bg": 3336, "id": "unconnected", "fg": 2998 } + { "id": "center", "bg": 3395, "fg": 3042 }, + { "id": "corner", "bg": 3395, "fg": [ 3044, 3046, 3045, 3043 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3054, 3056, 3055, 3053 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3048, 3047 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3050, 3052, 3051, 3049 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3057 } ] }, { "id": "t_clay_season_winter", "multitile": true, - "fg": 2998, - "bg": 2811, + "fg": 3057, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": 2983 }, - { "id": "corner", "bg": 2811, "fg": [ 2985, 2987, 2986, 2984 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 2995, 2997, 2996, 2994 ] }, - { "id": "edge", "bg": 2811, "fg": [ 2989, 2988 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 2991, 2993, 2992, 2990 ] }, - { "bg": 2811, "id": "unconnected", "fg": 2998 } + { "id": "center", "bg": 2870, "fg": 3042 }, + { "id": "corner", "bg": 2870, "fg": [ 3044, 3046, 3045, 3043 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3054, 3056, 3055, 3053 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3048, 3047 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3050, 3052, 3051, 3049 ] }, + { "bg": 2870, "id": "unconnected", "fg": 3057 } ] }, { "id": "t_concrete", "multitile": true, - "fg": 3014, + "fg": 3073, "additional_tiles": [ - { "id": "center", "fg": 2999 }, - { "id": "corner", "fg": [ 3001, 3003, 3002, 3000 ] }, - { "id": "t_connection", "fg": [ 3011, 3013, 3012, 3010 ] }, - { "id": "edge", "fg": [ 3005, 3004 ] }, - { "id": "end_piece", "fg": [ 3007, 3009, 3008, 3006 ] }, - { "id": "unconnected", "fg": 3014 } + { "id": "center", "fg": 3058 }, + { "id": "corner", "fg": [ 3060, 3062, 3061, 3059 ] }, + { "id": "t_connection", "fg": [ 3070, 3072, 3071, 3069 ] }, + { "id": "edge", "fg": [ 3064, 3063 ] }, + { "id": "end_piece", "fg": [ 3066, 3068, 3067, 3065 ] }, + { "id": "unconnected", "fg": 3073 } ] }, - { "id": "t_concrete_season_winter", "fg": 2811 }, + { "id": "t_concrete_season_winter", "fg": 2870 }, { "id": "t_concrete_wall", "multitile": true, - "fg": 3030, + "fg": 3089, "additional_tiles": [ - { "id": "center", "fg": 3015 }, - { "id": "corner", "fg": [ 3017, 3019, 3018, 3016 ] }, - { "id": "t_connection", "fg": [ 3027, 3029, 3028, 3026 ] }, - { "id": "edge", "fg": [ 3021, 3020 ] }, - { "id": "end_piece", "fg": [ 3023, 3025, 3024, 3022 ] }, - { "id": "unconnected", "fg": 3030 } + { "id": "center", "fg": 3074 }, + { "id": "corner", "fg": [ 3076, 3078, 3077, 3075 ] }, + { "id": "t_connection", "fg": [ 3086, 3088, 3087, 3085 ] }, + { "id": "edge", "fg": [ 3080, 3079 ] }, + { "id": "end_piece", "fg": [ 3082, 3084, 3083, 3081 ] }, + { "id": "unconnected", "fg": 3089 } ] }, { "id": "t_concrete_wall_flesh", - "fg": 3046, + "fg": 3105, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3031 }, - { "id": "corner", "fg": [ 3033, 3035, 3034, 3032 ] }, - { "id": "t_connection", "fg": [ 3043, 3045, 3044, 3042 ] }, - { "id": "edge", "fg": [ 3037, 3036 ] }, - { "id": "end_piece", "fg": [ 3039, 3041, 3040, 3038 ] }, - { "id": "unconnected", "fg": [ 3046, 3046 ] } + { "id": "center", "fg": 3090 }, + { "id": "corner", "fg": [ 3092, 3094, 3093, 3091 ] }, + { "id": "t_connection", "fg": [ 3102, 3104, 3103, 3101 ] }, + { "id": "edge", "fg": [ 3096, 3095 ] }, + { "id": "end_piece", "fg": [ 3098, 3100, 3099, 3097 ] }, + { "id": "unconnected", "fg": [ 3105, 3105 ] } ] }, { "id": "t_conveyor", "multitile": true, - "fg": 3062, - "bg": 4025, + "fg": 3121, + "bg": 4100, "additional_tiles": [ - { "id": "center", "bg": 4025, "fg": 3047 }, - { "id": "corner", "bg": 4025, "fg": [ 3049, 3051, 3050, 3048 ] }, - { "id": "t_connection", "bg": 4025, "fg": [ 3059, 3061, 3060, 3058 ] }, - { "id": "edge", "bg": 4025, "fg": [ 3053, 3052 ] }, - { "id": "end_piece", "bg": 4025, "fg": [ 3055, 3057, 3056, 3054 ] }, - { "bg": 4025, "id": "unconnected", "fg": [ 3062, 3062 ] } + { "id": "center", "bg": 4100, "fg": 3106 }, + { "id": "corner", "bg": 4100, "fg": [ 3108, 3110, 3109, 3107 ] }, + { "id": "t_connection", "bg": 4100, "fg": [ 3118, 3120, 3119, 3117 ] }, + { "id": "edge", "bg": 4100, "fg": [ 3112, 3111 ] }, + { "id": "end_piece", "bg": 4100, "fg": [ 3114, 3116, 3115, 3113 ] }, + { "bg": 4100, "id": "unconnected", "fg": [ 3121, 3121 ] } ] }, - { "id": "t_curtains", "fg": 3063 }, + { "id": "t_curtains", "fg": 3122 }, { "id": "t_dirt", - "fg": 3082, + "fg": 3141, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 100, "sprite": 3064 }, - { "weight": 100, "sprite": 3065 }, - { "weight": 100, "sprite": 3066 }, - { "weight": 100, "sprite": 3067 } + { "weight": 100, "sprite": 3123 }, + { "weight": 100, "sprite": 3124 }, + { "weight": 100, "sprite": 3125 }, + { "weight": 100, "sprite": 3126 } ] }, - { "id": "corner", "fg": [ 3069, 3071, 3070, 3068 ] }, - { "id": "t_connection", "fg": [ 3079, 3081, 3080, 3078 ] }, - { "id": "edge", "fg": [ 3073, 3072 ] }, - { "id": "end_piece", "fg": [ 3075, 3077, 3076, 3074 ] }, - { "id": "unconnected", "fg": [ 3082, 3082 ] } + { "id": "corner", "fg": [ 3128, 3130, 3129, 3127 ] }, + { "id": "t_connection", "fg": [ 3138, 3140, 3139, 3137 ] }, + { "id": "edge", "fg": [ 3132, 3131 ] }, + { "id": "end_piece", "fg": [ 3134, 3136, 3135, 3133 ] }, + { "id": "unconnected", "fg": [ 3141, 3141 ] } ] }, { "id": "t_dirt_season_autumn", - "fg": 3101, + "fg": 3160, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 3083, 3084, 3085, 3086 ] }, - { "id": "corner", "fg": [ 3088, 3090, 3089, 3087 ] }, - { "id": "t_connection", "fg": [ 3098, 3100, 3099, 3097 ] }, - { "id": "edge", "fg": [ 3092, 3091 ] }, - { "id": "end_piece", "fg": [ 3094, 3096, 3095, 3093 ] }, - { "id": "unconnected", "fg": [ 3101, 3101 ] } + { "id": "center", "fg": [ 3142, 3143, 3144, 3145 ] }, + { "id": "corner", "fg": [ 3147, 3149, 3148, 3146 ] }, + { "id": "t_connection", "fg": [ 3157, 3159, 3158, 3156 ] }, + { "id": "edge", "fg": [ 3151, 3150 ] }, + { "id": "end_piece", "fg": [ 3153, 3155, 3154, 3152 ] }, + { "id": "unconnected", "fg": [ 3160, 3160 ] } ] }, { "id": "t_dirt_season_summer", - "fg": 3120, + "fg": 3179, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 3102, 3103, 3104, 3105 ] }, - { "id": "corner", "fg": [ 3107, 3109, 3108, 3106 ] }, - { "id": "t_connection", "fg": [ 3117, 3119, 3118, 3116 ] }, - { "id": "edge", "fg": [ 3111, 3110 ] }, - { "id": "end_piece", "fg": [ 3113, 3115, 3114, 3112 ] }, - { "id": "unconnected", "fg": [ 3120, 3120 ] } + { "id": "center", "fg": [ 3161, 3162, 3163, 3164 ] }, + { "id": "corner", "fg": [ 3166, 3168, 3167, 3165 ] }, + { "id": "t_connection", "fg": [ 3176, 3178, 3177, 3175 ] }, + { "id": "edge", "fg": [ 3170, 3169 ] }, + { "id": "end_piece", "fg": [ 3172, 3174, 3173, 3171 ] }, + { "id": "unconnected", "fg": [ 3179, 3179 ] } ] }, { "id": "t_dirt_season_winter", "fg": [ - { "weight": 100, "sprite": 3121 }, - { "weight": 100, "sprite": 3122 }, - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 } + { "weight": 100, "sprite": 3180 }, + { "weight": 100, "sprite": 3181 }, + { "weight": 100, "sprite": 3182 }, + { "weight": 100, "sprite": 3183 } ] }, { "id": "t_dirtfloor", "multitile": true, - "fg": 3140, - "additional_tiles": [ - { "id": "center", "fg": 3125 }, - { "id": "corner", "fg": [ 3127, 3129, 3128, 3126 ] }, - { "id": "t_connection", "fg": [ 3137, 3139, 3138, 3136 ] }, - { "id": "edge", "fg": [ 3131, 3130 ] }, - { "id": "end_piece", "fg": [ 3133, 3135, 3134, 3132 ] }, - { "id": "unconnected", "fg": 3140 } - ] - }, - { "id": "t_door_c", "fg": 3142 }, - { "id": "t_door_locked", "fg": 3143 }, - { "id": "t_door_o", "fg": 3144 }, - { "id": "t_door_b", "fg": 3141 }, - { "id": "t_door_boarded", "fg": 3145 }, - { "id": "t_door_boarded_damaged", "fg": 3146 }, - { "id": "t_door_glass_c", "fg": 3147 }, - { "id": "t_door_glass_o", "fg": 3148 }, - { "id": "t_door_lab_c", "fg": 3149 }, - { "id": "t_door_lab_o", "fg": 3150 }, - { "id": "t_door_metal_c_peep", "fg": 3151 }, - { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 3152 }, - { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 3159 }, { "weight": 100, "sprite": 3160 } ] }, + "fg": 3199, + "additional_tiles": [ + { "id": "center", "fg": 3184 }, + { "id": "corner", "fg": [ 3186, 3188, 3187, 3185 ] }, + { "id": "t_connection", "fg": [ 3196, 3198, 3197, 3195 ] }, + { "id": "edge", "fg": [ 3190, 3189 ] }, + { "id": "end_piece", "fg": [ 3192, 3194, 3193, 3191 ] }, + { "id": "unconnected", "fg": 3199 } + ] + }, + { "id": "t_door_c", "fg": 3201 }, + { "id": "t_door_locked", "fg": 3202 }, + { "id": "t_door_o", "fg": 3203 }, + { "id": "t_door_b", "fg": 3200 }, + { "id": "t_door_boarded", "fg": 3204 }, + { "id": "t_door_boarded_damaged", "fg": 3205 }, + { "id": "t_door_glass_c", "fg": 3206 }, + { "id": "t_door_glass_o", "fg": 3207 }, + { "id": "t_door_lab_c", "fg": 3208 }, + { "id": "t_door_lab_o", "fg": 3209 }, + { "id": "t_door_metal_c_peep", "fg": 3210 }, + { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 3211 }, + { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 3218 }, { "weight": 100, "sprite": 3219 } ] }, { "id": "t_fence_season_spring", "multitile": true, - "fg": 3176, - "bg": 3331, + "fg": 3235, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 3161 }, - { "id": "corner", "bg": 3331, "fg": [ 3163, 3165, 3164, 3162 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3173, 3175, 3174, 3172 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3167, 3166 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3169, 3171, 3170, 3168 ] }, - { "bg": 3331, "id": "unconnected", "fg": 3176 } + { "id": "center", "bg": 3390, "fg": 3220 }, + { "id": "corner", "bg": 3390, "fg": [ 3222, 3224, 3223, 3221 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3232, 3234, 3233, 3231 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3226, 3225 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3228, 3230, 3229, 3227 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3235 } ] }, { "id": "t_fence_season_summer", "multitile": true, - "fg": 3176, - "bg": 3341, + "fg": 3235, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": 3161 }, - { "id": "corner", "bg": 3341, "fg": [ 3163, 3165, 3164, 3162 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 3173, 3175, 3174, 3172 ] }, - { "id": "edge", "bg": 3341, "fg": [ 3167, 3166 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 3169, 3171, 3170, 3168 ] }, - { "bg": 3341, "id": "unconnected", "fg": 3176 } + { "id": "center", "bg": 3400, "fg": 3220 }, + { "id": "corner", "bg": 3400, "fg": [ 3222, 3224, 3223, 3221 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3232, 3234, 3233, 3231 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3226, 3225 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3228, 3230, 3229, 3227 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3235 } ] }, { "id": "t_fence_season_autumn", "multitile": true, - "fg": 3176, - "bg": 3336, + "fg": 3235, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": 3161 }, - { "id": "corner", "bg": 3336, "fg": [ 3163, 3165, 3164, 3162 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 3173, 3175, 3174, 3172 ] }, - { "id": "edge", "bg": 3336, "fg": [ 3167, 3166 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 3169, 3171, 3170, 3168 ] }, - { "bg": 3336, "id": "unconnected", "fg": 3176 } + { "id": "center", "bg": 3395, "fg": 3220 }, + { "id": "corner", "bg": 3395, "fg": [ 3222, 3224, 3223, 3221 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3232, 3234, 3233, 3231 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3226, 3225 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3228, 3230, 3229, 3227 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3235 } ] }, { "id": "t_fence_season_winter", "multitile": true, - "fg": 3176, - "bg": 2811, - "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": 3161 }, - { "id": "corner", "bg": 2811, "fg": [ 3163, 3165, 3164, 3162 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 3173, 3175, 3174, 3172 ] }, - { "id": "edge", "bg": 2811, "fg": [ 3167, 3166 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 3169, 3171, 3170, 3168 ] }, - { "bg": 2811, "id": "unconnected", "fg": 3176 } - ] - }, - { "id": "t_fencegate_c_season_spring", "fg": 3177, "bg": 3331 }, - { "id": "t_fencegate_c_season_summer", "fg": 3177, "bg": 3341 }, - { "id": "t_fencegate_c_season_autumn", "fg": 3177, "bg": 3336 }, - { "id": "t_fencegate_c_season_winter", "fg": 3177, "bg": 2811 }, - { "id": "t_fencegate_o_season_spring", "fg": 3178, "bg": 3331 }, - { "id": "t_fencegate_o_season_summer", "fg": 3178, "bg": 3341 }, - { "id": "t_fencegate_o_season_autumn", "fg": 3178, "bg": 3336 }, - { "id": "t_fencegate_o_season_winter", "fg": 3178, "bg": 2811 }, - { "id": "t_fence_post_season_spring", "fg": 3176, "bg": 3331 }, - { "id": "t_fence_post_season_summer", "fg": 3176, "bg": 3341 }, - { "id": "t_fence_post_season_autumn", "fg": 3176, "bg": 3336 }, - { "id": "t_fence_post_season_winter", "fg": 3176, "bg": 2811 }, + "fg": 3235, + "bg": 2870, + "additional_tiles": [ + { "id": "center", "bg": 2870, "fg": 3220 }, + { "id": "corner", "bg": 2870, "fg": [ 3222, 3224, 3223, 3221 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3232, 3234, 3233, 3231 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3226, 3225 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3228, 3230, 3229, 3227 ] }, + { "bg": 2870, "id": "unconnected", "fg": 3235 } + ] + }, + { "id": "t_fencegate_c_season_spring", "fg": 3236, "bg": 3390 }, + { "id": "t_fencegate_c_season_summer", "fg": 3236, "bg": 3400 }, + { "id": "t_fencegate_c_season_autumn", "fg": 3236, "bg": 3395 }, + { "id": "t_fencegate_c_season_winter", "fg": 3236, "bg": 2870 }, + { "id": "t_fencegate_o_season_spring", "fg": 3237, "bg": 3390 }, + { "id": "t_fencegate_o_season_summer", "fg": 3237, "bg": 3400 }, + { "id": "t_fencegate_o_season_autumn", "fg": 3237, "bg": 3395 }, + { "id": "t_fencegate_o_season_winter", "fg": 3237, "bg": 2870 }, + { "id": "t_fence_post_season_spring", "fg": 3235, "bg": 3390 }, + { "id": "t_fence_post_season_summer", "fg": 3235, "bg": 3400 }, + { "id": "t_fence_post_season_autumn", "fg": 3235, "bg": 3395 }, + { "id": "t_fence_post_season_winter", "fg": 3235, "bg": 2870 }, { "id": "t_fence_barbed_season_spring", "multitile": true, - "fg": 3194, - "bg": 3331, + "fg": 3253, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 3179 }, - { "id": "corner", "bg": 3331, "fg": [ 3181, 3183, 3182, 3180 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3191, 3193, 3192, 3190 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3185, 3184 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3187, 3189, 3188, 3186 ] }, - { "bg": 3331, "id": "unconnected", "fg": 3194 } + { "id": "center", "bg": 3390, "fg": 3238 }, + { "id": "corner", "bg": 3390, "fg": [ 3240, 3242, 3241, 3239 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3250, 3252, 3251, 3249 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3244, 3243 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3246, 3248, 3247, 3245 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3253 } ] }, { "id": "t_fence_barbed_season_summer", "multitile": true, - "fg": 3194, - "bg": 3341, + "fg": 3253, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": 3179 }, - { "id": "corner", "bg": 3341, "fg": [ 3181, 3183, 3182, 3180 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 3191, 3193, 3192, 3190 ] }, - { "id": "edge", "bg": 3341, "fg": [ 3185, 3184 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 3187, 3189, 3188, 3186 ] }, - { "bg": 3341, "id": "unconnected", "fg": 3194 } + { "id": "center", "bg": 3400, "fg": 3238 }, + { "id": "corner", "bg": 3400, "fg": [ 3240, 3242, 3241, 3239 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3250, 3252, 3251, 3249 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3244, 3243 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3246, 3248, 3247, 3245 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3253 } ] }, { "id": "t_fence_barbed_season_autumn", "multitile": true, - "fg": 3194, - "bg": 3336, + "fg": 3253, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": 3179 }, - { "id": "corner", "bg": 3336, "fg": [ 3181, 3183, 3182, 3180 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 3191, 3193, 3192, 3190 ] }, - { "id": "edge", "bg": 3336, "fg": [ 3185, 3184 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 3187, 3189, 3188, 3186 ] }, - { "bg": 3336, "id": "unconnected", "fg": 3194 } + { "id": "center", "bg": 3395, "fg": 3238 }, + { "id": "corner", "bg": 3395, "fg": [ 3240, 3242, 3241, 3239 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3250, 3252, 3251, 3249 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3244, 3243 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3246, 3248, 3247, 3245 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3253 } ] }, { "id": "t_fence_barbed_season_winter", "multitile": true, - "fg": 3194, - "bg": 2811, + "fg": 3253, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": 3179 }, - { "id": "corner", "bg": 2811, "fg": [ 3181, 3183, 3182, 3180 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 3191, 3193, 3192, 3190 ] }, - { "id": "edge", "bg": 2811, "fg": [ 3185, 3184 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 3187, 3189, 3188, 3186 ] }, - { "bg": 2811, "id": "unconnected", "fg": 3194 } + { "id": "center", "bg": 2870, "fg": 3238 }, + { "id": "corner", "bg": 2870, "fg": [ 3240, 3242, 3241, 3239 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3250, 3252, 3251, 3249 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3244, 3243 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3246, 3248, 3247, 3245 ] }, + { "bg": 2870, "id": "unconnected", "fg": 3253 } ] }, { "id": "t_fence_rope_season_spring", - "fg": 3211, + "fg": 3270, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3196, "bg": 3064 }, - { "id": "corner", "fg": [ 3198, 3200, 3199, 3197 ], "bg": [ 3069, 3071, 3070, 3068 ] }, - { "id": "t_connection", "fg": [ 3208, 3210, 3209, 3207 ], "bg": [ 3079, 3081, 3080, 3078 ] }, - { "id": "edge", "fg": [ 3202, 3201 ], "bg": [ 3073, 3072 ] }, - { "id": "end_piece", "fg": [ 3204, 3206, 3205, 3203 ], "bg": [ 3075, 3077, 3076, 3074 ] }, - { "id": "unconnected", "fg": [ 3211, 3211 ], "bg": [ 3082, 3082 ] } + { "id": "center", "fg": 3255, "bg": 3123 }, + { "id": "corner", "fg": [ 3257, 3259, 3258, 3256 ], "bg": [ 3128, 3130, 3129, 3127 ] }, + { "id": "t_connection", "fg": [ 3267, 3269, 3268, 3266 ], "bg": [ 3138, 3140, 3139, 3137 ] }, + { "id": "edge", "fg": [ 3261, 3260 ], "bg": [ 3132, 3131 ] }, + { "id": "end_piece", "fg": [ 3263, 3265, 3264, 3262 ], "bg": [ 3134, 3136, 3135, 3133 ] }, + { "id": "unconnected", "fg": [ 3270, 3270 ], "bg": [ 3141, 3141 ] } ] }, { "id": "t_fence_rope_season_summer", - "fg": 3211, + "fg": 3270, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3196, "bg": 3102 }, - { "id": "corner", "fg": [ 3198, 3200, 3199, 3197 ], "bg": [ 3107, 3109, 3108, 3106 ] }, - { "id": "t_connection", "fg": [ 3208, 3210, 3209, 3207 ], "bg": [ 3117, 3119, 3118, 3116 ] }, - { "id": "edge", "fg": [ 3202, 3201 ], "bg": [ 3111, 3110 ] }, - { "id": "end_piece", "fg": [ 3204, 3206, 3205, 3203 ], "bg": [ 3113, 3115, 3114, 3112 ] }, - { "id": "unconnected", "fg": [ 3211, 3211 ], "bg": [ 3120, 3120 ] } + { "id": "center", "fg": 3255, "bg": 3161 }, + { "id": "corner", "fg": [ 3257, 3259, 3258, 3256 ], "bg": [ 3166, 3168, 3167, 3165 ] }, + { "id": "t_connection", "fg": [ 3267, 3269, 3268, 3266 ], "bg": [ 3176, 3178, 3177, 3175 ] }, + { "id": "edge", "fg": [ 3261, 3260 ], "bg": [ 3170, 3169 ] }, + { "id": "end_piece", "fg": [ 3263, 3265, 3264, 3262 ], "bg": [ 3172, 3174, 3173, 3171 ] }, + { "id": "unconnected", "fg": [ 3270, 3270 ], "bg": [ 3179, 3179 ] } ] }, { "id": "t_fence_rope_season_autumn", - "fg": 3211, + "fg": 3270, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3196, "bg": 3083 }, - { "id": "corner", "fg": [ 3198, 3200, 3199, 3197 ], "bg": [ 3088, 3090, 3089, 3087 ] }, - { "id": "t_connection", "fg": [ 3208, 3210, 3209, 3207 ], "bg": [ 3098, 3100, 3099, 3097 ] }, - { "id": "edge", "fg": [ 3202, 3201 ], "bg": [ 3092, 3091 ] }, - { "id": "end_piece", "fg": [ 3204, 3206, 3205, 3203 ], "bg": [ 3094, 3096, 3095, 3093 ] }, - { "id": "unconnected", "fg": [ 3211, 3211 ], "bg": [ 3101, 3101 ] } + { "id": "center", "fg": 3255, "bg": 3142 }, + { "id": "corner", "fg": [ 3257, 3259, 3258, 3256 ], "bg": [ 3147, 3149, 3148, 3146 ] }, + { "id": "t_connection", "fg": [ 3267, 3269, 3268, 3266 ], "bg": [ 3157, 3159, 3158, 3156 ] }, + { "id": "edge", "fg": [ 3261, 3260 ], "bg": [ 3151, 3150 ] }, + { "id": "end_piece", "fg": [ 3263, 3265, 3264, 3262 ], "bg": [ 3153, 3155, 3154, 3152 ] }, + { "id": "unconnected", "fg": [ 3270, 3270 ], "bg": [ 3160, 3160 ] } ] }, { "id": "t_fence_rope_season_winter", - "fg": 3211, + "fg": 3270, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3196, + "fg": 3255, "bg": [ - { "weight": 100, "sprite": 3121 }, - { "weight": 100, "sprite": 3122 }, - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 } + { "weight": 100, "sprite": 3180 }, + { "weight": 100, "sprite": 3181 }, + { "weight": 100, "sprite": 3182 }, + { "weight": 100, "sprite": 3183 } ] }, { "id": "corner", - "fg": [ 3198, 3200, 3199, 3197 ], + "fg": [ 3257, 3259, 3258, 3256 ], "bg": [ - { "weight": 100, "sprite": 3121 }, - { "weight": 100, "sprite": 3122 }, - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 } + { "weight": 100, "sprite": 3180 }, + { "weight": 100, "sprite": 3181 }, + { "weight": 100, "sprite": 3182 }, + { "weight": 100, "sprite": 3183 } ] }, { "id": "t_connection", - "fg": [ 3208, 3210, 3209, 3207 ], + "fg": [ 3267, 3269, 3268, 3266 ], "bg": [ - { "weight": 100, "sprite": 3121 }, - { "weight": 100, "sprite": 3122 }, - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 } + { "weight": 100, "sprite": 3180 }, + { "weight": 100, "sprite": 3181 }, + { "weight": 100, "sprite": 3182 }, + { "weight": 100, "sprite": 3183 } ] }, { "id": "edge", - "fg": [ 3202, 3201 ], + "fg": [ 3261, 3260 ], "bg": [ - { "weight": 100, "sprite": 3121 }, - { "weight": 100, "sprite": 3122 }, - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 } + { "weight": 100, "sprite": 3180 }, + { "weight": 100, "sprite": 3181 }, + { "weight": 100, "sprite": 3182 }, + { "weight": 100, "sprite": 3183 } ] }, { "id": "end_piece", - "fg": [ 3204, 3206, 3205, 3203 ], + "fg": [ 3263, 3265, 3264, 3262 ], "bg": [ - { "weight": 100, "sprite": 3121 }, - { "weight": 100, "sprite": 3122 }, - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 } + { "weight": 100, "sprite": 3180 }, + { "weight": 100, "sprite": 3181 }, + { "weight": 100, "sprite": 3182 }, + { "weight": 100, "sprite": 3183 } ] }, { "id": "unconnected", - "fg": [ 3211, 3211 ], + "fg": [ 3270, 3270 ], "bg": [ - { "weight": 100, "sprite": 3121 }, - { "weight": 100, "sprite": 3122 }, - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 } + { "weight": 100, "sprite": 3180 }, + { "weight": 100, "sprite": 3181 }, + { "weight": 100, "sprite": 3182 }, + { "weight": 100, "sprite": 3183 } ] } ] @@ -3820,3101 +3871,3250 @@ { "id": "t_fence_wire_season_spring", "multitile": true, - "fg": 3227, - "bg": 3331, + "fg": 3286, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 3212 }, - { "id": "corner", "bg": 3331, "fg": [ 3214, 3216, 3215, 3213 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3224, 3226, 3225, 3223 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3218, 3217 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3220, 3222, 3221, 3219 ] }, - { "bg": 3331, "id": "unconnected", "fg": 3227 } + { "id": "center", "bg": 3390, "fg": 3271 }, + { "id": "corner", "bg": 3390, "fg": [ 3273, 3275, 3274, 3272 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3283, 3285, 3284, 3282 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3277, 3276 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3279, 3281, 3280, 3278 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3286 } ] }, { "id": "t_fence_wire_season_summer", "multitile": true, - "fg": 3227, - "bg": 3341, + "fg": 3286, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": 3212 }, - { "id": "corner", "bg": 3341, "fg": [ 3214, 3216, 3215, 3213 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 3224, 3226, 3225, 3223 ] }, - { "id": "edge", "bg": 3341, "fg": [ 3218, 3217 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 3220, 3222, 3221, 3219 ] }, - { "bg": 3341, "id": "unconnected", "fg": 3227 } + { "id": "center", "bg": 3400, "fg": 3271 }, + { "id": "corner", "bg": 3400, "fg": [ 3273, 3275, 3274, 3272 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3283, 3285, 3284, 3282 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3277, 3276 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3279, 3281, 3280, 3278 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3286 } ] }, { "id": "t_fence_wire_season_autumn", "multitile": true, - "fg": 3227, - "bg": 3336, + "fg": 3286, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": 3212 }, - { "id": "corner", "bg": 3336, "fg": [ 3214, 3216, 3215, 3213 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 3224, 3226, 3225, 3223 ] }, - { "id": "edge", "bg": 3336, "fg": [ 3218, 3217 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 3220, 3222, 3221, 3219 ] }, - { "bg": 3336, "id": "unconnected", "fg": 3227 } + { "id": "center", "bg": 3395, "fg": 3271 }, + { "id": "corner", "bg": 3395, "fg": [ 3273, 3275, 3274, 3272 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3283, 3285, 3284, 3282 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3277, 3276 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3279, 3281, 3280, 3278 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3286 } ] }, { "id": "t_fence_wire_season_winter", "multitile": true, - "fg": 3227, - "bg": 2811, + "fg": 3286, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": 3212 }, - { "id": "corner", "bg": 2811, "fg": [ 3214, 3216, 3215, 3213 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 3224, 3226, 3225, 3223 ] }, - { "id": "edge", "bg": 2811, "fg": [ 3218, 3217 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 3220, 3222, 3221, 3219 ] }, - { "bg": 2811, "id": "unconnected", "fg": 3227 } + { "id": "center", "bg": 2870, "fg": 3271 }, + { "id": "corner", "bg": 2870, "fg": [ 3273, 3275, 3274, 3272 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3283, 3285, 3284, 3282 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3277, 3276 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3279, 3281, 3280, 3278 ] }, + { "bg": 2870, "id": "unconnected", "fg": 3286 } ] }, { "id": "t_floor", "multitile": true, - "fg": 3245, + "fg": 3304, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 3228 }, { "weight": 1, "sprite": 3229 }, { "weight": 1, "sprite": 3230 } ] + "fg": [ { "weight": 1, "sprite": 3287 }, { "weight": 1, "sprite": 3288 }, { "weight": 1, "sprite": 3289 } ] }, - { "id": "corner", "fg": [ 3232, 3234, 3233, 3231 ] }, - { "id": "t_connection", "fg": [ 3242, 3244, 3243, 3241 ] }, - { "id": "edge", "fg": [ 3236, 3235 ] }, - { "id": "end_piece", "fg": [ 3238, 3240, 3239, 3237 ] }, - { "id": "unconnected", "fg": 3245 } + { "id": "corner", "fg": [ 3291, 3293, 3292, 3290 ] }, + { "id": "t_connection", "fg": [ 3301, 3303, 3302, 3300 ] }, + { "id": "edge", "fg": [ 3295, 3294 ] }, + { "id": "end_piece", "fg": [ 3297, 3299, 3298, 3296 ] }, + { "id": "unconnected", "fg": 3304 } ] }, { "id": "t_floor_resin", "multitile": true, - "fg": 3261, + "fg": 3320, "additional_tiles": [ - { "id": "center", "fg": 3246 }, - { "id": "corner", "fg": [ 3248, 3250, 3249, 3247 ] }, - { "id": "t_connection", "fg": [ 3258, 3260, 3259, 3257 ] }, - { "id": "edge", "fg": [ 3252, 3251 ] }, - { "id": "end_piece", "fg": [ 3254, 3256, 3255, 3253 ] }, - { "id": "unconnected", "fg": 3261 } + { "id": "center", "fg": 3305 }, + { "id": "corner", "fg": [ 3307, 3309, 3308, 3306 ] }, + { "id": "t_connection", "fg": [ 3317, 3319, 3318, 3316 ] }, + { "id": "edge", "fg": [ 3311, 3310 ] }, + { "id": "end_piece", "fg": [ 3313, 3315, 3314, 3312 ] }, + { "id": "unconnected", "fg": 3320 } ] }, { "id": "t_floor_wax", "multitile": true, - "fg": 3277, + "fg": 3336, "additional_tiles": [ - { "id": "center", "fg": 3262 }, - { "id": "corner", "fg": [ 3264, 3266, 3265, 3263 ] }, - { "id": "t_connection", "fg": [ 3274, 3276, 3275, 3273 ] }, - { "id": "edge", "fg": [ 3268, 3267 ] }, - { "id": "end_piece", "fg": [ 3270, 3272, 3271, 3269 ] }, - { "id": "unconnected", "fg": 3277 } + { "id": "center", "fg": 3321 }, + { "id": "corner", "fg": [ 3323, 3325, 3324, 3322 ] }, + { "id": "t_connection", "fg": [ 3333, 3335, 3334, 3332 ] }, + { "id": "edge", "fg": [ 3327, 3326 ] }, + { "id": "end_piece", "fg": [ 3329, 3331, 3330, 3328 ] }, + { "id": "unconnected", "fg": 3336 } ] }, { "id": "t_floor_waxed", "multitile": true, - "fg": 3293, + "fg": 3352, "additional_tiles": [ - { "id": "center", "fg": 3278 }, - { "id": "corner", "fg": [ 3280, 3282, 3281, 3279 ] }, - { "id": "t_connection", "fg": [ 3290, 3292, 3291, 3289 ] }, - { "id": "edge", "fg": [ 3284, 3283 ] }, - { "id": "end_piece", "fg": [ 3286, 3288, 3287, 3285 ] }, - { "id": "unconnected", "fg": 3293 } + { "id": "center", "fg": 3337 }, + { "id": "corner", "fg": [ 3339, 3341, 3340, 3338 ] }, + { "id": "t_connection", "fg": [ 3349, 3351, 3350, 3348 ] }, + { "id": "edge", "fg": [ 3343, 3342 ] }, + { "id": "end_piece", "fg": [ 3345, 3347, 3346, 3344 ] }, + { "id": "unconnected", "fg": 3352 } ] }, { "id": "t_floor_waxed_y", "multitile": true, - "fg": 3309, + "fg": 3368, "additional_tiles": [ - { "id": "center", "fg": 3294 }, - { "id": "corner", "fg": [ 3296, 3298, 3297, 3295 ] }, - { "id": "t_connection", "fg": [ 3306, 3308, 3307, 3305 ] }, - { "id": "edge", "fg": [ 3300, 3299 ] }, - { "id": "end_piece", "fg": [ 3302, 3304, 3303, 3301 ] }, - { "id": "unconnected", "fg": 3309 } + { "id": "center", "fg": 3353 }, + { "id": "corner", "fg": [ 3355, 3357, 3356, 3354 ] }, + { "id": "t_connection", "fg": [ 3365, 3367, 3366, 3364 ] }, + { "id": "edge", "fg": [ 3359, 3358 ] }, + { "id": "end_piece", "fg": [ 3361, 3363, 3362, 3360 ] }, + { "id": "unconnected", "fg": 3368 } ] }, { "id": [ "t_fungus", "t_fungus_floor_out" ], "multitile": true, - "fg": 3325, - "bg": 3331, + "fg": 3384, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 3310 }, - { "id": "corner", "bg": 3331, "fg": [ 3312, 3314, 3313, 3311 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3322, 3324, 3323, 3321 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3316, 3315 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3318, 3320, 3319, 3317 ] }, - { "bg": 3331, "id": "unconnected", "fg": 3325 } + { "id": "center", "bg": 3390, "fg": 3369 }, + { "id": "corner", "bg": 3390, "fg": [ 3371, 3373, 3372, 3370 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3381, 3383, 3382, 3380 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3375, 3374 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3377, 3379, 3378, 3376 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3384 } ] }, { "id": "t_fungus_season_summer", "multitile": true, - "fg": 3325, - "bg": 3341, + "fg": 3384, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": 3310 }, - { "id": "corner", "bg": 3341, "fg": [ 3312, 3314, 3313, 3311 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 3322, 3324, 3323, 3321 ] }, - { "id": "edge", "bg": 3341, "fg": [ 3316, 3315 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 3318, 3320, 3319, 3317 ] }, - { "bg": 3341, "id": "unconnected", "fg": 3325 } + { "id": "center", "bg": 3400, "fg": 3369 }, + { "id": "corner", "bg": 3400, "fg": [ 3371, 3373, 3372, 3370 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3381, 3383, 3382, 3380 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3375, 3374 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3377, 3379, 3378, 3376 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3384 } ] }, { "id": "t_fungus_season_autumn", "multitile": true, - "fg": 3325, - "bg": 3336, + "fg": 3384, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": 3310 }, - { "id": "corner", "bg": 3336, "fg": [ 3312, 3314, 3313, 3311 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 3322, 3324, 3323, 3321 ] }, - { "id": "edge", "bg": 3336, "fg": [ 3316, 3315 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 3318, 3320, 3319, 3317 ] }, - { "bg": 3336, "id": "unconnected", "fg": 3325 } + { "id": "center", "bg": 3395, "fg": 3369 }, + { "id": "corner", "bg": 3395, "fg": [ 3371, 3373, 3372, 3370 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3381, 3383, 3382, 3380 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3375, 3374 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3377, 3379, 3378, 3376 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3384 } ] }, { "id": "t_fungus_season_winter", "multitile": true, - "fg": 3325, - "bg": 2811, + "fg": 3384, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": 3310 }, - { "id": "corner", "bg": 2811, "fg": [ 3312, 3314, 3313, 3311 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 3322, 3324, 3323, 3321 ] }, - { "id": "edge", "bg": 2811, "fg": [ 3316, 3315 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 3318, 3320, 3319, 3317 ] }, - { "bg": 2811, "id": "unconnected", "fg": 3325 } + { "id": "center", "bg": 2870, "fg": 3369 }, + { "id": "corner", "bg": 2870, "fg": [ 3371, 3373, 3372, 3370 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3381, 3383, 3382, 3380 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3375, 3374 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3377, 3379, 3378, 3376 ] }, + { "bg": 2870, "id": "unconnected", "fg": 3384 } ] }, { "id": [ "t_fungus_floor_in", "t_fungus_floor_sup" ], "multitile": true, - "fg": 3325, - "bg": 4025, - "additional_tiles": [ - { "id": "center", "bg": 4025, "fg": 3310 }, - { "id": "corner", "bg": 4025, "fg": [ 3312, 3314, 3313, 3311 ] }, - { "id": "t_connection", "bg": 4025, "fg": [ 3322, 3324, 3323, 3321 ] }, - { "id": "edge", "bg": 4025, "fg": [ 3316, 3315 ] }, - { "id": "end_piece", "bg": 4025, "fg": [ 3318, 3320, 3319, 3317 ] }, - { "bg": 4025, "id": "unconnected", "fg": [ 3325, 3325 ] } - ] - }, - { "id": "t_shrub_fungal", "fg": 3930, "bg": 3310 }, - { "id": "t_gates_mech_control", "fg": 3326, "bg": 4025 }, - { "id": "t_gates_mech_control_lab", "fg": 3327, "bg": 4025 }, - { "id": "t_gates_control_concrete", "fg": 3328, "bg": 3030 }, - { "id": "t_gates_control_concrete_lab", "fg": 3327, "bg": 7755 }, - { "id": "t_gates_control_brick", "fg": 3328, "bg": 2880 }, - { "id": "t_gates_control_brick_lab", "fg": 3327, "bg": 2880 }, - { "id": "t_gates_control_metal", "fg": 3328, "bg": 4132 }, - { "id": "t_gates_control_metal_lab", "fg": 3327, "bg": 4132 }, - { "id": "t_elevator_control", "fg": 3329, "bg": 4025 }, - { "id": "t_elevator_control_off", "fg": 3330, "bg": 4025 }, + "fg": 3384, + "bg": 4100, + "additional_tiles": [ + { "id": "center", "bg": 4100, "fg": 3369 }, + { "id": "corner", "bg": 4100, "fg": [ 3371, 3373, 3372, 3370 ] }, + { "id": "t_connection", "bg": 4100, "fg": [ 3381, 3383, 3382, 3380 ] }, + { "id": "edge", "bg": 4100, "fg": [ 3375, 3374 ] }, + { "id": "end_piece", "bg": 4100, "fg": [ 3377, 3379, 3378, 3376 ] }, + { "bg": 4100, "id": "unconnected", "fg": [ 3384, 3384 ] } + ] + }, + { "id": "t_shrub_fungal", "fg": 4005, "bg": 3369 }, + { "id": "t_gates_mech_control", "fg": 3385, "bg": 4100 }, + { "id": "t_gates_mech_control_lab", "fg": 3386, "bg": 4100 }, + { "id": "t_gates_control_concrete", "fg": 3387, "bg": 3089 }, + { "id": "t_gates_control_concrete_lab", "fg": 3386, "bg": 7846 }, + { "id": "t_gates_control_brick", "fg": 3387, "bg": 2939 }, + { "id": "t_gates_control_brick_lab", "fg": 3386, "bg": 2939 }, + { "id": "t_gates_control_metal", "fg": 3387, "bg": 4207 }, + { "id": "t_gates_control_metal_lab", "fg": 3386, "bg": 4207 }, + { "id": "t_elevator_control", "fg": 3388, "bg": 4100 }, + { "id": "t_elevator_control_off", "fg": 3389, "bg": 4100 }, { "id": "t_grass", "fg": [ - { "weight": 1, "sprite": 3332 }, - { "weight": 1, "sprite": 3333 }, - { "weight": 1, "sprite": 3334 }, - { "weight": 1, "sprite": 3335 } + { "weight": 1, "sprite": 3391 }, + { "weight": 1, "sprite": 3392 }, + { "weight": 1, "sprite": 3393 }, + { "weight": 1, "sprite": 3394 } ] }, { "id": "t_grass_season_summer", "fg": [ - { "weight": 1, "sprite": 3342 }, - { "weight": 1, "sprite": 3343 }, - { "weight": 1, "sprite": 3344 }, - { "weight": 1, "sprite": 3345 } + { "weight": 1, "sprite": 3401 }, + { "weight": 1, "sprite": 3402 }, + { "weight": 1, "sprite": 3403 }, + { "weight": 1, "sprite": 3404 } ] }, { "id": "t_grass_season_autumn", "fg": [ - { "weight": 1, "sprite": 3337 }, - { "weight": 1, "sprite": 3338 }, - { "weight": 1, "sprite": 3339 }, - { "weight": 1, "sprite": 3340 } + { "weight": 1, "sprite": 3396 }, + { "weight": 1, "sprite": 3397 }, + { "weight": 1, "sprite": 3398 }, + { "weight": 1, "sprite": 3399 } ] }, { "id": "t_grass_season_winter", - "fg": 2829, - "bg": 2811, + "fg": 2888, + "bg": 2870, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 2811 }, - { "weight": 1, "sprite": 2812 }, - { "weight": 1, "sprite": 2813 }, - { "weight": 1, "sprite": 2814 } + { "weight": 1, "sprite": 2870 }, + { "weight": 1, "sprite": 2871 }, + { "weight": 1, "sprite": 2872 }, + { "weight": 1, "sprite": 2873 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 2816, 2818, 2817, 2815 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 2826, 2828, 2827, 2825 ] }, - { "id": "edge", "bg": 2811, "fg": [ 2820, 2819 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 2822, 2824, 2823, 2821 ] }, - { "bg": 2811, "id": "unconnected", "fg": 2829 } + { "id": "corner", "bg": 2870, "fg": [ 2875, 2877, 2876, 2874 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 2885, 2887, 2886, 2884 ] }, + { "id": "edge", "bg": 2870, "fg": [ 2879, 2878 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 2881, 2883, 2882, 2880 ] }, + { "bg": 2870, "id": "unconnected", "fg": 2888 } ] }, { "id": "t_grass_dead", "multitile": true, - "fg": 3361, - "bg": 3331, + "fg": 3420, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 3346 }, - { "id": "corner", "bg": 3331, "fg": [ 3348, 3350, 3349, 3347 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3358, 3360, 3359, 3357 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3352, 3351 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3354, 3356, 3355, 3353 ] }, - { "bg": 3331, "id": "unconnected", "fg": 3361 } + { "id": "center", "bg": 3390, "fg": 3405 }, + { "id": "corner", "bg": 3390, "fg": [ 3407, 3409, 3408, 3406 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3417, 3419, 3418, 3416 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3411, 3410 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3413, 3415, 3414, 3412 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3420 } ] }, { "id": "t_grass_dead_season_summer", "multitile": true, - "fg": 3393, - "bg": 3341, + "fg": 3452, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": 3378 }, - { "id": "corner", "bg": 3341, "fg": [ 3380, 3382, 3381, 3379 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 3390, 3392, 3391, 3389 ] }, - { "id": "edge", "bg": 3341, "fg": [ 3384, 3383 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 3386, 3388, 3387, 3385 ] }, - { "bg": 3341, "id": "unconnected", "fg": 3393 } + { "id": "center", "bg": 3400, "fg": 3437 }, + { "id": "corner", "bg": 3400, "fg": [ 3439, 3441, 3440, 3438 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3449, 3451, 3450, 3448 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3443, 3442 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3445, 3447, 3446, 3444 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3452 } ] }, { "id": "t_grass_dead_season_autumn", "multitile": true, - "fg": 3377, - "bg": 3336, + "fg": 3436, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": 3362 }, - { "id": "corner", "bg": 3336, "fg": [ 3364, 3366, 3365, 3363 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 3374, 3376, 3375, 3373 ] }, - { "id": "edge", "bg": 3336, "fg": [ 3368, 3367 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 3370, 3372, 3371, 3369 ] }, - { "bg": 3336, "id": "unconnected", "fg": 3377 } + { "id": "center", "bg": 3395, "fg": 3421 }, + { "id": "corner", "bg": 3395, "fg": [ 3423, 3425, 3424, 3422 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3433, 3435, 3434, 3432 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3427, 3426 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3429, 3431, 3430, 3428 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3436 } ] }, { "id": "t_grass_dead_season_winter", "multitile": true, - "fg": 2829, - "bg": 2811, + "fg": 2888, + "bg": 2870, "additional_tiles": [ { "id": "center", - "bg": 2811, + "bg": 2870, "fg": [ - { "weight": 1, "sprite": 2811 }, - { "weight": 1, "sprite": 2812 }, - { "weight": 1, "sprite": 2813 }, - { "weight": 1, "sprite": 2814 } + { "weight": 1, "sprite": 2870 }, + { "weight": 1, "sprite": 2871 }, + { "weight": 1, "sprite": 2872 }, + { "weight": 1, "sprite": 2873 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 2816, 2818, 2817, 2815 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 2826, 2828, 2827, 2825 ] }, - { "id": "edge", "bg": 2811, "fg": [ 2820, 2819 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 2822, 2824, 2823, 2821 ] }, - { "bg": 2811, "id": "unconnected", "fg": 2829 } + { "id": "corner", "bg": 2870, "fg": [ 2875, 2877, 2876, 2874 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 2885, 2887, 2886, 2884 ] }, + { "id": "edge", "bg": 2870, "fg": [ 2879, 2878 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 2881, 2883, 2882, 2880 ] }, + { "bg": 2870, "id": "unconnected", "fg": 2888 } ] }, { "id": "t_grate", "multitile": true, - "fg": 3409, + "fg": 3468, "additional_tiles": [ - { "id": "center", "fg": 3394 }, - { "id": "corner", "fg": [ 3396, 3398, 3397, 3395 ] }, - { "id": "t_connection", "fg": [ 3406, 3408, 3407, 3405 ] }, - { "id": "edge", "fg": [ 3400, 3399 ] }, - { "id": "end_piece", "fg": [ 3402, 3404, 3403, 3401 ] }, - { "id": "unconnected", "fg": [ 3409, 3409 ] } + { "id": "center", "fg": 3453 }, + { "id": "corner", "fg": [ 3455, 3457, 3456, 3454 ] }, + { "id": "t_connection", "fg": [ 3465, 3467, 3466, 3464 ] }, + { "id": "edge", "fg": [ 3459, 3458 ] }, + { "id": "end_piece", "fg": [ 3461, 3463, 3462, 3460 ] }, + { "id": "unconnected", "fg": [ 3468, 3468 ] } ] }, { "id": [ "t_guardrail", "t_guardrail_bg_dp", "t_guardrail_hw_air" ], "multitile": true, - "fg": 3416, - "bg": 3971, + "fg": 3475, + "bg": 4046, "additional_tiles": [ - { "id": "edge", "bg": 3971, "fg": [ 3411, 3410 ] }, - { "id": "end_piece", "bg": 3971, "fg": [ 3413, 3415, 3414, 3412 ] }, - { "bg": 3971, "id": "unconnected", "fg": 3416 } + { "id": "edge", "bg": 4046, "fg": [ 3470, 3469 ] }, + { "id": "end_piece", "bg": 4046, "fg": [ 3472, 3474, 3473, 3471 ] }, + { "bg": 4046, "id": "unconnected", "fg": 3475 } ] }, { "id": "t_lava", - "fg": 3433, - "bg": 3763, + "fg": 3492, + "bg": 3838, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3418, "bg": 3763 }, - { "id": "corner", "fg": [ 3420, 3422, 3421, 3419 ], "bg": 3763 }, - { "id": "t_connection", "fg": [ 3430, 3432, 3431, 3429 ], "bg": 3763 }, - { "id": "edge", "fg": [ 3424, 3423 ], "bg": 3763 }, - { "id": "end_piece", "fg": [ 3426, 3428, 3427, 3425 ], "bg": 3763 }, - { "id": "unconnected", "fg": [ 3433, 3433 ], "bg": 3763 } + { "id": "center", "fg": 3477, "bg": 3838 }, + { "id": "corner", "fg": [ 3479, 3481, 3480, 3478 ], "bg": 3838 }, + { "id": "t_connection", "fg": [ 3489, 3491, 3490, 3488 ], "bg": 3838 }, + { "id": "edge", "fg": [ 3483, 3482 ], "bg": 3838 }, + { "id": "end_piece", "fg": [ 3485, 3487, 3486, 3484 ], "bg": 3838 }, + { "id": "unconnected", "fg": [ 3492, 3492 ], "bg": 3838 } ] }, { "id": [ "t_linoleum_gray", "t_linoleum_gray_no_roof" ], "multitile": true, - "fg": 3449, + "fg": 3508, "additional_tiles": [ - { "id": "center", "fg": 3434 }, - { "id": "corner", "fg": [ 3436, 3438, 3437, 3435 ] }, - { "id": "t_connection", "fg": [ 3446, 3448, 3447, 3445 ] }, - { "id": "edge", "fg": [ 3440, 3439 ] }, - { "id": "end_piece", "fg": [ 3442, 3444, 3443, 3441 ] }, - { "id": "unconnected", "fg": 3449 } + { "id": "center", "fg": 3493 }, + { "id": "corner", "fg": [ 3495, 3497, 3496, 3494 ] }, + { "id": "t_connection", "fg": [ 3505, 3507, 3506, 3504 ] }, + { "id": "edge", "fg": [ 3499, 3498 ] }, + { "id": "end_piece", "fg": [ 3501, 3503, 3502, 3500 ] }, + { "id": "unconnected", "fg": 3508 } ] }, { "id": [ "t_linoleum_white", "t_linoleum_white_no_roof" ], "multitile": true, - "fg": 3465, + "fg": 3524, "additional_tiles": [ - { "id": "center", "fg": 3450 }, - { "id": "corner", "fg": [ 3452, 3454, 3453, 3451 ] }, - { "id": "t_connection", "fg": [ 3462, 3464, 3463, 3461 ] }, - { "id": "edge", "fg": [ 3456, 3455 ] }, - { "id": "end_piece", "fg": [ 3458, 3460, 3459, 3457 ] }, - { "id": "unconnected", "fg": 3465 } + { "id": "center", "fg": 3509 }, + { "id": "corner", "fg": [ 3511, 3513, 3512, 3510 ] }, + { "id": "t_connection", "fg": [ 3521, 3523, 3522, 3520 ] }, + { "id": "edge", "fg": [ 3515, 3514 ] }, + { "id": "end_piece", "fg": [ 3517, 3519, 3518, 3516 ] }, + { "id": "unconnected", "fg": 3524 } ] }, - { "id": "t_manhole", "fg": 3466, "bg": 3536 }, - { "id": "t_manhole_cover", "fg": 3467, "bg": 3536 }, + { "id": "t_manhole", "fg": 3525, "bg": 3595 }, + { "id": "t_manhole_cover", "fg": 3526, "bg": 3595 }, { "id": "t_metal_floor", "multitile": true, - "fg": 3483, + "fg": 3542, "additional_tiles": [ - { "id": "center", "fg": 3468 }, - { "id": "corner", "fg": [ 3470, 3472, 3471, 3469 ] }, - { "id": "t_connection", "fg": [ 3480, 3482, 3481, 3479 ] }, - { "id": "edge", "fg": [ 3474, 3473 ] }, - { "id": "end_piece", "fg": [ 3476, 3478, 3477, 3475 ] }, - { "id": "unconnected", "fg": 3483 } + { "id": "center", "fg": 3527 }, + { "id": "corner", "fg": [ 3529, 3531, 3530, 3528 ] }, + { "id": "t_connection", "fg": [ 3539, 3541, 3540, 3538 ] }, + { "id": "edge", "fg": [ 3533, 3532 ] }, + { "id": "end_piece", "fg": [ 3535, 3537, 3536, 3534 ] }, + { "id": "unconnected", "fg": 3542 } ] }, { "id": "t_moss", "multitile": true, - "fg": 3500, - "bg": 3332, + "fg": 3559, + "bg": 3391, "additional_tiles": [ - { "id": "center", "bg": 3332, "fg": [ { "weight": 1, "sprite": 3484 }, { "weight": 1, "sprite": 3485 } ] }, - { "id": "corner", "bg": 3332, "fg": [ 3487, 3489, 3488, 3486 ] }, - { "id": "t_connection", "bg": 3332, "fg": [ 3497, 3499, 3498, 3496 ] }, - { "id": "edge", "bg": 3332, "fg": [ 3491, 3490 ] }, - { "id": "end_piece", "bg": 3332, "fg": [ 3493, 3495, 3494, 3492 ] }, - { "bg": 3332, "id": "unconnected", "fg": 3500 } + { "id": "center", "bg": 3391, "fg": [ { "weight": 1, "sprite": 3543 }, { "weight": 1, "sprite": 3544 } ] }, + { "id": "corner", "bg": 3391, "fg": [ 3546, 3548, 3547, 3545 ] }, + { "id": "t_connection", "bg": 3391, "fg": [ 3556, 3558, 3557, 3555 ] }, + { "id": "edge", "bg": 3391, "fg": [ 3550, 3549 ] }, + { "id": "end_piece", "bg": 3391, "fg": [ 3552, 3554, 3553, 3551 ] }, + { "bg": 3391, "id": "unconnected", "fg": 3559 } ] }, { "id": "t_moss_season_summer", "multitile": true, - "fg": 3534, - "bg": 3342, + "fg": 3593, + "bg": 3401, "additional_tiles": [ - { "id": "center", "bg": 3342, "fg": [ { "weight": 1, "sprite": 3518 }, { "weight": 1, "sprite": 3519 } ] }, - { "id": "corner", "bg": 3342, "fg": [ 3521, 3523, 3522, 3520 ] }, - { "id": "t_connection", "bg": 3342, "fg": [ 3531, 3533, 3532, 3530 ] }, - { "id": "edge", "bg": 3342, "fg": [ 3525, 3524 ] }, - { "id": "end_piece", "bg": 3342, "fg": [ 3527, 3529, 3528, 3526 ] }, - { "bg": 3342, "id": "unconnected", "fg": 3534 } + { "id": "center", "bg": 3401, "fg": [ { "weight": 1, "sprite": 3577 }, { "weight": 1, "sprite": 3578 } ] }, + { "id": "corner", "bg": 3401, "fg": [ 3580, 3582, 3581, 3579 ] }, + { "id": "t_connection", "bg": 3401, "fg": [ 3590, 3592, 3591, 3589 ] }, + { "id": "edge", "bg": 3401, "fg": [ 3584, 3583 ] }, + { "id": "end_piece", "bg": 3401, "fg": [ 3586, 3588, 3587, 3585 ] }, + { "bg": 3401, "id": "unconnected", "fg": 3593 } ] }, { "id": "t_moss_season_autumn", "multitile": true, - "fg": 3517, - "bg": 3337, + "fg": 3576, + "bg": 3396, "additional_tiles": [ - { "id": "center", "bg": 3337, "fg": [ { "weight": 1, "sprite": 3501 }, { "weight": 1, "sprite": 3502 } ] }, - { "id": "corner", "bg": 3337, "fg": [ 3504, 3506, 3505, 3503 ] }, - { "id": "t_connection", "bg": 3337, "fg": [ 3514, 3516, 3515, 3513 ] }, - { "id": "edge", "bg": 3337, "fg": [ 3508, 3507 ] }, - { "id": "end_piece", "bg": 3337, "fg": [ 3510, 3512, 3511, 3509 ] }, - { "bg": 3337, "id": "unconnected", "fg": 3517 } + { "id": "center", "bg": 3396, "fg": [ { "weight": 1, "sprite": 3560 }, { "weight": 1, "sprite": 3561 } ] }, + { "id": "corner", "bg": 3396, "fg": [ 3563, 3565, 3564, 3562 ] }, + { "id": "t_connection", "bg": 3396, "fg": [ 3573, 3575, 3574, 3572 ] }, + { "id": "edge", "bg": 3396, "fg": [ 3567, 3566 ] }, + { "id": "end_piece", "bg": 3396, "fg": [ 3569, 3571, 3570, 3568 ] }, + { "bg": 3396, "id": "unconnected", "fg": 3576 } ] }, { "id": "t_moss_season_winter", "multitile": true, - "fg": 2829, - "bg": 2811, + "fg": 2888, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": [ { "weight": 1, "sprite": 2811 }, { "weight": 1, "sprite": 2812 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 2816, 2818, 2817, 2815 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 2826, 2828, 2827, 2825 ] }, - { "id": "edge", "bg": 2811, "fg": [ 2820, 2819 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 2822, 2824, 2823, 2821 ] }, - { "bg": 2811, "id": "unconnected", "fg": 2829 } + { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 2870 }, { "weight": 1, "sprite": 2871 } ] }, + { "id": "corner", "bg": 2870, "fg": [ 2875, 2877, 2876, 2874 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 2885, 2887, 2886, 2884 ] }, + { "id": "edge", "bg": 2870, "fg": [ 2879, 2878 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 2881, 2883, 2882, 2880 ] }, + { "bg": 2870, "id": "unconnected", "fg": 2888 } ] }, { "id": "t_pavement", "multitile": true, - "fg": 3536, + "fg": 3595, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 3536 }, - { "weight": 1, "sprite": 3537 }, - { "weight": 1, "sprite": 3538 }, - { "weight": 1, "sprite": 3539 } + { "weight": 1, "sprite": 3595 }, + { "weight": 1, "sprite": 3596 }, + { "weight": 1, "sprite": 3597 }, + { "weight": 1, "sprite": 3598 } ] }, - { "id": "corner", "bg": 3331, "fg": [ 3548, 3551, 3550, 3547 ] }, - { "id": "t_connection", "fg": [ 3546, 3554, 3549, 3540 ] }, - { "id": "edge", "fg": [ 3553, 3545 ] }, - { "id": "end_piece", "fg": [ 3542, 3544, 3543, 3541 ] }, - { "id": "unconnected", "fg": 3552 } + { "id": "corner", "bg": 3390, "fg": [ 3607, 3610, 3609, 3606 ] }, + { "id": "t_connection", "fg": [ 3605, 3613, 3608, 3599 ] }, + { "id": "edge", "fg": [ 3612, 3604 ] }, + { "id": "end_piece", "fg": [ 3601, 3603, 3602, 3600 ] }, + { "id": "unconnected", "fg": 3611 } ] }, { "id": "t_pavement_season_summer", "multitile": true, - "fg": 3536, + "fg": 3595, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 3536 }, - { "weight": 1, "sprite": 3537 }, - { "weight": 1, "sprite": 3538 }, - { "weight": 1, "sprite": 3539 } + { "weight": 1, "sprite": 3595 }, + { "weight": 1, "sprite": 3596 }, + { "weight": 1, "sprite": 3597 }, + { "weight": 1, "sprite": 3598 } ] }, - { "id": "corner", "bg": 3341, "fg": [ 3548, 3551, 3550, 3547 ] }, - { "id": "t_connection", "fg": [ 3546, 3554, 3549, 3540 ] }, - { "id": "edge", "fg": [ 3553, 3545 ] }, - { "id": "end_piece", "fg": [ 3542, 3544, 3543, 3541 ] }, - { "id": "unconnected", "fg": 3552 } + { "id": "corner", "bg": 3400, "fg": [ 3607, 3610, 3609, 3606 ] }, + { "id": "t_connection", "fg": [ 3605, 3613, 3608, 3599 ] }, + { "id": "edge", "fg": [ 3612, 3604 ] }, + { "id": "end_piece", "fg": [ 3601, 3603, 3602, 3600 ] }, + { "id": "unconnected", "fg": 3611 } ] }, { "id": "t_pavement_season_autumn", "multitile": true, - "fg": 3536, + "fg": 3595, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 3536 }, - { "weight": 1, "sprite": 3537 }, - { "weight": 1, "sprite": 3538 }, - { "weight": 1, "sprite": 3539 } + { "weight": 1, "sprite": 3595 }, + { "weight": 1, "sprite": 3596 }, + { "weight": 1, "sprite": 3597 }, + { "weight": 1, "sprite": 3598 } ] }, - { "id": "corner", "bg": 3336, "fg": [ 3548, 3551, 3550, 3547 ] }, - { "id": "t_connection", "fg": [ 3546, 3554, 3549, 3540 ] }, - { "id": "edge", "fg": [ 3553, 3545 ] }, - { "id": "end_piece", "fg": [ 3542, 3544, 3543, 3541 ] }, - { "id": "unconnected", "fg": 3552 } + { "id": "corner", "bg": 3395, "fg": [ 3607, 3610, 3609, 3606 ] }, + { "id": "t_connection", "fg": [ 3605, 3613, 3608, 3599 ] }, + { "id": "edge", "fg": [ 3612, 3604 ] }, + { "id": "end_piece", "fg": [ 3601, 3603, 3602, 3600 ] }, + { "id": "unconnected", "fg": 3611 } ] }, - { "id": "t_pavement_season_winter", "fg": 2810 }, - { "id": "t_pavement_y", "fg": 3555 }, - { "id": "t_pavement_y_season_winter", "fg": 2810 }, + { "id": "t_pavement_season_winter", "fg": 2869 }, + { "id": "t_pavement_y", "fg": 3614 }, + { "id": "t_pavement_y_season_winter", "fg": 2869 }, { "id": "t_pit", - "fg": 3571, - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ], + "fg": 3630, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3556, "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] }, + { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "corner", - "fg": [ 3558, 3560, 3559, 3557 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3617, 3619, 3618, 3616 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_connection", - "fg": [ 3568, 3570, 3569, 3567 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3627, 3629, 3628, 3626 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "edge", - "fg": [ 3562, 3561 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3621, 3620 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "end_piece", - "fg": [ 3564, 3566, 3565, 3563 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3623, 3625, 3624, 3622 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "unconnected", - "fg": [ 3571, 3571 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3630, 3630 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] } ] }, { "id": "t_pit_season_summer", - "fg": 3571, - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ], + "fg": 3630, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3556, "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] }, + { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "corner", - "fg": [ 3558, 3560, 3559, 3557 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3617, 3619, 3618, 3616 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_connection", - "fg": [ 3568, 3570, 3569, 3567 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3627, 3629, 3628, 3626 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "edge", - "fg": [ 3562, 3561 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3621, 3620 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "end_piece", - "fg": [ 3564, 3566, 3565, 3563 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3623, 3625, 3624, 3622 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "unconnected", - "fg": [ 3571, 3571 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3630, 3630 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] } ] }, { "id": "t_pit_season_autumn", - "fg": 3571, - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ], + "fg": 3630, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3556, "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] }, + { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "corner", - "fg": [ 3558, 3560, 3559, 3557 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3617, 3619, 3618, 3616 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "t_connection", - "fg": [ 3568, 3570, 3569, 3567 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3627, 3629, 3628, 3626 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "edge", - "fg": [ 3562, 3561 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3621, 3620 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "end_piece", - "fg": [ 3564, 3566, 3565, 3563 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3623, 3625, 3624, 3622 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "unconnected", - "fg": [ 3571, 3571 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3630, 3630 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] } ] }, { "id": "t_pit_season_winter", - "fg": 3571, - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ], + "fg": 3630, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { + "id": "corner", + "fg": [ 3617, 3619, 3618, 3616 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + }, + { + "id": "t_connection", + "fg": [ 3627, 3629, 3628, 3626 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + }, + { + "id": "edge", + "fg": [ 3621, 3620 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + }, + { + "id": "end_piece", + "fg": [ 3623, 3625, 3624, 3622 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + }, + { + "id": "unconnected", + "fg": [ 3630, 3630 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + } + ] + }, + { + "id": "t_pit_corpsed", + "fg": 3646, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { + "id": "corner", + "fg": [ 3633, 3635, 3634, 3632 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + }, + { + "id": "t_connection", + "fg": [ 3643, 3645, 3644, 3642 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + }, + { + "id": "edge", + "fg": [ 3637, 3636 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + }, + { + "id": "end_piece", + "fg": [ 3639, 3641, 3640, 3638 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + }, + { + "id": "unconnected", + "fg": [ 3646, 3646 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + } + ] + }, + { + "id": "t_pit_corpsed_season_summer", + "fg": 3646, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { + "id": "corner", + "fg": [ 3633, 3635, 3634, 3632 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + }, + { + "id": "t_connection", + "fg": [ 3643, 3645, 3644, 3642 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + }, + { + "id": "edge", + "fg": [ 3637, 3636 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + }, + { + "id": "end_piece", + "fg": [ 3639, 3641, 3640, 3638 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + }, + { + "id": "unconnected", + "fg": [ 3646, 3646 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + } + ] + }, + { + "id": "t_pit_corpsed_season_autumn", + "fg": 3646, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { + "id": "corner", + "fg": [ 3633, 3635, 3634, 3632 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + }, + { + "id": "t_connection", + "fg": [ 3643, 3645, 3644, 3642 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + }, + { + "id": "edge", + "fg": [ 3637, 3636 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + }, + { + "id": "end_piece", + "fg": [ 3639, 3641, 3640, 3638 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + }, + { + "id": "unconnected", + "fg": [ 3646, 3646 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + } + ] + }, + { + "id": "t_pit_corpsed_season_winter", + "fg": 3646, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3556, "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] }, + { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "corner", - "fg": [ 3558, 3560, 3559, 3557 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3633, 3635, 3634, 3632 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "t_connection", - "fg": [ 3568, 3570, 3569, 3567 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3643, 3645, 3644, 3642 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "edge", - "fg": [ 3562, 3561 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3637, 3636 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "end_piece", - "fg": [ 3564, 3566, 3565, 3563 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3639, 3641, 3640, 3638 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "unconnected", - "fg": [ 3571, 3571 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3646, 3646 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] } ] }, { "id": "t_pit_covered", - "fg": 3587, - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ], + "fg": 3662, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3572, "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] }, + { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "corner", - "fg": [ 3574, 3576, 3575, 3573 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3649, 3651, 3650, 3648 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_connection", - "fg": [ 3584, 3586, 3585, 3583 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3659, 3661, 3660, 3658 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "edge", - "fg": [ 3578, 3577 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3653, 3652 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "end_piece", - "fg": [ 3580, 3582, 3581, 3579 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "unconnected", - "fg": [ 3587, 3587 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3662, 3662 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] } ] }, { "id": "t_pit_covered_season_summer", - "fg": 3587, - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ], + "fg": 3662, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3572, "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] }, + { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "corner", - "fg": [ 3574, 3576, 3575, 3573 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3649, 3651, 3650, 3648 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_connection", - "fg": [ 3584, 3586, 3585, 3583 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3659, 3661, 3660, 3658 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "edge", - "fg": [ 3578, 3577 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3653, 3652 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "end_piece", - "fg": [ 3580, 3582, 3581, 3579 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "unconnected", - "fg": [ 3587, 3587 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3662, 3662 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] } ] }, { "id": "t_pit_covered_season_autumn", - "fg": 3587, - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ], + "fg": 3662, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3572, "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] }, + { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "corner", - "fg": [ 3574, 3576, 3575, 3573 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3649, 3651, 3650, 3648 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "t_connection", - "fg": [ 3584, 3586, 3585, 3583 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3659, 3661, 3660, 3658 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "edge", - "fg": [ 3578, 3577 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3653, 3652 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "end_piece", - "fg": [ 3580, 3582, 3581, 3579 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "unconnected", - "fg": [ 3587, 3587 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3662, 3662 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] } ] }, { "id": "t_pit_covered_season_winter", - "fg": 3587, - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ], + "fg": 3662, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3572, "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] }, + { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "corner", - "fg": [ 3574, 3576, 3575, 3573 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3649, 3651, 3650, 3648 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "t_connection", - "fg": [ 3584, 3586, 3585, 3583 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3659, 3661, 3660, 3658 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "edge", - "fg": [ 3578, 3577 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3653, 3652 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "end_piece", - "fg": [ 3580, 3582, 3581, 3579 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "unconnected", - "fg": [ 3587, 3587 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3662, 3662 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] } ] }, { "id": "t_pit_glass", - "fg": 3603, - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ], + "fg": 3678, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3588, "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] }, + { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "corner", - "fg": [ 3590, 3592, 3591, 3589 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_connection", - "fg": [ 3600, 3602, 3601, 3599 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3675, 3677, 3676, 3674 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "edge", - "fg": [ 3594, 3593 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3669, 3668 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "end_piece", - "fg": [ 3596, 3598, 3597, 3595 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "unconnected", - "fg": [ 3603, 3603 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3678, 3678 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] } ] }, { "id": "t_pit_glass_season_summer", - "fg": 3603, - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ], + "fg": 3678, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3588, "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] }, + { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "corner", - "fg": [ 3590, 3592, 3591, 3589 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_connection", - "fg": [ 3600, 3602, 3601, 3599 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3675, 3677, 3676, 3674 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "edge", - "fg": [ 3594, 3593 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3669, 3668 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "end_piece", - "fg": [ 3596, 3598, 3597, 3595 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "unconnected", - "fg": [ 3603, 3603 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3678, 3678 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] } ] }, { "id": "t_pit_glass_season_autumn", - "fg": 3603, - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ], + "fg": 3678, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3588, "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] }, + { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "corner", - "fg": [ 3590, 3592, 3591, 3589 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "t_connection", - "fg": [ 3600, 3602, 3601, 3599 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3675, 3677, 3676, 3674 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "edge", - "fg": [ 3594, 3593 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3669, 3668 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "end_piece", - "fg": [ 3596, 3598, 3597, 3595 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "unconnected", - "fg": [ 3603, 3603 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3678, 3678 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] } ] }, { "id": "t_pit_glass_season_winter", - "fg": 3603, - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ], + "fg": 3678, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3588, "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] }, + { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "corner", - "fg": [ 3590, 3592, 3591, 3589 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "t_connection", - "fg": [ 3600, 3602, 3601, 3599 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3675, 3677, 3676, 3674 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "edge", - "fg": [ 3594, 3593 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3669, 3668 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "end_piece", - "fg": [ 3596, 3598, 3597, 3595 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "unconnected", - "fg": [ 3603, 3603 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3678, 3678 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] } ] }, { "id": "t_pit_glass_covered", - "fg": 3619, - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ], + "fg": 3694, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3604, "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] }, + { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "corner", - "fg": [ 3606, 3608, 3607, 3605 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_connection", - "fg": [ 3616, 3618, 3617, 3615 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3691, 3693, 3692, 3690 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "edge", - "fg": [ 3610, 3609 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3685, 3684 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "end_piece", - "fg": [ 3612, 3614, 3613, 3611 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "unconnected", - "fg": [ 3619, 3619 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3694, 3694 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] } ] }, { "id": "t_pit_glass_covered_season_summer", - "fg": 3619, - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ], + "fg": 3694, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3604, "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] }, + { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "corner", - "fg": [ 3606, 3608, 3607, 3605 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_connection", - "fg": [ 3616, 3618, 3617, 3615 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3691, 3693, 3692, 3690 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "edge", - "fg": [ 3610, 3609 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3685, 3684 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "end_piece", - "fg": [ 3612, 3614, 3613, 3611 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "unconnected", - "fg": [ 3619, 3619 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3694, 3694 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] } ] }, { "id": "t_pit_glass_covered_season_autumn", - "fg": 3619, - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ], + "fg": 3694, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3604, "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] }, + { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "corner", - "fg": [ 3606, 3608, 3607, 3605 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "t_connection", - "fg": [ 3616, 3618, 3617, 3615 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3691, 3693, 3692, 3690 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "edge", - "fg": [ 3610, 3609 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3685, 3684 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "end_piece", - "fg": [ 3612, 3614, 3613, 3611 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "unconnected", - "fg": [ 3619, 3619 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3694, 3694 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] } ] }, { "id": "t_pit_glass_covered_season_winter", - "fg": 3619, - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ], + "fg": 3694, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3604, "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] }, + { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "corner", - "fg": [ 3606, 3608, 3607, 3605 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "t_connection", - "fg": [ 3616, 3618, 3617, 3615 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3691, 3693, 3692, 3690 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "edge", - "fg": [ 3610, 3609 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3685, 3684 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "end_piece", - "fg": [ 3612, 3614, 3613, 3611 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "unconnected", - "fg": [ 3619, 3619 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3694, 3694 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] } ] }, { "id": "t_pit_shallow", - "fg": 3635, - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ], + "fg": 3710, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3620, "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] }, + { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "corner", - "fg": [ 3622, 3624, 3623, 3621 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_connection", - "fg": [ 3632, 3634, 3633, 3631 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3707, 3709, 3708, 3706 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "edge", - "fg": [ 3626, 3625 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3701, 3700 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "end_piece", - "fg": [ 3628, 3630, 3629, 3627 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "unconnected", - "fg": [ 3635, 3635 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3710, 3710 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] } ] }, { "id": "t_pit_shallow_season_summer", - "fg": 3635, - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ], + "fg": 3710, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3620, "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] }, + { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "corner", - "fg": [ 3622, 3624, 3623, 3621 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_connection", - "fg": [ 3632, 3634, 3633, 3631 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3707, 3709, 3708, 3706 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "edge", - "fg": [ 3626, 3625 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3701, 3700 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "end_piece", - "fg": [ 3628, 3630, 3629, 3627 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "unconnected", - "fg": [ 3635, 3635 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3710, 3710 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] } ] }, { "id": "t_pit_shallow_season_autumn", - "fg": 3635, - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ], + "fg": 3710, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3620, "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] }, + { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "corner", - "fg": [ 3622, 3624, 3623, 3621 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "t_connection", - "fg": [ 3632, 3634, 3633, 3631 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3707, 3709, 3708, 3706 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "edge", - "fg": [ 3626, 3625 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3701, 3700 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "end_piece", - "fg": [ 3628, 3630, 3629, 3627 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "unconnected", - "fg": [ 3635, 3635 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3710, 3710 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] } ] }, { "id": "t_pit_shallow_season_winter", - "fg": 3635, - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ], + "fg": 3710, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3620, "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] }, + { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "corner", - "fg": [ 3622, 3624, 3623, 3621 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "t_connection", - "fg": [ 3632, 3634, 3633, 3631 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3707, 3709, 3708, 3706 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "edge", - "fg": [ 3626, 3625 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3701, 3700 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "end_piece", - "fg": [ 3628, 3630, 3629, 3627 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "unconnected", - "fg": [ 3635, 3635 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3710, 3710 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] } ] }, { "id": "t_pit_spiked", - "fg": 3651, - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ], + "fg": 3726, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3636, "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] }, + { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "corner", - "fg": [ 3638, 3640, 3639, 3637 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_connection", - "fg": [ 3648, 3650, 3649, 3647 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3723, 3725, 3724, 3722 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "edge", - "fg": [ 3642, 3641 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3717, 3716 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "end_piece", - "fg": [ 3644, 3646, 3645, 3643 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "unconnected", - "fg": [ 3651, 3651 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3726, 3726 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] } ] }, { "id": "t_pit_spiked_season_summer", - "fg": 3651, - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ], + "fg": 3726, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3636, "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] }, + { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "corner", - "fg": [ 3638, 3640, 3639, 3637 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_connection", - "fg": [ 3648, 3650, 3649, 3647 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3723, 3725, 3724, 3722 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "edge", - "fg": [ 3642, 3641 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3717, 3716 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "end_piece", - "fg": [ 3644, 3646, 3645, 3643 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "unconnected", - "fg": [ 3651, 3651 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3726, 3726 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] } ] }, { "id": "t_pit_spiked_season_autumn", - "fg": 3651, - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ], + "fg": 3726, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3636, "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] }, + { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "corner", - "fg": [ 3638, 3640, 3639, 3637 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "t_connection", - "fg": [ 3648, 3650, 3649, 3647 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3723, 3725, 3724, 3722 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "edge", - "fg": [ 3642, 3641 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3717, 3716 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "end_piece", - "fg": [ 3644, 3646, 3645, 3643 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "unconnected", - "fg": [ 3651, 3651 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3726, 3726 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] } ] }, { "id": "t_pit_spiked_season_winter", - "fg": 3651, - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ], + "fg": 3726, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3636, "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] }, + { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "corner", - "fg": [ 3638, 3640, 3639, 3637 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "t_connection", - "fg": [ 3648, 3650, 3649, 3647 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3723, 3725, 3724, 3722 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "edge", - "fg": [ 3642, 3641 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3717, 3716 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "end_piece", - "fg": [ 3644, 3646, 3645, 3643 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "unconnected", - "fg": [ 3651, 3651 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3726, 3726 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] } ] }, { "id": "t_pit_spiked_covered", - "fg": 3667, - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ], + "fg": 3742, + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3652, "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] }, + { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "corner", - "fg": [ 3654, 3656, 3655, 3653 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_connection", - "fg": [ 3664, 3666, 3665, 3663 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3739, 3741, 3740, 3738 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "edge", - "fg": [ 3658, 3657 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3733, 3732 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "end_piece", - "fg": [ 3660, 3662, 3661, 3659 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "unconnected", - "fg": [ 3667, 3667 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 3742, 3742 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] } ] }, { "id": "t_pit_spiked_covered_season_summer", - "fg": 3667, - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ], + "fg": 3742, + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3652, "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] }, + { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "corner", - "fg": [ 3654, 3656, 3655, 3653 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_connection", - "fg": [ 3664, 3666, 3665, 3663 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3739, 3741, 3740, 3738 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "edge", - "fg": [ 3658, 3657 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3733, 3732 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "end_piece", - "fg": [ 3660, 3662, 3661, 3659 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "unconnected", - "fg": [ 3667, 3667 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 3742, 3742 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] } ] }, { "id": "t_pit_spiked_covered_season_autumn", - "fg": 3667, - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ], + "fg": 3742, + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3652, "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] }, + { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "corner", - "fg": [ 3654, 3656, 3655, 3653 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "t_connection", - "fg": [ 3664, 3666, 3665, 3663 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3739, 3741, 3740, 3738 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "edge", - "fg": [ 3658, 3657 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3733, 3732 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "end_piece", - "fg": [ 3660, 3662, 3661, 3659 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, { "id": "unconnected", - "fg": [ 3667, 3667 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 3742, 3742 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] } ] }, { "id": "t_pit_spiked_covered_season_winter", - "fg": 3667, - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ], + "fg": 3742, + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3652, "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] }, + { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "corner", - "fg": [ 3654, 3656, 3655, 3653 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "t_connection", - "fg": [ 3664, 3666, 3665, 3663 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3739, 3741, 3740, 3738 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "edge", - "fg": [ 3658, 3657 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3733, 3732 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "end_piece", - "fg": [ 3660, 3662, 3661, 3659 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, { "id": "unconnected", - "fg": [ 3667, 3667 ], - "bg": [ { "weight": 100, "sprite": 2811 }, { "weight": 100, "sprite": 2812 } ] + "fg": [ 3742, 3742 ], + "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] } ] }, { "id": "t_privacy_fence", "multitile": true, - "fg": 3683, - "bg": 3331, + "fg": 3758, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": 3668 }, - { "id": "corner", "bg": 3331, "fg": [ 3670, 3672, 3671, 3669 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3680, 3682, 3681, 3679 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3674, 3673 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3676, 3678, 3677, 3675 ] }, - { "bg": 3331, "id": "unconnected", "fg": [ 3683, 3683 ] } + { "id": "center", "bg": 3390, "fg": 3743 }, + { "id": "corner", "bg": 3390, "fg": [ 3745, 3747, 3746, 3744 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3755, 3757, 3756, 3754 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3749, 3748 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3751, 3753, 3752, 3750 ] }, + { "bg": 3390, "id": "unconnected", "fg": [ 3758, 3758 ] } ] }, { "id": "t_privacy_fence_season_winter", "multitile": true, - "fg": 3683, - "bg": 2811, + "fg": 3758, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": 3668 }, - { "id": "corner", "bg": 2811, "fg": [ 3670, 3672, 3671, 3669 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 3680, 3682, 3681, 3679 ] }, - { "id": "edge", "bg": 2811, "fg": [ 3674, 3673 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 3676, 3678, 3677, 3675 ] }, - { "bg": 2811, "id": "unconnected", "fg": [ 3683, 3683 ] } + { "id": "center", "bg": 2870, "fg": 3743 }, + { "id": "corner", "bg": 2870, "fg": [ 3745, 3747, 3746, 3744 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3755, 3757, 3756, 3754 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3749, 3748 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3751, 3753, 3752, 3750 ] }, + { "bg": 2870, "id": "unconnected", "fg": [ 3758, 3758 ] } ] }, { "id": "t_railing", "multitile": true, - "fg": 3699, - "bg": 3014, + "fg": 3774, + "bg": 3073, "additional_tiles": [ - { "id": "center", "bg": 3014, "fg": 3684 }, - { "id": "corner", "bg": 3014, "fg": [ 3686, 3688, 3687, 3685 ] }, - { "id": "t_connection", "bg": 3014, "fg": [ 3696, 3698, 3697, 3695 ] }, - { "id": "edge", "bg": 3014, "fg": [ 3690, 3689 ] }, - { "id": "end_piece", "bg": 3014, "fg": [ 3692, 3694, 3693, 3691 ] }, - { "bg": 3014, "id": "unconnected", "fg": [ 3699, 3699 ] } + { "id": "center", "bg": 3073, "fg": 3759 }, + { "id": "corner", "bg": 3073, "fg": [ 3761, 3763, 3762, 3760 ] }, + { "id": "t_connection", "bg": 3073, "fg": [ 3771, 3773, 3772, 3770 ] }, + { "id": "edge", "bg": 3073, "fg": [ 3765, 3764 ] }, + { "id": "end_piece", "bg": 3073, "fg": [ 3767, 3769, 3768, 3766 ] }, + { "bg": 3073, "id": "unconnected", "fg": [ 3774, 3774 ] } ] }, { "id": "t_railroad_rubble", "multitile": true, - "fg": 3716, - "bg": 3331, + "fg": 3791, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": [ { "weight": 1, "sprite": 3700 }, { "weight": 1, "sprite": 3701 } ] }, - { "id": "corner", "bg": 3331, "fg": [ 3703, 3705, 3704, 3702 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3713, 3715, 3714, 3712 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3707, 3706 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3709, 3711, 3710, 3708 ] }, - { "bg": 3331, "id": "unconnected", "fg": 3716 } + { "id": "center", "bg": 3390, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, + { "id": "corner", "bg": 3390, "fg": [ 3778, 3780, 3779, 3777 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3788, 3790, 3789, 3787 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3782, 3781 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3784, 3786, 3785, 3783 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3791 } ] }, { "id": "t_railroad_rubble_season_summer", "multitile": true, - "fg": 3716, - "bg": 3341, + "fg": 3791, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": [ { "weight": 1, "sprite": 3700 }, { "weight": 1, "sprite": 3701 } ] }, - { "id": "corner", "bg": 3341, "fg": [ 3703, 3705, 3704, 3702 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 3713, 3715, 3714, 3712 ] }, - { "id": "edge", "bg": 3341, "fg": [ 3707, 3706 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 3709, 3711, 3710, 3708 ] }, - { "bg": 3341, "id": "unconnected", "fg": 3716 } + { "id": "center", "bg": 3400, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, + { "id": "corner", "bg": 3400, "fg": [ 3778, 3780, 3779, 3777 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3788, 3790, 3789, 3787 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3782, 3781 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3784, 3786, 3785, 3783 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3791 } ] }, { "id": "t_railroad_rubble_season_autumn", "multitile": true, - "fg": 3716, - "bg": 3336, + "fg": 3791, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": [ { "weight": 1, "sprite": 3700 }, { "weight": 1, "sprite": 3701 } ] }, - { "id": "corner", "bg": 3336, "fg": [ 3703, 3705, 3704, 3702 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 3713, 3715, 3714, 3712 ] }, - { "id": "edge", "bg": 3336, "fg": [ 3707, 3706 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 3709, 3711, 3710, 3708 ] }, - { "bg": 3336, "id": "unconnected", "fg": 3716 } + { "id": "center", "bg": 3395, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, + { "id": "corner", "bg": 3395, "fg": [ 3778, 3780, 3779, 3777 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3788, 3790, 3789, 3787 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3782, 3781 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3784, 3786, 3785, 3783 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3791 } ] }, { "id": "t_railroad_rubble_season_winter", "multitile": true, - "fg": 3716, - "bg": 2811, + "fg": 3791, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": [ { "weight": 1, "sprite": 3700 }, { "weight": 1, "sprite": 3701 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 3703, 3705, 3704, 3702 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 3713, 3715, 3714, 3712 ] }, - { "id": "edge", "bg": 2811, "fg": [ 3707, 3706 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 3709, 3711, 3710, 3708 ] }, - { "bg": 2811, "id": "unconnected", "fg": 3716 } + { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, + { "id": "corner", "bg": 2870, "fg": [ 3778, 3780, 3779, 3777 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3788, 3790, 3789, 3787 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3782, 3781 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3784, 3786, 3785, 3783 ] }, + { "bg": 2870, "id": "unconnected", "fg": 3791 } ] }, { "id": "t_railroad_track_small", - "fg": 3723, - "bg": 3700, + "fg": 3798, + "bg": 3775, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 3700, "fg": 3717 }, - { "id": "corner", "bg": 3700, "fg": [ 3719, 3721, 3720, 3718 ] }, - { "id": "t_connection", "bg": 3700, "fg": [ 3725, 3727, 3726, 3724 ] }, - { "id": "edge", "bg": 3700, "fg": [ 3723, 3722 ] }, - { "id": "end_piece", "bg": 3700, "fg": [ 3723, 3722, 3723, 3722 ] }, - { "id": "unconnected", "bg": 3700, "fg": [ 3723, 3722 ] } + { "id": "center", "bg": 3775, "fg": 3792 }, + { "id": "corner", "bg": 3775, "fg": [ 3794, 3796, 3795, 3793 ] }, + { "id": "t_connection", "bg": 3775, "fg": [ 3800, 3802, 3801, 3799 ] }, + { "id": "edge", "bg": 3775, "fg": [ 3798, 3797 ] }, + { "id": "end_piece", "bg": 3775, "fg": [ 3798, 3797, 3798, 3797 ] }, + { "id": "unconnected", "bg": 3775, "fg": [ 3798, 3797 ] } ] }, - { "id": "t_rdoor_c", "fg": 3729 }, - { "id": "t_rdoor_o", "fg": 3730 }, - { "id": "t_rdoor_b", "fg": 3728 }, + { "id": "t_rdoor_c", "fg": 3804 }, + { "id": "t_rdoor_o", "fg": 3805 }, + { "id": "t_rdoor_b", "fg": 3803 }, { "id": "t_reinforced_glass", "multitile": true, - "fg": 3746, + "fg": 3821, "additional_tiles": [ - { "id": "center", "fg": 3731 }, - { "id": "corner", "fg": [ 3733, 3735, 3734, 3732 ] }, - { "id": "t_connection", "fg": [ 3743, 3745, 3744, 3742 ] }, - { "id": "edge", "fg": [ 3737, 3736 ] }, - { "id": "end_piece", "fg": [ 3739, 3741, 3740, 3738 ] }, - { "id": "unconnected", "fg": 3746 } + { "id": "center", "fg": 3806 }, + { "id": "corner", "fg": [ 3808, 3810, 3809, 3807 ] }, + { "id": "t_connection", "fg": [ 3818, 3820, 3819, 3817 ] }, + { "id": "edge", "fg": [ 3812, 3811 ] }, + { "id": "end_piece", "fg": [ 3814, 3816, 3815, 3813 ] }, + { "id": "unconnected", "fg": 3821 } ] }, { "id": "t_rock", "multitile": true, - "fg": 3762, + "fg": 3837, "additional_tiles": [ - { "id": "center", "fg": 3747 }, - { "id": "corner", "fg": [ 3749, 3751, 3750, 3748 ] }, - { "id": "t_connection", "fg": [ 3759, 3761, 3760, 3758 ] }, - { "id": "edge", "fg": [ 3753, 3752 ] }, - { "id": "end_piece", "fg": [ 3755, 3757, 3756, 3754 ] }, - { "id": "unconnected", "fg": 3762 } + { "id": "center", "fg": 3822 }, + { "id": "corner", "fg": [ 3824, 3826, 3825, 3823 ] }, + { "id": "t_connection", "fg": [ 3834, 3836, 3835, 3833 ] }, + { "id": "edge", "fg": [ 3828, 3827 ] }, + { "id": "end_piece", "fg": [ 3830, 3832, 3831, 3829 ] }, + { "id": "unconnected", "fg": 3837 } ] }, { "id": "t_rock_floor", "multitile": true, - "fg": 3780, + "fg": 3855, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 3763 }, { "weight": 1, "sprite": 3764 }, { "weight": 1, "sprite": 3765 } ] + "fg": [ { "weight": 1, "sprite": 3838 }, { "weight": 1, "sprite": 3839 }, { "weight": 1, "sprite": 3840 } ] }, - { "id": "corner", "fg": [ 3767, 3769, 3768, 3766 ] }, - { "id": "t_connection", "fg": [ 3777, 3779, 3778, 3776 ] }, - { "id": "edge", "fg": [ 3771, 3770 ] }, - { "id": "end_piece", "fg": [ 3773, 3775, 3774, 3772 ] }, - { "id": "unconnected", "fg": 3780 } + { "id": "corner", "fg": [ 3842, 3844, 3843, 3841 ] }, + { "id": "t_connection", "fg": [ 3852, 3854, 3853, 3851 ] }, + { "id": "edge", "fg": [ 3846, 3845 ] }, + { "id": "end_piece", "fg": [ 3848, 3850, 3849, 3847 ] }, + { "id": "unconnected", "fg": 3855 } ] }, { "id": "t_rock_wall", "multitile": true, - "fg": 3796, + "fg": 3871, "additional_tiles": [ - { "id": "center", "fg": 3781 }, - { "id": "corner", "fg": [ 3783, 3785, 3784, 3782 ] }, - { "id": "t_connection", "fg": [ 3793, 3795, 3794, 3792 ] }, - { "id": "edge", "fg": [ 3787, 3786 ] }, - { "id": "end_piece", "fg": [ 3789, 3791, 3790, 3788 ] }, - { "id": "unconnected", "fg": 3796 } + { "id": "center", "fg": 3856 }, + { "id": "corner", "fg": [ 3858, 3860, 3859, 3857 ] }, + { "id": "t_connection", "fg": [ 3868, 3870, 3869, 3867 ] }, + { "id": "edge", "fg": [ 3862, 3861 ] }, + { "id": "end_piece", "fg": [ 3864, 3866, 3865, 3863 ] }, + { "id": "unconnected", "fg": 3871 } ] }, { "id": "t_sand", "multitile": true, - "fg": 3815, - "bg": 3331, + "fg": 3890, + "bg": 3390, "additional_tiles": [ { "id": "center", - "bg": 3331, + "bg": 3390, "fg": [ - { "weight": 1, "sprite": 3797 }, - { "weight": 1, "sprite": 3798 }, - { "weight": 1, "sprite": 3799 }, - { "weight": 1, "sprite": 3800 } + { "weight": 1, "sprite": 3872 }, + { "weight": 1, "sprite": 3873 }, + { "weight": 1, "sprite": 3874 }, + { "weight": 1, "sprite": 3875 } ] }, - { "id": "corner", "bg": 3331, "fg": [ 3802, 3804, 3803, 3801 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 3812, 3814, 3813, 3811 ] }, - { "id": "edge", "bg": 3331, "fg": [ 3806, 3805 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 3808, 3810, 3809, 3807 ] }, - { "bg": 3331, "id": "unconnected", "fg": 3815 } + { "id": "corner", "bg": 3390, "fg": [ 3877, 3879, 3878, 3876 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 3887, 3889, 3888, 3886 ] }, + { "id": "edge", "bg": 3390, "fg": [ 3881, 3880 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 3883, 3885, 3884, 3882 ] }, + { "bg": 3390, "id": "unconnected", "fg": 3890 } ] }, { "id": "t_sand_season_summer", "multitile": true, - "fg": 3815, - "bg": 3341, + "fg": 3890, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": [ { "weight": 1, "sprite": 3797 }, { "weight": 1, "sprite": 3798 } ] }, - { "id": "corner", "bg": 3341, "fg": [ 3802, 3804, 3803, 3801 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 3812, 3814, 3813, 3811 ] }, - { "id": "edge", "bg": 3341, "fg": [ 3806, 3805 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 3808, 3810, 3809, 3807 ] }, - { "bg": 3341, "id": "unconnected", "fg": 3815 } + { "id": "center", "bg": 3400, "fg": [ { "weight": 1, "sprite": 3872 }, { "weight": 1, "sprite": 3873 } ] }, + { "id": "corner", "bg": 3400, "fg": [ 3877, 3879, 3878, 3876 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 3887, 3889, 3888, 3886 ] }, + { "id": "edge", "bg": 3400, "fg": [ 3881, 3880 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 3883, 3885, 3884, 3882 ] }, + { "bg": 3400, "id": "unconnected", "fg": 3890 } ] }, { "id": "t_sand_season_autumn", "multitile": true, - "fg": 3815, - "bg": 3336, + "fg": 3890, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": [ { "weight": 1, "sprite": 3797 }, { "weight": 1, "sprite": 3798 } ] }, - { "id": "corner", "bg": 3336, "fg": [ 3802, 3804, 3803, 3801 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 3812, 3814, 3813, 3811 ] }, - { "id": "edge", "bg": 3336, "fg": [ 3806, 3805 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 3808, 3810, 3809, 3807 ] }, - { "bg": 3336, "id": "unconnected", "fg": 3815 } + { "id": "center", "bg": 3395, "fg": [ { "weight": 1, "sprite": 3872 }, { "weight": 1, "sprite": 3873 } ] }, + { "id": "corner", "bg": 3395, "fg": [ 3877, 3879, 3878, 3876 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 3887, 3889, 3888, 3886 ] }, + { "id": "edge", "bg": 3395, "fg": [ 3881, 3880 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 3883, 3885, 3884, 3882 ] }, + { "bg": 3395, "id": "unconnected", "fg": 3890 } ] }, { "id": "t_sand_season_winter", "multitile": true, - "fg": 3815, - "bg": 2811, + "fg": 3890, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": [ { "weight": 1, "sprite": 3797 }, { "weight": 1, "sprite": 3798 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 3802, 3804, 3803, 3801 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 3812, 3814, 3813, 3811 ] }, - { "id": "edge", "bg": 2811, "fg": [ 3806, 3805 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 3808, 3810, 3809, 3807 ] }, - { "bg": 2811, "id": "unconnected", "fg": 3815 } + { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 3872 }, { "weight": 1, "sprite": 3873 } ] }, + { "id": "corner", "bg": 2870, "fg": [ 3877, 3879, 3878, 3876 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 3887, 3889, 3888, 3886 ] }, + { "id": "edge", "bg": 2870, "fg": [ 3881, 3880 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 3883, 3885, 3884, 3882 ] }, + { "bg": 2870, "id": "unconnected", "fg": 3890 } ] }, { "id": [ "t_sandmound_season_spring", "t_sandmound_season_summer", "t_sandmound_season_autumn" ], - "fg": 3816 + "fg": 3891 }, - { "id": "t_sandmound_season_winter", "fg": 7693 }, + { "id": "t_sandmound_season_winter", "fg": 7784 }, { "id": "t_scrap_floor", "multitile": true, - "fg": 3847, + "fg": 3922, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 3817 }, { "weight": 1, "sprite": 3818 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 3892 }, { "weight": 1, "sprite": 3893 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 3821, 3825, 3819, 3823 ] }, { "weight": 1, "sprite": [ 3822, 3826, 3820, 3824 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3896, 3900, 3894, 3898 ] }, { "weight": 1, "sprite": [ 3897, 3901, 3895, 3899 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 3841, 3845, 3843, 3839 ] }, { "weight": 1, "sprite": [ 3842, 3846, 3844, 3840 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3916, 3920, 3918, 3914 ] }, { "weight": 1, "sprite": [ 3917, 3921, 3919, 3915 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 3829, 3827 ] }, { "weight": 1, "sprite": [ 3830, 3828 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3904, 3902 ] }, { "weight": 1, "sprite": [ 3905, 3903 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 3833, 3837, 3835, 3831 ] }, { "weight": 1, "sprite": [ 3834, 3838, 3836, 3832 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3908, 3912, 3910, 3906 ] }, { "weight": 1, "sprite": [ 3909, 3913, 3911, 3907 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 3847 }, { "weight": 1, "sprite": 3848 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 3922 }, { "weight": 1, "sprite": 3923 } ] } ] }, { "id": "t_scrap_wall", "multitile": true, - "fg": 3864, + "fg": 3939, "additional_tiles": [ - { "id": "center", "fg": 3849 }, - { "id": "corner", "fg": [ 3851, 3853, 3852, 3850 ] }, - { "id": "t_connection", "fg": [ 3861, 3863, 3862, 3860 ] }, - { "id": "edge", "fg": [ 3855, 3854 ] }, - { "id": "end_piece", "fg": [ 3857, 3859, 3858, 3856 ] }, - { "id": "unconnected", "fg": 3864 } + { "id": "center", "fg": 3924 }, + { "id": "corner", "fg": [ 3926, 3928, 3927, 3925 ] }, + { "id": "t_connection", "fg": [ 3936, 3938, 3937, 3935 ] }, + { "id": "edge", "fg": [ 3930, 3929 ] }, + { "id": "end_piece", "fg": [ 3932, 3934, 3933, 3931 ] }, + { "id": "unconnected", "fg": 3939 } ] }, { "id": "t_screened_porch_wall", "multitile": true, - "fg": 3880, - "bg": 3228, + "fg": 3955, + "bg": 3287, "additional_tiles": [ - { "id": "center", "bg": 3228, "fg": 3865 }, - { "id": "corner", "bg": 3228, "fg": [ 3867, 3869, 3868, 3866 ] }, - { "id": "t_connection", "bg": 3228, "fg": [ 3877, 3879, 3878, 3876 ] }, - { "id": "edge", "bg": 3228, "fg": [ 3871, 3870 ] }, - { "id": "end_piece", "bg": 3228, "fg": [ 3873, 3875, 3874, 3872 ] }, - { "bg": 3228, "id": "unconnected", "fg": [ 3880, 3880 ] } + { "id": "center", "bg": 3287, "fg": 3940 }, + { "id": "corner", "bg": 3287, "fg": [ 3942, 3944, 3943, 3941 ] }, + { "id": "t_connection", "bg": 3287, "fg": [ 3952, 3954, 3953, 3951 ] }, + { "id": "edge", "bg": 3287, "fg": [ 3946, 3945 ] }, + { "id": "end_piece", "bg": 3287, "fg": [ 3948, 3950, 3949, 3947 ] }, + { "bg": 3287, "id": "unconnected", "fg": [ 3955, 3955 ] } ] }, { "id": "t_sewage", "multitile": true, - "fg": 3896, + "fg": 3971, "additional_tiles": [ - { "id": "center", "fg": 3881 }, - { "id": "corner", "fg": [ 3883, 3885, 3884, 3882 ] }, - { "id": "t_connection", "fg": [ 3893, 3895, 3894, 3892 ] }, - { "id": "edge", "fg": [ 3887, 3886 ] }, - { "id": "end_piece", "fg": [ 3889, 3891, 3890, 3888 ] }, - { "id": "unconnected", "fg": [ 3896, 3896 ] } + { "id": "center", "fg": 3956 }, + { "id": "corner", "fg": [ 3958, 3960, 3959, 3957 ] }, + { "id": "t_connection", "fg": [ 3968, 3970, 3969, 3967 ] }, + { "id": "edge", "fg": [ 3962, 3961 ] }, + { "id": "end_piece", "fg": [ 3964, 3966, 3965, 3963 ] }, + { "id": "unconnected", "fg": [ 3971, 3971 ] } ] }, { "id": "t_sewage_pipe", "multitile": true, - "fg": 3912, + "fg": 3987, "additional_tiles": [ - { "id": "center", "fg": 3897 }, - { "id": "corner", "fg": [ 3899, 3901, 3900, 3898 ] }, - { "id": "t_connection", "fg": [ 3909, 3911, 3910, 3908 ] }, - { "id": "edge", "fg": [ 3903, 3902 ] }, - { "id": "end_piece", "fg": [ 3905, 3907, 3906, 3904 ] }, - { "id": "unconnected", "fg": [ 3912, 3912 ] } + { "id": "center", "fg": 3972 }, + { "id": "corner", "fg": [ 3974, 3976, 3975, 3973 ] }, + { "id": "t_connection", "fg": [ 3984, 3986, 3985, 3983 ] }, + { "id": "edge", "fg": [ 3978, 3977 ] }, + { "id": "end_piece", "fg": [ 3980, 3982, 3981, 3979 ] }, + { "id": "unconnected", "fg": [ 3987, 3987 ] } ] }, { "id": "t_shingle_flat_roof", "multitile": true, - "fg": 3928, - "additional_tiles": [ - { "id": "center", "fg": 3913 }, - { "id": "corner", "fg": [ 3915, 3917, 3916, 3914 ] }, - { "id": "t_connection", "fg": [ 3925, 3927, 3926, 3924 ] }, - { "id": "edge", "fg": [ 3919, 3918 ] }, - { "id": "end_piece", "fg": [ 3921, 3923, 3922, 3920 ] }, - { "id": "unconnected", "fg": 3928 } - ] - }, - { "id": "t_shrub", "fg": 3929, "bg": 3331 }, - { "id": "t_shrub_season_summer", "fg": 3929, "bg": 3341 }, - { "id": "t_shrub_season_autumn", "fg": 3929, "bg": 3336 }, - { "id": "t_shrub_season_winter", "fg": 3931, "bg": 2809 }, - { "id": "t_shrub_blackberry", "fg": 3932, "bg": 3331 }, - { "id": "t_shrub_blackberry_harvested", "fg": 3933, "bg": 3341 }, - { "id": "t_shrub_blackberry_season_summer", "fg": 3934, "bg": 3341 }, - { "id": "t_shrub_blackberry_season_autumn", "fg": 3932, "bg": 3336 }, - { "id": "t_shrub_blackberry_season_winter", "fg": 3935, "bg": 2809 }, - { "id": "t_shrub_blueberry", "fg": 3936, "bg": 3331 }, - { "id": "t_shrub_blueberry_harvested", "fg": 3937, "bg": 3341 }, - { "id": "t_shrub_blueberry_season_summer", "fg": 3938, "bg": 3341 }, - { "id": "t_shrub_blueberry_season_autumn", "fg": 3936, "bg": 3336 }, - { "id": "t_shrub_blueberry_season_winter", "fg": 3939, "bg": 2809 }, - { "id": "t_shrub_grape", "fg": 3940, "bg": 3331 }, - { "id": "t_shrub_grape_harvested", "fg": 3941, "bg": 3341 }, - { "id": "t_shrub_grape_season_summer", "fg": 3942, "bg": 3341 }, - { "id": "t_shrub_grape_season_autumn", "fg": 3940, "bg": 3336 }, - { "id": "t_shrub_grape_season_winter", "fg": 3943, "bg": 2809 }, - { "id": "t_shrub_huckleberry", "fg": 3944, "bg": 3331 }, - { "id": "t_shrub_huckleberry_harvested", "fg": 3945, "bg": 3341 }, - { "id": "t_shrub_huckleberry_season_summer", "fg": 3946, "bg": 3341 }, - { "id": "t_shrub_huckleberry_season_autumn", "fg": 3944, "bg": 3336 }, - { "id": "t_shrub_huckleberry_season_winter", "fg": 3947, "bg": 2809 }, - { "id": "t_shrub_hydrangea", "fg": 3949, "bg": 3331 }, - { "id": "t_shrub_hydrangea_harvested", "fg": 3948, "bg": 3331 }, - { "id": "t_shrub_hydrangea_season_summer", "fg": 3950, "bg": 3341 }, - { "id": "t_shrub_hydrangea_season_autumn", "fg": 3949, "bg": 3336 }, - { "id": "t_shrub_hydrangea_season_winter", "fg": 3951, "bg": 2809 }, - { "id": "t_shrub_lilac", "fg": 3953, "bg": 3331 }, - { "id": "t_shrub_lilac_harvested", "fg": 3952, "bg": 3331 }, - { "id": "t_shrub_lilac_season_summer", "fg": 3954, "bg": 3341 }, - { "id": "t_shrub_lilac_season_autumn", "fg": 3952, "bg": 3336 }, - { "id": "t_shrub_lilac_season_winter", "fg": 3955, "bg": 2809 }, - { "id": "t_shrub_peanut", "fg": 3956, "bg": 3331 }, - { "id": "t_shrub_peanut_harvested", "fg": 3958, "bg": 3336 }, - { "id": "t_shrub_peanut_season_summer", "fg": 3956, "bg": 3341 }, - { "id": "t_shrub_peanut_season_autumn", "fg": 3957, "bg": 3336 }, - { "id": "t_shrub_peanut_season_winter", "fg": 3959, "bg": 2809 }, - { "id": "t_shrub_raspberry", "fg": 3960, "bg": 3331 }, - { "id": "t_shrub_raspberry_harvested", "fg": 3961, "bg": 3341 }, - { "id": "t_shrub_raspberry_season_summer", "fg": 3962, "bg": 3341 }, - { "id": "t_shrub_raspberry_season_autumn", "fg": 3960, "bg": 3336 }, - { "id": "t_shrub_raspberry_season_winter", "fg": 3963, "bg": 2809 }, - { "id": "t_shrub_rose", "fg": 3965, "bg": 3331 }, - { "id": "t_shrub_rose_season_summer", "fg": 3965, "bg": 3341 }, - { "id": "t_shrub_rose_harvested", "fg": 3965, "bg": 3336 }, - { "id": "t_shrub_rose_season_autumn", "fg": 3964, "bg": 3336 }, - { "id": "t_shrub_rose_season_winter", "fg": 3966, "bg": 2809 }, - { "id": "t_shrub_strawberry", "fg": 3967, "bg": 3331 }, - { "id": "t_shrub_strawberry_harvested", "fg": 3968, "bg": 3341 }, - { "id": "t_shrub_strawberry_season_summer", "fg": 3969, "bg": 3341 }, - { "id": "t_shrub_strawberry_season_autumn", "fg": 3967, "bg": 3336 }, - { "id": "t_shrub_strawberry_season_winter", "fg": 3970, "bg": 2809 }, + "fg": 4003, + "additional_tiles": [ + { "id": "center", "fg": 3988 }, + { "id": "corner", "fg": [ 3990, 3992, 3991, 3989 ] }, + { "id": "t_connection", "fg": [ 4000, 4002, 4001, 3999 ] }, + { "id": "edge", "fg": [ 3994, 3993 ] }, + { "id": "end_piece", "fg": [ 3996, 3998, 3997, 3995 ] }, + { "id": "unconnected", "fg": 4003 } + ] + }, + { "id": "t_shrub", "fg": 4004, "bg": 3390 }, + { "id": "t_shrub_season_summer", "fg": 4004, "bg": 3400 }, + { "id": "t_shrub_season_autumn", "fg": 4004, "bg": 3395 }, + { "id": "t_shrub_season_winter", "fg": 4006, "bg": 2868 }, + { "id": "t_shrub_blackberry", "fg": 4007, "bg": 3390 }, + { "id": "t_shrub_blackberry_harvested", "fg": 4008, "bg": 3400 }, + { "id": "t_shrub_blackberry_season_summer", "fg": 4009, "bg": 3400 }, + { "id": "t_shrub_blackberry_season_autumn", "fg": 4007, "bg": 3395 }, + { "id": "t_shrub_blackberry_season_winter", "fg": 4010, "bg": 2868 }, + { "id": "t_shrub_blueberry", "fg": 4011, "bg": 3390 }, + { "id": "t_shrub_blueberry_harvested", "fg": 4012, "bg": 3400 }, + { "id": "t_shrub_blueberry_season_summer", "fg": 4013, "bg": 3400 }, + { "id": "t_shrub_blueberry_season_autumn", "fg": 4011, "bg": 3395 }, + { "id": "t_shrub_blueberry_season_winter", "fg": 4014, "bg": 2868 }, + { "id": "t_shrub_grape", "fg": 4015, "bg": 3390 }, + { "id": "t_shrub_grape_harvested", "fg": 4016, "bg": 3400 }, + { "id": "t_shrub_grape_season_summer", "fg": 4017, "bg": 3400 }, + { "id": "t_shrub_grape_season_autumn", "fg": 4015, "bg": 3395 }, + { "id": "t_shrub_grape_season_winter", "fg": 4018, "bg": 2868 }, + { "id": "t_shrub_huckleberry", "fg": 4019, "bg": 3390 }, + { "id": "t_shrub_huckleberry_harvested", "fg": 4020, "bg": 3400 }, + { "id": "t_shrub_huckleberry_season_summer", "fg": 4021, "bg": 3400 }, + { "id": "t_shrub_huckleberry_season_autumn", "fg": 4019, "bg": 3395 }, + { "id": "t_shrub_huckleberry_season_winter", "fg": 4022, "bg": 2868 }, + { "id": "t_shrub_hydrangea", "fg": 4024, "bg": 3390 }, + { "id": "t_shrub_hydrangea_harvested", "fg": 4023, "bg": 3390 }, + { "id": "t_shrub_hydrangea_season_summer", "fg": 4025, "bg": 3400 }, + { "id": "t_shrub_hydrangea_season_autumn", "fg": 4024, "bg": 3395 }, + { "id": "t_shrub_hydrangea_season_winter", "fg": 4026, "bg": 2868 }, + { "id": "t_shrub_lilac", "fg": 4028, "bg": 3390 }, + { "id": "t_shrub_lilac_harvested", "fg": 4027, "bg": 3390 }, + { "id": "t_shrub_lilac_season_summer", "fg": 4029, "bg": 3400 }, + { "id": "t_shrub_lilac_season_autumn", "fg": 4027, "bg": 3395 }, + { "id": "t_shrub_lilac_season_winter", "fg": 4030, "bg": 2868 }, + { "id": "t_shrub_peanut", "fg": 4031, "bg": 3390 }, + { "id": "t_shrub_peanut_harvested", "fg": 4033, "bg": 3395 }, + { "id": "t_shrub_peanut_season_summer", "fg": 4031, "bg": 3400 }, + { "id": "t_shrub_peanut_season_autumn", "fg": 4032, "bg": 3395 }, + { "id": "t_shrub_peanut_season_winter", "fg": 4034, "bg": 2868 }, + { "id": "t_shrub_raspberry", "fg": 4035, "bg": 3390 }, + { "id": "t_shrub_raspberry_harvested", "fg": 4036, "bg": 3400 }, + { "id": "t_shrub_raspberry_season_summer", "fg": 4037, "bg": 3400 }, + { "id": "t_shrub_raspberry_season_autumn", "fg": 4035, "bg": 3395 }, + { "id": "t_shrub_raspberry_season_winter", "fg": 4038, "bg": 2868 }, + { "id": "t_shrub_rose", "fg": 4040, "bg": 3390 }, + { "id": "t_shrub_rose_season_summer", "fg": 4040, "bg": 3400 }, + { "id": "t_shrub_rose_harvested", "fg": 4040, "bg": 3395 }, + { "id": "t_shrub_rose_season_autumn", "fg": 4039, "bg": 3395 }, + { "id": "t_shrub_rose_season_winter", "fg": 4041, "bg": 2868 }, + { "id": "t_shrub_strawberry", "fg": 4042, "bg": 3390 }, + { "id": "t_shrub_strawberry_harvested", "fg": 4043, "bg": 3400 }, + { "id": "t_shrub_strawberry_season_summer", "fg": 4044, "bg": 3400 }, + { "id": "t_shrub_strawberry_season_autumn", "fg": 4042, "bg": 3395 }, + { "id": "t_shrub_strawberry_season_winter", "fg": 4045, "bg": 2868 }, { "id": [ "t_sidewalk", "t_sidewalk_bg_dp" ], "multitile": true, - "fg": 3986, + "fg": 4061, "additional_tiles": [ - { "id": "center", "fg": 3971 }, - { "id": "corner", "fg": [ 3973, 3975, 3974, 3972 ] }, - { "id": "t_connection", "fg": [ 3983, 3985, 3984, 3982 ] }, - { "id": "edge", "fg": [ 3977, 3976 ] }, - { "id": "end_piece", "fg": [ 3979, 3981, 3980, 3978 ] }, - { "id": "unconnected", "fg": 3986 } + { "id": "center", "fg": 4046 }, + { "id": "corner", "fg": [ 4048, 4050, 4049, 4047 ] }, + { "id": "t_connection", "fg": [ 4058, 4060, 4059, 4057 ] }, + { "id": "edge", "fg": [ 4052, 4051 ] }, + { "id": "end_piece", "fg": [ 4054, 4056, 4055, 4053 ] }, + { "id": "unconnected", "fg": 4061 } ] }, - { "id": "t_sidewalk_season_winter", "fg": 2811 }, - { "id": "t_slime", "fg": 3987 }, + { "id": "t_sidewalk_season_winter", "fg": 2870 }, + { "id": "t_slime", "fg": 4062 }, { "id": "t_soil", - "fg": 4003, + "fg": 4078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3988 }, - { "id": "corner", "fg": [ 3990, 3992, 3991, 3989 ] }, - { "id": "t_connection", "fg": [ 4000, 4002, 4001, 3999 ] }, - { "id": "edge", "fg": [ 3994, 3993 ] }, - { "id": "end_piece", "fg": [ 3996, 3998, 3997, 3995 ] }, - { "id": "unconnected", "fg": [ 4003, 4003 ] } + { "id": "center", "fg": 4063 }, + { "id": "corner", "fg": [ 4065, 4067, 4066, 4064 ] }, + { "id": "t_connection", "fg": [ 4075, 4077, 4076, 4074 ] }, + { "id": "edge", "fg": [ 4069, 4068 ] }, + { "id": "end_piece", "fg": [ 4071, 4073, 4072, 4070 ] }, + { "id": "unconnected", "fg": [ 4078, 4078 ] } ] }, - { "id": "t_splitrail_fencegate_c", "fg": 4004, "bg": 3331 }, - { "id": "t_splitrail_fencegate_o", "fg": 4005, "bg": 3331 }, - { "id": "t_splitrail_fencegate_c_season_summer", "fg": 4004, "bg": 3341 }, - { "id": "t_splitrail_fencegate_o_season_summer", "fg": 4005, "bg": 3341 }, - { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 4004, "bg": 3336 }, - { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 4005, "bg": 3336 }, - { "id": "t_splitrail_fencegate_c_season_winter", "fg": 4004, "bg": 2811 }, - { "id": "t_splitrail_fencegate_o_season_winter", "fg": 4005, "bg": 2811 }, + { "id": "t_splitrail_fencegate_c", "fg": 4079, "bg": 3390 }, + { "id": "t_splitrail_fencegate_o", "fg": 4080, "bg": 3390 }, + { "id": "t_splitrail_fencegate_c_season_summer", "fg": 4079, "bg": 3400 }, + { "id": "t_splitrail_fencegate_o_season_summer", "fg": 4080, "bg": 3400 }, + { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 4079, "bg": 3395 }, + { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 4080, "bg": 3395 }, + { "id": "t_splitrail_fencegate_c_season_winter", "fg": 4079, "bg": 2870 }, + { "id": "t_splitrail_fencegate_o_season_winter", "fg": 4080, "bg": 2870 }, { "id": "t_strconc_floor", "multitile": true, - "fg": 4021, + "fg": 4096, "additional_tiles": [ - { "id": "center", "fg": 4006 }, - { "id": "corner", "fg": [ 4008, 4010, 4009, 4007 ] }, - { "id": "t_connection", "fg": [ 4018, 4020, 4019, 4017 ] }, - { "id": "edge", "fg": [ 4012, 4011 ] }, - { "id": "end_piece", "fg": [ 4014, 4016, 4015, 4013 ] }, - { "id": "unconnected", "fg": 4021 } + { "id": "center", "fg": 4081 }, + { "id": "corner", "fg": [ 4083, 4085, 4084, 4082 ] }, + { "id": "t_connection", "fg": [ 4093, 4095, 4094, 4092 ] }, + { "id": "edge", "fg": [ 4087, 4086 ] }, + { "id": "end_piece", "fg": [ 4089, 4091, 4090, 4088 ] }, + { "id": "unconnected", "fg": 4096 } ] }, - { "id": "t_stump", "fg": 4022, "bg": 3331 }, - { "id": "t_stump_season_summer", "fg": 4022, "bg": 3341 }, - { "id": "t_stump_season_autumn", "fg": 4022, "bg": 3336 }, - { "id": "t_stump_season_winter", "fg": 4022, "bg": 2809 }, - { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 4023 }, { "weight": 100, "sprite": 4024 } ] }, + { "id": "t_stump", "fg": 4097, "bg": 3390 }, + { "id": "t_stump_season_summer", "fg": 4097, "bg": 3400 }, + { "id": "t_stump_season_autumn", "fg": 4097, "bg": 3395 }, + { "id": "t_stump_season_winter", "fg": 4097, "bg": 2868 }, + { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 4098 }, { "weight": 100, "sprite": 4099 } ] }, { "id": "t_thconc_floor", "fg": [ - { "weight": 1, "sprite": 4025 }, - { "weight": 1, "sprite": 4026 }, - { "weight": 1, "sprite": 4027 }, - { "weight": 1, "sprite": 4028 }, - { "weight": 1, "sprite": 4029 }, - { "weight": 1, "sprite": 4030 } + { "weight": 1, "sprite": 4100 }, + { "weight": 1, "sprite": 4101 }, + { "weight": 1, "sprite": 4102 }, + { "weight": 1, "sprite": 4103 }, + { "weight": 1, "sprite": 4104 }, + { "weight": 1, "sprite": 4105 } ] }, { "id": "t_thconc_r", "fg": [ - { "weight": 1, "sprite": 4033 }, - { "weight": 1, "sprite": 4034 }, - { "weight": 1, "sprite": 4035 }, - { "weight": 1, "sprite": 4036 }, - { "weight": 1, "sprite": 4037 }, - { "weight": 1, "sprite": 4038 } + { "weight": 1, "sprite": 4108 }, + { "weight": 1, "sprite": 4109 }, + { "weight": 1, "sprite": 4110 }, + { "weight": 1, "sprite": 4111 }, + { "weight": 1, "sprite": 4112 }, + { "weight": 1, "sprite": 4113 } ] }, { "id": "t_thconc_y", "fg": [ - { "weight": 1, "sprite": 4039 }, - { "weight": 1, "sprite": 4040 }, - { "weight": 1, "sprite": 4041 }, - { "weight": 1, "sprite": 4042 }, - { "weight": 1, "sprite": 4043 }, - { "weight": 1, "sprite": 4044 } - ] - }, - { "id": "t_underbrush", "fg": 4045, "bg": 3331 }, - { "id": "t_underbrush_harvested_spring", "fg": 4046, "bg": 3331 }, - { "id": "t_underbrush_season_summer", "fg": 4045, "bg": 3341 }, - { "id": "t_underbrush_harvested_summer", "fg": 4046, "bg": 3341 }, - { "id": "t_underbrush_season_autumn", "fg": 4045, "bg": 3336 }, - { "id": "t_underbrush_harvested_autumn", "fg": 4046, "bg": 3336 }, - { "id": "t_underbrush_harvested_winter", "fg": 4046, "bg": 2809 }, - { "id": "t_underbrush_season_winter", "fg": 4045, "bg": 2809 }, + { "weight": 1, "sprite": 4114 }, + { "weight": 1, "sprite": 4115 }, + { "weight": 1, "sprite": 4116 }, + { "weight": 1, "sprite": 4117 }, + { "weight": 1, "sprite": 4118 }, + { "weight": 1, "sprite": 4119 } + ] + }, + { "id": "t_underbrush", "fg": 4120, "bg": 3390 }, + { "id": "t_underbrush_harvested_spring", "fg": 4121, "bg": 3390 }, + { "id": "t_underbrush_season_summer", "fg": 4120, "bg": 3400 }, + { "id": "t_underbrush_harvested_summer", "fg": 4121, "bg": 3400 }, + { "id": "t_underbrush_season_autumn", "fg": 4120, "bg": 3395 }, + { "id": "t_underbrush_harvested_autumn", "fg": 4121, "bg": 3395 }, + { "id": "t_underbrush_harvested_winter", "fg": 4121, "bg": 2868 }, + { "id": "t_underbrush_season_winter", "fg": 4120, "bg": 2868 }, { "id": "t_wall", "multitile": true, - "fg": 4062, + "fg": 4137, "additional_tiles": [ - { "id": "center", "fg": 4047 }, - { "id": "corner", "fg": [ 4049, 4051, 4050, 4048 ] }, - { "id": "t_connection", "fg": [ 4059, 4061, 4060, 4058 ] }, - { "id": "edge", "fg": [ 4053, 4052 ] }, - { "id": "end_piece", "fg": [ 4055, 4057, 4056, 4054 ] }, - { "id": "unconnected", "fg": 4062 } + { "id": "center", "fg": 4122 }, + { "id": "corner", "fg": [ 4124, 4126, 4125, 4123 ] }, + { "id": "t_connection", "fg": [ 4134, 4136, 4135, 4133 ] }, + { "id": "edge", "fg": [ 4128, 4127 ] }, + { "id": "end_piece", "fg": [ 4130, 4132, 4131, 4129 ] }, + { "id": "unconnected", "fg": 4137 } ] }, { "id": "t_wall_b", "multitile": true, - "fg": 4078, + "fg": 4153, "additional_tiles": [ - { "id": "center", "fg": 4063 }, - { "id": "corner", "fg": [ 4065, 4067, 4066, 4064 ] }, - { "id": "t_connection", "fg": [ 4075, 4077, 4076, 4074 ] }, - { "id": "edge", "fg": [ 4069, 4068 ] }, - { "id": "end_piece", "fg": [ 4071, 4073, 4072, 4070 ] }, - { "id": "unconnected", "fg": 4078 } + { "id": "center", "fg": 4138 }, + { "id": "corner", "fg": [ 4140, 4142, 4141, 4139 ] }, + { "id": "t_connection", "fg": [ 4150, 4152, 4151, 4149 ] }, + { "id": "edge", "fg": [ 4144, 4143 ] }, + { "id": "end_piece", "fg": [ 4146, 4148, 4147, 4145 ] }, + { "id": "unconnected", "fg": 4153 } ] }, { "id": "t_wall_g", "multitile": true, - "fg": 4094, + "fg": 4169, "additional_tiles": [ - { "id": "center", "fg": 4079 }, - { "id": "corner", "fg": [ 4081, 4083, 4082, 4080 ] }, - { "id": "t_connection", "fg": [ 4091, 4093, 4092, 4090 ] }, - { "id": "edge", "fg": [ 4085, 4084 ] }, - { "id": "end_piece", "fg": [ 4087, 4089, 4088, 4086 ] }, - { "id": "unconnected", "fg": 4094 } + { "id": "center", "fg": 4154 }, + { "id": "corner", "fg": [ 4156, 4158, 4157, 4155 ] }, + { "id": "t_connection", "fg": [ 4166, 4168, 4167, 4165 ] }, + { "id": "edge", "fg": [ 4160, 4159 ] }, + { "id": "end_piece", "fg": [ 4162, 4164, 4163, 4161 ] }, + { "id": "unconnected", "fg": 4169 } ] }, { "id": [ "t_wall_glass", "t_wall_glass_alarm" ], "multitile": true, - "fg": 4110, + "fg": 4185, "additional_tiles": [ - { "id": "center", "fg": 4095 }, - { "id": "corner", "fg": [ 4097, 4099, 4098, 4096 ] }, - { "id": "t_connection", "fg": [ 4107, 4109, 4108, 4106 ] }, - { "id": "edge", "fg": [ 4101, 4100 ] }, - { "id": "end_piece", "fg": [ 4103, 4105, 4104, 4102 ] }, - { "id": "unconnected", "fg": 4110 } + { "id": "center", "fg": 4170 }, + { "id": "corner", "fg": [ 4172, 4174, 4173, 4171 ] }, + { "id": "t_connection", "fg": [ 4182, 4184, 4183, 4181 ] }, + { "id": "edge", "fg": [ 4176, 4175 ] }, + { "id": "end_piece", "fg": [ 4178, 4180, 4179, 4177 ] }, + { "id": "unconnected", "fg": 4185 } ] }, { "id": "t_wall_log", "multitile": true, - "fg": 4126, - "bg": 3331, + "fg": 4201, + "bg": 3390, "additional_tiles": [ - { "id": "center", "fg": 4111 }, - { "id": "corner", "fg": [ 4113, 4115, 4114, 4112 ] }, - { "id": "t_connection", "fg": [ 4123, 4125, 4124, 4122 ] }, - { "id": "edge", "bg": 3331, "fg": [ 4117, 4116 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 4119, 4121, 4120, 4118 ] }, - { "bg": 3331, "id": "unconnected", "fg": 4126 } + { "id": "center", "fg": 4186 }, + { "id": "corner", "fg": [ 4188, 4190, 4189, 4187 ] }, + { "id": "t_connection", "fg": [ 4198, 4200, 4199, 4197 ] }, + { "id": "edge", "bg": 3390, "fg": [ 4192, 4191 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 4194, 4196, 4195, 4193 ] }, + { "bg": 3390, "id": "unconnected", "fg": 4201 } ] }, { "id": "t_wall_metal", - "fg": 4142, + "fg": 4217, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4127 }, - { "id": "corner", "fg": [ 4129, 4131, 4130, 4128 ] }, - { "id": "t_connection", "fg": [ 4139, 4141, 4140, 4138 ] }, - { "id": "edge", "fg": [ 4133, 4132 ] }, - { "id": "end_piece", "fg": [ 4135, 4137, 4136, 4134 ] }, - { "id": "unconnected", "fg": [ 4142, 4142 ] } + { "id": "center", "fg": 4202 }, + { "id": "corner", "fg": [ 4204, 4206, 4205, 4203 ] }, + { "id": "t_connection", "fg": [ 4214, 4216, 4215, 4213 ] }, + { "id": "edge", "fg": [ 4208, 4207 ] }, + { "id": "end_piece", "fg": [ 4210, 4212, 4211, 4209 ] }, + { "id": "unconnected", "fg": [ 4217, 4217 ] } ] }, { "id": "t_wall_metal_corrugated", - "fg": 4158, + "fg": 4233, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4143 }, - { "id": "corner", "fg": [ 4145, 4147, 4146, 4144 ] }, - { "id": "t_connection", "fg": [ 4155, 4157, 4156, 4154 ] }, - { "id": "edge", "fg": [ 4149, 4148 ] }, - { "id": "end_piece", "fg": [ 4151, 4153, 4152, 4150 ] }, - { "id": "unconnected", "fg": [ 4158, 4158 ] } + { "id": "center", "fg": 4218 }, + { "id": "corner", "fg": [ 4220, 4222, 4221, 4219 ] }, + { "id": "t_connection", "fg": [ 4230, 4232, 4231, 4229 ] }, + { "id": "edge", "fg": [ 4224, 4223 ] }, + { "id": "end_piece", "fg": [ 4226, 4228, 4227, 4225 ] }, + { "id": "unconnected", "fg": [ 4233, 4233 ] } ] }, { "id": "t_wall_p", "multitile": true, - "fg": 4174, + "fg": 4249, "additional_tiles": [ - { "id": "center", "fg": 4159 }, - { "id": "corner", "fg": [ 4161, 4163, 4162, 4160 ] }, - { "id": "t_connection", "fg": [ 4171, 4173, 4172, 4170 ] }, - { "id": "edge", "fg": [ 4165, 4164 ] }, - { "id": "end_piece", "fg": [ 4167, 4169, 4168, 4166 ] }, - { "id": "unconnected", "fg": 4174 } + { "id": "center", "fg": 4234 }, + { "id": "corner", "fg": [ 4236, 4238, 4237, 4235 ] }, + { "id": "t_connection", "fg": [ 4246, 4248, 4247, 4245 ] }, + { "id": "edge", "fg": [ 4240, 4239 ] }, + { "id": "end_piece", "fg": [ 4242, 4244, 4243, 4241 ] }, + { "id": "unconnected", "fg": 4249 } ] }, { "id": "t_wall_r", "multitile": true, - "fg": 4190, + "fg": 4265, "additional_tiles": [ - { "id": "center", "fg": 4175 }, - { "id": "corner", "fg": [ 4177, 4179, 4178, 4176 ] }, - { "id": "t_connection", "fg": [ 4187, 4189, 4188, 4186 ] }, - { "id": "edge", "fg": [ 4181, 4180 ] }, - { "id": "end_piece", "fg": [ 4183, 4185, 4184, 4182 ] }, - { "id": "unconnected", "fg": 4190 } + { "id": "center", "fg": 4250 }, + { "id": "corner", "fg": [ 4252, 4254, 4253, 4251 ] }, + { "id": "t_connection", "fg": [ 4262, 4264, 4263, 4261 ] }, + { "id": "edge", "fg": [ 4256, 4255 ] }, + { "id": "end_piece", "fg": [ 4258, 4260, 4259, 4257 ] }, + { "id": "unconnected", "fg": 4265 } ] }, { "id": "t_wall_rammed_earth", - "fg": 4206, + "fg": 4281, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4191 }, - { "id": "corner", "fg": [ 4193, 4195, 4194, 4192 ] }, - { "id": "t_connection", "fg": [ 4203, 4205, 4204, 4202 ] }, - { "id": "edge", "fg": [ 4197, 4196 ] }, - { "id": "end_piece", "fg": [ 4199, 4201, 4200, 4198 ] }, - { "id": "unconnected", "fg": [ 4206, 4206 ] } + { "id": "center", "fg": 4266 }, + { "id": "corner", "fg": [ 4268, 4270, 4269, 4267 ] }, + { "id": "t_connection", "fg": [ 4278, 4280, 4279, 4277 ] }, + { "id": "edge", "fg": [ 4272, 4271 ] }, + { "id": "end_piece", "fg": [ 4274, 4276, 4275, 4273 ] }, + { "id": "unconnected", "fg": [ 4281, 4281 ] } ] }, { "id": "t_wall_resin", "multitile": true, - "fg": 4224, + "fg": 4299, "additional_tiles": [ - { "id": "center", "fg": 4209 }, - { "id": "corner", "fg": [ 4211, 4213, 4212, 4210 ] }, - { "id": "t_connection", "fg": [ 4221, 4223, 4222, 4220 ] }, - { "id": "edge", "fg": [ 4215, 4214 ] }, - { "id": "end_piece", "fg": [ 4217, 4219, 4218, 4216 ] }, - { "id": "unconnected", "fg": 4224 } + { "id": "center", "fg": 4284 }, + { "id": "corner", "fg": [ 4286, 4288, 4287, 4285 ] }, + { "id": "t_connection", "fg": [ 4296, 4298, 4297, 4295 ] }, + { "id": "edge", "fg": [ 4290, 4289 ] }, + { "id": "end_piece", "fg": [ 4292, 4294, 4293, 4291 ] }, + { "id": "unconnected", "fg": 4299 } ] }, - { "id": "t_resin_hole_c", "fg": 4207 }, - { "id": "t_resin_hole_o", "fg": 4208 }, + { "id": "t_resin_hole_c", "fg": 4282 }, + { "id": "t_resin_hole_o", "fg": 4283 }, { "id": "t_wall_w", "multitile": true, - "fg": 4241, + "fg": 4316, "additional_tiles": [ - { "id": "center", "fg": 4226 }, - { "id": "corner", "fg": [ 4228, 4230, 4229, 4227 ] }, - { "id": "t_connection", "fg": [ 4238, 4240, 4239, 4237 ] }, - { "id": "edge", "fg": [ 4232, 4231 ] }, - { "id": "end_piece", "fg": [ 4234, 4236, 4235, 4233 ] }, - { "id": "unconnected", "fg": 4241 } + { "id": "center", "fg": 4301 }, + { "id": "corner", "fg": [ 4303, 4305, 4304, 4302 ] }, + { "id": "t_connection", "fg": [ 4313, 4315, 4314, 4312 ] }, + { "id": "edge", "fg": [ 4307, 4306 ] }, + { "id": "end_piece", "fg": [ 4309, 4311, 4310, 4308 ] }, + { "id": "unconnected", "fg": 4316 } ] }, { "id": [ "t_wall_wood", "t_wall_wood_chipped", "t_wall_wood_broken" ], "multitile": true, - "fg": 4257, + "fg": 4332, "additional_tiles": [ - { "id": "center", "fg": 4242 }, - { "id": "corner", "fg": [ 4244, 4246, 4245, 4243 ] }, - { "id": "t_connection", "fg": [ 4254, 4256, 4255, 4253 ] }, - { "id": "edge", "fg": [ 4248, 4247 ] }, - { "id": "end_piece", "fg": [ 4250, 4252, 4251, 4249 ] }, - { "id": "unconnected", "fg": 4257 } + { "id": "center", "fg": 4317 }, + { "id": "corner", "fg": [ 4319, 4321, 4320, 4318 ] }, + { "id": "t_connection", "fg": [ 4329, 4331, 4330, 4328 ] }, + { "id": "edge", "fg": [ 4323, 4322 ] }, + { "id": "end_piece", "fg": [ 4325, 4327, 4326, 4324 ] }, + { "id": "unconnected", "fg": 4332 } ] }, { "id": "t_wall_y", "multitile": true, - "fg": 4273, + "fg": 4348, "additional_tiles": [ - { "id": "center", "fg": 4258 }, - { "id": "corner", "fg": [ 4260, 4262, 4261, 4259 ] }, - { "id": "t_connection", "fg": [ 4270, 4272, 4271, 4269 ] }, - { "id": "edge", "fg": [ 4264, 4263 ] }, - { "id": "end_piece", "fg": [ 4266, 4268, 4267, 4265 ] }, - { "id": "unconnected", "fg": 4273 } + { "id": "center", "fg": 4333 }, + { "id": "corner", "fg": [ 4335, 4337, 4336, 4334 ] }, + { "id": "t_connection", "fg": [ 4345, 4347, 4346, 4344 ] }, + { "id": "edge", "fg": [ 4339, 4338 ] }, + { "id": "end_piece", "fg": [ 4341, 4343, 4342, 4340 ] }, + { "id": "unconnected", "fg": 4348 } ] }, { "id": [ "t_water_dp", "t_swater_dp" ], "multitile": true, - "fg": 4292, - "bg": 3331, + "fg": 4367, + "bg": 3390, "additional_tiles": [ { "id": "center", - "bg": 3331, + "bg": 3390, "fg": [ - { "weight": 1, "sprite": 4274 }, - { "weight": 1, "sprite": 4275 }, - { "weight": 1, "sprite": 4276 }, - { "weight": 1, "sprite": 4277 } + { "weight": 1, "sprite": 4349 }, + { "weight": 1, "sprite": 4350 }, + { "weight": 1, "sprite": 4351 }, + { "weight": 1, "sprite": 4352 } ] }, - { "id": "corner", "bg": 3331, "fg": [ 4279, 4281, 4280, 4278 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 4289, 4291, 4290, 4288 ] }, - { "id": "edge", "bg": 3331, "fg": [ 4283, 4282 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 4285, 4287, 4286, 4284 ] }, - { "bg": 3331, "id": "unconnected", "fg": 4292 } + { "id": "corner", "bg": 3390, "fg": [ 4354, 4356, 4355, 4353 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 4364, 4366, 4365, 4363 ] }, + { "id": "edge", "bg": 3390, "fg": [ 4358, 4357 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 4360, 4362, 4361, 4359 ] }, + { "bg": 3390, "id": "unconnected", "fg": 4367 } ] }, { "id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ], "multitile": true, - "fg": 4292, - "bg": 3341, + "fg": 4367, + "bg": 3400, "additional_tiles": [ { "id": "center", - "bg": 3341, - "fg": [ { "weight": 1, "sprite": 4274 }, { "weight": 1, "sprite": 4275 }, { "weight": 1, "sprite": 4276 } ] + "bg": 3400, + "fg": [ { "weight": 1, "sprite": 4349 }, { "weight": 1, "sprite": 4350 }, { "weight": 1, "sprite": 4351 } ] }, - { "id": "corner", "bg": 3341, "fg": [ 4279, 4281, 4280, 4278 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 4289, 4291, 4290, 4288 ] }, - { "id": "edge", "bg": 3341, "fg": [ 4283, 4282 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 4285, 4287, 4286, 4284 ] }, - { "bg": 3341, "id": "unconnected", "fg": 4292 } + { "id": "corner", "bg": 3400, "fg": [ 4354, 4356, 4355, 4353 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 4364, 4366, 4365, 4363 ] }, + { "id": "edge", "bg": 3400, "fg": [ 4358, 4357 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 4360, 4362, 4361, 4359 ] }, + { "bg": 3400, "id": "unconnected", "fg": 4367 } ] }, { "id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ], "multitile": true, - "fg": 4292, - "bg": 3336, + "fg": 4367, + "bg": 3395, "additional_tiles": [ { "id": "center", - "bg": 3336, - "fg": [ { "weight": 1, "sprite": 4274 }, { "weight": 1, "sprite": 4275 }, { "weight": 1, "sprite": 4276 } ] + "bg": 3395, + "fg": [ { "weight": 1, "sprite": 4349 }, { "weight": 1, "sprite": 4350 }, { "weight": 1, "sprite": 4351 } ] }, - { "id": "corner", "bg": 3336, "fg": [ 4279, 4281, 4280, 4278 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 4289, 4291, 4290, 4288 ] }, - { "id": "edge", "bg": 3336, "fg": [ 4283, 4282 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 4285, 4287, 4286, 4284 ] }, - { "bg": 3336, "id": "unconnected", "fg": 4292 } + { "id": "corner", "bg": 3395, "fg": [ 4354, 4356, 4355, 4353 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 4364, 4366, 4365, 4363 ] }, + { "id": "edge", "bg": 3395, "fg": [ 4358, 4357 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 4360, 4362, 4361, 4359 ] }, + { "bg": 3395, "id": "unconnected", "fg": 4367 } ] }, { "id": [ "t_water_dp_season_winter", "t_swater_dp_season_winter" ], "multitile": true, - "fg": 4292, - "bg": 2811, + "fg": 4367, + "bg": 2870, "additional_tiles": [ { "id": "center", - "bg": 2811, - "fg": [ { "weight": 1, "sprite": 4274 }, { "weight": 1, "sprite": 4275 }, { "weight": 1, "sprite": 4276 } ] + "bg": 2870, + "fg": [ { "weight": 1, "sprite": 4349 }, { "weight": 1, "sprite": 4350 }, { "weight": 1, "sprite": 4351 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 4279, 4281, 4280, 4278 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 4289, 4291, 4290, 4288 ] }, - { "id": "edge", "bg": 2811, "fg": [ 4283, 4282 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 4285, 4287, 4286, 4284 ] }, - { "bg": 2811, "id": "unconnected", "fg": 4292 } + { "id": "corner", "bg": 2870, "fg": [ 4354, 4356, 4355, 4353 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 4364, 4366, 4365, 4363 ] }, + { "id": "edge", "bg": 2870, "fg": [ 4358, 4357 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 4360, 4362, 4361, 4359 ] }, + { "bg": 2870, "id": "unconnected", "fg": 4367 } ] }, { "id": "t_water_hot", - "fg": 4308, - "bg": 3331, + "fg": 4383, + "bg": 3390, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4293, "bg": 3331 }, - { "id": "corner", "fg": [ 4295, 4297, 4296, 4294 ], "bg": 3331 }, - { "id": "t_connection", "fg": [ 4305, 4307, 4306, 4304 ], "bg": 3331 }, - { "id": "edge", "fg": [ 4299, 4298 ], "bg": 3331 }, - { "id": "end_piece", "fg": [ 4301, 4303, 4302, 4300 ], "bg": 3331 }, - { "id": "unconnected", "fg": [ 4308, 4308 ], "bg": 3331 } + { "id": "center", "fg": 4368, "bg": 3390 }, + { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 3390 }, + { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 3390 }, + { "id": "edge", "fg": [ 4374, 4373 ], "bg": 3390 }, + { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 3390 }, + { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 3390 } ] }, { "id": "t_water_hot_season_summer", - "fg": 4308, - "bg": 3341, + "fg": 4383, + "bg": 3400, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4293, "bg": 3341 }, - { "id": "corner", "fg": [ 4295, 4297, 4296, 4294 ], "bg": 3341 }, - { "id": "t_connection", "fg": [ 4305, 4307, 4306, 4304 ], "bg": 3341 }, - { "id": "edge", "fg": [ 4299, 4298 ], "bg": 3341 }, - { "id": "end_piece", "fg": [ 4301, 4303, 4302, 4300 ], "bg": 3341 }, - { "id": "unconnected", "fg": [ 4308, 4308 ], "bg": 3341 } + { "id": "center", "fg": 4368, "bg": 3400 }, + { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 3400 }, + { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 3400 }, + { "id": "edge", "fg": [ 4374, 4373 ], "bg": 3400 }, + { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 3400 }, + { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 3400 } ] }, { "id": "t_water_hot_season_autumn", - "fg": 4308, - "bg": 3336, + "fg": 4383, + "bg": 3395, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4293, "bg": 3336 }, - { "id": "corner", "fg": [ 4295, 4297, 4296, 4294 ], "bg": 3336 }, - { "id": "t_connection", "fg": [ 4305, 4307, 4306, 4304 ], "bg": 3336 }, - { "id": "edge", "fg": [ 4299, 4298 ], "bg": 3336 }, - { "id": "end_piece", "fg": [ 4301, 4303, 4302, 4300 ], "bg": 3336 }, - { "id": "unconnected", "fg": [ 4308, 4308 ], "bg": 3336 } + { "id": "center", "fg": 4368, "bg": 3395 }, + { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 3395 }, + { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 3395 }, + { "id": "edge", "fg": [ 4374, 4373 ], "bg": 3395 }, + { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 3395 }, + { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 3395 } ] }, { "id": "t_water_hot_season_winter", - "fg": 4308, - "bg": 2811, + "fg": 4383, + "bg": 2870, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4293, "bg": 2811 }, - { "id": "corner", "fg": [ 4295, 4297, 4296, 4294 ], "bg": 2811 }, - { "id": "t_connection", "fg": [ 4305, 4307, 4306, 4304 ], "bg": 2811 }, - { "id": "edge", "fg": [ 4299, 4298 ], "bg": 2811 }, - { "id": "end_piece", "fg": [ 4301, 4303, 4302, 4300 ], "bg": 2811 }, - { "id": "unconnected", "fg": [ 4308, 4308 ], "bg": 2811 } + { "id": "center", "fg": 4368, "bg": 2870 }, + { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 2870 }, + { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 2870 }, + { "id": "edge", "fg": [ 4374, 4373 ], "bg": 2870 }, + { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 2870 }, + { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 2870 } ] }, { "id": [ "t_water_moving_dp", "t_swater_moving_dp" ], "multitile": true, - "fg": 4325, - "bg": 3331, + "fg": 4400, + "bg": 3390, "additional_tiles": [ - { "id": "center", "bg": 3331, "fg": [ { "weight": 1, "sprite": 4309 }, { "weight": 1, "sprite": 4310 } ] }, - { "id": "corner", "bg": 3331, "fg": [ 4312, 4314, 4313, 4311 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 4322, 4324, 4323, 4321 ] }, - { "id": "edge", "bg": 3331, "fg": [ 4316, 4315 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 4318, 4320, 4319, 4317 ] }, - { "bg": 3331, "id": "unconnected", "fg": 4325 } + { "id": "center", "bg": 3390, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, + { "id": "corner", "bg": 3390, "fg": [ 4387, 4389, 4388, 4386 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 4397, 4399, 4398, 4396 ] }, + { "id": "edge", "bg": 3390, "fg": [ 4391, 4390 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 4393, 4395, 4394, 4392 ] }, + { "bg": 3390, "id": "unconnected", "fg": 4400 } ] }, { "id": [ "t_water_moving_dp_season_summer", "t_swater_moving_dp_season_summer" ], "multitile": true, - "fg": 4325, - "bg": 3341, + "fg": 4400, + "bg": 3400, "additional_tiles": [ - { "id": "center", "bg": 3341, "fg": [ { "weight": 1, "sprite": 4309 }, { "weight": 1, "sprite": 4310 } ] }, - { "id": "corner", "bg": 3341, "fg": [ 4312, 4314, 4313, 4311 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 4322, 4324, 4323, 4321 ] }, - { "id": "edge", "bg": 3341, "fg": [ 4316, 4315 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 4318, 4320, 4319, 4317 ] }, - { "bg": 3341, "id": "unconnected", "fg": 4325 } + { "id": "center", "bg": 3400, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, + { "id": "corner", "bg": 3400, "fg": [ 4387, 4389, 4388, 4386 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 4397, 4399, 4398, 4396 ] }, + { "id": "edge", "bg": 3400, "fg": [ 4391, 4390 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 4393, 4395, 4394, 4392 ] }, + { "bg": 3400, "id": "unconnected", "fg": 4400 } ] }, { "id": [ "t_water_moving_dp_season_autumn", "t_swater_moving_dp_season_autumn" ], "multitile": true, - "fg": 4325, - "bg": 3336, + "fg": 4400, + "bg": 3395, "additional_tiles": [ - { "id": "center", "bg": 3336, "fg": [ { "weight": 1, "sprite": 4309 }, { "weight": 1, "sprite": 4310 } ] }, - { "id": "corner", "bg": 3336, "fg": [ 4312, 4314, 4313, 4311 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 4322, 4324, 4323, 4321 ] }, - { "id": "edge", "bg": 3336, "fg": [ 4316, 4315 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 4318, 4320, 4319, 4317 ] }, - { "bg": 3336, "id": "unconnected", "fg": 4325 } + { "id": "center", "bg": 3395, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, + { "id": "corner", "bg": 3395, "fg": [ 4387, 4389, 4388, 4386 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 4397, 4399, 4398, 4396 ] }, + { "id": "edge", "bg": 3395, "fg": [ 4391, 4390 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 4393, 4395, 4394, 4392 ] }, + { "bg": 3395, "id": "unconnected", "fg": 4400 } ] }, { "id": [ "t_water_moving_dp_season_winter", "t_swater_moving_dp_season_winter" ], "multitile": true, - "fg": 4325, - "bg": 2811, + "fg": 4400, + "bg": 2870, "additional_tiles": [ - { "id": "center", "bg": 2811, "fg": [ { "weight": 1, "sprite": 4309 }, { "weight": 1, "sprite": 4310 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 4312, 4314, 4313, 4311 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 4322, 4324, 4323, 4321 ] }, - { "id": "edge", "bg": 2811, "fg": [ 4316, 4315 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 4318, 4320, 4319, 4317 ] }, - { "bg": 2811, "id": "unconnected", "fg": 4325 } + { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, + { "id": "corner", "bg": 2870, "fg": [ 4387, 4389, 4388, 4386 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 4397, 4399, 4398, 4396 ] }, + { "id": "edge", "bg": 2870, "fg": [ 4391, 4390 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 4393, 4395, 4394, 4392 ] }, + { "bg": 2870, "id": "unconnected", "fg": 4400 } ] }, { "id": [ "t_water_moving_sh", "t_swater_moving_sh" ], "multitile": true, - "fg": 4344, - "bg": 3331, + "fg": 4419, + "bg": 3390, "additional_tiles": [ { "id": "center", - "bg": 3331, + "bg": 3390, "fg": [ - { "weight": 1, "sprite": 4326 }, - { "weight": 1, "sprite": 4327 }, - { "weight": 1, "sprite": 4328 }, - { "weight": 1, "sprite": 4329 } + { "weight": 1, "sprite": 4401 }, + { "weight": 1, "sprite": 4402 }, + { "weight": 1, "sprite": 4403 }, + { "weight": 1, "sprite": 4404 } ] }, - { "id": "corner", "bg": 3331, "fg": [ 4331, 4333, 4332, 4330 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 4341, 4343, 4342, 4340 ] }, - { "id": "edge", "bg": 3331, "fg": [ 4335, 4334 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 4337, 4339, 4338, 4336 ] }, - { "bg": 3331, "id": "unconnected", "fg": 4344 } + { "id": "corner", "bg": 3390, "fg": [ 4406, 4408, 4407, 4405 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 4416, 4418, 4417, 4415 ] }, + { "id": "edge", "bg": 3390, "fg": [ 4410, 4409 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 4412, 4414, 4413, 4411 ] }, + { "bg": 3390, "id": "unconnected", "fg": 4419 } ] }, { "id": [ "t_water_moving_sh_season_summer", "t_swater_moving_sh_season_summer" ], "multitile": true, - "fg": 4344, - "bg": 3341, + "fg": 4419, + "bg": 3400, "additional_tiles": [ { "id": "center", - "bg": 3341, + "bg": 3400, "fg": [ - { "weight": 1, "sprite": 4326 }, - { "weight": 1, "sprite": 4327 }, - { "weight": 1, "sprite": 4328 }, - { "weight": 1, "sprite": 4329 } + { "weight": 1, "sprite": 4401 }, + { "weight": 1, "sprite": 4402 }, + { "weight": 1, "sprite": 4403 }, + { "weight": 1, "sprite": 4404 } ] }, - { "id": "corner", "bg": 3341, "fg": [ 4331, 4333, 4332, 4330 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 4341, 4343, 4342, 4340 ] }, - { "id": "edge", "bg": 3341, "fg": [ 4335, 4334 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 4337, 4339, 4338, 4336 ] }, - { "bg": 3341, "id": "unconnected", "fg": 4344 } + { "id": "corner", "bg": 3400, "fg": [ 4406, 4408, 4407, 4405 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 4416, 4418, 4417, 4415 ] }, + { "id": "edge", "bg": 3400, "fg": [ 4410, 4409 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 4412, 4414, 4413, 4411 ] }, + { "bg": 3400, "id": "unconnected", "fg": 4419 } ] }, { "id": [ "t_water_moving_sh_season_autumn", "t_swater_moving_sh_season_autumn" ], "multitile": true, - "fg": 4344, - "bg": 3336, + "fg": 4419, + "bg": 3395, "additional_tiles": [ { "id": "center", - "bg": 3336, + "bg": 3395, "fg": [ - { "weight": 1, "sprite": 4326 }, - { "weight": 1, "sprite": 4327 }, - { "weight": 1, "sprite": 4328 }, - { "weight": 1, "sprite": 4329 } + { "weight": 1, "sprite": 4401 }, + { "weight": 1, "sprite": 4402 }, + { "weight": 1, "sprite": 4403 }, + { "weight": 1, "sprite": 4404 } ] }, - { "id": "corner", "bg": 3336, "fg": [ 4331, 4333, 4332, 4330 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 4341, 4343, 4342, 4340 ] }, - { "id": "edge", "bg": 3336, "fg": [ 4335, 4334 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 4337, 4339, 4338, 4336 ] }, - { "bg": 3336, "id": "unconnected", "fg": 4344 } + { "id": "corner", "bg": 3395, "fg": [ 4406, 4408, 4407, 4405 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 4416, 4418, 4417, 4415 ] }, + { "id": "edge", "bg": 3395, "fg": [ 4410, 4409 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 4412, 4414, 4413, 4411 ] }, + { "bg": 3395, "id": "unconnected", "fg": 4419 } ] }, { "id": [ "t_water_moving_sh_season_winter", "t_swater_moving_sh_season_winter" ], "multitile": true, - "fg": 4344, - "bg": 2811, + "fg": 4419, + "bg": 2870, "additional_tiles": [ { "id": "center", - "bg": 2811, + "bg": 2870, "fg": [ - { "weight": 1, "sprite": 4326 }, - { "weight": 1, "sprite": 4327 }, - { "weight": 1, "sprite": 4328 }, - { "weight": 1, "sprite": 4329 } + { "weight": 1, "sprite": 4401 }, + { "weight": 1, "sprite": 4402 }, + { "weight": 1, "sprite": 4403 }, + { "weight": 1, "sprite": 4404 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 4331, 4333, 4332, 4330 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 4341, 4343, 4342, 4340 ] }, - { "id": "edge", "bg": 2811, "fg": [ 4335, 4334 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 4337, 4339, 4338, 4336 ] }, - { "bg": 2811, "id": "unconnected", "fg": 4344 } + { "id": "corner", "bg": 2870, "fg": [ 4406, 4408, 4407, 4405 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 4416, 4418, 4417, 4415 ] }, + { "id": "edge", "bg": 2870, "fg": [ 4410, 4409 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 4412, 4414, 4413, 4411 ] }, + { "bg": 2870, "id": "unconnected", "fg": 4419 } ] }, { "id": [ "t_water_pool", "t_water_pool_shallow" ], "multitile": true, - "fg": 4359, + "fg": 4434, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 4360 }, { "weight": 1, "sprite": 4361 }, { "weight": 1, "sprite": 4362 } ] + "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] }, - { "id": "corner", "fg": [ 4346, 4348, 4347, 4345 ] }, - { "id": "t_connection", "fg": [ 4356, 4358, 4357, 4355 ] }, - { "id": "edge", "fg": [ 4350, 4349 ] }, - { "id": "end_piece", "fg": [ 4352, 4354, 4353, 4351 ] }, - { "id": "unconnected", "fg": [ 4359, 4359 ] } + { "id": "corner", "fg": [ 4421, 4423, 4422, 4420 ] }, + { "id": "t_connection", "fg": [ 4431, 4433, 4432, 4430 ] }, + { "id": "edge", "fg": [ 4425, 4424 ] }, + { "id": "end_piece", "fg": [ 4427, 4429, 4428, 4426 ] }, + { "id": "unconnected", "fg": [ 4434, 4434 ] } ] }, { "id": [ "t_water_sh", "t_swater_sh" ], "multitile": true, - "fg": 4378, - "bg": 3331, + "fg": 4453, + "bg": 3390, "additional_tiles": [ { "id": "center", - "bg": 3331, + "bg": 3390, "fg": [ - { "weight": 1, "sprite": 4360 }, - { "weight": 1, "sprite": 4361 }, - { "weight": 1, "sprite": 4362 }, - { "weight": 1, "sprite": 4363 } + { "weight": 1, "sprite": 4435 }, + { "weight": 1, "sprite": 4436 }, + { "weight": 1, "sprite": 4437 }, + { "weight": 1, "sprite": 4438 } ] }, - { "id": "corner", "bg": 3331, "fg": [ 4365, 4367, 4366, 4364 ] }, - { "id": "t_connection", "bg": 3331, "fg": [ 4375, 4377, 4376, 4374 ] }, - { "id": "edge", "bg": 3331, "fg": [ 4369, 4368 ] }, - { "id": "end_piece", "bg": 3331, "fg": [ 4371, 4373, 4372, 4370 ] }, - { "bg": 3331, "id": "unconnected", "fg": 4378 } + { "id": "corner", "bg": 3390, "fg": [ 4440, 4442, 4441, 4439 ] }, + { "id": "t_connection", "bg": 3390, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "id": "edge", "bg": 3390, "fg": [ 4444, 4443 ] }, + { "id": "end_piece", "bg": 3390, "fg": [ 4446, 4448, 4447, 4445 ] }, + { "bg": 3390, "id": "unconnected", "fg": 4453 } ] }, { "id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ], "multitile": true, - "fg": 4378, - "bg": 3341, + "fg": 4453, + "bg": 3400, "additional_tiles": [ { "id": "center", - "bg": 3341, - "fg": [ { "weight": 1, "sprite": 4360 }, { "weight": 1, "sprite": 4361 }, { "weight": 1, "sprite": 4362 } ] + "bg": 3400, + "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] }, - { "id": "corner", "bg": 3341, "fg": [ 4365, 4367, 4366, 4364 ] }, - { "id": "t_connection", "bg": 3341, "fg": [ 4375, 4377, 4376, 4374 ] }, - { "id": "edge", "bg": 3341, "fg": [ 4369, 4368 ] }, - { "id": "end_piece", "bg": 3341, "fg": [ 4371, 4373, 4372, 4370 ] }, - { "bg": 3341, "id": "unconnected", "fg": 4378 } + { "id": "corner", "bg": 3400, "fg": [ 4440, 4442, 4441, 4439 ] }, + { "id": "t_connection", "bg": 3400, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "id": "edge", "bg": 3400, "fg": [ 4444, 4443 ] }, + { "id": "end_piece", "bg": 3400, "fg": [ 4446, 4448, 4447, 4445 ] }, + { "bg": 3400, "id": "unconnected", "fg": 4453 } ] }, { "id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ], "multitile": true, - "fg": 4378, - "bg": 3336, + "fg": 4453, + "bg": 3395, "additional_tiles": [ { "id": "center", - "bg": 3336, - "fg": [ { "weight": 1, "sprite": 4360 }, { "weight": 1, "sprite": 4361 }, { "weight": 1, "sprite": 4362 } ] + "bg": 3395, + "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] }, - { "id": "corner", "bg": 3336, "fg": [ 4365, 4367, 4366, 4364 ] }, - { "id": "t_connection", "bg": 3336, "fg": [ 4375, 4377, 4376, 4374 ] }, - { "id": "edge", "bg": 3336, "fg": [ 4369, 4368 ] }, - { "id": "end_piece", "bg": 3336, "fg": [ 4371, 4373, 4372, 4370 ] }, - { "bg": 3336, "id": "unconnected", "fg": 4378 } + { "id": "corner", "bg": 3395, "fg": [ 4440, 4442, 4441, 4439 ] }, + { "id": "t_connection", "bg": 3395, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "id": "edge", "bg": 3395, "fg": [ 4444, 4443 ] }, + { "id": "end_piece", "bg": 3395, "fg": [ 4446, 4448, 4447, 4445 ] }, + { "bg": 3395, "id": "unconnected", "fg": 4453 } ] }, { "id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ], "multitile": true, - "fg": 4378, - "bg": 2811, + "fg": 4453, + "bg": 2870, "additional_tiles": [ { "id": "center", - "bg": 2811, - "fg": [ { "weight": 1, "sprite": 4360 }, { "weight": 1, "sprite": 4361 }, { "weight": 1, "sprite": 4362 } ] + "bg": 2870, + "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] }, - { "id": "corner", "bg": 2811, "fg": [ 4365, 4367, 4366, 4364 ] }, - { "id": "t_connection", "bg": 2811, "fg": [ 4375, 4377, 4376, 4374 ] }, - { "id": "edge", "bg": 2811, "fg": [ 4369, 4368 ] }, - { "id": "end_piece", "bg": 2811, "fg": [ 4371, 4373, 4372, 4370 ] }, - { "bg": 2811, "id": "unconnected", "fg": 4378 } + { "id": "corner", "bg": 2870, "fg": [ 4440, 4442, 4441, 4439 ] }, + { "id": "t_connection", "bg": 2870, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "id": "edge", "bg": 2870, "fg": [ 4444, 4443 ] }, + { "id": "end_piece", "bg": 2870, "fg": [ 4446, 4448, 4447, 4445 ] }, + { "bg": 2870, "id": "unconnected", "fg": 4453 } ] }, - { "id": [ "t_window", "t_window_alarm" ], "fg": 4379 }, - { "id": "t_window_empty", "fg": 4382 }, - { "id": "t_window_domestic", "fg": 4380 }, - { "id": "t_window_open", "fg": 4386 }, - { "id": "t_window_no_curtains", "fg": 4383 }, - { "id": "t_window_no_curtains_open", "fg": 4384 }, - { "id": "t_woodchips", "fg": 4388 }, - { "id": "t_woodchips_season_winter", "fg": 2811 }, + { "id": [ "t_window", "t_window_alarm" ], "fg": 4454 }, + { "id": "t_window_empty", "fg": 4457 }, + { "id": "t_window_domestic", "fg": 4455 }, + { "id": "t_window_open", "fg": 4461 }, + { "id": "t_window_no_curtains", "fg": 4458 }, + { "id": "t_window_no_curtains_open", "fg": 4459 }, + { "id": "t_woodchips", "fg": 4463 }, + { "id": "t_woodchips_season_winter", "fg": 2870 }, { "id": [ "tr_downspout_funnel", "tr_pit", "tr_lava", "tr_ledge", "tr_glass_pit", "tr_spike_pit" ], "fg": 1104 }, - { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 4393 }, { "weight": 1, "sprite": 4394 } ] }, - { "id": "tr_nailboard", "fg": 4389, "bg": 2043 }, - { "id": "tr_portal", "fg": 4397 }, - { "id": "tr_tripwire", "fg": 4399 }, + { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 4468 }, { "weight": 1, "sprite": 4469 } ] }, + { "id": "tr_nailboard", "fg": 4464, "bg": 2082 }, + { "id": "tr_portal", "fg": 4472 }, + { "id": "tr_tripwire", "fg": 4474 }, { "id": [ "vp_forklift_fork" ], - "fg": [ 4402, 4404, 4403, 4401 ], + "fg": [ 4477, 4479, 4478, 4476 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4402, 4404, 4403, 4401 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4477, 4479, 4478, 4476 ] } ] }, { "id": [ "vp_forklift_fork_horizontal_front" ], - "fg": [ 4403, 4401, 4402, 4404 ], + "fg": [ 4478, 4476, 4477, 4479 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4403, 4401, 4402, 4404 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4478, 4476, 4477, 4479 ] } ] }, { "id": "vp_saddle_motor", - "fg": [ 4406, 4408, 4407, 4405 ], + "fg": [ 4481, 4483, 4482, 4480 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4406, 4408, 4407, 4405 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4481, 4483, 4482, 4480 ] } ] }, { "id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ], - "fg": [ 4414, 4416, 4415, 4413 ], + "fg": [ 4489, 4491, 4490, 4488 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4414, 4416, 4415, 4413 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4489, 4491, 4490, 4488 ] } ] }, { "id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ], - "fg": [ 4410, 4412, 4411, 4409 ], + "fg": [ 4485, 4487, 4486, 4484 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4410, 4412, 4411, 4409 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4485, 4487, 4486, 4484 ] } ] }, { "id": [ "vp_wheel_small_scooter", "vp_wheel_small_scooter_steerable" ], - "fg": [ 4422, 4424, 4423, 4421 ], + "fg": [ 4497, 4499, 4498, 4496 ], "rotates": true }, - { "id": "vp_wheel_small_scooter_rear", "fg": [ 4418, 4420, 4419, 4417 ], "rotates": true }, + { "id": "vp_wheel_small_scooter_rear", "fg": [ 4493, 4495, 4494, 4492 ], "rotates": true }, { "id": "vp_battery_charger", - "fg": [ 4425, 4425, 4425, 4425 ], - "bg": 7934, + "fg": [ 4500, 4500, 4500, 4500 ], + "bg": 8025, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4425, 4425, 4425, 4425 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4500, 4500, 4500, 4500 ] } ] }, { "id": "vp_recharge_station", - "fg": [ 4426, 4426, 4426, 4426 ], - "bg": 7934, + "fg": [ 4501, 4501, 4501, 4501 ], + "bg": 8025, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4426, 4426, 4426, 4426 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4501, 4501, 4501, 4501 ] } ] }, { "id": "vp_spike_wood", - "fg": 4427, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 4427 } ] - }, - { "id": "fd_fire", "fg": 1105 }, - { "id": "fd_hot_air_sauna", "fg": 1106 }, - { "id": "f_target", "fg": 1299 }, - { "id": "f_chest", "fg": 1300 }, - { "id": "f_dive_block", "fg": 1301 }, - { "id": "f_foot_locker", "fg": 1302 }, - { "id": "f_sand_castle", "fg": 1303 }, - { "id": "f_shredder", "fg": 1304 }, - { "id": "f_tourist_table", "fg": 1305 }, - { "id": "f_exodii_pump", "fg": 1312 }, - { "id": "f_beaded_door", "fg": 1336 }, - { "id": "f_beaded_door_o", "fg": 1337 }, - { "id": "f_black_eyed_susan", "fg": 1370 }, - { "id": "f_chimney", "fg": 1402 }, - { "id": "f_curtain", "fg": 1436 }, - { "id": "f_curtain_open", "fg": 1437 }, - { "id": "f_lily", "fg": 1482 }, - { "id": "f_skin_groundsheet", "fg": 1615 }, - { "id": "acidchitin_plate", "fg": 1694 }, - { "id": "acoustic_guitar", "fg": 1695 }, - { "id": "alloy_plate", "fg": 1696 }, - { "id": "armor_lorica", "fg": 1697 }, - { "id": "banjo", "fg": 1698 }, - { "id": "bionic_general", "fg": 1699 }, - { "id": "bodypillow", "fg": 1700 }, - { "id": "bookplate", "fg": 1701 }, - { "id": "bot_copbot", "fg": 1702 }, - { "id": "bot_riotbot", "fg": 1703 }, - { "id": "broken_copbot", "fg": 1704 }, - { "id": "broken_riotbot", "fg": 1705 }, - { "id": "chainmail_hauberk", "fg": 1706 }, - { "id": "char_smoker", "fg": 1707 }, - { "id": "dehydrator", "fg": 1708 }, - { "id": "folding_poncho_on", "fg": 1709 }, - { "id": "gambeson", "fg": 1710 }, - { "id": "glass_sheet", "fg": 1711 }, - { "id": "gown", "fg": 1712 }, - { "id": "guitar_electric", "fg": 1713 }, - { "id": "hand_paddles", "fg": 1715 }, - { "id": "i4_combustion", "fg": 1716 }, - { "id": "inflatable_boat", "fg": 1717 }, - { "id": "inflatable_section", "fg": 1718 }, - { "id": "lawnmower", "fg": 1719 }, - { "id": "mattress", "fg": 1720 }, - { "id": "mil_plate", "fg": 1721 }, - { "id": "rake_plastic", "fg": 1723 }, - { "id": "reinforced_glass_sheet", "fg": 1724 }, - { "id": "robe", "fg": 1725 }, - { "id": "rock_quern", "fg": 1726 }, - { "id": "saxophone", "fg": 1727 }, - { "id": "sheet", "fg": 1728 }, - { "id": "steel_plate", "fg": 1729 }, - { "id": "telepad", "fg": 1730 }, - { "id": "trumpet", "fg": 1731 }, - { "id": "tuba", "fg": 1732 }, - { "id": "tunic", "fg": 1733 }, - { "id": "tunic_rag", "fg": 1734 }, - { "id": "umbrella", "fg": 1735 }, - { "id": "wheel_armor", "fg": 1736 }, - { "id": "wheel_wide", "fg": 1737 }, - { "id": "wheel_wide_or", "fg": 1738 }, - { "id": "10mm_fmj", "fg": 1739 }, - { "id": "120mm_HEAT", "fg": 1740 }, - { "id": "123ln", "fg": 1741 }, - { "id": "12mm", "fg": 1742 }, - { "id": "20x66_beanbag", "fg": 1743 }, - { "id": "20x66_flare", "fg": 1744 }, - { "id": "20x66_flechette", "fg": 1745 }, - { "id": "20x66_frag", "fg": 1746 }, - { "id": "20x66_inc", "fg": 1747 }, - { "id": "20x66_shot", "fg": 1748 }, - { "id": "20x66_slug", "fg": 1749 }, - { "id": "223", "fg": 1750 }, - { "id": "22_cb", "fg": 1751 }, - { "id": "22_fmj", "fg": 1752 }, - { "id": "22_lr", "fg": 1753 }, - { "id": "22_ratshot", "fg": 1754 }, - { "id": "270win_jsp", "fg": 1755 }, - { "id": "3006", "fg": 1756 }, - { "id": "3006_incendiary", "fg": 1757 }, - { "id": "3006fmj", "fg": 1758 }, - { "id": "300_winmag", "fg": 1759 }, - { "id": "300blk", "fg": 1760 }, - { "id": "300blk_ss", "fg": 1761 }, - { "id": "308", "fg": 1762 }, - { "id": "32_acp", "fg": 1763 }, - { "id": "357mag_fmj", "fg": 1764 }, - { "id": "357mag_jhp", "fg": 1765 }, - { "id": "357sig_fmj", "fg": 1766 }, - { "id": "357sig_jhp", "fg": 1767 }, - { "id": "380_FMJ", "fg": 1768 }, - { "id": "380_JHP", "fg": 1769 }, - { "id": "380_p", "fg": 1770 }, - { "id": "38_fmj", "fg": 1771 }, - { "id": "38_special", "fg": 1772 }, - { "id": "38_super", "fg": 1773 }, - { "id": "38super_fmj", "fg": 1774 }, - { "id": "40fmj", "fg": 1775 }, - { "id": "40mm_flashbang", "fg": 1776 }, - { "id": "40mm_incendiary", "fg": 1777 }, - { "id": "40mm_slug", "fg": 1778 }, - { "id": "40sw", "fg": 1779 }, - { "id": "40x46mm_grenade", "fg": 1780 }, - { "id": "40x46mm_m1006", "fg": 1781 }, - { "id": "40x46mm_m433", "fg": 1782 }, - { "id": "40x46mm_m576", "fg": 1783 }, - { "id": "40x46mm_m651", "fg": 1784 }, - { "id": "40x53mm_buckshot_m169", "fg": 1785 }, - { "id": "40x53mm_flechette_m169", "fg": 1786 }, - { "id": "40x53mm_grenade", "fg": 1787 }, - { "id": "40x53mm_m1001", "fg": 1788 }, - { "id": "40x53mm_m430a1", "fg": 1789 }, - { "id": "40x53mm_slug_m169", "fg": 1790 }, - { "id": "410shot_000", "fg": 1791 }, - { "id": "44fmj", "fg": 1792 }, - { "id": "44magnum", "fg": 1793 }, - { "id": "454_Casull", "fg": 1794 }, - { "id": "4570_low", "fg": 1795 }, - { "id": "4570_pen", "fg": 1796 }, - { "id": "4570_sp", "fg": 1797 }, - { "id": "45_acp", "fg": 1798 }, - { "id": "45_jhp", "fg": 1799 }, - { "id": "45_super", "fg": 1800 }, - { "id": "45colt_jhp", "fg": 1801 }, - { "id": "460_fmj", "fg": 1802 }, - { "id": "460_rowland", "fg": 1803 }, - { "id": "46mm", "fg": 1804 }, - { "id": "500_Magnum", "fg": 1805 }, - { "id": "50_incendiary", "fg": 1806 }, - { "id": "50_mk211", "fg": 1807 }, - { "id": "50bmg", "fg": 1808 }, - { "id": "50match", "fg": 1809 }, - { "id": "50ss", "fg": 1810 }, - { "id": "545", "fg": 1811 }, - { "id": "545_ap", "fg": 1812 }, - { "id": "556", "fg": 1813 }, - { "id": "556_incendiary", "fg": 1814 }, - { "id": "57mm", "fg": 1815 }, - { "id": "5x50dart", "fg": 1816 }, - { "id": "5x50heavy", "fg": 1817 }, - { "id": "66mm_HEAT", "fg": 1818 }, - { "id": "700nx", "fg": 1819 }, - { "id": "762_25", "fg": 1820 }, - { "id": "762_25hot", "fg": 1821 }, - { "id": "762_25typeP", "fg": 1822 }, - { "id": "762_51", "fg": 1823 }, - { "id": "762_51_incendiary", "fg": 1824 }, - { "id": "762_54R", "fg": 1825 }, - { "id": "762_m43", "fg": 1826 }, - { "id": "762_m87", "fg": 1827 }, - { "id": "84x246mm_he", "fg": 1828 }, - { "id": "84x246mm_hedp", "fg": 1829 }, - { "id": "84x246mm_smoke", "fg": 1830 }, - { "id": "8mm_bootleg", "fg": 1831 }, - { "id": "8mm_caseless", "fg": 1832 }, - { "id": "8mm_civilian", "fg": 1833 }, - { "id": "8mm_fmj", "fg": 1834 }, - { "id": "8mm_hvp", "fg": 1835 }, - { "id": "8mm_inc", "fg": 1836 }, - { "id": "8mm_jhp", "fg": 1837 }, - { "id": "9mm", "fg": 1838 }, - { "id": "9mmP", "fg": 1839 }, - { "id": "9mmfmj", "fg": 1840 }, - { "id": "9x18mm", "fg": 1841 }, - { "id": "9x18mmP2", "fg": 1842 }, - { "id": "9x18mmfmj", "fg": 1843 }, - { "id": "RPG-7_ammo", "fg": 1844 }, - { "id": "RPG-7_og7v", "fg": 1845 }, - { "id": "RPG-7_pg7vr", "fg": 1846 }, - { "id": "RPG-7_tbg7v", "fg": 1847 }, - { "id": "atgm_heat", "fg": 1848 }, - { "id": "m235tpa", "fg": 1849 }, - { "id": "shot_00", "fg": 1850 }, - { "id": "shot_beanbag", "fg": 1851 }, - { "id": "shot_bird", "fg": 1852 }, - { "id": "shot_dragon", "fg": 1853 }, - { "id": "shot_flechette", "fg": 1854 }, - { "id": "shot_he", "fg": 1855 }, - { "id": "shot_scrap", "fg": 1856 }, - { "id": "shot_slug", "fg": 1857 }, - { "id": "1895sbl", "fg": 1878 }, - { "id": "AT4", "fg": 1879 }, - { "id": "LAW", "fg": 1880 }, - { "id": "M24", "fg": 1881 }, - { "id": "RPG", "fg": 1882 }, - { "id": "USAS_12", "fg": 1883 }, - { "id": "airspeargun", "fg": 1884 }, - { "id": "ak74", "fg": 1886 }, - { "id": "american_180", "fg": 1887 }, - { "id": "an94", "fg": 1888 }, - { "id": "ar10", "fg": 1889 }, - { "id": "ar15", "fg": 1890 }, - { "id": "arx160", "fg": 1891 }, - { "id": "as50", "fg": 1892 }, - { "id": "atgm_launcher", "fg": 1893 }, - { "id": "bbgun", "fg": 1894 }, - { "id": "bfg50", "fg": 1895 }, - { "id": "bh_m89", "fg": 1896 }, - { "id": "blunderbuss", "fg": 1897 }, - { "id": "browning_blr", "fg": 1898 }, - { "id": "chemical_thrower", "fg": 1900 }, - { "id": "coilgun", "fg": 1901 }, - { "id": "colt_lightning", "fg": 1902 }, - { "id": "colt_ro635", "fg": 1903 }, - { "id": "combination_gun", "fg": 1904 }, - { "id": "cx4", "fg": 1905 }, - { "id": "doublespeargun", "fg": 1906 }, - { "id": "emp_gun", "fg": 1907 }, - { "id": "famas", "fg": 1908 }, - { "id": "flamethrower", "fg": 1909 }, - { "id": "fn_fal", "fg": 1910 }, - { "id": "fs2000", "fg": 1911 }, - { "id": "ftk93", "fg": 1912 }, - { "id": "garand", "fg": 1913 }, - { "id": "heavy_rail_rifle", "fg": 1914 }, - { "id": "helsing", "fg": 1915 }, - { "id": "henry_big_boy", "fg": 1916 }, - { "id": "hk417_13", "fg": 1917 }, - { "id": "hk_g3", "fg": 1918 }, - { "id": "hk_g36", "fg": 1919 }, - { "id": "hk_g80", "fg": 1920 }, - { "id": "hk_mp5k", "fg": 1921 }, - { "id": "hk_mp5sd", "fg": 1922 }, - { "id": "iwi_tavor_x95_300blk", "fg": 1923 }, - { "id": "ksg-25", "fg": 1924 }, - { "id": "ksg", "fg": 1925 }, - { "id": "ksub2000", "fg": 1926 }, - { "id": "laser_cannon", "fg": 1927 }, - { "id": "laser_rifle", "fg": 1928 }, - { "id": "lever_shotgun", "fg": 1929 }, - { "id": "longrifle_flintlock", "fg": 1930 }, - { "id": "m107a1", "fg": 1931 }, - { "id": "m110a1", "fg": 1932 }, - { "id": "m134", "fg": 1933 }, - { "id": "m14ebr", "fg": 1934 }, - { "id": "m1903", "fg": 1937 }, - { "id": "m1918", "fg": 1938 }, - { "id": "m1a", "fg": 1939 }, - { "id": "m2010", "fg": 1940 }, - { "id": "m202_flash", "fg": 1941 }, - { "id": "m231pfw", "fg": 1942 }, - { "id": "m240", "fg": 1943 }, - { "id": "m27_assault_rifle_var_h&k416a5", "fg": 1945 }, - { "id": "m27_assault_rifle_var_m27iar", "fg": 1946 }, - { "id": "m27_assault_rifle_var_m38dmr", "fg": 1947 }, - { "id": "m27_assault_rifle_var_scar_l", "fg": 1948 }, - { "id": "m2browning", "fg": 1949 }, - { "id": "m2browning_sawn", "fg": 1950 }, - { "id": "m3_carlgustav", "fg": 1951 }, - { "id": "m4_carbine_var_m4a1", "fg": 1952 }, - { "id": "m4_carlgustav", "fg": 1953 }, - { "id": "m79", "fg": 1955 }, - { "id": "mark19", "fg": 1956 }, - { "id": "marlin_9a", "fg": 1957 }, - { "id": "mininuke_launcher", "fg": 1958 }, - { "id": "mosin44", "fg": 1959 }, - { "id": "mosin44_ebr", "fg": 1960 }, - { "id": "mosin91_30", "fg": 1961 }, - { "id": "mosin91_30_ebr", "fg": 1962 }, - { "id": "mossberg_500", "fg": 1963 }, - { "id": "mossberg_500_var_mossberg_500_security", "fg": 1964 }, - { "id": "mossberg_590", "fg": 1965 }, - { "id": "mossberg_590_var_SPAS_12", "fg": 1966 }, - { "id": "mossberg_930", "fg": 1967 }, - { "id": "mossberg_930_var_m1014", "fg": 1968 }, - { "id": "mp18", "fg": 1969 }, - { "id": "needlegun", "fg": 1971 }, - { "id": "pamd68", "fg": 1972 }, - { "id": "pamd71z", "fg": 1973 }, - { "id": "pipe_combination_gun", "fg": 1974 }, - { "id": "plasma_gun", "fg": 1975 }, - { "id": "plasma_rifle", "fg": 1976 }, - { "id": "ppsh", "fg": 1977 }, - { "id": "rebar_rifle", "fg": 1978 }, - { "id": "remington700_270", "fg": 1979 }, - { "id": "remington_700", "fg": 1980 }, - { "id": "remington_870", "fg": 1981 }, - { "id": "remington_870_breacher", "fg": 1982 }, - { "id": "remington_870_express", "fg": 1983 }, - { "id": "remington_870_var_browning_a5", "fg": 1984 }, - { "id": "remington_870_var_remington_1100", "fg": 1985 }, - { "id": "rifle_flintlock", "fg": 1986 }, - { "id": "rm120c", "fg": 1987 }, - { "id": "rm20", "fg": 1988 }, - { "id": "rm298", "fg": 1989 }, - { "id": "rm451_flamethrower", "fg": 1990 }, - { "id": "rm51_assault_rifle", "fg": 1991 }, - { "id": "rm614_lmg", "fg": 1992 }, - { "id": "rm802", "fg": 1993 }, - { "id": "rm88_battle_rifle", "fg": 1994 }, - { "id": "ruger_1022", "fg": 1995 }, - { "id": "ruger_mini", "fg": 1996 }, - { "id": "saiga_12", "fg": 1997 }, - { "id": "saiga_410", "fg": 1998 }, - { "id": "savage_111f", "fg": 1999 }, - { "id": "scar_h", "fg": 2000 }, - { "id": "sharps", "fg": 2001 }, - { "id": "shotgun_410", "fg": 2002 }, - { "id": "shotgun_d", "fg": 2003 }, - { "id": "shotgun_s", "fg": 2004 }, - { "id": "sig552", "fg": 2005 }, - { "id": "sig_mcx_rattler_sbr", "fg": 2006 }, - { "id": "skorpion_82", "fg": 2007 }, - { "id": "sks", "fg": 2008 }, - { "id": "smg_9mm", "fg": 2010 }, - { "id": "speargun", "fg": 2011 }, - { "id": "sten", "fg": 2012 }, - { "id": "steyr_aug", "fg": 2013 }, - { "id": "surv_rocket_launcher", "fg": 2014 }, - { "id": "survivor_special_700", "fg": 2015 }, - { "id": "tac50", "fg": 2016 }, - { "id": "tavor_12", "fg": 2017 }, - { "id": "tihar", "fg": 2018 }, - { "id": "tommygun", "fg": 2019 }, - { "id": "trex_gun", "fg": 2020 }, - { "id": "weatherby_5", "fg": 2021 }, - { "id": "win70", "fg": 2022 }, - { "id": "winchester_1887", "fg": 2023 }, - { "id": "winchester_1897", "fg": 2024 }, - { "id": "iceaxe", "fg": 2027 }, - { "id": "rifle_case_soft", "fg": 2032 }, - { "id": "rifle_case_soft_2", "fg": 2033 }, - { "id": "rifle_case_soft_leather_2", "fg": 2035 }, - { "id": "rucksack", "fg": 2036 }, - { "id": "compgreatbow", "fg": 2045 }, - { "id": "compositebow", "fg": 2046 }, - { "id": "hybridbow", "fg": 2047 }, - { "id": "longbow", "fg": 2048 }, - { "id": "recurbow", "fg": 2049 }, - { "id": "reflexbow", "fg": 2050 }, - { "id": "reflexrecurvebow", "fg": 2051 }, - { "id": "selfbow", "fg": 2052 }, - { "id": "shortbow", "fg": 2053 }, - { "id": "woodgreatbow", "fg": 2054 }, - { "id": "oxygen_cylinder", "fg": 2059 }, - { "id": "oxygen_tank", "fg": 2060 }, - { "id": "tinyweldtank", "fg": 2061 }, - { "id": "weldtank", "fg": 2062 }, - { "id": "cot", "fg": 2063 }, - { "id": "armguard_soft", "fg": 2064 }, - { "id": "chestwrap_leather", "fg": 2065 }, - { "id": "trenchcoat_leather", "fg": 2066 }, - { "id": "bat_nerf", "fg": 2067 }, - { "id": "golf_bag", "fg": 2068 }, - { "id": "polycarbonate_sheet", "fg": 2069 }, - { "id": "screen_mesh", "fg": 2070 }, - { "id": "bagpipes", "fg": 2071 }, - { "id": "caltrops", "fg": 2072 }, - { "id": "jumper_cable_heavy", "fg": 2073 }, - { "id": "scythe", "fg": 2074 }, - { "id": "motorbike_armor", "fg": 2075 }, - { "id": "rack_test_tube", "fg": 2076 }, - { "id": "bowl_clay", "fg": 2079 }, - { "id": "clay_hydria", "fg": 2080 }, - { "id": "clay_pot", "fg": 2081 }, - { "id": "clay_quern", "fg": 2082 }, - { "id": "clay_watercont", "fg": 2083 }, - { "id": "jug_clay", "fg": 2084 }, - { "id": "bullet_crossbow", "fg": 2148 }, - { "id": "compcrossbow", "fg": 2149 }, - { "id": "compositecrossbow", "fg": 2150 }, - { "id": "crossbow", "fg": 2151 }, - { "id": "hand_crossbow", "fg": 2152 }, - { "id": "huge_crossbow", "fg": 2153 }, - { "id": "rep_crossbow", "fg": 2154 }, - { "id": "bot_eyebot", "fg": 2156 }, - { "id": "broken_eyebot", "fg": 2157 }, - { "id": "amplifier_head", "fg": 2169 }, - { "id": "bindle", "fg": 2170 }, - { "id": "broken_dimensional_anchor", "fg": 2171 }, - { "id": "chainmail_vest", "fg": 2172 }, - { "id": "concrete", "fg": 2173 }, - { "id": "cs_lajatang_off", "fg": 2174 }, - { "id": "dimensional_anchor", "fg": 2175 }, - { "id": "dimensional_anchor_on", "fg": 2176 }, - { "id": "dnd", "fg": 2177 }, - { "id": "g_carpet", "fg": 2178 }, - { "id": "grapnel", "fg": 2179 }, - { "id": "optical_cloak", "fg": 2180 }, - { "id": "p_carpet", "fg": 2181 }, - { "id": "r_carpet", "fg": 2182 }, - { "id": "trimmer_off", "fg": 2183 }, - { "id": "trimmer_on", "fg": 2184 }, - { "id": "tux", "fg": 2185 }, - { "id": "v_scoop_item", "fg": 2186 }, - { "id": "wool_suit", "fg": 2187 }, - { "id": "y_carpet", "fg": 2188 }, - { "id": "multi_cooker", "fg": 2189 }, - { "id": "multi_cooker_filled", "fg": 2190 }, - { "id": "pet_carrier", "fg": 2191 }, - { "id": "manhole_cover", "fg": 2210 }, - { "id": "PR24-extended", "fg": 2216 }, - { "id": "PR24-retracted", "fg": 2217 }, - { "id": "baton-extended", "fg": 2218 }, - { "id": "baton", "fg": 2219 }, - { "id": "guitar_stand", "fg": 2220 }, - { "id": "mic_stand_tall", "fg": 2221 }, - { "id": "mixer_music", "fg": 2222 }, - { "id": "pipe_shotgun", "fg": 2241 }, - { "id": "pool_cue", "fg": 2246 }, - { "id": "bokken", "fg": 2279 }, - { "id": "UPS_off", "fg": 2285 }, - { "id": "hose", "fg": 2286 }, - { "id": "oxy_torch", "fg": 2287 }, - { "id": "picklocks", "fg": 2288 }, - { "id": "f_magic_circle", "fg": 2295 }, - { "id": "mon_breather", "fg": 2296 }, - { "id": "mon_breather_hub", "fg": 2297 }, - { "id": "mon_fish_eel", "fg": 2453 }, - { "id": "mon_dragonfly_naiad", "fg": 2454 }, - { "id": "debug_mon", "fg": 2463 }, - { "id": "mon_fish_crayfish", "fg": 2466 }, - { "id": "mon_fish_lobster", "fg": 2467 }, - { "id": "mon_generator", "fg": 2473 }, - { "id": "mon_molebot", "fg": 2505 }, - { "id": "mon_mutant_carp", "fg": 2506 }, - { "id": "mon_mutant_salmon", "fg": 2507 }, - { "id": "mon_spawn_raptor_electric", "fg": 2513 }, - { "id": "mon_spawn_raptor_shady", "fg": 2514 }, - { "id": "mon_spawn_raptor_unstable", "fg": 2515 }, - { "id": "mon_tadpole_grabber", "fg": 2517 }, - { "id": "mon_turret_riot", "fg": 2519 }, - { "id": "mon_vortex", "fg": 2520 }, - { "id": "footstep", "fg": 2564 }, - { "id": "footstep_above", "fg": 2565 }, - { "id": "footstep_below", "fg": 2566 }, - { "id": "unknown_field", "fg": 2567 }, - { "id": "unknown_furniture", "fg": 2568 }, - { "id": "unknown_item", "fg": 2569 }, - { "id": "unknown_item_AMMO", "fg": 2570 }, - { "id": "unknown_item_ARMOR", "fg": 2571 }, - { "id": "unknown_item_BIONIC", "fg": 2572 }, - { "id": "unknown_item_BOOK", "fg": 2573 }, - { "id": "unknown_item_FOOD", "fg": 2574 }, - { "id": "unknown_item_GUN", "fg": 2575 }, - { "id": "unknown_item_TOOL", "fg": 2576 }, - { "id": "unknown_item_misc", "fg": 2577 }, - { "id": "unknown_terrain", "fg": 2578 }, - { "id": "unknown_trap", "fg": 2579 }, - { "id": "unknown_vehicle_part", "fg": 2580 }, - { "id": "overlay_crouch", "fg": 2588 }, - { "id": "overlay_effect_badpoison", "fg": 2589 }, - { "id": "overlay_effect_bleed", "fg": 2590 }, - { "id": "overlay_effect_cold", "fg": 2591 }, - { "id": "overlay_effect_deaf", "fg": 2592 }, - { "id": "overlay_effect_downed", "fg": 2593 }, - { "id": "overlay_effect_grabbed", "fg": 2594 }, - { "id": "overlay_effect_hot", "fg": 2595 }, - { "id": "overlay_effect_poison", "fg": 2597 }, - { "id": "overlay_effect_slimed", "fg": 2598 }, - { "id": "overlay_effect_wet", "fg": 2599 }, - { "id": "overlay_effect_winded", "fg": 2600 }, - { "id": "overlay_friendly_sees_player", "fg": 2601 }, - { "id": "overlay_hostile_sees_player", "fg": 2602 }, - { "id": "overlay_neutral_sees_player", "fg": 2603 }, - { "id": "overlay_other_sees_player", "fg": 2604 }, - { "id": "overlay_prone", "fg": 2605 }, - { "id": "overlay_run", "fg": 2606 }, - { "id": "zombie_revival_indicator", "fg": 2607 }, - { "id": "overlay_female_mutation_HOOVES", "fg": 2608 }, - { "id": "overlay_male_mutation_HOOVES", "fg": 2609 }, - { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 2610 }, - { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 2611 }, - { "id": "overlay_wielded_bfg50", "fg": 2612 }, - { "id": "overlay_worn_swim_fins", "fg": 2613 }, - { "id": "cemetery_small", "fg": 2634 }, - { "id": "dirt_road_center", "fg": 2637 }, - { "id": "dirt_road_end_piece_e", "fg": 2644 }, - { "id": "dirt_road_end_piece_n", "fg": 2645 }, - { "id": "dirt_road_end_piece_s", "fg": 2646 }, - { "id": "dirt_road_end_piece_w", "fg": 2647 }, - { "id": "dirt_road_unconnected", "fg": 2652 }, - { "id": "hunting_blind", "fg": 2678 }, - { "id": "overmap_horde_3", "fg": 2679 }, - { "id": "overmap_horde_4", "fg": 2680 }, - { "id": "overmap_horde_5", "fg": 2681 }, - { "id": "overmap_horde_6", "fg": 2682 }, - { "id": "overmap_remembered_vehicle", "fg": 2683 }, - { "id": "pasture_connection_ew", "fg": 2706 }, - { "id": "pasture_connection_ns", "fg": 2707 }, - { "id": "pasture_unconnected", "fg": 2720 }, - { "id": "t_metal_ventilation_shutter", "fg": 2785 }, - { "id": "t_ramp_down_high", "fg": 2803 }, - { "id": "t_ramp_up_high", "fg": 2804 }, - { "id": "t_sidewalk_ramp_down_high", "fg": 2805 }, - { "id": "t_sidewalk_ramp_up_high", "fg": 2806 }, - { "id": "t_slope_down", "fg": 2807 }, - { "id": "t_slope_up", "fg": 2808 }, - { "id": "t_door_b_peep", "fg": 3153 }, - { "id": "t_door_boarded_damaged_peep", "fg": 3154 }, - { "id": "t_door_boarded_peep", "fg": 3155 }, - { "id": "t_door_c_peep", "fg": 3156 }, - { "id": "t_door_locked_peep", "fg": 3157 }, - { "id": "t_door_o_peep", "fg": 3158 }, - { "id": "t_fence_post", "fg": 3195 }, - { "id": "t_ladder_down", "fg": 3417 }, - { "id": "t_mud", "fg": 3535 }, - { "id": "t_thconc_floor_unconnected", "fg": 4031 }, - { "id": "t_thconc_floor_flesh", "fg": 4032 }, - { "id": "t_wall_resin_cage", "fg": 4225 }, - { "id": "t_window_domestic_taped", "fg": 4381 }, - { "id": "t_window_no_curtains_taped", "fg": 4385 }, - { "id": "t_window_taped", "fg": 4387 }, - { "id": "tr_cot", "fg": 4390 }, - { "id": "tr_caltrops", "fg": 4391 }, - { "id": "tr_telepad", "fg": 4392 }, - { "id": "tr_landmine", "fg": 4395 }, - { "id": "tr_landmine_buried", "fg": 4396 }, - { "id": "tr_practice_target", "fg": 4398 }, - { "id": "metal_boat_hull", "fg": 4400 } + "fg": 4502, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 4502 } ] + }, + { "id": "fd_dazzling", "fg": 1105 }, + { "id": "fd_fatigue", "fg": 1106 }, + { "id": "fd_fire", "fg": 1107 }, + { "id": "fd_laser", "fg": 1108 }, + { "id": "fd_plasma", "fg": 1109 }, + { "id": "fd_extinguisher", "fg": 1318 }, + { "id": "fd_fungal_haze", "fg": 1319 }, + { "id": "fd_fungicidal_gas", "fg": 1320 }, + { "id": "fd_hot_air_sauna", "fg": 1321 }, + { "id": "fd_insecticidal_gas", "fg": 1322 }, + { "id": "fd_nuke_gas", "fg": 1323 }, + { "id": "fd_relax_gas", "fg": 1324 }, + { "id": "fd_smoke", "fg": 1325 }, + { "id": "fd_tear_gas", "fg": 1326 }, + { "id": "fd_toxic_gas", "fg": 1327 }, + { "id": "f_target", "fg": 1338 }, + { "id": "f_chest", "fg": 1339 }, + { "id": "f_dive_block", "fg": 1340 }, + { "id": "f_foot_locker", "fg": 1341 }, + { "id": "f_sand_castle", "fg": 1342 }, + { "id": "f_shredder", "fg": 1343 }, + { "id": "f_tourist_table", "fg": 1344 }, + { "id": "f_exodii_pump", "fg": 1351 }, + { "id": "f_beaded_door", "fg": 1375 }, + { "id": "f_beaded_door_o", "fg": 1376 }, + { "id": "f_black_eyed_susan", "fg": 1409 }, + { "id": "f_chimney", "fg": 1441 }, + { "id": "f_curtain", "fg": 1475 }, + { "id": "f_curtain_open", "fg": 1476 }, + { "id": "f_lily", "fg": 1521 }, + { "id": "f_skin_groundsheet", "fg": 1654 }, + { "id": "acidchitin_plate", "fg": 1733 }, + { "id": "acoustic_guitar", "fg": 1734 }, + { "id": "alloy_plate", "fg": 1735 }, + { "id": "armor_lorica", "fg": 1736 }, + { "id": "banjo", "fg": 1737 }, + { "id": "bionic_general", "fg": 1738 }, + { "id": "bodypillow", "fg": 1739 }, + { "id": "bookplate", "fg": 1740 }, + { "id": "bot_copbot", "fg": 1741 }, + { "id": "bot_riotbot", "fg": 1742 }, + { "id": "broken_copbot", "fg": 1743 }, + { "id": "broken_riotbot", "fg": 1744 }, + { "id": "chainmail_hauberk", "fg": 1745 }, + { "id": "char_smoker", "fg": 1746 }, + { "id": "dehydrator", "fg": 1747 }, + { "id": "folding_poncho_on", "fg": 1748 }, + { "id": "gambeson", "fg": 1749 }, + { "id": "glass_sheet", "fg": 1750 }, + { "id": "gown", "fg": 1751 }, + { "id": "guitar_electric", "fg": 1752 }, + { "id": "hand_paddles", "fg": 1754 }, + { "id": "i4_combustion", "fg": 1755 }, + { "id": "inflatable_boat", "fg": 1756 }, + { "id": "inflatable_section", "fg": 1757 }, + { "id": "lawnmower", "fg": 1758 }, + { "id": "mattress", "fg": 1759 }, + { "id": "mil_plate", "fg": 1760 }, + { "id": "rake_plastic", "fg": 1762 }, + { "id": "reinforced_glass_sheet", "fg": 1763 }, + { "id": "robe", "fg": 1764 }, + { "id": "rock_quern", "fg": 1765 }, + { "id": "saxophone", "fg": 1766 }, + { "id": "sheet", "fg": 1767 }, + { "id": "steel_plate", "fg": 1768 }, + { "id": "telepad", "fg": 1769 }, + { "id": "trumpet", "fg": 1770 }, + { "id": "tuba", "fg": 1771 }, + { "id": "tunic", "fg": 1772 }, + { "id": "tunic_rag", "fg": 1773 }, + { "id": "umbrella", "fg": 1774 }, + { "id": "wheel_armor", "fg": 1775 }, + { "id": "wheel_wide", "fg": 1776 }, + { "id": "wheel_wide_or", "fg": 1777 }, + { "id": "10mm_fmj", "fg": 1778 }, + { "id": "120mm_HEAT", "fg": 1779 }, + { "id": "123ln", "fg": 1780 }, + { "id": "12mm", "fg": 1781 }, + { "id": "20x66_beanbag", "fg": 1782 }, + { "id": "20x66_flare", "fg": 1783 }, + { "id": "20x66_flechette", "fg": 1784 }, + { "id": "20x66_frag", "fg": 1785 }, + { "id": "20x66_inc", "fg": 1786 }, + { "id": "20x66_shot", "fg": 1787 }, + { "id": "20x66_slug", "fg": 1788 }, + { "id": "223", "fg": 1789 }, + { "id": "22_cb", "fg": 1790 }, + { "id": "22_fmj", "fg": 1791 }, + { "id": "22_lr", "fg": 1792 }, + { "id": "22_ratshot", "fg": 1793 }, + { "id": "270win_jsp", "fg": 1794 }, + { "id": "3006", "fg": 1795 }, + { "id": "3006_incendiary", "fg": 1796 }, + { "id": "3006fmj", "fg": 1797 }, + { "id": "300_winmag", "fg": 1798 }, + { "id": "300blk", "fg": 1799 }, + { "id": "300blk_ss", "fg": 1800 }, + { "id": "308", "fg": 1801 }, + { "id": "32_acp", "fg": 1802 }, + { "id": "357mag_fmj", "fg": 1803 }, + { "id": "357mag_jhp", "fg": 1804 }, + { "id": "357sig_fmj", "fg": 1805 }, + { "id": "357sig_jhp", "fg": 1806 }, + { "id": "380_FMJ", "fg": 1807 }, + { "id": "380_JHP", "fg": 1808 }, + { "id": "380_p", "fg": 1809 }, + { "id": "38_fmj", "fg": 1810 }, + { "id": "38_special", "fg": 1811 }, + { "id": "38_super", "fg": 1812 }, + { "id": "38super_fmj", "fg": 1813 }, + { "id": "40fmj", "fg": 1814 }, + { "id": "40mm_flashbang", "fg": 1815 }, + { "id": "40mm_incendiary", "fg": 1816 }, + { "id": "40mm_slug", "fg": 1817 }, + { "id": "40sw", "fg": 1818 }, + { "id": "40x46mm_grenade", "fg": 1819 }, + { "id": "40x46mm_m1006", "fg": 1820 }, + { "id": "40x46mm_m433", "fg": 1821 }, + { "id": "40x46mm_m576", "fg": 1822 }, + { "id": "40x46mm_m651", "fg": 1823 }, + { "id": "40x53mm_buckshot_m169", "fg": 1824 }, + { "id": "40x53mm_flechette_m169", "fg": 1825 }, + { "id": "40x53mm_grenade", "fg": 1826 }, + { "id": "40x53mm_m1001", "fg": 1827 }, + { "id": "40x53mm_m430a1", "fg": 1828 }, + { "id": "40x53mm_slug_m169", "fg": 1829 }, + { "id": "410shot_000", "fg": 1830 }, + { "id": "44fmj", "fg": 1831 }, + { "id": "44magnum", "fg": 1832 }, + { "id": "454_Casull", "fg": 1833 }, + { "id": "4570_low", "fg": 1834 }, + { "id": "4570_pen", "fg": 1835 }, + { "id": "4570_sp", "fg": 1836 }, + { "id": "45_acp", "fg": 1837 }, + { "id": "45_jhp", "fg": 1838 }, + { "id": "45_super", "fg": 1839 }, + { "id": "45colt_jhp", "fg": 1840 }, + { "id": "460_fmj", "fg": 1841 }, + { "id": "460_rowland", "fg": 1842 }, + { "id": "46mm", "fg": 1843 }, + { "id": "500_Magnum", "fg": 1844 }, + { "id": "50_incendiary", "fg": 1845 }, + { "id": "50_mk211", "fg": 1846 }, + { "id": "50bmg", "fg": 1847 }, + { "id": "50match", "fg": 1848 }, + { "id": "50ss", "fg": 1849 }, + { "id": "545", "fg": 1850 }, + { "id": "545_ap", "fg": 1851 }, + { "id": "556", "fg": 1852 }, + { "id": "556_incendiary", "fg": 1853 }, + { "id": "57mm", "fg": 1854 }, + { "id": "5x50dart", "fg": 1855 }, + { "id": "5x50heavy", "fg": 1856 }, + { "id": "66mm_HEAT", "fg": 1857 }, + { "id": "700nx", "fg": 1858 }, + { "id": "762_25", "fg": 1859 }, + { "id": "762_25hot", "fg": 1860 }, + { "id": "762_25typeP", "fg": 1861 }, + { "id": "762_51", "fg": 1862 }, + { "id": "762_51_incendiary", "fg": 1863 }, + { "id": "762_54R", "fg": 1864 }, + { "id": "762_m43", "fg": 1865 }, + { "id": "762_m87", "fg": 1866 }, + { "id": "84x246mm_he", "fg": 1867 }, + { "id": "84x246mm_hedp", "fg": 1868 }, + { "id": "84x246mm_smoke", "fg": 1869 }, + { "id": "8mm_bootleg", "fg": 1870 }, + { "id": "8mm_caseless", "fg": 1871 }, + { "id": "8mm_civilian", "fg": 1872 }, + { "id": "8mm_fmj", "fg": 1873 }, + { "id": "8mm_hvp", "fg": 1874 }, + { "id": "8mm_inc", "fg": 1875 }, + { "id": "8mm_jhp", "fg": 1876 }, + { "id": "9mm", "fg": 1877 }, + { "id": "9mmP", "fg": 1878 }, + { "id": "9mmfmj", "fg": 1879 }, + { "id": "9x18mm", "fg": 1880 }, + { "id": "9x18mmP2", "fg": 1881 }, + { "id": "9x18mmfmj", "fg": 1882 }, + { "id": "RPG-7_ammo", "fg": 1883 }, + { "id": "RPG-7_og7v", "fg": 1884 }, + { "id": "RPG-7_pg7vr", "fg": 1885 }, + { "id": "RPG-7_tbg7v", "fg": 1886 }, + { "id": "atgm_heat", "fg": 1887 }, + { "id": "m235tpa", "fg": 1888 }, + { "id": "shot_00", "fg": 1889 }, + { "id": "shot_beanbag", "fg": 1890 }, + { "id": "shot_bird", "fg": 1891 }, + { "id": "shot_dragon", "fg": 1892 }, + { "id": "shot_flechette", "fg": 1893 }, + { "id": "shot_he", "fg": 1894 }, + { "id": "shot_scrap", "fg": 1895 }, + { "id": "shot_slug", "fg": 1896 }, + { "id": "1895sbl", "fg": 1917 }, + { "id": "AT4", "fg": 1918 }, + { "id": "LAW", "fg": 1919 }, + { "id": "M24", "fg": 1920 }, + { "id": "RPG", "fg": 1921 }, + { "id": "USAS_12", "fg": 1922 }, + { "id": "airspeargun", "fg": 1923 }, + { "id": "ak74", "fg": 1925 }, + { "id": "american_180", "fg": 1926 }, + { "id": "an94", "fg": 1927 }, + { "id": "ar10", "fg": 1928 }, + { "id": "ar15", "fg": 1929 }, + { "id": "arx160", "fg": 1930 }, + { "id": "as50", "fg": 1931 }, + { "id": "atgm_launcher", "fg": 1932 }, + { "id": "bbgun", "fg": 1933 }, + { "id": "bfg50", "fg": 1934 }, + { "id": "bh_m89", "fg": 1935 }, + { "id": "blunderbuss", "fg": 1936 }, + { "id": "browning_blr", "fg": 1937 }, + { "id": "chemical_thrower", "fg": 1939 }, + { "id": "coilgun", "fg": 1940 }, + { "id": "colt_lightning", "fg": 1941 }, + { "id": "colt_ro635", "fg": 1942 }, + { "id": "combination_gun", "fg": 1943 }, + { "id": "cx4", "fg": 1944 }, + { "id": "doublespeargun", "fg": 1945 }, + { "id": "emp_gun", "fg": 1946 }, + { "id": "famas", "fg": 1947 }, + { "id": "flamethrower", "fg": 1948 }, + { "id": "fn_fal", "fg": 1949 }, + { "id": "fs2000", "fg": 1950 }, + { "id": "ftk93", "fg": 1951 }, + { "id": "garand", "fg": 1952 }, + { "id": "heavy_rail_rifle", "fg": 1953 }, + { "id": "helsing", "fg": 1954 }, + { "id": "henry_big_boy", "fg": 1955 }, + { "id": "hk417_13", "fg": 1956 }, + { "id": "hk_g3", "fg": 1957 }, + { "id": "hk_g36", "fg": 1958 }, + { "id": "hk_g80", "fg": 1959 }, + { "id": "hk_mp5k", "fg": 1960 }, + { "id": "hk_mp5sd", "fg": 1961 }, + { "id": "iwi_tavor_x95_300blk", "fg": 1962 }, + { "id": "ksg-25", "fg": 1963 }, + { "id": "ksg", "fg": 1964 }, + { "id": "ksub2000", "fg": 1965 }, + { "id": "laser_cannon", "fg": 1966 }, + { "id": "laser_rifle", "fg": 1967 }, + { "id": "lever_shotgun", "fg": 1968 }, + { "id": "longrifle_flintlock", "fg": 1969 }, + { "id": "m107a1", "fg": 1970 }, + { "id": "m110a1", "fg": 1971 }, + { "id": "m134", "fg": 1972 }, + { "id": "m14ebr", "fg": 1973 }, + { "id": "m1903", "fg": 1976 }, + { "id": "m1918", "fg": 1977 }, + { "id": "m1a", "fg": 1978 }, + { "id": "m2010", "fg": 1979 }, + { "id": "m202_flash", "fg": 1980 }, + { "id": "m231pfw", "fg": 1981 }, + { "id": "m240", "fg": 1982 }, + { "id": "m27_assault_rifle_var_h&k416a5", "fg": 1984 }, + { "id": "m27_assault_rifle_var_m27iar", "fg": 1985 }, + { "id": "m27_assault_rifle_var_m38dmr", "fg": 1986 }, + { "id": "m27_assault_rifle_var_scar_l", "fg": 1987 }, + { "id": "m2browning", "fg": 1988 }, + { "id": "m2browning_sawn", "fg": 1989 }, + { "id": "m3_carlgustav", "fg": 1990 }, + { "id": "m4_carbine_var_m4a1", "fg": 1991 }, + { "id": "m4_carlgustav", "fg": 1992 }, + { "id": "m79", "fg": 1994 }, + { "id": "mark19", "fg": 1995 }, + { "id": "marlin_9a", "fg": 1996 }, + { "id": "mininuke_launcher", "fg": 1997 }, + { "id": "mosin44", "fg": 1998 }, + { "id": "mosin44_ebr", "fg": 1999 }, + { "id": "mosin91_30", "fg": 2000 }, + { "id": "mosin91_30_ebr", "fg": 2001 }, + { "id": "mossberg_500", "fg": 2002 }, + { "id": "mossberg_500_var_mossberg_500_security", "fg": 2003 }, + { "id": "mossberg_590", "fg": 2004 }, + { "id": "mossberg_590_var_SPAS_12", "fg": 2005 }, + { "id": "mossberg_930", "fg": 2006 }, + { "id": "mossberg_930_var_m1014", "fg": 2007 }, + { "id": "mp18", "fg": 2008 }, + { "id": "needlegun", "fg": 2010 }, + { "id": "pamd68", "fg": 2011 }, + { "id": "pamd71z", "fg": 2012 }, + { "id": "pipe_combination_gun", "fg": 2013 }, + { "id": "plasma_gun", "fg": 2014 }, + { "id": "plasma_rifle", "fg": 2015 }, + { "id": "ppsh", "fg": 2016 }, + { "id": "rebar_rifle", "fg": 2017 }, + { "id": "remington700_270", "fg": 2018 }, + { "id": "remington_700", "fg": 2019 }, + { "id": "remington_870", "fg": 2020 }, + { "id": "remington_870_breacher", "fg": 2021 }, + { "id": "remington_870_express", "fg": 2022 }, + { "id": "remington_870_var_browning_a5", "fg": 2023 }, + { "id": "remington_870_var_remington_1100", "fg": 2024 }, + { "id": "rifle_flintlock", "fg": 2025 }, + { "id": "rm120c", "fg": 2026 }, + { "id": "rm20", "fg": 2027 }, + { "id": "rm298", "fg": 2028 }, + { "id": "rm451_flamethrower", "fg": 2029 }, + { "id": "rm51_assault_rifle", "fg": 2030 }, + { "id": "rm614_lmg", "fg": 2031 }, + { "id": "rm802", "fg": 2032 }, + { "id": "rm88_battle_rifle", "fg": 2033 }, + { "id": "ruger_1022", "fg": 2034 }, + { "id": "ruger_mini", "fg": 2035 }, + { "id": "saiga_12", "fg": 2036 }, + { "id": "saiga_410", "fg": 2037 }, + { "id": "savage_111f", "fg": 2038 }, + { "id": "scar_h", "fg": 2039 }, + { "id": "sharps", "fg": 2040 }, + { "id": "shotgun_410", "fg": 2041 }, + { "id": "shotgun_d", "fg": 2042 }, + { "id": "shotgun_s", "fg": 2043 }, + { "id": "sig552", "fg": 2044 }, + { "id": "sig_mcx_rattler_sbr", "fg": 2045 }, + { "id": "skorpion_82", "fg": 2046 }, + { "id": "sks", "fg": 2047 }, + { "id": "smg_9mm", "fg": 2049 }, + { "id": "speargun", "fg": 2050 }, + { "id": "sten", "fg": 2051 }, + { "id": "steyr_aug", "fg": 2052 }, + { "id": "surv_rocket_launcher", "fg": 2053 }, + { "id": "survivor_special_700", "fg": 2054 }, + { "id": "tac50", "fg": 2055 }, + { "id": "tavor_12", "fg": 2056 }, + { "id": "tihar", "fg": 2057 }, + { "id": "tommygun", "fg": 2058 }, + { "id": "trex_gun", "fg": 2059 }, + { "id": "weatherby_5", "fg": 2060 }, + { "id": "win70", "fg": 2061 }, + { "id": "winchester_1887", "fg": 2062 }, + { "id": "winchester_1897", "fg": 2063 }, + { "id": "iceaxe", "fg": 2066 }, + { "id": "rifle_case_soft", "fg": 2071 }, + { "id": "rifle_case_soft_2", "fg": 2072 }, + { "id": "rifle_case_soft_leather_2", "fg": 2074 }, + { "id": "rucksack", "fg": 2075 }, + { "id": "compgreatbow", "fg": 2084 }, + { "id": "compositebow", "fg": 2085 }, + { "id": "hybridbow", "fg": 2086 }, + { "id": "longbow", "fg": 2087 }, + { "id": "recurbow", "fg": 2088 }, + { "id": "reflexbow", "fg": 2089 }, + { "id": "reflexrecurvebow", "fg": 2090 }, + { "id": "selfbow", "fg": 2091 }, + { "id": "shortbow", "fg": 2092 }, + { "id": "woodgreatbow", "fg": 2093 }, + { "id": "oxygen_cylinder", "fg": 2098 }, + { "id": "oxygen_tank", "fg": 2099 }, + { "id": "tinyweldtank", "fg": 2100 }, + { "id": "weldtank", "fg": 2101 }, + { "id": "cot", "fg": 2102 }, + { "id": "armguard_soft", "fg": 2103 }, + { "id": "chestwrap_leather", "fg": 2104 }, + { "id": "trenchcoat_leather", "fg": 2105 }, + { "id": "bat_nerf", "fg": 2106 }, + { "id": "golf_bag", "fg": 2107 }, + { "id": "polycarbonate_sheet", "fg": 2108 }, + { "id": "screen_mesh", "fg": 2109 }, + { "id": "bagpipes", "fg": 2110 }, + { "id": "caltrops", "fg": 2111 }, + { "id": "jumper_cable_heavy", "fg": 2112 }, + { "id": "scythe", "fg": 2113 }, + { "id": "motorbike_armor", "fg": 2114 }, + { "id": "rack_test_tube", "fg": 2115 }, + { "id": "bowl_clay", "fg": 2118 }, + { "id": "clay_hydria", "fg": 2119 }, + { "id": "clay_pot", "fg": 2120 }, + { "id": "clay_quern", "fg": 2121 }, + { "id": "clay_watercont", "fg": 2122 }, + { "id": "jug_clay", "fg": 2123 }, + { "id": "bullet_crossbow", "fg": 2187 }, + { "id": "compcrossbow", "fg": 2188 }, + { "id": "compositecrossbow", "fg": 2189 }, + { "id": "crossbow", "fg": 2190 }, + { "id": "hand_crossbow", "fg": 2191 }, + { "id": "huge_crossbow", "fg": 2192 }, + { "id": "rep_crossbow", "fg": 2193 }, + { "id": "bot_eyebot", "fg": 2195 }, + { "id": "broken_eyebot", "fg": 2196 }, + { "id": "amplifier_head", "fg": 2208 }, + { "id": "bindle", "fg": 2209 }, + { "id": "broken_dimensional_anchor", "fg": 2210 }, + { "id": "chainmail_vest", "fg": 2211 }, + { "id": "concrete", "fg": 2212 }, + { "id": "cs_lajatang_off", "fg": 2213 }, + { "id": "dimensional_anchor", "fg": 2214 }, + { "id": "dimensional_anchor_on", "fg": 2215 }, + { "id": "dnd", "fg": 2216 }, + { "id": "g_carpet", "fg": 2217 }, + { "id": "grapnel", "fg": 2218 }, + { "id": "optical_cloak", "fg": 2219 }, + { "id": "p_carpet", "fg": 2220 }, + { "id": "r_carpet", "fg": 2221 }, + { "id": "trimmer_off", "fg": 2222 }, + { "id": "trimmer_on", "fg": 2223 }, + { "id": "tux", "fg": 2224 }, + { "id": "v_scoop_item", "fg": 2225 }, + { "id": "wool_suit", "fg": 2226 }, + { "id": "y_carpet", "fg": 2227 }, + { "id": "multi_cooker", "fg": 2228 }, + { "id": "multi_cooker_filled", "fg": 2229 }, + { "id": "pet_carrier", "fg": 2230 }, + { "id": "manhole_cover", "fg": 2249 }, + { "id": "PR24-extended", "fg": 2255 }, + { "id": "PR24-retracted", "fg": 2256 }, + { "id": "baton-extended", "fg": 2257 }, + { "id": "baton", "fg": 2258 }, + { "id": "guitar_stand", "fg": 2259 }, + { "id": "mic_stand_tall", "fg": 2260 }, + { "id": "mixer_music", "fg": 2261 }, + { "id": "pipe_shotgun", "fg": 2280 }, + { "id": "pool_cue", "fg": 2285 }, + { "id": "bokken", "fg": 2318 }, + { "id": "UPS_off", "fg": 2324 }, + { "id": "hose", "fg": 2325 }, + { "id": "oxy_torch", "fg": 2326 }, + { "id": "picklocks", "fg": 2327 }, + { "id": "f_magic_circle", "fg": 2334 }, + { "id": "mon_breather", "fg": 2335 }, + { "id": "mon_breather_hub", "fg": 2336 }, + { "id": "mon_fish_eel", "fg": 2501 }, + { "id": "mon_dragonfly_naiad", "fg": 2502 }, + { "id": "debug_mon", "fg": 2518 }, + { "id": "mon_fish_crayfish", "fg": 2522 }, + { "id": "mon_fish_lobster", "fg": 2523 }, + { "id": "mon_generator", "fg": 2529 }, + { "id": "mon_molebot", "fg": 2562 }, + { "id": "mon_mutant_carp", "fg": 2563 }, + { "id": "mon_mutant_salmon", "fg": 2564 }, + { "id": "mon_spawn_raptor_electric", "fg": 2571 }, + { "id": "mon_spawn_raptor_shady", "fg": 2572 }, + { "id": "mon_spawn_raptor_unstable", "fg": 2573 }, + { "id": "mon_tadpole_grabber", "fg": 2575 }, + { "id": "mon_turret_riot", "fg": 2577 }, + { "id": "mon_vortex", "fg": 2578 }, + { "id": "footstep", "fg": 2623 }, + { "id": "footstep_above", "fg": 2624 }, + { "id": "footstep_below", "fg": 2625 }, + { "id": "unknown_field", "fg": 2626 }, + { "id": "unknown_furniture", "fg": 2627 }, + { "id": "unknown_item", "fg": 2628 }, + { "id": "unknown_item_AMMO", "fg": 2629 }, + { "id": "unknown_item_ARMOR", "fg": 2630 }, + { "id": "unknown_item_BIONIC", "fg": 2631 }, + { "id": "unknown_item_BOOK", "fg": 2632 }, + { "id": "unknown_item_FOOD", "fg": 2633 }, + { "id": "unknown_item_GUN", "fg": 2634 }, + { "id": "unknown_item_TOOL", "fg": 2635 }, + { "id": "unknown_item_misc", "fg": 2636 }, + { "id": "unknown_terrain", "fg": 2637 }, + { "id": "unknown_trap", "fg": 2638 }, + { "id": "unknown_vehicle_part", "fg": 2639 }, + { "id": "overlay_crouch", "fg": 2647 }, + { "id": "overlay_effect_badpoison", "fg": 2648 }, + { "id": "overlay_effect_bleed", "fg": 2649 }, + { "id": "overlay_effect_cold", "fg": 2650 }, + { "id": "overlay_effect_deaf", "fg": 2651 }, + { "id": "overlay_effect_downed", "fg": 2652 }, + { "id": "overlay_effect_grabbed", "fg": 2653 }, + { "id": "overlay_effect_hot", "fg": 2654 }, + { "id": "overlay_effect_poison", "fg": 2656 }, + { "id": "overlay_effect_slimed", "fg": 2657 }, + { "id": "overlay_effect_wet", "fg": 2658 }, + { "id": "overlay_effect_winded", "fg": 2659 }, + { "id": "overlay_friendly_sees_player", "fg": 2660 }, + { "id": "overlay_hostile_sees_player", "fg": 2661 }, + { "id": "overlay_neutral_sees_player", "fg": 2662 }, + { "id": "overlay_other_sees_player", "fg": 2663 }, + { "id": "overlay_prone", "fg": 2664 }, + { "id": "overlay_run", "fg": 2665 }, + { "id": "zombie_revival_indicator", "fg": 2666 }, + { "id": "overlay_female_mutation_HOOVES", "fg": 2667 }, + { "id": "overlay_male_mutation_HOOVES", "fg": 2668 }, + { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 2669 }, + { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 2670 }, + { "id": "overlay_wielded_bfg50", "fg": 2671 }, + { "id": "overlay_worn_swim_fins", "fg": 2672 }, + { "id": "cemetery_small", "fg": 2693 }, + { "id": "dirt_road_center", "fg": 2696 }, + { "id": "dirt_road_end_piece_e", "fg": 2703 }, + { "id": "dirt_road_end_piece_n", "fg": 2704 }, + { "id": "dirt_road_end_piece_s", "fg": 2705 }, + { "id": "dirt_road_end_piece_w", "fg": 2706 }, + { "id": "dirt_road_unconnected", "fg": 2711 }, + { "id": "hunting_blind", "fg": 2737 }, + { "id": "overmap_horde_3", "fg": 2738 }, + { "id": "overmap_horde_4", "fg": 2739 }, + { "id": "overmap_horde_5", "fg": 2740 }, + { "id": "overmap_horde_6", "fg": 2741 }, + { "id": "overmap_remembered_vehicle", "fg": 2742 }, + { "id": "pasture_connection_ew", "fg": 2765 }, + { "id": "pasture_connection_ns", "fg": 2766 }, + { "id": "pasture_unconnected", "fg": 2779 }, + { "id": "t_metal_ventilation_shutter", "fg": 2844 }, + { "id": "t_ramp_down_high", "fg": 2862 }, + { "id": "t_ramp_up_high", "fg": 2863 }, + { "id": "t_sidewalk_ramp_down_high", "fg": 2864 }, + { "id": "t_sidewalk_ramp_up_high", "fg": 2865 }, + { "id": "t_slope_down", "fg": 2866 }, + { "id": "t_slope_up", "fg": 2867 }, + { "id": "t_door_b_peep", "fg": 3212 }, + { "id": "t_door_boarded_damaged_peep", "fg": 3213 }, + { "id": "t_door_boarded_peep", "fg": 3214 }, + { "id": "t_door_c_peep", "fg": 3215 }, + { "id": "t_door_locked_peep", "fg": 3216 }, + { "id": "t_door_o_peep", "fg": 3217 }, + { "id": "t_fence_post", "fg": 3254 }, + { "id": "t_ladder_down", "fg": 3476 }, + { "id": "t_mud", "fg": 3594 }, + { "id": "t_thconc_floor_unconnected", "fg": 4106 }, + { "id": "t_thconc_floor_flesh", "fg": 4107 }, + { "id": "t_wall_resin_cage", "fg": 4300 }, + { "id": "t_window_domestic_taped", "fg": 4456 }, + { "id": "t_window_no_curtains_taped", "fg": 4460 }, + { "id": "t_window_taped", "fg": 4462 }, + { "id": "tr_cot", "fg": 4465 }, + { "id": "tr_caltrops", "fg": 4466 }, + { "id": "tr_telepad", "fg": 4467 }, + { "id": "tr_landmine", "fg": 4470 }, + { "id": "tr_landmine_buried", "fg": 4471 }, + { "id": "tr_practice_target", "fg": 4473 }, + { "id": "metal_boat_hull", "fg": 4475 } ] }, { "file": "tall.png", - "//": "range 4432 to 4863", + "//": "range 4512 to 4943", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, @@ -6922,222 +7122,222 @@ "tiles": [ { "id": "f_deckchair", - "fg": [ { "weight": 1, "sprite": 4432 }, { "weight": 1, "sprite": 4433 }, { "weight": 1, "sprite": 4434 } ] + "fg": [ { "weight": 1, "sprite": 4512 }, { "weight": 1, "sprite": 4513 }, { "weight": 1, "sprite": 4514 } ] }, - { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 4436 }, - { "id": "f_punching_bag", "fg": 4440 }, - { "id": "f_exercise", "fg": 4439 }, - { "id": "f_ergometer", "fg": 4438 }, - { "id": "f_IV_pole", "fg": 4448 }, - { "id": "f_arcade_machine", "fg": 4449 }, - { "id": "f_autodoc_couch", "fg": 4450 }, - { "id": "f_birdbath", "fg": 4453 }, + { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 4516 }, + { "id": "f_punching_bag", "fg": 4520 }, + { "id": "f_exercise", "fg": 4519 }, + { "id": "f_ergometer", "fg": 4518 }, + { "id": "f_IV_pole", "fg": 4528 }, + { "id": "f_arcade_machine", "fg": 4529 }, + { "id": "f_autodoc_couch", "fg": 4530 }, + { "id": "f_birdbath", "fg": 4533 }, { "id": "f_bookcase", "multitile": true, "rotates": false, - "fg": 4454, + "fg": 4534, "additional_tiles": [ - { "id": "center", "fg": 4454 }, - { "id": "corner", "fg": [ 4456, 4457, 4457, 4456 ] }, - { "id": "t_connection", "fg": [ 4454, 4455, 4454, 4455 ] }, - { "id": "edge", "fg": [ 4455, 4454 ] }, - { "id": "end_piece", "fg": [ 4456, 4454, 4457, 4454 ] }, - { "id": "unconnected", "fg": [ 4454, 4454 ] } + { "id": "center", "fg": 4534 }, + { "id": "corner", "fg": [ 4536, 4537, 4537, 4536 ] }, + { "id": "t_connection", "fg": [ 4534, 4535, 4534, 4535 ] }, + { "id": "edge", "fg": [ 4535, 4534 ] }, + { "id": "end_piece", "fg": [ 4536, 4534, 4537, 4534 ] }, + { "id": "unconnected", "fg": [ 4534, 4534 ] } ] }, - { "id": "f_boulder_large", "fg": 4458 }, - { "id": "f_cattails_season_spring", "fg": 4461, "rotates": false }, - { "id": "f_cattails_season_summer", "fg": 4462, "rotates": false }, - { "id": "f_cattails_season_autumn", "fg": 4460, "rotates": false }, - { "id": "f_cattails_season_winter", "fg": 4463, "rotates": false }, + { "id": "f_boulder_large", "fg": 4538 }, + { "id": "f_cattails_season_spring", "fg": 4541, "rotates": false }, + { "id": "f_cattails_season_summer", "fg": 4542, "rotates": false }, + { "id": "f_cattails_season_autumn", "fg": 4540, "rotates": false }, + { "id": "f_cattails_season_winter", "fg": 4543, "rotates": false }, { "id": "f_console", "multitile": true, - "fg": 4497, + "fg": 4577, "additional_tiles": [ - { "id": "center", "fg": 4482 }, - { "id": "corner", "fg": [ 4484, 4486, 4485, 4483 ] }, - { "id": "t_connection", "fg": [ 4494, 4496, 4495, 4493 ] }, - { "id": "edge", "fg": [ 4488, 4487 ] }, - { "id": "end_piece", "fg": [ 4490, 4492, 4491, 4489 ] }, - { "id": "unconnected", "fg": [ 4497, 4499, 4497, 4498 ] } + { "id": "center", "fg": 4562 }, + { "id": "corner", "fg": [ 4564, 4566, 4565, 4563 ] }, + { "id": "t_connection", "fg": [ 4574, 4576, 4575, 4573 ] }, + { "id": "edge", "fg": [ 4568, 4567 ] }, + { "id": "end_piece", "fg": [ 4570, 4572, 4571, 4569 ] }, + { "id": "unconnected", "fg": [ 4577, 4579, 4577, 4578 ] } ] }, { "id": "f_console_broken", "multitile": true, - "fg": 4480, + "fg": 4560, "additional_tiles": [ - { "id": "center", "fg": 4464 }, - { "id": "corner", "fg": [ 4466, 4468, 4467, 4465 ] }, - { "id": "t_connection", "fg": [ 4476, 4478, 4477, 4475 ] }, - { "id": "edge", "fg": [ 4470, 4469 ] }, - { "id": "end_piece", "fg": [ 4472, 4474, 4473, 4471 ] }, - { "id": "unconnected", "fg": [ 4480, 4481, 4480, 4479 ] } + { "id": "center", "fg": 4544 }, + { "id": "corner", "fg": [ 4546, 4548, 4547, 4545 ] }, + { "id": "t_connection", "fg": [ 4556, 4558, 4557, 4555 ] }, + { "id": "edge", "fg": [ 4550, 4549 ] }, + { "id": "end_piece", "fg": [ 4552, 4554, 4553, 4551 ] }, + { "id": "unconnected", "fg": [ 4560, 4561, 4560, 4559 ] } ] }, - { "id": "f_crate_c", "fg": 4500 }, - { "id": "f_crate_o", "fg": 4501 }, - { "id": "f_dialysis", "fg": 4502 }, - { "id": "f_dresser", "rotates": true, "fg": [ 4505, 4506, 4504, 4503 ] }, - { "id": "f_dryer", "fg": 4507 }, + { "id": "f_crate_c", "fg": 4580 }, + { "id": "f_crate_o", "fg": 4581 }, + { "id": "f_dialysis", "fg": 4582 }, + { "id": "f_dresser", "rotates": true, "fg": [ 4585, 4586, 4584, 4583 ] }, + { "id": "f_dryer", "fg": 4587 }, { "id": "f_dumpster", - "fg": 4514, + "fg": 4594, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4508 }, - { "id": "corner", "fg": [ 4513, 4513, 4510, 4510 ] }, - { "id": "t_connection", "fg": [ 4508, 4513, 4508, 4510 ] }, - { "id": "edge", "fg": [ 4509, 4508 ] }, - { "id": "end_piece", "fg": [ 4511, 4513, 4512, 4510 ] }, - { "id": "unconnected", "fg": [ 4514, 4514 ] } + { "id": "center", "fg": 4588 }, + { "id": "corner", "fg": [ 4593, 4593, 4590, 4590 ] }, + { "id": "t_connection", "fg": [ 4588, 4593, 4588, 4590 ] }, + { "id": "edge", "fg": [ 4589, 4588 ] }, + { "id": "end_piece", "fg": [ 4591, 4593, 4592, 4590 ] }, + { "id": "unconnected", "fg": [ 4594, 4594 ] } ] }, - { "id": "f_fireplace", "fg": 4515 }, - { "id": "f_floor_lamp", "fg": 4516 }, - { "id": "f_fridge", "rotates": true, "fg": [ 4519, 4520, 4518, 4517 ] }, - { "id": "t_gas_pump", "fg": 4521, "bg": 4661 }, - { "id": "f_gas_pump", "fg": 4521 }, - { "id": "f_glass_cabinet", "fg": 4522 }, - { "id": "f_glass_fridge", "fg": 4523 }, + { "id": "f_fireplace", "fg": 4595 }, + { "id": "f_floor_lamp", "fg": 4596 }, + { "id": "f_fridge", "rotates": true, "fg": [ 4599, 4600, 4598, 4597 ] }, + { "id": "t_gas_pump", "fg": 4601, "bg": 4741 }, + { "id": "f_gas_pump", "fg": 4601 }, + { "id": "f_glass_cabinet", "fg": 4602 }, + { "id": "f_glass_fridge", "fg": 4603 }, { "id": "f_ground_cable", "multitile": true, - "fg": 4542, + "fg": 4622, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 4524 }, { "weight": 1, "sprite": 4524 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 4604 }, { "weight": 1, "sprite": 4604 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 4526, 4529, 4527, 4525 ] }, { "weight": 1, "sprite": [ 4526, 4529, 4528, 4525 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4606, 4609, 4607, 4605 ] }, { "weight": 1, "sprite": [ 4606, 4609, 4608, 4605 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 4539, 4541, 4540, 4538 ] }, { "weight": 1, "sprite": [ 4539, 4541, 4540, 4538 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4619, 4621, 4620, 4618 ] }, { "weight": 1, "sprite": [ 4619, 4621, 4620, 4618 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 4532, 4530 ] }, { "weight": 1, "sprite": [ 4533, 4531 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4612, 4610 ] }, { "weight": 1, "sprite": [ 4613, 4611 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 4535, 4537, 4536, 4534 ] }, { "weight": 1, "sprite": [ 4535, 4537, 4536, 4534 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4615, 4617, 4616, 4614 ] }, { "weight": 1, "sprite": [ 4615, 4617, 4616, 4614 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 4542 }, { "weight": 1, "sprite": 4542 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 4622 }, { "weight": 1, "sprite": 4622 } ] } ] }, - { "id": "f_home_furnace", "fg": 4543 }, - { "id": "f_locker", "fg": 4545 }, - { "id": "f_machinery_old", "fg": 4552 }, - { "id": "t_machinery_old", "fg": 4552, "bg": 4653 }, - { "id": "f_machinery_electronic", "fg": 4546 }, - { "id": "t_machinery_electronic", "fg": 4546, "bg": 4653 }, + { "id": "f_home_furnace", "fg": 4623 }, + { "id": "f_locker", "fg": 4625 }, + { "id": "f_machinery_old", "fg": 4632 }, + { "id": "t_machinery_old", "fg": 4632, "bg": 4733 }, + { "id": "f_machinery_electronic", "fg": 4626 }, + { "id": "t_machinery_electronic", "fg": 4626, "bg": 4733 }, { "id": "f_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 4547 }, { "weight": 150, "sprite": 4548 }, { "weight": 100, "sprite": 4549 } ] + "fg": [ { "weight": 20, "sprite": 4627 }, { "weight": 150, "sprite": 4628 }, { "weight": 100, "sprite": 4629 } ] }, { "id": "t_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 4547 }, { "weight": 150, "sprite": 4548 }, { "weight": 100, "sprite": 4549 } ], - "bg": 4653 + "fg": [ { "weight": 20, "sprite": 4627 }, { "weight": 150, "sprite": 4628 }, { "weight": 100, "sprite": 4629 } ], + "bg": 4733 }, - { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 4551 }, { "weight": 100, "sprite": 4550 } ] }, + { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 4631 }, { "weight": 100, "sprite": 4630 } ] }, { "id": "t_machinery_light", - "fg": [ { "weight": 100, "sprite": 4551 }, { "weight": 100, "sprite": 4550 } ], - "bg": 4653 - }, - { "id": "f_mannequin", "fg": 4553 }, - { "id": "f_alien_tendril", "fg": 4557 }, - { "id": "f_alien_zapper", "fg": 4558 }, - { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 4555 }, - { "id": "f_alien_pod_resin", "fg": 4556 }, - { "id": "f_oven", "rotates": true, "fg": [ 4561, 4562, 4560, 4559 ] }, - { "id": "f_rack_coat", "fg": 4563 }, - { "id": "f_scan_bed", "fg": 4564 }, + "fg": [ { "weight": 100, "sprite": 4631 }, { "weight": 100, "sprite": 4630 } ], + "bg": 4733 + }, + { "id": "f_mannequin", "fg": 4633 }, + { "id": "f_alien_tendril", "fg": 4637 }, + { "id": "f_alien_zapper", "fg": 4638 }, + { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 4635 }, + { "id": "f_alien_pod_resin", "fg": 4636 }, + { "id": "f_oven", "rotates": true, "fg": [ 4641, 4642, 4640, 4639 ] }, + { "id": "f_rack_coat", "fg": 4643 }, + { "id": "f_scan_bed", "fg": 4644 }, { "id": "f_scrap_antenna", "animated": true, "fg": [ - { "weight": 15, "sprite": 4565 }, - { "weight": 15, "sprite": 4566 }, - { "weight": 15, "sprite": 4567 }, - { "weight": 15, "sprite": 4568 }, - { "weight": 15, "sprite": 4569 }, - { "weight": 15, "sprite": 4570 } + { "weight": 15, "sprite": 4645 }, + { "weight": 15, "sprite": 4646 }, + { "weight": 15, "sprite": 4647 }, + { "weight": 15, "sprite": 4648 }, + { "weight": 15, "sprite": 4649 }, + { "weight": 15, "sprite": 4650 } ], "rotates": false }, - { "id": "f_shower", "fg": 4571 }, - { "id": "f_standing_tank", "fg": 4572 }, - { "id": "f_statue", "fg": 4573 }, - { "id": "f_sunflower_season_summer", "fg": 4575 }, - { "id": "f_sunflower_season_autumn", "fg": 4574 }, - { "id": "f_vending_c", "fg": 4576 }, - { "id": "f_vending_reinforced", "fg": 4578 }, - { "id": "f_vending_o", "fg": 4577 }, - { "id": "f_ventilator", "fg": 4579 }, - { "id": "f_washer", "fg": 4580 }, - { "id": "f_water_heater", "fg": 4581 }, - { "id": "f_water_pump", "fg": 4582 }, - { "id": "t_water_pump", "fg": 4582, "bg": 4653 }, - { "id": "f_wind_mill", "fg": 4583 }, - { "id": "f_woodstove", "fg": 4584 }, - { "id": "f_workbench", "fg": 4585 }, - { "id": "mon_mech_combat", "fg": 4590, "bg": 4594 }, - { "id": "mon_mech_recon", "fg": 4591, "bg": 4594 }, + { "id": "f_shower", "fg": 4651 }, + { "id": "f_standing_tank", "fg": 4652 }, + { "id": "f_statue", "fg": 4653 }, + { "id": "f_sunflower_season_summer", "fg": 4655 }, + { "id": "f_sunflower_season_autumn", "fg": 4654 }, + { "id": "f_vending_c", "fg": 4656 }, + { "id": "f_vending_reinforced", "fg": 4658 }, + { "id": "f_vending_o", "fg": 4657 }, + { "id": "f_ventilator", "fg": 4659 }, + { "id": "f_washer", "fg": 4660 }, + { "id": "f_water_heater", "fg": 4661 }, + { "id": "f_water_pump", "fg": 4662 }, + { "id": "t_water_pump", "fg": 4662, "bg": 4733 }, + { "id": "f_wind_mill", "fg": 4663 }, + { "id": "f_woodstove", "fg": 4664 }, + { "id": "f_workbench", "fg": 4665 }, + { "id": "mon_mech_combat", "fg": 4670, "bg": 4674 }, + { "id": "mon_mech_recon", "fg": 4671, "bg": 4674 }, { "id": "mon_exodii_worker", "fg": [ - { "weight": 15, "sprite": 4595 }, - { "weight": 15, "sprite": 4596 }, - { "weight": 10, "sprite": 4597 }, - { "weight": 10, "sprite": 4598 } + { "weight": 15, "sprite": 4675 }, + { "weight": 15, "sprite": 4676 }, + { "weight": 10, "sprite": 4677 }, + { "weight": 10, "sprite": 4678 } ], - "bg": 4599 - }, - { "id": "mon_turret_searchlight", "fg": 4601, "bg": 4594 }, - { "id": "mon_biollante", "fg": 4602, "bg": 4594 }, - { "id": "mon_dispatch", "fg": 4603, "bg": 4594 }, - { "id": "mon_dispatch_military", "fg": 4604, "bg": 4594 }, - { "id": "mon_fungal_tendril", "fg": 4605, "bg": 4594 }, - { "id": "mon_fungaloid", "fg": 4606, "bg": 4594 }, - { "id": "mon_laserturret", "fg": 4607, "bg": 4594 }, - { "id": "mon_mosquito_giant", "fg": 4608, "bg": 4594 }, - { "id": "mon_robofac_laserturret_mk1", "fg": 4609, "bg": 4594 }, - { "id": "mon_triffid_flower", "fg": 4610, "bg": 4594 }, - { "id": "mon_turret", "fg": 4611, "bg": 4594 }, - { "id": "mon_turret_speaker", "fg": 4612, "bg": 4594 }, - { "id": "mon_zombie_fungus", "fg": 4613, "bg": 4594 }, - { "id": "mon_zombie_gasbag_fungus", "fg": 4614, "bg": 4594 }, - { "id": "mon_zombie_necro", "fg": 4617, "bg": 4594 }, - { "id": "mon_zombie_master", "fg": 4616, "bg": 4594 }, - { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 4615 }, + "bg": 4679 + }, + { "id": "mon_turret_searchlight", "fg": 4681, "bg": 4674 }, + { "id": "mon_biollante", "fg": 4682, "bg": 4674 }, + { "id": "mon_dispatch", "fg": 4683, "bg": 4674 }, + { "id": "mon_dispatch_military", "fg": 4684, "bg": 4674 }, + { "id": "mon_fungal_tendril", "fg": 4685, "bg": 4674 }, + { "id": "mon_fungaloid", "fg": 4686, "bg": 4674 }, + { "id": "mon_laserturret", "fg": 4687, "bg": 4674 }, + { "id": "mon_mosquito_giant", "fg": 4688, "bg": 4674 }, + { "id": "mon_robofac_laserturret_mk1", "fg": 4689, "bg": 4674 }, + { "id": "mon_triffid_flower", "fg": 4690, "bg": 4674 }, + { "id": "mon_turret", "fg": 4691, "bg": 4674 }, + { "id": "mon_turret_speaker", "fg": 4692, "bg": 4674 }, + { "id": "mon_zombie_fungus", "fg": 4693, "bg": 4674 }, + { "id": "mon_zombie_gasbag_fungus", "fg": 4694, "bg": 4674 }, + { "id": "mon_zombie_necro", "fg": 4697, "bg": 4674 }, + { "id": "mon_zombie_master", "fg": 4696, "bg": 4674 }, + { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 4695 }, { "id": "mon_triffid", - "fg": [ { "weight": 100, "sprite": 4621 }, { "weight": 50, "sprite": 4622 } ], - "bg": 4594 - }, - { "id": "mon_triffid_sprig", "fg": 4623, "bg": 4594 }, - { "id": "mon_triffid_young", "fg": 4624, "bg": 4594 }, - { "id": "overlay_wielded_long_pole", "fg": 4629 }, - { "id": "overlay_wielded_pike_copper", "fg": 4630 }, - { "id": "overlay_wielded_pike", "fg": 4631 }, - { "id": "overlay_wielded_pike_wood", "fg": 4632 }, - { "id": "overlay_female_wielded_wood_panel", "fg": 4633 }, - { "id": "overlay_male_wielded_wood_panel", "fg": 4634 }, - { "id": "overlay_female_wielded_wood_sheet", "fg": 4635 }, - { "id": "overlay_male_wielded_wood_sheet", "fg": 4636 }, - { "id": "airliner_2b_1", "fg": 4641, "bg": 4638, "rotates": false }, - { "id": "airliner_2b", "fg": 4640, "bg": 4642 }, - { "id": "lighthouse_ground", "fg": 4643, "bg": 4639 }, - { "id": "lighthouse_z1", "fg": 4644, "bg": 4638 }, - { "id": "park", "fg": 4645, "bg": 4637 }, + "fg": [ { "weight": 100, "sprite": 4701 }, { "weight": 50, "sprite": 4702 } ], + "bg": 4674 + }, + { "id": "mon_triffid_sprig", "fg": 4703, "bg": 4674 }, + { "id": "mon_triffid_young", "fg": 4704, "bg": 4674 }, + { "id": "overlay_wielded_long_pole", "fg": 4709 }, + { "id": "overlay_wielded_pike_copper", "fg": 4710 }, + { "id": "overlay_wielded_pike", "fg": 4711 }, + { "id": "overlay_wielded_pike_wood", "fg": 4712 }, + { "id": "overlay_female_wielded_wood_panel", "fg": 4713 }, + { "id": "overlay_male_wielded_wood_panel", "fg": 4714 }, + { "id": "overlay_female_wielded_wood_sheet", "fg": 4715 }, + { "id": "overlay_male_wielded_wood_sheet", "fg": 4716 }, + { "id": "airliner_2b_1", "fg": 4721, "bg": 4718, "rotates": false }, + { "id": "airliner_2b", "fg": 4720, "bg": 4722 }, + { "id": "lighthouse_ground", "fg": 4723, "bg": 4719 }, + { "id": "lighthouse_z1", "fg": 4724, "bg": 4718 }, + { "id": "park", "fg": 4725, "bg": 4717 }, { "id": [ "horse_farm_isherwood_13", "horse_farm_13", "farm_dairy_twd_4", "farm_stills_3" ], - "fg": [ 4647, 4646, 4648, 4649 ], - "bg": 4637, + "fg": [ 4727, 4726, 4728, 4729 ], + "bg": 4717, "rotates": true }, { @@ -7151,48 +7351,48 @@ "farm_stills_3_2nd", "farm_stills_3_roof" ], - "fg": [ 4647, 4646, 4648, 4649 ], - "bg": 4638, + "fg": [ 4727, 4726, 4728, 4729 ], + "bg": 4718, "rotates": true }, - { "id": "t_floor_olight", "fg": 4667, "bg": 4654 }, - { "id": "t_thconc_floor_olight", "fg": 4667, "bg": 4663 }, - { "id": "t_metal_floor_olight", "fg": 4667, "bg": 4660 }, - { "id": "t_thconc_y_olight", "fg": 4667, "bg": 4664 }, - { "id": "t_strconc_floor_olight", "fg": 4667, "bg": 4662 }, - { "id": "t_linoleum_whitefloor_olight", "fg": 4667, "bg": 4659 }, - { "id": "t_linoleum_gray_floor_olight", "fg": 4667, "bg": 4658 }, - { "id": "t_atm", "fg": 4668, "bg": 4653 }, - { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 4669, "bg": 4650 }, - { "id": "t_column", "fg": 4670, "bg": 4653 }, + { "id": "t_floor_olight", "fg": 4747, "bg": 4734 }, + { "id": "t_thconc_floor_olight", "fg": 4747, "bg": 4743 }, + { "id": "t_metal_floor_olight", "fg": 4747, "bg": 4740 }, + { "id": "t_thconc_y_olight", "fg": 4747, "bg": 4744 }, + { "id": "t_strconc_floor_olight", "fg": 4747, "bg": 4742 }, + { "id": "t_linoleum_whitefloor_olight", "fg": 4747, "bg": 4739 }, + { "id": "t_linoleum_gray_floor_olight", "fg": 4747, "bg": 4738 }, + { "id": "t_atm", "fg": 4748, "bg": 4733 }, + { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 4749, "bg": 4730 }, + { "id": "t_column", "fg": 4750, "bg": 4733 }, { "id": "t_grass_long", "multitile": true, - "fg": 4689, - "bg": 4657, + "fg": 4769, + "bg": 4737, "additional_tiles": [ { "id": "center", - "bg": 4657, + "bg": 4737, "fg": [ - { "weight": 100, "sprite": 4671 }, - { "weight": 100, "sprite": 4672 }, - { "weight": 100, "sprite": 4673 }, - { "weight": 100, "sprite": 4674 } + { "weight": 100, "sprite": 4751 }, + { "weight": 100, "sprite": 4752 }, + { "weight": 100, "sprite": 4753 }, + { "weight": 100, "sprite": 4754 } ] }, - { "id": "corner", "bg": 4657, "fg": [ 4676, 4678, 4677, 4675 ] }, - { "id": "t_connection", "bg": 4657, "fg": [ 4686, 4688, 4687, 4685 ] }, - { "id": "edge", "bg": 4657, "fg": [ 4680, 4679 ] }, - { "id": "end_piece", "bg": 4657, "fg": [ 4682, 4684, 4683, 4681 ] }, + { "id": "corner", "bg": 4737, "fg": [ 4756, 4758, 4757, 4755 ] }, + { "id": "t_connection", "bg": 4737, "fg": [ 4766, 4768, 4767, 4765 ] }, + { "id": "edge", "bg": 4737, "fg": [ 4760, 4759 ] }, + { "id": "end_piece", "bg": 4737, "fg": [ 4762, 4764, 4763, 4761 ] }, { "id": "unconnected", - "bg": 4657, + "bg": 4737, "fg": [ - { "weight": 100, "sprite": 4689 }, - { "weight": 100, "sprite": 4690 }, - { "weight": 100, "sprite": 4691 }, - { "weight": 100, "sprite": 4692 } + { "weight": 100, "sprite": 4769 }, + { "weight": 100, "sprite": 4770 }, + { "weight": 100, "sprite": 4771 }, + { "weight": 100, "sprite": 4772 } ] } ] @@ -7200,31 +7400,31 @@ { "id": "t_grass_long_season_summer", "multitile": true, - "fg": 4733, - "bg": 4656, + "fg": 4813, + "bg": 4736, "additional_tiles": [ { "id": "center", - "bg": 4656, + "bg": 4736, "fg": [ - { "weight": 100, "sprite": 4715 }, - { "weight": 100, "sprite": 4716 }, - { "weight": 100, "sprite": 4717 }, - { "weight": 100, "sprite": 4718 } + { "weight": 100, "sprite": 4795 }, + { "weight": 100, "sprite": 4796 }, + { "weight": 100, "sprite": 4797 }, + { "weight": 100, "sprite": 4798 } ] }, - { "id": "corner", "bg": 4656, "fg": [ 4720, 4722, 4721, 4719 ] }, - { "id": "t_connection", "bg": 4656, "fg": [ 4730, 4732, 4731, 4729 ] }, - { "id": "edge", "bg": 4656, "fg": [ 4724, 4723 ] }, - { "id": "end_piece", "bg": 4656, "fg": [ 4726, 4728, 4727, 4725 ] }, + { "id": "corner", "bg": 4736, "fg": [ 4800, 4802, 4801, 4799 ] }, + { "id": "t_connection", "bg": 4736, "fg": [ 4810, 4812, 4811, 4809 ] }, + { "id": "edge", "bg": 4736, "fg": [ 4804, 4803 ] }, + { "id": "end_piece", "bg": 4736, "fg": [ 4806, 4808, 4807, 4805 ] }, { "id": "unconnected", - "bg": 4656, + "bg": 4736, "fg": [ - { "weight": 100, "sprite": 4733 }, - { "weight": 100, "sprite": 4734 }, - { "weight": 100, "sprite": 4735 }, - { "weight": 100, "sprite": 4736 } + { "weight": 100, "sprite": 4813 }, + { "weight": 100, "sprite": 4814 }, + { "weight": 100, "sprite": 4815 }, + { "weight": 100, "sprite": 4816 } ] } ] @@ -7232,64 +7432,64 @@ { "id": "t_grass_long_season_autumn", "multitile": true, - "fg": 4711, - "bg": 4655, + "fg": 4791, + "bg": 4735, "additional_tiles": [ { "id": "center", - "bg": 4655, + "bg": 4735, "fg": [ - { "weight": 100, "sprite": 4693 }, - { "weight": 100, "sprite": 4694 }, - { "weight": 100, "sprite": 4695 }, - { "weight": 100, "sprite": 4696 } + { "weight": 100, "sprite": 4773 }, + { "weight": 100, "sprite": 4774 }, + { "weight": 100, "sprite": 4775 }, + { "weight": 100, "sprite": 4776 } ] }, - { "id": "corner", "bg": 4655, "fg": [ 4698, 4700, 4699, 4697 ] }, - { "id": "t_connection", "bg": 4655, "fg": [ 4708, 4710, 4709, 4707 ] }, - { "id": "edge", "bg": 4655, "fg": [ 4702, 4701 ] }, - { "id": "end_piece", "bg": 4655, "fg": [ 4704, 4706, 4705, 4703 ] }, + { "id": "corner", "bg": 4735, "fg": [ 4778, 4780, 4779, 4777 ] }, + { "id": "t_connection", "bg": 4735, "fg": [ 4788, 4790, 4789, 4787 ] }, + { "id": "edge", "bg": 4735, "fg": [ 4782, 4781 ] }, + { "id": "end_piece", "bg": 4735, "fg": [ 4784, 4786, 4785, 4783 ] }, { "id": "unconnected", - "bg": 4655, + "bg": 4735, "fg": [ - { "weight": 100, "sprite": 4711 }, - { "weight": 100, "sprite": 4712 }, - { "weight": 100, "sprite": 4713 }, - { "weight": 100, "sprite": 4714 } + { "weight": 100, "sprite": 4791 }, + { "weight": 100, "sprite": 4792 }, + { "weight": 100, "sprite": 4793 }, + { "weight": 100, "sprite": 4794 } ] } ] }, - { "id": "t_grass_long_season_winter", "fg": 4651 }, + { "id": "t_grass_long_season_winter", "fg": 4731 }, { "id": "t_grass_tall", "multitile": true, - "fg": 4755, - "bg": 4657, + "fg": 4835, + "bg": 4737, "additional_tiles": [ { "id": "center", - "bg": 4657, + "bg": 4737, "fg": [ - { "weight": 100, "sprite": 4737 }, - { "weight": 100, "sprite": 4738 }, - { "weight": 100, "sprite": 4739 }, - { "weight": 100, "sprite": 4740 } + { "weight": 100, "sprite": 4817 }, + { "weight": 100, "sprite": 4818 }, + { "weight": 100, "sprite": 4819 }, + { "weight": 100, "sprite": 4820 } ] }, - { "id": "corner", "bg": 4657, "fg": [ 4742, 4744, 4743, 4741 ] }, - { "id": "t_connection", "bg": 4657, "fg": [ 4752, 4754, 4753, 4751 ] }, - { "id": "edge", "bg": 4657, "fg": [ 4746, 4745 ] }, - { "id": "end_piece", "bg": 4657, "fg": [ 4748, 4750, 4749, 4747 ] }, + { "id": "corner", "bg": 4737, "fg": [ 4822, 4824, 4823, 4821 ] }, + { "id": "t_connection", "bg": 4737, "fg": [ 4832, 4834, 4833, 4831 ] }, + { "id": "edge", "bg": 4737, "fg": [ 4826, 4825 ] }, + { "id": "end_piece", "bg": 4737, "fg": [ 4828, 4830, 4829, 4827 ] }, { "id": "unconnected", - "bg": 4657, + "bg": 4737, "fg": [ - { "weight": 100, "sprite": 4755 }, - { "weight": 100, "sprite": 4756 }, - { "weight": 100, "sprite": 4757 }, - { "weight": 100, "sprite": 4758 } + { "weight": 100, "sprite": 4835 }, + { "weight": 100, "sprite": 4836 }, + { "weight": 100, "sprite": 4837 }, + { "weight": 100, "sprite": 4838 } ] } ] @@ -7297,31 +7497,31 @@ { "id": "t_grass_tall_season_summer", "multitile": true, - "fg": 4799, - "bg": 4656, + "fg": 4879, + "bg": 4736, "additional_tiles": [ { "id": "center", - "bg": 4656, + "bg": 4736, "fg": [ - { "weight": 100, "sprite": 4781 }, - { "weight": 100, "sprite": 4782 }, - { "weight": 100, "sprite": 4783 }, - { "weight": 100, "sprite": 4784 } + { "weight": 100, "sprite": 4861 }, + { "weight": 100, "sprite": 4862 }, + { "weight": 100, "sprite": 4863 }, + { "weight": 100, "sprite": 4864 } ] }, - { "id": "corner", "bg": 4656, "fg": [ 4786, 4788, 4787, 4785 ] }, - { "id": "t_connection", "bg": 4656, "fg": [ 4796, 4798, 4797, 4795 ] }, - { "id": "edge", "bg": 4656, "fg": [ 4790, 4789 ] }, - { "id": "end_piece", "bg": 4656, "fg": [ 4792, 4794, 4793, 4791 ] }, + { "id": "corner", "bg": 4736, "fg": [ 4866, 4868, 4867, 4865 ] }, + { "id": "t_connection", "bg": 4736, "fg": [ 4876, 4878, 4877, 4875 ] }, + { "id": "edge", "bg": 4736, "fg": [ 4870, 4869 ] }, + { "id": "end_piece", "bg": 4736, "fg": [ 4872, 4874, 4873, 4871 ] }, { "id": "unconnected", - "bg": 4656, + "bg": 4736, "fg": [ - { "weight": 100, "sprite": 4799 }, - { "weight": 100, "sprite": 4800 }, - { "weight": 100, "sprite": 4801 }, - { "weight": 100, "sprite": 4802 } + { "weight": 100, "sprite": 4879 }, + { "weight": 100, "sprite": 4880 }, + { "weight": 100, "sprite": 4881 }, + { "weight": 100, "sprite": 4882 } ] } ] @@ -7329,461 +7529,462 @@ { "id": "t_grass_tall_season_autumn", "multitile": true, - "fg": 4777, - "bg": 4655, + "fg": 4857, + "bg": 4735, "additional_tiles": [ { "id": "center", - "bg": 4655, + "bg": 4735, "fg": [ - { "weight": 100, "sprite": 4759 }, - { "weight": 100, "sprite": 4760 }, - { "weight": 100, "sprite": 4761 }, - { "weight": 100, "sprite": 4762 } + { "weight": 100, "sprite": 4839 }, + { "weight": 100, "sprite": 4840 }, + { "weight": 100, "sprite": 4841 }, + { "weight": 100, "sprite": 4842 } ] }, - { "id": "corner", "bg": 4655, "fg": [ 4764, 4766, 4765, 4763 ] }, - { "id": "t_connection", "bg": 4655, "fg": [ 4774, 4776, 4775, 4773 ] }, - { "id": "edge", "bg": 4655, "fg": [ 4768, 4767 ] }, - { "id": "end_piece", "bg": 4655, "fg": [ 4770, 4772, 4771, 4769 ] }, + { "id": "corner", "bg": 4735, "fg": [ 4844, 4846, 4845, 4843 ] }, + { "id": "t_connection", "bg": 4735, "fg": [ 4854, 4856, 4855, 4853 ] }, + { "id": "edge", "bg": 4735, "fg": [ 4848, 4847 ] }, + { "id": "end_piece", "bg": 4735, "fg": [ 4850, 4852, 4851, 4849 ] }, { "id": "unconnected", - "bg": 4655, + "bg": 4735, "fg": [ - { "weight": 100, "sprite": 4777 }, - { "weight": 100, "sprite": 4778 }, - { "weight": 100, "sprite": 4779 }, - { "weight": 100, "sprite": 4780 } + { "weight": 100, "sprite": 4857 }, + { "weight": 100, "sprite": 4858 }, + { "weight": 100, "sprite": 4859 }, + { "weight": 100, "sprite": 4860 } ] } ] }, - { "id": "t_grass_tall_season_winter", "fg": 4651 }, - { "id": "t_gutter_downspout", "fg": 4803, "bg": 4657 }, - { "id": "t_gutter_downspout_season_autumn", "fg": 4803, "bg": 4655 }, - { "id": "t_gutter_downspout_season_summer", "fg": 4803, "bg": 4656 }, - { "id": "t_gutter_downspout_season_winter", "fg": 4803, "bg": 4652 }, - { "id": "t_little_column", "fg": 4804, "bg": 4653 }, - { "id": "t_stairs_up", "fg": 4806 }, - { "id": "t_wood_stairs_up", "fg": 4807 }, - { "id": "t_utility_light", "fg": 4808 }, + { "id": "t_grass_tall_season_winter", "fg": 4731 }, + { "id": "t_gutter_downspout", "fg": 4883, "bg": 4737 }, + { "id": "t_gutter_downspout_season_autumn", "fg": 4883, "bg": 4735 }, + { "id": "t_gutter_downspout_season_summer", "fg": 4883, "bg": 4736 }, + { "id": "t_gutter_downspout_season_winter", "fg": 4883, "bg": 4732 }, + { "id": "t_little_column", "fg": 4884, "bg": 4733 }, + { "id": "t_stairs_up", "fg": 4886 }, + { "id": "t_wood_stairs_up", "fg": 4887 }, + { "id": "t_utility_light", "fg": 4888 }, { "id": "vp_frame_handle", - "fg": [ 4817, 4819, 4818, 4816 ], + "fg": [ 4897, 4899, 4898, 4896 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4817, 4819, 4818, 4816 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4897, 4899, 4898, 4896 ] } ] }, { "id": "vp_stowboard_ne", - "fg": [ 4825, 4828, 4827, 4826 ], + "fg": [ 4905, 4908, 4907, 4906 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4825, 4828, 4827, 4826 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4905, 4908, 4907, 4906 ] } ] }, { "id": "vp_stowboard_nw", - "fg": [ 4829, 4832, 4831, 4830 ], + "fg": [ 4909, 4912, 4911, 4910 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4829, 4832, 4831, 4830 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4909, 4912, 4911, 4910 ] } ] }, { "id": "vp_stowboard_se", - "fg": [ 4833, 4835, 4829, 4834 ], + "fg": [ 4913, 4915, 4909, 4914 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4833, 4835, 4829, 4834 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4913, 4915, 4909, 4914 ] } ] }, { "id": "vp_stowboard_sw", - "fg": [ 4836, 4838, 4825, 4837 ], + "fg": [ 4916, 4918, 4905, 4917 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4836, 4838, 4825, 4837 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4916, 4918, 4905, 4917 ] } ] }, { "id": "vp_stowboard_vertical_left", - "fg": [ 4839, 4841, 4842, 4840 ], + "fg": [ 4919, 4921, 4922, 4920 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4839, 4841, 4842, 4840 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4919, 4921, 4922, 4920 ] } ] }, { "id": "vp_stowboard_vertical_right", - "fg": [ 4842, 4840, 4839, 4841 ], + "fg": [ 4922, 4920, 4919, 4921 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4842, 4840, 4839, 4841 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4922, 4920, 4919, 4921 ] } ] }, { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ], - "fg": [ 4820, 4843, 4820, 4843 ], + "fg": [ 4900, 4923, 4900, 4923 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4820, 4843, 4820, 4843 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4900, 4923, 4900, 4923 ] } ] }, { "id": "vp_stowboard_horizontal_front", - "fg": [ 4820, 4823, 4822, 4821 ], + "fg": [ 4900, 4903, 4902, 4901 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4820, 4823, 4822, 4821 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4900, 4903, 4902, 4901 ] } ] }, { "id": "vp_stowboard_horizontal_rear", - "fg": [ 4824, 4821, 4820, 4823 ], + "fg": [ 4904, 4901, 4900, 4903 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4824, 4821, 4820, 4823 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4904, 4901, 4900, 4903 ] } ] }, { "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ], - "fg": [ 4843, 4820, 4843, 4820 ], + "fg": [ 4923, 4900, 4923, 4900 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4843, 4820, 4843, 4820 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4923, 4900, 4923, 4900 ] } ] }, { "id": "vp_stowboard_wheel_left", - "fg": [ 4823, 4844, 4821, 4840 ], + "fg": [ 4903, 4924, 4901, 4920 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4823, 4844, 4821, 4840 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4903, 4924, 4901, 4920 ] } ] }, { "id": "vp_stowboard_wheel_right", - "fg": [ 4821, 4840, 4823, 4844 ], + "fg": [ 4901, 4920, 4903, 4924 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 4821, 4840, 4823, 4844 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4901, 4920, 4903, 4924 ] } ] }, { "id": "vp_door_trunk", - "fg": [ 4845, 4852, 4851, 4850 ], + "fg": [ 4925, 4932, 4931, 4930 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 4846, 4849, 4848, 4847 ] }, - { "id": "broken", "fg": [ 4815, 4815, 4815, 4815 ], "bg": [ 4846, 4849, 4848, 4847 ] } + { "id": "open", "fg": [ 4926, 4929, 4928, 4927 ] }, + { "id": "broken", "fg": [ 4895, 4895, 4895, 4895 ], "bg": [ 4926, 4929, 4928, 4927 ] } ] }, { "id": "vp_door_trunk_horizontal_2", - "fg": [ 4853, 4860, 4859, 4858 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 4854, 4857, 4856, 4855 ] }, - { "id": "broken", "fg": [ 4815, 4815, 4815, 4815 ], "bg": [ 4854, 4857, 4856, 4855 ] } - ] - }, - { "id": "f_dishwasher", "fg": 4435 }, - { "id": "f_wardrobe", "fg": 4437 }, - { "id": "f_treadmill", "fg": 4441 }, - { "id": "f_capacitor", "fg": 4442 }, - { "id": "f_exodii_charger", "fg": 4443 }, - { "id": "f_exodii_charger_cheap", "fg": 4444 }, - { "id": "f_exodii_lamp", "fg": 4445 }, - { "id": "f_exodii_portal_tower", "fg": 4446 }, - { "id": "f_exodii_scanner", "fg": 4447 }, - { "id": "f_bigmirror", "fg": 4451 }, - { "id": "f_bigmirror_b", "fg": 4452 }, - { "id": "f_canvas_floor", "fg": 4459 }, - { "id": "f_ladder", "fg": 4544 }, - { "id": "f_alien_gasper", "fg": 4554 }, - { "id": "f_street_light", "fg": 4586 }, - { "id": "f_traffic_light", "fg": 4587 }, - { "id": "f_glow_boulder", "fg": 4588 }, - { "id": "f_magic_bench", "fg": 4589 }, - { "id": "rid_mon_mech_combat", "fg": 4592 }, - { "id": "rid_mon_mech_recon", "fg": 4593 }, - { "id": "mon_gracke", "fg": 4600 }, - { "id": "mon_zombie_necro_boomer", "fg": 4618 }, - { "id": "mon_zombie_soldier_blackops_1", "fg": 4619 }, - { "id": "mon_robofac_prototype", "fg": 4620 }, - { "id": "overlay_effect_playing_instrument", "fg": 4625 }, - { "id": "overlay_wielded_mattress", "fg": 4626 }, - { "id": "overlay_wielded_fishing_rod_basic", "fg": 4627 }, - { "id": "overlay_wielded_fishing_rod_professional", "fg": 4628 }, - { "id": "t_ladder_up", "fg": 4665 }, - { "id": "t_ladder_up_down", "fg": 4666 }, - { "id": "t_radio_tower", "fg": 4805 }, - { "id": "t_window_stained_blue", "fg": 4809 }, - { "id": "t_window_stained_green", "fg": 4810 }, - { "id": "t_window_stained_red", "fg": 4811 }, - { "id": "crack_glass_center_tall", "fg": 4812 }, - { "id": "crack_glass_left_tall", "fg": 4813 }, - { "id": "crack_glass_right_tall", "fg": 4814 }, - { "id": "vp_travois", "fg": 4861 } + "fg": [ 4933, 4940, 4939, 4938 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4934, 4937, 4936, 4935 ] }, + { "id": "broken", "fg": [ 4895, 4895, 4895, 4895 ], "bg": [ 4934, 4937, 4936, 4935 ] } + ] + }, + { "id": "f_dishwasher", "fg": 4515 }, + { "id": "f_wardrobe", "fg": 4517 }, + { "id": "f_treadmill", "fg": 4521 }, + { "id": "f_capacitor", "fg": 4522 }, + { "id": "f_exodii_charger", "fg": 4523 }, + { "id": "f_exodii_charger_cheap", "fg": 4524 }, + { "id": "f_exodii_lamp", "fg": 4525 }, + { "id": "f_exodii_portal_tower", "fg": 4526 }, + { "id": "f_exodii_scanner", "fg": 4527 }, + { "id": "f_bigmirror", "fg": 4531 }, + { "id": "f_bigmirror_b", "fg": 4532 }, + { "id": "f_canvas_floor", "fg": 4539 }, + { "id": "f_ladder", "fg": 4624 }, + { "id": "f_alien_gasper", "fg": 4634 }, + { "id": "f_street_light", "fg": 4666 }, + { "id": "f_traffic_light", "fg": 4667 }, + { "id": "f_glow_boulder", "fg": 4668 }, + { "id": "f_magic_bench", "fg": 4669 }, + { "id": "rid_mon_mech_combat", "fg": 4672 }, + { "id": "rid_mon_mech_recon", "fg": 4673 }, + { "id": "mon_gracke", "fg": 4680 }, + { "id": "mon_zombie_necro_boomer", "fg": 4698 }, + { "id": "mon_zombie_soldier_blackops_1", "fg": 4699 }, + { "id": "mon_robofac_prototype", "fg": 4700 }, + { "id": "overlay_effect_playing_instrument", "fg": 4705 }, + { "id": "overlay_wielded_mattress", "fg": 4706 }, + { "id": "overlay_wielded_fishing_rod_basic", "fg": 4707 }, + { "id": "overlay_wielded_fishing_rod_professional", "fg": 4708 }, + { "id": "t_ladder_up", "fg": 4745 }, + { "id": "t_ladder_up_down", "fg": 4746 }, + { "id": "t_radio_tower", "fg": 4885 }, + { "id": "t_window_stained_blue", "fg": 4889 }, + { "id": "t_window_stained_green", "fg": 4890 }, + { "id": "t_window_stained_red", "fg": 4891 }, + { "id": "crack_glass_center_tall", "fg": 4892 }, + { "id": "crack_glass_left_tall", "fg": 4893 }, + { "id": "crack_glass_right_tall", "fg": 4894 }, + { "id": "vp_travois", "fg": 4941 } ] }, { "file": "human_body.png", - "//": "range 4864 to 6559", + "//": "range 4944 to 6655", "sprite_width": 32, "sprite_height": 36, "sprite_offset_x": 0, "sprite_offset_y": -8, "tiles": [ - { "id": "overlay_female_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4869 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4870 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_ANCHOR", "fg": 4871 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_ANCHOR", "fg": 4872 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_BEARD", "fg": 4873 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_BEARD", "fg": 4874 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHEVRON", "fg": 4875 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHEVRON", "fg": 4876 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4877 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4878 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4879 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4880 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4881 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4882 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CIRCLE", "fg": 4883 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CIRCLE", "fg": 4884 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_GOATEE", "fg": 4885 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_GOATEE", "fg": 4886 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4887 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4888 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4889 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4890 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4891 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4892 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4897 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4898 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4893 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4894 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4895 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4896 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_PENCIL", "fg": 4899 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_PENCIL", "fg": 4900 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_ROYALE", "fg": 4901 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_ROYALE", "fg": 4902 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4903 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4904 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4905 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4906 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4907 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4908 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4909 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4910 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4913 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4914 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_VANDYKE", "fg": 4915 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_VANDYKE", "fg": 4916 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_WALRUS", "fg": 4917 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_WALRUS", "fg": 4918 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_ZAPPA", "fg": 4911 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_ZAPPA", "fg": 4912 }, - { "id": "overlay_male_mutation_hair_black_crewcut", "fg": 4920 }, - { "id": "overlay_female_mutation_hair_black_crewcut", "fg": 4919 }, - { "id": "overlay_male_mutation_hair_black_fro", "fg": 4922 }, - { "id": "overlay_female_mutation_hair_black_fro", "fg": 4921 }, - { "id": "overlay_male_mutation_hair_black_long", "fg": 4924 }, - { "id": "overlay_female_mutation_hair_black_long", "fg": 4923 }, - { "id": "overlay_male_mutation_hair_black_medium", "fg": 4926 }, - { "id": "overlay_female_mutation_hair_black_medium", "fg": 4925 }, - { "id": "overlay_male_mutation_hair_black_mohawk", "fg": 4928 }, - { "id": "overlay_female_mutation_hair_black_mohawk", "fg": 4927 }, - { "id": "overlay_male_mutation_hair_black_short", "fg": 4930 }, - { "id": "overlay_female_mutation_hair_black_short", "fg": 4929 }, - { "id": "overlay_male_mutation_hair_blond_crewcut", "fg": 4932 }, - { "id": "overlay_female_mutation_hair_blond_crewcut", "fg": 4931 }, - { "id": "overlay_male_mutation_hair_blond_fro", "fg": 4934 }, - { "id": "overlay_female_mutation_hair_blond_fro", "fg": 4933 }, - { "id": "overlay_male_mutation_hair_blond_long", "fg": 4936 }, - { "id": "overlay_female_mutation_hair_blond_long", "fg": 4935 }, - { "id": "overlay_male_mutation_hair_blond_medium", "fg": 4938 }, - { "id": "overlay_female_mutation_hair_blond_medium", "fg": 4937 }, - { "id": "overlay_male_mutation_hair_blond_mohawk", "fg": 4940 }, - { "id": "overlay_female_mutation_hair_blond_mohawk", "fg": 4939 }, - { "id": "overlay_male_mutation_hair_blond_short", "fg": 4942 }, - { "id": "overlay_female_mutation_hair_blond_short", "fg": 4941 }, - { "id": "overlay_male_mutation_hair_brown_crewcut", "fg": 4944 }, - { "id": "overlay_female_mutation_hair_brown_crewcut", "fg": 4943 }, - { "id": "overlay_male_mutation_hair_brown_fro", "fg": 4946 }, - { "id": "overlay_female_mutation_hair_brown_fro", "fg": 4945 }, - { "id": "overlay_male_mutation_hair_brown_long", "fg": 4948 }, - { "id": "overlay_female_mutation_hair_brown_long", "fg": 4947 }, - { "id": "overlay_male_mutation_hair_brown_medium", "fg": 4950 }, - { "id": "overlay_female_mutation_hair_brown_medium", "fg": 4949 }, - { "id": "overlay_male_mutation_hair_brown_mohawk", "fg": 4952 }, - { "id": "overlay_female_mutation_hair_brown_mohawk", "fg": 4951 }, - { "id": "overlay_male_mutation_hair_brown_short", "fg": 4954 }, - { "id": "overlay_female_mutation_hair_brown_short", "fg": 4953 }, - { "id": "overlay_male_mutation_hair_gray_crewcut", "fg": 4956 }, - { "id": "overlay_female_mutation_hair_gray_crewcut", "fg": 4955 }, - { "id": "overlay_male_mutation_hair_gray_fro", "fg": 4958 }, - { "id": "overlay_female_mutation_hair_gray_fro", "fg": 4957 }, - { "id": "overlay_male_mutation_hair_gray_long", "fg": 4960 }, - { "id": "overlay_female_mutation_hair_gray_long", "fg": 4959 }, - { "id": "overlay_male_mutation_hair_gray_medium", "fg": 4962 }, - { "id": "overlay_female_mutation_hair_gray_medium", "fg": 4961 }, - { "id": "overlay_male_mutation_hair_gray_mohawk", "fg": 4964 }, - { "id": "overlay_female_mutation_hair_gray_mohawk", "fg": 4963 }, - { "id": "overlay_male_mutation_hair_gray_short", "fg": 4966 }, - { "id": "overlay_female_mutation_hair_gray_short", "fg": 4965 }, - { "id": "overlay_male_mutation_hair_red_crewcut", "fg": 4968 }, - { "id": "overlay_female_mutation_hair_red_crewcut", "fg": 4967 }, - { "id": "overlay_male_mutation_hair_red_fro", "fg": 4970 }, - { "id": "overlay_female_mutation_hair_red_fro", "fg": 4969 }, - { "id": "overlay_male_mutation_hair_red_long", "fg": 4972 }, - { "id": "overlay_female_mutation_hair_red_long", "fg": 4971 }, - { "id": "overlay_male_mutation_hair_red_medium", "fg": 4974 }, - { "id": "overlay_female_mutation_hair_red_medium", "fg": 4973 }, - { "id": "overlay_male_mutation_hair_red_mohawk", "fg": 4976 }, - { "id": "overlay_female_mutation_hair_red_mohawk", "fg": 4975 }, - { "id": "overlay_male_mutation_hair_red_short", "fg": 4978 }, - { "id": "overlay_female_mutation_hair_red_short", "fg": 4977 }, - { "id": "overlay_male_mutation_hair_white_crewcut", "fg": 4980 }, - { "id": "overlay_female_mutation_hair_white_crewcut", "fg": 4979 }, - { "id": "overlay_male_mutation_hair_white_fro", "fg": 4982 }, - { "id": "overlay_female_mutation_hair_white_fro", "fg": 4981 }, - { "id": "overlay_male_mutation_hair_white_long", "fg": 4984 }, - { "id": "overlay_female_mutation_hair_white_long", "fg": 4983 }, - { "id": "overlay_male_mutation_hair_white_medium", "fg": 4986 }, - { "id": "overlay_female_mutation_hair_white_medium", "fg": 4985 }, - { "id": "overlay_male_mutation_hair_white_mohawk", "fg": 4988 }, - { "id": "overlay_female_mutation_hair_white_mohawk", "fg": 4987 }, - { "id": "overlay_male_mutation_hair_white_short", "fg": 4990 }, - { "id": "overlay_female_mutation_hair_white_short", "fg": 4989 }, - { "id": "overlay_female_mutation_ARACHNID_ARMS", "fg": 4991 }, - { "id": "overlay_male_mutation_ARACHNID_ARMS", "fg": 4992 }, - { "id": "overlay_female_mutation_BEAK", "fg": 4999 }, - { "id": "overlay_male_mutation_BEAK", "fg": 5000 }, - { "id": "overlay_female_mutation_BEAK_HUM", "fg": 5001 }, - { "id": "overlay_male_mutation_BEAK_HUM", "fg": 5002 }, - { "id": "overlay_female_mutation_BEAK_PECK", "fg": 5003 }, - { "id": "overlay_male_mutation_BEAK_PECK", "fg": 5004 }, - { "id": "overlay_female_mutation_BIRD_EYE", "fg": 5005 }, - { "id": "overlay_male_mutation_BIRD_EYE", "fg": 5006 }, - { "id": "overlay_female_mutation_FANGS", "fg": 5009 }, - { "id": "overlay_male_mutation_FANGS", "fg": 5010 }, - { "id": "overlay_female_mutation_LEAVES", "fg": 5019 }, - { "id": "overlay_male_mutation_LEAVES", "fg": 5020 }, - { "id": "overlay_female_mutation_LIZ_EYE", "fg": 5021 }, - { "id": "overlay_male_mutation_LIZ_EYE", "fg": 5022 }, - { "id": "overlay_female_mutation_MUZZLE", "fg": 5031 }, - { "id": "overlay_male_mutation_MUZZLE", "fg": 5032 }, - { "id": "overlay_female_mutation_MUZZLE_LONG", "fg": 5033 }, - { "id": "overlay_male_mutation_MUZZLE_LONG", "fg": 5034 }, - { "id": "overlay_female_mutation_SABER_TEETH", "fg": 5035 }, - { "id": "overlay_male_mutation_SABER_TEETH", "fg": 5036 }, - { "id": "overlay_female_mutation_TAIL_THICK", "fg": 5045 }, - { "id": "overlay_male_mutation_TAIL_THICK", "fg": 5046 }, - { "id": "overlay_female_mutation_TALONS", "fg": 5047 }, - { "id": "overlay_male_mutation_TALONS", "fg": 5048 }, - { "id": "overlay_female_mutation_VINES1", "fg": 5049 }, - { "id": "overlay_male_mutation_VINES1", "fg": 5050 }, - { "id": "overlay_female_mutation_WINGS_BIRD", "fg": 5053 }, - { "id": "overlay_male_mutation_WINGS_BIRD", "fg": 5054 }, - { "id": "overlay_female_mutation_CHITIN", "fg": 5057 }, - { "id": "overlay_male_mutation_CHITIN", "fg": 5058 }, - { "id": "overlay_female_mutation_CHITIN2", "fg": 5055 }, - { "id": "overlay_male_mutation_CHITIN2", "fg": 5056 }, - { "id": "overlay_female_mutation_FEATHERS", "fg": 5059 }, - { "id": "overlay_male_mutation_FEATHERS", "fg": 5060 }, - { "id": "overlay_female_mutation_SCALES", "fg": 5073 }, - { "id": "overlay_male_mutation_SCALES", "fg": 5074 }, - { "id": "overlay_female_mutation_PLANTSKIN", "fg": 5071 }, - { "id": "overlay_male_mutation_PLANTSKIN", "fg": 5072 }, - { "id": "overlay_female_mutation_LUPINE_FUR", "fg": 5061 }, - { "id": "overlay_male_mutation_LUPINE_FUR", "fg": 5062 }, - { "id": "overlay_female_mutation_SKIN_DARK", "fg": 5075 }, - { "id": "overlay_male_mutation_SKIN_DARK", "fg": 5076 }, - { "id": "overlay_female_mutation_SKIN_LIGHT", "fg": 5077 }, - { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 5078 }, - { "id": "overlay_female_mutation_SKIN_PINK", "fg": 5079 }, - { "id": "overlay_male_mutation_SKIN_PINK", "fg": 5080 }, - { "id": "overlay_female_mutation_SKIN_TAN", "fg": 5081 }, - { "id": "overlay_male_mutation_SKIN_TAN", "fg": 5082 }, - { "id": "overlay_female_mutation_PALE", "fg": 5069 }, - { "id": "overlay_male_mutation_PALE", "fg": 5070 }, - { "id": "overlay_female_mutation_ALBINO", "fg": 5063 }, - { "id": "overlay_male_mutation_ALBINO", "fg": 5066 }, - { "id": "overlay_wielded_arming_sword_fake", "fg": 5139 }, - { "id": "overlay_wielded_arming_sword_inferior", "fg": 5139 }, - { "id": "overlay_wielded_battleaxe_inferior", "fg": 5088 }, - { "id": "overlay_wielded_battleaxe_fake", "fg": 5088 }, - { "id": "overlay_wielded_broadsword_inferior", "fg": 5438 }, - { "id": "overlay_wielded_broadsword_fake", "fg": 5438 }, - { "id": "overlay_wielded_cavalry_sabre_fake", "fg": 5092 }, - { "id": "overlay_wielded_cutlass_fake", "fg": 5094 }, - { "id": "overlay_wielded_cutlass_inferior", "fg": 5094 }, - { "id": "overlay_wielded_estoc_inferior", "fg": 5490 }, - { "id": "overlay_wielded_estoc_fake", "fg": 5490 }, - { "id": "overlay_female_wielded_halberd_fake", "fg": 5518 }, - { "id": "overlay_male_wielded_halberd_fake", "fg": 5519 }, - { "id": "overlay_wielded_jian_fake", "fg": 5100 }, - { "id": "overlay_wielded_jian_inferior", "fg": 5100 }, - { "id": "overlay_wielded_katana_fake", "fg": 5537 }, - { "id": "overlay_wielded_katana_inferior", "fg": 5537 }, - { "id": "overlay_wielded_kris_fake", "fg": 5543 }, - { "id": "overlay_wielded_longsword_fake", "fg": 5546 }, - { "id": "overlay_wielded_longsword_inferior", "fg": 5546 }, - { "id": "overlay_female_wielded_lucern_hammerfake", "fg": 5547 }, - { "id": "overlay_male_wielded_lucern_hammerfake", "fg": 5548 }, - { "id": "overlay_wielded_mace_inferior", "fg": 5549 }, - { "id": "overlay_wielded_mace_fake", "fg": 5549 }, - { "id": "overlay_wielded_morningstar_fake", "fg": 5550 }, - { "id": "overlay_wielded_morningstar_inferior", "fg": 5550 }, - { "id": "overlay_female_wielded_naginata_fake", "fg": 5111 }, - { "id": "overlay_male_wielded_naginata_fake", "fg": 5112 }, - { "id": "overlay_female_wielded_naginata_inferior", "fg": 5111 }, - { "id": "overlay_male_wielded_naginata_inferior", "fg": 5112 }, - { "id": "overlay_wielded_nodachi_inferior", "fg": 5603 }, - { "id": "overlay_wielded_nodachi_fake", "fg": 5603 }, - { "id": "overlay_wielded_pike_fake", "fg": 4631 }, - { "id": "overlay_wielded_pike_inferior", "fg": 4631 }, - { "id": "overlay_wielded_rapier_fake", "fg": 5631 }, - { "id": "overlay_wielded_tanto_inferior", "fg": 5744 }, - { "id": "overlay_wielded_tanto_fake", "fg": 5744 }, - { "id": "overlay_wielded_wakizashi_fake", "fg": 5768 }, - { "id": "overlay_wielded_wakizashi_inferior", "fg": 5768 }, - { "id": "overlay_wielded_zweihander_fake", "fg": 5790 }, - { "id": "overlay_wielded_zweihander_inferior", "fg": 5790 }, - { "id": "overlay_female_wielded_1st_aid", "fg": 5083 }, - { "id": "overlay_male_wielded_1st_aid", "fg": 5084 }, - { "id": "overlay_female_wielded_2x4", "fg": 5085 }, - { "id": "overlay_male_wielded_2x4", "fg": 5086 }, - { "id": "overlay_wielded_bowling_axe", "fg": 5087 }, - { "id": "overlay_wielded_battleaxe", "fg": 5088 }, - { "id": "overlay_wielded_knife_butcher", "fg": 5089 }, - { "id": "overlay_female_wielded_butterfly_swords", "fg": 5090 }, - { "id": "overlay_male_wielded_butterfly_swords", "fg": 5091 }, - { "id": "overlay_wielded_cavalry_sabre", "fg": 5092 }, - { "id": "overlay_wielded_sword_crude", "fg": 5093 }, - { "id": "overlay_wielded_cutlass", "fg": 5094 }, - { "id": "overlay_wielded_dao", "fg": 5095 }, - { "id": "overlay_wielded_diveknife", "fg": 5096 }, - { "id": "overlay_female_wielded_glaive", "fg": 5097 }, - { "id": "overlay_male_wielded_glaive", "fg": 5098 }, - { "id": "overlay_wielded_glass_shiv", "fg": 5099 }, - { "id": "overlay_wielded_jian", "fg": 5100 }, - { "id": "overlay_wielded_khopesh", "fg": 5101 }, - { "id": "overlay_wielded_kukri", "fg": 5102 }, - { "id": "overlay_wielded_lajatang", "fg": 5103 }, - { "id": "overlay_wielded_machete", "fg": 5104 }, - { "id": "overlay_female_wielded_makeshift_halberd", "fg": 5105 }, - { "id": "overlay_male_wielded_makeshift_halberd", "fg": 5106 }, - { "id": "overlay_wielded_makeshift_machete", "fg": 5107 }, - { "id": "overlay_wielded_glass_macuahuitl", "fg": 5108 }, - { "id": "overlay_female_wielded_makeshift_scythe_war", "fg": 5109 }, - { "id": "overlay_male_wielded_makeshift_scythe_war", "fg": 5110 }, - { "id": "overlay_female_wielded_naginata", "fg": 5111 }, - { "id": "overlay_male_wielded_naginata", "fg": 5112 }, - { "id": "overlay_wielded_knuckle_katar", "fg": 5113 }, - { "id": "overlay_wielded_scimitar", "fg": 5114 }, - { "id": "overlay_wielded_scythe", "fg": 5115 }, - { "id": "overlay_wielded_survivor_machete", "fg": 5116 }, - { "id": "overlay_wielded_sword_bayonet", "fg": 5117 }, - { "id": "overlay_female_wielded_bagh_nakha", "fg": 5118 }, - { "id": "overlay_male_wielded_bagh_nakha", "fg": 5119 }, - { "id": "overlay_female_wielded_scythe_war", "fg": 5120 }, - { "id": "overlay_male_wielded_scythe_war", "fg": 5121 }, - { "id": "overlay_wielded_sword_xiphos", "fg": 5122 }, - { "id": "overlay_wielded_acoustic_guitar", "fg": 5127 }, - { "id": "overlay_worn_acoustic_guitar", "fg": 5127 }, - { "id": "overlay_female_wielded_stepladder", "fg": 5137 }, - { "id": "overlay_male_wielded_stepladder", "fg": 5138 }, - { "id": "overlay_wielded_arming_sword", "fg": 5139 }, - { "id": [ "overlay_wielded_m16_auto_rifle_var_acr", "overlay_wielded_acr_300blk" ], "fg": 5243 }, - { "id": [ "overlay_wielded_ak47", "overlay_wielded_aksemi" ], "fg": 5153 }, - { "id": [ "overlay_wielded_carbine_flintlock", "overlay_wielded_carbine_flintlock_double" ], "fg": 5171 }, - { "id": [ "overlay_wielded_hk_mp5", "overlay_wielded_hk_mp5_10_semi" ], "fg": 5217 }, - { "id": [ "overlay_wielded_hptjcp", "overlay_wielded_hptjhp" ], "fg": 5225 }, - { "id": [ "overlay_wielded_longrifle_flintlock", "overlay_wielded_rifle_flintlock" ], "fg": 5239 }, - { "id": [ "overlay_wielded_m16a4", "overlay_wielded_m16_auto_rifle_var_m16a3" ], "fg": 5244 }, - { "id": [ "overlay_wielded_m1911", "overlay_wielded_m1911a1_38super" ], "fg": 5249 }, - { "id": [ "overlay_wielded_m249", "overlay_wielded_m249_semi" ], "fg": 5258 }, - { "id": [ "overlay_wielded_m60", "overlay_wielded_m60_semi" ], "fg": 5269 }, - { "id": [ "overlay_wielded_mp40", "overlay_wielded_mp40semi" ], "fg": 5294 }, + { "id": [ "fd_cigsmoke", "fd_weedsmoke", "fd_cracksmoke", "fd_methsmoke" ], "fg": 4944 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4950 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4951 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_ANCHOR", "fg": 4952 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_ANCHOR", "fg": 4953 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_BEARD", "fg": 4954 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_BEARD", "fg": 4955 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHEVRON", "fg": 4956 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHEVRON", "fg": 4957 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4958 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4959 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4960 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4961 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4962 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4963 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CIRCLE", "fg": 4964 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CIRCLE", "fg": 4965 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_GOATEE", "fg": 4966 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_GOATEE", "fg": 4967 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4968 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4969 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4970 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4971 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4972 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4973 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4978 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4979 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4974 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4975 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4976 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4977 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_PENCIL", "fg": 4980 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_PENCIL", "fg": 4981 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_ROYALE", "fg": 4982 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_ROYALE", "fg": 4983 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4984 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4985 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4986 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4987 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4988 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4989 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4990 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4991 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4994 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4995 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_VANDYKE", "fg": 4996 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_VANDYKE", "fg": 4997 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_WALRUS", "fg": 4998 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_WALRUS", "fg": 4999 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_ZAPPA", "fg": 4992 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_ZAPPA", "fg": 4993 }, + { "id": "overlay_male_mutation_hair_black_crewcut", "fg": 5001 }, + { "id": "overlay_female_mutation_hair_black_crewcut", "fg": 5000 }, + { "id": "overlay_male_mutation_hair_black_fro", "fg": 5003 }, + { "id": "overlay_female_mutation_hair_black_fro", "fg": 5002 }, + { "id": "overlay_male_mutation_hair_black_long", "fg": 5005 }, + { "id": "overlay_female_mutation_hair_black_long", "fg": 5004 }, + { "id": "overlay_male_mutation_hair_black_medium", "fg": 5007 }, + { "id": "overlay_female_mutation_hair_black_medium", "fg": 5006 }, + { "id": "overlay_male_mutation_hair_black_mohawk", "fg": 5009 }, + { "id": "overlay_female_mutation_hair_black_mohawk", "fg": 5008 }, + { "id": "overlay_male_mutation_hair_black_short", "fg": 5011 }, + { "id": "overlay_female_mutation_hair_black_short", "fg": 5010 }, + { "id": "overlay_male_mutation_hair_blond_crewcut", "fg": 5013 }, + { "id": "overlay_female_mutation_hair_blond_crewcut", "fg": 5012 }, + { "id": "overlay_male_mutation_hair_blond_fro", "fg": 5015 }, + { "id": "overlay_female_mutation_hair_blond_fro", "fg": 5014 }, + { "id": "overlay_male_mutation_hair_blond_long", "fg": 5017 }, + { "id": "overlay_female_mutation_hair_blond_long", "fg": 5016 }, + { "id": "overlay_male_mutation_hair_blond_medium", "fg": 5019 }, + { "id": "overlay_female_mutation_hair_blond_medium", "fg": 5018 }, + { "id": "overlay_male_mutation_hair_blond_mohawk", "fg": 5021 }, + { "id": "overlay_female_mutation_hair_blond_mohawk", "fg": 5020 }, + { "id": "overlay_male_mutation_hair_blond_short", "fg": 5023 }, + { "id": "overlay_female_mutation_hair_blond_short", "fg": 5022 }, + { "id": "overlay_male_mutation_hair_brown_crewcut", "fg": 5025 }, + { "id": "overlay_female_mutation_hair_brown_crewcut", "fg": 5024 }, + { "id": "overlay_male_mutation_hair_brown_fro", "fg": 5027 }, + { "id": "overlay_female_mutation_hair_brown_fro", "fg": 5026 }, + { "id": "overlay_male_mutation_hair_brown_long", "fg": 5029 }, + { "id": "overlay_female_mutation_hair_brown_long", "fg": 5028 }, + { "id": "overlay_male_mutation_hair_brown_medium", "fg": 5031 }, + { "id": "overlay_female_mutation_hair_brown_medium", "fg": 5030 }, + { "id": "overlay_male_mutation_hair_brown_mohawk", "fg": 5033 }, + { "id": "overlay_female_mutation_hair_brown_mohawk", "fg": 5032 }, + { "id": "overlay_male_mutation_hair_brown_short", "fg": 5035 }, + { "id": "overlay_female_mutation_hair_brown_short", "fg": 5034 }, + { "id": "overlay_male_mutation_hair_gray_crewcut", "fg": 5037 }, + { "id": "overlay_female_mutation_hair_gray_crewcut", "fg": 5036 }, + { "id": "overlay_male_mutation_hair_gray_fro", "fg": 5039 }, + { "id": "overlay_female_mutation_hair_gray_fro", "fg": 5038 }, + { "id": "overlay_male_mutation_hair_gray_long", "fg": 5041 }, + { "id": "overlay_female_mutation_hair_gray_long", "fg": 5040 }, + { "id": "overlay_male_mutation_hair_gray_medium", "fg": 5043 }, + { "id": "overlay_female_mutation_hair_gray_medium", "fg": 5042 }, + { "id": "overlay_male_mutation_hair_gray_mohawk", "fg": 5045 }, + { "id": "overlay_female_mutation_hair_gray_mohawk", "fg": 5044 }, + { "id": "overlay_male_mutation_hair_gray_short", "fg": 5047 }, + { "id": "overlay_female_mutation_hair_gray_short", "fg": 5046 }, + { "id": "overlay_male_mutation_hair_red_crewcut", "fg": 5049 }, + { "id": "overlay_female_mutation_hair_red_crewcut", "fg": 5048 }, + { "id": "overlay_male_mutation_hair_red_fro", "fg": 5051 }, + { "id": "overlay_female_mutation_hair_red_fro", "fg": 5050 }, + { "id": "overlay_male_mutation_hair_red_long", "fg": 5053 }, + { "id": "overlay_female_mutation_hair_red_long", "fg": 5052 }, + { "id": "overlay_male_mutation_hair_red_medium", "fg": 5055 }, + { "id": "overlay_female_mutation_hair_red_medium", "fg": 5054 }, + { "id": "overlay_male_mutation_hair_red_mohawk", "fg": 5057 }, + { "id": "overlay_female_mutation_hair_red_mohawk", "fg": 5056 }, + { "id": "overlay_male_mutation_hair_red_short", "fg": 5059 }, + { "id": "overlay_female_mutation_hair_red_short", "fg": 5058 }, + { "id": "overlay_male_mutation_hair_white_crewcut", "fg": 5061 }, + { "id": "overlay_female_mutation_hair_white_crewcut", "fg": 5060 }, + { "id": "overlay_male_mutation_hair_white_fro", "fg": 5063 }, + { "id": "overlay_female_mutation_hair_white_fro", "fg": 5062 }, + { "id": "overlay_male_mutation_hair_white_long", "fg": 5065 }, + { "id": "overlay_female_mutation_hair_white_long", "fg": 5064 }, + { "id": "overlay_male_mutation_hair_white_medium", "fg": 5067 }, + { "id": "overlay_female_mutation_hair_white_medium", "fg": 5066 }, + { "id": "overlay_male_mutation_hair_white_mohawk", "fg": 5069 }, + { "id": "overlay_female_mutation_hair_white_mohawk", "fg": 5068 }, + { "id": "overlay_male_mutation_hair_white_short", "fg": 5071 }, + { "id": "overlay_female_mutation_hair_white_short", "fg": 5070 }, + { "id": "overlay_female_mutation_ARACHNID_ARMS", "fg": 5072 }, + { "id": "overlay_male_mutation_ARACHNID_ARMS", "fg": 5073 }, + { "id": "overlay_female_mutation_BEAK", "fg": 5080 }, + { "id": "overlay_male_mutation_BEAK", "fg": 5081 }, + { "id": "overlay_female_mutation_BEAK_HUM", "fg": 5082 }, + { "id": "overlay_male_mutation_BEAK_HUM", "fg": 5083 }, + { "id": "overlay_female_mutation_BEAK_PECK", "fg": 5084 }, + { "id": "overlay_male_mutation_BEAK_PECK", "fg": 5085 }, + { "id": "overlay_female_mutation_BIRD_EYE", "fg": 5086 }, + { "id": "overlay_male_mutation_BIRD_EYE", "fg": 5087 }, + { "id": "overlay_female_mutation_FANGS", "fg": 5090 }, + { "id": "overlay_male_mutation_FANGS", "fg": 5091 }, + { "id": "overlay_female_mutation_LEAVES", "fg": 5100 }, + { "id": "overlay_male_mutation_LEAVES", "fg": 5101 }, + { "id": "overlay_female_mutation_LIZ_EYE", "fg": 5102 }, + { "id": "overlay_male_mutation_LIZ_EYE", "fg": 5103 }, + { "id": "overlay_female_mutation_MUZZLE", "fg": 5112 }, + { "id": "overlay_male_mutation_MUZZLE", "fg": 5113 }, + { "id": "overlay_female_mutation_MUZZLE_LONG", "fg": 5114 }, + { "id": "overlay_male_mutation_MUZZLE_LONG", "fg": 5115 }, + { "id": "overlay_female_mutation_SABER_TEETH", "fg": 5116 }, + { "id": "overlay_male_mutation_SABER_TEETH", "fg": 5117 }, + { "id": "overlay_female_mutation_TAIL_THICK", "fg": 5126 }, + { "id": "overlay_male_mutation_TAIL_THICK", "fg": 5127 }, + { "id": "overlay_female_mutation_TALONS", "fg": 5128 }, + { "id": "overlay_male_mutation_TALONS", "fg": 5129 }, + { "id": "overlay_female_mutation_VINES1", "fg": 5130 }, + { "id": "overlay_male_mutation_VINES1", "fg": 5131 }, + { "id": "overlay_female_mutation_WINGS_BIRD", "fg": 5134 }, + { "id": "overlay_male_mutation_WINGS_BIRD", "fg": 5135 }, + { "id": "overlay_female_mutation_CHITIN", "fg": 5138 }, + { "id": "overlay_male_mutation_CHITIN", "fg": 5139 }, + { "id": "overlay_female_mutation_CHITIN2", "fg": 5136 }, + { "id": "overlay_male_mutation_CHITIN2", "fg": 5137 }, + { "id": "overlay_female_mutation_FEATHERS", "fg": 5140 }, + { "id": "overlay_male_mutation_FEATHERS", "fg": 5141 }, + { "id": "overlay_female_mutation_SCALES", "fg": 5154 }, + { "id": "overlay_male_mutation_SCALES", "fg": 5155 }, + { "id": "overlay_female_mutation_PLANTSKIN", "fg": 5152 }, + { "id": "overlay_male_mutation_PLANTSKIN", "fg": 5153 }, + { "id": "overlay_female_mutation_LUPINE_FUR", "fg": 5142 }, + { "id": "overlay_male_mutation_LUPINE_FUR", "fg": 5143 }, + { "id": "overlay_female_mutation_SKIN_DARK", "fg": 5156 }, + { "id": "overlay_male_mutation_SKIN_DARK", "fg": 5157 }, + { "id": "overlay_female_mutation_SKIN_LIGHT", "fg": 5158 }, + { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 5159 }, + { "id": "overlay_female_mutation_SKIN_PINK", "fg": 5160 }, + { "id": "overlay_male_mutation_SKIN_PINK", "fg": 5161 }, + { "id": "overlay_female_mutation_SKIN_TAN", "fg": 5162 }, + { "id": "overlay_male_mutation_SKIN_TAN", "fg": 5163 }, + { "id": "overlay_female_mutation_PALE", "fg": 5150 }, + { "id": "overlay_male_mutation_PALE", "fg": 5151 }, + { "id": "overlay_female_mutation_ALBINO", "fg": 5144 }, + { "id": "overlay_male_mutation_ALBINO", "fg": 5147 }, + { "id": "overlay_wielded_arming_sword_fake", "fg": 5220 }, + { "id": "overlay_wielded_arming_sword_inferior", "fg": 5220 }, + { "id": "overlay_wielded_battleaxe_inferior", "fg": 5169 }, + { "id": "overlay_wielded_battleaxe_fake", "fg": 5169 }, + { "id": "overlay_wielded_broadsword_inferior", "fg": 5519 }, + { "id": "overlay_wielded_broadsword_fake", "fg": 5519 }, + { "id": "overlay_wielded_cavalry_sabre_fake", "fg": 5173 }, + { "id": "overlay_wielded_cutlass_fake", "fg": 5175 }, + { "id": "overlay_wielded_cutlass_inferior", "fg": 5175 }, + { "id": "overlay_wielded_estoc_inferior", "fg": 5571 }, + { "id": "overlay_wielded_estoc_fake", "fg": 5571 }, + { "id": "overlay_female_wielded_halberd_fake", "fg": 5599 }, + { "id": "overlay_male_wielded_halberd_fake", "fg": 5600 }, + { "id": "overlay_wielded_jian_fake", "fg": 5181 }, + { "id": "overlay_wielded_jian_inferior", "fg": 5181 }, + { "id": "overlay_wielded_katana_fake", "fg": 5618 }, + { "id": "overlay_wielded_katana_inferior", "fg": 5618 }, + { "id": "overlay_wielded_kris_fake", "fg": 5624 }, + { "id": "overlay_wielded_longsword_fake", "fg": 5627 }, + { "id": "overlay_wielded_longsword_inferior", "fg": 5627 }, + { "id": "overlay_female_wielded_lucern_hammerfake", "fg": 5628 }, + { "id": "overlay_male_wielded_lucern_hammerfake", "fg": 5629 }, + { "id": "overlay_wielded_mace_inferior", "fg": 5630 }, + { "id": "overlay_wielded_mace_fake", "fg": 5630 }, + { "id": "overlay_wielded_morningstar_fake", "fg": 5631 }, + { "id": "overlay_wielded_morningstar_inferior", "fg": 5631 }, + { "id": "overlay_female_wielded_naginata_fake", "fg": 5192 }, + { "id": "overlay_male_wielded_naginata_fake", "fg": 5193 }, + { "id": "overlay_female_wielded_naginata_inferior", "fg": 5192 }, + { "id": "overlay_male_wielded_naginata_inferior", "fg": 5193 }, + { "id": "overlay_wielded_nodachi_inferior", "fg": 5684 }, + { "id": "overlay_wielded_nodachi_fake", "fg": 5684 }, + { "id": "overlay_wielded_pike_fake", "fg": 4711 }, + { "id": "overlay_wielded_pike_inferior", "fg": 4711 }, + { "id": "overlay_wielded_rapier_fake", "fg": 5712 }, + { "id": "overlay_wielded_tanto_inferior", "fg": 5825 }, + { "id": "overlay_wielded_tanto_fake", "fg": 5825 }, + { "id": "overlay_wielded_wakizashi_fake", "fg": 5849 }, + { "id": "overlay_wielded_wakizashi_inferior", "fg": 5849 }, + { "id": "overlay_wielded_zweihander_fake", "fg": 5871 }, + { "id": "overlay_wielded_zweihander_inferior", "fg": 5871 }, + { "id": "overlay_female_wielded_1st_aid", "fg": 5164 }, + { "id": "overlay_male_wielded_1st_aid", "fg": 5165 }, + { "id": "overlay_female_wielded_2x4", "fg": 5166 }, + { "id": "overlay_male_wielded_2x4", "fg": 5167 }, + { "id": "overlay_wielded_bowling_axe", "fg": 5168 }, + { "id": "overlay_wielded_battleaxe", "fg": 5169 }, + { "id": "overlay_wielded_knife_butcher", "fg": 5170 }, + { "id": "overlay_female_wielded_butterfly_swords", "fg": 5171 }, + { "id": "overlay_male_wielded_butterfly_swords", "fg": 5172 }, + { "id": "overlay_wielded_cavalry_sabre", "fg": 5173 }, + { "id": "overlay_wielded_sword_crude", "fg": 5174 }, + { "id": "overlay_wielded_cutlass", "fg": 5175 }, + { "id": "overlay_wielded_dao", "fg": 5176 }, + { "id": "overlay_wielded_diveknife", "fg": 5177 }, + { "id": "overlay_female_wielded_glaive", "fg": 5178 }, + { "id": "overlay_male_wielded_glaive", "fg": 5179 }, + { "id": "overlay_wielded_glass_shiv", "fg": 5180 }, + { "id": "overlay_wielded_jian", "fg": 5181 }, + { "id": "overlay_wielded_khopesh", "fg": 5182 }, + { "id": "overlay_wielded_kukri", "fg": 5183 }, + { "id": "overlay_wielded_lajatang", "fg": 5184 }, + { "id": "overlay_wielded_machete", "fg": 5185 }, + { "id": "overlay_female_wielded_makeshift_halberd", "fg": 5186 }, + { "id": "overlay_male_wielded_makeshift_halberd", "fg": 5187 }, + { "id": "overlay_wielded_makeshift_machete", "fg": 5188 }, + { "id": "overlay_wielded_glass_macuahuitl", "fg": 5189 }, + { "id": "overlay_female_wielded_makeshift_scythe_war", "fg": 5190 }, + { "id": "overlay_male_wielded_makeshift_scythe_war", "fg": 5191 }, + { "id": "overlay_female_wielded_naginata", "fg": 5192 }, + { "id": "overlay_male_wielded_naginata", "fg": 5193 }, + { "id": "overlay_wielded_knuckle_katar", "fg": 5194 }, + { "id": "overlay_wielded_scimitar", "fg": 5195 }, + { "id": "overlay_wielded_scythe", "fg": 5196 }, + { "id": "overlay_wielded_survivor_machete", "fg": 5197 }, + { "id": "overlay_wielded_sword_bayonet", "fg": 5198 }, + { "id": "overlay_female_wielded_bagh_nakha", "fg": 5199 }, + { "id": "overlay_male_wielded_bagh_nakha", "fg": 5200 }, + { "id": "overlay_female_wielded_scythe_war", "fg": 5201 }, + { "id": "overlay_male_wielded_scythe_war", "fg": 5202 }, + { "id": "overlay_wielded_sword_xiphos", "fg": 5203 }, + { "id": "overlay_wielded_acoustic_guitar", "fg": 5208 }, + { "id": "overlay_worn_acoustic_guitar", "fg": 5208 }, + { "id": "overlay_female_wielded_stepladder", "fg": 5218 }, + { "id": "overlay_male_wielded_stepladder", "fg": 5219 }, + { "id": "overlay_wielded_arming_sword", "fg": 5220 }, + { "id": [ "overlay_wielded_m16_auto_rifle_var_acr", "overlay_wielded_acr_300blk" ], "fg": 5324 }, + { "id": [ "overlay_wielded_ak47", "overlay_wielded_aksemi" ], "fg": 5234 }, + { "id": [ "overlay_wielded_carbine_flintlock", "overlay_wielded_carbine_flintlock_double" ], "fg": 5252 }, + { "id": [ "overlay_wielded_hk_mp5", "overlay_wielded_hk_mp5_10_semi" ], "fg": 5298 }, + { "id": [ "overlay_wielded_hptjcp", "overlay_wielded_hptjhp" ], "fg": 5306 }, + { "id": [ "overlay_wielded_longrifle_flintlock", "overlay_wielded_rifle_flintlock" ], "fg": 5320 }, + { "id": [ "overlay_wielded_m16a4", "overlay_wielded_m16_auto_rifle_var_m16a3" ], "fg": 5325 }, + { "id": [ "overlay_wielded_m1911", "overlay_wielded_m1911a1_38super" ], "fg": 5330 }, + { "id": [ "overlay_wielded_m249", "overlay_wielded_m249_semi" ], "fg": 5339 }, + { "id": [ "overlay_wielded_m60", "overlay_wielded_m60_semi" ], "fg": 5350 }, + { "id": [ "overlay_wielded_mp40", "overlay_wielded_mp40semi" ], "fg": 5375 }, { "id": [ "overlay_wielded_rifle_9mm", @@ -7795,59 +7996,59 @@ "overlay_wielded_rifle_38", "overlay_wielded_rifle_223" ], - "fg": 5310 - }, - { "id": [ "overlay_wielded_slamfire_shotgun", "overlay_wielded_slamfire_shotgun_d" ], "fg": 5362 }, - { "id": "overlay_wielded_fire_ax", "fg": 5409 }, - { "id": "overlay_wielded_ax", "fg": 5411 }, - { "id": "overlay_wielded_hatchet", "fg": 5410 }, - { "id": "overlay_wielded_bag_canvas", "fg": 5412 }, - { "id": "overlay_wielded_bag_plastic", "fg": 5413 }, - { "id": "overlay_wielded_knife_baselard", "fg": 5414 }, - { "id": "overlay_female_wielded_bat", "fg": 5415 }, - { "id": "overlay_male_wielded_bat", "fg": 5416 }, - { "id": "overlay_female_wielded_bat_metal", "fg": 5417 }, - { "id": "overlay_male_wielded_bat_metal", "fg": 5418 }, - { "id": "overlay_wielded_bone_knife", "fg": 5419 }, - { "id": "overlay_wielded_bottle_glass", "fg": 5420 }, - { "id": "overlay_wielded_bottle_plastic", "fg": 5421 }, - { "id": "overlay_wielded_bottle_plastic_small", "fg": 5422 }, - { "id": "overlay_wielded_compositebow", "fg": 5423 }, - { "id": "overlay_wielded_reflexbow", "fg": 5424 }, - { "id": "overlay_wielded_compgreatbow", "fg": 5425 }, - { "id": "overlay_wielded_compbow", "fg": 5426 }, - { "id": "overlay_wielded_compbow_high", "fg": 5426 }, - { "id": "overlay_wielded_compbow_low", "fg": 5426 }, - { "id": "overlay_wielded_hybridbow", "fg": 5427 }, - { "id": "overlay_wielded_longbow", "fg": 5428 }, - { "id": "overlay_wielded_recurbow", "fg": 5429 }, - { "id": "overlay_wielded_reflexrecurvebow", "fg": 5430 }, - { "id": "overlay_wielded_shortbow", "fg": 5431 }, - { "id": "overlay_wielded_selfbow", "fg": 5432 }, - { "id": "overlay_wielded_box_large", "fg": 5433 }, - { "id": "overlay_wielded_box_medium", "fg": 5434 }, - { "id": "overlay_wielded_box_small", "fg": 5435 }, - { "id": "overlay_wielded_brick", "fg": 5437 }, - { "id": "overlay_wielded_broadsword", "fg": 5438 }, - { "id": "overlay_wielded_broom", "fg": 5439 }, - { "id": "overlay_female_wielded_bwirebat", "fg": 5440 }, - { "id": "overlay_male_wielded_bwirebat", "fg": 5441 }, - { "id": "overlay_wielded_sword_cane", "fg": 5464 }, - { "id": "overlay_wielded_hollow_cane", "fg": 5463 }, - { "id": "overlay_wielded_cane", "fg": 5465 }, - { "id": [ "overlay_female_wielded_cestus", "overlay_female_worn_cestus" ], "fg": 5467 }, - { "id": [ "overlay_male_wielded_cestus", "overlay_male_worn_cestus" ], "fg": 5468 }, - { "id": "overlay_female_wielded_chainsaw_off", "fg": 5469 }, - { "id": "overlay_male_wielded_chainsaw_off", "fg": 5470 }, - { "id": "overlay_wielded_coffeemaker", "fg": 5471 }, - { "id": "overlay_wielded_knife_combat", "fg": 5472 }, - { "id": "overlay_wielded_knife_combat_mod", "fg": 5472 }, - { "id": "overlay_wielded_copper_knife", "fg": 5473 }, - { "id": "overlay_female_wielded_corpse_generic_human", "fg": 5474 }, - { "id": "overlay_male_wielded_corpse_generic_human", "fg": 5475 }, + "fg": 5391 + }, + { "id": [ "overlay_wielded_slamfire_shotgun", "overlay_wielded_slamfire_shotgun_d" ], "fg": 5443 }, + { "id": "overlay_wielded_fire_ax", "fg": 5490 }, + { "id": "overlay_wielded_ax", "fg": 5492 }, + { "id": "overlay_wielded_hatchet", "fg": 5491 }, + { "id": "overlay_wielded_bag_canvas", "fg": 5493 }, + { "id": "overlay_wielded_bag_plastic", "fg": 5494 }, + { "id": "overlay_wielded_knife_baselard", "fg": 5495 }, + { "id": "overlay_female_wielded_bat", "fg": 5496 }, + { "id": "overlay_male_wielded_bat", "fg": 5497 }, + { "id": "overlay_female_wielded_bat_metal", "fg": 5498 }, + { "id": "overlay_male_wielded_bat_metal", "fg": 5499 }, + { "id": "overlay_wielded_bone_knife", "fg": 5500 }, + { "id": "overlay_wielded_bottle_glass", "fg": 5501 }, + { "id": "overlay_wielded_bottle_plastic", "fg": 5502 }, + { "id": "overlay_wielded_bottle_plastic_small", "fg": 5503 }, + { "id": "overlay_wielded_compositebow", "fg": 5504 }, + { "id": "overlay_wielded_reflexbow", "fg": 5505 }, + { "id": "overlay_wielded_compgreatbow", "fg": 5506 }, + { "id": "overlay_wielded_compbow", "fg": 5507 }, + { "id": "overlay_wielded_compbow_high", "fg": 5507 }, + { "id": "overlay_wielded_compbow_low", "fg": 5507 }, + { "id": "overlay_wielded_hybridbow", "fg": 5508 }, + { "id": "overlay_wielded_longbow", "fg": 5509 }, + { "id": "overlay_wielded_recurbow", "fg": 5510 }, + { "id": "overlay_wielded_reflexrecurvebow", "fg": 5511 }, + { "id": "overlay_wielded_shortbow", "fg": 5512 }, + { "id": "overlay_wielded_selfbow", "fg": 5513 }, + { "id": "overlay_wielded_box_large", "fg": 5514 }, + { "id": "overlay_wielded_box_medium", "fg": 5515 }, + { "id": "overlay_wielded_box_small", "fg": 5516 }, + { "id": "overlay_wielded_brick", "fg": 5518 }, + { "id": "overlay_wielded_broadsword", "fg": 5519 }, + { "id": "overlay_wielded_broom", "fg": 5520 }, + { "id": "overlay_female_wielded_bwirebat", "fg": 5521 }, + { "id": "overlay_male_wielded_bwirebat", "fg": 5522 }, + { "id": "overlay_wielded_sword_cane", "fg": 5545 }, + { "id": "overlay_wielded_hollow_cane", "fg": 5544 }, + { "id": "overlay_wielded_cane", "fg": 5546 }, + { "id": [ "overlay_female_wielded_cestus", "overlay_female_worn_cestus" ], "fg": 5548 }, + { "id": [ "overlay_male_wielded_cestus", "overlay_male_worn_cestus" ], "fg": 5549 }, + { "id": "overlay_female_wielded_chainsaw_off", "fg": 5550 }, + { "id": "overlay_male_wielded_chainsaw_off", "fg": 5551 }, + { "id": "overlay_wielded_coffeemaker", "fg": 5552 }, + { "id": "overlay_wielded_knife_combat", "fg": 5553 }, + { "id": "overlay_wielded_knife_combat_mod", "fg": 5553 }, + { "id": "overlay_wielded_copper_knife", "fg": 5554 }, + { "id": "overlay_female_wielded_corpse_generic_human", "fg": 5555 }, + { "id": "overlay_male_wielded_corpse_generic_human", "fg": 5556 }, { "id": [ "overlay_wielded_corpse_mon_ant", "overlay_wielded_corpse_mon_ant_soldier", "overlay_wielded_corpse_mon_ant_queen" ], - "fg": 5477 + "fg": 5558 }, { "id": [ @@ -7855,7 +8056,7 @@ "overlay_wielded_corpse_mon_ant_acid_soldier", "overlay_wielded_corpse_mon_ant_acid_queen" ], - "fg": 5476 + "fg": 5557 }, { "id": [ @@ -7914,7 +8115,7 @@ "overlay_male_wielded_corpse_mon_zombie_prisoner", "overlay_male_wielded_corpse_mon_zombie_military_pilot" ], - "fg": 5479 + "fg": 5560 }, { "id": [ @@ -7973,77 +8174,77 @@ "overlay_female_wielded_corpse_mon_zombie_prisoner", "overlay_female_wielded_corpse_mon_zombie_military_pilot" ], - "fg": 5478 - }, - { "id": "overlay_wielded_cudgel", "fg": 5487 }, - { "id": "overlay_female_wielded_spear_dory", "fg": 5488 }, - { "id": "overlay_male_wielded_spear_dory", "fg": 5489 }, - { "id": "overlay_wielded_estoc", "fg": 5490 }, - { "id": "overlay_wielded_shock_epee", "fg": 5491 }, - { "id": "overlay_wielded_shock_foil", "fg": 5492 }, - { "id": "overlay_wielded_shock_sabre", "fg": 5493 }, - { "id": "overlay_wielded_fencing_epee", "fg": 5494 }, - { "id": "overlay_wielded_fencing_foil", "fg": 5495 }, - { "id": "overlay_wielded_fencing_sabre", "fg": 5496 }, - { "id": "overlay_wielded_fencing_epee_sharpened", "fg": 5497 }, - { "id": "overlay_wielded_fencing_foil_sharpened", "fg": 5498 }, - { "id": "overlay_wielded_fencing_sabre_sharpened", "fg": 5499 }, - { "id": "overlay_wielded_flashlight", "fg": 5501 }, - { "id": "overlay_wielded_heavy_flashlight", "fg": 5502 }, - { "id": "overlay_wielded_spear_forked", "fg": 5503 }, - { "id": "overlay_wielded_glass_shard", "fg": 5504 }, - { "id": "overlay_wielded_grip_hook", "fg": 5517 }, - { "id": "overlay_male_wielded_halberd", "fg": 5519 }, - { "id": "overlay_female_wielded_halberd", "fg": 5518 }, - { "id": "overlay_wielded_crowbar", "fg": 5520 }, - { "id": "overlay_male_wielded_screwdriver", "fg": 5523 }, - { "id": "overlay_female_wielded_screwdriver", "fg": 5522 }, - { "id": "overlay_wielded_shovel", "fg": 5524 }, - { "id": "overlay_wielded_wrench", "fg": 5525 }, - { "id": "overlay_wielded_hammer", "fg": 5521 }, - { "id": "overlay_female_wielded_spear_homemade_halfpike", "fg": 5526 }, - { "id": "overlay_male_wielded_spear_homemade_halfpike", "fg": 5527 }, - { "id": "overlay_wielded_jar_3l_glass", "fg": 5528 }, - { "id": "overlay_wielded_jar_3l_glass_sealed", "fg": 5529 }, - { "id": "overlay_wielded_jar_glass", "fg": 5530 }, - { "id": "overlay_wielded_jar_glass_sealed", "fg": 5531 }, - { "id": "overlay_wielded_javelin", "fg": 5533 }, - { "id": "overlay_wielded_javelin_iron", "fg": 5532 }, - { "id": "overlay_female_wielded_ji", "fg": 5534 }, - { "id": "overlay_male_wielded_ji", "fg": 5535 }, - { "id": "overlay_wielded_jug_plastic", "fg": 5536 }, - { "id": "overlay_wielded_katana", "fg": 5537 }, - { "id": "overlay_wielded_kirpan", "fg": 5538 }, - { "id": "overlay_female_wielded_knuckle_nail", "fg": 5539 }, - { "id": "overlay_male_wielded_knuckle_nail", "fg": 5540 }, - { "id": "overlay_female_wielded_knuckle_steel", "fg": 5541 }, - { "id": "overlay_male_wielded_knuckle_steel", "fg": 5542 }, - { "id": "overlay_wielded_kris", "fg": 5543 }, - { "id": "overlay_wielded_shillelagh_weighted", "fg": 5544 }, - { "id": "overlay_wielded_log", "fg": 5545 }, - { "id": "overlay_wielded_longsword", "fg": 5546 }, - { "id": "overlay_male_wielded_lucern_hammer", "fg": 5548 }, - { "id": "overlay_female_wielded_lucern_hammer", "fg": 5547 }, - { "id": "overlay_wielded_mace", "fg": 5549 }, - { "id": "overlay_wielded_morningstar", "fg": 5550 }, - { "id": "overlay_wielded_makeshift_crowbar", "fg": 5551 }, - { "id": "overlay_wielded_makeshift_knife", "fg": 5552 }, - { "id": "overlay_wielded_makeshift_sap", "fg": 5553 }, - { "id": "overlay_wielded_antibiotics", "fg": 5556 }, - { "id": "overlay_wielded_weak_antibiotic", "fg": 5568 }, - { "id": "overlay_wielded_strong_antibiotic", "fg": 5565 }, - { "id": "overlay_wielded_calcium_tablet", "fg": 5559 }, - { "id": "overlay_wielded_vitamins", "fg": 5567 }, - { "id": "overlay_wielded_gummy_vitamins", "fg": 5560 }, - { "id": "overlay_wielded_antifungal", "fg": 5557 }, - { "id": "overlay_wielded_antiparasitic", "fg": 5558 }, - { "id": "overlay_wielded_iodine", "fg": 5561 }, - { "id": "overlay_wielded_prussian_blue", "fg": 5564 }, - { "id": "overlay_wielded_tramadol", "fg": 5566 }, - { "id": "overlay_wielded_oxycodone", "fg": 5563 }, - { "id": "overlay_female_wielded_mjolnir", "fg": 5569 }, - { "id": "overlay_male_wielded_mjolnir", "fg": 5570 }, - { "id": "overlay_wielded_mop", "fg": 5571 }, + "fg": 5559 + }, + { "id": "overlay_wielded_cudgel", "fg": 5568 }, + { "id": "overlay_female_wielded_spear_dory", "fg": 5569 }, + { "id": "overlay_male_wielded_spear_dory", "fg": 5570 }, + { "id": "overlay_wielded_estoc", "fg": 5571 }, + { "id": "overlay_wielded_shock_epee", "fg": 5572 }, + { "id": "overlay_wielded_shock_foil", "fg": 5573 }, + { "id": "overlay_wielded_shock_sabre", "fg": 5574 }, + { "id": "overlay_wielded_fencing_epee", "fg": 5575 }, + { "id": "overlay_wielded_fencing_foil", "fg": 5576 }, + { "id": "overlay_wielded_fencing_sabre", "fg": 5577 }, + { "id": "overlay_wielded_fencing_epee_sharpened", "fg": 5578 }, + { "id": "overlay_wielded_fencing_foil_sharpened", "fg": 5579 }, + { "id": "overlay_wielded_fencing_sabre_sharpened", "fg": 5580 }, + { "id": "overlay_wielded_flashlight", "fg": 5582 }, + { "id": "overlay_wielded_heavy_flashlight", "fg": 5583 }, + { "id": "overlay_wielded_spear_forked", "fg": 5584 }, + { "id": "overlay_wielded_glass_shard", "fg": 5585 }, + { "id": "overlay_wielded_grip_hook", "fg": 5598 }, + { "id": "overlay_male_wielded_halberd", "fg": 5600 }, + { "id": "overlay_female_wielded_halberd", "fg": 5599 }, + { "id": "overlay_wielded_crowbar", "fg": 5601 }, + { "id": "overlay_male_wielded_screwdriver", "fg": 5604 }, + { "id": "overlay_female_wielded_screwdriver", "fg": 5603 }, + { "id": "overlay_wielded_shovel", "fg": 5605 }, + { "id": "overlay_wielded_wrench", "fg": 5606 }, + { "id": "overlay_wielded_hammer", "fg": 5602 }, + { "id": "overlay_female_wielded_spear_homemade_halfpike", "fg": 5607 }, + { "id": "overlay_male_wielded_spear_homemade_halfpike", "fg": 5608 }, + { "id": "overlay_wielded_jar_3l_glass", "fg": 5609 }, + { "id": "overlay_wielded_jar_3l_glass_sealed", "fg": 5610 }, + { "id": "overlay_wielded_jar_glass", "fg": 5611 }, + { "id": "overlay_wielded_jar_glass_sealed", "fg": 5612 }, + { "id": "overlay_wielded_javelin", "fg": 5614 }, + { "id": "overlay_wielded_javelin_iron", "fg": 5613 }, + { "id": "overlay_female_wielded_ji", "fg": 5615 }, + { "id": "overlay_male_wielded_ji", "fg": 5616 }, + { "id": "overlay_wielded_jug_plastic", "fg": 5617 }, + { "id": "overlay_wielded_katana", "fg": 5618 }, + { "id": "overlay_wielded_kirpan", "fg": 5619 }, + { "id": "overlay_female_wielded_knuckle_nail", "fg": 5620 }, + { "id": "overlay_male_wielded_knuckle_nail", "fg": 5621 }, + { "id": "overlay_female_wielded_knuckle_steel", "fg": 5622 }, + { "id": "overlay_male_wielded_knuckle_steel", "fg": 5623 }, + { "id": "overlay_wielded_kris", "fg": 5624 }, + { "id": "overlay_wielded_shillelagh_weighted", "fg": 5625 }, + { "id": "overlay_wielded_log", "fg": 5626 }, + { "id": "overlay_wielded_longsword", "fg": 5627 }, + { "id": "overlay_male_wielded_lucern_hammer", "fg": 5629 }, + { "id": "overlay_female_wielded_lucern_hammer", "fg": 5628 }, + { "id": "overlay_wielded_mace", "fg": 5630 }, + { "id": "overlay_wielded_morningstar", "fg": 5631 }, + { "id": "overlay_wielded_makeshift_crowbar", "fg": 5632 }, + { "id": "overlay_wielded_makeshift_knife", "fg": 5633 }, + { "id": "overlay_wielded_makeshift_sap", "fg": 5634 }, + { "id": "overlay_wielded_antibiotics", "fg": 5637 }, + { "id": "overlay_wielded_weak_antibiotic", "fg": 5649 }, + { "id": "overlay_wielded_strong_antibiotic", "fg": 5646 }, + { "id": "overlay_wielded_calcium_tablet", "fg": 5640 }, + { "id": "overlay_wielded_vitamins", "fg": 5648 }, + { "id": "overlay_wielded_gummy_vitamins", "fg": 5641 }, + { "id": "overlay_wielded_antifungal", "fg": 5638 }, + { "id": "overlay_wielded_antiparasitic", "fg": 5639 }, + { "id": "overlay_wielded_iodine", "fg": 5642 }, + { "id": "overlay_wielded_prussian_blue", "fg": 5645 }, + { "id": "overlay_wielded_tramadol", "fg": 5647 }, + { "id": "overlay_wielded_oxycodone", "fg": 5644 }, + { "id": "overlay_female_wielded_mjolnir", "fg": 5650 }, + { "id": "overlay_male_wielded_mjolnir", "fg": 5651 }, + { "id": "overlay_wielded_mop", "fg": 5652 }, { "id": [ "overlay_wielded_tourniquet_upper", @@ -8051,590 +8252,590 @@ "overlay_wielded_tourniquet_lower", "overlay_wielded_tourniquet_lower_XL" ], - "fg": 5597 - }, - { "id": "overlay_female_wielded_nailbat", "fg": 5599 }, - { "id": "overlay_male_wielded_nailbat", "fg": 5600 }, - { "id": "overlay_female_wielded_nailboard", "fg": 5601 }, - { "id": "overlay_male_wielded_nailboard", "fg": 5602 }, - { "id": "overlay_wielded_nodachi", "fg": 5603 }, - { "id": "overlay_male_wielded_2h_flail_wood", "fg": 5605 }, - { "id": "overlay_female_wielded_2h_flail_wood", "fg": 5604 }, - { "id": "overlay_male_wielded_pillow", "fg": 5609 }, - { "id": "overlay_female_wielded_pillow", "fg": 5608 }, - { "id": "overlay_male_wielded_down_pillow", "fg": 5607 }, - { "id": "overlay_female_wielded_down_pillow", "fg": 5606 }, - { "id": "overlay_wielded_pipe", "fg": 5610 }, - { "id": "overlay_wielded_pitchfork", "fg": 5611 }, - { "id": "overlay_wielded_sharp_toothbrush", "fg": 5612 }, - { "id": "overlay_wielded_pockknife", "fg": 5613 }, - { "id": "overlay_female_wielded_pot", "fg": 5616 }, - { "id": "overlay_male_wielded_pot", "fg": 5617 }, - { "id": "overlay_female_wielded_pot_copper", "fg": 5618 }, - { "id": "overlay_male_wielded_pot_copper", "fg": 5619 }, - { "id": "overlay_wielded_punch_dagger", "fg": 5620 }, - { "id": "overlay_female_wielded_qiang", "fg": 5621 }, - { "id": "overlay_male_wielded_qiang", "fg": 5622 }, - { "id": "overlay_female_wielded_rag", "fg": 5629 }, - { "id": "overlay_male_wielded_rag", "fg": 5630 }, - { "id": "overlay_wielded_rapier", "fg": 5631 }, - { "id": "overlay_wielded_rebar", "fg": 5632 }, - { "id": "overlay_wielded_knife_rm42", "fg": 5633 }, - { "id": "overlay_wielded_rock", "fg": 5634 }, - { "id": "overlay_wielded_rock_sock", "fg": 5635 }, - { "id": "overlay_wielded_rolling_pin", "fg": 5636 }, - { "id": "overlay_wielded_scissors", "fg": 5637 }, - { "id": "overlay_wielded_sharp_rock", "fg": 5638 }, - { "id": "overlay_wielded_shillelagh", "fg": 5639 }, + "fg": 5678 + }, + { "id": "overlay_female_wielded_nailbat", "fg": 5680 }, + { "id": "overlay_male_wielded_nailbat", "fg": 5681 }, + { "id": "overlay_female_wielded_nailboard", "fg": 5682 }, + { "id": "overlay_male_wielded_nailboard", "fg": 5683 }, + { "id": "overlay_wielded_nodachi", "fg": 5684 }, + { "id": "overlay_male_wielded_2h_flail_wood", "fg": 5686 }, + { "id": "overlay_female_wielded_2h_flail_wood", "fg": 5685 }, + { "id": "overlay_male_wielded_pillow", "fg": 5690 }, + { "id": "overlay_female_wielded_pillow", "fg": 5689 }, + { "id": "overlay_male_wielded_down_pillow", "fg": 5688 }, + { "id": "overlay_female_wielded_down_pillow", "fg": 5687 }, + { "id": "overlay_wielded_pipe", "fg": 5691 }, + { "id": "overlay_wielded_pitchfork", "fg": 5692 }, + { "id": "overlay_wielded_sharp_toothbrush", "fg": 5693 }, + { "id": "overlay_wielded_pockknife", "fg": 5694 }, + { "id": "overlay_female_wielded_pot", "fg": 5697 }, + { "id": "overlay_male_wielded_pot", "fg": 5698 }, + { "id": "overlay_female_wielded_pot_copper", "fg": 5699 }, + { "id": "overlay_male_wielded_pot_copper", "fg": 5700 }, + { "id": "overlay_wielded_punch_dagger", "fg": 5701 }, + { "id": "overlay_female_wielded_qiang", "fg": 5702 }, + { "id": "overlay_male_wielded_qiang", "fg": 5703 }, + { "id": "overlay_female_wielded_rag", "fg": 5710 }, + { "id": "overlay_male_wielded_rag", "fg": 5711 }, + { "id": "overlay_wielded_rapier", "fg": 5712 }, + { "id": "overlay_wielded_rebar", "fg": 5713 }, + { "id": "overlay_wielded_knife_rm42", "fg": 5714 }, + { "id": "overlay_wielded_rock", "fg": 5715 }, + { "id": "overlay_wielded_rock_sock", "fg": 5716 }, + { "id": "overlay_wielded_rolling_pin", "fg": 5717 }, + { "id": "overlay_wielded_scissors", "fg": 5718 }, + { "id": "overlay_wielded_sharp_rock", "fg": 5719 }, + { "id": "overlay_wielded_shillelagh", "fg": 5720 }, { "id": "overlay_female_wielded_cigar_lit", "fg": [ - { "weight": 14, "sprite": 5642 }, - { "weight": 14, "sprite": 5643 }, - { "weight": 14, "sprite": 5644 }, - { "weight": 14, "sprite": 5645 }, - { "weight": 14, "sprite": 5646 }, - { "weight": 14, "sprite": 5647 }, - { "weight": 14, "sprite": 5648 } + { "weight": 14, "sprite": 5723 }, + { "weight": 14, "sprite": 5724 }, + { "weight": 14, "sprite": 5725 }, + { "weight": 14, "sprite": 5726 }, + { "weight": 14, "sprite": 5727 }, + { "weight": 14, "sprite": 5728 }, + { "weight": 14, "sprite": 5729 } ], "animated": true }, { "id": "overlay_male_wielded_cigar_lit", "fg": [ - { "weight": 14, "sprite": 5651 }, - { "weight": 14, "sprite": 5652 }, - { "weight": 14, "sprite": 5653 }, - { "weight": 14, "sprite": 5654 }, - { "weight": 14, "sprite": 5655 }, - { "weight": 14, "sprite": 5656 }, - { "weight": 14, "sprite": 5657 } + { "weight": 14, "sprite": 5732 }, + { "weight": 14, "sprite": 5733 }, + { "weight": 14, "sprite": 5734 }, + { "weight": 14, "sprite": 5735 }, + { "weight": 14, "sprite": 5736 }, + { "weight": 14, "sprite": 5737 }, + { "weight": 14, "sprite": 5738 } ], "animated": true }, { "id": "overlay_female_wielded_cig_lit", "fg": [ - { "weight": 14, "sprite": 5660 }, - { "weight": 14, "sprite": 5661 }, - { "weight": 14, "sprite": 5662 }, - { "weight": 14, "sprite": 5663 }, - { "weight": 14, "sprite": 5664 }, - { "weight": 14, "sprite": 5665 }, - { "weight": 14, "sprite": 5666 } + { "weight": 14, "sprite": 5741 }, + { "weight": 14, "sprite": 5742 }, + { "weight": 14, "sprite": 5743 }, + { "weight": 14, "sprite": 5744 }, + { "weight": 14, "sprite": 5745 }, + { "weight": 14, "sprite": 5746 }, + { "weight": 14, "sprite": 5747 } ], "animated": true }, { "id": "overlay_male_wielded_cig_lit", "fg": [ - { "weight": 14, "sprite": 5669 }, - { "weight": 14, "sprite": 5670 }, - { "weight": 14, "sprite": 5671 }, - { "weight": 14, "sprite": 5672 }, - { "weight": 14, "sprite": 5673 }, - { "weight": 14, "sprite": 5674 }, - { "weight": 14, "sprite": 5675 } + { "weight": 14, "sprite": 5750 }, + { "weight": 14, "sprite": 5751 }, + { "weight": 14, "sprite": 5752 }, + { "weight": 14, "sprite": 5753 }, + { "weight": 14, "sprite": 5754 }, + { "weight": 14, "sprite": 5755 }, + { "weight": 14, "sprite": 5756 } ], "animated": true }, { "id": "overlay_female_wielded_joint_lit", "fg": [ - { "weight": 14, "sprite": 5677 }, - { "weight": 14, "sprite": 5678 }, - { "weight": 14, "sprite": 5679 }, - { "weight": 14, "sprite": 5680 }, - { "weight": 14, "sprite": 5681 }, - { "weight": 14, "sprite": 5682 }, - { "weight": 14, "sprite": 5683 } + { "weight": 14, "sprite": 5758 }, + { "weight": 14, "sprite": 5759 }, + { "weight": 14, "sprite": 5760 }, + { "weight": 14, "sprite": 5761 }, + { "weight": 14, "sprite": 5762 }, + { "weight": 14, "sprite": 5763 }, + { "weight": 14, "sprite": 5764 } ], "animated": true }, { "id": "overlay_male_wielded_joint_lit", "fg": [ - { "weight": 14, "sprite": 5686 }, - { "weight": 14, "sprite": 5687 }, - { "weight": 14, "sprite": 5688 }, - { "weight": 14, "sprite": 5689 }, - { "weight": 14, "sprite": 5690 }, - { "weight": 14, "sprite": 5691 }, - { "weight": 14, "sprite": 5692 } + { "weight": 14, "sprite": 5767 }, + { "weight": 14, "sprite": 5768 }, + { "weight": 14, "sprite": 5769 }, + { "weight": 14, "sprite": 5770 }, + { "weight": 14, "sprite": 5771 }, + { "weight": 14, "sprite": 5772 }, + { "weight": 14, "sprite": 5773 } ], "animated": true }, { "id": "overlay_female_wielded_pipe_tobacco", "fg": [ - { "weight": 14, "sprite": 5694 }, - { "weight": 14, "sprite": 5695 }, - { "weight": 14, "sprite": 5696 }, - { "weight": 14, "sprite": 5697 }, - { "weight": 14, "sprite": 5698 }, - { "weight": 14, "sprite": 5699 }, - { "weight": 14, "sprite": 5700 } + { "weight": 14, "sprite": 5775 }, + { "weight": 14, "sprite": 5776 }, + { "weight": 14, "sprite": 5777 }, + { "weight": 14, "sprite": 5778 }, + { "weight": 14, "sprite": 5779 }, + { "weight": 14, "sprite": 5780 }, + { "weight": 14, "sprite": 5781 } ], "animated": true }, { "id": "overlay_male_wielded_pipe_tobacco", "fg": [ - { "weight": 14, "sprite": 5701 }, - { "weight": 14, "sprite": 5702 }, - { "weight": 14, "sprite": 5703 }, - { "weight": 14, "sprite": 5704 }, - { "weight": 14, "sprite": 5705 }, - { "weight": 14, "sprite": 5706 }, - { "weight": 14, "sprite": 5707 } + { "weight": 14, "sprite": 5782 }, + { "weight": 14, "sprite": 5783 }, + { "weight": 14, "sprite": 5784 }, + { "weight": 14, "sprite": 5785 }, + { "weight": 14, "sprite": 5786 }, + { "weight": 14, "sprite": 5787 }, + { "weight": 14, "sprite": 5788 } ], "animated": true }, - { "id": "overlay_male_wielded_pointy_stick", "fg": 5709 }, - { "id": "overlay_female_wielded_pointy_stick", "fg": 5708 }, - { "id": "overlay_male_wielded_spear_wood", "fg": 5725 }, - { "id": "overlay_female_wielded_spear_wood", "fg": 5724 }, - { "id": "overlay_male_wielded_spear_spike", "fg": 5721 }, - { "id": "overlay_female_wielded_spear_spike", "fg": 5720 }, - { "id": "overlay_male_wielded_spear_knife", "fg": 5713 }, - { "id": "overlay_female_wielded_spear_knife", "fg": 5712 }, - { "id": "overlay_male_wielded_spear_knife_superior", "fg": 5715 }, - { "id": "overlay_female_wielded_spear_knife_superior", "fg": 5714 }, - { "id": "overlay_male_wielded_spear_rebar", "fg": 5719 }, - { "id": "overlay_female_wielded_spear_rebar", "fg": 5718 }, - { "id": "overlay_male_wielded_spear_pipe", "fg": 5717 }, - { "id": "overlay_female_wielded_spear_pipe", "fg": 5716 }, - { "id": "overlay_male_wielded_spear_steel", "fg": 5723 }, - { "id": "overlay_female_wielded_spear_steel", "fg": 5722 }, - { "id": "overlay_male_wielded_spear_copper", "fg": 5711 }, - { "id": "overlay_female_wielded_spear_copper", "fg": 5710 }, - { "id": "overlay_female_wielded_splinter", "fg": 5726 }, - { "id": "overlay_male_wielded_splinter", "fg": 5727 }, - { "id": "overlay_wielded_knife_steak", "fg": 5728 }, - { "id": "overlay_wielded_steel_chunk", "fg": 5729 }, - { "id": "overlay_wielded_steel_lump", "fg": 5730 }, - { "id": "overlay_female_wielded_stick", "fg": 5731 }, - { "id": "overlay_male_wielded_stick", "fg": 5732 }, - { "id": "overlay_female_wielded_stick_long", "fg": 5733 }, - { "id": "overlay_male_wielded_stick_long", "fg": 5734 }, - { "id": "overlay_female_wielded_primitive_hammer", "fg": 5735 }, - { "id": "overlay_male_wielded_primitive_hammer", "fg": 5736 }, - { "id": "overlay_female_wielded_spear_stone", "fg": 5737 }, - { "id": "overlay_male_wielded_spear_stone", "fg": 5738 }, - { "id": "overlay_wielded_knife_rambo", "fg": 5739 }, - { "id": "overlay_female_wielded_spear_survivor", "fg": 5740 }, - { "id": "overlay_male_wielded_spear_survivor", "fg": 5741 }, - { "id": "overlay_wielded_switchblade", "fg": 5742 }, - { "id": "overlay_wielded_tanto", "fg": 5744 }, - { "id": "overlay_female_wielded_teapot", "fg": 5745 }, - { "id": "overlay_male_wielded_teapot", "fg": 5746 }, - { "id": "overlay_female_wielded_television", "fg": 5747 }, - { "id": "overlay_male_wielded_television", "fg": 5748 }, - { "id": "overlay_female_wielded_thermos", "fg": 5749 }, - { "id": "overlay_male_wielded_thermos", "fg": 5750 }, - { "id": "overlay_wielded_boltcutters", "fg": 5751 }, - { "id": "overlay_wielded_e_tool", "fg": 5753 }, - { "id": "overlay_wielded_halligan", "fg": 5754 }, - { "id": "overlay_wielded_jackhammer", "fg": 5756 }, - { "id": "overlay_wielded_elec_jackhammer", "fg": 5756 }, - { "id": "overlay_wielded_lobotomizer", "fg": 5757 }, - { "id": "overlay_wielded_makeshift_axe", "fg": 5758 }, - { "id": "overlay_wielded_ny_hook", "fg": 5759 }, - { "id": "overlay_wielded_pickaxe", "fg": 5760 }, - { "id": "overlay_wielded_hammer_sledge_engineer", "fg": 5761 }, - { "id": "overlay_wielded_hammer_sledge_heavy", "fg": 5762 }, - { "id": "overlay_wielded_hammer_sledge_short", "fg": 5763 }, - { "id": "overlay_wielded_hammer_sledge", "fg": 5764 }, - { "id": "overlay_wielded_g_shovel", "fg": 5765 }, - { "id": "overlay_wielded_primitive_shovel", "fg": 5766 }, - { "id": "overlay_wielded_knife_trench", "fg": 5767 }, - { "id": "overlay_wielded_wakizashi", "fg": 5768 }, - { "id": "overlay_male_wielded_2h_flail_steel", "fg": 5770 }, - { "id": "overlay_female_wielded_2h_flail_steel", "fg": 5769 }, - { "id": "overlay_wielded_warhammer", "fg": 5771 }, - { "id": "overlay_wielded_bolas", "fg": 5772 }, - { "id": "overlay_wielded_bullwhip", "fg": 5773 }, - { "id": "overlay_female_wielded_homewrecker", "fg": 5774 }, - { "id": "overlay_male_wielded_homewrecker", "fg": 5775 }, - { "id": "overlay_wielded_lawn_dart", "fg": 5776 }, - { "id": "overlay_wielded_net", "fg": 5777 }, - { "id": "overlay_wielded_bullwhip_razor", "fg": 5778 }, - { "id": "overlay_wielded_sling", "fg": 5779 }, - { "id": "overlay_wielded_staff_sling", "fg": 5780 }, - { "id": "overlay_wielded_throwing_axe", "fg": 5781 }, - { "id": "overlay_female_wielded_throwing_knife", "fg": 5782 }, - { "id": "overlay_male_wielded_throwing_knife", "fg": 5783 }, - { "id": "overlay_wielded_throwing_stick", "fg": 5784 }, - { "id": "overlay_wielded_shocktonfa_off", "fg": 5785 }, - { "id": "overlay_wielded_shocktonfa_on", "fg": 5785 }, - { "id": "overlay_wielded_tonfa", "fg": 5786 }, - { "id": "overlay_wielded_tonfa_wood", "fg": 5787 }, - { "id": "overlay_wielded_sword_wood", "fg": 5788 }, - { "id": "overlay_wielded_sword_nail", "fg": 5789 }, - { "id": "overlay_wielded_zweihander", "fg": 5790 }, - { "id": "overlay_female_worn_armor_samurai", "fg": 5791 }, - { "id": "overlay_male_worn_armor_samurai", "fg": 5792 }, - { "id": "overlay_female_worn_chainmail_suit", "fg": 5801 }, - { "id": "overlay_male_worn_chainmail_suit", "fg": 5802 }, - { "id": "overlay_female_worn_chainmail_feet", "fg": 5803 }, - { "id": "overlay_male_worn_chainmail_feet", "fg": 5804 }, - { "id": "overlay_female_worn_chainmail_hood", "fg": 5805 }, - { "id": "overlay_male_worn_chainmail_hood", "fg": 5806 }, - { "id": "overlay_female_worn_chainmail_hands", "fg": 5807 }, - { "id": "overlay_male_worn_chainmail_hands", "fg": 5808 }, - { "id": "overlay_female_worn_chainmail_hauberk", "fg": 5809 }, - { "id": "overlay_male_worn_chainmail_hauberk", "fg": 5810 }, - { "id": "overlay_female_worn_chainmail_legs", "fg": 5811 }, - { "id": "overlay_male_worn_chainmail_legs", "fg": 5812 }, - { "id": "overlay_female_worn_chainmail_arms", "fg": 5813 }, - { "id": "overlay_male_worn_chainmail_arms", "fg": 5814 }, - { "id": "overlay_female_worn_chainmail_vest", "fg": 5815 }, - { "id": "overlay_male_worn_chainmail_vest", "fg": 5816 }, - { "id": "overlay_female_worn_vest_leather_mod", "fg": 5797 }, - { "id": "overlay_male_worn_vest_leather_mod", "fg": 5798 }, - { "id": "overlay_female_worn_armor_blarmor", "fg": 5799 }, - { "id": "overlay_male_worn_armor_blarmor", "fg": 5800 }, - { "id": "overlay_female_worn_armguard_larmor", "fg": 5821 }, - { "id": "overlay_male_worn_armguard_larmor", "fg": 5822 }, - { "id": "overlay_female_worn_boots_larmor", "fg": 5823 }, - { "id": "overlay_male_worn_boots_larmor", "fg": 5824 }, - { "id": "overlay_male_worn_gauntlets_larmor", "fg": 5825 }, - { "id": "overlay_female_worn_gauntlets_larmor", "fg": 5826 }, - { "id": "overlay_male_worn_helmet_larmor", "fg": 5828 }, - { "id": "overlay_female_worn_helmet_larmor", "fg": 5827 }, - { "id": "overlay_female_worn_armor_larmor", "fg": 5829 }, - { "id": "overlay_male_worn_armor_larmor", "fg": 5830 }, - { "id": "overlay_female_worn_footrags_leather", "fg": 5831 }, - { "id": "overlay_male_worn_footrags_leather", "fg": 5832 }, - { "id": "overlay_female_worn_gloves_wraps_leather", "fg": 5833 }, - { "id": "overlay_male_worn_gloves_wraps_leather", "fg": 5834 }, - { "id": "overlay_female_worn_vambrace_larmor", "fg": 5835 }, - { "id": "overlay_male_worn_vambrace_larmor", "fg": 5836 }, - { "id": "overlay_female_worn_vest_leather", "fg": 5837 }, - { "id": "overlay_male_worn_vest_leather", "fg": 5838 }, - { "id": "overlay_female_worn_armor_plarmor", "fg": 5841 }, - { "id": "overlay_male_worn_armor_plarmor", "fg": 5842 }, - { "id": "overlay_female_worn_gloves_studded", "fg": 5849 }, - { "id": "overlay_male_worn_gloves_studded", "fg": 5850 }, - { "id": "overlay_male_worn_helmet_plate", "fg": 5820 }, - { "id": "overlay_male_worn_armor_lightplate", "fg": 5840 }, - { "id": "overlay_male_worn_gloves_plate", "fg": 5796 }, - { "id": "overlay_male_worn_boots_plate", "fg": 5794 }, - { "id": "overlay_male_worn_cuirass_lightplate", "fg": 5818 }, - { "id": "overlay_male_worn_armguard_lightplate", "fg": 5846 }, - { "id": "overlay_male_worn_legguard_lightplate", "fg": 5848 }, - { "id": "overlay_female_worn_helmet_plate", "fg": 5819 }, - { "id": "overlay_female_worn_armor_lightplate", "fg": 5839 }, - { "id": "overlay_female_worn_gloves_plate", "fg": 5795 }, - { "id": "overlay_female_worn_boots_plate", "fg": 5793 }, - { "id": "overlay_female_worn_cuirass_lightplate", "fg": 5817 }, - { "id": "overlay_female_worn_armguard_lightplate", "fg": 5845 }, - { "id": "overlay_female_worn_legguard_lightplate", "fg": 5847 }, - { "id": "overlay_female_worn_armguard_hard", "fg": 5851 }, - { "id": "overlay_male_worn_armguard_hard", "fg": 5852 }, - { "id": "overlay_female_worn_armor_riot", "fg": 5853 }, - { "id": "overlay_male_worn_armor_riot", "fg": 5854 }, - { "id": "overlay_female_worn_ballistic_vest_esapi", "fg": 5855 }, - { "id": "overlay_male_worn_ballistic_vest_esapi", "fg": 5856 }, - { "id": "overlay_female_worn_helmet_riot", "fg": 5857 }, - { "id": "overlay_male_worn_helmet_riot", "fg": 5858 }, - { "id": "overlay_female_worn_kevlar", "fg": 5859 }, - { "id": "overlay_male_worn_kevlar", "fg": 5860 }, - { "id": "overlay_female_worn_legguard_hard", "fg": 5861 }, - { "id": "overlay_male_worn_legguard_hard", "fg": 5862 }, - { "id": "overlay_female_worn_swat_armor", "fg": 5881 }, - { "id": "overlay_male_worn_swat_armor", "fg": 5882 }, - { "id": "overlay_female_worn_tac_fullhelmet", "fg": 5883 }, - { "id": "overlay_male_worn_tac_fullhelmet", "fg": 5884 }, - { "id": "overlay_female_worn_tac_helmet", "fg": 5885 }, - { "id": "overlay_male_worn_tac_helmet", "fg": 5886 }, - { "id": "overlay_female_worn_2byarm_guard", "fg": 5887 }, - { "id": "overlay_male_worn_2byarm_guard", "fg": 5888 }, - { "id": "overlay_female_worn_2byshin_guard", "fg": 5889 }, - { "id": "overlay_male_worn_2byshin_guard", "fg": 5890 }, - { "id": "overlay_female_worn_legguard_metal", "fg": 5891 }, - { "id": "overlay_male_worn_legguard_metal", "fg": 5892 }, - { "id": "overlay_female_worn_armguard_metal", "fg": 5893 }, - { "id": "overlay_male_worn_armguard_metal", "fg": 5894 }, - { "id": "overlay_male_worn_helmet_scrap", "fg": 5904 }, - { "id": "overlay_male_worn_armor_scrapsuit", "fg": 5908 }, - { "id": "overlay_male_worn_boots_scrap", "fg": 5900 }, - { "id": "overlay_male_worn_cuirass_scrap", "fg": 5902 }, - { "id": "overlay_male_worn_armguard_scrap", "fg": 5844 }, - { "id": "overlay_male_worn_legguard_scrap", "fg": 5906 }, - { "id": "overlay_female_worn_helmet_scrap", "fg": 5903 }, - { "id": "overlay_female_worn_armor_scrapsuit", "fg": 5907 }, - { "id": "overlay_female_worn_boots_scrap", "fg": 5899 }, - { "id": "overlay_female_worn_cuirass_scrap", "fg": 5901 }, - { "id": "overlay_female_worn_armguard_scrap", "fg": 5843 }, - { "id": "overlay_female_worn_legguard_scrap", "fg": 5905 }, - { "id": "overlay_male_worn_backpack", "fg": 5914 }, - { "id": "overlay_female_worn_backpack", "fg": 5909 }, - { "id": "overlay_male_worn_backpack_hiking", "fg": 5911 }, - { "id": "overlay_female_worn_backpack_hiking", "fg": 5910 }, - { "id": "overlay_female_worn_backpack_leather", "fg": 5912 }, - { "id": "overlay_male_worn_backpack_leather", "fg": 5913 }, - { "id": "overlay_male_worn_backpack_tactical_large", "fg": 5916 }, - { "id": "overlay_female_worn_backpack_tactical_large", "fg": 5915 }, - { "id": "overlay_male_worn_molle_pack", "fg": 5918 }, - { "id": "overlay_female_worn_molle_pack", "fg": 5917 }, - { "id": [ "overlay_female_worn_rifle_case_soft", "overlay_female_worn_rifle_case_soft_2" ], "fg": 5920 }, + { "id": "overlay_male_wielded_pointy_stick", "fg": 5790 }, + { "id": "overlay_female_wielded_pointy_stick", "fg": 5789 }, + { "id": "overlay_male_wielded_spear_wood", "fg": 5806 }, + { "id": "overlay_female_wielded_spear_wood", "fg": 5805 }, + { "id": "overlay_male_wielded_spear_spike", "fg": 5802 }, + { "id": "overlay_female_wielded_spear_spike", "fg": 5801 }, + { "id": "overlay_male_wielded_spear_knife", "fg": 5794 }, + { "id": "overlay_female_wielded_spear_knife", "fg": 5793 }, + { "id": "overlay_male_wielded_spear_knife_superior", "fg": 5796 }, + { "id": "overlay_female_wielded_spear_knife_superior", "fg": 5795 }, + { "id": "overlay_male_wielded_spear_rebar", "fg": 5800 }, + { "id": "overlay_female_wielded_spear_rebar", "fg": 5799 }, + { "id": "overlay_male_wielded_spear_pipe", "fg": 5798 }, + { "id": "overlay_female_wielded_spear_pipe", "fg": 5797 }, + { "id": "overlay_male_wielded_spear_steel", "fg": 5804 }, + { "id": "overlay_female_wielded_spear_steel", "fg": 5803 }, + { "id": "overlay_male_wielded_spear_copper", "fg": 5792 }, + { "id": "overlay_female_wielded_spear_copper", "fg": 5791 }, + { "id": "overlay_female_wielded_splinter", "fg": 5807 }, + { "id": "overlay_male_wielded_splinter", "fg": 5808 }, + { "id": "overlay_wielded_knife_steak", "fg": 5809 }, + { "id": "overlay_wielded_steel_chunk", "fg": 5810 }, + { "id": "overlay_wielded_steel_lump", "fg": 5811 }, + { "id": "overlay_female_wielded_stick", "fg": 5812 }, + { "id": "overlay_male_wielded_stick", "fg": 5813 }, + { "id": "overlay_female_wielded_stick_long", "fg": 5814 }, + { "id": "overlay_male_wielded_stick_long", "fg": 5815 }, + { "id": "overlay_female_wielded_primitive_hammer", "fg": 5816 }, + { "id": "overlay_male_wielded_primitive_hammer", "fg": 5817 }, + { "id": "overlay_female_wielded_spear_stone", "fg": 5818 }, + { "id": "overlay_male_wielded_spear_stone", "fg": 5819 }, + { "id": "overlay_wielded_knife_rambo", "fg": 5820 }, + { "id": "overlay_female_wielded_spear_survivor", "fg": 5821 }, + { "id": "overlay_male_wielded_spear_survivor", "fg": 5822 }, + { "id": "overlay_wielded_switchblade", "fg": 5823 }, + { "id": "overlay_wielded_tanto", "fg": 5825 }, + { "id": "overlay_female_wielded_teapot", "fg": 5826 }, + { "id": "overlay_male_wielded_teapot", "fg": 5827 }, + { "id": "overlay_female_wielded_television", "fg": 5828 }, + { "id": "overlay_male_wielded_television", "fg": 5829 }, + { "id": "overlay_female_wielded_thermos", "fg": 5830 }, + { "id": "overlay_male_wielded_thermos", "fg": 5831 }, + { "id": "overlay_wielded_boltcutters", "fg": 5832 }, + { "id": "overlay_wielded_e_tool", "fg": 5834 }, + { "id": "overlay_wielded_halligan", "fg": 5835 }, + { "id": "overlay_wielded_jackhammer", "fg": 5837 }, + { "id": "overlay_wielded_elec_jackhammer", "fg": 5837 }, + { "id": "overlay_wielded_lobotomizer", "fg": 5838 }, + { "id": "overlay_wielded_makeshift_axe", "fg": 5839 }, + { "id": "overlay_wielded_ny_hook", "fg": 5840 }, + { "id": "overlay_wielded_pickaxe", "fg": 5841 }, + { "id": "overlay_wielded_hammer_sledge_engineer", "fg": 5842 }, + { "id": "overlay_wielded_hammer_sledge_heavy", "fg": 5843 }, + { "id": "overlay_wielded_hammer_sledge_short", "fg": 5844 }, + { "id": "overlay_wielded_hammer_sledge", "fg": 5845 }, + { "id": "overlay_wielded_g_shovel", "fg": 5846 }, + { "id": "overlay_wielded_primitive_shovel", "fg": 5847 }, + { "id": "overlay_wielded_knife_trench", "fg": 5848 }, + { "id": "overlay_wielded_wakizashi", "fg": 5849 }, + { "id": "overlay_male_wielded_2h_flail_steel", "fg": 5851 }, + { "id": "overlay_female_wielded_2h_flail_steel", "fg": 5850 }, + { "id": "overlay_wielded_warhammer", "fg": 5852 }, + { "id": "overlay_wielded_bolas", "fg": 5853 }, + { "id": "overlay_wielded_bullwhip", "fg": 5854 }, + { "id": "overlay_female_wielded_homewrecker", "fg": 5855 }, + { "id": "overlay_male_wielded_homewrecker", "fg": 5856 }, + { "id": "overlay_wielded_lawn_dart", "fg": 5857 }, + { "id": "overlay_wielded_net", "fg": 5858 }, + { "id": "overlay_wielded_bullwhip_razor", "fg": 5859 }, + { "id": "overlay_wielded_sling", "fg": 5860 }, + { "id": "overlay_wielded_staff_sling", "fg": 5861 }, + { "id": "overlay_wielded_throwing_axe", "fg": 5862 }, + { "id": "overlay_female_wielded_throwing_knife", "fg": 5863 }, + { "id": "overlay_male_wielded_throwing_knife", "fg": 5864 }, + { "id": "overlay_wielded_throwing_stick", "fg": 5865 }, + { "id": "overlay_wielded_shocktonfa_off", "fg": 5866 }, + { "id": "overlay_wielded_shocktonfa_on", "fg": 5866 }, + { "id": "overlay_wielded_tonfa", "fg": 5867 }, + { "id": "overlay_wielded_tonfa_wood", "fg": 5868 }, + { "id": "overlay_wielded_sword_wood", "fg": 5869 }, + { "id": "overlay_wielded_sword_nail", "fg": 5870 }, + { "id": "overlay_wielded_zweihander", "fg": 5871 }, + { "id": "overlay_female_worn_armor_samurai", "fg": 5872 }, + { "id": "overlay_male_worn_armor_samurai", "fg": 5873 }, + { "id": "overlay_female_worn_chainmail_suit", "fg": 5882 }, + { "id": "overlay_male_worn_chainmail_suit", "fg": 5883 }, + { "id": "overlay_female_worn_chainmail_feet", "fg": 5884 }, + { "id": "overlay_male_worn_chainmail_feet", "fg": 5885 }, + { "id": "overlay_female_worn_chainmail_hood", "fg": 5886 }, + { "id": "overlay_male_worn_chainmail_hood", "fg": 5887 }, + { "id": "overlay_female_worn_chainmail_hands", "fg": 5888 }, + { "id": "overlay_male_worn_chainmail_hands", "fg": 5889 }, + { "id": "overlay_female_worn_chainmail_hauberk", "fg": 5890 }, + { "id": "overlay_male_worn_chainmail_hauberk", "fg": 5891 }, + { "id": "overlay_female_worn_chainmail_legs", "fg": 5892 }, + { "id": "overlay_male_worn_chainmail_legs", "fg": 5893 }, + { "id": "overlay_female_worn_chainmail_arms", "fg": 5894 }, + { "id": "overlay_male_worn_chainmail_arms", "fg": 5895 }, + { "id": "overlay_female_worn_chainmail_vest", "fg": 5896 }, + { "id": "overlay_male_worn_chainmail_vest", "fg": 5897 }, + { "id": "overlay_female_worn_vest_leather_mod", "fg": 5878 }, + { "id": "overlay_male_worn_vest_leather_mod", "fg": 5879 }, + { "id": "overlay_female_worn_armor_blarmor", "fg": 5880 }, + { "id": "overlay_male_worn_armor_blarmor", "fg": 5881 }, + { "id": "overlay_female_worn_armguard_larmor", "fg": 5902 }, + { "id": "overlay_male_worn_armguard_larmor", "fg": 5903 }, + { "id": "overlay_female_worn_boots_larmor", "fg": 5904 }, + { "id": "overlay_male_worn_boots_larmor", "fg": 5905 }, + { "id": "overlay_male_worn_gauntlets_larmor", "fg": 5906 }, + { "id": "overlay_female_worn_gauntlets_larmor", "fg": 5907 }, + { "id": "overlay_male_worn_helmet_larmor", "fg": 5909 }, + { "id": "overlay_female_worn_helmet_larmor", "fg": 5908 }, + { "id": "overlay_female_worn_armor_larmor", "fg": 5910 }, + { "id": "overlay_male_worn_armor_larmor", "fg": 5911 }, + { "id": "overlay_female_worn_footrags_leather", "fg": 5912 }, + { "id": "overlay_male_worn_footrags_leather", "fg": 5913 }, + { "id": "overlay_female_worn_gloves_wraps_leather", "fg": 5914 }, + { "id": "overlay_male_worn_gloves_wraps_leather", "fg": 5915 }, + { "id": "overlay_female_worn_vambrace_larmor", "fg": 5916 }, + { "id": "overlay_male_worn_vambrace_larmor", "fg": 5917 }, + { "id": "overlay_female_worn_vest_leather", "fg": 5918 }, + { "id": "overlay_male_worn_vest_leather", "fg": 5919 }, + { "id": "overlay_female_worn_armor_plarmor", "fg": 5922 }, + { "id": "overlay_male_worn_armor_plarmor", "fg": 5923 }, + { "id": "overlay_female_worn_gloves_studded", "fg": 5930 }, + { "id": "overlay_male_worn_gloves_studded", "fg": 5931 }, + { "id": "overlay_male_worn_helmet_plate", "fg": 5901 }, + { "id": "overlay_male_worn_armor_lightplate", "fg": 5921 }, + { "id": "overlay_male_worn_gloves_plate", "fg": 5877 }, + { "id": "overlay_male_worn_boots_plate", "fg": 5875 }, + { "id": "overlay_male_worn_cuirass_lightplate", "fg": 5899 }, + { "id": "overlay_male_worn_armguard_lightplate", "fg": 5927 }, + { "id": "overlay_male_worn_legguard_lightplate", "fg": 5929 }, + { "id": "overlay_female_worn_helmet_plate", "fg": 5900 }, + { "id": "overlay_female_worn_armor_lightplate", "fg": 5920 }, + { "id": "overlay_female_worn_gloves_plate", "fg": 5876 }, + { "id": "overlay_female_worn_boots_plate", "fg": 5874 }, + { "id": "overlay_female_worn_cuirass_lightplate", "fg": 5898 }, + { "id": "overlay_female_worn_armguard_lightplate", "fg": 5926 }, + { "id": "overlay_female_worn_legguard_lightplate", "fg": 5928 }, + { "id": "overlay_female_worn_armguard_hard", "fg": 5932 }, + { "id": "overlay_male_worn_armguard_hard", "fg": 5933 }, + { "id": "overlay_female_worn_armor_riot", "fg": 5934 }, + { "id": "overlay_male_worn_armor_riot", "fg": 5935 }, + { "id": "overlay_female_worn_ballistic_vest_esapi", "fg": 5936 }, + { "id": "overlay_male_worn_ballistic_vest_esapi", "fg": 5937 }, + { "id": "overlay_female_worn_helmet_riot", "fg": 5938 }, + { "id": "overlay_male_worn_helmet_riot", "fg": 5939 }, + { "id": "overlay_female_worn_kevlar", "fg": 5940 }, + { "id": "overlay_male_worn_kevlar", "fg": 5941 }, + { "id": "overlay_female_worn_legguard_hard", "fg": 5942 }, + { "id": "overlay_male_worn_legguard_hard", "fg": 5943 }, + { "id": "overlay_female_worn_swat_armor", "fg": 5962 }, + { "id": "overlay_male_worn_swat_armor", "fg": 5963 }, + { "id": "overlay_female_worn_tac_fullhelmet", "fg": 5964 }, + { "id": "overlay_male_worn_tac_fullhelmet", "fg": 5965 }, + { "id": "overlay_female_worn_tac_helmet", "fg": 5966 }, + { "id": "overlay_male_worn_tac_helmet", "fg": 5967 }, + { "id": "overlay_female_worn_2byarm_guard", "fg": 5968 }, + { "id": "overlay_male_worn_2byarm_guard", "fg": 5969 }, + { "id": "overlay_female_worn_2byshin_guard", "fg": 5970 }, + { "id": "overlay_male_worn_2byshin_guard", "fg": 5971 }, + { "id": "overlay_female_worn_legguard_metal", "fg": 5972 }, + { "id": "overlay_male_worn_legguard_metal", "fg": 5973 }, + { "id": "overlay_female_worn_armguard_metal", "fg": 5974 }, + { "id": "overlay_male_worn_armguard_metal", "fg": 5975 }, + { "id": "overlay_male_worn_helmet_scrap", "fg": 5985 }, + { "id": "overlay_male_worn_armor_scrapsuit", "fg": 5989 }, + { "id": "overlay_male_worn_boots_scrap", "fg": 5981 }, + { "id": "overlay_male_worn_cuirass_scrap", "fg": 5983 }, + { "id": "overlay_male_worn_armguard_scrap", "fg": 5925 }, + { "id": "overlay_male_worn_legguard_scrap", "fg": 5987 }, + { "id": "overlay_female_worn_helmet_scrap", "fg": 5984 }, + { "id": "overlay_female_worn_armor_scrapsuit", "fg": 5988 }, + { "id": "overlay_female_worn_boots_scrap", "fg": 5980 }, + { "id": "overlay_female_worn_cuirass_scrap", "fg": 5982 }, + { "id": "overlay_female_worn_armguard_scrap", "fg": 5924 }, + { "id": "overlay_female_worn_legguard_scrap", "fg": 5986 }, + { "id": "overlay_male_worn_backpack", "fg": 5995 }, + { "id": "overlay_female_worn_backpack", "fg": 5990 }, + { "id": "overlay_male_worn_backpack_hiking", "fg": 5992 }, + { "id": "overlay_female_worn_backpack_hiking", "fg": 5991 }, + { "id": "overlay_female_worn_backpack_leather", "fg": 5993 }, + { "id": "overlay_male_worn_backpack_leather", "fg": 5994 }, + { "id": "overlay_male_worn_backpack_tactical_large", "fg": 5997 }, + { "id": "overlay_female_worn_backpack_tactical_large", "fg": 5996 }, + { "id": "overlay_male_worn_molle_pack", "fg": 5999 }, + { "id": "overlay_female_worn_molle_pack", "fg": 5998 }, + { "id": [ "overlay_female_worn_rifle_case_soft", "overlay_female_worn_rifle_case_soft_2" ], "fg": 6001 }, { "id": [ "overlay_female_worn_rifle_case_soft_leather", "overlay_female_worn_rifle_case_soft_leather_2", "overlay_female_worn_rifle_case_xl_soft_leather" ], - "fg": 5921 + "fg": 6002 }, - { "id": [ "overlay_male_worn_rifle_case_soft", "overlay_male_worn_rifle_case_soft_2" ], "fg": 5924 }, + { "id": [ "overlay_male_worn_rifle_case_soft", "overlay_male_worn_rifle_case_soft_2" ], "fg": 6005 }, { "id": [ "overlay_male_worn_rifle_case_soft_leather", "overlay_male_worn_rifle_case_soft_leather_2", "overlay_male_worn_rifle_case_xl_soft_leather" ], - "fg": 5925 - }, - { "id": "overlay_female_worn_rucksack", "fg": 5927 }, - { "id": "overlay_male_worn_rucksack", "fg": 5928 }, - { "id": "overlay_worn_bead_necklace", "fg": 5930 }, - { "id": "overlay_worn_bead_bracelet", "fg": 5929 }, - { "id": "overlay_worn_leather_belt", "fg": 5940 }, - { "id": "overlay_worn_police_belt", "fg": 5954 }, - { "id": "overlay_worn_tool_belt", "fg": 5959 }, - { "id": "overlay_worn_webbing_belt", "fg": 5961 }, - { "id": "overlay_worn_briefcase", "fg": 5933 }, - { "id": "overlay_wielded_briefcase", "fg": 5933 }, - { "id": "overlay_worn_briefcase_smg", "fg": 5933 }, - { "id": "overlay_wielded_briefcase_smg", "fg": 5933 }, - { "id": "overlay_worn_hk_briefcase", "fg": 5933 }, - { "id": "overlay_wielded_hk_briefcase", "fg": 5933 }, - { "id": "overlay_female_worn_wearable_light", "fg": 5936 }, - { "id": "overlay_male_worn_wearable_light", "fg": 5937 }, - { "id": "overlay_female_worn_wearable_light_on", "fg": 5936 }, - { "id": "overlay_male_worn_wearable_light_on", "fg": 5937 }, - { "id": "overlay_female_worn_survivor_light", "fg": 5936 }, - { "id": "overlay_male_worn_survivor_light", "fg": 5937 }, - { "id": "overlay_female_worn_survivor_light_on", "fg": 5936 }, - { "id": "overlay_male_worn_survivor_light_on", "fg": 5937 }, - { "id": "overlay_female_worn_holster", "fg": 5938 }, - { "id": "overlay_male_worn_holster", "fg": 5939 }, - { "id": "overlay_female_worn_legpouch_large", "fg": 5941 }, - { "id": "overlay_male_worn_legpouch_large", "fg": 5942 }, - { "id": "overlay_female_worn_legrig", "fg": 5943 }, - { "id": "overlay_male_worn_legrig", "fg": 5944 }, - { "id": "overlay_worn_judo_belt_black", "fg": 5931 }, - { "id": "overlay_worn_judo_belt_blue", "fg": 5932 }, - { "id": "overlay_worn_judo_belt_brown", "fg": 5934 }, - { "id": "overlay_worn_judo_belt_green", "fg": 5935 }, - { "id": "overlay_worn_judo_belt_orange", "fg": 5945 }, - { "id": "overlay_worn_judo_belt_white", "fg": 5962 }, - { "id": "overlay_worn_judo_belt_yellow", "fg": 5963 }, - { "id": "overlay_female_worn_ragpouch", "fg": 5955 }, - { "id": "overlay_male_worn_ragpouch", "fg": 5956 }, - { "id": "overlay_female_worn_tacvest", "fg": 5957 }, - { "id": "overlay_male_worn_tacvest", "fg": 5958 }, - { "id": "overlay_worn_wearable_light", "fg": 5960 }, - { "id": "overlay_female_worn_dinosuit", "fg": 5964 }, - { "id": "overlay_male_worn_dinosuit", "fg": 5965 }, - { "id": "overlay_female_worn_hazmat_suit", "fg": 5966 }, - { "id": "overlay_male_worn_hazmat_suit", "fg": 5967 }, - { "id": "overlay_female_worn_judo_gi", "fg": 5968 }, - { "id": "overlay_male_worn_judo_gi", "fg": 5969 }, - { "id": "overlay_female_worn_jumpsuit", "fg": 5970 }, - { "id": "overlay_male_worn_jumpsuit", "fg": 5971 }, - { "id": "overlay_female_worn_karate_gi", "fg": 5972 }, - { "id": "overlay_male_worn_karate_gi", "fg": 5973 }, - { "id": "overlay_female_worn_robofac_jumpsuit", "fg": 5977 }, - { "id": "overlay_male_worn_robofac_jumpsuit", "fg": 5978 }, - { "id": "overlay_female_worn_suit", "fg": 5979 }, - { "id": "overlay_male_worn_suit", "fg": 5980 }, - { "id": "overlay_female_worn_touring_suit", "fg": 5981 }, - { "id": "overlay_male_worn_touring_suit", "fg": 5982 }, - { "id": "overlay_female_worn_boots", "fg": 5986 }, - { "id": "overlay_male_worn_boots", "fg": 5991 }, - { "id": "overlay_female_worn_boots_bunker", "fg": 5983 }, - { "id": "overlay_male_worn_boots_bunker", "fg": 5984 }, - { "id": "overlay_female_worn_boots_fur", "fg": 5987 }, - { "id": "overlay_male_worn_boots_fur", "fg": 5988 }, - { "id": "overlay_female_worn_boots_hiking", "fg": 5989 }, - { "id": "overlay_male_worn_boots_hiking", "fg": 5990 }, - { "id": "overlay_female_worn_boots_rubber", "fg": 5992 }, - { "id": "overlay_male_worn_boots_rubber", "fg": 5993 }, - { "id": "overlay_female_worn_boots_steel", "fg": 5994 }, - { "id": "overlay_male_worn_boots_steel", "fg": 5995 }, - { "id": "overlay_female_worn_boots_western", "fg": 5996 }, - { "id": "overlay_male_worn_boots_western", "fg": 5997 }, - { "id": "overlay_female_worn_boots_winter", "fg": 5998 }, - { "id": "overlay_male_worn_boots_winter", "fg": 5999 }, - { "id": "overlay_female_worn_motorbike_boots", "fg": 6000 }, - { "id": "overlay_male_worn_motorbike_boots", "fg": 6001 }, - { "id": "overlay_worn_boots_combat", "fg": 5985 }, - { "id": "overlay_male_worn_cape_fp", "fg": 6034 }, - { "id": "overlay_female_worn_cape_fp", "fg": 6033 }, - { "id": "overlay_male_worn_cloak", "fg": 6040 }, - { "id": "overlay_female_worn_cloak", "fg": 6035 }, - { "id": "overlay_male_worn_cloak_wool", "fg": 6042 }, - { "id": "overlay_female_worn_cloak_wool", "fg": 6041 }, - { "id": "overlay_male_worn_cloak_leather", "fg": 6039 }, - { "id": "overlay_female_worn_cloak_leather", "fg": 6038 }, - { "id": "overlay_male_worn_cloak_fur", "fg": 6037 }, - { "id": "overlay_female_worn_cloak_fur", "fg": 6036 }, - { "id": "overlay_female_worn_dress", "fg": 6060 }, - { "id": "overlay_male_worn_dress", "fg": 6061 }, - { "id": "overlay_female_worn_sundress", "fg": 6068 }, - { "id": "overlay_male_worn_sundress", "fg": 6069 }, - { "id": "overlay_female_worn_maid_hat", "fg": 6161 }, - { "id": "overlay_female_worn_maid_dress", "fg": 6062 }, - { "id": "overlay_male_worn_maid_hat", "fg": 6162 }, - { "id": "overlay_male_worn_maid_dress", "fg": 6063 }, - { "id": "overlay_female_worn_skirt", "fg": 6064 }, - { "id": "overlay_male_worn_skirt", "fg": 6067 }, - { "id": "overlay_female_worn_skirt_leather", "fg": 6065 }, - { "id": "overlay_male_worn_skirt_leather", "fg": 6066 }, - { "id": "overlay_worn_elbow_pads", "fg": 6070 }, - { "id": "overlay_female_worn_glasses_bal", "fg": 6071 }, - { "id": "overlay_male_worn_glasses_bal", "fg": 6072 }, - { "id": "overlay_female_worn_glasses_bifocal", "fg": 6073 }, - { "id": "overlay_male_worn_glasses_bifocal", "fg": 6074 }, - { "id": "overlay_female_worn_glasses_eye", "fg": 6075 }, - { "id": "overlay_male_worn_glasses_eye", "fg": 6076 }, - { "id": "overlay_female_worn_glasses_monocle", "fg": 6077 }, - { "id": "overlay_male_worn_glasses_monocle", "fg": 6078 }, - { "id": "overlay_female_worn_glasses_reading", "fg": 6079 }, - { "id": "overlay_male_worn_glasses_reading", "fg": 6080 }, - { "id": "overlay_female_worn_glasses_safety", "fg": 6081 }, - { "id": "overlay_male_worn_glasses_safety", "fg": 6082 }, - { "id": "overlay_female_worn_mask_ski", "fg": 6083 }, - { "id": "overlay_male_worn_mask_ski", "fg": 6086 }, - { "id": "overlay_female_worn_mask_ski_loose", "fg": 6084 }, - { "id": "overlay_male_worn_mask_ski_loose", "fg": 6085 }, - { "id": "overlay_female_worn_sunglasses", "fg": 6089 }, - { "id": "overlay_male_worn_sunglasses", "fg": 6090 }, - { "id": "overlay_female_worn_goggles_welding", "fg": 6091 }, - { "id": "overlay_male_worn_goggles_welding", "fg": 6092 }, - { "id": "overlay_female_worn_glove_jackson", "fg": 6093 }, - { "id": "overlay_male_worn_glove_jackson", "fg": 6094 }, - { "id": "overlay_female_worn_gloves_liner", "fg": 6107 }, - { "id": "overlay_male_worn_gloves_liner", "fg": 6108 }, - { "id": "overlay_female_worn_gloves_medical", "fg": 6109 }, - { "id": "overlay_male_worn_gloves_medical", "fg": 6110 }, - { "id": "overlay_female_worn_gloves_rubber", "fg": 6111 }, - { "id": "overlay_male_worn_gloves_rubber", "fg": 6112 }, - { "id": "overlay_female_worn_gloves_tactical", "fg": 6113 }, - { "id": "overlay_male_worn_gloves_tactical", "fg": 6114 }, - { "id": "overlay_female_worn_gloves_winter", "fg": 6115 }, - { "id": "overlay_male_worn_gloves_winter", "fg": 6116 }, - { "id": "overlay_female_worn_gloves_wool", "fg": 6117 }, - { "id": "overlay_male_worn_gloves_wool", "fg": 6118 }, - { "id": "overlay_female_worn_gloves_work", "fg": 6119 }, - { "id": "overlay_male_worn_gloves_work", "fg": 6120 }, - { "id": "overlay_female_worn_gloves_cut_resistant", "fg": 6095 }, - { "id": "overlay_male_worn_gloves_cut_resistant", "fg": 6096 }, - { "id": "overlay_female_worn_gloves_fingerless", "fg": 6097 }, - { "id": "overlay_male_worn_gloves_fingerless", "fg": 6098 }, - { "id": "overlay_female_worn_gloves_fur", "fg": 6099 }, - { "id": "overlay_male_worn_gloves_fur", "fg": 6100 }, - { "id": "overlay_female_worn_gloves_golf", "fg": 6101 }, - { "id": "overlay_male_worn_gloves_golf", "fg": 6102 }, - { "id": "overlay_female_worn_gloves_leather", "fg": 6103 }, - { "id": "overlay_male_worn_gloves_leather", "fg": 6104 }, - { "id": "overlay_female_worn_gloves_light", "fg": 6105 }, - { "id": "overlay_male_worn_gloves_light", "fg": 6106 }, - { "id": "overlay_male_worn_long_glove_white", "fg": 6122 }, - { "id": "overlay_female_worn_long_glove_white", "fg": 6121 }, - { "id": "overlay_female_worn_mittens", "fg": 6123 }, - { "id": "overlay_male_worn_mittens", "fg": 6124 }, - { "id": "overlay_female_worn_beret", "fg": 6127 }, - { "id": "overlay_male_worn_beret", "fg": 6128 }, - { "id": "overlay_female_worn_bowhat", "fg": 6129 }, - { "id": "overlay_male_worn_bowhat", "fg": 6130 }, - { "id": "overlay_female_worn_cowboy_hat", "fg": 6131 }, - { "id": "overlay_male_worn_cowboy_hat", "fg": 6132 }, - { "id": "overlay_female_worn_fedora", "fg": 6133 }, - { "id": "overlay_male_worn_fedora", "fg": 6134 }, - { "id": "overlay_female_worn_firehelmet", "fg": 6135 }, - { "id": "overlay_male_worn_firehelmet", "fg": 6136 }, - { "id": "overlay_female_worn_hat_ball", "fg": 6137 }, - { "id": "overlay_male_worn_hat_ball", "fg": 6138 }, - { "id": "overlay_male_worn_hat_cotton", "fg": 6140 }, - { "id": "overlay_female_worn_hat_cotton", "fg": 6139 }, - { "id": "overlay_male_worn_hat_fur", "fg": 6142 }, - { "id": "overlay_female_worn_hat_fur", "fg": 6141 }, - { "id": "overlay_female_worn_hat_hard", "fg": 6143 }, - { "id": "overlay_male_worn_hat_hard", "fg": 6144 }, - { "id": "overlay_female_worn_hat_noise_cancelling", "fg": 6147 }, - { "id": "overlay_male_worn_hat_noise_cancelling", "fg": 6148 }, - { "id": "overlay_female_worn_helmet_army", "fg": 6149 }, - { "id": "overlay_male_worn_helmet_army", "fg": 6150 }, - { "id": "overlay_female_worn_helmet_barbute", "fg": 6151 }, - { "id": "overlay_male_worn_helmet_barbute", "fg": 6152 }, - { "id": "overlay_female_worn_helmet_bike", "fg": 6153 }, - { "id": "overlay_male_worn_helmet_bike", "fg": 6154 }, - { "id": "overlay_female_worn_helmet_chitin", "fg": 6155 }, - { "id": "overlay_male_worn_helmet_chitin", "fg": 6156 }, - { "id": "overlay_female_worn_helmet_kabuto", "fg": 6157 }, - { "id": "overlay_male_worn_helmet_kabuto", "fg": 6158 }, - { "id": "overlay_female_worn_helmet_motor", "fg": 6159 }, - { "id": "overlay_male_worn_helmet_motor", "fg": 6160 }, - { "id": "overlay_female_worn_hat_knit", "fg": 6145 }, - { "id": "overlay_male_worn_hat_knit", "fg": 6146 }, - { "id": "overlay_female_worn_straw_fedora", "fg": 6165 }, - { "id": "overlay_male_worn_straw_fedora", "fg": 6166 }, - { "id": "overlay_female_worn_straw_hat", "fg": 6167 }, - { "id": "overlay_male_worn_straw_hat", "fg": 6168 }, - { "id": "overlay_female_worn_10gal_hat", "fg": 6169 }, - { "id": "overlay_male_worn_10gal_hat", "fg": 6170 }, - { "id": "overlay_female_worn_tophat", "fg": 6171 }, - { "id": "overlay_male_worn_tophat", "fg": 6172 }, - { "id": "overlay_male_worn_turban", "fg": 6174 }, - { "id": "overlay_female_worn_turban", "fg": 6173 }, - { "id": "overlay_female_worn_blazer", "fg": 6177 }, - { "id": "overlay_male_worn_blazer", "fg": 6178 }, - { "id": "overlay_female_worn_bunker_coat", "fg": 6179 }, - { "id": "overlay_male_worn_bunker_coat", "fg": 6180 }, - { "id": "overlay_female_worn_coat_lab", "fg": 6181 }, - { "id": "overlay_male_worn_coat_lab", "fg": 6182 }, - { "id": "overlay_female_worn_coat_rain", "fg": 6183 }, - { "id": "overlay_male_worn_coat_rain", "fg": 6184 }, - { "id": "overlay_female_worn_coat_winter", "fg": 6185 }, - { "id": "overlay_male_worn_coat_winter", "fg": 6186 }, - { "id": "overlay_female_worn_duster", "fg": 6187 }, - { "id": "overlay_male_worn_duster", "fg": 6188 }, - { "id": "overlay_female_worn_jacket_flannel", "fg": 6193 }, - { "id": "overlay_male_worn_jacket_flannel", "fg": 6194 }, - { "id": "overlay_female_worn_jacket_jean", "fg": 6195 }, - { "id": "overlay_male_worn_jacket_jean", "fg": 6196 }, - { "id": "overlay_female_worn_jacket_light", "fg": 6199 }, - { "id": "overlay_male_worn_jacket_light", "fg": 6200 }, - { "id": "overlay_female_worn_jacket_evac", "fg": 6191 }, - { "id": "overlay_male_worn_jacket_evac", "fg": 6192 }, - { "id": "overlay_female_worn_jacket_leather", "fg": 6201 }, - { "id": "overlay_male_worn_jacket_leather", "fg": 6202 }, - { "id": "overlay_female_worn_jacket_leather_red", "fg": 6197 }, - { "id": "overlay_male_worn_jacket_leather_red", "fg": 6198 }, - { "id": "overlay_female_worn_ski_jacket", "fg": 6203 }, - { "id": "overlay_male_worn_ski_jacket", "fg": 6204 }, - { "id": "overlay_female_worn_jacket_windbreaker", "fg": 6209 }, - { "id": "overlay_male_worn_jacket_windbreaker", "fg": 6210 }, - { "id": "overlay_female_worn_winter_jacket_army", "fg": 6175 }, - { "id": "overlay_male_worn_winter_jacket_army", "fg": 6176 }, - { "id": "overlay_female_worn_jacket_army", "fg": 6189 }, - { "id": "overlay_male_worn_jacket_army", "fg": 6190 }, - { "id": "overlay_female_worn_trenchcoat", "fg": 6205 }, - { "id": "overlay_male_worn_trenchcoat", "fg": 6206 }, - { "id": "overlay_female_worn_waistcoat", "fg": 6207 }, - { "id": "overlay_male_worn_waistcoat", "fg": 6208 }, - { "id": "overlay_female_worn_peacoat", "fg": 6211 }, - { "id": "overlay_male_worn_peacoat", "fg": 6212 }, - { "id": "overlay_female_worn_poncho", "fg": 6213 }, - { "id": "overlay_male_worn_poncho", "fg": 6214 }, - { "id": "overlay_worn_badge_swat", "fg": 6215 }, - { "id": "overlay_female_worn_barrette", "fg": 6216 }, - { "id": "overlay_male_worn_barrette", "fg": 6217 }, - { "id": "overlay_female_worn_badge_deputy", "fg": 6218 }, - { "id": "overlay_male_worn_badge_deputy", "fg": 6219 }, + "fg": 6006 + }, + { "id": "overlay_female_worn_rucksack", "fg": 6008 }, + { "id": "overlay_male_worn_rucksack", "fg": 6009 }, + { "id": "overlay_worn_bead_necklace", "fg": 6011 }, + { "id": "overlay_worn_bead_bracelet", "fg": 6010 }, + { "id": "overlay_worn_leather_belt", "fg": 6021 }, + { "id": "overlay_worn_police_belt", "fg": 6035 }, + { "id": "overlay_worn_tool_belt", "fg": 6040 }, + { "id": "overlay_worn_webbing_belt", "fg": 6042 }, + { "id": "overlay_worn_briefcase", "fg": 6014 }, + { "id": "overlay_wielded_briefcase", "fg": 6014 }, + { "id": "overlay_worn_briefcase_smg", "fg": 6014 }, + { "id": "overlay_wielded_briefcase_smg", "fg": 6014 }, + { "id": "overlay_worn_hk_briefcase", "fg": 6014 }, + { "id": "overlay_wielded_hk_briefcase", "fg": 6014 }, + { "id": "overlay_female_worn_wearable_light", "fg": 6017 }, + { "id": "overlay_male_worn_wearable_light", "fg": 6018 }, + { "id": "overlay_female_worn_wearable_light_on", "fg": 6017 }, + { "id": "overlay_male_worn_wearable_light_on", "fg": 6018 }, + { "id": "overlay_female_worn_survivor_light", "fg": 6017 }, + { "id": "overlay_male_worn_survivor_light", "fg": 6018 }, + { "id": "overlay_female_worn_survivor_light_on", "fg": 6017 }, + { "id": "overlay_male_worn_survivor_light_on", "fg": 6018 }, + { "id": "overlay_female_worn_holster", "fg": 6019 }, + { "id": "overlay_male_worn_holster", "fg": 6020 }, + { "id": "overlay_female_worn_legpouch_large", "fg": 6022 }, + { "id": "overlay_male_worn_legpouch_large", "fg": 6023 }, + { "id": "overlay_female_worn_legrig", "fg": 6024 }, + { "id": "overlay_male_worn_legrig", "fg": 6025 }, + { "id": "overlay_worn_judo_belt_black", "fg": 6012 }, + { "id": "overlay_worn_judo_belt_blue", "fg": 6013 }, + { "id": "overlay_worn_judo_belt_brown", "fg": 6015 }, + { "id": "overlay_worn_judo_belt_green", "fg": 6016 }, + { "id": "overlay_worn_judo_belt_orange", "fg": 6026 }, + { "id": "overlay_worn_judo_belt_white", "fg": 6043 }, + { "id": "overlay_worn_judo_belt_yellow", "fg": 6044 }, + { "id": "overlay_female_worn_ragpouch", "fg": 6036 }, + { "id": "overlay_male_worn_ragpouch", "fg": 6037 }, + { "id": "overlay_female_worn_tacvest", "fg": 6038 }, + { "id": "overlay_male_worn_tacvest", "fg": 6039 }, + { "id": "overlay_worn_wearable_light", "fg": 6041 }, + { "id": "overlay_female_worn_dinosuit", "fg": 6045 }, + { "id": "overlay_male_worn_dinosuit", "fg": 6046 }, + { "id": "overlay_female_worn_hazmat_suit", "fg": 6047 }, + { "id": "overlay_male_worn_hazmat_suit", "fg": 6048 }, + { "id": "overlay_female_worn_judo_gi", "fg": 6049 }, + { "id": "overlay_male_worn_judo_gi", "fg": 6050 }, + { "id": "overlay_female_worn_jumpsuit", "fg": 6051 }, + { "id": "overlay_male_worn_jumpsuit", "fg": 6052 }, + { "id": "overlay_female_worn_karate_gi", "fg": 6053 }, + { "id": "overlay_male_worn_karate_gi", "fg": 6054 }, + { "id": "overlay_female_worn_robofac_jumpsuit", "fg": 6058 }, + { "id": "overlay_male_worn_robofac_jumpsuit", "fg": 6059 }, + { "id": "overlay_female_worn_suit", "fg": 6060 }, + { "id": "overlay_male_worn_suit", "fg": 6061 }, + { "id": "overlay_female_worn_touring_suit", "fg": 6062 }, + { "id": "overlay_male_worn_touring_suit", "fg": 6063 }, + { "id": "overlay_female_worn_boots", "fg": 6067 }, + { "id": "overlay_male_worn_boots", "fg": 6072 }, + { "id": "overlay_female_worn_boots_bunker", "fg": 6064 }, + { "id": "overlay_male_worn_boots_bunker", "fg": 6065 }, + { "id": "overlay_female_worn_boots_fur", "fg": 6068 }, + { "id": "overlay_male_worn_boots_fur", "fg": 6069 }, + { "id": "overlay_female_worn_boots_hiking", "fg": 6070 }, + { "id": "overlay_male_worn_boots_hiking", "fg": 6071 }, + { "id": "overlay_female_worn_boots_rubber", "fg": 6073 }, + { "id": "overlay_male_worn_boots_rubber", "fg": 6074 }, + { "id": "overlay_female_worn_boots_steel", "fg": 6075 }, + { "id": "overlay_male_worn_boots_steel", "fg": 6076 }, + { "id": "overlay_female_worn_boots_western", "fg": 6077 }, + { "id": "overlay_male_worn_boots_western", "fg": 6078 }, + { "id": "overlay_female_worn_boots_winter", "fg": 6079 }, + { "id": "overlay_male_worn_boots_winter", "fg": 6080 }, + { "id": "overlay_female_worn_motorbike_boots", "fg": 6081 }, + { "id": "overlay_male_worn_motorbike_boots", "fg": 6082 }, + { "id": "overlay_worn_boots_combat", "fg": 6066 }, + { "id": "overlay_male_worn_cape_fp", "fg": 6115 }, + { "id": "overlay_female_worn_cape_fp", "fg": 6114 }, + { "id": "overlay_male_worn_cloak", "fg": 6121 }, + { "id": "overlay_female_worn_cloak", "fg": 6116 }, + { "id": "overlay_male_worn_cloak_wool", "fg": 6123 }, + { "id": "overlay_female_worn_cloak_wool", "fg": 6122 }, + { "id": "overlay_male_worn_cloak_leather", "fg": 6120 }, + { "id": "overlay_female_worn_cloak_leather", "fg": 6119 }, + { "id": "overlay_male_worn_cloak_fur", "fg": 6118 }, + { "id": "overlay_female_worn_cloak_fur", "fg": 6117 }, + { "id": "overlay_female_worn_dress", "fg": 6141 }, + { "id": "overlay_male_worn_dress", "fg": 6142 }, + { "id": "overlay_female_worn_sundress", "fg": 6149 }, + { "id": "overlay_male_worn_sundress", "fg": 6150 }, + { "id": "overlay_female_worn_maid_hat", "fg": 6242 }, + { "id": "overlay_female_worn_maid_dress", "fg": 6143 }, + { "id": "overlay_male_worn_maid_hat", "fg": 6243 }, + { "id": "overlay_male_worn_maid_dress", "fg": 6144 }, + { "id": "overlay_female_worn_skirt", "fg": 6145 }, + { "id": "overlay_male_worn_skirt", "fg": 6148 }, + { "id": "overlay_female_worn_skirt_leather", "fg": 6146 }, + { "id": "overlay_male_worn_skirt_leather", "fg": 6147 }, + { "id": "overlay_worn_elbow_pads", "fg": 6151 }, + { "id": "overlay_female_worn_glasses_bal", "fg": 6152 }, + { "id": "overlay_male_worn_glasses_bal", "fg": 6153 }, + { "id": "overlay_female_worn_glasses_bifocal", "fg": 6154 }, + { "id": "overlay_male_worn_glasses_bifocal", "fg": 6155 }, + { "id": "overlay_female_worn_glasses_eye", "fg": 6156 }, + { "id": "overlay_male_worn_glasses_eye", "fg": 6157 }, + { "id": "overlay_female_worn_glasses_monocle", "fg": 6158 }, + { "id": "overlay_male_worn_glasses_monocle", "fg": 6159 }, + { "id": "overlay_female_worn_glasses_reading", "fg": 6160 }, + { "id": "overlay_male_worn_glasses_reading", "fg": 6161 }, + { "id": "overlay_female_worn_glasses_safety", "fg": 6162 }, + { "id": "overlay_male_worn_glasses_safety", "fg": 6163 }, + { "id": "overlay_female_worn_mask_ski", "fg": 6164 }, + { "id": "overlay_male_worn_mask_ski", "fg": 6167 }, + { "id": "overlay_female_worn_mask_ski_loose", "fg": 6165 }, + { "id": "overlay_male_worn_mask_ski_loose", "fg": 6166 }, + { "id": "overlay_female_worn_sunglasses", "fg": 6170 }, + { "id": "overlay_male_worn_sunglasses", "fg": 6171 }, + { "id": "overlay_female_worn_goggles_welding", "fg": 6172 }, + { "id": "overlay_male_worn_goggles_welding", "fg": 6173 }, + { "id": "overlay_female_worn_glove_jackson", "fg": 6174 }, + { "id": "overlay_male_worn_glove_jackson", "fg": 6175 }, + { "id": "overlay_female_worn_gloves_liner", "fg": 6188 }, + { "id": "overlay_male_worn_gloves_liner", "fg": 6189 }, + { "id": "overlay_female_worn_gloves_medical", "fg": 6190 }, + { "id": "overlay_male_worn_gloves_medical", "fg": 6191 }, + { "id": "overlay_female_worn_gloves_rubber", "fg": 6192 }, + { "id": "overlay_male_worn_gloves_rubber", "fg": 6193 }, + { "id": "overlay_female_worn_gloves_tactical", "fg": 6194 }, + { "id": "overlay_male_worn_gloves_tactical", "fg": 6195 }, + { "id": "overlay_female_worn_gloves_winter", "fg": 6196 }, + { "id": "overlay_male_worn_gloves_winter", "fg": 6197 }, + { "id": "overlay_female_worn_gloves_wool", "fg": 6198 }, + { "id": "overlay_male_worn_gloves_wool", "fg": 6199 }, + { "id": "overlay_female_worn_gloves_work", "fg": 6200 }, + { "id": "overlay_male_worn_gloves_work", "fg": 6201 }, + { "id": "overlay_female_worn_gloves_cut_resistant", "fg": 6176 }, + { "id": "overlay_male_worn_gloves_cut_resistant", "fg": 6177 }, + { "id": "overlay_female_worn_gloves_fingerless", "fg": 6178 }, + { "id": "overlay_male_worn_gloves_fingerless", "fg": 6179 }, + { "id": "overlay_female_worn_gloves_fur", "fg": 6180 }, + { "id": "overlay_male_worn_gloves_fur", "fg": 6181 }, + { "id": "overlay_female_worn_gloves_golf", "fg": 6182 }, + { "id": "overlay_male_worn_gloves_golf", "fg": 6183 }, + { "id": "overlay_female_worn_gloves_leather", "fg": 6184 }, + { "id": "overlay_male_worn_gloves_leather", "fg": 6185 }, + { "id": "overlay_female_worn_gloves_light", "fg": 6186 }, + { "id": "overlay_male_worn_gloves_light", "fg": 6187 }, + { "id": "overlay_male_worn_long_glove_white", "fg": 6203 }, + { "id": "overlay_female_worn_long_glove_white", "fg": 6202 }, + { "id": "overlay_female_worn_mittens", "fg": 6204 }, + { "id": "overlay_male_worn_mittens", "fg": 6205 }, + { "id": "overlay_female_worn_beret", "fg": 6208 }, + { "id": "overlay_male_worn_beret", "fg": 6209 }, + { "id": "overlay_female_worn_bowhat", "fg": 6210 }, + { "id": "overlay_male_worn_bowhat", "fg": 6211 }, + { "id": "overlay_female_worn_cowboy_hat", "fg": 6212 }, + { "id": "overlay_male_worn_cowboy_hat", "fg": 6213 }, + { "id": "overlay_female_worn_fedora", "fg": 6214 }, + { "id": "overlay_male_worn_fedora", "fg": 6215 }, + { "id": "overlay_female_worn_firehelmet", "fg": 6216 }, + { "id": "overlay_male_worn_firehelmet", "fg": 6217 }, + { "id": "overlay_female_worn_hat_ball", "fg": 6218 }, + { "id": "overlay_male_worn_hat_ball", "fg": 6219 }, + { "id": "overlay_male_worn_hat_cotton", "fg": 6221 }, + { "id": "overlay_female_worn_hat_cotton", "fg": 6220 }, + { "id": "overlay_male_worn_hat_fur", "fg": 6223 }, + { "id": "overlay_female_worn_hat_fur", "fg": 6222 }, + { "id": "overlay_female_worn_hat_hard", "fg": 6224 }, + { "id": "overlay_male_worn_hat_hard", "fg": 6225 }, + { "id": "overlay_female_worn_hat_noise_cancelling", "fg": 6228 }, + { "id": "overlay_male_worn_hat_noise_cancelling", "fg": 6229 }, + { "id": "overlay_female_worn_helmet_army", "fg": 6230 }, + { "id": "overlay_male_worn_helmet_army", "fg": 6231 }, + { "id": "overlay_female_worn_helmet_barbute", "fg": 6232 }, + { "id": "overlay_male_worn_helmet_barbute", "fg": 6233 }, + { "id": "overlay_female_worn_helmet_bike", "fg": 6234 }, + { "id": "overlay_male_worn_helmet_bike", "fg": 6235 }, + { "id": "overlay_female_worn_helmet_chitin", "fg": 6236 }, + { "id": "overlay_male_worn_helmet_chitin", "fg": 6237 }, + { "id": "overlay_female_worn_helmet_kabuto", "fg": 6238 }, + { "id": "overlay_male_worn_helmet_kabuto", "fg": 6239 }, + { "id": "overlay_female_worn_helmet_motor", "fg": 6240 }, + { "id": "overlay_male_worn_helmet_motor", "fg": 6241 }, + { "id": "overlay_female_worn_hat_knit", "fg": 6226 }, + { "id": "overlay_male_worn_hat_knit", "fg": 6227 }, + { "id": "overlay_female_worn_straw_fedora", "fg": 6250 }, + { "id": "overlay_male_worn_straw_fedora", "fg": 6251 }, + { "id": "overlay_female_worn_straw_hat", "fg": 6252 }, + { "id": "overlay_male_worn_straw_hat", "fg": 6253 }, + { "id": "overlay_female_worn_10gal_hat", "fg": 6254 }, + { "id": "overlay_male_worn_10gal_hat", "fg": 6255 }, + { "id": "overlay_female_worn_tophat", "fg": 6256 }, + { "id": "overlay_male_worn_tophat", "fg": 6257 }, + { "id": "overlay_male_worn_turban", "fg": 6259 }, + { "id": "overlay_female_worn_turban", "fg": 6258 }, + { "id": "overlay_female_worn_blazer", "fg": 6262 }, + { "id": "overlay_male_worn_blazer", "fg": 6263 }, + { "id": "overlay_female_worn_bunker_coat", "fg": 6264 }, + { "id": "overlay_male_worn_bunker_coat", "fg": 6265 }, + { "id": "overlay_female_worn_coat_lab", "fg": 6266 }, + { "id": "overlay_male_worn_coat_lab", "fg": 6267 }, + { "id": "overlay_female_worn_coat_rain", "fg": 6268 }, + { "id": "overlay_male_worn_coat_rain", "fg": 6269 }, + { "id": "overlay_female_worn_coat_winter", "fg": 6270 }, + { "id": "overlay_male_worn_coat_winter", "fg": 6271 }, + { "id": "overlay_female_worn_duster", "fg": 6272 }, + { "id": "overlay_male_worn_duster", "fg": 6273 }, + { "id": "overlay_female_worn_jacket_flannel", "fg": 6278 }, + { "id": "overlay_male_worn_jacket_flannel", "fg": 6279 }, + { "id": "overlay_female_worn_jacket_jean", "fg": 6280 }, + { "id": "overlay_male_worn_jacket_jean", "fg": 6281 }, + { "id": "overlay_female_worn_jacket_light", "fg": 6284 }, + { "id": "overlay_male_worn_jacket_light", "fg": 6285 }, + { "id": "overlay_female_worn_jacket_evac", "fg": 6276 }, + { "id": "overlay_male_worn_jacket_evac", "fg": 6277 }, + { "id": "overlay_female_worn_jacket_leather", "fg": 6286 }, + { "id": "overlay_male_worn_jacket_leather", "fg": 6287 }, + { "id": "overlay_female_worn_jacket_leather_red", "fg": 6282 }, + { "id": "overlay_male_worn_jacket_leather_red", "fg": 6283 }, + { "id": "overlay_female_worn_ski_jacket", "fg": 6288 }, + { "id": "overlay_male_worn_ski_jacket", "fg": 6289 }, + { "id": "overlay_female_worn_jacket_windbreaker", "fg": 6294 }, + { "id": "overlay_male_worn_jacket_windbreaker", "fg": 6295 }, + { "id": "overlay_female_worn_winter_jacket_army", "fg": 6260 }, + { "id": "overlay_male_worn_winter_jacket_army", "fg": 6261 }, + { "id": "overlay_female_worn_jacket_army", "fg": 6274 }, + { "id": "overlay_male_worn_jacket_army", "fg": 6275 }, + { "id": "overlay_female_worn_trenchcoat", "fg": 6290 }, + { "id": "overlay_male_worn_trenchcoat", "fg": 6291 }, + { "id": "overlay_female_worn_waistcoat", "fg": 6292 }, + { "id": "overlay_male_worn_waistcoat", "fg": 6293 }, + { "id": "overlay_female_worn_peacoat", "fg": 6296 }, + { "id": "overlay_male_worn_peacoat", "fg": 6297 }, + { "id": "overlay_female_worn_poncho", "fg": 6298 }, + { "id": "overlay_male_worn_poncho", "fg": 6299 }, + { "id": "overlay_worn_badge_swat", "fg": 6300 }, + { "id": "overlay_female_worn_barrette", "fg": 6301 }, + { "id": "overlay_male_worn_barrette", "fg": 6302 }, + { "id": "overlay_female_worn_badge_deputy", "fg": 6303 }, + { "id": "overlay_male_worn_badge_deputy", "fg": 6304 }, { "id": [ "overlay_female_worn_gold_ear", @@ -8653,7 +8854,7 @@ "overlay_female_worn_sapphire_gold_earring", "overlay_female_worn_tourmaline_gold_earring" ], - "fg": 6222 + "fg": 6307 }, { "id": [ @@ -8673,7 +8874,7 @@ "overlay_female_worn_sapphire_platinum_earring", "overlay_female_worn_tourmaline_platinum_earring" ], - "fg": 6224 + "fg": 6309 }, { "id": [ @@ -8693,7 +8894,7 @@ "overlay_female_worn_sapphire_silver_earring", "overlay_female_worn_tourmaline_silver_earring" ], - "fg": 6225 + "fg": 6310 }, { "id": [ @@ -8713,7 +8914,7 @@ "overlay_male_worn_sapphire_gold_earring", "overlay_male_worn_tourmaline_gold_earring" ], - "fg": 6228 + "fg": 6313 }, { "id": [ @@ -8733,7 +8934,7 @@ "overlay_male_worn_sapphire_platinum_earring", "overlay_male_worn_tourmaline_platinum_earring" ], - "fg": 6230 + "fg": 6315 }, { "id": [ @@ -8753,7 +8954,7 @@ "overlay_male_worn_sapphire_silver_earring", "overlay_male_worn_tourmaline_silver_earring" ], - "fg": 6231 + "fg": 6316 }, { "id": [ @@ -8773,7 +8974,7 @@ "overlay_worn_sapphire_gold_ring", "overlay_worn_tourmaline_gold_ring" ], - "fg": 6232 + "fg": 6317 }, { "id": [ @@ -8793,7 +8994,7 @@ "overlay_worn_sapphire_platinum_ring", "overlay_worn_tourmaline_platinum_ring" ], - "fg": 6233 + "fg": 6318 }, { "id": [ @@ -8813,1088 +9014,1112 @@ "overlay_worn_sapphire_silver_ring", "overlay_worn_tourmaline_silver_ring" ], - "fg": 6234 - }, - { "id": "overlay_female_worn_knee_pads", "fg": 6243 }, - { "id": "overlay_male_worn_knee_pads", "fg": 6244 }, - { "id": "overlay_male_worn_arm_warmers", "fg": 6246 }, - { "id": "overlay_female_worn_arm_warmers", "fg": 6245 }, - { "id": "overlay_male_worn_leg_warmers", "fg": 6248 }, - { "id": "overlay_female_worn_leg_warmers", "fg": 6247 }, - { "id": "overlay_female_worn_armguard_soft", "fg": 6249 }, - { "id": "overlay_male_worn_armguard_soft", "fg": 6250 }, - { "id": "overlay_female_worn_balclava", "fg": 6251 }, - { "id": "overlay_male_worn_balclava", "fg": 6252 }, - { "id": "overlay_female_worn_bandana", "fg": 6253 }, - { "id": "overlay_male_worn_bandana", "fg": 6254 }, - { "id": "overlay_female_worn_beekeeping_hood", "fg": 6255 }, - { "id": "overlay_male_worn_beekeeping_hood", "fg": 6256 }, - { "id": "overlay_male_worn_foodperson_mask", "fg": 6258 }, - { "id": "overlay_female_worn_foodperson_mask", "fg": 6257 }, - { "id": "overlay_male_worn_foodperson_mask_on", "fg": 6260 }, - { "id": "overlay_female_worn_foodperson_mask_on", "fg": 6259 }, - { "id": "overlay_female_worn_mask_dust", "fg": 6261 }, - { "id": "overlay_male_worn_mask_dust", "fg": 6262 }, - { "id": "overlay_female_worn_mask_gas", "fg": 6263 }, - { "id": "overlay_male_worn_mask_gas", "fg": 6264 }, - { "id": "overlay_female_worn_welding_mask_crude", "fg": 6265 }, - { "id": "overlay_male_worn_welding_mask_crude", "fg": 6266 }, - { "id": "overlay_female_worn_welding_mask_crude_raised", "fg": 6267 }, - { "id": "overlay_male_worn_welding_mask_crude_raised", "fg": 6701 }, - { "id": "overlay_female_worn_welding_mask", "fg": 6268 }, - { "id": "overlay_male_worn_welding_mask", "fg": 6269 }, - { "id": "overlay_female_worn_welding_mask_raised", "fg": 6270 }, - { "id": "overlay_female_worn_mask_bal", "fg": 6271 }, - { "id": "overlay_male_worn_mask_bal", "fg": 6272 }, - { "id": "overlay_female_worn_fencing_mask", "fg": 6273 }, - { "id": "overlay_male_worn_fencing_mask", "fg": 6274 }, - { "id": "overlay_female_worn_mask_filter", "fg": 6275 }, - { "id": "overlay_male_worn_mask_filter", "fg": 6276 }, - { "id": "overlay_female_worn_mask_bunker", "fg": 6277 }, - { "id": "overlay_male_worn_mask_bunker", "fg": 6278 }, - { "id": "overlay_female_worn_mask_guy_fawkes", "fg": 6279 }, - { "id": "overlay_male_worn_mask_guy_fawkes", "fg": 6280 }, - { "id": "overlay_female_worn_mask_hockey", "fg": 6281 }, - { "id": "overlay_male_worn_mask_hockey", "fg": 6282 }, - { "id": "overlay_female_worn_mask_rioter", "fg": 6283 }, - { "id": "overlay_male_worn_mask_rioter", "fg": 6284 }, - { "id": "overlay_male_worn_robe", "fg": 6296 }, - { "id": "overlay_female_worn_robe", "fg": 6295 }, - { "id": "overlay_male_worn_house_coat", "fg": 6294 }, - { "id": "overlay_female_worn_house_coat", "fg": 6293 }, - { "id": "overlay_worn_binoculars", "fg": 6297 }, - { "id": "overlay_female_worn_knit_scarf", "fg": 6300 }, - { "id": "overlay_male_worn_knit_scarf", "fg": 6301 }, - { "id": "overlay_female_worn_scarf", "fg": 6303 }, - { "id": "overlay_female_worn_scarf_loose", "fg": 6303 }, - { "id": "overlay_male_worn_scarf", "fg": 6304 }, - { "id": "overlay_male_worn_scarf_loose", "fg": 6304 }, - { "id": "overlay_worn_tie_bow", "fg": 6298 }, - { "id": "overlay_worn_tie_clipon", "fg": 6299 }, - { "id": "overlay_worn_tie_necktie", "fg": 6302 }, - { "id": "overlay_worn_tie_skinny", "fg": 6305 }, - { "id": "overlay_female_worn_army_top", "fg": 6306 }, - { "id": "overlay_male_worn_army_top", "fg": 6307 }, - { "id": "overlay_female_worn_camisole", "fg": 6308 }, - { "id": "overlay_male_worn_camisole", "fg": 6309 }, - { "id": "overlay_female_worn_under_armor", "fg": 6310 }, - { "id": "overlay_male_worn_under_armor", "fg": 6311 }, - { "id": "overlay_female_worn_dress_shirt", "fg": 6312 }, - { "id": "overlay_male_worn_dress_shirt", "fg": 6313 }, - { "id": "overlay_female_worn_halter_top", "fg": 6314 }, - { "id": "overlay_male_worn_halter_top", "fg": 6315 }, - { "id": "overlay_female_worn_hoodie", "fg": 6316 }, - { "id": "overlay_male_worn_hoodie", "fg": 6317 }, - { "id": "overlay_female_worn_jersey", "fg": 6318 }, - { "id": "overlay_male_worn_jersey", "fg": 6319 }, - { "id": "overlay_female_worn_linuxtshirt", "fg": 6320 }, - { "id": "overlay_male_worn_linuxtshirt", "fg": 6321 }, - { "id": "overlay_female_worn_longshirt", "fg": 6322 }, - { "id": "overlay_male_worn_longshirt", "fg": 6323 }, - { "id": "overlay_female_worn_striped_shirt", "fg": 6324 }, - { "id": "overlay_male_worn_striped_shirt", "fg": 6325 }, - { "id": "overlay_female_worn_sweater", "fg": 6326 }, - { "id": "overlay_male_worn_sweater", "fg": 6327 }, - { "id": "overlay_female_worn_sweatshirt", "fg": 6328 }, - { "id": "overlay_male_worn_sweatshirt", "fg": 6329 }, - { "id": "overlay_female_worn_tank_top", "fg": 6330 }, - { "id": "overlay_male_worn_tank_top", "fg": 6331 }, - { "id": "overlay_female_worn_tshirt", "fg": 6332 }, - { "id": "overlay_male_worn_tshirt", "fg": 6333 }, - { "id": "overlay_female_worn_technician_shirt_gray", "fg": 6334 }, - { "id": "overlay_male_worn_technician_shirt_gray", "fg": 6335 }, - { "id": "overlay_worn_dress_shoes", "fg": 6336 }, - { "id": "overlay_female_worn_flip_flops", "fg": 6337 }, - { "id": "overlay_male_worn_flip_flops", "fg": 6338 }, - { "id": "overlay_female_worn_geta", "fg": 6339 }, - { "id": "overlay_male_worn_geta", "fg": 6340 }, - { "id": "overlay_worn_heels", "fg": 6341 }, - { "id": "overlay_worn_leathersandals", "fg": 6342 }, - { "id": "overlay_worn_lowtops", "fg": 6343 }, - { "id": "overlay_worn_roller_blades", "fg": 6344 }, - { "id": "overlay_female_worn_shoes_bowling", "fg": 6345 }, - { "id": "overlay_male_worn_shoes_bowling", "fg": 6346 }, - { "id": "overlay_female_worn_sneakers", "fg": 6347 }, - { "id": "overlay_male_worn_sneakers", "fg": 6348 }, - { "id": "overlay_female_worn_clogs", "fg": 6349 }, - { "id": "overlay_male_worn_clogs", "fg": 6350 }, - { "id": "overlay_female_worn_b_shorts", "fg": 6351 }, - { "id": "overlay_male_worn_b_shorts", "fg": 6352 }, - { "id": "overlay_female_worn_boy_shorts", "fg": 6353 }, - { "id": "overlay_male_worn_boy_shorts", "fg": 6354 }, - { "id": "overlay_female_worn_under_armor_shorts", "fg": 6355 }, - { "id": "overlay_male_worn_under_armor_shorts", "fg": 6356 }, - { "id": "overlay_female_worn_shorts_cargo", "fg": 6357 }, - { "id": "overlay_male_worn_shorts_cargo", "fg": 6358 }, - { "id": "overlay_female_worn_shorts_denim", "fg": 6359 }, - { "id": "overlay_male_worn_shorts_denim", "fg": 6360 }, - { "id": "overlay_female_worn_shorts", "fg": 6361 }, - { "id": "overlay_male_worn_shorts", "fg": 6362 }, + "fg": 6319 + }, + { "id": "overlay_female_worn_knee_pads", "fg": 6328 }, + { "id": "overlay_male_worn_knee_pads", "fg": 6329 }, + { "id": "overlay_male_worn_arm_warmers", "fg": 6331 }, + { "id": "overlay_female_worn_arm_warmers", "fg": 6330 }, + { "id": "overlay_male_worn_leg_warmers", "fg": 6333 }, + { "id": "overlay_female_worn_leg_warmers", "fg": 6332 }, + { "id": "overlay_female_worn_armguard_soft", "fg": 6334 }, + { "id": "overlay_male_worn_armguard_soft", "fg": 6335 }, + { "id": "overlay_female_worn_balclava", "fg": 6336 }, + { "id": "overlay_male_worn_balclava", "fg": 6337 }, + { "id": "overlay_female_worn_bandana", "fg": 6338 }, + { "id": "overlay_male_worn_bandana", "fg": 6339 }, + { "id": "overlay_female_worn_beekeeping_hood", "fg": 6340 }, + { "id": "overlay_male_worn_beekeeping_hood", "fg": 6341 }, + { "id": "overlay_male_worn_foodperson_mask", "fg": 6343 }, + { "id": "overlay_female_worn_foodperson_mask", "fg": 6342 }, + { "id": "overlay_male_worn_foodperson_mask_on", "fg": 6345 }, + { "id": "overlay_female_worn_foodperson_mask_on", "fg": 6344 }, + { "id": "overlay_female_worn_mask_dust", "fg": 6346 }, + { "id": "overlay_male_worn_mask_dust", "fg": 6347 }, + { "id": "overlay_female_worn_mask_gas", "fg": 6348 }, + { "id": "overlay_male_worn_mask_gas", "fg": 6349 }, + { "id": "overlay_female_worn_welding_mask_crude", "fg": 6352 }, + { "id": "overlay_male_worn_welding_mask_crude", "fg": 6353 }, + { "id": "overlay_female_worn_welding_mask_crude_raised", "fg": 6354 }, + { "id": "overlay_male_worn_welding_mask_crude_raised", "fg": 6809 }, + { "id": "overlay_female_worn_welding_mask", "fg": 6355 }, + { "id": "overlay_male_worn_welding_mask", "fg": 6356 }, + { "id": "overlay_female_worn_welding_mask_raised", "fg": 6357 }, + { "id": "overlay_female_worn_mask_bal", "fg": 6358 }, + { "id": "overlay_male_worn_mask_bal", "fg": 6359 }, + { "id": "overlay_female_worn_fencing_mask", "fg": 6360 }, + { "id": "overlay_male_worn_fencing_mask", "fg": 6361 }, + { "id": "overlay_female_worn_mask_filter", "fg": 6362 }, + { "id": "overlay_male_worn_mask_filter", "fg": 6363 }, + { "id": "overlay_female_worn_mask_bunker", "fg": 6364 }, + { "id": "overlay_male_worn_mask_bunker", "fg": 6365 }, + { "id": "overlay_female_worn_mask_guy_fawkes", "fg": 6366 }, + { "id": "overlay_male_worn_mask_guy_fawkes", "fg": 6367 }, + { "id": "overlay_female_worn_mask_hockey", "fg": 6368 }, + { "id": "overlay_male_worn_mask_hockey", "fg": 6369 }, + { "id": "overlay_female_worn_mask_rioter", "fg": 6370 }, + { "id": "overlay_male_worn_mask_rioter", "fg": 6371 }, + { "id": "overlay_male_worn_robe", "fg": 6383 }, + { "id": "overlay_female_worn_robe", "fg": 6382 }, + { "id": "overlay_male_worn_house_coat", "fg": 6381 }, + { "id": "overlay_female_worn_house_coat", "fg": 6380 }, + { "id": "overlay_worn_binoculars", "fg": 6384 }, + { "id": "overlay_female_worn_knit_scarf", "fg": 6387 }, + { "id": "overlay_male_worn_knit_scarf", "fg": 6388 }, + { "id": "overlay_female_worn_scarf", "fg": 6390 }, + { "id": "overlay_female_worn_scarf_loose", "fg": 6390 }, + { "id": "overlay_male_worn_scarf", "fg": 6391 }, + { "id": "overlay_male_worn_scarf_loose", "fg": 6391 }, + { "id": "overlay_worn_tie_bow", "fg": 6385 }, + { "id": "overlay_worn_tie_clipon", "fg": 6386 }, + { "id": "overlay_worn_tie_necktie", "fg": 6389 }, + { "id": "overlay_worn_tie_skinny", "fg": 6392 }, + { "id": "overlay_female_worn_army_top", "fg": 6393 }, + { "id": "overlay_male_worn_army_top", "fg": 6394 }, + { "id": "overlay_female_worn_camisole", "fg": 6395 }, + { "id": "overlay_male_worn_camisole", "fg": 6396 }, + { "id": "overlay_female_worn_under_armor", "fg": 6397 }, + { "id": "overlay_male_worn_under_armor", "fg": 6398 }, + { "id": "overlay_female_worn_dress_shirt", "fg": 6399 }, + { "id": "overlay_male_worn_dress_shirt", "fg": 6400 }, + { "id": "overlay_female_worn_halter_top", "fg": 6401 }, + { "id": "overlay_male_worn_halter_top", "fg": 6402 }, + { "id": "overlay_female_worn_hoodie", "fg": 6403 }, + { "id": "overlay_male_worn_hoodie", "fg": 6404 }, + { "id": "overlay_female_worn_jersey", "fg": 6405 }, + { "id": "overlay_male_worn_jersey", "fg": 6406 }, + { "id": "overlay_female_worn_linuxtshirt", "fg": 6407 }, + { "id": "overlay_male_worn_linuxtshirt", "fg": 6408 }, + { "id": "overlay_female_worn_longshirt", "fg": 6409 }, + { "id": "overlay_male_worn_longshirt", "fg": 6410 }, + { "id": "overlay_female_worn_striped_shirt", "fg": 6411 }, + { "id": "overlay_male_worn_striped_shirt", "fg": 6412 }, + { "id": "overlay_female_worn_sweater", "fg": 6413 }, + { "id": "overlay_male_worn_sweater", "fg": 6414 }, + { "id": "overlay_female_worn_sweatshirt", "fg": 6415 }, + { "id": "overlay_male_worn_sweatshirt", "fg": 6416 }, + { "id": "overlay_female_worn_tank_top", "fg": 6417 }, + { "id": "overlay_male_worn_tank_top", "fg": 6418 }, + { "id": "overlay_female_worn_tshirt", "fg": 6419 }, + { "id": "overlay_male_worn_tshirt", "fg": 6420 }, + { "id": "overlay_female_worn_technician_shirt_gray", "fg": 6421 }, + { "id": "overlay_male_worn_technician_shirt_gray", "fg": 6422 }, + { "id": "overlay_worn_dress_shoes", "fg": 6423 }, + { "id": "overlay_female_worn_flip_flops", "fg": 6424 }, + { "id": "overlay_male_worn_flip_flops", "fg": 6425 }, + { "id": "overlay_female_worn_geta", "fg": 6426 }, + { "id": "overlay_male_worn_geta", "fg": 6427 }, + { "id": "overlay_worn_heels", "fg": 6428 }, + { "id": "overlay_worn_leathersandals", "fg": 6429 }, + { "id": "overlay_worn_lowtops", "fg": 6430 }, + { "id": "overlay_worn_roller_blades", "fg": 6431 }, + { "id": "overlay_female_worn_shoes_bowling", "fg": 6432 }, + { "id": "overlay_male_worn_shoes_bowling", "fg": 6433 }, + { "id": "overlay_female_worn_sneakers", "fg": 6434 }, + { "id": "overlay_male_worn_sneakers", "fg": 6435 }, + { "id": "overlay_female_worn_clogs", "fg": 6436 }, + { "id": "overlay_male_worn_clogs", "fg": 6437 }, + { "id": "overlay_female_worn_b_shorts", "fg": 6438 }, + { "id": "overlay_male_worn_b_shorts", "fg": 6439 }, + { "id": "overlay_female_worn_boy_shorts", "fg": 6440 }, + { "id": "overlay_male_worn_boy_shorts", "fg": 6441 }, + { "id": "overlay_female_worn_under_armor_shorts", "fg": 6442 }, + { "id": "overlay_male_worn_under_armor_shorts", "fg": 6443 }, + { "id": "overlay_female_worn_shorts_cargo", "fg": 6444 }, + { "id": "overlay_male_worn_shorts_cargo", "fg": 6445 }, + { "id": "overlay_female_worn_shorts_denim", "fg": 6446 }, + { "id": "overlay_male_worn_shorts_denim", "fg": 6447 }, + { "id": "overlay_female_worn_shorts", "fg": 6448 }, + { "id": "overlay_male_worn_shorts", "fg": 6449 }, { "id": "overlay_female_worn_cigar_lit", "fg": [ - { "weight": 14, "sprite": 6363 }, - { "weight": 14, "sprite": 6364 }, - { "weight": 14, "sprite": 6365 }, - { "weight": 14, "sprite": 6366 }, - { "weight": 14, "sprite": 6367 }, - { "weight": 14, "sprite": 6368 }, - { "weight": 14, "sprite": 6369 } + { "weight": 14, "sprite": 6450 }, + { "weight": 14, "sprite": 6451 }, + { "weight": 14, "sprite": 6452 }, + { "weight": 14, "sprite": 6453 }, + { "weight": 14, "sprite": 6454 }, + { "weight": 14, "sprite": 6455 }, + { "weight": 14, "sprite": 6456 } ], "animated": true }, { "id": "overlay_male_worn_cigar_lit", "fg": [ - { "weight": 14, "sprite": 6370 }, - { "weight": 14, "sprite": 6371 }, - { "weight": 14, "sprite": 6372 }, - { "weight": 14, "sprite": 6373 }, - { "weight": 14, "sprite": 6374 }, - { "weight": 14, "sprite": 6375 }, - { "weight": 14, "sprite": 6376 } + { "weight": 14, "sprite": 6457 }, + { "weight": 14, "sprite": 6458 }, + { "weight": 14, "sprite": 6459 }, + { "weight": 14, "sprite": 6460 }, + { "weight": 14, "sprite": 6461 }, + { "weight": 14, "sprite": 6462 }, + { "weight": 14, "sprite": 6463 } ], "animated": true }, { "id": "overlay_female_worn_cig_lit", "fg": [ - { "weight": 14, "sprite": 6377 }, - { "weight": 14, "sprite": 6378 }, - { "weight": 14, "sprite": 6379 }, - { "weight": 14, "sprite": 6380 }, - { "weight": 14, "sprite": 6381 }, - { "weight": 14, "sprite": 6382 }, - { "weight": 14, "sprite": 6383 } + { "weight": 14, "sprite": 6464 }, + { "weight": 14, "sprite": 6465 }, + { "weight": 14, "sprite": 6466 }, + { "weight": 14, "sprite": 6467 }, + { "weight": 14, "sprite": 6468 }, + { "weight": 14, "sprite": 6469 }, + { "weight": 14, "sprite": 6470 } ], "animated": true }, { "id": "overlay_male_worn_cig_lit", "fg": [ - { "weight": 14, "sprite": 6384 }, - { "weight": 14, "sprite": 6385 }, - { "weight": 14, "sprite": 6386 }, - { "weight": 14, "sprite": 6387 }, - { "weight": 14, "sprite": 6388 }, - { "weight": 14, "sprite": 6389 }, - { "weight": 14, "sprite": 6390 } + { "weight": 14, "sprite": 6471 }, + { "weight": 14, "sprite": 6472 }, + { "weight": 14, "sprite": 6473 }, + { "weight": 14, "sprite": 6474 }, + { "weight": 14, "sprite": 6475 }, + { "weight": 14, "sprite": 6476 }, + { "weight": 14, "sprite": 6477 } ], "animated": true }, { "id": "overlay_female_worn_joint_lit", "fg": [ - { "weight": 14, "sprite": 6391 }, - { "weight": 14, "sprite": 6392 }, - { "weight": 14, "sprite": 6393 }, - { "weight": 14, "sprite": 6394 }, - { "weight": 14, "sprite": 6395 }, - { "weight": 14, "sprite": 6396 }, - { "weight": 14, "sprite": 6397 } + { "weight": 14, "sprite": 6478 }, + { "weight": 14, "sprite": 6479 }, + { "weight": 14, "sprite": 6480 }, + { "weight": 14, "sprite": 6481 }, + { "weight": 14, "sprite": 6482 }, + { "weight": 14, "sprite": 6483 }, + { "weight": 14, "sprite": 6484 } ], "animated": true }, { "id": "overlay_male_worn_joint_lit", "fg": [ - { "weight": 14, "sprite": 6398 }, - { "weight": 14, "sprite": 6399 }, - { "weight": 14, "sprite": 6400 }, - { "weight": 14, "sprite": 6401 }, - { "weight": 14, "sprite": 6402 }, - { "weight": 14, "sprite": 6403 }, - { "weight": 14, "sprite": 6404 } + { "weight": 14, "sprite": 6485 }, + { "weight": 14, "sprite": 6486 }, + { "weight": 14, "sprite": 6487 }, + { "weight": 14, "sprite": 6488 }, + { "weight": 14, "sprite": 6489 }, + { "weight": 14, "sprite": 6490 }, + { "weight": 14, "sprite": 6491 } ], "animated": true }, - { "id": "overlay_worn_boots_survivor", "fg": 6405 }, - { "id": "overlay_worn_boots_xlsurvivor", "fg": 6405 }, - { "id": "overlay_female_worn_sleeveless_duster_survivor", "fg": 6408 }, - { "id": "overlay_male_worn_sleeveless_duster_survivor", "fg": 6409 }, - { "id": "overlay_female_worn_sleeveless_trenchcoat_survivor", "fg": 6410 }, - { "id": "overlay_male_worn_sleeveless_trenchcoat_survivor", "fg": 6411 }, - { "id": "overlay_female_worn_survivor_belt_notools", "fg": 6474 }, - { "id": "overlay_male_worn_survivor_belt_notools", "fg": 6475 }, - { "id": "overlay_female_worn_duster_survivor", "fg": 6414 }, - { "id": "overlay_male_worn_duster_survivor", "fg": 6415 }, - { "id": "overlay_female_worn_xl_duster_survivor", "fg": 6414 }, - { "id": "overlay_male_worn_xl_duster_survivor", "fg": 6415 }, - { "id": "overlay_female_worn_gloves_survivor", "fg": 6418 }, - { "id": "overlay_male_worn_gloves_survivor", "fg": 6419 }, - { "id": "overlay_female_worn_gloves_xlsurvivor", "fg": 6418 }, - { "id": "overlay_male_worn_gloves_xlsurvivor", "fg": 6419 }, - { "id": "overlay_female_worn_survivor_vest", "fg": 6476 }, - { "id": "overlay_male_worn_survivor_vest", "fg": 6477 }, - { "id": "overlay_female_worn_xl_survivor_vest", "fg": 6476 }, - { "id": "overlay_male_worn_xl_survivor_vest", "fg": 6477 }, - { "id": "overlay_female_worn_hood_survivor", "fg": 6420 }, - { "id": "overlay_male_worn_hood_survivor", "fg": 6421 }, - { "id": "overlay_female_worn_hood_xlsurvivor", "fg": 6420 }, - { "id": "overlay_male_worn_hood_xlsurvivor", "fg": 6421 }, - { "id": "overlay_female_worn_survivor_suit", "fg": 6422 }, - { "id": "overlay_male_worn_survivor_suit", "fg": 6423 }, - { "id": "overlay_female_worn_xlsurvivor_suit", "fg": 6422 }, - { "id": "overlay_male_worn_xlsurvivor_suit", "fg": 6423 }, - { "id": "overlay_female_worn_trenchcoat_survivor", "fg": 6424 }, - { "id": "overlay_male_worn_trenchcoat_survivor", "fg": 6425 }, - { "id": "overlay_worn_boots_hsurvivor", "fg": 6440 }, - { "id": "overlay_worn_xl_boots_hsurvivor", "fg": 6440 }, - { "id": "overlay_female_worn_gloves_hsurvivor", "fg": 6441 }, - { "id": "overlay_male_worn_gloves_hsurvivor", "fg": 6442 }, - { "id": "overlay_female_worn_xl_gloves_hsurvivor", "fg": 6441 }, - { "id": "overlay_male_worn_xl_gloves_hsurvivor", "fg": 6442 }, - { "id": "overlay_female_worn_hsurvivor_suit", "fg": 6443 }, - { "id": "overlay_male_worn_hsurvivor_suit", "fg": 6444 }, - { "id": "overlay_female_worn_xlhsurvivor_suit", "fg": 6443 }, - { "id": "overlay_male_worn_xlhsurvivor_suit", "fg": 6444 }, - { "id": "overlay_worn_boots_fsurvivor", "fg": 6433 }, - { "id": "overlay_worn_xl_boots_fsurvivor", "fg": 6433 }, - { "id": "overlay_female_worn_gloves_fsurvivor", "fg": 6434 }, - { "id": "overlay_male_worn_gloves_fsurvivor", "fg": 6435 }, - { "id": "overlay_female_worn_xl_gloves_fsurvivor", "fg": 6434 }, - { "id": "overlay_male_worn_xl_gloves_fsurvivor", "fg": 6435 }, - { "id": "overlay_female_worn_hood_fsurvivor", "fg": 6436 }, - { "id": "overlay_male_worn_hood_fsurvivor", "fg": 6437 }, - { "id": "overlay_female_worn_xl_hood_fsurvivor", "fg": 6436 }, - { "id": "overlay_male_worn_xl_hood_fsurvivor", "fg": 6437 }, - { "id": "overlay_female_worn_fsurvivor_suit", "fg": 6438 }, - { "id": "overlay_male_worn_fsurvivor_suit", "fg": 6439 }, - { "id": "overlay_female_worn_xl_fsurvivor_suit", "fg": 6438 }, - { "id": "overlay_male_worn_xl_fsurvivor_suit", "fg": 6439 }, - { "id": [ "overlay_female_worn_pants_survivor", "overlay_female_worn_xl_pants_survivor" ], "fg": 6412 }, - { "id": [ "overlay_male_worn_pants_survivor", "overlay_male_worn_xl_pants_survivor" ], "fg": 6413 }, + { "id": "overlay_worn_boots_survivor", "fg": 6492 }, + { "id": "overlay_worn_boots_xlsurvivor", "fg": 6492 }, + { "id": "overlay_female_worn_sleeveless_duster_survivor", "fg": 6495 }, + { "id": "overlay_male_worn_sleeveless_duster_survivor", "fg": 6496 }, + { "id": "overlay_female_worn_sleeveless_trenchcoat_survivor", "fg": 6497 }, + { "id": "overlay_male_worn_sleeveless_trenchcoat_survivor", "fg": 6498 }, + { "id": "overlay_female_worn_survivor_belt_notools", "fg": 6561 }, + { "id": "overlay_male_worn_survivor_belt_notools", "fg": 6562 }, + { "id": "overlay_female_worn_duster_survivor", "fg": 6501 }, + { "id": "overlay_male_worn_duster_survivor", "fg": 6502 }, + { "id": "overlay_female_worn_xl_duster_survivor", "fg": 6501 }, + { "id": "overlay_male_worn_xl_duster_survivor", "fg": 6502 }, + { "id": "overlay_female_worn_gloves_survivor", "fg": 6505 }, + { "id": "overlay_male_worn_gloves_survivor", "fg": 6506 }, + { "id": "overlay_female_worn_gloves_xlsurvivor", "fg": 6505 }, + { "id": "overlay_male_worn_gloves_xlsurvivor", "fg": 6506 }, + { "id": "overlay_female_worn_survivor_vest", "fg": 6563 }, + { "id": "overlay_male_worn_survivor_vest", "fg": 6564 }, + { "id": "overlay_female_worn_xl_survivor_vest", "fg": 6563 }, + { "id": "overlay_male_worn_xl_survivor_vest", "fg": 6564 }, + { "id": "overlay_female_worn_hood_survivor", "fg": 6507 }, + { "id": "overlay_male_worn_hood_survivor", "fg": 6508 }, + { "id": "overlay_female_worn_hood_xlsurvivor", "fg": 6507 }, + { "id": "overlay_male_worn_hood_xlsurvivor", "fg": 6508 }, + { "id": "overlay_female_worn_survivor_suit", "fg": 6509 }, + { "id": "overlay_male_worn_survivor_suit", "fg": 6510 }, + { "id": "overlay_female_worn_xlsurvivor_suit", "fg": 6509 }, + { "id": "overlay_male_worn_xlsurvivor_suit", "fg": 6510 }, + { "id": "overlay_female_worn_trenchcoat_survivor", "fg": 6511 }, + { "id": "overlay_male_worn_trenchcoat_survivor", "fg": 6512 }, + { "id": "overlay_worn_boots_hsurvivor", "fg": 6527 }, + { "id": "overlay_worn_xl_boots_hsurvivor", "fg": 6527 }, + { "id": "overlay_female_worn_gloves_hsurvivor", "fg": 6528 }, + { "id": "overlay_male_worn_gloves_hsurvivor", "fg": 6529 }, + { "id": "overlay_female_worn_xl_gloves_hsurvivor", "fg": 6528 }, + { "id": "overlay_male_worn_xl_gloves_hsurvivor", "fg": 6529 }, + { "id": "overlay_female_worn_hsurvivor_suit", "fg": 6530 }, + { "id": "overlay_male_worn_hsurvivor_suit", "fg": 6531 }, + { "id": "overlay_female_worn_xlhsurvivor_suit", "fg": 6530 }, + { "id": "overlay_male_worn_xlhsurvivor_suit", "fg": 6531 }, + { "id": "overlay_worn_boots_fsurvivor", "fg": 6520 }, + { "id": "overlay_worn_xl_boots_fsurvivor", "fg": 6520 }, + { "id": "overlay_female_worn_gloves_fsurvivor", "fg": 6521 }, + { "id": "overlay_male_worn_gloves_fsurvivor", "fg": 6522 }, + { "id": "overlay_female_worn_xl_gloves_fsurvivor", "fg": 6521 }, + { "id": "overlay_male_worn_xl_gloves_fsurvivor", "fg": 6522 }, + { "id": "overlay_female_worn_hood_fsurvivor", "fg": 6523 }, + { "id": "overlay_male_worn_hood_fsurvivor", "fg": 6524 }, + { "id": "overlay_female_worn_xl_hood_fsurvivor", "fg": 6523 }, + { "id": "overlay_male_worn_xl_hood_fsurvivor", "fg": 6524 }, + { "id": "overlay_female_worn_fsurvivor_suit", "fg": 6525 }, + { "id": "overlay_male_worn_fsurvivor_suit", "fg": 6526 }, + { "id": "overlay_female_worn_xl_fsurvivor_suit", "fg": 6525 }, + { "id": "overlay_male_worn_xl_fsurvivor_suit", "fg": 6526 }, + { "id": [ "overlay_female_worn_pants_survivor", "overlay_female_worn_xl_pants_survivor" ], "fg": 6499 }, + { "id": [ "overlay_male_worn_pants_survivor", "overlay_male_worn_xl_pants_survivor" ], "fg": 6500 }, { "id": [ "overlay_female_worn_gloves_survivor_fingerless", "overlay_female_worn_xl_gloves_survivor_fingerless" ], - "fg": 6416 + "fg": 6503 }, { "id": [ "overlay_male_worn_gloves_survivor_fingerless", "overlay_male_worn_xl_gloves_survivor_fingerless" ], - "fg": 6417 - }, - { "id": "overlay_worn_boots_h20survivor", "fg": 6426 }, - { "id": "overlay_female_worn_gloves_h20survivor", "fg": 6427 }, - { "id": "overlay_male_worn_gloves_h20survivor", "fg": 6428 }, - { "id": "overlay_female_worn_hood_h20survivor", "fg": 6429 }, - { "id": "overlay_male_worn_hood_h20survivor", "fg": 6430 }, - { "id": "overlay_female_worn_h20survivor_suit", "fg": 6431 }, - { "id": "overlay_male_worn_h20survivor_suit", "fg": 6432 }, - { "id": [ "overlay_worn_boots_lsurvivor", "overlay_worn_xl_boots_lsurvivor" ], "fg": 6445 }, - { "id": [ "overlay_female_worn_gloves_lsurvivor", "overlay_female_worn_xl_gloves_lsurvivor" ], "fg": 6450 }, - { "id": [ "overlay_male_worn_gloves_lsurvivor", "overlay_male_worn_xl_gloves_lsurvivor" ], "fg": 6451 }, - { "id": [ "overlay_female_worn_hood_lsurvivor", "overlay_female_worn_xl_hood_lsurvivor" ], "fg": 6452 }, - { "id": [ "overlay_male_worn_hood_lsurvivor", "overlay_male_worn_xl_hood_lsurvivor" ], "fg": 6453 }, - { "id": [ "overlay_female_worn_lsurvivor_suit", "overlay_female_worn_xl_lsurvivor_suit" ], "fg": 6454 }, - { "id": [ "overlay_male_worn_lsurvivor_suit", "overlay_male_worn_xl_lsurvivor_suit" ], "fg": 6455 }, - { "id": [ "overlay_female_worn_lsurvivor_armor", "overlay_female_worn_xl_lsurvivor_armor" ], "fg": 6446 }, - { "id": [ "overlay_male_worn_lsurvivor_armor", "overlay_male_worn_xl_lsurvivor_armor" ], "fg": 6447 }, - { "id": [ "overlay_female_worn_lsurvivor_pants", "overlay_female_worn_xl_lsurvivor_pants" ], "fg": 6448 }, - { "id": [ "overlay_male_worn_lsurvivor_pants", "overlay_male_worn_xl_lsurvivor_pants" ], "fg": 6449 }, - { "id": "overlay_female_worn_mask_hsurvivor", "fg": 6456 }, - { "id": "overlay_male_worn_mask_hsurvivor", "fg": 6457 }, - { "id": "overlay_female_worn_mask_lsurvivor", "fg": 6458 }, - { "id": "overlay_male_worn_mask_lsurvivor", "fg": 6459 }, - { "id": "overlay_female_worn_mask_fsurvivor", "fg": 6460 }, - { "id": "overlay_male_worn_mask_fsurvivor", "fg": 6461 }, - { "id": "overlay_female_worn_mask_fsurvivorxl", "fg": 6460 }, - { "id": "overlay_male_worn_mask_fsurvivorxl", "fg": 6461 }, - { "id": "overlay_female_worn_mask_survivor", "fg": 6462 }, - { "id": "overlay_male_worn_mask_survivor", "fg": 6463 }, - { "id": "overlay_female_worn_mask_survivorxl", "fg": 6462 }, - { "id": "overlay_male_worn_mask_survivorxl", "fg": 6463 }, - { "id": "overlay_female_worn_mask_wsurvivor", "fg": 6464 }, - { "id": "overlay_male_worn_mask_wsurvivor", "fg": 6465 }, - { "id": "overlay_female_worn_mask_wsurvivorxl", "fg": 6464 }, - { "id": "overlay_male_worn_mask_wsurvivorxl", "fg": 6465 }, - { "id": [ "overlay_worn_boots_wsurvivor", "overlay_worn_xl_boots_wsurvivor" ], "fg": 6478 }, - { "id": [ "overlay_female_worn_gloves_wsurvivor", "overlay_female_worn_xl_gloves_wsurvivor" ], "fg": 6479 }, - { "id": [ "overlay_male_worn_gloves_wsurvivor", "overlay_male_worn_xl_gloves_wsurvivor" ], "fg": 6480 }, - { "id": [ "overlay_female_worn_hood_wsurvivor", "overlay_female_worn_xl_hood_wsurvivor" ], "fg": 6481 }, - { "id": [ "overlay_male_worn_hood_wsurvivor", "overlay_male_worn_xl_hood_wsurvivor" ], "fg": 6482 }, - { "id": [ "overlay_female_worn_wsurvivor_suit", "overlay_female_worn_xl_wsurvivor_suit" ], "fg": 6483 }, - { "id": [ "overlay_male_worn_wsurvivor_suit", "overlay_male_worn_xl_wsurvivor_suit" ], "fg": 6484 }, - { "id": "overlay_female_worn_bikini_bottom", "fg": 6485 }, - { "id": "overlay_male_worn_bikini_bottom", "fg": 6486 }, - { "id": "overlay_female_worn_bikini_top", "fg": 6487 }, - { "id": "overlay_male_worn_bikini_top", "fg": 6488 }, - { "id": "overlay_female_worn_bikini_top_fur", "fg": 6489 }, - { "id": "overlay_male_worn_bikini_top_fur", "fg": 6490 }, - { "id": "overlay_female_worn_bikini_top_leather", "fg": 6491 }, - { "id": "overlay_male_worn_bikini_top_leather", "fg": 6492 }, - { "id": "overlay_female_worn_winter_pants_army", "fg": 6493 }, - { "id": "overlay_male_worn_winter_pants_army", "fg": 6494 }, - { "id": "overlay_female_worn_bunker_pants", "fg": 6495 }, - { "id": "overlay_male_worn_bunker_pants", "fg": 6496 }, - { "id": "overlay_female_worn_striped_pants", "fg": 6519 }, - { "id": "overlay_male_worn_striped_pants", "fg": 6520 }, - { "id": "overlay_female_worn_technician_pants_gray", "fg": 6521 }, - { "id": "overlay_male_worn_technician_pants_gray", "fg": 6522 }, - { "id": "overlay_female_worn_jeans", "fg": 6497 }, - { "id": "overlay_male_worn_jeans", "fg": 6498 }, - { "id": "overlay_female_worn_jeans_red", "fg": 6499 }, - { "id": "overlay_male_worn_jeans_red", "fg": 6500 }, - { "id": "overlay_female_worn_motorbike_pants", "fg": 6501 }, - { "id": "overlay_male_worn_motorbike_pants", "fg": 6502 }, - { "id": "overlay_female_worn_pants_army", "fg": 6503 }, - { "id": "overlay_male_worn_pants_army", "fg": 6504 }, - { "id": "overlay_female_worn_pants_cargo", "fg": 6505 }, - { "id": "overlay_male_worn_pants_cargo", "fg": 6506 }, - { "id": "overlay_female_worn_pants_checkered", "fg": 6507 }, - { "id": "overlay_male_worn_pants_checkered", "fg": 6508 }, - { "id": "overlay_female_worn_pants_faux_fur", "fg": 6510 }, - { "id": "overlay_male_worn_pants_faux_fur", "fg": 6511 }, - { "id": "overlay_female_worn_pants_fur", "fg": 6512 }, - { "id": "overlay_male_worn_pants_fur", "fg": 6513 }, - { "id": "overlay_female_worn_pants_leather", "fg": 6514 }, - { "id": "overlay_male_worn_pants_leather", "fg": 6515 }, - { "id": "overlay_female_worn_pants", "fg": 6509 }, - { "id": "overlay_male_worn_pants", "fg": 6516 }, - { "id": "overlay_female_worn_pants_ski", "fg": 6517 }, - { "id": "overlay_male_worn_pants_ski", "fg": 6518 }, - { "id": "overlay_female_worn_bra", "fg": 6527 }, - { "id": "overlay_male_worn_bra", "fg": 6528 }, - { "id": "overlay_female_worn_corset", "fg": 6529 }, - { "id": "overlay_male_worn_corset", "fg": 6530 }, - { "id": "overlay_male_worn_undershirt", "fg": 6544 }, - { "id": "overlay_female_worn_undershirt", "fg": 6543 }, - { "id": "overlay_female_worn_socks", "fg": 6537 }, - { "id": "overlay_male_worn_socks", "fg": 6538 }, - { "id": "overlay_female_worn_stockings", "fg": 6541 }, - { "id": "overlay_male_worn_stockings", "fg": 6542 }, - { "id": "overlay_worn_socks_wool", "fg": 6547 }, - { "id": "overlay_female_worn_sports_bra", "fg": 6539 }, - { "id": "overlay_male_worn_sports_bra", "fg": 6540 }, - { "id": "overlay_female_worn_boxer_briefs", "fg": 6523 }, - { "id": "overlay_male_worn_boxer_briefs", "fg": 6524 }, - { "id": "overlay_female_worn_boxer_shorts", "fg": 6525 }, - { "id": "overlay_male_worn_boxer_shorts", "fg": 6526 }, - { "id": "overlay_female_worn_long_underpants", "fg": 6531 }, - { "id": "overlay_male_worn_long_underpants", "fg": 6532 }, - { "id": "overlay_female_worn_long_undertop", "fg": 6533 }, - { "id": "overlay_male_worn_long_undertop", "fg": 6534 }, - { "id": "overlay_female_worn_panties", "fg": 6535 }, - { "id": "overlay_male_worn_panties", "fg": 6536 }, - { "id": "overlay_female_worn_union_suit", "fg": 6545 }, - { "id": "overlay_male_worn_union_suit", "fg": 6546 }, - { "id": "overlay_male_worn_blanket", "fg": 6549 }, - { "id": "overlay_female_worn_blanket", "fg": 6548 }, - { "id": "overlay_male_worn_down_blanket", "fg": 6551 }, - { "id": "overlay_female_worn_down_blanket", "fg": 6550 }, - { "id": "overlay_female_worn_electric_blanket", "fg": 6552 }, - { "id": "overlay_male_worn_electric_blanket", "fg": 6553 }, - { "id": "overlay_female_worn_towel", "fg": 6554 }, - { "id": "overlay_male_worn_towel", "fg": 6555 }, - { "id": "overlay_female_worn_towel_wet", "fg": 6554 }, - { "id": "overlay_male_worn_towel_wet", "fg": 6555 }, - { "id": "overlay_female_worn_towel_soiled", "fg": 6554 }, - { "id": "overlay_male_worn_towel_soiled", "fg": 6555 }, - { "id": "overlay_mutation_bio_blaster", "fg": 4864 }, - { "id": "overlay_effect_attention", "fg": 4865 }, - { "id": "overlay_effect_boomered", "fg": 4866 }, - { "id": "overlay_effect_glare", "fg": 4867 }, - { "id": "overlay_effect_laserlocked", "fg": 4868 }, - { "id": "overlay_female_mutation_ARM_TENTACLES", "fg": 4993 }, - { "id": "overlay_male_mutation_ARM_TENTACLES", "fg": 4994 }, - { "id": "overlay_female_mutation_ARM_TENTACLES_4", "fg": 4995 }, - { "id": "overlay_male_mutation_ARM_TENTACLES_4", "fg": 4996 }, - { "id": "overlay_female_mutation_ARM_TENTACLES_8", "fg": 4997 }, - { "id": "overlay_male_mutation_ARM_TENTACLES_8", "fg": 4998 }, - { "id": "overlay_female_mutation_CANINE_EARS", "fg": 5007 }, - { "id": "overlay_male_mutation_CANINE_EARS", "fg": 5008 }, - { "id": "overlay_female_mutation_FEL_EYE", "fg": 5011 }, - { "id": "overlay_male_mutation_FEL_EYE", "fg": 5012 }, - { "id": "overlay_female_mutation_FELINE_EARS", "fg": 5013 }, - { "id": "overlay_male_mutation_FELINE_EARS", "fg": 5014 }, - { "id": "overlay_female_mutation_HORNS", "fg": 5015 }, - { "id": "overlay_male_mutation_HORNS", "fg": 5016 }, - { "id": "overlay_female_mutation_HORNS_CURLED", "fg": 5017 }, - { "id": "overlay_male_mutation_HORNS_CURLED", "fg": 5018 }, - { "id": "overlay_female_mutation_LUPINE_EARS", "fg": 5023 }, - { "id": "overlay_male_mutation_LUPINE_EARS", "fg": 5024 }, - { "id": "overlay_female_mutation_LYNX_FUR", "fg": 5025 }, - { "id": "overlay_male_mutation_LYNX_FUR", "fg": 5026 }, - { "id": "overlay_female_mutation_MINOTAUR", "fg": 5027 }, - { "id": "overlay_male_mutation_MINOTAUR", "fg": 5028 }, - { "id": "overlay_female_mutation_MOUTH_TENTACLES", "fg": 5029 }, - { "id": "overlay_male_mutation_MOUTH_TENTACLES", "fg": 5030 }, - { "id": "overlay_female_mutation_SHELL", "fg": 5037 }, - { "id": "overlay_male_mutation_SHELL", "fg": 5038 }, - { "id": "overlay_female_mutation_TAIL_CATTLE", "fg": 5039 }, - { "id": "overlay_male_mutation_TAIL_CATTLE", "fg": 5040 }, - { "id": "overlay_female_mutation_TAIL_FLUFFY", "fg": 5041 }, - { "id": "overlay_male_mutation_TAIL_FLUFFY", "fg": 5042 }, - { "id": "overlay_female_mutation_TAIL_LONG", "fg": 5043 }, - { "id": "overlay_male_mutation_TAIL_LONG", "fg": 5044 }, - { "id": "overlay_female_mutation_WHISKERS", "fg": 5051 }, - { "id": "overlay_male_mutation_WHISKERS", "fg": 5052 }, - { "id": "overlay_female_mutation_FELINE_FUR", "fg": 5064 }, - { "id": "overlay_female_mutation_FUR", "fg": 5065 }, - { "id": "overlay_male_mutation_FELINE_FUR", "fg": 5067 }, - { "id": "overlay_male_mutation_FUR", "fg": 5068 }, - { "id": "overlay_female_wielded_clay_teapot", "fg": 5123 }, - { "id": "overlay_female_worn_harmonica_holder", "fg": 5124 }, - { "id": "overlay_male_wielded_clay_teapot", "fg": 5125 }, - { "id": "overlay_male_worn_harmonica_holder", "fg": 5126 }, - { "id": "overlay_wielded_banjo", "fg": 5128 }, - { "id": "overlay_wielded_bodypillow", "fg": 5129 }, - { "id": "overlay_wielded_clay_pot", "fg": 5130 }, - { "id": "overlay_wielded_guitar_electric", "fg": 5131 }, - { "id": "overlay_wielded_laptop", "fg": 5132 }, - { "id": "overlay_wielded_makeshift_hammer", "fg": 5133 }, - { "id": "overlay_wielded_pot_makeshift", "fg": 5134 }, - { "id": "overlay_wielded_pot_makeshift_copper", "fg": 5135 }, - { "id": "overlay_wielded_tazer", "fg": 5136 }, - { "id": "overlay_wielded_1895sbl", "fg": 5140 }, - { "id": "overlay_wielded_2_shot_special", "fg": 5141 }, - { "id": "overlay_wielded_90two", "fg": 5142 }, - { "id": "overlay_wielded_90two40", "fg": 5143 }, - { "id": "overlay_wielded_AT4", "fg": 5144 }, - { "id": "overlay_wielded_LAW", "fg": 5145 }, - { "id": "overlay_wielded_LAW_Packed", "fg": 5146 }, - { "id": "overlay_wielded_M24", "fg": 5147 }, - { "id": "overlay_wielded_RPG", "fg": 5148 }, - { "id": "overlay_wielded_TDI", "fg": 5149 }, - { "id": "overlay_wielded_USAS_12", "fg": 5150 }, - { "id": "overlay_wielded_af2011a1_38super", "fg": 5151 }, - { "id": "overlay_wielded_airspeargun", "fg": 5152 }, - { "id": "overlay_wielded_ak74", "fg": 5154 }, - { "id": "overlay_wielded_american_180", "fg": 5155 }, - { "id": "overlay_wielded_an94", "fg": 5156 }, - { "id": "overlay_wielded_ar10", "fg": 5157 }, - { "id": "overlay_wielded_ar15", "fg": 5158 }, - { "id": "overlay_wielded_ar_pistol", "fg": 5159 }, - { "id": "overlay_wielded_arx160", "fg": 5160 }, - { "id": "overlay_wielded_ashot", "fg": 5161 }, - { "id": "overlay_wielded_atgm_launcher", "fg": 5162 }, - { "id": "overlay_wielded_bbgun", "fg": 5163 }, - { "id": "overlay_wielded_bfr", "fg": 5164 }, - { "id": "overlay_wielded_bh_m89", "fg": 5165 }, - { "id": "overlay_wielded_bigun", "fg": 5166 }, - { "id": "overlay_wielded_blunderbuss", "fg": 5167 }, - { "id": "overlay_wielded_bond_410", "fg": 5168 }, - { "id": "overlay_wielded_browning_blr", "fg": 5169 }, - { "id": "overlay_wielded_bt_apc9k", "fg": 5170 }, - { "id": "overlay_wielded_chemical_thrower", "fg": 5172 }, - { "id": "overlay_wielded_coilgun", "fg": 5173 }, - { "id": "overlay_wielded_colt_army", "fg": 5174 }, - { "id": "overlay_wielded_colt_lightning", "fg": 5175 }, - { "id": "overlay_wielded_colt_navy", "fg": 5176 }, - { "id": "overlay_wielded_colt_ro635", "fg": 5177 }, - { "id": "overlay_wielded_colt_saa", "fg": 5178 }, - { "id": "overlay_wielded_combination_gun", "fg": 5179 }, - { "id": "overlay_wielded_cop_38", "fg": 5180 }, - { "id": "overlay_wielded_cx4", "fg": 5181 }, - { "id": "overlay_wielded_cz75", "fg": 5182 }, - { "id": "overlay_wielded_deagle_44", "fg": 5183 }, - { "id": "overlay_wielded_doublespeargun", "fg": 5184 }, - { "id": "overlay_wielded_draco", "fg": 5185 }, - { "id": "overlay_wielded_emp_gun", "fg": 5186 }, - { "id": "overlay_wielded_famas", "fg": 5187 }, - { "id": "overlay_wielded_flamethrower", "fg": 5188 }, - { "id": "overlay_wielded_flamethrower_crude", "fg": 5189 }, - { "id": "overlay_wielded_flamethrower_simple", "fg": 5190 }, - { "id": "overlay_wielded_flaregun", "fg": 5191 }, - { "id": "overlay_wielded_fn1910", "fg": 5192 }, - { "id": "overlay_wielded_fn57", "fg": 5193 }, - { "id": "overlay_wielded_fn_fal", "fg": 5194 }, - { "id": "overlay_wielded_fn_p90", "fg": 5195 }, - { "id": "overlay_wielded_fs2000", "fg": 5196 }, - { "id": "overlay_wielded_ftk93", "fg": 5197 }, - { "id": "overlay_wielded_garand", "fg": 5198 }, - { "id": "overlay_wielded_glock_17", "fg": 5199 }, - { "id": "overlay_wielded_glock_18c", "fg": 5200 }, - { "id": "overlay_wielded_glock_19", "fg": 5201 }, - { "id": "overlay_wielded_glock_20", "fg": 5202 }, - { "id": "overlay_wielded_glock_20_var_glock_40", "fg": 5203 }, - { "id": "overlay_wielded_glock_21", "fg": 5204 }, - { "id": "overlay_wielded_glock_22", "fg": 5205 }, - { "id": "overlay_wielded_glock_29", "fg": 5206 }, - { "id": "overlay_wielded_glock_31", "fg": 5207 }, - { "id": "overlay_wielded_heavy_rail_rifle", "fg": 5208 }, - { "id": "overlay_wielded_helsing", "fg": 5209 }, - { "id": "overlay_wielded_henry_big_boy", "fg": 5210 }, - { "id": "overlay_wielded_hi_power_40", "fg": 5211 }, - { "id": "overlay_wielded_hi_power_9mm", "fg": 5212 }, - { "id": "overlay_wielded_hk417_13", "fg": 5213 }, - { "id": "overlay_wielded_hk_g3", "fg": 5214 }, - { "id": "overlay_wielded_hk_g36", "fg": 5215 }, - { "id": "overlay_wielded_hk_g80", "fg": 5216 }, - { "id": "overlay_wielded_hk_mp5_semi_pistol", "fg": 5218 }, - { "id": "overlay_wielded_hk_mp5k", "fg": 5219 }, - { "id": "overlay_wielded_hk_mp5sd", "fg": 5220 }, - { "id": "overlay_wielded_hk_mp7", "fg": 5221 }, - { "id": "overlay_wielded_hk_ump45", "fg": 5222 }, - { "id": "overlay_wielded_hptc9", "fg": 5223 }, - { "id": "overlay_wielded_hptcf380", "fg": 5224 }, - { "id": "overlay_wielded_iwi_tavor_x95_300blk", "fg": 5226 }, - { "id": "overlay_wielded_kp32", "fg": 5227 }, - { "id": "overlay_wielded_kp3at", "fg": 5228 }, - { "id": "overlay_wielded_kpf9", "fg": 5229 }, - { "id": "overlay_wielded_ksg-25", "fg": 5230 }, - { "id": "overlay_wielded_ksg", "fg": 5231 }, - { "id": "overlay_wielded_ksub2000", "fg": 5232 }, - { "id": "overlay_wielded_l_bak_223", "fg": 5233 }, - { "id": "overlay_wielded_laser_cannon", "fg": 5234 }, - { "id": "overlay_wielded_laser_rifle", "fg": 5235 }, - { "id": "overlay_wielded_launcher_simple", "fg": 5236 }, - { "id": "overlay_wielded_lemat_revolver", "fg": 5237 }, - { "id": "overlay_wielded_lever_shotgun", "fg": 5238 }, - { "id": "overlay_wielded_m11", "fg": 5240 }, - { "id": "overlay_wielded_m110a1", "fg": 5241 }, - { "id": "overlay_wielded_m14ebr", "fg": 5242 }, - { "id": "overlay_wielded_m17", "fg": 5245 }, - { "id": "overlay_wielded_m18", "fg": 5246 }, - { "id": "overlay_wielded_m1903", "fg": 5247 }, - { "id": "overlay_wielded_m1911-460", "fg": 5248 }, - { "id": "overlay_wielded_m1911_10", "fg": 5250 }, - { "id": "overlay_wielded_m1911_var_m1911_MEU", "fg": 5251 }, - { "id": "overlay_wielded_m1918", "fg": 5252 }, - { "id": "overlay_wielded_m1a", "fg": 5253 }, - { "id": "overlay_wielded_m2010", "fg": 5254 }, - { "id": "overlay_wielded_m202_flash", "fg": 5255 }, - { "id": "overlay_wielded_m231pfw", "fg": 5256 }, - { "id": "overlay_wielded_m240", "fg": 5257 }, - { "id": "overlay_wielded_m27_assault_rifle_var_h&k416a5", "fg": 5259 }, - { "id": "overlay_wielded_m27_assault_rifle_var_m27iar", "fg": 5260 }, - { "id": "overlay_wielded_m27_assault_rifle_var_m38dmr", "fg": 5261 }, - { "id": "overlay_wielded_m27_assault_rifle_var_scar_l", "fg": 5262 }, - { "id": "overlay_wielded_m2browning_sawn", "fg": 5263 }, - { "id": "overlay_wielded_m320", "fg": 5264 }, - { "id": "overlay_wielded_m3_carlgustav", "fg": 5265 }, - { "id": "overlay_wielded_m4_carbine_var_m4_cqbr", "fg": 5266 }, - { "id": "overlay_wielded_m4_carbine_var_m4a1", "fg": 5267 }, - { "id": "overlay_wielded_m4_carlgustav", "fg": 5268 }, - { "id": "overlay_wielded_m79", "fg": 5270 }, - { "id": "overlay_wielded_m9", "fg": 5271 }, - { "id": "overlay_wielded_mac_10", "fg": 5272 }, - { "id": "overlay_wielded_mac_11", "fg": 5273 }, - { "id": "overlay_wielded_makarov", "fg": 5274 }, - { "id": "overlay_wielded_marlin_9a", "fg": 5275 }, - { "id": "overlay_wielded_mauser_c96", "fg": 5276 }, - { "id": "overlay_wielded_mauser_m714", "fg": 5277 }, - { "id": "overlay_wielded_mgl", "fg": 5278 }, - { "id": "overlay_wielded_mininuke_launcher", "fg": 5279 }, - { "id": "overlay_wielded_minispeargun", "fg": 5280 }, - { "id": "overlay_wielded_model_10_revolver", "fg": 5281 }, - { "id": "overlay_wielded_mosin44", "fg": 5282 }, - { "id": "overlay_wielded_mosin44_ebr", "fg": 5283 }, - { "id": "overlay_wielded_mosin91_30", "fg": 5284 }, - { "id": "overlay_wielded_mosin91_30_ebr", "fg": 5285 }, - { "id": "overlay_wielded_moss_brownie", "fg": 5286 }, - { "id": "overlay_wielded_mossberg_500", "fg": 5287 }, - { "id": "overlay_wielded_mossberg_500_var_mossberg_500_security", "fg": 5288 }, - { "id": "overlay_wielded_mossberg_590", "fg": 5289 }, - { "id": "overlay_wielded_mossberg_590_var_SPAS_12", "fg": 5290 }, - { "id": "overlay_wielded_mossberg_930", "fg": 5291 }, - { "id": "overlay_wielded_mossberg_930_var_m1014", "fg": 5292 }, - { "id": "overlay_wielded_mp18", "fg": 5293 }, - { "id": "overlay_wielded_nailgun", "fg": 5295 }, - { "id": "overlay_wielded_nailrifle", "fg": 5296 }, - { "id": "overlay_wielded_needlegun", "fg": 5297 }, - { "id": "overlay_wielded_needlepistol", "fg": 5298 }, - { "id": "overlay_wielded_oa93", "fg": 5299 }, - { "id": "overlay_wielded_p08", "fg": 5300 }, - { "id": "overlay_wielded_p220_10", "fg": 5301 }, - { "id": "overlay_wielded_p226_357sig", "fg": 5302 }, - { "id": "overlay_wielded_p226_9mm", "fg": 5303 }, - { "id": "overlay_wielded_p320_357sig", "fg": 5304 }, - { "id": "overlay_wielded_paintballgun", "fg": 5305 }, - { "id": "overlay_wielded_pamd68", "fg": 5306 }, - { "id": "overlay_wielded_pamd71z", "fg": 5307 }, - { "id": "overlay_wielded_pipe_combination_gun", "fg": 5308 }, - { "id": "overlay_wielded_pipe_double_shotgun", "fg": 5309 }, - { "id": "overlay_wielded_pipe_shotgun", "fg": 5311 }, - { "id": "overlay_wielded_pistol_flintlock", "fg": 5312 }, - { "id": "overlay_wielded_plasma_gun", "fg": 5313 }, - { "id": "overlay_wielded_plasma_rifle", "fg": 5314 }, - { "id": "overlay_wielded_ppsh", "fg": 5315 }, - { "id": "overlay_wielded_px4", "fg": 5316 }, - { "id": "overlay_wielded_px4_40", "fg": 5317 }, - { "id": "overlay_wielded_raging_bull", "fg": 5318 }, - { "id": "overlay_wielded_raging_judge", "fg": 5319 }, - { "id": "overlay_wielded_rebar_rifle", "fg": 5320 }, - { "id": "overlay_wielded_remington700_270", "fg": 5321 }, - { "id": "overlay_wielded_remington_700", "fg": 5322 }, - { "id": "overlay_wielded_remington_870", "fg": 5323 }, - { "id": "overlay_wielded_remington_870_breacher", "fg": 5324 }, - { "id": "overlay_wielded_remington_870_express", "fg": 5325 }, - { "id": "overlay_wielded_remington_870_var_browning_a5", "fg": 5326 }, - { "id": "overlay_wielded_remington_870_var_remington_1100", "fg": 5327 }, - { "id": "overlay_wielded_revolver_shotgun", "fg": 5328 }, - { "id": "overlay_wielded_rm103a_pistol", "fg": 5329 }, - { "id": "overlay_wielded_rm120c", "fg": 5330 }, - { "id": "overlay_wielded_rm20", "fg": 5331 }, - { "id": "overlay_wielded_rm2000_smg", "fg": 5332 }, - { "id": "overlay_wielded_rm228", "fg": 5333 }, - { "id": "overlay_wielded_rm298", "fg": 5334 }, - { "id": "overlay_wielded_rm451_flamethrower", "fg": 5335 }, - { "id": "overlay_wielded_rm51_assault_rifle", "fg": 5336 }, - { "id": "overlay_wielded_rm614_lmg", "fg": 5337 }, - { "id": "overlay_wielded_rm802", "fg": 5338 }, - { "id": "overlay_wielded_rm88_battle_rifle", "fg": 5339 }, - { "id": "overlay_wielded_ruger_1022", "fg": 5340 }, - { "id": "overlay_wielded_ruger_lcr_22", "fg": 5341 }, - { "id": "overlay_wielded_ruger_lcr_38", "fg": 5342 }, - { "id": "overlay_wielded_ruger_mini", "fg": 5343 }, - { "id": "overlay_wielded_ruger_redhawk", "fg": 5344 }, - { "id": "overlay_wielded_rugerlcp", "fg": 5345 }, - { "id": "overlay_wielded_saiga_12", "fg": 5346 }, - { "id": "overlay_wielded_saiga_410", "fg": 5347 }, - { "id": "overlay_wielded_savage_111f", "fg": 5348 }, - { "id": "overlay_wielded_scar_h", "fg": 5349 }, - { "id": "overlay_wielded_sharps", "fg": 5350 }, - { "id": "overlay_wielded_shotgun_410", "fg": 5351 }, - { "id": "overlay_wielded_shotgun_d", "fg": 5352 }, - { "id": "overlay_wielded_shotgun_s", "fg": 5353 }, - { "id": "overlay_wielded_sig552", "fg": 5354 }, - { "id": "overlay_wielded_sig_40", "fg": 5355 }, - { "id": "overlay_wielded_sig_mcx_rattler_sbr", "fg": 5356 }, - { "id": "overlay_wielded_sig_mosquito", "fg": 5357 }, - { "id": "overlay_wielded_sig_p230", "fg": 5358 }, - { "id": "overlay_wielded_skorpion_61", "fg": 5359 }, - { "id": "overlay_wielded_skorpion_82", "fg": 5360 }, - { "id": "overlay_wielded_sks", "fg": 5361 }, - { "id": "overlay_wielded_smg_40", "fg": 5363 }, - { "id": "overlay_wielded_smg_45", "fg": 5364 }, - { "id": "overlay_wielded_smg_9mm", "fg": 5365 }, - { "id": "overlay_wielded_sp2022 - Copia", "fg": 5366 }, - { "id": "overlay_wielded_sp2022", "fg": 5367 }, - { "id": "overlay_wielded_speargun", "fg": 5368 }, - { "id": "overlay_wielded_sten", "fg": 5369 }, - { "id": "overlay_wielded_steyr_aug", "fg": 5370 }, - { "id": "overlay_wielded_streetsweeper", "fg": 5371 }, - { "id": "overlay_wielded_surv_hand_cannon", "fg": 5372 }, - { "id": "overlay_wielded_surv_rocket_launcher", "fg": 5373 }, - { "id": "overlay_wielded_surv_six_shooter", "fg": 5374 }, - { "id": "overlay_wielded_survivor_special_700", "fg": 5375 }, - { "id": "overlay_wielded_sw629", "fg": 5376 }, - { "id": "overlay_wielded_sw_22", "fg": 5377 }, - { "id": "overlay_wielded_sw_500", "fg": 5378 }, - { "id": "overlay_wielded_sw_610", "fg": 5379 }, - { "id": "overlay_wielded_sw_619", "fg": 5380 }, - { "id": "overlay_wielded_tac50", "fg": 5381 }, - { "id": "overlay_wielded_taurus_spectrum", "fg": 5382 }, - { "id": "overlay_wielded_tavor_12", "fg": 5383 }, - { "id": "overlay_wielded_tec9", "fg": 5384 }, - { "id": "overlay_wielded_tihar", "fg": 5385 }, - { "id": "overlay_wielded_tokarev", "fg": 5386 }, - { "id": "overlay_wielded_tommygun", "fg": 5387 }, - { "id": "overlay_wielded_trex_gun", "fg": 5388 }, - { "id": "overlay_wielded_triple_launcher_simple", "fg": 5389 }, - { "id": "overlay_wielded_unbio_blaster_gun", "fg": 5390 }, - { "id": "overlay_wielded_usp_45", "fg": 5391 }, - { "id": "overlay_wielded_usp_45_var_mk23", "fg": 5392 }, - { "id": "overlay_wielded_usp_9mm", "fg": 5393 }, - { "id": "overlay_wielded_uzi", "fg": 5394 }, - { "id": "overlay_wielded_v29", "fg": 5395 }, - { "id": "overlay_wielded_v29_cheap", "fg": 5396 }, - { "id": "overlay_wielded_walther_ccp", "fg": 5397 }, - { "id": "overlay_wielded_walther_p22", "fg": 5398 }, - { "id": "overlay_wielded_walther_p38", "fg": 5399 }, - { "id": "overlay_wielded_walther_ppq_40", "fg": 5400 }, - { "id": "overlay_wielded_walther_ppq_45", "fg": 5401 }, - { "id": "overlay_wielded_walther_ppq_9mm", "fg": 5402 }, - { "id": "overlay_wielded_weatherby_5", "fg": 5403 }, - { "id": "overlay_wielded_win70", "fg": 5404 }, - { "id": "overlay_wielded_winchester_1887", "fg": 5405 }, - { "id": "overlay_wielded_winchester_1897", "fg": 5406 }, - { "id": "overlay_wielded_witness_10", "fg": 5407 }, - { "id": "overlay_wielded_xd_10", "fg": 5408 }, - { "id": "overlay_wielded_brazier", "fg": 5436 }, - { "id": "overlay_wielded_cot", "fg": 5442 }, - { "id": "overlay_female_wielded_bat_nerf", "fg": 5443 }, - { "id": "overlay_female_wielded_golf_bag", "fg": 5444 }, - { "id": "overlay_male_wielded_bat_nerf", "fg": 5445 }, - { "id": "overlay_male_wielded_golf_bag", "fg": 5446 }, - { "id": "overlay_female_wielded_radio_car", "fg": 5447 }, - { "id": "overlay_female_wielded_radio_car_box", "fg": 5448 }, - { "id": "overlay_female_wielded_radio_car_on", "fg": 5449 }, - { "id": "overlay_female_wielded_radio_car_wheel", "fg": 5450 }, - { "id": "overlay_female_wielded_radiocontrol", "fg": 5451 }, - { "id": "overlay_female_wielded_rc_car_box", "fg": 5452 }, - { "id": "overlay_male_wielded_radio_car", "fg": 5453 }, - { "id": "overlay_male_wielded_radio_car_box", "fg": 5454 }, - { "id": "overlay_male_wielded_radio_car_on", "fg": 5455 }, - { "id": "overlay_male_wielded_radio_car_wheel", "fg": 5456 }, - { "id": "overlay_male_wielded_radiocontrol", "fg": 5457 }, - { "id": "overlay_male_wielded_rc_car_box", "fg": 5458 }, - { "id": "overlay_wielded_atomic_lamp", "fg": 5459 }, - { "id": "overlay_wielded_atomic_lamp_off", "fg": 5460 }, - { "id": "overlay_wielded_l-stick", "fg": 5461 }, - { "id": "overlay_wielded_l-stick_on", "fg": 5462 }, - { "id": "overlay_wielded_cattlefodder", "fg": 5466 }, - { "id": "overlay_wielded_bullet_crossbow", "fg": 5480 }, - { "id": "overlay_wielded_compcrossbow", "fg": 5481 }, - { "id": "overlay_wielded_compositecrossbow", "fg": 5482 }, - { "id": "overlay_wielded_crossbow", "fg": 5483 }, - { "id": "overlay_wielded_hand_crossbow", "fg": 5484 }, - { "id": "overlay_wielded_huge_crossbow", "fg": 5485 }, - { "id": "overlay_wielded_rep_crossbow", "fg": 5486 }, - { "id": "overlay_wielded_hoboreel", "fg": 5500 }, - { "id": "overlay_wielded_grenade", "fg": 5505 }, - { "id": "overlay_wielded_grenade_act", "fg": 5506 }, - { "id": "overlay_wielded_grenade_emp", "fg": 5507 }, - { "id": "overlay_wielded_grenade_emp_act", "fg": 5508 }, - { "id": "overlay_wielded_grenade_inc", "fg": 5509 }, - { "id": "overlay_wielded_grenade_inc_act", "fg": 5510 }, - { "id": "overlay_wielded_pipebomb", "fg": 5511 }, - { "id": "overlay_wielded_pipebomb_act", "fg": 5512 }, - { "id": "overlay_wielded_scrambler", "fg": 5513 }, - { "id": "overlay_wielded_scrambler_act", "fg": 5514 }, - { "id": "overlay_wielded_smokebomb", "fg": 5515 }, - { "id": "overlay_wielded_smokebomb_act", "fg": 5516 }, - { "id": "overlay_female_wielded_manhole_cover", "fg": 5554 }, - { "id": "overlay_male_wielded_manhole_cover", "fg": 5555 }, - { "id": "overlay_wielded_eyedrops", "fg": 5562 }, - { "id": "overlay_female_wielded_baseball", "fg": 5572 }, - { "id": "overlay_female_wielded_basketball", "fg": 5573 }, - { "id": "overlay_female_wielded_beach_volleyball", "fg": 5574 }, - { "id": "overlay_female_wielded_mre_beef_box", "fg": 5575 }, - { "id": "overlay_female_wielded_puck", "fg": 5576 }, - { "id": "overlay_male_wielded_baseball", "fg": 5577 }, - { "id": "overlay_male_wielded_basketball", "fg": 5578 }, - { "id": "overlay_male_wielded_beach_volleyball", "fg": 5579 }, - { "id": "overlay_male_wielded_mre_beef_box", "fg": 5580 }, - { "id": "overlay_male_wielded_puck", "fg": 5581 }, - { "id": "overlay_wielded_PR24-extended", "fg": 5582 }, - { "id": "overlay_wielded_PR24-retracted", "fg": 5583 }, - { "id": "overlay_wielded_baton-extended", "fg": 5584 }, - { "id": "overlay_wielded_baton", "fg": 5585 }, - { "id": "overlay_wielded_battery_car", "fg": 5586 }, - { "id": "overlay_wielded_bowling_ball", "fg": 5587 }, - { "id": "overlay_wielded_cell_phone", "fg": 5588 }, - { "id": "overlay_wielded_cell_phone_flashlight", "fg": 5589 }, - { "id": "overlay_wielded_codeine", "fg": 5590 }, - { "id": "overlay_wielded_flask_hip", "fg": 5591 }, - { "id": "overlay_wielded_football", "fg": 5592 }, - { "id": "overlay_wielded_golf_ball", "fg": 5593 }, - { "id": "overlay_wielded_indoor_volleyball", "fg": 5594 }, - { "id": "overlay_wielded_misc_repairkit", "fg": 5595 }, - { "id": "overlay_wielded_portable_game", "fg": 5596 }, - { "id": "overlay_wielded_two_way_radio", "fg": 5598 }, - { "id": "overlay_female_wielded_pool_cue", "fg": 5614 }, - { "id": "overlay_male_wielded_pool_cue", "fg": 5615 }, - { "id": "overlay_female_wielded_i_staff", "fg": 5623 }, - { "id": "overlay_female_wielded_q_staff", "fg": 5624 }, - { "id": "overlay_female_wielded_shock_staff", "fg": 5625 }, - { "id": "overlay_male_wielded_i_staff", "fg": 5626 }, - { "id": "overlay_male_wielded_q_staff", "fg": 5627 }, - { "id": "overlay_male_wielded_shock_staff", "fg": 5628 }, - { "id": "overlay_female_wielded_cigar", "fg": 5640 }, - { "id": "overlay_female_wielded_cigar_butt", "fg": 5641 }, - { "id": "overlay_male_wielded_cigar", "fg": 5649 }, - { "id": "overlay_male_wielded_cigar_butt", "fg": 5650 }, - { "id": "overlay_female_wielded_cig", "fg": 5658 }, - { "id": "overlay_female_wielded_cig_butt", "fg": 5659 }, - { "id": "overlay_male_wielded_cig", "fg": 5667 }, - { "id": "overlay_male_wielded_cig_butt", "fg": 5668 }, - { "id": "overlay_female_wielded_joint", "fg": 5676 }, - { "id": "overlay_female_wielded_joint_roach", "fg": 5684 }, - { "id": "overlay_male_wielded_joint", "fg": 5685 }, - { "id": "overlay_male_wielded_joint_roach", "fg": 5693 }, - { "id": "overlay_wielded_bokken", "fg": 5743 }, - { "id": "overlay_wielded_digging_stick", "fg": 5752 }, - { "id": "overlay_wielded_hoe", "fg": 5755 }, - { "id": "overlay_female_worn_aep_suit", "fg": 5863 }, - { "id": "overlay_female_worn_power_armor_basic", "fg": 5864 }, - { "id": "overlay_female_worn_power_armor_heavy", "fg": 5865 }, - { "id": "overlay_female_worn_power_armor_helmet_basic", "fg": 5866 }, - { "id": "overlay_female_worn_power_armor_helmet_heavy", "fg": 5867 }, - { "id": "overlay_female_worn_power_armor_helmet_light", "fg": 5868 }, - { "id": "overlay_female_worn_power_armor_light", "fg": 5869 }, - { "id": "overlay_female_worn_rm13_armor", "fg": 5870 }, - { "id": "overlay_female_worn_rm13_armor_on", "fg": 5871 }, - { "id": "overlay_male_worn_aep_suit", "fg": 5872 }, - { "id": "overlay_male_worn_power_armor_basic", "fg": 5873 }, - { "id": "overlay_male_worn_power_armor_heavy", "fg": 5874 }, - { "id": "overlay_male_worn_power_armor_helmet_basic", "fg": 5875 }, - { "id": "overlay_male_worn_power_armor_helmet_heavy", "fg": 5876 }, - { "id": "overlay_male_worn_power_armor_helmet_light", "fg": 5877 }, - { "id": "overlay_male_worn_power_armor_light", "fg": 5878 }, - { "id": "overlay_male_worn_rm13_armor", "fg": 5879 }, - { "id": "overlay_male_worn_rm13_armor_on", "fg": 5880 }, - { "id": "overlay_female_worn_chainmail_suit_faraday", "fg": 5895 }, - { "id": "overlay_female_worn_pot_helmet", "fg": 5896 }, - { "id": "overlay_male_worn_chainmail_suit_faraday", "fg": 5897 }, - { "id": "overlay_male_worn_pot_helmet", "fg": 5898 }, - { "id": "overlay_female_worn_duffelbag", "fg": 5919 }, - { "id": "overlay_female_worn_runner_bag", "fg": 5922 }, - { "id": "overlay_male_worn_duffelbag", "fg": 5923 }, - { "id": "overlay_male_worn_runner_bag", "fg": 5926 }, - { "id": "overlay_female_worn_chestrig", "fg": 5946 }, - { "id": "overlay_female_worn_grenadebandolier", "fg": 5947 }, - { "id": "overlay_female_worn_mbag", "fg": 5948 }, - { "id": "overlay_female_worn_slingpack", "fg": 5949 }, - { "id": "overlay_male_worn_chestrig", "fg": 5950 }, - { "id": "overlay_male_worn_grenadebandolier", "fg": 5951 }, - { "id": "overlay_male_worn_mbag", "fg": 5952 }, - { "id": "overlay_male_worn_slingpack", "fg": 5953 }, - { "id": "overlay_female_worn_subsuit_xl", "fg": 5974 }, - { "id": "overlay_male_worn_subsuit_xl", "fg": 5975 }, - { "id": "overlay_worn_wolfsuit", "fg": 5976 }, - { "id": "overlay_female_worn_chestwrap_leather", "fg": 6002 }, - { "id": "overlay_female_worn_tights", "fg": 6003 }, - { "id": "overlay_male_worn_chestwrap_leather", "fg": 6004 }, - { "id": "overlay_male_worn_tights", "fg": 6005 }, - { "id": "overlay_female_worn_copper_necklace", "fg": 6006 }, - { "id": "overlay_female_worn_gold_necklace", "fg": 6007 }, - { "id": "overlay_female_worn_platinum_necklace", "fg": 6008 }, - { "id": "overlay_female_worn_silver_necklace", "fg": 6009 }, - { "id": "overlay_male_worn_copper_necklace", "fg": 6010 }, - { "id": "overlay_male_worn_gold_necklace", "fg": 6011 }, - { "id": "overlay_male_worn_platinum_necklace", "fg": 6012 }, - { "id": "overlay_male_worn_silver_necklace", "fg": 6013 }, - { "id": "overlay_female_worn_nanoskirt", "fg": 6014 }, - { "id": "overlay_male_worn_nanoskirt", "fg": 6015 }, - { "id": "overlay_female_worn_motorbike_armor", "fg": 6016 }, - { "id": "overlay_male_worn_motorbike_armor", "fg": 6017 }, - { "id": "overlay_female_worn_headscarf", "fg": 6018 }, - { "id": "overlay_female_worn_long_knit_scarf", "fg": 6019 }, - { "id": "overlay_female_worn_long_patchwork_scarf", "fg": 6020 }, - { "id": "overlay_female_worn_marloss_scarf", "fg": 6021 }, - { "id": "overlay_female_worn_patchwork_scarf", "fg": 6022 }, - { "id": "overlay_female_worn_scarf_fur", "fg": 6023 }, - { "id": "overlay_female_worn_scarf_fur_long", "fg": 6024 }, - { "id": "overlay_male_worn_headscarf", "fg": 6025 }, - { "id": "overlay_male_worn_long_knit_scarf", "fg": 6026 }, - { "id": "overlay_male_worn_long_patchwork_scarf", "fg": 6027 }, - { "id": "overlay_male_worn_marloss_scarf", "fg": 6028 }, - { "id": "overlay_male_worn_patchwork_scarf", "fg": 6029 }, - { "id": "overlay_male_worn_scarf_fur", "fg": 6030 }, - { "id": "overlay_male_worn_scarf_fur_long", "fg": 6031 }, - { "id": "overlay_male_worn_scarf_long", "fg": 6032 }, - { "id": "overlay_female_worn_scuba_tank", "fg": 6043 }, - { "id": "overlay_female_worn_scuba_tank_on", "fg": 6044 }, - { "id": "overlay_female_worn_small_scuba_tank", "fg": 6045 }, - { "id": "overlay_female_worn_small_scuba_tank_on", "fg": 6046 }, - { "id": "overlay_female_worn_wetsuit", "fg": 6047 }, - { "id": "overlay_female_worn_wetsuit_gloves", "fg": 6048 }, - { "id": "overlay_female_worn_wetsuit_hood", "fg": 6049 }, - { "id": "overlay_female_worn_wetsuit_spring", "fg": 6050 }, - { "id": "overlay_male_worn_scuba_tank", "fg": 6051 }, - { "id": "overlay_male_worn_scuba_tank_on", "fg": 6052 }, - { "id": "overlay_male_worn_small_scuba_tank", "fg": 6053 }, - { "id": "overlay_male_worn_small_scuba_tank_on", "fg": 6054 }, - { "id": "overlay_male_worn_wetsuit", "fg": 6055 }, - { "id": "overlay_male_worn_wetsuit_gloves", "fg": 6056 }, - { "id": "overlay_male_worn_wetsuit_hood", "fg": 6057 }, - { "id": "overlay_male_worn_wetsuit_spring", "fg": 6058 }, - { "id": "overlay_worn_wetsuit_booties", "fg": 6059 }, - { "id": "overlay_female_worn_fitover_sunglasses", "fg": 6087 }, - { "id": "overlay_male_worn_fitover_sunglasses", "fg": 6088 }, - { "id": "overlay_female_worn_golf_bag", "fg": 6125 }, - { "id": "overlay_male_worn_golf_bag", "fg": 6126 }, - { "id": "overlay_female_worn_hat_chef", "fg": 6163 }, - { "id": "overlay_male_worn_hat_chef", "fg": 6164 }, - { "id": "overlay_female_worn_bead_ear", "fg": 6220 }, - { "id": "overlay_female_worn_copper_ear", "fg": 6221 }, - { "id": "overlay_female_worn_hairpin", "fg": 6223 }, - { "id": "overlay_male_worn_bead_ear", "fg": 6226 }, - { "id": "overlay_male_worn_copper_ear", "fg": 6227 }, - { "id": "overlay_male_worn_hairpin", "fg": 6229 }, - { "id": "overlay_female_worn_antarvasa", "fg": 6235 }, - { "id": "overlay_female_worn_kasaya", "fg": 6236 }, - { "id": "overlay_female_worn_samghati", "fg": 6237 }, - { "id": "overlay_female_worn_uttarasanga", "fg": 6238 }, - { "id": "overlay_male_worn_antarvasa", "fg": 6239 }, - { "id": "overlay_male_worn_kasaya", "fg": 6240 }, - { "id": "overlay_male_worn_samghati", "fg": 6241 }, - { "id": "overlay_male_worn_uttarasanga", "fg": 6242 }, - { "id": "overlay_female_worn_tourniquet_lower", "fg": 6285 }, - { "id": "overlay_female_worn_tourniquet_upper", "fg": 6286 }, - { "id": "overlay_female_worn_wristwatch", "fg": 6287 }, - { "id": "overlay_male_worn_tourniquet_lower", "fg": 6288 }, - { "id": "overlay_male_worn_tourniquet_upper", "fg": 6289 }, - { "id": "overlay_male_worn_wristwatch", "fg": 6290 }, - { "id": "overlay_worn_purse", "fg": 6291 }, - { "id": "overlay_worn_rad_badge", "fg": 6292 }, - { "id": "overlay_female_worn_survivor_goggles", "fg": 6406 }, - { "id": "overlay_male_worn_survivor_goggles", "fg": 6407 }, - { "id": "overlay_female_worn_survivor_duffel_bag", "fg": 6466 }, - { "id": "overlay_female_worn_survivor_pack", "fg": 6467 }, - { "id": "overlay_female_worn_survivor_rucksack", "fg": 6468 }, - { "id": "overlay_female_worn_survivor_runner_pack", "fg": 6469 }, - { "id": "overlay_male_worn_survivor_duffel_bag", "fg": 6470 }, - { "id": "overlay_male_worn_survivor_pack", "fg": 6471 }, - { "id": "overlay_male_worn_survivor_rucksack", "fg": 6472 }, - { "id": "overlay_male_worn_survivor_runner_pack", "fg": 6473 } + "fg": 6504 + }, + { "id": "overlay_worn_boots_h20survivor", "fg": 6513 }, + { "id": "overlay_female_worn_gloves_h20survivor", "fg": 6514 }, + { "id": "overlay_male_worn_gloves_h20survivor", "fg": 6515 }, + { "id": "overlay_female_worn_hood_h20survivor", "fg": 6516 }, + { "id": "overlay_male_worn_hood_h20survivor", "fg": 6517 }, + { "id": "overlay_female_worn_h20survivor_suit", "fg": 6518 }, + { "id": "overlay_male_worn_h20survivor_suit", "fg": 6519 }, + { "id": [ "overlay_worn_boots_lsurvivor", "overlay_worn_xl_boots_lsurvivor" ], "fg": 6532 }, + { "id": [ "overlay_female_worn_gloves_lsurvivor", "overlay_female_worn_xl_gloves_lsurvivor" ], "fg": 6537 }, + { "id": [ "overlay_male_worn_gloves_lsurvivor", "overlay_male_worn_xl_gloves_lsurvivor" ], "fg": 6538 }, + { "id": [ "overlay_female_worn_hood_lsurvivor", "overlay_female_worn_xl_hood_lsurvivor" ], "fg": 6539 }, + { "id": [ "overlay_male_worn_hood_lsurvivor", "overlay_male_worn_xl_hood_lsurvivor" ], "fg": 6540 }, + { "id": [ "overlay_female_worn_lsurvivor_suit", "overlay_female_worn_xl_lsurvivor_suit" ], "fg": 6541 }, + { "id": [ "overlay_male_worn_lsurvivor_suit", "overlay_male_worn_xl_lsurvivor_suit" ], "fg": 6542 }, + { "id": [ "overlay_female_worn_lsurvivor_armor", "overlay_female_worn_xl_lsurvivor_armor" ], "fg": 6533 }, + { "id": [ "overlay_male_worn_lsurvivor_armor", "overlay_male_worn_xl_lsurvivor_armor" ], "fg": 6534 }, + { "id": [ "overlay_female_worn_lsurvivor_pants", "overlay_female_worn_xl_lsurvivor_pants" ], "fg": 6535 }, + { "id": [ "overlay_male_worn_lsurvivor_pants", "overlay_male_worn_xl_lsurvivor_pants" ], "fg": 6536 }, + { "id": "overlay_female_worn_mask_hsurvivor", "fg": 6543 }, + { "id": "overlay_male_worn_mask_hsurvivor", "fg": 6544 }, + { "id": "overlay_female_worn_mask_lsurvivor", "fg": 6545 }, + { "id": "overlay_male_worn_mask_lsurvivor", "fg": 6546 }, + { "id": "overlay_female_worn_mask_fsurvivor", "fg": 6547 }, + { "id": "overlay_male_worn_mask_fsurvivor", "fg": 6548 }, + { "id": "overlay_female_worn_mask_fsurvivorxl", "fg": 6547 }, + { "id": "overlay_male_worn_mask_fsurvivorxl", "fg": 6548 }, + { "id": "overlay_female_worn_mask_survivor", "fg": 6549 }, + { "id": "overlay_male_worn_mask_survivor", "fg": 6550 }, + { "id": "overlay_female_worn_mask_survivorxl", "fg": 6549 }, + { "id": "overlay_male_worn_mask_survivorxl", "fg": 6550 }, + { "id": "overlay_female_worn_mask_wsurvivor", "fg": 6551 }, + { "id": "overlay_male_worn_mask_wsurvivor", "fg": 6552 }, + { "id": "overlay_female_worn_mask_wsurvivorxl", "fg": 6551 }, + { "id": "overlay_male_worn_mask_wsurvivorxl", "fg": 6552 }, + { "id": [ "overlay_worn_boots_wsurvivor", "overlay_worn_xl_boots_wsurvivor" ], "fg": 6565 }, + { "id": [ "overlay_female_worn_gloves_wsurvivor", "overlay_female_worn_xl_gloves_wsurvivor" ], "fg": 6566 }, + { "id": [ "overlay_male_worn_gloves_wsurvivor", "overlay_male_worn_xl_gloves_wsurvivor" ], "fg": 6567 }, + { "id": [ "overlay_female_worn_hood_wsurvivor", "overlay_female_worn_xl_hood_wsurvivor" ], "fg": 6568 }, + { "id": [ "overlay_male_worn_hood_wsurvivor", "overlay_male_worn_xl_hood_wsurvivor" ], "fg": 6569 }, + { "id": [ "overlay_female_worn_wsurvivor_suit", "overlay_female_worn_xl_wsurvivor_suit" ], "fg": 6570 }, + { "id": [ "overlay_male_worn_wsurvivor_suit", "overlay_male_worn_xl_wsurvivor_suit" ], "fg": 6571 }, + { "id": "overlay_female_worn_bikini_bottom", "fg": 6572 }, + { "id": "overlay_male_worn_bikini_bottom", "fg": 6573 }, + { "id": "overlay_female_worn_bikini_top", "fg": 6574 }, + { "id": "overlay_male_worn_bikini_top", "fg": 6575 }, + { "id": "overlay_female_worn_bikini_top_fur", "fg": 6576 }, + { "id": "overlay_male_worn_bikini_top_fur", "fg": 6577 }, + { "id": "overlay_female_worn_bikini_top_leather", "fg": 6578 }, + { "id": "overlay_male_worn_bikini_top_leather", "fg": 6579 }, + { "id": "overlay_female_worn_winter_pants_army", "fg": 6580 }, + { "id": "overlay_male_worn_winter_pants_army", "fg": 6581 }, + { "id": "overlay_female_worn_bunker_pants", "fg": 6582 }, + { "id": "overlay_male_worn_bunker_pants", "fg": 6583 }, + { "id": "overlay_female_worn_striped_pants", "fg": 6606 }, + { "id": "overlay_male_worn_striped_pants", "fg": 6607 }, + { "id": "overlay_female_worn_technician_pants_gray", "fg": 6608 }, + { "id": "overlay_male_worn_technician_pants_gray", "fg": 6609 }, + { "id": "overlay_female_worn_jeans", "fg": 6584 }, + { "id": "overlay_male_worn_jeans", "fg": 6585 }, + { "id": "overlay_female_worn_jeans_red", "fg": 6586 }, + { "id": "overlay_male_worn_jeans_red", "fg": 6587 }, + { "id": "overlay_female_worn_motorbike_pants", "fg": 6588 }, + { "id": "overlay_male_worn_motorbike_pants", "fg": 6589 }, + { "id": "overlay_female_worn_pants_army", "fg": 6590 }, + { "id": "overlay_male_worn_pants_army", "fg": 6591 }, + { "id": "overlay_female_worn_pants_cargo", "fg": 6592 }, + { "id": "overlay_male_worn_pants_cargo", "fg": 6593 }, + { "id": "overlay_female_worn_pants_checkered", "fg": 6594 }, + { "id": "overlay_male_worn_pants_checkered", "fg": 6595 }, + { "id": "overlay_female_worn_pants_faux_fur", "fg": 6597 }, + { "id": "overlay_male_worn_pants_faux_fur", "fg": 6598 }, + { "id": "overlay_female_worn_pants_fur", "fg": 6599 }, + { "id": "overlay_male_worn_pants_fur", "fg": 6600 }, + { "id": "overlay_female_worn_pants_leather", "fg": 6601 }, + { "id": "overlay_male_worn_pants_leather", "fg": 6602 }, + { "id": "overlay_female_worn_pants", "fg": 6596 }, + { "id": "overlay_male_worn_pants", "fg": 6603 }, + { "id": "overlay_female_worn_pants_ski", "fg": 6604 }, + { "id": "overlay_male_worn_pants_ski", "fg": 6605 }, + { "id": "overlay_female_worn_bra", "fg": 6614 }, + { "id": "overlay_male_worn_bra", "fg": 6615 }, + { "id": "overlay_female_worn_corset", "fg": 6616 }, + { "id": "overlay_male_worn_corset", "fg": 6617 }, + { "id": "overlay_male_worn_undershirt", "fg": 6631 }, + { "id": "overlay_female_worn_undershirt", "fg": 6630 }, + { "id": "overlay_female_worn_socks", "fg": 6624 }, + { "id": "overlay_male_worn_socks", "fg": 6625 }, + { "id": "overlay_female_worn_stockings", "fg": 6628 }, + { "id": "overlay_male_worn_stockings", "fg": 6629 }, + { "id": "overlay_worn_socks_wool", "fg": 6634 }, + { "id": "overlay_female_worn_sports_bra", "fg": 6626 }, + { "id": "overlay_male_worn_sports_bra", "fg": 6627 }, + { "id": "overlay_female_worn_boxer_briefs", "fg": 6610 }, + { "id": "overlay_male_worn_boxer_briefs", "fg": 6611 }, + { "id": "overlay_female_worn_boxer_shorts", "fg": 6612 }, + { "id": "overlay_male_worn_boxer_shorts", "fg": 6613 }, + { "id": "overlay_female_worn_long_underpants", "fg": 6618 }, + { "id": "overlay_male_worn_long_underpants", "fg": 6619 }, + { "id": "overlay_female_worn_long_undertop", "fg": 6620 }, + { "id": "overlay_male_worn_long_undertop", "fg": 6621 }, + { "id": "overlay_female_worn_panties", "fg": 6622 }, + { "id": "overlay_male_worn_panties", "fg": 6623 }, + { "id": "overlay_female_worn_union_suit", "fg": 6632 }, + { "id": "overlay_male_worn_union_suit", "fg": 6633 }, + { "id": "overlay_male_worn_blanket", "fg": 6636 }, + { "id": "overlay_female_worn_blanket", "fg": 6635 }, + { "id": "overlay_male_worn_down_blanket", "fg": 6638 }, + { "id": "overlay_female_worn_down_blanket", "fg": 6637 }, + { "id": "overlay_female_worn_electric_blanket", "fg": 6639 }, + { "id": "overlay_male_worn_electric_blanket", "fg": 6640 }, + { "id": "overlay_female_worn_towel", "fg": 6641 }, + { "id": "overlay_male_worn_towel", "fg": 6642 }, + { "id": "overlay_female_worn_towel_wet", "fg": 6641 }, + { "id": "overlay_male_worn_towel_wet", "fg": 6642 }, + { "id": "overlay_female_worn_towel_soiled", "fg": 6641 }, + { "id": "overlay_male_worn_towel_soiled", "fg": 6642 }, + { "id": "overlay_mutation_bio_blaster", "fg": 4945 }, + { "id": "overlay_effect_attention", "fg": 4946 }, + { "id": "overlay_effect_boomered", "fg": 4947 }, + { "id": "overlay_effect_glare", "fg": 4948 }, + { "id": "overlay_effect_laserlocked", "fg": 4949 }, + { "id": "overlay_female_mutation_ARM_TENTACLES", "fg": 5074 }, + { "id": "overlay_male_mutation_ARM_TENTACLES", "fg": 5075 }, + { "id": "overlay_female_mutation_ARM_TENTACLES_4", "fg": 5076 }, + { "id": "overlay_male_mutation_ARM_TENTACLES_4", "fg": 5077 }, + { "id": "overlay_female_mutation_ARM_TENTACLES_8", "fg": 5078 }, + { "id": "overlay_male_mutation_ARM_TENTACLES_8", "fg": 5079 }, + { "id": "overlay_female_mutation_CANINE_EARS", "fg": 5088 }, + { "id": "overlay_male_mutation_CANINE_EARS", "fg": 5089 }, + { "id": "overlay_female_mutation_FEL_EYE", "fg": 5092 }, + { "id": "overlay_male_mutation_FEL_EYE", "fg": 5093 }, + { "id": "overlay_female_mutation_FELINE_EARS", "fg": 5094 }, + { "id": "overlay_male_mutation_FELINE_EARS", "fg": 5095 }, + { "id": "overlay_female_mutation_HORNS", "fg": 5096 }, + { "id": "overlay_male_mutation_HORNS", "fg": 5097 }, + { "id": "overlay_female_mutation_HORNS_CURLED", "fg": 5098 }, + { "id": "overlay_male_mutation_HORNS_CURLED", "fg": 5099 }, + { "id": "overlay_female_mutation_LUPINE_EARS", "fg": 5104 }, + { "id": "overlay_male_mutation_LUPINE_EARS", "fg": 5105 }, + { "id": "overlay_female_mutation_LYNX_FUR", "fg": 5106 }, + { "id": "overlay_male_mutation_LYNX_FUR", "fg": 5107 }, + { "id": "overlay_female_mutation_MINOTAUR", "fg": 5108 }, + { "id": "overlay_male_mutation_MINOTAUR", "fg": 5109 }, + { "id": "overlay_female_mutation_MOUTH_TENTACLES", "fg": 5110 }, + { "id": "overlay_male_mutation_MOUTH_TENTACLES", "fg": 5111 }, + { "id": "overlay_female_mutation_SHELL", "fg": 5118 }, + { "id": "overlay_male_mutation_SHELL", "fg": 5119 }, + { "id": "overlay_female_mutation_TAIL_CATTLE", "fg": 5120 }, + { "id": "overlay_male_mutation_TAIL_CATTLE", "fg": 5121 }, + { "id": "overlay_female_mutation_TAIL_FLUFFY", "fg": 5122 }, + { "id": "overlay_male_mutation_TAIL_FLUFFY", "fg": 5123 }, + { "id": "overlay_female_mutation_TAIL_LONG", "fg": 5124 }, + { "id": "overlay_male_mutation_TAIL_LONG", "fg": 5125 }, + { "id": "overlay_female_mutation_WHISKERS", "fg": 5132 }, + { "id": "overlay_male_mutation_WHISKERS", "fg": 5133 }, + { "id": "overlay_female_mutation_FELINE_FUR", "fg": 5145 }, + { "id": "overlay_female_mutation_FUR", "fg": 5146 }, + { "id": "overlay_male_mutation_FELINE_FUR", "fg": 5148 }, + { "id": "overlay_male_mutation_FUR", "fg": 5149 }, + { "id": "overlay_female_wielded_clay_teapot", "fg": 5204 }, + { "id": "overlay_female_worn_harmonica_holder", "fg": 5205 }, + { "id": "overlay_male_wielded_clay_teapot", "fg": 5206 }, + { "id": "overlay_male_worn_harmonica_holder", "fg": 5207 }, + { "id": "overlay_wielded_banjo", "fg": 5209 }, + { "id": "overlay_wielded_bodypillow", "fg": 5210 }, + { "id": "overlay_wielded_clay_pot", "fg": 5211 }, + { "id": "overlay_wielded_guitar_electric", "fg": 5212 }, + { "id": "overlay_wielded_laptop", "fg": 5213 }, + { "id": "overlay_wielded_makeshift_hammer", "fg": 5214 }, + { "id": "overlay_wielded_pot_makeshift", "fg": 5215 }, + { "id": "overlay_wielded_pot_makeshift_copper", "fg": 5216 }, + { "id": "overlay_wielded_tazer", "fg": 5217 }, + { "id": "overlay_wielded_1895sbl", "fg": 5221 }, + { "id": "overlay_wielded_2_shot_special", "fg": 5222 }, + { "id": "overlay_wielded_90two", "fg": 5223 }, + { "id": "overlay_wielded_90two40", "fg": 5224 }, + { "id": "overlay_wielded_AT4", "fg": 5225 }, + { "id": "overlay_wielded_LAW", "fg": 5226 }, + { "id": "overlay_wielded_LAW_Packed", "fg": 5227 }, + { "id": "overlay_wielded_M24", "fg": 5228 }, + { "id": "overlay_wielded_RPG", "fg": 5229 }, + { "id": "overlay_wielded_TDI", "fg": 5230 }, + { "id": "overlay_wielded_USAS_12", "fg": 5231 }, + { "id": "overlay_wielded_af2011a1_38super", "fg": 5232 }, + { "id": "overlay_wielded_airspeargun", "fg": 5233 }, + { "id": "overlay_wielded_ak74", "fg": 5235 }, + { "id": "overlay_wielded_american_180", "fg": 5236 }, + { "id": "overlay_wielded_an94", "fg": 5237 }, + { "id": "overlay_wielded_ar10", "fg": 5238 }, + { "id": "overlay_wielded_ar15", "fg": 5239 }, + { "id": "overlay_wielded_ar_pistol", "fg": 5240 }, + { "id": "overlay_wielded_arx160", "fg": 5241 }, + { "id": "overlay_wielded_ashot", "fg": 5242 }, + { "id": "overlay_wielded_atgm_launcher", "fg": 5243 }, + { "id": "overlay_wielded_bbgun", "fg": 5244 }, + { "id": "overlay_wielded_bfr", "fg": 5245 }, + { "id": "overlay_wielded_bh_m89", "fg": 5246 }, + { "id": "overlay_wielded_bigun", "fg": 5247 }, + { "id": "overlay_wielded_blunderbuss", "fg": 5248 }, + { "id": "overlay_wielded_bond_410", "fg": 5249 }, + { "id": "overlay_wielded_browning_blr", "fg": 5250 }, + { "id": "overlay_wielded_bt_apc9k", "fg": 5251 }, + { "id": "overlay_wielded_chemical_thrower", "fg": 5253 }, + { "id": "overlay_wielded_coilgun", "fg": 5254 }, + { "id": "overlay_wielded_colt_army", "fg": 5255 }, + { "id": "overlay_wielded_colt_lightning", "fg": 5256 }, + { "id": "overlay_wielded_colt_navy", "fg": 5257 }, + { "id": "overlay_wielded_colt_ro635", "fg": 5258 }, + { "id": "overlay_wielded_colt_saa", "fg": 5259 }, + { "id": "overlay_wielded_combination_gun", "fg": 5260 }, + { "id": "overlay_wielded_cop_38", "fg": 5261 }, + { "id": "overlay_wielded_cx4", "fg": 5262 }, + { "id": "overlay_wielded_cz75", "fg": 5263 }, + { "id": "overlay_wielded_deagle_44", "fg": 5264 }, + { "id": "overlay_wielded_doublespeargun", "fg": 5265 }, + { "id": "overlay_wielded_draco", "fg": 5266 }, + { "id": "overlay_wielded_emp_gun", "fg": 5267 }, + { "id": "overlay_wielded_famas", "fg": 5268 }, + { "id": "overlay_wielded_flamethrower", "fg": 5269 }, + { "id": "overlay_wielded_flamethrower_crude", "fg": 5270 }, + { "id": "overlay_wielded_flamethrower_simple", "fg": 5271 }, + { "id": "overlay_wielded_flaregun", "fg": 5272 }, + { "id": "overlay_wielded_fn1910", "fg": 5273 }, + { "id": "overlay_wielded_fn57", "fg": 5274 }, + { "id": "overlay_wielded_fn_fal", "fg": 5275 }, + { "id": "overlay_wielded_fn_p90", "fg": 5276 }, + { "id": "overlay_wielded_fs2000", "fg": 5277 }, + { "id": "overlay_wielded_ftk93", "fg": 5278 }, + { "id": "overlay_wielded_garand", "fg": 5279 }, + { "id": "overlay_wielded_glock_17", "fg": 5280 }, + { "id": "overlay_wielded_glock_18c", "fg": 5281 }, + { "id": "overlay_wielded_glock_19", "fg": 5282 }, + { "id": "overlay_wielded_glock_20", "fg": 5283 }, + { "id": "overlay_wielded_glock_20_var_glock_40", "fg": 5284 }, + { "id": "overlay_wielded_glock_21", "fg": 5285 }, + { "id": "overlay_wielded_glock_22", "fg": 5286 }, + { "id": "overlay_wielded_glock_29", "fg": 5287 }, + { "id": "overlay_wielded_glock_31", "fg": 5288 }, + { "id": "overlay_wielded_heavy_rail_rifle", "fg": 5289 }, + { "id": "overlay_wielded_helsing", "fg": 5290 }, + { "id": "overlay_wielded_henry_big_boy", "fg": 5291 }, + { "id": "overlay_wielded_hi_power_40", "fg": 5292 }, + { "id": "overlay_wielded_hi_power_9mm", "fg": 5293 }, + { "id": "overlay_wielded_hk417_13", "fg": 5294 }, + { "id": "overlay_wielded_hk_g3", "fg": 5295 }, + { "id": "overlay_wielded_hk_g36", "fg": 5296 }, + { "id": "overlay_wielded_hk_g80", "fg": 5297 }, + { "id": "overlay_wielded_hk_mp5_semi_pistol", "fg": 5299 }, + { "id": "overlay_wielded_hk_mp5k", "fg": 5300 }, + { "id": "overlay_wielded_hk_mp5sd", "fg": 5301 }, + { "id": "overlay_wielded_hk_mp7", "fg": 5302 }, + { "id": "overlay_wielded_hk_ump45", "fg": 5303 }, + { "id": "overlay_wielded_hptc9", "fg": 5304 }, + { "id": "overlay_wielded_hptcf380", "fg": 5305 }, + { "id": "overlay_wielded_iwi_tavor_x95_300blk", "fg": 5307 }, + { "id": "overlay_wielded_kp32", "fg": 5308 }, + { "id": "overlay_wielded_kp3at", "fg": 5309 }, + { "id": "overlay_wielded_kpf9", "fg": 5310 }, + { "id": "overlay_wielded_ksg-25", "fg": 5311 }, + { "id": "overlay_wielded_ksg", "fg": 5312 }, + { "id": "overlay_wielded_ksub2000", "fg": 5313 }, + { "id": "overlay_wielded_l_bak_223", "fg": 5314 }, + { "id": "overlay_wielded_laser_cannon", "fg": 5315 }, + { "id": "overlay_wielded_laser_rifle", "fg": 5316 }, + { "id": "overlay_wielded_launcher_simple", "fg": 5317 }, + { "id": "overlay_wielded_lemat_revolver", "fg": 5318 }, + { "id": "overlay_wielded_lever_shotgun", "fg": 5319 }, + { "id": "overlay_wielded_m11", "fg": 5321 }, + { "id": "overlay_wielded_m110a1", "fg": 5322 }, + { "id": "overlay_wielded_m14ebr", "fg": 5323 }, + { "id": "overlay_wielded_m17", "fg": 5326 }, + { "id": "overlay_wielded_m18", "fg": 5327 }, + { "id": "overlay_wielded_m1903", "fg": 5328 }, + { "id": "overlay_wielded_m1911-460", "fg": 5329 }, + { "id": "overlay_wielded_m1911_10", "fg": 5331 }, + { "id": "overlay_wielded_m1911_var_m1911_MEU", "fg": 5332 }, + { "id": "overlay_wielded_m1918", "fg": 5333 }, + { "id": "overlay_wielded_m1a", "fg": 5334 }, + { "id": "overlay_wielded_m2010", "fg": 5335 }, + { "id": "overlay_wielded_m202_flash", "fg": 5336 }, + { "id": "overlay_wielded_m231pfw", "fg": 5337 }, + { "id": "overlay_wielded_m240", "fg": 5338 }, + { "id": "overlay_wielded_m27_assault_rifle_var_h&k416a5", "fg": 5340 }, + { "id": "overlay_wielded_m27_assault_rifle_var_m27iar", "fg": 5341 }, + { "id": "overlay_wielded_m27_assault_rifle_var_m38dmr", "fg": 5342 }, + { "id": "overlay_wielded_m27_assault_rifle_var_scar_l", "fg": 5343 }, + { "id": "overlay_wielded_m2browning_sawn", "fg": 5344 }, + { "id": "overlay_wielded_m320", "fg": 5345 }, + { "id": "overlay_wielded_m3_carlgustav", "fg": 5346 }, + { "id": "overlay_wielded_m4_carbine_var_m4_cqbr", "fg": 5347 }, + { "id": "overlay_wielded_m4_carbine_var_m4a1", "fg": 5348 }, + { "id": "overlay_wielded_m4_carlgustav", "fg": 5349 }, + { "id": "overlay_wielded_m79", "fg": 5351 }, + { "id": "overlay_wielded_m9", "fg": 5352 }, + { "id": "overlay_wielded_mac_10", "fg": 5353 }, + { "id": "overlay_wielded_mac_11", "fg": 5354 }, + { "id": "overlay_wielded_makarov", "fg": 5355 }, + { "id": "overlay_wielded_marlin_9a", "fg": 5356 }, + { "id": "overlay_wielded_mauser_c96", "fg": 5357 }, + { "id": "overlay_wielded_mauser_m714", "fg": 5358 }, + { "id": "overlay_wielded_mgl", "fg": 5359 }, + { "id": "overlay_wielded_mininuke_launcher", "fg": 5360 }, + { "id": "overlay_wielded_minispeargun", "fg": 5361 }, + { "id": "overlay_wielded_model_10_revolver", "fg": 5362 }, + { "id": "overlay_wielded_mosin44", "fg": 5363 }, + { "id": "overlay_wielded_mosin44_ebr", "fg": 5364 }, + { "id": "overlay_wielded_mosin91_30", "fg": 5365 }, + { "id": "overlay_wielded_mosin91_30_ebr", "fg": 5366 }, + { "id": "overlay_wielded_moss_brownie", "fg": 5367 }, + { "id": "overlay_wielded_mossberg_500", "fg": 5368 }, + { "id": "overlay_wielded_mossberg_500_var_mossberg_500_security", "fg": 5369 }, + { "id": "overlay_wielded_mossberg_590", "fg": 5370 }, + { "id": "overlay_wielded_mossberg_590_var_SPAS_12", "fg": 5371 }, + { "id": "overlay_wielded_mossberg_930", "fg": 5372 }, + { "id": "overlay_wielded_mossberg_930_var_m1014", "fg": 5373 }, + { "id": "overlay_wielded_mp18", "fg": 5374 }, + { "id": "overlay_wielded_nailgun", "fg": 5376 }, + { "id": "overlay_wielded_nailrifle", "fg": 5377 }, + { "id": "overlay_wielded_needlegun", "fg": 5378 }, + { "id": "overlay_wielded_needlepistol", "fg": 5379 }, + { "id": "overlay_wielded_oa93", "fg": 5380 }, + { "id": "overlay_wielded_p08", "fg": 5381 }, + { "id": "overlay_wielded_p220_10", "fg": 5382 }, + { "id": "overlay_wielded_p226_357sig", "fg": 5383 }, + { "id": "overlay_wielded_p226_9mm", "fg": 5384 }, + { "id": "overlay_wielded_p320_357sig", "fg": 5385 }, + { "id": "overlay_wielded_paintballgun", "fg": 5386 }, + { "id": "overlay_wielded_pamd68", "fg": 5387 }, + { "id": "overlay_wielded_pamd71z", "fg": 5388 }, + { "id": "overlay_wielded_pipe_combination_gun", "fg": 5389 }, + { "id": "overlay_wielded_pipe_double_shotgun", "fg": 5390 }, + { "id": "overlay_wielded_pipe_shotgun", "fg": 5392 }, + { "id": "overlay_wielded_pistol_flintlock", "fg": 5393 }, + { "id": "overlay_wielded_plasma_gun", "fg": 5394 }, + { "id": "overlay_wielded_plasma_rifle", "fg": 5395 }, + { "id": "overlay_wielded_ppsh", "fg": 5396 }, + { "id": "overlay_wielded_px4", "fg": 5397 }, + { "id": "overlay_wielded_px4_40", "fg": 5398 }, + { "id": "overlay_wielded_raging_bull", "fg": 5399 }, + { "id": "overlay_wielded_raging_judge", "fg": 5400 }, + { "id": "overlay_wielded_rebar_rifle", "fg": 5401 }, + { "id": "overlay_wielded_remington700_270", "fg": 5402 }, + { "id": "overlay_wielded_remington_700", "fg": 5403 }, + { "id": "overlay_wielded_remington_870", "fg": 5404 }, + { "id": "overlay_wielded_remington_870_breacher", "fg": 5405 }, + { "id": "overlay_wielded_remington_870_express", "fg": 5406 }, + { "id": "overlay_wielded_remington_870_var_browning_a5", "fg": 5407 }, + { "id": "overlay_wielded_remington_870_var_remington_1100", "fg": 5408 }, + { "id": "overlay_wielded_revolver_shotgun", "fg": 5409 }, + { "id": "overlay_wielded_rm103a_pistol", "fg": 5410 }, + { "id": "overlay_wielded_rm120c", "fg": 5411 }, + { "id": "overlay_wielded_rm20", "fg": 5412 }, + { "id": "overlay_wielded_rm2000_smg", "fg": 5413 }, + { "id": "overlay_wielded_rm228", "fg": 5414 }, + { "id": "overlay_wielded_rm298", "fg": 5415 }, + { "id": "overlay_wielded_rm451_flamethrower", "fg": 5416 }, + { "id": "overlay_wielded_rm51_assault_rifle", "fg": 5417 }, + { "id": "overlay_wielded_rm614_lmg", "fg": 5418 }, + { "id": "overlay_wielded_rm802", "fg": 5419 }, + { "id": "overlay_wielded_rm88_battle_rifle", "fg": 5420 }, + { "id": "overlay_wielded_ruger_1022", "fg": 5421 }, + { "id": "overlay_wielded_ruger_lcr_22", "fg": 5422 }, + { "id": "overlay_wielded_ruger_lcr_38", "fg": 5423 }, + { "id": "overlay_wielded_ruger_mini", "fg": 5424 }, + { "id": "overlay_wielded_ruger_redhawk", "fg": 5425 }, + { "id": "overlay_wielded_rugerlcp", "fg": 5426 }, + { "id": "overlay_wielded_saiga_12", "fg": 5427 }, + { "id": "overlay_wielded_saiga_410", "fg": 5428 }, + { "id": "overlay_wielded_savage_111f", "fg": 5429 }, + { "id": "overlay_wielded_scar_h", "fg": 5430 }, + { "id": "overlay_wielded_sharps", "fg": 5431 }, + { "id": "overlay_wielded_shotgun_410", "fg": 5432 }, + { "id": "overlay_wielded_shotgun_d", "fg": 5433 }, + { "id": "overlay_wielded_shotgun_s", "fg": 5434 }, + { "id": "overlay_wielded_sig552", "fg": 5435 }, + { "id": "overlay_wielded_sig_40", "fg": 5436 }, + { "id": "overlay_wielded_sig_mcx_rattler_sbr", "fg": 5437 }, + { "id": "overlay_wielded_sig_mosquito", "fg": 5438 }, + { "id": "overlay_wielded_sig_p230", "fg": 5439 }, + { "id": "overlay_wielded_skorpion_61", "fg": 5440 }, + { "id": "overlay_wielded_skorpion_82", "fg": 5441 }, + { "id": "overlay_wielded_sks", "fg": 5442 }, + { "id": "overlay_wielded_smg_40", "fg": 5444 }, + { "id": "overlay_wielded_smg_45", "fg": 5445 }, + { "id": "overlay_wielded_smg_9mm", "fg": 5446 }, + { "id": "overlay_wielded_sp2022 - Copia", "fg": 5447 }, + { "id": "overlay_wielded_sp2022", "fg": 5448 }, + { "id": "overlay_wielded_speargun", "fg": 5449 }, + { "id": "overlay_wielded_sten", "fg": 5450 }, + { "id": "overlay_wielded_steyr_aug", "fg": 5451 }, + { "id": "overlay_wielded_streetsweeper", "fg": 5452 }, + { "id": "overlay_wielded_surv_hand_cannon", "fg": 5453 }, + { "id": "overlay_wielded_surv_rocket_launcher", "fg": 5454 }, + { "id": "overlay_wielded_surv_six_shooter", "fg": 5455 }, + { "id": "overlay_wielded_survivor_special_700", "fg": 5456 }, + { "id": "overlay_wielded_sw629", "fg": 5457 }, + { "id": "overlay_wielded_sw_22", "fg": 5458 }, + { "id": "overlay_wielded_sw_500", "fg": 5459 }, + { "id": "overlay_wielded_sw_610", "fg": 5460 }, + { "id": "overlay_wielded_sw_619", "fg": 5461 }, + { "id": "overlay_wielded_tac50", "fg": 5462 }, + { "id": "overlay_wielded_taurus_spectrum", "fg": 5463 }, + { "id": "overlay_wielded_tavor_12", "fg": 5464 }, + { "id": "overlay_wielded_tec9", "fg": 5465 }, + { "id": "overlay_wielded_tihar", "fg": 5466 }, + { "id": "overlay_wielded_tokarev", "fg": 5467 }, + { "id": "overlay_wielded_tommygun", "fg": 5468 }, + { "id": "overlay_wielded_trex_gun", "fg": 5469 }, + { "id": "overlay_wielded_triple_launcher_simple", "fg": 5470 }, + { "id": "overlay_wielded_unbio_blaster_gun", "fg": 5471 }, + { "id": "overlay_wielded_usp_45", "fg": 5472 }, + { "id": "overlay_wielded_usp_45_var_mk23", "fg": 5473 }, + { "id": "overlay_wielded_usp_9mm", "fg": 5474 }, + { "id": "overlay_wielded_uzi", "fg": 5475 }, + { "id": "overlay_wielded_v29", "fg": 5476 }, + { "id": "overlay_wielded_v29_cheap", "fg": 5477 }, + { "id": "overlay_wielded_walther_ccp", "fg": 5478 }, + { "id": "overlay_wielded_walther_p22", "fg": 5479 }, + { "id": "overlay_wielded_walther_p38", "fg": 5480 }, + { "id": "overlay_wielded_walther_ppq_40", "fg": 5481 }, + { "id": "overlay_wielded_walther_ppq_45", "fg": 5482 }, + { "id": "overlay_wielded_walther_ppq_9mm", "fg": 5483 }, + { "id": "overlay_wielded_weatherby_5", "fg": 5484 }, + { "id": "overlay_wielded_win70", "fg": 5485 }, + { "id": "overlay_wielded_winchester_1887", "fg": 5486 }, + { "id": "overlay_wielded_winchester_1897", "fg": 5487 }, + { "id": "overlay_wielded_witness_10", "fg": 5488 }, + { "id": "overlay_wielded_xd_10", "fg": 5489 }, + { "id": "overlay_wielded_brazier", "fg": 5517 }, + { "id": "overlay_wielded_cot", "fg": 5523 }, + { "id": "overlay_female_wielded_bat_nerf", "fg": 5524 }, + { "id": "overlay_female_wielded_golf_bag", "fg": 5525 }, + { "id": "overlay_male_wielded_bat_nerf", "fg": 5526 }, + { "id": "overlay_male_wielded_golf_bag", "fg": 5527 }, + { "id": "overlay_female_wielded_radio_car", "fg": 5528 }, + { "id": "overlay_female_wielded_radio_car_box", "fg": 5529 }, + { "id": "overlay_female_wielded_radio_car_on", "fg": 5530 }, + { "id": "overlay_female_wielded_radio_car_wheel", "fg": 5531 }, + { "id": "overlay_female_wielded_radiocontrol", "fg": 5532 }, + { "id": "overlay_female_wielded_rc_car_box", "fg": 5533 }, + { "id": "overlay_male_wielded_radio_car", "fg": 5534 }, + { "id": "overlay_male_wielded_radio_car_box", "fg": 5535 }, + { "id": "overlay_male_wielded_radio_car_on", "fg": 5536 }, + { "id": "overlay_male_wielded_radio_car_wheel", "fg": 5537 }, + { "id": "overlay_male_wielded_radiocontrol", "fg": 5538 }, + { "id": "overlay_male_wielded_rc_car_box", "fg": 5539 }, + { "id": "overlay_wielded_atomic_lamp", "fg": 5540 }, + { "id": "overlay_wielded_atomic_lamp_off", "fg": 5541 }, + { "id": "overlay_wielded_l-stick", "fg": 5542 }, + { "id": "overlay_wielded_l-stick_on", "fg": 5543 }, + { "id": "overlay_wielded_cattlefodder", "fg": 5547 }, + { "id": "overlay_wielded_bullet_crossbow", "fg": 5561 }, + { "id": "overlay_wielded_compcrossbow", "fg": 5562 }, + { "id": "overlay_wielded_compositecrossbow", "fg": 5563 }, + { "id": "overlay_wielded_crossbow", "fg": 5564 }, + { "id": "overlay_wielded_hand_crossbow", "fg": 5565 }, + { "id": "overlay_wielded_huge_crossbow", "fg": 5566 }, + { "id": "overlay_wielded_rep_crossbow", "fg": 5567 }, + { "id": "overlay_wielded_hoboreel", "fg": 5581 }, + { "id": "overlay_wielded_grenade", "fg": 5586 }, + { "id": "overlay_wielded_grenade_act", "fg": 5587 }, + { "id": "overlay_wielded_grenade_emp", "fg": 5588 }, + { "id": "overlay_wielded_grenade_emp_act", "fg": 5589 }, + { "id": "overlay_wielded_grenade_inc", "fg": 5590 }, + { "id": "overlay_wielded_grenade_inc_act", "fg": 5591 }, + { "id": "overlay_wielded_pipebomb", "fg": 5592 }, + { "id": "overlay_wielded_pipebomb_act", "fg": 5593 }, + { "id": "overlay_wielded_scrambler", "fg": 5594 }, + { "id": "overlay_wielded_scrambler_act", "fg": 5595 }, + { "id": "overlay_wielded_smokebomb", "fg": 5596 }, + { "id": "overlay_wielded_smokebomb_act", "fg": 5597 }, + { "id": "overlay_female_wielded_manhole_cover", "fg": 5635 }, + { "id": "overlay_male_wielded_manhole_cover", "fg": 5636 }, + { "id": "overlay_wielded_eyedrops", "fg": 5643 }, + { "id": "overlay_female_wielded_baseball", "fg": 5653 }, + { "id": "overlay_female_wielded_basketball", "fg": 5654 }, + { "id": "overlay_female_wielded_beach_volleyball", "fg": 5655 }, + { "id": "overlay_female_wielded_mre_beef_box", "fg": 5656 }, + { "id": "overlay_female_wielded_puck", "fg": 5657 }, + { "id": "overlay_male_wielded_baseball", "fg": 5658 }, + { "id": "overlay_male_wielded_basketball", "fg": 5659 }, + { "id": "overlay_male_wielded_beach_volleyball", "fg": 5660 }, + { "id": "overlay_male_wielded_mre_beef_box", "fg": 5661 }, + { "id": "overlay_male_wielded_puck", "fg": 5662 }, + { "id": "overlay_wielded_PR24-extended", "fg": 5663 }, + { "id": "overlay_wielded_PR24-retracted", "fg": 5664 }, + { "id": "overlay_wielded_baton-extended", "fg": 5665 }, + { "id": "overlay_wielded_baton", "fg": 5666 }, + { "id": "overlay_wielded_battery_car", "fg": 5667 }, + { "id": "overlay_wielded_bowling_ball", "fg": 5668 }, + { "id": "overlay_wielded_cell_phone", "fg": 5669 }, + { "id": "overlay_wielded_cell_phone_flashlight", "fg": 5670 }, + { "id": "overlay_wielded_codeine", "fg": 5671 }, + { "id": "overlay_wielded_flask_hip", "fg": 5672 }, + { "id": "overlay_wielded_football", "fg": 5673 }, + { "id": "overlay_wielded_golf_ball", "fg": 5674 }, + { "id": "overlay_wielded_indoor_volleyball", "fg": 5675 }, + { "id": "overlay_wielded_misc_repairkit", "fg": 5676 }, + { "id": "overlay_wielded_portable_game", "fg": 5677 }, + { "id": "overlay_wielded_two_way_radio", "fg": 5679 }, + { "id": "overlay_female_wielded_pool_cue", "fg": 5695 }, + { "id": "overlay_male_wielded_pool_cue", "fg": 5696 }, + { "id": "overlay_female_wielded_i_staff", "fg": 5704 }, + { "id": "overlay_female_wielded_q_staff", "fg": 5705 }, + { "id": "overlay_female_wielded_shock_staff", "fg": 5706 }, + { "id": "overlay_male_wielded_i_staff", "fg": 5707 }, + { "id": "overlay_male_wielded_q_staff", "fg": 5708 }, + { "id": "overlay_male_wielded_shock_staff", "fg": 5709 }, + { "id": "overlay_female_wielded_cigar", "fg": 5721 }, + { "id": "overlay_female_wielded_cigar_butt", "fg": 5722 }, + { "id": "overlay_male_wielded_cigar", "fg": 5730 }, + { "id": "overlay_male_wielded_cigar_butt", "fg": 5731 }, + { "id": "overlay_female_wielded_cig", "fg": 5739 }, + { "id": "overlay_female_wielded_cig_butt", "fg": 5740 }, + { "id": "overlay_male_wielded_cig", "fg": 5748 }, + { "id": "overlay_male_wielded_cig_butt", "fg": 5749 }, + { "id": "overlay_female_wielded_joint", "fg": 5757 }, + { "id": "overlay_female_wielded_joint_roach", "fg": 5765 }, + { "id": "overlay_male_wielded_joint", "fg": 5766 }, + { "id": "overlay_male_wielded_joint_roach", "fg": 5774 }, + { "id": "overlay_wielded_bokken", "fg": 5824 }, + { "id": "overlay_wielded_digging_stick", "fg": 5833 }, + { "id": "overlay_wielded_hoe", "fg": 5836 }, + { "id": "overlay_female_worn_aep_suit", "fg": 5944 }, + { "id": "overlay_female_worn_power_armor_basic", "fg": 5945 }, + { "id": "overlay_female_worn_power_armor_heavy", "fg": 5946 }, + { "id": "overlay_female_worn_power_armor_helmet_basic", "fg": 5947 }, + { "id": "overlay_female_worn_power_armor_helmet_heavy", "fg": 5948 }, + { "id": "overlay_female_worn_power_armor_helmet_light", "fg": 5949 }, + { "id": "overlay_female_worn_power_armor_light", "fg": 5950 }, + { "id": "overlay_female_worn_rm13_armor", "fg": 5951 }, + { "id": "overlay_female_worn_rm13_armor_on", "fg": 5952 }, + { "id": "overlay_male_worn_aep_suit", "fg": 5953 }, + { "id": "overlay_male_worn_power_armor_basic", "fg": 5954 }, + { "id": "overlay_male_worn_power_armor_heavy", "fg": 5955 }, + { "id": "overlay_male_worn_power_armor_helmet_basic", "fg": 5956 }, + { "id": "overlay_male_worn_power_armor_helmet_heavy", "fg": 5957 }, + { "id": "overlay_male_worn_power_armor_helmet_light", "fg": 5958 }, + { "id": "overlay_male_worn_power_armor_light", "fg": 5959 }, + { "id": "overlay_male_worn_rm13_armor", "fg": 5960 }, + { "id": "overlay_male_worn_rm13_armor_on", "fg": 5961 }, + { "id": "overlay_female_worn_chainmail_suit_faraday", "fg": 5976 }, + { "id": "overlay_female_worn_pot_helmet", "fg": 5977 }, + { "id": "overlay_male_worn_chainmail_suit_faraday", "fg": 5978 }, + { "id": "overlay_male_worn_pot_helmet", "fg": 5979 }, + { "id": "overlay_female_worn_duffelbag", "fg": 6000 }, + { "id": "overlay_female_worn_runner_bag", "fg": 6003 }, + { "id": "overlay_male_worn_duffelbag", "fg": 6004 }, + { "id": "overlay_male_worn_runner_bag", "fg": 6007 }, + { "id": "overlay_female_worn_chestrig", "fg": 6027 }, + { "id": "overlay_female_worn_grenadebandolier", "fg": 6028 }, + { "id": "overlay_female_worn_mbag", "fg": 6029 }, + { "id": "overlay_female_worn_slingpack", "fg": 6030 }, + { "id": "overlay_male_worn_chestrig", "fg": 6031 }, + { "id": "overlay_male_worn_grenadebandolier", "fg": 6032 }, + { "id": "overlay_male_worn_mbag", "fg": 6033 }, + { "id": "overlay_male_worn_slingpack", "fg": 6034 }, + { "id": "overlay_female_worn_subsuit_xl", "fg": 6055 }, + { "id": "overlay_male_worn_subsuit_xl", "fg": 6056 }, + { "id": "overlay_worn_wolfsuit", "fg": 6057 }, + { "id": "overlay_female_worn_chestwrap_leather", "fg": 6083 }, + { "id": "overlay_female_worn_tights", "fg": 6084 }, + { "id": "overlay_male_worn_chestwrap_leather", "fg": 6085 }, + { "id": "overlay_male_worn_tights", "fg": 6086 }, + { "id": "overlay_female_worn_copper_necklace", "fg": 6087 }, + { "id": "overlay_female_worn_gold_necklace", "fg": 6088 }, + { "id": "overlay_female_worn_platinum_necklace", "fg": 6089 }, + { "id": "overlay_female_worn_silver_necklace", "fg": 6090 }, + { "id": "overlay_male_worn_copper_necklace", "fg": 6091 }, + { "id": "overlay_male_worn_gold_necklace", "fg": 6092 }, + { "id": "overlay_male_worn_platinum_necklace", "fg": 6093 }, + { "id": "overlay_male_worn_silver_necklace", "fg": 6094 }, + { "id": "overlay_female_worn_nanoskirt", "fg": 6095 }, + { "id": "overlay_male_worn_nanoskirt", "fg": 6096 }, + { "id": "overlay_female_worn_motorbike_armor", "fg": 6097 }, + { "id": "overlay_male_worn_motorbike_armor", "fg": 6098 }, + { "id": "overlay_female_worn_headscarf", "fg": 6099 }, + { "id": "overlay_female_worn_long_knit_scarf", "fg": 6100 }, + { "id": "overlay_female_worn_long_patchwork_scarf", "fg": 6101 }, + { "id": "overlay_female_worn_marloss_scarf", "fg": 6102 }, + { "id": "overlay_female_worn_patchwork_scarf", "fg": 6103 }, + { "id": "overlay_female_worn_scarf_fur", "fg": 6104 }, + { "id": "overlay_female_worn_scarf_fur_long", "fg": 6105 }, + { "id": "overlay_male_worn_headscarf", "fg": 6106 }, + { "id": "overlay_male_worn_long_knit_scarf", "fg": 6107 }, + { "id": "overlay_male_worn_long_patchwork_scarf", "fg": 6108 }, + { "id": "overlay_male_worn_marloss_scarf", "fg": 6109 }, + { "id": "overlay_male_worn_patchwork_scarf", "fg": 6110 }, + { "id": "overlay_male_worn_scarf_fur", "fg": 6111 }, + { "id": "overlay_male_worn_scarf_fur_long", "fg": 6112 }, + { "id": "overlay_male_worn_scarf_long", "fg": 6113 }, + { "id": "overlay_female_worn_scuba_tank", "fg": 6124 }, + { "id": "overlay_female_worn_scuba_tank_on", "fg": 6125 }, + { "id": "overlay_female_worn_small_scuba_tank", "fg": 6126 }, + { "id": "overlay_female_worn_small_scuba_tank_on", "fg": 6127 }, + { "id": "overlay_female_worn_wetsuit", "fg": 6128 }, + { "id": "overlay_female_worn_wetsuit_gloves", "fg": 6129 }, + { "id": "overlay_female_worn_wetsuit_hood", "fg": 6130 }, + { "id": "overlay_female_worn_wetsuit_spring", "fg": 6131 }, + { "id": "overlay_male_worn_scuba_tank", "fg": 6132 }, + { "id": "overlay_male_worn_scuba_tank_on", "fg": 6133 }, + { "id": "overlay_male_worn_small_scuba_tank", "fg": 6134 }, + { "id": "overlay_male_worn_small_scuba_tank_on", "fg": 6135 }, + { "id": "overlay_male_worn_wetsuit", "fg": 6136 }, + { "id": "overlay_male_worn_wetsuit_gloves", "fg": 6137 }, + { "id": "overlay_male_worn_wetsuit_hood", "fg": 6138 }, + { "id": "overlay_male_worn_wetsuit_spring", "fg": 6139 }, + { "id": "overlay_worn_wetsuit_booties", "fg": 6140 }, + { "id": "overlay_female_worn_fitover_sunglasses", "fg": 6168 }, + { "id": "overlay_male_worn_fitover_sunglasses", "fg": 6169 }, + { "id": "overlay_female_worn_golf_bag", "fg": 6206 }, + { "id": "overlay_male_worn_golf_bag", "fg": 6207 }, + { "id": "overlay_female_worn_bandana_head", "fg": 6244 }, + { "id": "overlay_female_worn_hat_chef", "fg": 6245 }, + { "id": "overlay_female_worn_tricorne", "fg": 6246 }, + { "id": "overlay_male_worn_bandana_head", "fg": 6247 }, + { "id": "overlay_male_worn_hat_chef", "fg": 6248 }, + { "id": "overlay_male_worn_tricorne", "fg": 6249 }, + { "id": "overlay_female_worn_bead_ear", "fg": 6305 }, + { "id": "overlay_female_worn_copper_ear", "fg": 6306 }, + { "id": "overlay_female_worn_hairpin", "fg": 6308 }, + { "id": "overlay_male_worn_bead_ear", "fg": 6311 }, + { "id": "overlay_male_worn_copper_ear", "fg": 6312 }, + { "id": "overlay_male_worn_hairpin", "fg": 6314 }, + { "id": "overlay_female_worn_antarvasa", "fg": 6320 }, + { "id": "overlay_female_worn_kasaya", "fg": 6321 }, + { "id": "overlay_female_worn_samghati", "fg": 6322 }, + { "id": "overlay_female_worn_uttarasanga", "fg": 6323 }, + { "id": "overlay_male_worn_antarvasa", "fg": 6324 }, + { "id": "overlay_male_worn_kasaya", "fg": 6325 }, + { "id": "overlay_male_worn_samghati", "fg": 6326 }, + { "id": "overlay_male_worn_uttarasanga", "fg": 6327 }, + { "id": "overlay_female_worn_blindfold", "fg": 6350 }, + { "id": "overlay_male_worn_blindfold", "fg": 6351 }, + { "id": "overlay_female_worn_tourniquet_lower", "fg": 6372 }, + { "id": "overlay_female_worn_tourniquet_upper", "fg": 6373 }, + { "id": "overlay_female_worn_wristwatch", "fg": 6374 }, + { "id": "overlay_male_worn_tourniquet_lower", "fg": 6375 }, + { "id": "overlay_male_worn_tourniquet_upper", "fg": 6376 }, + { "id": "overlay_male_worn_wristwatch", "fg": 6377 }, + { "id": "overlay_worn_purse", "fg": 6378 }, + { "id": "overlay_worn_rad_badge", "fg": 6379 }, + { "id": "overlay_female_worn_survivor_goggles", "fg": 6493 }, + { "id": "overlay_male_worn_survivor_goggles", "fg": 6494 }, + { "id": "overlay_female_worn_survivor_duffel_bag", "fg": 6553 }, + { "id": "overlay_female_worn_survivor_pack", "fg": 6554 }, + { "id": "overlay_female_worn_survivor_rucksack", "fg": 6555 }, + { "id": "overlay_female_worn_survivor_runner_pack", "fg": 6556 }, + { "id": "overlay_male_worn_survivor_duffel_bag", "fg": 6557 }, + { "id": "overlay_male_worn_survivor_pack", "fg": 6558 }, + { "id": "overlay_male_worn_survivor_rucksack", "fg": 6559 }, + { "id": "overlay_male_worn_survivor_runner_pack", "fg": 6560 } ] }, { "file": "human_body_plus.png", - "//": "range 6560 to 7103", + "//": "range 6656 to 7199", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, "sprite_offset_y": -16, "tiles": [ - { "id": "npc_female", "fg": 6694, "bg": 6579 }, - { "id": "npc_male", "fg": 6695, "bg": 6579 }, - { "id": "player_female", "fg": 6694, "bg": 6579 }, - { "id": "player_male", "fg": 6695, "bg": 6579 }, - { "id": "mon_zombie_phase_skulker", "fg": 6561, "bg": 6579 }, - { "id": "mon_zombie_phase_shrike", "fg": 6560, "bg": 6579 }, - { "id": "mon_broken_cyborg", "fg": 6562, "bg": 6579 }, - { "id": "mon_prototype_cyborg", "fg": 6563, "bg": 6579 }, - { "id": "mon_boomer_fungus", "fg": 6565, "bg": 6579 }, - { "id": "mon_zombie_soldier_acid_1", "fg": 6566, "bg": 6579 }, + { "id": "npc_female", "fg": 6802, "bg": 6676 }, + { "id": "npc_male", "fg": 6803, "bg": 6676 }, + { "id": "player_female", "fg": 6802, "bg": 6676 }, + { "id": "player_male", "fg": 6803, "bg": 6676 }, + { "id": "mon_zombie_phase_skulker", "fg": 6658, "bg": 6676 }, + { "id": "mon_zombie_phase_shrike", "fg": 6657, "bg": 6676 }, + { "id": "mon_broken_cyborg", "fg": 6659, "bg": 6676 }, + { "id": "mon_prototype_cyborg", "fg": 6660, "bg": 6676 }, + { "id": "mon_boomer_fungus", "fg": 6662, "bg": 6676 }, + { "id": "mon_zombie_soldier_acid_1", "fg": 6663, "bg": 6676 }, { "id": "mon_zombie_reenactor", - "fg": [ { "weight": 2, "sprite": 6575 }, { "weight": 2, "sprite": 6574 }, { "weight": 1, "sprite": 6576 } ], - "bg": 6579 - }, - { "id": "mon_zombie_prisoner_tough", "fg": 6573, "bg": 6579 }, - { "id": "mon_zombie_prisoner_fat", "fg": 6572, "bg": 6579 }, - { "id": "mon_zombie_prisoner_brute", "fg": 6571, "bg": 6579 }, - { "id": "mon_zombie_resort_bouncer", "fg": 6577, "bg": 6579 }, - { "id": "mon_irradiated_wanderer_1", "fg": 6567, "bg": 6579 }, - { "id": "mon_irradiated_wanderer_2", "fg": 6568, "bg": 6579 }, - { "id": "mon_irradiated_wanderer_3", "fg": 6569, "bg": 6579 }, - { "id": "mon_irradiated_wanderer_4", "fg": 6570, "bg": 6579 }, + "fg": [ { "weight": 2, "sprite": 6672 }, { "weight": 2, "sprite": 6671 }, { "weight": 1, "sprite": 6673 } ], + "bg": 6676 + }, + { "id": "mon_zombie_prisoner_tough", "fg": 6670, "bg": 6676 }, + { "id": "mon_zombie_prisoner_fat", "fg": 6669, "bg": 6676 }, + { "id": "mon_zombie_prisoner_brute", "fg": 6668, "bg": 6676 }, + { "id": "mon_zombie_resort_bouncer", "fg": 6674, "bg": 6676 }, + { "id": "mon_irradiated_wanderer_1", "fg": 6664, "bg": 6676 }, + { "id": "mon_irradiated_wanderer_2", "fg": 6665, "bg": 6676 }, + { "id": "mon_irradiated_wanderer_3", "fg": 6666, "bg": 6676 }, + { "id": "mon_irradiated_wanderer_4", "fg": 6667, "bg": 6676 }, { "id": "mon_feral_human_crowbar", - "fg": [ { "weight": 100, "sprite": 6582 }, { "weight": 50, "sprite": 6583 } ], - "bg": 6579 + "fg": [ { "weight": 100, "sprite": 6679 }, { "weight": 50, "sprite": 6680 } ], + "bg": 6676 }, { "id": "mon_feral_human_pipe", - "fg": [ { "weight": 100, "sprite": 6586 }, { "weight": 50, "sprite": 6587 } ], - "bg": 6579 + "fg": [ { "weight": 100, "sprite": 6683 }, { "weight": 50, "sprite": 6684 } ], + "bg": 6676 }, { "id": "mon_feral_human_axe", - "fg": [ { "weight": 100, "sprite": 6580 }, { "weight": 50, "sprite": 6581 } ], - "bg": 6579 - }, - { "id": "mon_feral_labsecurity_9mm", "fg": 6584, "bg": 6579 }, - { "id": "mon_feral_labsecurity_flashlight", "fg": 6585, "bg": 6579 }, - { "id": "mon_feral_scientist_scalpel", "fg": 6588, "bg": 6579 }, - { "id": "mon_zombie_grabber", "fg": 6589, "bg": 6579 }, - { "id": "mon_zombie_kevlar_1", "fg": 6590, "bg": 6579 }, - { "id": "mon_bee", "fg": 6591, "bg": 6579 }, - { "id": "mon_blank", "fg": 6592, "bg": 6579 }, - { "id": "mon_boomer", "fg": 6593, "bg": 6579 }, - { "id": "mon_charred_nightmare", "fg": 6594, "bg": 6579 }, - { "id": "mon_cougar", "fg": 6595, "bg": 6579 }, - { "id": "mon_dementia", "fg": 6596, "bg": 6579 }, - { "id": "mon_dermatik", "fg": 6597, "bg": 6579 }, - { "id": "mon_dragonfly_giant", "fg": 6598, "bg": 6579 }, - { "id": "mon_dragonfly_mega", "fg": 6599, "bg": 6579 }, - { "id": "mon_flesh_golem", "fg": 6600, "bg": 6579 }, - { "id": "mon_fleshy_shambler", "fg": 6601, "bg": 6579 }, - { "id": "mon_fly", "fg": 6602, "bg": 6579 }, - { "id": "mon_gozu", "fg": 6603, "bg": 6579 }, - { "id": "mon_hallu_mom", "fg": 6604, "bg": 6579 }, - { "id": "mon_hologram", "fg": 6605, "bg": 6579 }, + "fg": [ { "weight": 100, "sprite": 6677 }, { "weight": 50, "sprite": 6678 } ], + "bg": 6676 + }, + { "id": "mon_feral_labsecurity_9mm", "fg": 6681, "bg": 6676 }, + { "id": "mon_feral_labsecurity_flashlight", "fg": 6682, "bg": 6676 }, + { "id": "mon_feral_scientist_scalpel", "fg": 6685, "bg": 6676 }, + { "id": "mon_zombie_grabber", "fg": 6686, "bg": 6676 }, + { "id": "mon_zombie_kevlar_1", "fg": 6687, "bg": 6676 }, + { "id": "mon_bee", "fg": 6688, "bg": 6676 }, + { "id": "mon_blank", "fg": 6689, "bg": 6676 }, + { "id": "mon_boomer", "fg": 6690, "bg": 6676 }, + { "id": "mon_charred_nightmare", "fg": 6691, "bg": 6676 }, + { "id": "mon_cougar", "fg": 6692, "bg": 6676 }, + { "id": "mon_dementia", "fg": 6693, "bg": 6676 }, + { "id": "mon_dermatik", "fg": 6694, "bg": 6676 }, + { "id": "mon_dragonfly_giant", "fg": 6695, "bg": 6676 }, + { "id": "mon_dragonfly_mega", "fg": 6696, "bg": 6676 }, + { "id": "mon_flesh_golem", "fg": 6697, "bg": 6676 }, + { "id": "mon_fleshy_shambler", "fg": 6698, "bg": 6676 }, + { "id": "mon_fly", "fg": 6699, "bg": 6676 }, + { "id": "mon_gozu", "fg": 6700, "bg": 6676 }, + { "id": "mon_hallu_mannequin", "fg": 6701, "bg": 6676 }, + { "id": "mon_mannequin_decoy", "fg": 6701, "bg": 6676 }, + { "id": "mon_hallu_mom", "fg": 6702, "bg": 6676 }, + { "id": "mon_hologram", "fg": 6703, "bg": 6676 }, { "id": "mon_hunting_horror", - "fg": [ { "weight": 1, "sprite": 6606 }, { "weight": 1, "sprite": 6607 }, { "weight": 1, "sprite": 6608 } ], - "bg": 6579 - }, - { "id": "mon_marloss_zealot_f", "fg": 6609, "bg": 6579 }, - { "id": "mon_marloss_zealot_m", "fg": 6610, "bg": 6579 }, - { "id": "mon_mutant_experimental", "fg": 6611, "bg": 6579 }, - { "id": "mon_one_eye", "fg": 6612, "bg": 6579 }, - { "id": "mon_riotbot", "fg": 6613, "bg": 6579 }, - { "id": "mon_skeleton", "fg": 6614, "bg": 6579 }, - { "id": "mon_skeleton_brute", "fg": 6615, "bg": 6579 }, - { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 2530 }, - { "id": "mon_zombie_acidic", "fg": 6616, "bg": 6579 }, - { "id": "mon_zombie_corrosive", "fg": 6617, "bg": 6579 }, - { "id": "mon_zombie_spitter", "fg": 6618, "bg": 6579 }, - { "id": "mon_zombie_bio_op", "fg": 6619, "bg": 6579 }, - { "id": "mon_zombie_bio_op2", "fg": 6620, "bg": 6579 }, + "fg": [ { "weight": 1, "sprite": 6704 }, { "weight": 1, "sprite": 6705 }, { "weight": 1, "sprite": 6706 } ], + "bg": 6676 + }, + { "id": "mon_marloss_zealot_f", "fg": 6707, "bg": 6676 }, + { "id": "mon_marloss_zealot_m", "fg": 6708, "bg": 6676 }, + { "id": "mon_mutant_experimental", "fg": 6709, "bg": 6676 }, + { "id": "mon_one_eye", "fg": 6710, "bg": 6676 }, + { "id": "mon_riotbot", "fg": 6711, "bg": 6676 }, + { "id": "mon_skeleton", "fg": 6712, "bg": 6676 }, + { "id": "mon_skeleton_brute", "fg": 6713, "bg": 6676 }, + { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 2591 }, + { "id": "mon_zombie_acidic", "fg": 6714, "bg": 6676 }, + { "id": "mon_zombie_corrosive", "fg": 6715, "bg": 6676 }, + { "id": "mon_zombie_spitter", "fg": 6716, "bg": 6676 }, + { "id": "mon_zombie_bio_op", "fg": 6717, "bg": 6676 }, + { "id": "mon_zombie_bio_op2", "fg": 6718, "bg": 6676 }, { "id": "mon_zombie_brute", "fg": [ - { "weight": 100, "sprite": 6621 }, - { "weight": 100, "sprite": 6622 }, - { "weight": 50, "sprite": 6623 }, - { "weight": 50, "sprite": 6624 } + { "weight": 100, "sprite": 6719 }, + { "weight": 100, "sprite": 6720 }, + { "weight": 50, "sprite": 6721 }, + { "weight": 50, "sprite": 6722 } ], - "bg": 6578 + "bg": 6675 }, - { "id": "mon_zombie_ears", "fg": 6625, "bg": 6579 }, + { "id": "mon_zombie_ears", "fg": 6723, "bg": 6676 }, { "id": "mon_zombie_fat", - "fg": [ { "weight": 1, "sprite": 6626 }, { "weight": 1, "sprite": 6627 } ], - "bg": 6579 + "fg": [ { "weight": 1, "sprite": 6724 }, { "weight": 1, "sprite": 6725 } ], + "bg": 6676 }, - { "id": "mon_zombie_fiend", "fg": 6628, "bg": 6579 }, + { "id": "mon_zombie_fiend", "fg": 6726, "bg": 6676 }, { "id": "mon_zombie_gasbag", - "fg": [ { "weight": 1, "sprite": 6629 }, { "weight": 1, "sprite": 6630 } ], - "bg": 6579 + "fg": [ { "weight": 1, "sprite": 6727 }, { "weight": 1, "sprite": 6728 } ], + "bg": 6676 }, { "id": "mon_zombie_grappler", - "fg": [ { "weight": 1, "sprite": 6631 }, { "weight": 1, "sprite": 6632 } ], - "bg": 6579 + "fg": [ { "weight": 1, "sprite": 6729 }, { "weight": 1, "sprite": 6730 } ], + "bg": 6676 }, - { "id": "mon_zombie_hammer_hands", "fg": 6633, "bg": 6578 }, + { "id": "mon_zombie_hammer_hands", "fg": 6731, "bg": 6675 }, { "id": "mon_zombie_brainless", - "fg": [ { "weight": 100, "sprite": 6635 }, { "weight": 100, "sprite": 6636 } ], - "bg": 6579 + "fg": [ { "weight": 100, "sprite": 6733 }, { "weight": 100, "sprite": 6734 } ], + "bg": 6676 }, - { "id": "mon_zombie_hunter", "fg": 6637, "bg": 6579 }, - { "id": "mon_zombie_predator", "fg": 6638, "bg": 6579 }, + { "id": "mon_zombie_hunter", "fg": 6735, "bg": 6676 }, + { "id": "mon_zombie_predator", "fg": 6736, "bg": 6676 }, { "id": "mon_zombie_mancroc", - "fg": [ { "weight": 100, "sprite": 6639 }, { "weight": 100, "sprite": 6640 } ], - "bg": 6579 + "fg": [ { "weight": 100, "sprite": 6737 }, { "weight": 100, "sprite": 6738 } ], + "bg": 6676 + }, + { "id": "mon_zombie_plated", "fg": 6739, "bg": 6675 }, + { + "id": "mon_zombie_resort_dancer", + "fg": [ { "weight": 1, "sprite": 6740 }, { "weight": 1, "sprite": 6741 } ], + "bg": 6676 }, - { "id": "mon_zombie_plated", "fg": 6641, "bg": 6578 }, - { "id": "mon_zombie_runner", "fg": 6642, "bg": 6579 }, - { "id": "mon_zombie_rust", "fg": 6643, "bg": 6579 }, - { "id": "mon_zombie_scorched", "fg": 6644, "bg": 6579 }, - { "id": "mon_zombie_shady", "fg": 6645, "bg": 6579 }, - { "id": "mon_zombie_shell", "fg": 6646, "bg": 6579 }, - { "id": "mon_zombie_skull", "fg": 6647, "bg": 6579 }, + { + "id": "mon_zombie_resort_staff", + "fg": [ { "weight": 1, "sprite": 6742 }, { "weight": 1, "sprite": 6743 } ], + "bg": 6676 + }, + { "id": "mon_zombie_runner", "fg": 6744, "bg": 6676 }, + { "id": "mon_zombie_rust", "fg": 6745, "bg": 6676 }, + { "id": "mon_zombie_scorched", "fg": 6746, "bg": 6676 }, + { "id": "mon_zombie_shell", "fg": 6748, "bg": 6676 }, + { "id": "mon_zombie_skull", "fg": 6749, "bg": 6676 }, { "id": "mon_zombie_soldier", - "fg": [ { "weight": 100, "sprite": 6651 }, { "weight": 100, "sprite": 6652 } ], - "bg": 6579 + "fg": [ { "weight": 100, "sprite": 6753 }, { "weight": 100, "sprite": 6754 } ], + "bg": 6676 }, - { "id": "mon_zombie_military_pilot", "fg": 6650, "bg": 6579 }, - { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 6648 }, - { "id": "mon_zombie_static", "fg": 6653, "bg": 6579 }, - { "id": "mon_zombie_survivor", "fg": 6654, "bg": 6579 }, - { "id": "mon_zombie_survivor_elite", "fg": 6655, "bg": 6579 }, + { "id": "mon_zombie_military_pilot", "fg": 6752, "bg": 6676 }, + { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 6750 }, + { "id": "mon_zombie_static", "fg": 6755, "bg": 6676 }, + { "id": "mon_zombie_survivor", "fg": 6756, "bg": 6676 }, + { "id": "mon_zombie_survivor_elite", "fg": 6757, "bg": 6676 }, { "id": [ "mon_zombie_swimmer_base", "mon_zombie_swimmer" ], - "fg": [ { "weight": 1000, "sprite": 6657 }, { "weight": 1, "sprite": 6656 } ], - "bg": 6579 + "fg": [ + { "weight": 200, "sprite": 6759 }, + { "weight": 200, "sprite": 6760 }, + { "weight": 200, "sprite": 6761 }, + { "weight": 200, "sprite": 6762 }, + { "weight": 200, "sprite": 6763 }, + { "weight": 1, "sprite": 6758 } + ], + "bg": 6676 }, { "id": "mon_zombie", "fg": [ - { "weight": 100, "sprite": 6664 }, - { "weight": 150, "sprite": 6665 }, - { "weight": 100, "sprite": 6666 }, - { "weight": 100, "sprite": 6667 }, - { "weight": 150, "sprite": 6668 } + { "weight": 100, "sprite": 6770 }, + { "weight": 150, "sprite": 6771 }, + { "weight": 100, "sprite": 6772 }, + { "weight": 100, "sprite": 6773 }, + { "weight": 150, "sprite": 6774 } ], - "bg": 6579 + "bg": 6676 }, - { "id": "mon_zombie_hazmat", "fg": 6671, "bg": 6579 }, - { "id": "mon_zombie_fireman", "fg": 6670, "bg": 6579 }, + { "id": "mon_zombie_hazmat", "fg": 6777, "bg": 6676 }, + { "id": "mon_zombie_fireman", "fg": 6776, "bg": 6676 }, { "id": "mon_zombie_scientist", - "fg": [ { "weight": 1, "sprite": 6673 }, { "weight": 1, "sprite": 6674 } ], - "bg": 6579 + "fg": [ { "weight": 1, "sprite": 6779 }, { "weight": 1, "sprite": 6780 } ], + "bg": 6676 }, - { "id": "mon_zombie_cop", "fg": 6669, "bg": 6579 }, - { "id": "mon_zombie_labsecurity", "fg": 6672, "bg": 6579 }, + { "id": "mon_zombie_cop", "fg": 6775, "bg": 6676 }, + { "id": "mon_zombie_labsecurity", "fg": 6778, "bg": 6676 }, { "id": "mon_zombie_tough", - "fg": [ { "weight": 1, "sprite": 6677 }, { "weight": 1, "sprite": 6678 } ], - "bg": 6579 + "fg": [ { "weight": 1, "sprite": 6783 }, { "weight": 1, "sprite": 6784 } ], + "bg": 6676 }, { "id": "mon_zombie_technician", - "fg": [ { "weight": 1, "sprite": 6675 }, { "weight": 1, "sprite": 6676 } ], - "bg": 6579 + "fg": [ { "weight": 1, "sprite": 6781 }, { "weight": 1, "sprite": 6782 } ], + "bg": 6676 }, { "id": [ @@ -9932,11 +10157,11 @@ "corpse_mon_zombie_prisoner", "corpse_mon_zombie_winged" ], - "fg": 6658 + "fg": 6764 }, - { "id": "corpse_mon_zombie_scientist", "fg": 6660 }, - { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 6661 }, - { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 6659 }, + { "id": "corpse_mon_zombie_scientist", "fg": 6766 }, + { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 6767 }, + { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 6765 }, { "id": [ "corpse_mon_zombie_tough", @@ -9952,209 +10177,210 @@ "corpse_mon_zombie_soldier_blackops_2", "corpse_mon_zombie_soldier_blackops_1" ], - "fg": 6662 - }, - { "id": "mon_zombie_winged", "fg": 6679, "bg": 6579 }, - { "id": "mon_zougar", "fg": 6680, "bg": 6579 }, - { "id": "mon_copbot", "fg": 6681, "bg": 6579 }, - { "id": "mon_zombie_screecher", "fg": 6682, "bg": 6579 }, - { "id": "mon_zombie_shrieker", "fg": 6683, "bg": 6579 }, - { "id": "mon_zombie_swat", "fg": 6684, "bg": 6579 }, - { "id": "mon_zombie_thorny", "fg": 6685, "bg": 6579 }, - { "id": "mon_zombie_flamer", "fg": 6686, "bg": 6579 }, + "fg": 6768 + }, + { "id": "mon_zombie_winged", "fg": 6785, "bg": 6676 }, + { "id": "mon_zougar", "fg": 6786, "bg": 6676 }, + { "id": "mon_zougar_hunter", "fg": 6787, "bg": 6676 }, + { "id": "mon_copbot", "fg": 6789, "bg": 6676 }, + { "id": "mon_zombie_screecher", "fg": 6790, "bg": 6676 }, + { "id": "mon_zombie_shrieker", "fg": 6791, "bg": 6676 }, + { "id": "mon_zombie_swat", "fg": 6792, "bg": 6676 }, + { "id": "mon_zombie_thorny", "fg": 6793, "bg": 6676 }, + { "id": "mon_zombie_flamer", "fg": 6794, "bg": 6676 }, { "id": "mon_zombie_prisoner", - "fg": [ { "weight": 1, "sprite": 6687 }, { "weight": 1, "sprite": 6688 }, { "weight": 1, "sprite": 6689 } ], - "bg": 6579 - }, - { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 6694 }, - { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 6695 }, - { "id": "overlay_female_wielded_teleumbrella", "fg": 6697 }, - { "id": "overlay_male_wielded_teleumbrella", "fg": 6698 }, - { "id": "overlay_female_wielded_umbrella", "fg": 6697 }, - { "id": "overlay_male_wielded_umbrella", "fg": 6698 }, - { "id": "overlay_male_worn_welding_mask_raised", "fg": 6702 }, - { "id": "overlay_female_worn_mossberg_500", "fg": 6703 }, - { "id": "overlay_male_worn_mossberg_500", "fg": 6704 }, + "fg": [ { "weight": 1, "sprite": 6795 }, { "weight": 1, "sprite": 6796 }, { "weight": 1, "sprite": 6797 } ], + "bg": 6676 + }, + { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 6802 }, + { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 6803 }, + { "id": "overlay_female_wielded_teleumbrella", "fg": 6805 }, + { "id": "overlay_male_wielded_teleumbrella", "fg": 6806 }, + { "id": "overlay_female_wielded_umbrella", "fg": 6805 }, + { "id": "overlay_male_wielded_umbrella", "fg": 6806 }, + { "id": "overlay_male_worn_welding_mask_raised", "fg": 6810 }, + { "id": "overlay_female_worn_mossberg_500", "fg": 6811 }, + { "id": "overlay_male_worn_mossberg_500", "fg": 6812 }, { "id": "vp_board_ne", - "fg": [ 6712, 6715, 6714, 6713 ], + "fg": [ 6820, 6823, 6822, 6821 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6712, 6715, 6714, 6713 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6820, 6823, 6822, 6821 ] } ] }, { "id": "vp_board_nw", - "fg": [ 6716, 6719, 6718, 6717 ], + "fg": [ 6824, 6827, 6826, 6825 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6716, 6719, 6718, 6717 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6824, 6827, 6826, 6825 ] } ] }, { "id": "vp_board_se", - "fg": [ 6720, 6722, 6716, 6721 ], + "fg": [ 6828, 6830, 6824, 6829 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6720, 6722, 6716, 6721 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6828, 6830, 6824, 6829 ] } ] }, { "id": "vp_board_sw", - "fg": [ 6723, 6725, 6712, 6724 ], + "fg": [ 6831, 6833, 6820, 6832 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6723, 6725, 6712, 6724 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6831, 6833, 6820, 6832 ] } ] }, { "id": "vp_board_vertical_left", - "fg": [ 6709, 6726, 6711, 6710 ], + "fg": [ 6817, 6834, 6819, 6818 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6709, 6726, 6711, 6710 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6817, 6834, 6819, 6818 ] } ] }, { "id": "vp_board_vertical_right", - "fg": [ 6711, 6710, 6709, 6726 ], + "fg": [ 6819, 6818, 6817, 6834 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6711, 6710, 6709, 6726 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6819, 6818, 6817, 6834 ] } ] }, { "id": "vp_board_wheel_left", - "fg": [ 6709, 6728, 6711, 6710 ], + "fg": [ 6817, 6836, 6819, 6818 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6709, 6728, 6711, 6710 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6817, 6836, 6819, 6818 ] } ] }, { "id": "vp_board_wheel_right", - "fg": [ 6711, 6710, 6709, 6728 ], + "fg": [ 6819, 6818, 6817, 6836 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6711, 6710, 6709, 6728 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6819, 6818, 6817, 6836 ] } ] }, { "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ], - "fg": [ 6710, 6727, 6710, 6727 ], + "fg": [ 6818, 6835, 6818, 6835 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6710, 6727, 6710, 6727 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6818, 6835, 6818, 6835 ] } ] }, { "id": "vp_board_horizontal_front", - "fg": [ 6710, 6707, 6706, 6705 ], + "fg": [ 6818, 6815, 6814, 6813 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6710, 6707, 6706, 6705 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6818, 6815, 6814, 6813 ] } ] }, { "id": "vp_board_horizontal_rear", - "fg": [ 6708, 6711, 6710, 6709 ], + "fg": [ 6816, 6819, 6818, 6817 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6708, 6711, 6710, 6709 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6816, 6819, 6818, 6817 ] } ] }, { "id": [ "vp_board_vertical", "vp_board_vertical_2" ], - "fg": [ 6727, 6710, 6727, 6710 ], + "fg": [ 6835, 6818, 6835, 6818 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6727, 6710, 6727, 6710 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6835, 6818, 6835, 6818 ] } ] }, { "id": "vp_board_ne_edge", - "fg": [ 6712, 6730, 6714, 6729 ], + "fg": [ 6820, 6838, 6822, 6837 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6712, 6730, 6714, 6729 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6820, 6838, 6822, 6837 ] } ] }, { "id": "vp_board_nw_edge", - "fg": [ 6716, 6732, 6718, 6731 ], + "fg": [ 6824, 6840, 6826, 6839 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6716, 6732, 6718, 6731 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6824, 6840, 6826, 6839 ] } ] }, { "id": "vp_clothboard_ne", - "fg": [ 6738, 6741, 6740, 6739 ], + "fg": [ 6846, 6849, 6848, 6847 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6738, 6741, 6740, 6739 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6846, 6849, 6848, 6847 ] } ] }, { "id": "vp_clothboard_nw", - "fg": [ 6741, 6743, 6742, 6738 ], + "fg": [ 6849, 6851, 6850, 6846 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6741, 6743, 6742, 6738 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6849, 6851, 6850, 6846 ] } ] }, { "id": "vp_clothboard_se", - "fg": [ 6744, 6746, 6741, 6745 ], + "fg": [ 6852, 6854, 6849, 6853 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6744, 6746, 6741, 6745 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6852, 6854, 6849, 6853 ] } ] }, { "id": "vp_clothboard_sw", - "fg": [ 6747, 6749, 6738, 6748 ], + "fg": [ 6855, 6857, 6846, 6856 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6747, 6749, 6738, 6748 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6855, 6857, 6846, 6856 ] } ] }, { "id": "vp_clothboard_vertical_left", - "fg": [ 6735, 6750, 6733, 6737 ], + "fg": [ 6843, 6858, 6841, 6845 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6735, 6750, 6733, 6737 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6843, 6858, 6841, 6845 ] } ] }, { "id": "vp_clothboard_vertical_right", - "fg": [ 6733, 6737, 6735, 6750 ], + "fg": [ 6841, 6845, 6843, 6858 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6733, 6737, 6735, 6750 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6841, 6845, 6843, 6858 ] } ] }, { "id": "vp_clothboard_wheel_left", - "fg": [ 6735, 6752, 6733, 6737 ], + "fg": [ 6843, 6860, 6841, 6845 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6735, 6752, 6733, 6737 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6843, 6860, 6841, 6845 ] } ] }, { "id": "vp_clothboard_wheel_right", - "fg": [ 6733, 6737, 6735, 6752 ], + "fg": [ 6841, 6845, 6843, 6860 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6733, 6737, 6735, 6752 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6841, 6845, 6843, 6860 ] } ] }, { "id": [ "vp_clothboard", "vp_clothboard_horizontal", "vp_clothboard_horizontal_2" ], - "fg": [ 6737, 6751, 6737, 6751 ], + "fg": [ 6845, 6859, 6845, 6859 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6737, 6751, 6737, 6751 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6845, 6859, 6845, 6859 ] } ] }, { "id": "vp_clothboard_horizontal_front", - "fg": [ 6737, 6735, 6734, 6733 ], + "fg": [ 6845, 6843, 6842, 6841 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6737, 6735, 6734, 6733 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6845, 6843, 6842, 6841 ] } ] }, { "id": "vp_clothboard_horizontal_rear", - "fg": [ 6736, 6733, 6737, 6735 ], + "fg": [ 6844, 6841, 6845, 6843 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6736, 6733, 6737, 6735 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6844, 6841, 6845, 6843 ] } ] }, { "id": [ "vp_clothboard_vertical", "vp_clothboard_vertical_2" ], - "fg": [ 6751, 6737, 6751, 6737 ], + "fg": [ 6859, 6845, 6859, 6845 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6751, 6737, 6751, 6737 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6859, 6845, 6859, 6845 ] } ] }, { "id": "vp_clothboard_ne_edge", - "fg": [ 6738, 6754, 6740, 6753 ], + "fg": [ 6846, 6862, 6848, 6861 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6738, 6754, 6740, 6753 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6846, 6862, 6848, 6861 ] } ] }, { "id": "vp_clothboard_nw_edge", - "fg": [ 6741, 6756, 6742, 6755 ], + "fg": [ 6849, 6864, 6850, 6863 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6741, 6756, 6742, 6755 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6849, 6864, 6850, 6863 ] } ] }, { "id": "vp_clothboard_se_edge", - "fg": [ 6744, 6758, 6741, 6757 ], + "fg": [ 6852, 6866, 6849, 6865 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6744, 6758, 6741, 6757 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6852, 6866, 6849, 6865 ] } ] }, { "id": "vp_clothboard_sw_edge", - "fg": [ 6747, 6760, 6738, 6759 ], + "fg": [ 6855, 6868, 6846, 6867 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6747, 6760, 6738, 6759 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6855, 6868, 6846, 6867 ] } ] }, { "id": [ @@ -10165,11 +10391,11 @@ "vp_door_full_sw", "vp_door_full_rear_left" ], - "fg": [ 6829, 6836, 6835, 6834 ], + "fg": [ 6937, 6944, 6943, 6942 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6830, 6833, 6832, 6831 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6830, 6833, 6832, 6831 ] } + { "id": "open", "fg": [ 6938, 6941, 6940, 6939 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6938, 6941, 6940, 6939 ] } ] }, { @@ -10181,341 +10407,341 @@ "vp_door_full_se", "vp_door_full_rear_right" ], - "fg": [ 6855, 6854, 6853, 6838 ], + "fg": [ 6963, 6962, 6961, 6946 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6852, 6851, 6850, 6837 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6852, 6851, 6850, 6837 ] } + { "id": "open", "fg": [ 6960, 6959, 6958, 6945 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6960, 6959, 6958, 6945 ] } ] }, { "id": "vp_door_opaque_full_left", - "fg": [ 6839, 6842, 6841, 6840 ], + "fg": [ 6947, 6950, 6949, 6948 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6830, 6833, 6832, 6831 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6830, 6833, 6832, 6831 ] } + { "id": "open", "fg": [ 6938, 6941, 6940, 6939 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6938, 6941, 6940, 6939 ] } ] }, { "id": "vp_door_opaque_full_right", - "fg": [ 6847, 6846, 6845, 6843 ], + "fg": [ 6955, 6954, 6953, 6951 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6852, 6851, 6850, 6837 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6852, 6851, 6850, 6837 ] } + { "id": "open", "fg": [ 6960, 6959, 6958, 6945 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6960, 6959, 6958, 6945 ] } ] }, { "id": [ "vp_door_left", "vp_door_vertical_left" ], - "fg": [ 6765, 6768, 6767, 6766 ], + "fg": [ 6873, 6876, 6875, 6874 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6774, 6776, 6775, 6773 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6774, 6776, 6775, 6773 ] } + { "id": "open", "fg": [ 6882, 6884, 6883, 6881 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6882, 6884, 6883, 6881 ] } ] }, { "id": "vp_door_nw", - "fg": [ 6785, 6792, 6791, 6790 ], + "fg": [ 6893, 6900, 6899, 6898 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6786, 6789, 6788, 6787 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6774, 6776, 6775, 6773 ] } + { "id": "open", "fg": [ 6894, 6897, 6896, 6895 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6882, 6884, 6883, 6881 ] } ] }, { "id": "vp_door_front_left", - "fg": [ 6876, 6883, 6882, 6881 ], + "fg": [ 6984, 6991, 6990, 6989 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6877, 6880, 6879, 6878 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6877, 6880, 6879, 6878 ] } + { "id": "open", "fg": [ 6985, 6988, 6987, 6986 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6985, 6988, 6987, 6986 ] } ] }, { "id": [ "vp_door_sw", "vp_door_rear_left" ], - "fg": [ 6821, 6828, 6827, 6826 ], + "fg": [ 6929, 6936, 6935, 6934 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6822, 6825, 6824, 6823 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6774, 6776, 6775, 6773 ] } + { "id": "open", "fg": [ 6930, 6933, 6932, 6931 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6882, 6884, 6883, 6881 ] } ] }, { "id": [ "vp_door_right", "vp_door_vertical_right" ], - "fg": [ 6769, 6772, 6771, 6770 ], + "fg": [ 6877, 6880, 6879, 6878 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6810, 6812, 6811, 6809 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6810, 6812, 6811, 6809 ] } + { "id": "open", "fg": [ 6918, 6920, 6919, 6917 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6918, 6920, 6919, 6917 ] } ] }, { "id": "vp_door_ne", - "fg": [ 6777, 6784, 6783, 6782 ], + "fg": [ 6885, 6892, 6891, 6890 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6778, 6781, 6780, 6779 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6810, 6812, 6811, 6809 ] } + { "id": "open", "fg": [ 6886, 6889, 6888, 6887 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6918, 6920, 6919, 6917 ] } ] }, { "id": "vp_door_front_right", - "fg": [ 6868, 6875, 6874, 6873 ], + "fg": [ 6976, 6983, 6982, 6981 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6869, 6872, 6871, 6870 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6869, 6872, 6871, 6870 ] } + { "id": "open", "fg": [ 6977, 6980, 6979, 6978 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6977, 6980, 6979, 6978 ] } ] }, { "id": [ "vp_door_se", "vp_door_rear_right" ], - "fg": [ 6813, 6820, 6819, 6818 ], + "fg": [ 6921, 6928, 6927, 6926 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6814, 6817, 6816, 6815 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6810, 6812, 6811, 6809 ] } + { "id": "open", "fg": [ 6922, 6925, 6924, 6923 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6918, 6920, 6919, 6917 ] } ] }, { "id": "vp_door_opaque_left", - "fg": [ 6798, 6800, 6799, 6797 ], + "fg": [ 6906, 6908, 6907, 6905 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6794, 6796, 6795, 6793 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6794, 6796, 6795, 6793 ] } + { "id": "open", "fg": [ 6902, 6904, 6903, 6901 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6902, 6904, 6903, 6901 ] } ] }, { "id": "vp_door_opaque_right", - "fg": [ 6806, 6808, 6807, 6805 ], + "fg": [ 6914, 6916, 6915, 6913 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6802, 6804, 6803, 6801 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6802, 6804, 6803, 6801 ] } + { "id": "open", "fg": [ 6910, 6912, 6911, 6909 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6910, 6912, 6911, 6909 ] } ] }, { "id": [ "vp_door_rear", "vp_door_horizontal_rear" ], - "fg": [ 6848, 6855, 6854, 6853 ], + "fg": [ 6956, 6963, 6962, 6961 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6849, 6852, 6851, 6850 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6849, 6852, 6851, 6850 ] } + { "id": "open", "fg": [ 6957, 6960, 6959, 6958 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6957, 6960, 6959, 6958 ] } ] }, { "id": [ "vp_door_front", "vp_door_horizontal_front" ], - "fg": [ 6854, 6853, 6848, 6855 ], + "fg": [ 6962, 6961, 6956, 6963 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6851, 6850, 6849, 6852 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6851, 6850, 6849, 6852 ] } + { "id": "open", "fg": [ 6959, 6958, 6957, 6960 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6959, 6958, 6957, 6960 ] } ] }, { "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ], - "fg": [ 6844, 6847, 6846, 6845 ], + "fg": [ 6952, 6955, 6954, 6953 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6849, 6852, 6851, 6850 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6849, 6852, 6851, 6850 ] } + { "id": "open", "fg": [ 6957, 6960, 6959, 6958 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6957, 6960, 6959, 6958 ] } ] }, { "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ], - "fg": [ 6846, 6845, 6844, 6847 ], + "fg": [ 6954, 6953, 6952, 6955 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6851, 6850, 6849, 6852 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6851, 6850, 6849, 6852 ] } + { "id": "open", "fg": [ 6959, 6958, 6957, 6960 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6959, 6958, 6957, 6960 ] } ] }, { "id": "vp_door_sliding", - "fg": [ 6847, 6846, 6845, 6843 ], + "fg": [ 6955, 6954, 6953, 6951 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6894, 6895, 6896, 6897 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6894, 6895, 6896, 6897 ] } + { "id": "open", "fg": [ 7002, 7003, 7004, 7005 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7002, 7003, 7004, 7005 ] } ] }, { "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ], - "fg": [ 6864, 6863, 6866, 6863 ], + "fg": [ 6972, 6971, 6974, 6971 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6865, 6862, 6867, 6862 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6865, 6862, 6867, 6862 ] } + { "id": "open", "fg": [ 6973, 6970, 6975, 6970 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6973, 6970, 6975, 6970 ] } ] }, { "id": "vp_door_internal_front", - "fg": [ 6846, 6861, 6860, 6859 ], + "fg": [ 6954, 6969, 6968, 6967 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6851, 6858, 6857, 6856 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6851, 6858, 6857, 6856 ] } + { "id": "open", "fg": [ 6959, 6966, 6965, 6964 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6959, 6966, 6965, 6964 ] } ] }, { "id": "vp_door_shutter", - "fg": [ 6886, 6884, 6885, 6887 ], + "fg": [ 6994, 6992, 6993, 6995 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6891, 6889, 6890, 6892 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6891, 6889, 6890, 6892 ] } + { "id": "open", "fg": [ 6999, 6997, 6998, 7000 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6999, 6997, 6998, 7000 ] } ] }, { "id": "vp_door_shutter_left", - "fg": [ 6887, 6888, 6884, 6885 ], + "fg": [ 6995, 6996, 6992, 6993 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6892, 6893, 6889, 6890 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6892, 6893, 6889, 6890 ] } + { "id": "open", "fg": [ 7000, 7001, 6997, 6998 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7000, 7001, 6997, 6998 ] } ] }, { "id": "vp_door_shutter_right", - "fg": [ 6884, 6885, 6887, 6888 ], + "fg": [ 6992, 6993, 6995, 6996 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6889, 6890, 6892, 6893 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6889, 6890, 6892, 6893 ] } + { "id": "open", "fg": [ 6997, 6998, 7000, 7001 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6997, 6998, 7000, 7001 ] } ] }, { "id": "vp_halfboard_ne", - "fg": [ 6918, 6921, 6920, 6919 ], + "fg": [ 7026, 7029, 7028, 7027 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6918, 6921, 6920, 6919 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7026, 7029, 7028, 7027 ] } ] }, { "id": "vp_halfboard_nw", - "fg": [ 6922, 6925, 6924, 6923 ], + "fg": [ 7030, 7033, 7032, 7031 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6922, 6925, 6924, 6923 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7030, 7033, 7032, 7031 ] } ] }, { "id": "vp_halfboard_se", - "fg": [ 6926, 6929, 6928, 6927 ], + "fg": [ 7034, 7037, 7036, 7035 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6926, 6929, 6928, 6927 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7034, 7037, 7036, 7035 ] } ] }, { "id": "vp_halfboard_sw", - "fg": [ 6930, 6933, 6932, 6931 ], + "fg": [ 7038, 7041, 7040, 7039 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6930, 6933, 6932, 6931 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7038, 7041, 7040, 7039 ] } ] }, { "id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ], - "fg": [ 6934, 6936, 6937, 6935 ], + "fg": [ 7042, 7044, 7045, 7043 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6934, 6936, 6937, 6935 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7042, 7044, 7045, 7043 ] } ] }, { "id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ], - "fg": [ 6937, 6935, 6934, 6936 ], + "fg": [ 7045, 7043, 7042, 7044 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6937, 6935, 6934, 6936 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7045, 7043, 7042, 7044 ] } ] }, { "id": "vp_halfboard_vertical_t_left", - "fg": [ 6941, 6943, 6942, 6940 ], + "fg": [ 7049, 7051, 7050, 7048 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6941, 6943, 6942, 6940 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7049, 7051, 7050, 7048 ] } ] }, { "id": "vp_halfboard_vertical_t_right", - "fg": [ 6945, 6947, 6946, 6944 ], + "fg": [ 7053, 7055, 7054, 7052 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6945, 6947, 6946, 6944 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7053, 7055, 7054, 7052 ] } ] }, { "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ], - "fg": [ 6915, 6917, 6916, 6914 ], + "fg": [ 7023, 7025, 7024, 7022 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6915, 6917, 6916, 6914 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7023, 7025, 7024, 7022 ] } ] }, { "id": [ "vp_halfboard_horizontal_front", "vp_halfboard_horizontal_2_front", "vp_halfboard_cover" ], - "fg": [ 6906, 6909, 6908, 6907 ], + "fg": [ 7014, 7017, 7016, 7015 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6906, 6909, 6908, 6907 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7014, 7017, 7016, 7015 ] } ] }, { "id": "vp_halfboard_horizontal_rear", - "fg": [ 6910, 6913, 6912, 6911 ], + "fg": [ 7018, 7021, 7020, 7019 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6910, 6913, 6912, 6911 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7018, 7021, 7020, 7019 ] } ] }, { "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ], - "fg": [ 6939, 6938, 6939, 6938 ], + "fg": [ 7047, 7046, 7047, 7046 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6939, 6938, 6939, 6938 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7047, 7046, 7047, 7046 ] } ] }, { "id": "vp_halfboard_cover_left", - "fg": [ 6898, 6901, 6900, 6899 ], + "fg": [ 7006, 7009, 7008, 7007 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6898, 6901, 6900, 6899 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7006, 7009, 7008, 7007 ] } ] }, { "id": "vp_halfboard_cover_right", - "fg": [ 6902, 6905, 6904, 6903 ], + "fg": [ 7010, 7013, 7012, 7011 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6902, 6905, 6904, 6903 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7010, 7013, 7012, 7011 ] } ] }, { "id": "vp_halfboard_wheel_left", - "fg": [ 6948, 6951, 6950, 6949 ], + "fg": [ 7056, 7059, 7058, 7057 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6948, 6951, 6950, 6949 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7056, 7059, 7058, 7057 ] } ] }, { "id": "vp_halfboard_wheel_right", - "fg": [ 6952, 6955, 6954, 6953 ], + "fg": [ 7060, 7063, 7062, 7061 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6952, 6955, 6954, 6953 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7060, 7063, 7062, 7061 ] } ] }, { "id": "vp_hddoor_left", - "fg": [ 6957, 6959, 6958, 6956 ], + "fg": [ 7065, 7067, 7066, 7064 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6965, 6967, 6966, 6964 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6965, 6967, 6966, 6964 ] } + { "id": "open", "fg": [ 7073, 7075, 7074, 7072 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7073, 7075, 7074, 7072 ] } ] }, { "id": "vp_hddoor_right", - "fg": [ 6961, 6963, 6962, 6960 ], + "fg": [ 7069, 7071, 7070, 7068 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6985, 6987, 6986, 6984 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6985, 6987, 6986, 6984 ] } + { "id": "open", "fg": [ 7093, 7095, 7094, 7092 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7093, 7095, 7094, 7092 ] } ] }, { "id": "vp_hddoor_opaque_left", - "fg": [ 6973, 6975, 6974, 6972 ], + "fg": [ 7081, 7083, 7082, 7080 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6969, 6971, 6970, 6968 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6969, 6971, 6970, 6968 ] } + { "id": "open", "fg": [ 7077, 7079, 7078, 7076 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7077, 7079, 7078, 7076 ] } ] }, { "id": "vp_hddoor_opaque_right", - "fg": [ 6981, 6983, 6982, 6980 ], + "fg": [ 7089, 7091, 7090, 7088 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6977, 6979, 6978, 6976 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6977, 6979, 6978, 6976 ] } + { "id": "open", "fg": [ 7085, 7087, 7086, 7084 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7085, 7087, 7086, 7084 ] } ] }, { @@ -10527,11 +10753,11 @@ "vp_hddoor_full_sw", "vp_hddoor_full_rear_left" ], - "fg": [ 6957, 6959, 6958, 6956 ], + "fg": [ 7065, 7067, 7066, 7064 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6965, 6967, 6966, 6964 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6965, 6967, 6966, 6964 ] } + { "id": "open", "fg": [ 7073, 7075, 7074, 7072 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7073, 7075, 7074, 7072 ] } ] }, { @@ -10543,805 +10769,821 @@ "vp_hddoor_full_se", "vp_hddoor_full_rear_right" ], - "fg": [ 6961, 6963, 6962, 6960 ], + "fg": [ 7069, 7071, 7070, 7068 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6985, 6987, 6986, 6984 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6985, 6987, 6986, 6984 ] } + { "id": "open", "fg": [ 7093, 7095, 7094, 7092 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7093, 7095, 7094, 7092 ] } ] }, { "id": "vp_hddoor_opaque_full_left", - "fg": [ 6973, 6975, 6974, 6972 ], + "fg": [ 7081, 7083, 7082, 7080 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6969, 6971, 6970, 6968 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6969, 6971, 6970, 6968 ] } + { "id": "open", "fg": [ 7077, 7079, 7078, 7076 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7077, 7079, 7078, 7076 ] } ] }, { "id": "vp_hddoor_opaque_full_right", - "fg": [ 6981, 6983, 6982, 6980 ], + "fg": [ 7089, 7091, 7090, 7088 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6977, 6979, 6978, 6976 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6977, 6979, 6978, 6976 ] } + { "id": "open", "fg": [ 7085, 7087, 7086, 7084 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7085, 7087, 7086, 7084 ] } ] }, - { "id": "vp_saddle_scooter", "fg": [ 6989, 6991, 6990, 6988 ], "rotates": true }, + { "id": "vp_saddle_scooter", "fg": [ 7097, 7099, 7098, 7096 ], "rotates": true }, { "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ], - "fg": [ 6993, 6995, 6994, 6992 ], + "fg": [ 7101, 7103, 7102, 7100 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6993, 6995, 6994, 6992 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7101, 7103, 7102, 7100 ] } ] }, { "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ], - "fg": [ 6997, 6999, 6998, 6996 ], + "fg": [ 7105, 7107, 7106, 7104 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 6997, 6999, 6998, 6996 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7105, 7107, 7106, 7104 ] } ] }, { "id": "vp_bed", - "fg": [ 7001, 7003, 7002, 7000 ], + "fg": [ 7109, 7111, 7110, 7108 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7001, 7003, 7002, 7000 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7109, 7111, 7110, 7108 ] } ] }, { "id": "vp_hatch_left", - "fg": [ 7006, 7013, 7012, 7011 ], + "fg": [ 7114, 7121, 7120, 7119 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7007, 7010, 7009, 7008 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7007, 7010, 7009, 7008 ] } + { "id": "open", "fg": [ 7115, 7118, 7117, 7116 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7115, 7118, 7117, 7116 ] } ] }, { "id": "vp_hatch_right", - "fg": [ 7012, 7011, 7006, 7013 ], + "fg": [ 7120, 7119, 7114, 7121 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7009, 7008, 7007, 7010 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7009, 7008, 7007, 7010 ] } + { "id": "open", "fg": [ 7117, 7116, 7115, 7118 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7117, 7116, 7115, 7118 ] } ] }, { "id": "vp_hatch_wheel_left", - "fg": [ 7006, 7027, 7012, 7011 ], + "fg": [ 7114, 7135, 7120, 7119 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7007, 7026, 7009, 7008 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7007, 7010, 7009, 7008 ] } + { "id": "open", "fg": [ 7115, 7134, 7117, 7116 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7115, 7118, 7117, 7116 ] } ] }, { "id": "vp_hatch_wheel_right", - "fg": [ 7012, 7011, 7006, 7027 ], + "fg": [ 7120, 7119, 7114, 7135 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7009, 7008, 7007, 7026 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7009, 7008, 7007, 7026 ] } + { "id": "open", "fg": [ 7117, 7116, 7115, 7134 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7117, 7116, 7115, 7134 ] } ] }, { "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ], - "fg": [ 7004, 7012, 7011, 7006 ], + "fg": [ 7112, 7120, 7119, 7114 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7005, 7009, 7008, 7007 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7005, 7009, 7008, 7007 ] } + { "id": "open", "fg": [ 7113, 7117, 7116, 7115 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7113, 7117, 7116, 7115 ] } ] }, { "id": "vp_hatch_horizontal_front", - "fg": [ 7011, 7006, 7004, 7012 ], + "fg": [ 7119, 7114, 7112, 7120 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7008, 7007, 7005, 7009 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7008, 7007, 7005, 7009 ] } + { "id": "open", "fg": [ 7116, 7115, 7113, 7117 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7116, 7115, 7113, 7117 ] } ] }, { "id": "vp_hatch_opaque_left", - "fg": [ 7016, 7023, 7022, 7021 ], + "fg": [ 7124, 7131, 7130, 7129 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7017, 7020, 7019, 7018 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7017, 7020, 7019, 7018 ] } + { "id": "open", "fg": [ 7125, 7128, 7127, 7126 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7125, 7128, 7127, 7126 ] } ] }, { "id": "vp_hatch_opaque_right", - "fg": [ 7022, 7021, 7016, 7023 ], + "fg": [ 7130, 7129, 7124, 7131 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7019, 7018, 7017, 7020 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7019, 7018, 7017, 7020 ] } + { "id": "open", "fg": [ 7127, 7126, 7125, 7128 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7127, 7126, 7125, 7128 ] } ] }, { "id": "vp_hatch_opaque_wheel_left", - "fg": [ 7016, 7025, 7022, 7021 ], + "fg": [ 7124, 7133, 7130, 7129 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7017, 7024, 7019, 7018 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7017, 7024, 7019, 7018 ] } + { "id": "open", "fg": [ 7125, 7132, 7127, 7126 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7125, 7132, 7127, 7126 ] } ] }, { "id": "vp_hatch_opaque_wheel_right", - "fg": [ 7022, 7021, 7016, 7025 ], + "fg": [ 7130, 7129, 7124, 7133 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7019, 7018, 7017, 7024 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7019, 7018, 7017, 7024 ] } + { "id": "open", "fg": [ 7127, 7126, 7125, 7132 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7127, 7126, 7125, 7132 ] } ] }, { "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ], - "fg": [ 7014, 7022, 7021, 7016 ], + "fg": [ 7122, 7130, 7129, 7124 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7015, 7019, 7018, 7017 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7015, 7019, 7018, 7017 ] } + { "id": "open", "fg": [ 7123, 7127, 7126, 7125 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7123, 7127, 7126, 7125 ] } ] }, { "id": "vp_hatch_opaque_horizontal_front", - "fg": [ 7021, 7016, 7014, 7022 ], + "fg": [ 7129, 7124, 7122, 7130 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7018, 7017, 7015, 7019 ] }, - { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7018, 7017, 7015, 7019 ] } + { "id": "open", "fg": [ 7126, 7125, 7123, 7127 ] }, + { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7126, 7125, 7123, 7127 ] } ] }, { "id": [ "vp_wheel_wide", "vp_wheel_wide_steerable", "vp_wheel_wide_or", "vp_wheel_wide_or_steerable" ], - "fg": [ 7029, 7028, 7029, 7028 ], + "fg": [ 7137, 7136, 7137, 7136 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7029, 7028, 7029, 7028 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7137, 7136, 7137, 7136 ] } ] }, { "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ], - "fg": [ 7038, 7041, 7040, 7039 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 7038, 7041, 7040, 7039 ] } ], + "fg": [ 7146, 7149, 7148, 7147 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7146, 7149, 7148, 7147 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear", - "fg": [ 7055, 7056, 7055, 7054 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 7055, 7056, 7055, 7054 ] } ], + "fg": [ 7163, 7164, 7163, 7162 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7163, 7164, 7163, 7162 ] } ], "multitile": true }, { "id": "vp_windshield_nw", - "fg": [ 7050, 7053, 7052, 7051 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6763, 6763, 6763, 6763 ], "bg": [ 7050, 7053, 7052, 7051 ] } ], + "fg": [ 7158, 7161, 7160, 7159 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7158, 7161, 7160, 7159 ] } ], "multitile": true }, { "id": "vp_windshield_ne", - "fg": [ 7046, 7049, 7048, 7047 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6762, 6762, 6762, 6762 ], "bg": [ 7046, 7049, 7048, 7047 ] } ], + "fg": [ 7154, 7157, 7156, 7155 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7154, 7157, 7156, 7155 ] } ], "multitile": true }, { "id": "vp_windshield_sw", - "fg": [ 7042, 7045, 7057, 7043 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6763, 6763, 6763, 6763 ], "bg": [ 7042, 7045, 7057, 7043 ] } ], + "fg": [ 7150, 7153, 7165, 7151 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7150, 7153, 7165, 7151 ] } ], "multitile": true }, { "id": "vp_windshield_se", - "fg": [ 7044, 7060, 7042, 7058 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6762, 6762, 6762, 6762 ], "bg": [ 7044, 7060, 7042, 7058 ] } ], + "fg": [ 7152, 7168, 7150, 7166 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7152, 7168, 7150, 7166 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ], - "fg": [ 7042, 7045, 7044, 7043 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6762, 6762, 6762, 6762 ], "bg": [ 7042, 7045, 7044, 7043 ] } ], + "fg": [ 7150, 7153, 7152, 7151 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7150, 7153, 7152, 7151 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ], - "fg": [ 7057, 7060, 7059, 7058 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6763, 6763, 6763, 6763 ], "bg": [ 7057, 7060, 7059, 7058 ] } ], + "fg": [ 7165, 7168, 7167, 7166 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7165, 7168, 7167, 7166 ] } ], "multitile": true }, { "id": "vp_windshield_cover_left", - "fg": [ 7030, 7033, 7032, 7031 ], + "fg": [ 7138, 7141, 7140, 7139 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7030, 7033, 7032, 7031 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7138, 7141, 7140, 7139 ] } ] }, { "id": "vp_windshield_cover_right", - "fg": [ 7034, 7037, 7036, 7035 ], + "fg": [ 7142, 7145, 7144, 7143 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7034, 7037, 7036, 7035 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7142, 7145, 7144, 7143 ] } ] }, { "id": "vp_windshield_wheel_left", - "fg": [ 7062, 7065, 7064, 7063 ], + "fg": [ 7170, 7173, 7172, 7171 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7062, 7065, 7064, 7063 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7170, 7173, 7172, 7171 ] } ] }, { "id": "vp_windshield_wheel_right", - "fg": [ 7066, 7069, 7068, 7067 ], + "fg": [ 7174, 7177, 7176, 7175 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6764, 6764, 6764, 6764 ], "bg": [ 7066, 7069, 7068, 7067 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7174, 7177, 7176, 7175 ] } ] }, { "id": "vp_windshield_vertical_2_left", - "fg": [ 7042, 7061, 7044, 7043 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6762, 6762, 6762, 6762 ], "bg": [ 7042, 7061, 7044, 7043 ] } ], + "fg": [ 7150, 7169, 7152, 7151 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7150, 7169, 7152, 7151 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_right", - "fg": [ 7057, 7060, 7059, 7061 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6763, 6763, 6763, 6763 ], "bg": [ 7057, 7060, 7059, 7061 ] } ], + "fg": [ 7165, 7168, 7167, 7169 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7165, 7168, 7167, 7169 ] } ], "multitile": true }, { "id": [ "vp_windshield_full", "vp_windshield_full_horizontal_rear" ], - "fg": [ 7072, 7070, 7071, 7073 ], - "additional_tiles": [ { "id": "broken", "fg": 7940, "bg": [ 7072, 7070, 7071, 7073 ] } ], + "fg": [ 7180, 7178, 7179, 7181 ], + "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7180, 7178, 7179, 7181 ] } ], "multitile": true }, { "id": "vp_windshield_full_horizontal_front", - "fg": [ 7071, 7073, 7072, 7070 ], - "additional_tiles": [ { "id": "broken", "fg": 7940, "bg": [ 7071, 7073, 7072, 7070 ] } ], + "fg": [ 7179, 7181, 7180, 7178 ], + "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7179, 7181, 7180, 7178 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ], - "fg": [ 7073, 7074, 7070, 7071 ], - "additional_tiles": [ { "id": "broken", "fg": 7940, "bg": [ 7073, 7074, 7070, 7071 ] } ], + "fg": [ 7181, 7182, 7178, 7179 ], + "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7181, 7182, 7178, 7179 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ], - "fg": [ 7070, 7071, 7073, 7074 ], - "additional_tiles": [ { "id": "broken", "fg": 7940, "bg": [ 7070, 7071, 7073, 7074 ] } ], + "fg": [ 7178, 7179, 7181, 7182 ], + "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7178, 7179, 7181, 7182 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_left", - "fg": [ 7073, 7075, 7070, 7071 ], - "additional_tiles": [ { "id": "broken", "fg": 7940, "bg": [ 7073, 7075, 7070, 7071 ] } ], + "fg": [ 7181, 7183, 7178, 7179 ], + "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7181, 7183, 7178, 7179 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_right", - "fg": [ 7070, 7071, 7073, 7075 ], - "additional_tiles": [ { "id": "broken", "fg": 7940, "bg": [ 7070, 7071, 7073, 7075 ] } ], + "fg": [ 7178, 7179, 7181, 7183 ], + "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7178, 7179, 7181, 7183 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_front_edge", - "fg": [ 7077, 7079, 7078, 7076 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 7077, 7079, 7078, 7076 ] } ], + "fg": [ 7185, 7187, 7186, 7184 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7185, 7187, 7186, 7184 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear_edge", - "fg": [ 7088, 7091, 7090, 7089 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 7088, 7091, 7090, 7089 ] } ], + "fg": [ 7196, 7199, 7198, 7197 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7196, 7199, 7198, 7197 ] } ], "multitile": true }, { "id": "vp_windshield_nw_edge", - "fg": [ 7085, 7087, 7086, 7084 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 7085, 7087, 7086, 7084 ] } ], + "fg": [ 7193, 7195, 7194, 7192 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7193, 7195, 7194, 7192 ] } ], "multitile": true }, { "id": "vp_windshield_ne_edge", - "fg": [ 7081, 7083, 7082, 7080 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 7081, 7083, 7082, 7080 ] } ], + "fg": [ 7189, 7191, 7190, 7188 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7189, 7191, 7190, 7188 ] } ], "multitile": true }, { "id": "vp_windshield_sw_edge", - "fg": [ 6930, 6933, 6932, 6931 ], + "fg": [ 7038, 7041, 7040, 7039 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 6930, 6933, 6932, 6931 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7038, 7041, 7040, 7039 ] } ] }, { "id": "vp_windshield_se_edge", - "fg": [ 6926, 6929, 6928, 6927 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6761, 6761, 6761, 6761 ], "bg": [ 6926, 6929, 6928, 6927 ] } ] - }, - { "id": "mon_shadow", "fg": 6564 }, - { "id": "corpse_mon_zombie_brainless", "fg": 6634 }, - { "id": "mon_zombie_armored", "fg": 6649 }, - { "id": "mon_beekeeper", "fg": 6663 }, - { "id": "overlay_effect_earphones", "fg": 6690 }, - { "id": "overlay_effect_evil", "fg": 6691 }, - { "id": "overlay_effect_sleep", "fg": 6692 }, - { "id": "overlay_effect_teleglow", "fg": 6693 }, - { "id": "overlay_wielded_woodgreatbow", "fg": 6696 }, - { "id": "overlay_female_worn_helmet_riot_raised", "fg": 6699 }, - { "id": "overlay_male_worn_helmet_riot_raised", "fg": 6700 } + "fg": [ 7034, 7037, 7036, 7035 ], + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7034, 7037, 7036, 7035 ] } ] + }, + { "id": "overlay_mutation_EXODII_BODY_1", "fg": 6656 }, + { "id": "mon_shadow", "fg": 6661 }, + { "id": "corpse_mon_zombie_brainless", "fg": 6732 }, + { "id": "mon_zombie_shady", "fg": 6747 }, + { "id": "mon_zombie_armored", "fg": 6751 }, + { "id": "mon_beekeeper", "fg": 6769 }, + { "id": "mon_zougar_shady", "fg": 6788 }, + { "id": "overlay_effect_earphones", "fg": 6798 }, + { "id": "overlay_effect_evil", "fg": 6799 }, + { "id": "overlay_effect_sleep", "fg": 6800 }, + { "id": "overlay_effect_teleglow", "fg": 6801 }, + { "id": "overlay_wielded_woodgreatbow", "fg": 6804 }, + { "id": "overlay_female_worn_helmet_riot_raised", "fg": 6807 }, + { "id": "overlay_male_worn_helmet_riot_raised", "fg": 6808 } ] }, { "file": "centered.png", - "//": "range 7104 to 7119", + "//": "range 7200 to 7215", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -16, "tiles": [ - { "id": "vp_wing_mirror", "fg": [ 7113, 7115, 7114, 7112 ], "rotates": true }, - { "id": "vp_wing_mirror_left", "fg": [ 7105, 7107, 7106, 7104 ], "rotates": true }, - { "id": "vp_wing_mirror_right", "fg": [ 7109, 7111, 7110, 7108 ], "rotates": true } + { "id": "vp_wing_mirror", "fg": [ 7209, 7211, 7210, 7208 ], "rotates": true }, + { "id": "vp_wing_mirror_left", "fg": [ 7201, 7203, 7202, 7200 ], "rotates": true }, + { "id": "vp_wing_mirror_right", "fg": [ 7205, 7207, 7206, 7204 ], "rotates": true } ] }, { "file": "large.png", - "//": "range 7120 to 7311", + "//": "range 7216 to 7407", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "f_CTscan", "fg": 7125 }, - { "id": "f_MRI", "fg": 7126 }, - { "id": "f_rotary_clothesline", "fg": 7127 }, - { "id": "mon_troll", "fg": 7129, "bg": 7140 }, - { "id": "mon_albino_penguin", "fg": 7130, "bg": 7141 }, - { "id": "mon_gelatin", "fg": 7131, "bg": 7141 }, - { "id": "mon_smoker_brute", "fg": 7132, "bg": 7141 }, + { "id": "f_CTscan", "fg": 7221 }, + { "id": "f_MRI", "fg": 7222 }, + { "id": "f_rotary_clothesline", "fg": 7223 }, + { "id": "mon_troll", "fg": 7225, "bg": 7236 }, + { "id": "mon_albino_penguin", "fg": 7226, "bg": 7237 }, + { "id": "mon_gelatin", "fg": 7227, "bg": 7237 }, + { "id": "mon_smoker_brute", "fg": 7228, "bg": 7237 }, { "id": "mon_exodii_quad", "fg": [ - { "weight": 15, "sprite": 7143 }, - { "weight": 10, "sprite": 7144 }, - { "weight": 15, "sprite": 7145 }, - { "weight": 15, "sprite": 7146 } + { "weight": 15, "sprite": 7239 }, + { "weight": 10, "sprite": 7240 }, + { "weight": 15, "sprite": 7241 }, + { "weight": 15, "sprite": 7242 } ], - "bg": 7140 + "bg": 7236 }, { "id": "mon_exodii_turret", "fg": [ - { "weight": 15, "sprite": 7147 }, - { "weight": 5, "sprite": 7148 }, - { "weight": 15, "sprite": 7149 }, - { "weight": 15, "sprite": 7150 } + { "weight": 15, "sprite": 7243 }, + { "weight": 5, "sprite": 7244 }, + { "weight": 15, "sprite": 7245 }, + { "weight": 15, "sprite": 7246 } ], - "bg": 7141 - }, - { "id": "mon_fungal_blossom", "fg": 7151, "bg": 7141 }, - { "id": "mon_gas_zombie", "fg": 7152, "bg": 7142 }, - { "id": "mon_giant_crayfish", "fg": 7153, "bg": 7142 }, - { "id": "mon_slug_giant", "fg": 7154, "bg": 7140 }, - { "id": "mon_dog_zombie_hulk", "fg": 7155, "bg": 7141 }, - { "id": "mon_zhark", "fg": 7156 }, - { "id": "mon_ant_soldier", "fg": 7164, "bg": 7140 }, - { "id": "mon_ant_acid_soldier", "fg": 7162, "bg": 7140 }, - { "id": "corpse_mon_ant_soldier", "fg": 7160 }, - { "id": "corpse_mon_ant_acid_soldier", "fg": 7158 }, - { "id": "mon_ant_queen", "fg": 7163, "bg": 7140 }, - { "id": "mon_ant_acid_queen", "fg": 7161, "bg": 7140 }, - { "id": "corpse_mon_ant_queen", "fg": 7159 }, - { "id": "corpse_mon_ant_acid_queen", "fg": 7157 }, - { "id": "mon_bear", "fg": 7165, "bg": 7141 }, - { "id": "mon_blob_large", "fg": 7166, "bg": 7140 }, - { "id": "mon_boomer_huge", "fg": 7168, "bg": 7141 }, + "bg": 7237 + }, + { "id": "mon_fungal_blossom", "fg": 7247, "bg": 7237 }, + { "id": "mon_gas_zombie", "fg": 7248, "bg": 7238 }, + { "id": "mon_giant_crayfish", "fg": 7249, "bg": 7237 }, + { "id": "mon_slug_giant", "fg": 7250, "bg": 7236 }, + { "id": "mon_dog_zombie_hulk", "fg": 7251, "bg": 7237 }, + { "id": "mon_zhark", "fg": 7252 }, + { "id": "mon_ant_soldier", "fg": 7260, "bg": 7236 }, + { "id": "mon_ant_acid_soldier", "fg": 7258, "bg": 7236 }, + { "id": "corpse_mon_ant_soldier", "fg": 7256 }, + { "id": "corpse_mon_ant_acid_soldier", "fg": 7254 }, + { "id": "mon_ant_queen", "fg": 7259, "bg": 7236 }, + { "id": "mon_ant_acid_queen", "fg": 7257, "bg": 7236 }, + { "id": "corpse_mon_ant_queen", "fg": 7255 }, + { "id": "corpse_mon_ant_acid_queen", "fg": 7253 }, + { "id": "mon_bear", "fg": 7261, "bg": 7237 }, + { "id": "mon_bear_mutant_3headed", "fg": 7262, "bg": 7237 }, + { "id": "mon_blob_large", "fg": 7263, "bg": 7236 }, + { "id": "mon_boomer_huge", "fg": 7265, "bg": 7237 }, { "id": "mon_cow", "fg": [ - { "weight": 1, "sprite": 7169 }, - { "weight": 12, "sprite": 7170 }, - { "weight": 6, "sprite": 7171 }, - { "weight": 6, "sprite": 7172 }, - { "weight": 12, "sprite": 7173 } + { "weight": 1, "sprite": 7266 }, + { "weight": 12, "sprite": 7267 }, + { "weight": 6, "sprite": 7268 }, + { "weight": 6, "sprite": 7269 }, + { "weight": 12, "sprite": 7270 } ], - "bg": 7141 + "bg": 7237 }, - { "id": "mon_zow", "fg": 7174, "bg": 7141 }, + { "id": "mon_zow", "fg": 7271, "bg": 7237 }, { "id": "mon_crawler", - "fg": [ { "weight": 1, "sprite": 7175 }, { "weight": 1, "sprite": 7176 }, { "weight": 1, "sprite": 7177 } ], - "bg": 7141 + "fg": [ { "weight": 1, "sprite": 7272 }, { "weight": 1, "sprite": 7273 }, { "weight": 1, "sprite": 7274 } ], + "bg": 7237 }, - { "id": "mon_dark_wyrm", "fg": 7178, "bg": 7140 }, - { "id": "mon_deer", "fg": [ { "weight": 1, "sprite": 7179 }, { "weight": 2, "sprite": 7180 } ], "bg": 7141 }, - { "id": "mon_devourer", "fg": 7181, "bg": 7141 }, - { "id": "mon_dog_zombie_brute", "fg": 7182, "bg": 7141 }, + { "id": "mon_dark_wyrm", "fg": 7275, "bg": 7236 }, + { "id": "mon_deer", "fg": [ { "weight": 1, "sprite": 7276 }, { "weight": 2, "sprite": 7277 } ], "bg": 7237 }, + { + "id": "mon_deer_mutant_spider", + "fg": [ { "weight": 1, "sprite": 7278 }, { "weight": 2, "sprite": 7279 } ], + "bg": 7237 + }, + { "id": "mon_devourer", "fg": 7280, "bg": 7237 }, + { "id": "mon_dog_skeleton_brute", "fg": 7281, "bg": 7237 }, + { "id": "mon_dog_zombie_brute", "fg": 7282, "bg": 7237 }, { "id": "mon_flying_polyp", - "fg": [ { "weight": 1, "sprite": 7183 }, { "weight": 1, "sprite": 7184 }, { "weight": 1, "sprite": 7185 } ] + "fg": [ { "weight": 1, "sprite": 7283 }, { "weight": 1, "sprite": 7284 }, { "weight": 1, "sprite": 7285 } ] }, - { "id": "mon_frog_giant", "fg": 7186, "bg": 7140 }, - { "id": "mon_gator", "fg": 7188, "bg": 7140 }, - { "id": "mon_horse", "fg": [ { "weight": 1, "sprite": 7189 }, { "weight": 1, "sprite": 7190 } ], "bg": 7141 }, - { "id": "mon_zombie_horse", "fg": 7191, "bg": 7141 }, - { "id": "mon_human_snail", "fg": 7192, "bg": 7140 }, - { "id": "mon_jabberwock", "fg": 7193, "bg": 7140 }, + { "id": "mon_frog_giant", "fg": 7286, "bg": 7236 }, + { "id": "mon_gator", "fg": 7288, "bg": 7236 }, + { "id": "mon_horse", "fg": [ { "weight": 1, "sprite": 7289 }, { "weight": 1, "sprite": 7290 } ], "bg": 7237 }, + { "id": "mon_zombie_horse", "fg": 7291, "bg": 7237 }, + { "id": "mon_human_snail", "fg": 7292, "bg": 7236 }, + { "id": "mon_jabberwock", "fg": 7293, "bg": 7236 }, { "id": "mon_lady_bug_giant", "fg": [ - { "weight": 90, "sprite": 7194 }, - { "weight": 60, "sprite": 7195 }, - { "weight": 50, "sprite": 7196 }, - { "weight": 20, "sprite": 7197 }, - { "weight": 1, "sprite": 7198 } + { "weight": 90, "sprite": 7294 }, + { "weight": 60, "sprite": 7295 }, + { "weight": 50, "sprite": 7296 }, + { "weight": 20, "sprite": 7297 }, + { "weight": 1, "sprite": 7298 } ], - "bg": 7141 - }, - { "id": "mon_mantis_small", "fg": 7199, "bg": 7141 }, - { "id": "mon_mech_lifter", "fg": 7200 }, - { "id": "rid_mon_mech_lifter", "fg": 7201 }, - { "id": "mon_mi_go", "fg": 7202, "bg": 7141 }, - { "id": "mon_mi_go_slaver", "fg": 7206, "bg": 7141 }, - { "id": "mon_mi_go_surgeon", "fg": 7207, "bg": 7141 }, - { "id": "mon_mi_go_scout", "fg": 7205, "bg": 7141 }, - { "id": "mon_mi_go_guard", "fg": 7203, "bg": 7140 }, - { "id": "mon_mi_go_myrmidon", "fg": 7204, "bg": 7140 }, - { "id": "mon_moose", "fg": [ { "weight": 2, "sprite": 7208 }, { "weight": 2, "sprite": 7209 } ], "bg": 7140 }, - { "id": "mon_reindeer", "fg": 7212, "bg": 7141 }, - { "id": "mon_sheep", "fg": 7213, "bg": 7142 }, - { "id": "mon_spider_fungus", "fg": 7214, "bg": 7142 }, - { "id": "mon_twisted_body", "fg": 7215, "bg": 7141 }, - { "id": "mon_wasp", "fg": 7216, "bg": 7141 }, - { "id": "mon_darkman", "fg": 7217 }, - { "id": "mon_zombear", "fg": 7218, "bg": 7141 }, - { "id": "mon_zombear_skeleton", "fg": 7219, "bg": 7141 }, - { "id": "mon_zombie_biter", "fg": 7220, "bg": 7141 }, - { "id": "mon_zombie_brute_winged", "fg": 7221, "bg": 7140 }, - { "id": "mon_zombie_dog_brute_acidic", "fg": 7222, "bg": 7141 }, + "bg": 7237 + }, + { "id": "mon_mantis_small", "fg": 7299, "bg": 7237 }, + { "id": "mon_mech_lifter", "fg": 7300 }, + { "id": "rid_mon_mech_lifter", "fg": 7301 }, + { "id": "mon_mi_go", "fg": 7302, "bg": 7237 }, + { "id": "mon_mi_go_slaver", "fg": 7306, "bg": 7237 }, + { "id": "mon_mi_go_surgeon", "fg": 7307, "bg": 7237 }, + { "id": "mon_mi_go_scout", "fg": 7305, "bg": 7237 }, + { "id": "mon_mi_go_guard", "fg": 7303, "bg": 7236 }, + { "id": "mon_mi_go_myrmidon", "fg": 7304, "bg": 7236 }, + { "id": "mon_moose", "fg": [ { "weight": 2, "sprite": 7308 }, { "weight": 2, "sprite": 7309 } ], "bg": 7236 }, + { "id": "mon_reindeer", "fg": 7312, "bg": 7237 }, + { "id": "mon_sheep", "fg": 7313, "bg": 7238 }, + { "id": "mon_spider_fungus", "fg": 7314, "bg": 7238 }, + { "id": "mon_tiger", "fg": 7315, "bg": 7237 }, + { "id": "mon_twisted_body", "fg": 7316, "bg": 7237 }, + { "id": "mon_wasp", "fg": 7317, "bg": 7237 }, + { "id": "mon_wolf_mutant_huge", "fg": 7318, "bg": 7236 }, + { "id": "mon_darkman", "fg": 7319 }, + { "id": "mon_zeer", "fg": 7320, "bg": 7237 }, + { "id": "mon_zeindeer", "fg": 7321, "bg": 7237 }, + { "id": "mon_ziger", "fg": 7322, "bg": 7237 }, + { "id": "mon_zombear", "fg": 7323, "bg": 7237 }, + { "id": "mon_zombear_acidic", "fg": 7324, "bg": 7237 }, + { "id": "mon_zombear_skeleton", "fg": 7325, "bg": 7237 }, + { "id": "mon_zombie_biter", "fg": 7326, "bg": 7237 }, + { "id": "mon_zombie_brute_winged", "fg": 7327, "bg": 7236 }, + { "id": "mon_zombie_dog_brute_acidic", "fg": 7328, "bg": 7237 }, { "id": "mon_zombie_electric", - "fg": [ { "weight": 1, "sprite": 7224 }, { "weight": 1, "sprite": 7223 } ], - "bg": 7142 + "fg": [ { "weight": 1, "sprite": 7330 }, { "weight": 1, "sprite": 7329 } ], + "bg": 7238 }, { "id": "mon_zombie_nullfield", - "fg": [ { "weight": 1, "sprite": 7226 }, { "weight": 1, "sprite": 7225 } ], - "bg": 7142 - }, - { "id": "mon_zombie_smoker", "fg": 7227, "bg": 7142 }, - { "id": "mon_zombie_smoker_fungus", "fg": 7228, "bg": 7142 }, - { "id": "mon_zombie_soldier_acid_2", "fg": 7229, "bg": 7141 }, - { "id": "mon_zombie_urchin", "fg": 7231, "bg": 7141 }, - { "id": "mon_zombull", "fg": 7232, "bg": 7141 }, - { "id": "mon_zoose", "fg": 7233, "bg": 7140 }, - { "id": "mon_nursebot_defective", "fg": 7235, "bg": 7142 }, - { "id": "mon_nursebot", "fg": 7234, "bg": 7142 }, - { "id": "mon_zombie_brute_shocker", "fg": 7238, "bg": 7141 }, - { "id": "mon_skeleton_electric", "fg": 7239, "bg": 7142 }, - { "id": "mon_sludge_crawler", "fg": 7240, "bg": 7140 }, - { "id": "mon_spider_jumping_giant", "fg": 7246, "bg": 7142 }, - { "id": "mon_spider_web", "fg": 7250, "bg": 7142 }, - { "id": "corpse_mon_spider_web", "fg": 7241 }, - { "id": "mon_spider_wolf_giant", "fg": 7254, "bg": 7142 }, - { "id": "corpse_mon_spider_wolf_giant", "fg": 7242 }, - { "id": "mon_dermatik_incubator_spider", "fg": 7243, "bg": 7142 }, - { "id": "corpse_mon_dermatik_incubator_spider", "fg": 7241 }, - { "id": "mon_spider_cellar_giant", "fg": 7244, "bg": 7142 }, - { "id": "mon_spider_cellar_mega", "fg": 7245, "bg": 7141 }, - { "id": "mon_spider_jumping_mega", "fg": 7247, "bg": 7141 }, - { "id": "mon_spider_trapdoor_giant", "fg": 7248, "bg": 7142 }, - { "id": "mon_spider_trapdoor_mega", "fg": 7249, "bg": 7140 }, - { "id": "mon_spider_web_mega", "fg": 7251, "bg": 7140 }, - { "id": "mon_spider_widow_giant", "fg": 7252, "bg": 7142 }, - { "id": "mon_spider_widow_mega", "fg": 7253, "bg": 7140 }, - { "id": "mon_spider_wolf_mega", "fg": 7255, "bg": 7140 }, - { "id": "mon_dog_thing", "fg": 7256, "bg": 7141 }, - { "id": "mon_headless_dog_thing", "fg": 7257, "bg": 7141 }, - { "id": "mon_thing", "fg": 7258, "bg": 7140 }, - { "id": "mon_triffid_queen", "fg": 7259, "bg": 7140 }, - { "id": "mon_crows_m240", "fg": 7260, "bg": 7141 }, - { "id": "mon_turret_bmg", "fg": 7261, "bg": 7141 }, - { "id": "mon_turret_rifle", "fg": 7262, "bg": 7141 }, - { "id": "mon_vinebeast", "fg": 7265, "bg": 7140 }, - { "id": "mon_zombie_brute_ninja", "fg": 7266, "bg": 7141 }, - { "id": "mon_zombie_brute_grappler", "fg": 7267, "bg": 7141 }, + "fg": [ { "weight": 1, "sprite": 7332 }, { "weight": 1, "sprite": 7331 } ], + "bg": 7238 + }, + { "id": "mon_zombie_pig_gas", "fg": 7333, "bg": 7238 }, + { "id": "mon_zombie_smoker", "fg": 7334, "bg": 7238 }, + { "id": "mon_zombie_smoker_fungus", "fg": 7335, "bg": 7238 }, + { "id": "mon_zombie_soldier_acid_2", "fg": 7336, "bg": 7237 }, + { "id": "mon_zombie_urchin", "fg": 7338, "bg": 7237 }, + { "id": "mon_zombull", "fg": 7339, "bg": 7237 }, + { "id": "mon_zoose", "fg": 7340, "bg": 7236 }, + { "id": "mon_zoose_brute", "fg": 7341, "bg": 7236 }, + { "id": "mon_zoose_thorny", "fg": 7342, "bg": 7236 }, + { "id": "mon_nursebot_defective", "fg": 7344, "bg": 7238 }, + { "id": "mon_nursebot", "fg": 7343, "bg": 7238 }, + { "id": "mon_zombie_brute_shocker", "fg": 7347, "bg": 7237 }, + { "id": "mon_skeleton_electric", "fg": 7348, "bg": 7238 }, + { "id": "mon_sludge_crawler", "fg": 7349, "bg": 7236 }, + { "id": "mon_spider_jumping_giant", "fg": 7355, "bg": 7238 }, + { "id": "mon_spider_web", "fg": 7359, "bg": 7238 }, + { "id": "corpse_mon_spider_web", "fg": 7350 }, + { "id": "mon_spider_wolf_giant", "fg": 7363, "bg": 7238 }, + { "id": "corpse_mon_spider_wolf_giant", "fg": 7351 }, + { "id": "mon_dermatik_incubator_spider", "fg": 7352, "bg": 7238 }, + { "id": "corpse_mon_dermatik_incubator_spider", "fg": 7350 }, + { "id": "mon_spider_cellar_giant", "fg": 7353, "bg": 7238 }, + { "id": "mon_spider_cellar_mega", "fg": 7354, "bg": 7237 }, + { "id": "mon_spider_jumping_mega", "fg": 7356, "bg": 7237 }, + { "id": "mon_spider_trapdoor_giant", "fg": 7357, "bg": 7238 }, + { "id": "mon_spider_trapdoor_mega", "fg": 7358, "bg": 7236 }, + { "id": "mon_spider_web_mega", "fg": 7360, "bg": 7236 }, + { "id": "mon_spider_widow_giant", "fg": 7361, "bg": 7238 }, + { "id": "mon_spider_widow_mega", "fg": 7362, "bg": 7236 }, + { "id": "mon_spider_wolf_mega", "fg": 7364, "bg": 7236 }, + { "id": "mon_dog_thing", "fg": 7365, "bg": 7237 }, + { "id": "mon_headless_dog_thing", "fg": 7366, "bg": 7237 }, + { "id": "mon_thing", "fg": 7367, "bg": 7236 }, + { "id": "mon_triffid_queen", "fg": 7368, "bg": 7236 }, + { "id": "mon_crows_m240", "fg": 7369, "bg": 7237 }, + { "id": "mon_turret_bmg", "fg": 7370, "bg": 7237 }, + { "id": "mon_turret_rifle", "fg": 7371, "bg": 7237 }, + { "id": "mon_vinebeast", "fg": 7374, "bg": 7236 }, + { "id": "mon_zombie_brute_ninja", "fg": 7375, "bg": 7237 }, + { "id": "mon_zombie_brute_grappler", "fg": 7376, "bg": 7237 }, { "id": [ "forest_thick", "special_forest_thick" ], - "fg": [ { "weight": 4, "sprite": 7273 }, { "weight": 1, "sprite": 7274 } ], - "bg": 7285, + "fg": [ { "weight": 4, "sprite": 7382 }, { "weight": 1, "sprite": 7383 } ], + "bg": 7394, "rotates": false }, - { "id": "bridgehead_ground", "fg": [ 7278, 7277, 7279, 7280 ], "bg": 7287, "rotates": true }, - { "id": "bridge", "fg": [ 7276, 7275, 7276, 7275 ], "bg": 7286, "rotates": true }, - { "id": "bridgehead_ramp", "fg": [ 7282, 7281, 7283, 7284 ], "rotates": true }, - { "id": "bridge_road", "fg": [ 7276, 7275, 7276, 7275 ], "rotates": true }, - { "id": "t_tree_young", "fg": 7294, "bg": 7290 }, - { "id": "t_tree_young_season_summer", "fg": 7293, "bg": 7291, "rotates": false }, + { "id": "bridgehead_ground", "fg": [ 7387, 7386, 7388, 7389 ], "bg": 7396, "rotates": true }, + { "id": "bridge", "fg": [ 7385, 7384, 7385, 7384 ], "bg": 7395, "rotates": true }, + { "id": "bridgehead_ramp", "fg": [ 7391, 7390, 7392, 7393 ], "rotates": true }, + { "id": "bridge_road", "fg": [ 7385, 7384, 7385, 7384 ], "rotates": true }, + { "id": "t_tree_young", "fg": 7403, "bg": 7399 }, + { "id": "t_tree_young_season_summer", "fg": 7402, "bg": 7400, "rotates": false }, { "id": "t_tree_young_season_autumn", - "fg": [ { "weight": 100, "sprite": 7295 }, { "weight": 100, "sprite": 7296 } ], - "bg": 7289, + "fg": [ { "weight": 100, "sprite": 7404 }, { "weight": 100, "sprite": 7405 } ], + "bg": 7398, "rotates": false }, - { "id": "t_tree_young_season_winter", "fg": 7297, "bg": 7288, "rotates": false }, - { "id": "t_vat", "fg": 7298, "bg": 7292 }, - { "id": "corpse_mon_zombie_spitter", "fg": 7120 }, - { "id": "f_exodii_generator_1", "fg": 7121 }, - { "id": "f_exodii_generator_2", "fg": 7122 }, - { "id": "f_exodii_generator_3", "fg": 7123 }, - { "id": "f_exodii_generator_4", "fg": 7124 }, - { "id": "f_magiclysm_translocator_gate", "fg": 7128 }, - { "id": "mon_zombie_gasbag_crawler", "fg": 7133 }, - { "id": "mon_zombie_gasbag_immobile", "fg": 7134 }, - { "id": "mon_zombie_gasbag_impaler", "fg": 7135 }, - { "id": "mon_zombie_giant_heart", "fg": 7136 }, - { "id": "mon_zombie_hanging_innards", "fg": 7137 }, - { "id": "mon_zombie_living_wall", "fg": 7138 }, - { "id": "mon_zombie_scissorlimbs", "fg": 7139 }, - { "id": "mon_blood_sacrifice", "fg": 7167 }, - { "id": "mon_fungal_wall", "fg": 7187 }, - { "id": "mon_mutant_arthropod", "fg": 7210 }, - { "id": "mon_rat_king", "fg": 7211 }, - { "id": "mon_zombie_soldier_blackops_2", "fg": 7230 }, - { "id": "mon_leech_blossom", "fg": 7236 }, - { "id": "mon_leech_radio", "fg": 7237 }, - { "id": "mon_secubot", "fg": 7263 }, - { "id": "mon_talon_m202a1", "fg": 7264 }, - { "id": "overlay_wielded_as50", "fg": 7268 }, - { "id": "overlay_wielded_m107a1", "fg": 7269 }, - { "id": "overlay_wielded_m134", "fg": 7270 }, - { "id": "overlay_wielded_m2browning", "fg": 7271 }, - { "id": "overlay_wielded_mark19", "fg": 7272 } + { "id": "t_tree_young_season_winter", "fg": 7406, "bg": 7397, "rotates": false }, + { "id": "t_vat", "fg": 7407, "bg": 7401 }, + { "id": "corpse_mon_zombie_spitter", "fg": 7216 }, + { "id": "f_exodii_generator_1", "fg": 7217 }, + { "id": "f_exodii_generator_2", "fg": 7218 }, + { "id": "f_exodii_generator_3", "fg": 7219 }, + { "id": "f_exodii_generator_4", "fg": 7220 }, + { "id": "f_magiclysm_translocator_gate", "fg": 7224 }, + { "id": "mon_zombie_gasbag_crawler", "fg": 7229 }, + { "id": "mon_zombie_gasbag_immobile", "fg": 7230 }, + { "id": "mon_zombie_gasbag_impaler", "fg": 7231 }, + { "id": "mon_zombie_giant_heart", "fg": 7232 }, + { "id": "mon_zombie_hanging_innards", "fg": 7233 }, + { "id": "mon_zombie_living_wall", "fg": 7234 }, + { "id": "mon_zombie_scissorlimbs", "fg": 7235 }, + { "id": "mon_blood_sacrifice", "fg": 7264 }, + { "id": "mon_fungal_wall", "fg": 7287 }, + { "id": "mon_mutant_arthropod", "fg": 7310 }, + { "id": "mon_rat_king", "fg": 7311 }, + { "id": "mon_zombie_soldier_blackops_2", "fg": 7337 }, + { "id": "mon_leech_blossom", "fg": 7345 }, + { "id": "mon_leech_radio", "fg": 7346 }, + { "id": "mon_secubot", "fg": 7372 }, + { "id": "mon_talon_m202a1", "fg": 7373 }, + { "id": "overlay_wielded_as50", "fg": 7377 }, + { "id": "overlay_wielded_m107a1", "fg": 7378 }, + { "id": "overlay_wielded_m134", "fg": 7379 }, + { "id": "overlay_wielded_m2browning", "fg": 7380 }, + { "id": "overlay_wielded_mark19", "fg": 7381 } ] }, { "file": "large_ridden.png", - "//": "range 7312 to 7327", + "//": "range 7408 to 7423", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -27, "tiles": [ - { "id": "rid_mon_horse", "fg": [ { "weight": 1, "sprite": 7313 }, { "weight": 1, "sprite": 7314 } ] }, - { "id": "rid_mon_cow", "fg": 7312 } + { "id": "rid_mon_horse", "fg": [ { "weight": 1, "sprite": 7409 }, { "weight": 1, "sprite": 7410 } ] }, + { "id": "rid_mon_cow", "fg": 7408 } ] }, { "file": "huge.png", - "//": "range 7328 to 7359", + "//": "range 7424 to 7455", "sprite_width": 64, "sprite_height": 96, "sprite_offset_x": -16, "sprite_offset_y": -64, "tiles": [ - { "id": "mon_fungaloid_queen", "fg": 7329, "bg": 7328 }, - { "id": "mon_fungaloid_seeder", "fg": 7330, "bg": 7328 }, - { "id": "mon_fungaloid_tower", "fg": 7331, "bg": 7328 }, - { "id": "mon_zombie_kevlar_2", "fg": 7335 }, - { "id": "mon_zombie_hulk", "fg": 7334, "bg": 7328 }, - { "id": "mon_skeleton_hulk", "fg": 7333 }, - { "id": "mon_zombie_nemesis", "fg": 7336, "bg": 7328 }, - { "id": "mon_amigara_horror", "fg": 7337 }, - { "id": "mon_blob_brain", "fg": 7338, "bg": 7328 }, - { "id": "mon_flaming_eye", "fg": 7339 }, - { "id": "mon_nakedmolerat_giant", "fg": 7344, "bg": 7328 }, - { "id": "mon_shoggoth", "fg": 7345, "bg": 7328 }, - { "id": "mon_triffid_heart", "fg": 7346 }, - { "id": "mon_yugg", "fg": 7347, "bg": 7328 }, - { "id": "mon_skeleton_hulk_fungus", "fg": 7332 }, - { "id": "mon_frog_mother", "fg": 7340 }, - { "id": "mon_mutant_evolved", "fg": 7341 }, - { "id": "mon_mutant_mollusk", "fg": 7342 }, - { "id": "corpse_mon_nakedmolerat_giant", "fg": 7343 }, - { "id": "mon_zombie_crushed_giant", "fg": 7348 } + { "id": "mon_fungaloid_queen", "fg": 7425, "bg": 7424 }, + { "id": "mon_fungaloid_seeder", "fg": 7426, "bg": 7424 }, + { "id": "mon_fungaloid_tower", "fg": 7427, "bg": 7424 }, + { "id": "mon_zombie_kevlar_2", "fg": 7431 }, + { "id": "mon_zombie_hulk", "fg": 7430, "bg": 7424 }, + { "id": "mon_skeleton_hulk", "fg": 7429 }, + { "id": "mon_zombie_nemesis", "fg": 7432, "bg": 7424 }, + { "id": "mon_amigara_horror", "fg": 7433 }, + { "id": "mon_blob_brain", "fg": 7434, "bg": 7424 }, + { "id": "mon_flaming_eye", "fg": 7435 }, + { "id": "mon_nakedmolerat_giant", "fg": 7440, "bg": 7424 }, + { "id": "mon_shoggoth", "fg": 7441, "bg": 7424 }, + { "id": "mon_triffid_heart", "fg": 7442 }, + { "id": "mon_yugg", "fg": 7443, "bg": 7424 }, + { "id": "mon_skeleton_hulk_fungus", "fg": 7428 }, + { "id": "mon_frog_mother", "fg": 7436 }, + { "id": "mon_mutant_evolved", "fg": 7437 }, + { "id": "mon_mutant_mollusk", "fg": 7438 }, + { "id": "corpse_mon_nakedmolerat_giant", "fg": 7439 }, + { "id": "mon_zombie_crushed_giant", "fg": 7444 } ] }, { "file": "giant.png", - "//": "range 7360 to 7423", + "//": "range 7456 to 7519", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, "sprite_offset_y": -64, "tiles": [ - { "id": "t_tree", "fg": 7371, "bg": 7364 }, - { "id": "t_tree_season_summer", "fg": 7366, "bg": 7365 }, + { "id": "t_tree", "fg": 7468, "bg": 7461 }, + { "id": "t_tree_season_summer", "fg": 7463, "bg": 7462 }, { "id": "t_tree_season_autumn", "fg": [ - { "weight": 100, "sprite": 7367 }, - { "weight": 100, "sprite": 7368 }, - { "weight": 100, "sprite": 7369 }, - { "weight": 100, "sprite": 7370 } + { "weight": 100, "sprite": 7464 }, + { "weight": 100, "sprite": 7465 }, + { "weight": 100, "sprite": 7466 }, + { "weight": 100, "sprite": 7467 } ], - "bg": 7363 + "bg": 7460 }, - { "id": "t_tree_season_winter", "fg": 7395, "bg": 7362 }, - { "id": "t_tree_apple", "fg": 7372, "bg": 7364 }, - { "id": "t_tree_apple_season_summer", "fg": 7372, "bg": 7365 }, - { "id": "t_tree_apple_season_winter", "fg": 7377, "bg": 7362 }, + { "id": "t_tree_season_winter", "fg": 7492, "bg": 7459 }, + { "id": "t_tree_apple", "fg": 7469, "bg": 7461 }, + { "id": "t_tree_apple_season_summer", "fg": 7469, "bg": 7462 }, + { "id": "t_tree_apple_season_winter", "fg": 7474, "bg": 7459 }, { "id": "t_tree_apple_season_autumn", - "fg": [ { "weight": 1, "sprite": 7373 }, { "weight": 1, "sprite": 7374 } ], - "bg": 7363 + "fg": [ { "weight": 1, "sprite": 7470 }, { "weight": 1, "sprite": 7471 } ], + "bg": 7460 }, { "id": "t_tree_apple_harvested", - "fg": [ { "weight": 1, "sprite": 7375 }, { "weight": 1, "sprite": 7376 } ], - "bg": 7363 + "fg": [ { "weight": 1, "sprite": 7472 }, { "weight": 1, "sprite": 7473 } ], + "bg": 7460 }, - { "id": "t_tree_beech", "fg": 7379, "bg": 7364 }, - { "id": "t_tree_beech_season_summer", "fg": 7380, "bg": 7365 }, - { "id": "t_tree_beech_season_autumn", "fg": 7378, "bg": 7363 }, - { "id": "t_tree_beech_season_winter", "fg": 7381, "bg": 7362 }, - { "id": "t_tree_birch", "fg": 7382, "bg": 7364 }, - { "id": "t_tree_birch_season_summer", "fg": 7382, "bg": 7365 }, - { "id": "t_tree_birch_season_winter", "fg": 7385, "bg": 7362 }, + { "id": "t_tree_beech", "fg": 7476, "bg": 7461 }, + { "id": "t_tree_beech_season_summer", "fg": 7477, "bg": 7462 }, + { "id": "t_tree_beech_season_autumn", "fg": 7475, "bg": 7460 }, + { "id": "t_tree_beech_season_winter", "fg": 7478, "bg": 7459 }, + { "id": "t_tree_birch", "fg": 7479, "bg": 7461 }, + { "id": "t_tree_birch_season_summer", "fg": 7479, "bg": 7462 }, + { "id": "t_tree_birch_season_winter", "fg": 7482, "bg": 7459 }, { "id": "t_tree_birch_season_autumn", - "fg": [ { "weight": 1, "sprite": 7383 }, { "weight": 1, "sprite": 7384 } ], - "bg": 7363 + "fg": [ { "weight": 1, "sprite": 7480 }, { "weight": 1, "sprite": 7481 } ], + "bg": 7460 }, - { "id": "t_tree_cherry", "fg": 7386, "bg": 7364 }, - { "id": "t_tree_cherry_season_summer", "fg": 7390, "bg": 7365 }, - { "id": "t_tree_cherry_harvested", "fg": 7389, "bg": 7365 }, - { "id": "t_tree_cherry_season_winter", "fg": 7391, "bg": 7362 }, + { "id": "t_tree_cherry", "fg": 7483, "bg": 7461 }, + { "id": "t_tree_cherry_season_summer", "fg": 7487, "bg": 7462 }, + { "id": "t_tree_cherry_harvested", "fg": 7486, "bg": 7462 }, + { "id": "t_tree_cherry_season_winter", "fg": 7488, "bg": 7459 }, { "id": "t_tree_cherry_season_autumn", - "fg": [ { "weight": 1, "sprite": 7387 }, { "weight": 1, "sprite": 7388 } ], - "bg": 7363 + "fg": [ { "weight": 1, "sprite": 7484 }, { "weight": 1, "sprite": 7485 } ], + "bg": 7460 }, - { "id": "t_tree_cottonwood_season_spring", "fg": 7393, "bg": 7364 }, - { "id": "t_tree_cottonwood_season_summer", "fg": 7394, "bg": 7365 }, - { "id": "t_tree_cottonwood_season_autumn", "fg": 7392, "bg": 7363 }, - { "id": "t_tree_cottonwood_season_winter", "fg": 7395, "bg": 7362 }, + { "id": "t_tree_cottonwood_season_spring", "fg": 7490, "bg": 7461 }, + { "id": "t_tree_cottonwood_season_summer", "fg": 7491, "bg": 7462 }, + { "id": "t_tree_cottonwood_season_autumn", "fg": 7489, "bg": 7460 }, + { "id": "t_tree_cottonwood_season_winter", "fg": 7492, "bg": 7459 }, { "id": "t_tree_dead", - "fg": [ { "weight": 100, "sprite": 7395 }, { "weight": 100, "sprite": 8404 } ], - "bg": 7364 + "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], + "bg": 7461 }, { "id": "t_tree_dead_season_summer", - "fg": [ { "weight": 100, "sprite": 7395 }, { "weight": 100, "sprite": 8404 } ], - "bg": 7365 + "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], + "bg": 7462 }, { "id": "t_tree_dead_season_autumn", - "fg": [ { "weight": 100, "sprite": 7395 }, { "weight": 100, "sprite": 8404 } ], - "bg": 7363 + "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], + "bg": 7460 }, { "id": "t_tree_dead_season_winter", - "fg": [ { "weight": 100, "sprite": 7395 }, { "weight": 100, "sprite": 8404 } ], - "bg": 7362 - }, - { "id": "t_tree_elm_season_spring", "fg": 7397, "bg": 7364 }, - { "id": "t_tree_elm_season_summer", "fg": 7398, "bg": 7365 }, - { "id": "t_tree_elm_season_autumn", "fg": 7396, "bg": 7363 }, - { "id": "t_tree_elm_season_winter", "fg": 7399, "bg": 7362 }, - { "id": "t_tree_maple", "fg": 7401, "bg": 7364 }, - { "id": "t_tree_maple_season_summer", "fg": 7402, "bg": 7365 }, - { "id": "t_tree_maple_season_autumn", "fg": 7400, "bg": 7363 }, - { "id": "t_tree_maple_season_winter", "fg": 7403, "bg": 7362 }, - { "id": "t_tree_peach_season_spring", "fg": 7404, "bg": 7364 }, - { "id": "t_tree_peach_season_summer", "fg": 7407, "bg": 7365 }, - { "id": "t_tree_peach_harvested", "fg": 7404, "bg": 7365 }, - { "id": "t_tree_peach_season_winter", "fg": 7408, "bg": 7362 }, + "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], + "bg": 7459 + }, + { "id": "t_tree_elm_season_spring", "fg": 7494, "bg": 7461 }, + { "id": "t_tree_elm_season_summer", "fg": 7495, "bg": 7462 }, + { "id": "t_tree_elm_season_autumn", "fg": 7493, "bg": 7460 }, + { "id": "t_tree_elm_season_winter", "fg": 7496, "bg": 7459 }, + { "id": "t_tree_maple", "fg": 7498, "bg": 7461 }, + { "id": "t_tree_maple_season_summer", "fg": 7499, "bg": 7462 }, + { "id": "t_tree_maple_season_autumn", "fg": 7497, "bg": 7460 }, + { "id": "t_tree_maple_season_winter", "fg": 7500, "bg": 7459 }, + { "id": "t_tree_peach_season_spring", "fg": 7501, "bg": 7461 }, + { "id": "t_tree_peach_season_summer", "fg": 7504, "bg": 7462 }, + { "id": "t_tree_peach_harvested", "fg": 7501, "bg": 7462 }, + { "id": "t_tree_peach_season_winter", "fg": 7505, "bg": 7459 }, { "id": "t_tree_peach_season_autumn", - "fg": [ { "weight": 1, "sprite": 7405 }, { "weight": 1, "sprite": 7406 } ], - "bg": 7363 + "fg": [ { "weight": 1, "sprite": 7502 }, { "weight": 1, "sprite": 7503 } ], + "bg": 7460 }, - { "id": "mon_dragon_dummy", "fg": 7360 }, - { "id": "mon_graboid", "fg": 7361 } + { "id": "mon_ant_soldier_mega", "fg": 7456 }, + { "id": "mon_dragon_dummy", "fg": 7457 }, + { "id": "mon_graboid", "fg": 7458 } ] }, { "file": "incomplete.png", - "//": "range 7424 to 8223", + "//": "range 7520 to 8319", "tiles": [ - { "id": "unknown", "fg": 7424 }, + { "id": "unknown", "fg": 7520 }, { "id": "fd_blood", - "fg": 7456, + "fg": 7552, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7425 }, - { "id": "corner", "fg": [ 7427, 7429, 7428, 7426 ] }, - { "id": "t_connection", "fg": [ 7453, 7455, 7454, 7452 ] }, - { "id": "edge", "fg": [ 7431, 7430 ] }, - { "id": "end_piece", "fg": [ 7433, 7435, 7434, 7432 ] }, - { "id": "unconnected", "fg": [ 7456, 7456 ] } + { "id": "center", "fg": 7521 }, + { "id": "corner", "fg": [ 7523, 7525, 7524, 7522 ] }, + { "id": "t_connection", "fg": [ 7549, 7551, 7550, 7548 ] }, + { "id": "edge", "fg": [ 7527, 7526 ] }, + { "id": "end_piece", "fg": [ 7529, 7531, 7530, 7528 ] }, + { "id": "unconnected", "fg": [ 7552, 7552 ] } ] }, { "id": [ "fd_blood_insect", "fd_blood_invertebrate" ], - "fg": 7451, + "fg": 7547, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7436 }, - { "id": "corner", "fg": [ 7438, 7440, 7439, 7437 ] }, - { "id": "t_connection", "fg": [ 7448, 7450, 7449, 7447 ] }, - { "id": "edge", "fg": [ 7442, 7441 ] }, - { "id": "end_piece", "fg": [ 7444, 7446, 7445, 7443 ] }, - { "id": "unconnected", "fg": [ 7451, 7451 ] } + { "id": "center", "fg": 7532 }, + { "id": "corner", "fg": [ 7534, 7536, 7535, 7533 ] }, + { "id": "t_connection", "fg": [ 7544, 7546, 7545, 7543 ] }, + { "id": "edge", "fg": [ 7538, 7537 ] }, + { "id": "end_piece", "fg": [ 7540, 7542, 7541, 7539 ] }, + { "id": "unconnected", "fg": [ 7547, 7547 ] } ] }, - { "id": "fd_electricity", "fg": [ { "weight": 100, "sprite": 7457 }, { "weight": 100, "sprite": 7458 } ] }, { "id": "fd_web", "fg": [ - { "weight": 100, "sprite": 7459 }, - { "weight": 100, "sprite": 7460 }, - { "weight": 25, "sprite": 7461 }, - { "weight": 25, "sprite": 7462 } - ] - }, - { "id": "fd_smoke", "fg": 7465 }, - { "id": "fd_fungal_haze", "fg": 7464 }, - { "id": "fd_nuke_gas", "fg": 7463 }, - { "id": "fd_spotlight", "fg": 7466 }, - { "id": "f_makeshift_bed", "fg": 7469 }, - { "id": "f_straw_bed", "fg": 7470 }, - { "id": "f_bed_frame", "fg": 7467 }, - { "id": "f_camp_chair", "fg": 7474 }, - { "id": "f_lane", "fg": 7475 }, - { "id": "f_piano", "fg": 7476 }, - { "id": "f_pinball_machine", "fg": 7477 }, - { "id": "f_seat_airplane", "fg": 7478 }, + { "weight": 100, "sprite": 7553 }, + { "weight": 100, "sprite": 7554 }, + { "weight": 25, "sprite": 7555 }, + { "weight": 25, "sprite": 7556 } + ] + }, + { "id": "fd_spotlight", "fg": 7557 }, + { "id": "f_makeshift_bed", "fg": 7560 }, + { "id": "f_straw_bed", "fg": 7561 }, + { "id": "f_bed_frame", "fg": 7558 }, + { "id": "f_camp_chair", "fg": 7565 }, + { "id": "f_lane", "fg": 7566 }, + { "id": "f_piano", "fg": 7567 }, + { "id": "f_pinball_machine", "fg": 7568 }, + { "id": "f_seat_airplane", "fg": 7569 }, { "id": "f_sink", "multitile": true, - "fg": 7494, - "additional_tiles": [ - { "id": "center", "fg": 7479 }, - { "id": "corner", "fg": [ 7481, 7483, 7482, 7480 ] }, - { "id": "t_connection", "fg": [ 7491, 7493, 7492, 7490 ] }, - { "id": "edge", "fg": [ 7485, 7484 ] }, - { "id": "end_piece", "fg": [ 7487, 7489, 7488, 7486 ] }, - { "id": "unconnected", "fg": 7494 } - ] - }, - { "id": "f_solar_unit", "fg": 7495 }, - { "id": "f_speaker_cabinet", "fg": 7496 }, - { "id": "f_water_mill", "fg": 7497 }, - { "id": "water_mill", "fg": 7498 }, - { "id": "f_water_purifier", "fg": 7499 }, - { "id": "f_wood_keg", "fg": 7637 }, - { "id": "30gal_barrel", "fg": 7500 }, - { "id": "30gal_drum", "fg": 7501 }, - { "id": "alarmclock", "fg": 7502 }, - { "id": "clock", "fg": 7502 }, - { "id": "anvil", "fg": 7506 }, - { "id": [ "autoclave", "vh_autoclave" ], "fg": 7507 }, - { "id": "bag_canvas_small", "fg": 7509 }, - { "id": "bathroom_scale", "fg": 7510 }, - { "id": "bead_necklace", "fg": 7511 }, - { "id": "brazier", "fg": 7512 }, - { "id": "bubblewrap", "fg": 7513 }, - { "id": "bucket", "fg": 7514 }, - { "id": "camera_pro", "fg": 7520 }, - { "id": "condom", "fg": 7521 }, - { "id": "craft", "fg": 7522 }, - { "id": "pomegranate", "fg": 7533 }, - { "id": "peach", "fg": 7531 }, - { "id": "strawberries", "fg": 7534 }, - { "id": "cabbage", "fg": 7523 }, - { "id": "mango", "fg": 7529 }, - { "id": "kiwi", "fg": 7528 }, - { "id": "papaya", "fg": 7530 }, - { "id": "grapefruit", "fg": 7527 }, - { "id": "pineapple", "fg": 7532 }, - { "id": "celery", "fg": 7525 }, - { "id": "chili_pepper", "fg": 7526 }, - { "id": "carrot", "fg": 7524 }, - { "id": "zucchini", "fg": 7535 }, - { "id": "akmag30", "fg": 7536 }, - { "id": "duct_tape", "fg": 7537 }, - { "id": "electric_lantern", "fg": 7538 }, - { "id": "extinguisher", "fg": 7539 }, - { "id": "sm_extinguisher", "fg": 7540 }, - { "id": "fan", "fg": 7541 }, + "fg": 7585, + "additional_tiles": [ + { "id": "center", "fg": 7570 }, + { "id": "corner", "fg": [ 7572, 7574, 7573, 7571 ] }, + { "id": "t_connection", "fg": [ 7582, 7584, 7583, 7581 ] }, + { "id": "edge", "fg": [ 7576, 7575 ] }, + { "id": "end_piece", "fg": [ 7578, 7580, 7579, 7577 ] }, + { "id": "unconnected", "fg": 7585 } + ] + }, + { "id": "f_solar_unit", "fg": 7586 }, + { "id": "f_speaker_cabinet", "fg": 7587 }, + { "id": "f_water_mill", "fg": 7588 }, + { "id": "water_mill", "fg": 7589 }, + { "id": "f_water_purifier", "fg": 7590 }, + { "id": "f_wood_keg", "fg": 7728 }, + { "id": "30gal_barrel", "fg": 7591 }, + { "id": "30gal_drum", "fg": 7592 }, + { "id": "alarmclock", "fg": 7593 }, + { "id": "clock", "fg": 7593 }, + { "id": "anvil", "fg": 7597 }, + { "id": [ "autoclave", "vh_autoclave" ], "fg": 7598 }, + { "id": "bag_canvas_small", "fg": 7600 }, + { "id": "bathroom_scale", "fg": 7601 }, + { "id": "bead_necklace", "fg": 7602 }, + { "id": "brazier", "fg": 7603 }, + { "id": "bubblewrap", "fg": 7604 }, + { "id": "bucket", "fg": 7605 }, + { "id": "camera_pro", "fg": 7611 }, + { "id": "condom", "fg": 7612 }, + { "id": "craft", "fg": 7613 }, + { "id": "pomegranate", "fg": 7624 }, + { "id": "peach", "fg": 7622 }, + { "id": "strawberries", "fg": 7625 }, + { "id": "cabbage", "fg": 7614 }, + { "id": "mango", "fg": 7620 }, + { "id": "kiwi", "fg": 7619 }, + { "id": "papaya", "fg": 7621 }, + { "id": "grapefruit", "fg": 7618 }, + { "id": "pineapple", "fg": 7623 }, + { "id": "celery", "fg": 7616 }, + { "id": "chili_pepper", "fg": 7617 }, + { "id": "carrot", "fg": 7615 }, + { "id": "zucchini", "fg": 7626 }, + { "id": "akmag30", "fg": 7627 }, + { "id": "duct_tape", "fg": 7628 }, + { "id": "electric_lantern", "fg": 7629 }, + { "id": "extinguisher", "fg": 7630 }, + { "id": "sm_extinguisher", "fg": 7631 }, + { "id": "fan", "fg": 7632 }, { "id": [ "family_photo", @@ -11356,19 +11598,19 @@ "battleship", "clue" ], - "fg": 7542 - }, - { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7543 }, - { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7545 }, - { "id": "glock17_17", "fg": 7547 }, - { "id": "holy_symbol", "fg": 7548 }, - { "id": "holy_symbol_wood", "fg": 7549 }, - { "id": "hotplate", "fg": 7550 }, - { "id": "jerrycan", "fg": 7551 }, - { "id": "jerrycan_big", "fg": 7552 }, - { "id": "keg", "fg": 7553 }, - { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7567 }, - { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7560 }, + "fg": 7633 + }, + { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7634 }, + { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7636 }, + { "id": "glock17_17", "fg": 7638 }, + { "id": "holy_symbol", "fg": 7639 }, + { "id": "holy_symbol_wood", "fg": 7640 }, + { "id": "hotplate", "fg": 7641 }, + { "id": "jerrycan", "fg": 7642 }, + { "id": "jerrycan_big", "fg": 7643 }, + { "id": "keg", "fg": 7644 }, + { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7658 }, + { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7651 }, { "id": [ "nyquil", @@ -11520,7 +11762,7 @@ "wine_chardonnay", "drink_martini" ], - "fg": 7570 + "fg": 7661 }, { "id": [ @@ -11561,7 +11803,7 @@ "soup_tomato", "young_yeast" ], - "fg": 7572 + "fg": 7663 }, { "id": [ @@ -11583,57 +11825,57 @@ "hi_q_distillate_tails", "hi_q_distillate" ], - "fg": 7571 - }, - { "id": "longsword", "fg": 7573 }, - { "id": "longsword_inferior", "fg": 7575 }, - { "id": "longsword_fake", "fg": 7574 }, - { "id": "mask_gas", "fg": 7576 }, - { "id": "plastic_chunk", "fg": 7577 }, - { "id": "scrap_copper", "fg": 7578 }, - { "id": "oil_lamp", "fg": 7579 }, - { "id": "pickaxe", "fg": 7580 }, - { "id": "pitchfork", "fg": 7581 }, - { "id": "plunger_futuristic", "fg": 7582 }, - { "id": "plunger_toilet", "fg": 7583 }, - { "id": "pocketwatch", "fg": 7584 }, - { "id": "bacon", "fg": 7585 }, - { "id": "porkbelly", "fg": 7586 }, - { "id": "raw_cured_fatty_meat", "fg": 7587 }, - { "id": "raw_curing_fatty_meat", "fg": 7588 }, - { "id": "material_sand", "fg": 7615 }, - { "id": "material_soil", "fg": 7617 }, - { "id": "chem_aluminium_powder", "fg": 7589 }, - { "id": "chem_aluminium_sulphate", "fg": 7590 }, - { "id": "chem_ammonium_nitrate", "fg": 7591 }, - { "id": "chem_black_powder", "fg": 7592 }, - { "id": "cac2powder", "fg": 7593 }, - { "id": "chilly-p", "fg": 7594 }, - { "id": "meal_chitin_piece", "fg": 7595 }, - { "id": "chem_chromium_oxide", "fg": 7596 }, - { "id": "coffee_raw", "fg": 7597 }, - { "id": "curry_powder", "fg": 7598 }, - { "id": "powder_eggs", "fg": 7599 }, - { "id": "fungicide", "fg": 7600 }, - { "id": "insecticide", "fg": 7602 }, - { "id": "chem_hmtd", "fg": 7601 }, - { "id": "lemonade_powder", "fg": 7603 }, - { "id": "lye_powder", "fg": 7604 }, - { "id": "magnesium", "fg": 7605 }, - { "id": "chem_manganese_dioxide", "fg": 7606 }, - { "id": "chem_match_head_powder", "fg": 7607 }, - { "id": "mustard_powder", "fg": 7608 }, - { "id": "oxy_powder", "fg": 7609 }, - { "id": "chem_peptone_broth", "fg": 7610 }, - { "id": "protein_powder", "fg": 7611 }, - { "id": "material_quicklime", "fg": 7612 }, - { "id": "chem_rocket_fuel", "fg": 7613 }, - { "id": "chem_saltpetre", "fg": 7614 }, - { "id": "gunpowder", "fg": 7616 }, - { "id": "chem_thermite", "fg": 7618 }, - { "id": "tin", "fg": 7619 }, - { "id": "yeast", "fg": 7621 }, - { "id": "chem_zinc_powder", "fg": 7622 }, + "fg": 7662 + }, + { "id": "longsword", "fg": 7664 }, + { "id": "longsword_inferior", "fg": 7666 }, + { "id": "longsword_fake", "fg": 7665 }, + { "id": "mask_gas", "fg": 7667 }, + { "id": "plastic_chunk", "fg": 7668 }, + { "id": "scrap_copper", "fg": 7669 }, + { "id": "oil_lamp", "fg": 7670 }, + { "id": "pickaxe", "fg": 7671 }, + { "id": "pitchfork", "fg": 7672 }, + { "id": "plunger_futuristic", "fg": 7673 }, + { "id": "plunger_toilet", "fg": 7674 }, + { "id": "pocketwatch", "fg": 7675 }, + { "id": "bacon", "fg": 7676 }, + { "id": "porkbelly", "fg": 7677 }, + { "id": "raw_cured_fatty_meat", "fg": 7678 }, + { "id": "raw_curing_fatty_meat", "fg": 7679 }, + { "id": "material_sand", "fg": 7706 }, + { "id": "material_soil", "fg": 7708 }, + { "id": "chem_aluminium_powder", "fg": 7680 }, + { "id": "chem_aluminium_sulphate", "fg": 7681 }, + { "id": "chem_ammonium_nitrate", "fg": 7682 }, + { "id": "chem_black_powder", "fg": 7683 }, + { "id": "cac2powder", "fg": 7684 }, + { "id": "chilly-p", "fg": 7685 }, + { "id": "meal_chitin_piece", "fg": 7686 }, + { "id": "chem_chromium_oxide", "fg": 7687 }, + { "id": "coffee_raw", "fg": 7688 }, + { "id": "curry_powder", "fg": 7689 }, + { "id": "powder_eggs", "fg": 7690 }, + { "id": "fungicide", "fg": 7691 }, + { "id": "insecticide", "fg": 7693 }, + { "id": "chem_hmtd", "fg": 7692 }, + { "id": "lemonade_powder", "fg": 7694 }, + { "id": "lye_powder", "fg": 7695 }, + { "id": "magnesium", "fg": 7696 }, + { "id": "chem_manganese_dioxide", "fg": 7697 }, + { "id": "chem_match_head_powder", "fg": 7698 }, + { "id": "mustard_powder", "fg": 7699 }, + { "id": "oxy_powder", "fg": 7700 }, + { "id": "chem_peptone_broth", "fg": 7701 }, + { "id": "protein_powder", "fg": 7702 }, + { "id": "material_quicklime", "fg": 7703 }, + { "id": "chem_rocket_fuel", "fg": 7704 }, + { "id": "chem_saltpetre", "fg": 7705 }, + { "id": "gunpowder", "fg": 7707 }, + { "id": "chem_thermite", "fg": 7709 }, + { "id": "tin", "fg": 7710 }, + { "id": "yeast", "fg": 7712 }, + { "id": "chem_zinc_powder", "fg": 7713 }, { "id": [ "sugar", @@ -11646,140 +11888,140 @@ "quikclot", "chem_acrylamide" ], - "fg": 7620 - }, - { "id": "radio", "fg": 7623 }, - { "id": "ref_lighter", "fg": 7624 }, - { "id": "rhubarb", "fg": 7625 }, - { "id": "rope_6", "fg": 7626 }, - { "id": "spray_can", "fg": 7627 }, - { "id": "stanag30", "fg": 7628 }, - { "id": "stepladder", "fg": 7629 }, - { "id": "stereo", "fg": 7630 }, - { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7631 }, - { "id": "waffleiron", "fg": 7632 }, - { "id": "warhammer", "fg": 7633 }, - { "id": "welding_mask", "fg": 7634 }, - { "id": "wind_mill", "fg": 7635 }, - { "id": "wood_beam", "fg": 7636 }, - { "id": "wooden_barrel", "fg": 7637 }, - { "id": "zweihander", "fg": 7638 }, - { "id": "zweihander_inferior", "fg": 7640 }, - { "id": "zweihander_fake", "fg": 7639 }, - { "id": "mon_grenade_hack", "fg": 7649, "bg": 2450 }, - { "id": "mon_mininuke_hack", "fg": 7651, "bg": 2450 }, - { "id": "bot_grenade_hack", "fg": 7643 }, - { "id": "bot_mininuke_hack", "fg": 7644 }, - { "id": "mon_manhack", "fg": 7650, "bg": 2450 }, - { "id": "mon_gasbomb_hack", "fg": 7648, "bg": 2450 }, - { "id": "mon_flashbang_hack", "fg": 7647, "bg": 2450 }, - { "id": "mon_c4_hack", "fg": 7646, "bg": 2450 }, - { "id": "mon_EMP_hack", "fg": 7645, "bg": 2450 }, - { "id": "mon_grocerybot", "fg": 7652, "bg": 2450 }, - { "id": "mon_grocerybot_busted", "fg": 7653, "bg": 2450 }, - { "id": "mon_raccoon", "fg": 7654, "bg": 2450 }, - { "id": "mon_weasel", "fg": 7655, "bg": 2450 }, - { "id": "infrared_creature", "fg": 7656 }, + "fg": 7711 + }, + { "id": "radio", "fg": 7714 }, + { "id": "ref_lighter", "fg": 7715 }, + { "id": "rhubarb", "fg": 7716 }, + { "id": "rope_6", "fg": 7717 }, + { "id": "spray_can", "fg": 7718 }, + { "id": "stanag30", "fg": 7719 }, + { "id": "stepladder", "fg": 7720 }, + { "id": "stereo", "fg": 7721 }, + { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7722 }, + { "id": "waffleiron", "fg": 7723 }, + { "id": "warhammer", "fg": 7724 }, + { "id": "welding_mask", "fg": 7725 }, + { "id": "wind_mill", "fg": 7726 }, + { "id": "wood_beam", "fg": 7727 }, + { "id": "wooden_barrel", "fg": 7728 }, + { "id": "zweihander", "fg": 7729 }, + { "id": "zweihander_inferior", "fg": 7731 }, + { "id": "zweihander_fake", "fg": 7730 }, + { "id": "mon_grenade_hack", "fg": 7740, "bg": 2498 }, + { "id": "mon_mininuke_hack", "fg": 7742, "bg": 2498 }, + { "id": "bot_grenade_hack", "fg": 7734 }, + { "id": "bot_mininuke_hack", "fg": 7735 }, + { "id": "mon_manhack", "fg": 7741, "bg": 2498 }, + { "id": "mon_gasbomb_hack", "fg": 7739, "bg": 2498 }, + { "id": "mon_flashbang_hack", "fg": 7738, "bg": 2498 }, + { "id": "mon_c4_hack", "fg": 7737, "bg": 2498 }, + { "id": "mon_EMP_hack", "fg": 7736, "bg": 2498 }, + { "id": "mon_grocerybot", "fg": 7743, "bg": 2498 }, + { "id": "mon_grocerybot_busted", "fg": 7744, "bg": 2498 }, + { "id": "mon_raccoon", "fg": 7745, "bg": 2498 }, + { "id": "mon_weasel", "fg": 7746, "bg": 2498 }, + { "id": "infrared_creature", "fg": 7747 }, { "id": "weather_rain_drop", "fg": [ - { "weight": 100, "sprite": 7658 }, - { "weight": 100, "sprite": 7660 }, - { "weight": 100, "sprite": 7661 }, - { "weight": 100, "sprite": 7662 }, - { "weight": 100, "sprite": 7663 }, - { "weight": 100, "sprite": 7664 }, - { "weight": 100, "sprite": 7665 }, - { "weight": 100, "sprite": 7666 }, - { "weight": 100, "sprite": 7667 }, - { "weight": 100, "sprite": 7659 } - ] - }, - { "id": "weather_snowflake", "fg": 7668 }, - { "id": "weather_acid_drop", "fg": 7657 }, - { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7674 }, - { "id": "t_card_reader_broken", "fg": 7673 }, - { "id": "t_card_military", "fg": 7672 }, - { "id": "t_card_industrial", "fg": 7671 }, - { "id": "t_card_fp", "fg": 7670 }, - { "id": "t_floor_red", "fg": 7677 }, - { "id": "t_floor_green", "fg": 7676 }, - { "id": "t_floor_blue", "fg": 7675 }, - { "id": [ "t_searth_test", "t_searth" ], "fg": 7678 }, - { "id": "t_current_trans", "fg": 7679, "bg": 3971 }, - { "id": "t_potential_trans", "fg": 7680, "bg": 3971 }, - { "id": "graffiti", "fg": 7681 }, - { "id": "t_pedestal_wyrm", "fg": 7683, "bg": 3763 }, + { "weight": 100, "sprite": 7749 }, + { "weight": 100, "sprite": 7751 }, + { "weight": 100, "sprite": 7752 }, + { "weight": 100, "sprite": 7753 }, + { "weight": 100, "sprite": 7754 }, + { "weight": 100, "sprite": 7755 }, + { "weight": 100, "sprite": 7756 }, + { "weight": 100, "sprite": 7757 }, + { "weight": 100, "sprite": 7758 }, + { "weight": 100, "sprite": 7750 } + ] + }, + { "id": "weather_snowflake", "fg": 7759 }, + { "id": "weather_acid_drop", "fg": 7748 }, + { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7765 }, + { "id": "t_card_reader_broken", "fg": 7764 }, + { "id": "t_card_military", "fg": 7763 }, + { "id": "t_card_industrial", "fg": 7762 }, + { "id": "t_card_fp", "fg": 7761 }, + { "id": "t_floor_red", "fg": 7768 }, + { "id": "t_floor_green", "fg": 7767 }, + { "id": "t_floor_blue", "fg": 7766 }, + { "id": [ "t_searth_test", "t_searth" ], "fg": 7769 }, + { "id": "t_current_trans", "fg": 7770, "bg": 4046 }, + { "id": "t_potential_trans", "fg": 7771, "bg": 4046 }, + { "id": "graffiti", "fg": 7772 }, + { "id": "t_pedestal_wyrm", "fg": 7774, "bg": 3838 }, { "id": "t_pedestal_temple", - "fg": [ { "weight": 100, "sprite": 7684 }, { "weight": 100, "sprite": 7682 } ], - "bg": 3140 + "fg": [ { "weight": 100, "sprite": 7775 }, { "weight": 100, "sprite": 7773 } ], + "bg": 3199 }, { "id": "t_pedestal_temple_season_winter", - "fg": [ { "weight": 100, "sprite": 7684 }, { "weight": 100, "sprite": 7682 } ], - "bg": 2811 + "fg": [ { "weight": 100, "sprite": 7775 }, { "weight": 100, "sprite": 7773 } ], + "bg": 2870 }, - { "id": "t_zebra", "fg": 7685 }, - { "id": "t_zebra_season_winter", "fg": 2810 }, + { "id": "t_zebra", "fg": 7776 }, + { "id": "t_zebra_season_winter", "fg": 2869 }, { "id": [ "t_metal_railing", "t_concrete_railing", "t_glass_railing" ], "multitile": true, - "fg": 3699, - "bg": 3014, - "additional_tiles": [ - { "id": "center", "bg": 3014, "fg": 3684 }, - { "id": "corner", "bg": 3014, "fg": [ 3686, 3688, 3687, 3685 ] }, - { "id": "t_connection", "bg": 3014, "fg": [ 3696, 3698, 3697, 3695 ] }, - { "id": "edge", "bg": 3014, "fg": [ 3690, 3689 ] }, - { "id": "end_piece", "bg": 3014, "fg": [ 3692, 3694, 3693, 3691 ] }, - { "bg": 3014, "id": "unconnected", "fg": [ 3699, 3699 ] } - ] - }, - { "id": "t_chaingate_c", "fg": 7687, "bg": 3536 }, - { "id": "t_chaingate_l", "fg": 7688, "bg": 3536 }, - { "id": "t_chaingate_o", "fg": 7689, "bg": 3536 }, - { "id": "t_chainfence_posts", "fg": 7686, "bg": 3536 }, - { "id": "t_chaingate_c_season_winter", "fg": 7687, "bg": 2811 }, - { "id": "t_chaingate_l_season_winter", "fg": 7688, "bg": 2811 }, - { "id": "t_chaingate_o_season_winter", "fg": 7689, "bg": 2811 }, - { "id": "t_chainfence_posts_season_winter", "fg": 7686, "bg": 2811 }, - { "id": "t_console", "fg": 7690 }, - { "id": "t_console_broken", "fg": 7691 }, - { "id": "t_dirtmound", "fg": 7692, "bg": 3331 }, - { "id": "t_dirtmound_season_summer", "fg": 7692, "bg": 3341 }, - { "id": "t_dirtmound_season_autumn", "fg": 7692, "bg": 3336 }, - { "id": "t_dirtmound_season_winter", "fg": 7693 }, - { "id": "t_door_metal_c", "fg": 7694 }, - { "id": "t_door_metal_o", "fg": 7695 }, - { "id": "t_fern", "fg": 7696, "bg": 3331 }, - { "id": "t_fern_harvested", "fg": 7697, "bg": 3331 }, - { "id": "t_fern_season_summer", "fg": 7696, "bg": 3341 }, - { "id": "t_fern_harvested_season_summer", "fg": 7697, "bg": 3341 }, - { "id": "t_fern_season_autumn", "fg": 7696, "bg": 3336 }, - { "id": "t_fern_harvested_season_autumn", "fg": 7697, "bg": 3336 }, - { "id": "t_fern_season_winter", "fg": 7696, "bg": 2809 }, - { "id": "t_fern_harvested_season_winter", "fg": 7697, "bg": 2809 }, + "fg": 3774, + "bg": 3073, + "additional_tiles": [ + { "id": "center", "bg": 3073, "fg": 3759 }, + { "id": "corner", "bg": 3073, "fg": [ 3761, 3763, 3762, 3760 ] }, + { "id": "t_connection", "bg": 3073, "fg": [ 3771, 3773, 3772, 3770 ] }, + { "id": "edge", "bg": 3073, "fg": [ 3765, 3764 ] }, + { "id": "end_piece", "bg": 3073, "fg": [ 3767, 3769, 3768, 3766 ] }, + { "bg": 3073, "id": "unconnected", "fg": [ 3774, 3774 ] } + ] + }, + { "id": "t_chaingate_c", "fg": 7778, "bg": 3595 }, + { "id": "t_chaingate_l", "fg": 7779, "bg": 3595 }, + { "id": "t_chaingate_o", "fg": 7780, "bg": 3595 }, + { "id": "t_chainfence_posts", "fg": 7777, "bg": 3595 }, + { "id": "t_chaingate_c_season_winter", "fg": 7778, "bg": 2870 }, + { "id": "t_chaingate_l_season_winter", "fg": 7779, "bg": 2870 }, + { "id": "t_chaingate_o_season_winter", "fg": 7780, "bg": 2870 }, + { "id": "t_chainfence_posts_season_winter", "fg": 7777, "bg": 2870 }, + { "id": "t_console", "fg": 7781 }, + { "id": "t_console_broken", "fg": 7782 }, + { "id": "t_dirtmound", "fg": 7783, "bg": 3390 }, + { "id": "t_dirtmound_season_summer", "fg": 7783, "bg": 3400 }, + { "id": "t_dirtmound_season_autumn", "fg": 7783, "bg": 3395 }, + { "id": "t_dirtmound_season_winter", "fg": 7784 }, + { "id": "t_door_metal_c", "fg": 7785 }, + { "id": "t_door_metal_o", "fg": 7786 }, + { "id": "t_fern", "fg": 7787, "bg": 3390 }, + { "id": "t_fern_harvested", "fg": 7788, "bg": 3390 }, + { "id": "t_fern_season_summer", "fg": 7787, "bg": 3400 }, + { "id": "t_fern_harvested_season_summer", "fg": 7788, "bg": 3400 }, + { "id": "t_fern_season_autumn", "fg": 7787, "bg": 3395 }, + { "id": "t_fern_harvested_season_autumn", "fg": 7788, "bg": 3395 }, + { "id": "t_fern_season_winter", "fg": 7787, "bg": 2868 }, + { "id": "t_fern_harvested_season_winter", "fg": 7788, "bg": 2868 }, { "id": [ "t_junk_palisade", "t_junk_wall" ], "fg": [ - { "weight": 100, "sprite": 7698 }, - { "weight": 100, "sprite": 7699 }, - { "weight": 100, "sprite": 7700 }, - { "weight": 100, "sprite": 7701 } + { "weight": 100, "sprite": 7789 }, + { "weight": 100, "sprite": 7790 }, + { "weight": 100, "sprite": 7791 }, + { "weight": 100, "sprite": 7792 } ] }, { "id": "t_paper", - "fg": 7717, + "fg": 7808, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7702 }, - { "id": "corner", "fg": [ 7704, 7706, 7705, 7703 ] }, - { "id": "t_connection", "fg": [ 7714, 7716, 7715, 7713 ] }, - { "id": "edge", "fg": [ 7708, 7707 ] }, - { "id": "end_piece", "fg": [ 7710, 7712, 7711, 7709 ] }, - { "id": "unconnected", "fg": [ 7717, 7717 ] } + { "id": "center", "fg": 7793 }, + { "id": "corner", "fg": [ 7795, 7797, 7796, 7794 ] }, + { "id": "t_connection", "fg": [ 7805, 7807, 7806, 7804 ] }, + { "id": "edge", "fg": [ 7799, 7798 ] }, + { "id": "end_piece", "fg": [ 7801, 7803, 7802, 7800 ] }, + { "id": "unconnected", "fg": [ 7808, 7808 ] } ] }, { @@ -11799,445 +12041,445 @@ "t_railroad_track_v_on_tie", "t_railroad_track_d_on_tie" ], - "fg": 7735, + "fg": 7826, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7720, "bg": 3700 }, - { "id": "corner", "fg": [ 7722, 7724, 7723, 7721 ], "bg": 3700 }, - { "id": "t_connection", "fg": [ 7732, 7734, 7733, 7731 ], "bg": 3700 }, - { "id": "edge", "fg": [ 7726, 7725 ], "bg": 3700 }, - { "id": "end_piece", "fg": [ 7728, 7730, 7729, 7727 ], "bg": 3700 }, - { "id": "unconnected", "fg": [ 7735, 7735 ], "bg": 3700 } + { "id": "center", "fg": 7811, "bg": 3775 }, + { "id": "corner", "fg": [ 7813, 7815, 7814, 7812 ], "bg": 3775 }, + { "id": "t_connection", "fg": [ 7823, 7825, 7824, 7822 ], "bg": 3775 }, + { "id": "edge", "fg": [ 7817, 7816 ], "bg": 3775 }, + { "id": "end_piece", "fg": [ 7819, 7821, 7820, 7818 ], "bg": 3775 }, + { "id": "unconnected", "fg": [ 7826, 7826 ], "bg": 3775 } ], - "bg": 3700 + "bg": 3775 }, - { "id": "t_reinforced_glass_shutter", "fg": 7736 }, - { "id": "t_reinforced_glass_shutter_open", "fg": 7737 }, + { "id": "t_reinforced_glass_shutter", "fg": 7827 }, + { "id": "t_reinforced_glass_shutter_open", "fg": 7828 }, { "id": "t_sandbox", - "fg": 7753, + "fg": 7844, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7738 }, - { "id": "corner", "fg": [ 7740, 7742, 7741, 7739 ] }, - { "id": "t_connection", "fg": [ 7750, 7752, 7751, 7749 ] }, - { "id": "edge", "fg": [ 7744, 7743 ] }, - { "id": "end_piece", "fg": [ 7746, 7748, 7747, 7745 ] }, - { "id": "unconnected", "fg": [ 7753, 7753 ] } + { "id": "center", "fg": 7829 }, + { "id": "corner", "fg": [ 7831, 7833, 7832, 7830 ] }, + { "id": "t_connection", "fg": [ 7841, 7843, 7842, 7840 ] }, + { "id": "edge", "fg": [ 7835, 7834 ] }, + { "id": "end_piece", "fg": [ 7837, 7839, 7838, 7836 ] }, + { "id": "unconnected", "fg": [ 7844, 7844 ] } ] }, - { "id": "t_slot_machine", "fg": 7754, "bg": 3228 }, - { "id": "t_strconc_wall", "fg": 7755 }, + { "id": "t_slot_machine", "fg": 7845, "bg": 3287 }, + { "id": "t_strconc_wall", "fg": 7846 }, { "id": "t_trunk", "multitile": true, - "fg": [ 7757, 7756 ], - "bg": [ { "weight": 100, "sprite": 3331 }, { "weight": 100, "sprite": 3333 } ] + "fg": [ 7848, 7847 ], + "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, { "id": "t_trunk_season_summer", "multitile": true, - "fg": [ 7757, 7756 ], - "bg": [ { "weight": 100, "sprite": 3341 }, { "weight": 100, "sprite": 3343 } ] + "fg": [ 7848, 7847 ], + "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, { "id": "t_trunk_season_autumn", "multitile": true, - "fg": [ 7757, 7756 ], - "bg": [ { "weight": 100, "sprite": 3336 }, { "weight": 100, "sprite": 3338 } ] + "fg": [ 7848, 7847 ], + "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, - { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7757, 7756 ], "bg": 2811 }, - { "id": "t_wall_half", "fg": 7758, "bg": 3228 }, + { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7848, 7847 ], "bg": 2870 }, + { "id": "t_wall_half", "fg": 7849, "bg": 3287 }, { "id": "t_wax", - "fg": 7774, + "fg": 7865, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7759 }, - { "id": "corner", "fg": [ 7761, 7763, 7762, 7760 ] }, - { "id": "t_connection", "fg": [ 7771, 7773, 7772, 7770 ] }, - { "id": "edge", "fg": [ 7765, 7764 ] }, - { "id": "end_piece", "fg": [ 7767, 7769, 7768, 7766 ] }, - { "id": "unconnected", "fg": [ 7774, 7774 ] } + { "id": "center", "fg": 7850 }, + { "id": "corner", "fg": [ 7852, 7854, 7853, 7851 ] }, + { "id": "t_connection", "fg": [ 7862, 7864, 7863, 7861 ] }, + { "id": "edge", "fg": [ 7856, 7855 ] }, + { "id": "end_piece", "fg": [ 7858, 7860, 7859, 7857 ] }, + { "id": "unconnected", "fg": [ 7865, 7865 ] } ] }, - { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7775, "bg": 4379 }, - { "id": "t_window_frame", "fg": 7776 }, - { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7777, "bg": 4379 }, - { "id": "tr_firewood_source", "fg": 7778 }, - { "id": "tr_unfinished_construction", "fg": 7779 }, + { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7866, "bg": 4454 }, + { "id": "t_window_frame", "fg": 7867 }, + { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7868, "bg": 4454 }, + { "id": "tr_firewood_source", "fg": 7869 }, + { "id": "tr_unfinished_construction", "fg": 7870 }, { "id": "vp_hdboard_ne", - "fg": [ 7806, 7809, 7808, 7807 ], + "fg": [ 7897, 7900, 7899, 7898 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7806, 7809, 7808, 7807 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7897, 7900, 7899, 7898 ] } ] }, { "id": "vp_hdboard_nw", - "fg": [ 7810, 7813, 7812, 7811 ], + "fg": [ 7901, 7904, 7903, 7902 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7810, 7813, 7812, 7811 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7901, 7904, 7903, 7902 ] } ] }, { "id": "vp_hdboard_se", - "fg": [ 7814, 7816, 7810, 7815 ], + "fg": [ 7905, 7907, 7901, 7906 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7814, 7816, 7810, 7815 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7905, 7907, 7901, 7906 ] } ] }, { "id": "vp_hdboard_sw", - "fg": [ 7817, 7819, 7806, 7818 ], + "fg": [ 7908, 7910, 7897, 7909 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7817, 7819, 7806, 7818 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7908, 7910, 7897, 7909 ] } ] }, { "id": "vp_hdboard_vertical_left", - "fg": [ 7820, 7822, 7823, 7821 ], + "fg": [ 7911, 7913, 7914, 7912 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7820, 7822, 7823, 7821 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7911, 7913, 7914, 7912 ] } ] }, { "id": "vp_hdboard_vertical_right", - "fg": [ 7823, 7825, 7820, 7824 ], + "fg": [ 7914, 7916, 7911, 7915 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7823, 7825, 7820, 7824 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7914, 7916, 7911, 7915 ] } ] }, { "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ], - "fg": 7802, + "fg": 7893, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7802 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7893 } ] }, { "id": "vp_hdboard_horizontal_front", - "fg": [ 7802, 7804, 7802, 7803 ], + "fg": [ 7893, 7895, 7893, 7894 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7802, 7804, 7802, 7803 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7893, 7895, 7893, 7894 ] } ] }, { "id": "vp_hdboard_horizontal_rear", - "fg": [ 7805, 7803, 7802, 7804 ], + "fg": [ 7896, 7894, 7893, 7895 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7805, 7803, 7802, 7804 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7896, 7894, 7893, 7895 ] } ] }, { "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ], - "fg": 7820, + "fg": 7911, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7820 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7911 } ] }, { "id": "vp_hdhalfboard_ne", - "fg": [ 7840, 7843, 7842, 7841 ], + "fg": [ 7931, 7934, 7933, 7932 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7840, 7843, 7842, 7841 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7931, 7934, 7933, 7932 ] } ] }, { "id": "vp_hdhalfboard_nw", - "fg": [ 7844, 7847, 7846, 7845 ], + "fg": [ 7935, 7938, 7937, 7936 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7844, 7847, 7846, 7845 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7935, 7938, 7937, 7936 ] } ] }, { "id": "vp_hdhalfboard_se", - "fg": [ 7848, 7851, 7850, 7849 ], + "fg": [ 7939, 7942, 7941, 7940 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7848, 7851, 7850, 7849 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7939, 7942, 7941, 7940 ] } ] }, { "id": "vp_hdhalfboard_sw", - "fg": [ 7852, 7855, 7854, 7853 ], + "fg": [ 7943, 7946, 7945, 7944 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7852, 7855, 7854, 7853 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7943, 7946, 7945, 7944 ] } ] }, { "id": "vp_hdhalfboard_vertical_left", - "fg": [ 7860, 7863, 7862, 7861 ], + "fg": [ 7951, 7954, 7953, 7952 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7860, 7863, 7862, 7861 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7951, 7954, 7953, 7952 ] } ] }, { "id": "vp_hdhalfboard_vertical_right", - "fg": [ 7864, 7867, 7866, 7865 ], + "fg": [ 7955, 7958, 7957, 7956 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7864, 7867, 7866, 7865 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7955, 7958, 7957, 7956 ] } ] }, { "id": "vp_hdhalfboard_horizontal", - "fg": [ 7835, 7838, 7837, 7836 ], + "fg": [ 7926, 7929, 7928, 7927 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7835, 7838, 7837, 7836 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7926, 7929, 7928, 7927 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2", - "fg": 7830, + "fg": 7921, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7830 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7921 } ] }, { "id": "vp_hdhalfboard_horizontal_front", - "fg": [ 7835, 7838, 7837, 7836 ], + "fg": [ 7926, 7929, 7928, 7927 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7835, 7838, 7837, 7836 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7926, 7929, 7928, 7927 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_front", - "fg": [ 7830, 7833, 7832, 7831 ], + "fg": [ 7921, 7924, 7923, 7922 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7830, 7833, 7832, 7831 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7921, 7924, 7923, 7922 ] } ] }, { "id": "vp_hdhalfboard_horizontal_rear", - "fg": [ 7839, 7836, 7835, 7838 ], + "fg": [ 7930, 7927, 7926, 7929 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7839, 7836, 7835, 7838 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7930, 7927, 7926, 7929 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_rear", - "fg": [ 7834, 7831, 7830, 7833 ], + "fg": [ 7925, 7922, 7921, 7924 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7834, 7831, 7830, 7833 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7925, 7922, 7921, 7924 ] } ] }, { "id": "vp_hdhalfboard_vertical", - "fg": 7856, + "fg": 7947, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7856 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7947 } ] }, { "id": "vp_hdhalfboard_vertical_2", - "fg": 7857, + "fg": 7948, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7857 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7948 } ] }, { "id": "vp_hdhalfboard_vertical_2_left", - "fg": [ 7858, 7863, 7862, 7861 ], + "fg": [ 7949, 7954, 7953, 7952 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7858, 7863, 7862, 7861 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7949, 7954, 7953, 7952 ] } ] }, { "id": "vp_hdhalfboard_vertical_2_right", - "fg": [ 7859, 7867, 7866, 7865 ], + "fg": [ 7950, 7958, 7957, 7956 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7859, 7867, 7866, 7865 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7950, 7958, 7957, 7956 ] } ] }, { "id": "vp_hdhalfboard_cover", - "fg": [ 7826, 7829, 7828, 7827 ], + "fg": [ 7917, 7920, 7919, 7918 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7826, 7829, 7828, 7827 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7917, 7920, 7919, 7918 ] } ] }, { "id": "vp_xlhalfboard_ne", - "fg": [ 7789, 7792, 7791, 7790 ], + "fg": [ 7880, 7883, 7882, 7881 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7789, 7792, 7791, 7790 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7880, 7883, 7882, 7881 ] } ] }, { "id": "vp_xlhalfboard_nw", - "fg": [ 7793, 7796, 7795, 7794 ], + "fg": [ 7884, 7887, 7886, 7885 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7793, 7796, 7795, 7794 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7884, 7887, 7886, 7885 ] } ] }, { "id": "vp_xlhalfboard_se", - "fg": 7797, + "fg": 7888, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7797 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7888 } ] }, { "id": "vp_xlhalfboard_sw", - "fg": 7798, + "fg": 7889, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7798 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7889 } ] }, { "id": "vp_xlhalfboard_vertical_left", - "fg": 7800, + "fg": 7891, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7800 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7891 } ] }, { "id": "vp_xlhalfboard_vertical_right", - "fg": 7801, + "fg": 7892, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7801 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7892 } ] }, { "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ], - "fg": 7784, + "fg": 7875, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7784 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7875 } ] }, { "id": "vp_xlhalfboard_horizontal_front", - "fg": [ 7784, 7787, 7786, 7785 ], + "fg": [ 7875, 7878, 7877, 7876 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7784, 7787, 7786, 7785 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7875, 7878, 7877, 7876 ] } ] }, { "id": "vp_xlhalfboard_horizontal_rear", - "fg": 7788, + "fg": 7879, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7788 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7879 } ] }, { "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ], - "fg": 7799, + "fg": 7890, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7799 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7890 } ] }, { "id": "vp_xlhalfboard_cover", - "fg": [ 7780, 7783, 7782, 7781 ], + "fg": [ 7871, 7874, 7873, 7872 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7780, 7783, 7782, 7781 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7871, 7874, 7873, 7872 ] } ] }, { "id": "vp_hdstowboard_ne", - "fg": [ 7873, 7876, 7875, 7874 ], + "fg": [ 7964, 7967, 7966, 7965 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7873, 7876, 7875, 7874 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7964, 7967, 7966, 7965 ] } ] }, { "id": "vp_hdstowboard_nw", - "fg": [ 7877, 7880, 7879, 7878 ], + "fg": [ 7968, 7971, 7970, 7969 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7877, 7880, 7879, 7878 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7968, 7971, 7970, 7969 ] } ] }, { "id": "vp_hdstowboard_se", - "fg": [ 7881, 7883, 7877, 7882 ], + "fg": [ 7972, 7974, 7968, 7973 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7881, 7883, 7877, 7882 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7972, 7974, 7968, 7973 ] } ] }, { "id": "vp_hdstowboard_sw", - "fg": [ 7884, 7886, 7873, 7885 ], + "fg": [ 7975, 7977, 7964, 7976 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7884, 7886, 7873, 7885 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7975, 7977, 7964, 7976 ] } ] }, { "id": "vp_hdstowboard_vertical_left", - "fg": [ 7887, 7889, 7890, 7888 ], + "fg": [ 7978, 7980, 7981, 7979 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7887, 7889, 7890, 7888 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7978, 7980, 7981, 7979 ] } ] }, { "id": "vp_hdstowboard_vertical_right", - "fg": [ 7890, 7888, 7887, 7889 ], + "fg": [ 7981, 7979, 7978, 7980 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7890, 7888, 7887, 7889 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7981, 7979, 7978, 7980 ] } ] }, { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ], - "fg": 7868, + "fg": 7959, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7868 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7959 } ] }, { "id": "vp_hdstowboard_horizontal_front", - "fg": [ 7868, 7871, 7870, 7869 ], + "fg": [ 7959, 7962, 7961, 7960 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7868, 7871, 7870, 7869 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7959, 7962, 7961, 7960 ] } ] }, { "id": "vp_hdstowboard_horizontal_rear", - "fg": [ 7872, 7869, 7868, 7871 ], + "fg": [ 7963, 7960, 7959, 7962 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7872, 7869, 7868, 7871 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7963, 7960, 7959, 7962 ] } ] }, { "id": "vp_hdstowboard_vertical", - "fg": 7888, + "fg": 7979, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7888 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7979 } ] }, { "id": "vp_woodboard_ne", - "fg": [ 7895, 7896, 7901, 7902 ], + "fg": [ 7986, 7987, 7992, 7993 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7895, 7896, 7901, 7902 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7986, 7987, 7992, 7993 ] } ] }, { "id": "vp_woodboard_nw", - "fg": [ 7897, 7898, 7899, 7900 ], + "fg": [ 7988, 7989, 7990, 7991 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7897, 7898, 7899, 7900 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7988, 7989, 7990, 7991 ] } ] }, { "id": "vp_woodboard_se", - "fg": [ 7899, 7900, 7897, 7898 ], + "fg": [ 7990, 7991, 7988, 7989 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7899, 7900, 7897, 7898 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7990, 7991, 7988, 7989 ] } ] }, { "id": "vp_woodboard_sw", - "fg": [ 7901, 7902, 7895, 7896 ], + "fg": [ 7992, 7993, 7986, 7987 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7901, 7902, 7895, 7896 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7992, 7993, 7986, 7987 ] } ] }, { "id": "vp_woodboard_vertical_left", - "fg": [ 7903, 7893, 7904, 7891 ], + "fg": [ 7994, 7984, 7995, 7982 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7903, 7893, 7904, 7891 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7994, 7984, 7995, 7982 ] } ] }, { "id": "vp_woodboard_vertical_right", - "fg": [ 7904, 7891, 7903, 7893 ], + "fg": [ 7995, 7982, 7994, 7984 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7904, 7891, 7903, 7893 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7995, 7982, 7994, 7984 ] } ] }, { "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ], - "fg": [ 7891, 7892, 7893, 7894 ], + "fg": [ 7982, 7983, 7984, 7985 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7891, 7892, 7893, 7894 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7982, 7983, 7984, 7985 ] } ] }, { "id": "vp_woodboard_horizontal_rear", - "fg": [ 7893, 7894, 7891, 7892 ], + "fg": [ 7984, 7985, 7982, 7983 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7893, 7894, 7891, 7892 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7984, 7985, 7982, 7983 ] } ] }, { "id": [ "vp_woodhalfboard_ne" ], - "fg": 7909, + "fg": 8000, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7909 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8000 } ] }, { "id": "vp_woodhalfboard_nw", - "fg": 7908, + "fg": 7999, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7908 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7999 } ] }, { "id": "vp_woodhalfboard_se", - "fg": 7913, + "fg": 8004, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7913 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8004 } ] }, { "id": "vp_woodhalfboard_sw", - "fg": 7912, + "fg": 8003, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7912 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8003 } ] }, { "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ], - "fg": 7910, + "fg": 8001, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7910 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8001 } ] }, { "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ], - "fg": 7914, + "fg": 8005, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7914 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8005 } ] }, { "id": [ @@ -12246,943 +12488,943 @@ "vp_woodhalfboard_horizontal_front", "vp_woodhalfboard_horizontal_2_front" ], - "fg": 7907, + "fg": 7998, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7907 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7998 } ] }, { "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ], - "fg": 7911, + "fg": 8002, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7911 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8002 } ] }, { "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ], - "fg": 7906, + "fg": 7997, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7906 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7997 } ] }, { "id": [ "vp_woodhalfboard_cover" ], - "fg": 7905, + "fg": 7996, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7905 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7996 } ] }, { "id": [ "vp_basketsm", "vp_basketsm_external" ], - "fg": [ 7926, 7925 ], + "fg": [ 8017, 8016 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7926, 7925 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8017, 8016 ] } ] }, { "id": "vp_basketsm_bike_rear", - "fg": [ 7922, 7924, 7923, 7921 ], + "fg": [ 8013, 8015, 8014, 8012 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7922, 7924, 7923, 7921 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8013, 8015, 8014, 8012 ] } ] }, { "id": [ "vp_basketlg", "vp_basketlg_external" ], - "fg": [ 7920, 7919 ], + "fg": [ 8011, 8010 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7920, 7919 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8011, 8010 ] } ] }, { "id": "vp_basketlg_cart", - "fg": [ 7916, 7918, 7917, 7915 ], + "fg": [ 8007, 8009, 8008, 8006 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7916, 7918, 7917, 7915 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8007, 8009, 8008, 8006 ] } ] }, { "id": "vp_box", - "fg": [ 7927, 7928 ], + "fg": [ 8018, 8019 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7927, 7928 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8018, 8019 ] } ] }, { "id": "vp_wood box", - "fg": [ 7937, 7936 ], + "fg": [ 8028, 8027 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7937, 7936 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8028, 8027 ] } ] }, { "id": "vp_box_wheelbarrow", - "fg": [ 7930, 7932, 7931, 7929 ], + "fg": [ 8021, 8023, 8022, 8020 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 7930, 7932, 7931, 7929 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8021, 8023, 8022, 8020 ] } ] }, { "id": "vp_trunk", - "fg": 7934, + "fg": 8025, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7934 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8025 } ] }, { "id": "vp_trunk_rear_edge", - "fg": 7935, + "fg": 8026, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7935 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8026 } ] }, { "id": [ "vp_cargo_space", "animal_compartment" ], - "fg": 7933, + "fg": 8024, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7933 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8024 } ] }, { "id": [ "vp_hddoor_trunk", "vp_hdhatch", "vp_hdhatch_opaque" ], - "fg": [ 7961, 7967, 7966, 7965 ], + "fg": [ 8052, 8058, 8057, 8056 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7962, 7964, 7962, 7963 ] }, { "id": "broken", "fg": 7941, "bg": [ 7962, 7964, 7962, 7963 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8053, 8055, 8053, 8054 ] }, { "id": "broken", "fg": 8032, "bg": [ 8053, 8055, 8053, 8054 ] } ] }, { "id": [ "vp_hddoor", "vp_hddoor_front" ], - "fg": [ 7949, 7950, 7949, 7948 ], + "fg": [ 8040, 8041, 8040, 8039 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7943, 7944, 7943, 7942 ] }, { "id": "broken", "fg": 7941, "bg": [ 7943, 7944, 7943, 7942 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8034, 8035, 8034, 8033 ] }, { "id": "broken", "fg": 8032, "bg": [ 8034, 8035, 8034, 8033 ] } ] }, { "id": "vp_hddoor_rear", - "fg": [ 7958, 7960, 7959, 7957 ], + "fg": [ 8049, 8051, 8050, 8048 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7946, 7947, 7946, 7945 ] }, { "id": "broken", "fg": 7941, "bg": [ 7946, 7947, 7946, 7945 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8037, 8038, 8037, 8036 ] }, { "id": "broken", "fg": 8032, "bg": [ 8037, 8038, 8037, 8036 ] } ] }, { "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ], - "fg": [ 7952, 7953, 7952, 7951 ], + "fg": [ 8043, 8044, 8043, 8042 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7943, 7944, 7943, 7942 ] }, { "id": "broken", "fg": 7941, "bg": [ 7943, 7944, 7943, 7942 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8034, 8035, 8034, 8033 ] }, { "id": "broken", "fg": 8032, "bg": [ 8034, 8035, 8034, 8033 ] } ] }, { "id": "vp_hddoor_opaque_rear", - "fg": [ 7955, 7956, 7955, 7954 ], + "fg": [ 8046, 8047, 8046, 8045 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7946, 7947, 7946, 7945 ] }, { "id": "broken", "fg": 7941, "bg": [ 7946, 7947, 7946, 7945 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8037, 8038, 8037, 8036 ] }, { "id": "broken", "fg": 8032, "bg": [ 8037, 8038, 8037, 8036 ] } ] }, { "id": "vp_ram_spiked", - "fg": 7969, + "fg": 8060, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7969 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8060 } ] }, { "id": "vp_ram_steel", - "fg": 7970, + "fg": 8061, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7969 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8060 } ] }, { "id": "vp_spike", - "fg": 7971, + "fg": 8062, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7971 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8062 } ] }, { "id": "vp_frame_cover", - "fg": 7973, + "fg": 8064, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7973 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8064 } ] }, { "id": "vp_frame_cross", - "fg": 7974, + "fg": 8065, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7974 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8065 } ] }, { "id": "vp_frame_cross_unconnected", - "fg": 7975, + "fg": 8066, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7975 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8066 } ] }, { "id": "vp_frame_ne", - "fg": 7988, + "fg": 8079, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7988 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8079 } ] }, { "id": "vp_frame_nw", - "fg": 7989, + "fg": 8080, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7989 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8080 } ] }, { "id": "vp_frame_se", - "fg": 7990, + "fg": 8081, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7990 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8081 } ] }, { "id": "vp_frame_sw", - "fg": 7991, + "fg": 8082, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7991 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8082 } ] }, { "id": "vp_frame_vertical_unconnected", - "fg": 7999, + "fg": 8090, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7999 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8090 } ] }, { "id": "vp_frame_vertical_2_unconnected", - "fg": 7996, + "fg": 8087, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7996 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8087 } ] }, { "id": "vp_frame_vertical_left", - "fg": 7997, + "fg": 8088, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7997 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8088 } ] }, { "id": "vp_frame_vertical_2_left", - "fg": 7994, + "fg": 8085, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7994 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8085 } ] }, { "id": "vp_frame_vertical_right", - "fg": 7998, + "fg": 8089, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7998 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8089 } ] }, { "id": "vp_frame_vertical_2_right", - "fg": 7995, + "fg": 8086, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7995 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8086 } ] }, { "id": "vp_frame_horizontal", - "fg": 7976, + "fg": 8067, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7976 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8067 } ] }, { "id": "vp_frame_horizontal_2", - "fg": 7977, + "fg": 8068, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7977 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8068 } ] }, { "id": "vp_frame_horizontal_unconnected", - "fg": 7987, + "fg": 8078, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7987 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8078 } ] }, { "id": "vp_frame_horizontal_2_unconnected", - "fg": 7980, + "fg": 8071, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7980 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8071 } ] }, { "id": "vp_frame_horizontal_front", - "fg": 7983, + "fg": 8074, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7983 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8074 } ] }, { "id": "vp_frame_horizontal_2_front", - "fg": 7978, + "fg": 8069, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7978 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8069 } ] }, { "id": "vp_frame_horizontal_rear", - "fg": 7985, + "fg": 8076, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7985 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8076 } ] }, { "id": "vp_frame_horizontal_2_rear", - "fg": 7979, + "fg": 8070, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7979 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8070 } ] }, { "id": [ "vp_frame_horizontal_left", "vp_frame_vertical_T_left" ], - "fg": 7984, + "fg": 8075, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7984 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8075 } ] }, { "id": "vp_frame_horizontal_2_left", - "fg": 7981, + "fg": 8072, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7981 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8072 } ] }, { "id": [ "vp_frame_horizontal_right", "vp_frame_vertical_T_right" ], - "fg": 7986, + "fg": 8077, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7986 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8077 } ] }, { "id": "vp_frame_horizontal_2_right", - "fg": 7982, + "fg": 8073, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7982 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8073 } ] }, { "id": "vp_frame_vertical", - "fg": 7992, + "fg": 8083, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7992 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8083 } ] }, { "id": "vp_frame_vertical_2", - "fg": 7993, + "fg": 8084, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 7993 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8084 } ] }, { "id": "vp_hdframe_cover", - "fg": 8000, + "fg": 8091, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8000 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8091 } ] }, { "id": "vp_hdframe_cross", - "fg": 8001, + "fg": 8092, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8001 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8092 } ] }, { "id": "vp_hdframe_cross_unconnected", - "fg": 8002, + "fg": 8093, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8002 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8093 } ] }, { "id": "vp_hdframe_ne", - "fg": 8015, + "fg": 8106, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8015 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8106 } ] }, { "id": "vp_hdframe_nw", - "fg": 8016, + "fg": 8107, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8016 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8107 } ] }, { "id": "vp_hdframe_se", - "fg": 8017, + "fg": 8108, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8017 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8108 } ] }, { "id": "vp_hdframe_sw", - "fg": 8018, + "fg": 8109, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8018 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8109 } ] }, { "id": "vp_hdframe_vertical_unconnected", - "fg": 8026, + "fg": 8117, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8026 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8117 } ] }, { "id": "vp_hdframe_vertical_2_unconnected", - "fg": 8023, + "fg": 8114, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8023 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8114 } ] }, { "id": "vp_hdframe_vertical_left", - "fg": 8024, + "fg": 8115, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8024 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8115 } ] }, { "id": "vp_hdframe_vertical_2_left", - "fg": 8021, + "fg": 8112, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8021 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8112 } ] }, { "id": "vp_hdframe_vertical_right", - "fg": 8025, + "fg": 8116, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8025 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8116 } ] }, { "id": "vp_hdframe_vertical_2_right", - "fg": 8022, + "fg": 8113, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8022 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8113 } ] }, { "id": "vp_hdframe_horizontal", - "fg": 8003, + "fg": 8094, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8003 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8094 } ] }, { "id": "vp_hdframe_horizontal_2", - "fg": 8004, + "fg": 8095, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8004 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8095 } ] }, { "id": "vp_hdframe_horizontal_unconnected", - "fg": 8014, + "fg": 8105, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8014 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8105 } ] }, { "id": "vp_hdframe_horizontal_2_unconnected", - "fg": 8007, + "fg": 8098, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8007 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8098 } ] }, { "id": "vp_hdframe_horizontal_front", - "fg": 8010, + "fg": 8101, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8010 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8101 } ] }, { "id": "vp_hdframe_horizontal_2_front", - "fg": 8005, + "fg": 8096, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8005 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8096 } ] }, { "id": "vp_hdframe_horizontal_rear", - "fg": 8012, + "fg": 8103, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8012 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8103 } ] }, { "id": "vp_hdframe_horizontal_2_rear", - "fg": 8006, + "fg": 8097, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8006 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8097 } ] }, { "id": [ "vp_hdframe_horizontal_left", "vp_hdframe_vertical_T_left" ], - "fg": 8011, + "fg": 8102, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8011 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8102 } ] }, { "id": "vp_hdframe_horizontal_2_left", - "fg": 8008, + "fg": 8099, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8008 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8099 } ] }, { "id": [ "vp_hdframe_horizontal_right", "vp_hdframe_vertical_T_right" ], - "fg": 8013, + "fg": 8104, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8013 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8104 } ] }, { "id": "vp_hdframe_horizontal_2_right", - "fg": 8009, + "fg": 8100, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8009 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8100 } ] }, { "id": "vp_hdframe_vertical", - "fg": 8019, + "fg": 8110, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8019 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8110 } ] }, { "id": "vp_hdframe_vertical_2", - "fg": 8020, + "fg": 8111, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8020 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8111 } ] }, { "id": "vp_xlframe_cover", - "fg": 8027, + "fg": 8118, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8027 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8118 } ] }, { "id": "vp_xlframe_cross", - "fg": 8028, + "fg": 8119, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8028 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8119 } ] }, { "id": "vp_xlframe_cross_unconnected", - "fg": 8029, + "fg": 8120, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8029 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8120 } ] }, { "id": "vp_xlframe_ne", - "fg": 8042, + "fg": 8133, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8042 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8133 } ] }, { "id": "vp_xlframe_nw", - "fg": 8043, + "fg": 8134, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8043 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8134 } ] }, { "id": "vp_xlframe_se", - "fg": 8044, + "fg": 8135, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8044 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8135 } ] }, { "id": "vp_xlframe_sw", - "fg": 8045, + "fg": 8136, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8045 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8136 } ] }, { "id": "vp_xlframe_vertical_unconnected", - "fg": 8053, + "fg": 8144, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8053 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8144 } ] }, { "id": "vp_xlframe_vertical_2_unconnected", - "fg": 8050, + "fg": 8141, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8050 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8141 } ] }, { "id": "vp_xlframe_vertical_left", - "fg": 8051, + "fg": 8142, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8051 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8142 } ] }, { "id": "vp_xlframe_vertical_2_left", - "fg": 8048, + "fg": 8139, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8048 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8139 } ] }, { "id": "vp_xlframe_vertical_right", - "fg": 8052, + "fg": 8143, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8052 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8143 } ] }, { "id": "vp_xlframe_vertical_2_right", - "fg": 8049, + "fg": 8140, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8049 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8140 } ] }, { "id": "vp_xlframe_horizontal", - "fg": 8030, + "fg": 8121, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8030 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8121 } ] }, { "id": "vp_xlframe_horizontal_2", - "fg": 8031, + "fg": 8122, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8031 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8122 } ] }, { "id": "vp_xlframe_horizontal_unconnected", - "fg": 8041, + "fg": 8132, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8041 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8132 } ] }, { "id": "vp_xlframe_horizontal_2_unconnected", - "fg": 8034, + "fg": 8125, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8034 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8125 } ] }, { "id": "vp_xlframe_horizontal_front", - "fg": 8037, + "fg": 8128, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8037 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8128 } ] }, { "id": "vp_xlframe_horizontal_2_front", - "fg": 8032, + "fg": 8123, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8032 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8123 } ] }, { "id": "vp_xlframe_horizontal_rear", - "fg": 8039, + "fg": 8130, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8039 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8130 } ] }, { "id": "vp_xlframe_horizontal_2_rear", - "fg": 8033, + "fg": 8124, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8033 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8124 } ] }, { "id": [ "vp_xlframe_horizontal_left", "vp_xlframe_vertical_T_left" ], - "fg": 8038, + "fg": 8129, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8038 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8129 } ] }, { "id": "vp_xlframe_horizontal_2_left", - "fg": 8035, + "fg": 8126, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8035 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8126 } ] }, { "id": [ "vp_xlframe_horizontal_right", "vp_xlframe_vertical_T_right" ], - "fg": 8040, + "fg": 8131, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8040 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8131 } ] }, { "id": "vp_xlframe_horizontal_2_right", - "fg": 8036, + "fg": 8127, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8036 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8127 } ] }, { "id": "vp_xlframe_vertical", - "fg": 8046, + "fg": 8137, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8046 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8137 } ] }, { "id": "vp_xlframe_vertical_2", - "fg": 8047, + "fg": 8138, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8047 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8138 } ] }, { "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ], - "fg": 8055 + "fg": 8146 }, { "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ], - "fg": 8054 + "fg": 8145 }, { "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ], - "fg": 8055 + "fg": 8146 }, { "id": "vp_light_blue", - "fg": [ 8069, 8070 ], + "fg": [ 8160, 8161 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8069, 8070 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8160, 8161 ] } ] }, { "id": "vp_light_red", - "fg": [ 8071, 8072 ], + "fg": [ 8162, 8163 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8071, 8072 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8162, 8163 ] } ] }, { "id": [ "vp_floodlight", "vp_directed_floodlight" ], - "fg": [ 8063, 8065, 8064, 8062 ], + "fg": [ 8154, 8156, 8155, 8153 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8063, 8065, 8064, 8062 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8154, 8156, 8155, 8153 ] } ] }, { "id": "vp_omnicam", - "fg": 8078, + "fg": 8169, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8078 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8169 } ] }, { "id": [ "vp_veh_table", "vp_veh_table_wood" ], - "fg": [ 8056, 8056 ], - "bg": [ 8084, 8083 ], + "fg": [ 8147, 8147 ], + "bg": [ 8175, 8174 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8057, "bg": [ 8084, 8083 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8148, "bg": [ 8175, 8174 ] } ] }, { "id": "vp_workbench", - "fg": [ 8085, 8085 ], - "bg": 3483, + "fg": [ 8176, 8176 ], + "bg": 3542, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8085, 8085 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8176, 8176 ] } ] }, { "id": "vp_minifridge", - "fg": [ 8076, 8076 ], + "fg": [ 8167, 8167 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8076, 8076 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8167, 8167 ] } ] }, { "id": "vp_minifreezer", - "fg": [ 8075, 8075 ], + "fg": [ 8166, 8166 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8075, 8075 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8166, 8166 ] } ] }, { "id": "vp_kitchen_unit", - "fg": [ 8068, 8068 ], + "fg": [ 8159, 8159 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8068, 8068 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8159, 8159 ] } ] }, { "id": "vp_welding_rig", - "fg": [ 8082, 8082 ], + "fg": [ 8173, 8173 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8082, 8082 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8173, 8173 ] } ] }, { "id": "vp_craft_rig", - "fg": [ 8061, 8061 ], + "fg": [ 8152, 8152 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8061, 8061 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8152, 8152 ] } ] }, { "id": "vp_washing_machine", - "fg": [ 8081, 8081 ], + "fg": [ 8172, 8172 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8081, 8081 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8172, 8172 ] } ] }, { "id": "vp_veh_forge", - "fg": [ 8066, 8066 ], + "fg": [ 8157, 8157 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8066, 8066 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8157, 8157 ] } ] }, { "id": "vp_veh_kiln", - "fg": [ 8067, 8067 ], + "fg": [ 8158, 8158 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8067, 8067 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8158, 8158 ] } ] }, { "id": "vp_chemlab", - "fg": [ 8060, 8060 ], + "fg": [ 8151, 8151 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8060, 8060 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8151, 8151 ] } ] }, { "id": "vp_aisle_vertical", - "fg": 8059, + "fg": 8150, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8059 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8150 } ] }, { "id": "vp_aisle_horizontal", - "fg": 8058, + "fg": 8149, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8058 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8149 } ] }, - { "id": "vp_trunk_floor", "fg": 8079, "bg": 8059 }, + { "id": "vp_trunk_floor", "fg": 8170, "bg": 8150 }, { "id": "vp_wooden_aisle_vertical", - "fg": [ 8084, 8083 ], + "fg": [ 8175, 8174 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8084, 8083 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8175, 8174 ] } ] }, { "id": "vp_wooden_aisle_horizontal", - "fg": [ 8083, 8084 ], + "fg": [ 8174, 8175 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8083, 8084 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8174, 8175 ] } ] }, { "id": "vp_lit_aisle_vertical", - "fg": 8074, + "fg": 8165, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8074 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8165 } ] }, { "id": "vp_lit_aisle_horizontal", - "fg": 8073, + "fg": 8164, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8073 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8164 } ] }, { "id": "vp_mounted_spare_tire", - "fg": 8077, + "fg": 8168, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8077 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8168 } ] }, { "id": [ "vp_saddle", "vp_saddle_pedal" ], - "fg": [ 8087, 8089, 8088, 8086 ], + "fg": [ 8178, 8180, 8179, 8177 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8087, 8089, 8088, 8086 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8178, 8180, 8179, 8177 ] } ] }, { "id": [ "vp_seat_wood", "seat_wood_bench" ], - "fg": [ 8094, 8094, 8095, 8095 ], - "bg": [ 8084, 8083 ], + "fg": [ 8185, 8185, 8186, 8186 ], + "bg": [ 8175, 8174 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8094, 8094, 8095, 8095 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8185, 8185, 8186, 8186 ] } ] }, { "id": "vp_seat_wood_flimsy", - "fg": [ 8092, 8092, 8093, 8093 ], - "bg": [ 8084, 8083 ], + "fg": [ 8183, 8183, 8184, 8184 ], + "bg": [ 8175, 8174 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8092, 8092, 8093, 8093 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8183, 8183, 8184, 8184 ] } ] }, { "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ], - "fg": [ 8127, 8125, 8120, 8126 ], + "fg": [ 8218, 8216, 8211, 8217 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8127, 8125, 8120, 8126 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8218, 8216, 8211, 8217 ] } ] }, { "id": "vp_seat_back", - "fg": [ 8096, 8119, 8118, 8117 ], + "fg": [ 8187, 8210, 8209, 8208 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8096, 8119, 8118, 8117 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8187, 8210, 8209, 8208 ] } ] }, { "id": "vp_seat_back_left", - "fg": [ 8109, 8112, 8111, 8110 ], + "fg": [ 8200, 8203, 8202, 8201 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8109, 8112, 8111, 8110 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8200, 8203, 8202, 8201 ] } ] }, { "id": "vp_seat_back_right", - "fg": [ 8113, 8116, 8115, 8114 ], + "fg": [ 8204, 8207, 8206, 8205 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8113, 8116, 8115, 8114 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8204, 8207, 8206, 8205 ] } ] }, { "id": "vp_seat_back_vertical", - "fg": [ 8117, 8096, 8119, 8118 ], + "fg": [ 8208, 8187, 8210, 8209 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8117, 8096, 8119, 8118 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8208, 8187, 8210, 8209 ] } ] }, { "id": "vp_seat_back_vertical_left", - "fg": [ 8110, 8109, 8112, 8111 ], + "fg": [ 8201, 8200, 8203, 8202 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8110, 8109, 8112, 8111 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8201, 8200, 8203, 8202 ] } ] }, { "id": "vp_seat_back_vertical_right", - "fg": [ 8114, 8113, 8116, 8115 ], + "fg": [ 8205, 8204, 8207, 8206 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8114, 8113, 8116, 8115 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8205, 8204, 8207, 8206 ] } ] }, { "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ], - "fg": [ 8124, 8122, 8121, 8123 ], + "fg": [ 8215, 8213, 8212, 8214 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8124, 8122, 8121, 8123 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8215, 8213, 8212, 8214 ] } ] }, { "id": "vp_seat_back_leather", - "fg": [ 8097, 8108, 8107, 8106 ], + "fg": [ 8188, 8199, 8198, 8197 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8097, 8108, 8107, 8106 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8188, 8199, 8198, 8197 ] } ] }, { "id": "vp_seat_back_leather_left", - "fg": [ 8098, 8101, 8100, 8099 ], + "fg": [ 8189, 8192, 8191, 8190 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8098, 8101, 8100, 8099 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8189, 8192, 8191, 8190 ] } ] }, { "id": "vp_seat_back_leather_right", - "fg": [ 8102, 8105, 8104, 8103 ], + "fg": [ 8193, 8196, 8195, 8194 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8102, 8105, 8104, 8103 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8193, 8196, 8195, 8194 ] } ] }, { "id": "vp_seat_back_leather_vertical", - "fg": [ 8106, 8097, 8108, 8107 ], + "fg": [ 8197, 8188, 8199, 8198 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8106, 8097, 8108, 8107 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8197, 8188, 8199, 8198 ] } ] }, { "id": "vp_seat_back_leather_vertical_left", - "fg": [ 8099, 8098, 8101, 8100 ], + "fg": [ 8190, 8189, 8192, 8191 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8099, 8098, 8101, 8100 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8190, 8189, 8192, 8191 ] } ] }, { "id": "vp_seat_back_leather_vertical_right", - "fg": [ 8103, 8102, 8105, 8104 ], + "fg": [ 8194, 8193, 8196, 8195 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8103, 8102, 8105, 8104 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8194, 8193, 8196, 8195 ] } ] }, { "id": "vp_seat_rear", - "fg": [ 8120, 8126, 8127, 8125 ], + "fg": [ 8211, 8217, 8218, 8216 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8120, 8126, 8127, 8125 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8211, 8217, 8218, 8216 ] } ] }, { "id": "vp_seat_leather_rear", - "fg": [ 8121, 8123, 8124, 8122 ], + "fg": [ 8212, 8214, 8215, 8213 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8121, 8123, 8124, 8122 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8212, 8214, 8215, 8213 ] } ] }, { "id": [ "vp_seed_drill" ], - "fg": [ 8129, 8131, 8130, 8128 ], + "fg": [ 8220, 8222, 8221, 8219 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8287, "bg": [ 8129, 8131, 8130, 8128 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8382, "bg": [ 8220, 8222, 8221, 8219 ] } ] }, { "id": "vp_solar_panel", - "fg": 8132, + "fg": 8223, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8132 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8223 } ] }, { "id": "vp_reinforced_solar_panel", - "fg": 8135, - "bg": 8132, + "fg": 8226, + "bg": 8223, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8132 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8223 } ] }, { "id": "vp_solar_panel_v2", - "fg": 8133, + "fg": 8224, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8133 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8224 } ] }, { "id": "vp_reinforced_solar_panel_v2", - "fg": 8135, - "bg": 8133, + "fg": 8226, + "bg": 8224, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8133 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8224 } ] }, { "id": "vp_solar_panel_v3", - "fg": 8134, + "fg": 8225, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8134 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8225 } ] }, { "id": "vp_afs_roof_external_tank", - "fg": [ 8137, 8136 ], + "fg": [ 8228, 8227 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8137, 8136 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8228, 8227 ] } ] }, { "id": "vp_external_tank", - "fg": [ 8138, 8139, 8140, 8141 ], + "fg": [ 8229, 8230, 8231, 8232 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8138, 8139, 8140, 8141 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8229, 8230, 8231, 8232 ] } ] }, { "id": "vp_tank_55gal_drum", - "fg": [ 8143, 8142 ], + "fg": [ 8234, 8233 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8143, 8142 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8234, 8233 ] } ] }, { "id": [ @@ -13199,80 +13441,80 @@ "vp_mounted_m60_semi" ], "//": "rifles and machineguns", - "fg": 8146, - "bg": 8144, + "fg": 8237, + "bg": 8235, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8146 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] }, { "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ], "//": "energy weapons", - "fg": 8145, - "bg": 8144, + "fg": 8236, + "bg": 8235, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8145 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8236 } ] }, { "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ], "//": "railguns", - "fg": 8147, - "bg": 8144, + "fg": 8238, + "bg": 8235, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8147 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8238 } ] }, { "id": [ "vp_mounted_bigun", "vp_mounted_m134" ], "//": "multibarrel weapons", - "fg": 8146, - "bg": 8144, + "fg": 8237, + "bg": 8235, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8146 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] }, { "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ], "//": "liquid sprayers", - "fg": 8146, - "bg": 8144, + "fg": 8237, + "bg": 8235, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8146 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] }, { "id": "vp_tow_launcher", "//": "rocket tubes", - "fg": 8146, - "bg": 8144, + "fg": 8237, + "bg": 8235, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8146 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] }, { "id": "vp_animal_compartment", - "fg": [ 8148, 8148, 8148, 8148 ], + "fg": [ 8239, 8239, 8239, 8239 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8148, 8148, 8148, 8148 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8239, 8239, 8239, 8239 ] } ] }, { "id": "vp_basketsm_wheelchair", - "fg": [ 8150, 8152, 8151, 8149 ], + "fg": [ 8241, 8243, 8242, 8240 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8150, 8152, 8151, 8149 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8241, 8243, 8242, 8240 ] } ] }, { "id": [ "vp_wheel", "vp_wheel_steerable" ], - "fg": 8153, + "fg": 8244, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8153 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8244 } ] }, { "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable", "vp_wheel_bicycle_or", "vp_wheel_bicycle_or_steerable" ], - "fg": [ 8155, 8157, 8156, 8154 ], + "fg": [ 8246, 8248, 8247, 8245 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8155, 8157, 8156, 8154 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8246, 8248, 8247, 8245 ] } ] }, { "id": [ "vp_wheel_bicycle_rear", "vp_wheel_bicycle_or_rear" ], - "fg": [ 8156, 8154, 8155, 8157 ], + "fg": [ 8247, 8245, 8246, 8248 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": [ 8156, 8154, 8155, 8157 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8247, 8245, 8246, 8248 ] } ] }, { "id": [ @@ -13281,694 +13523,691 @@ "vp_reinforced_windshield_horizontal_front", "vp_reinforced_windshield_front_edge" ], - "fg": [ 8158, 8161, 8160, 8159 ], + "fg": [ 8249, 8252, 8251, 8250 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8158, 8161, 8160, 8159 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8249, 8252, 8251, 8250 ] } ] }, { "id": "vp_reinforced_windshield_horizontal_rear", - "fg": 8162, + "fg": 8253, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8162 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8253 } ] }, { "id": "vp_reinforced_windshield_horizontal_rear_edge", - "fg": 8163, + "fg": 8254, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8163 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8254 } ] }, { "id": "vp_reinforced_windshield_nw", - "fg": [ 8168, 8171, 8170, 8169 ], + "fg": [ 8259, 8262, 8261, 8260 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8168, 8171, 8170, 8169 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8259, 8262, 8261, 8260 ] } ] }, { "id": "vp_reinforced_windshield_ne", - "fg": [ 8164, 8167, 8166, 8165 ], + "fg": [ 8255, 8258, 8257, 8256 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8164, 8167, 8166, 8165 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8255, 8258, 8257, 8256 ] } ] }, { "id": "vp_reinforced_windshield_sw", - "fg": 8177, + "fg": 8268, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8177 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8268 } ] }, { "id": "vp_reinforced_windshield_se", - "fg": 8172, + "fg": 8263, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": 8172 } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8263 } ] }, { "id": "vp_reinforced_windshield_sw_edge", - "fg": [ 8178, 8181, 8180, 8179 ], + "fg": [ 8269, 8272, 8271, 8270 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8178, 8181, 8180, 8179 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8269, 8272, 8271, 8270 ] } ] }, { "id": "vp_reinforced_windshield_se_edge", - "fg": [ 8173, 8176, 8175, 8174 ], + "fg": [ 8264, 8267, 8266, 8265 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8173, 8176, 8175, 8174 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8264, 8267, 8266, 8265 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ], - "fg": [ 8182, 8185, 8184, 8183 ], + "fg": [ 8273, 8276, 8275, 8274 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8182, 8185, 8184, 8183 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8273, 8276, 8275, 8274 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ], - "fg": [ 8186, 8189, 8188, 8187 ], + "fg": [ 8277, 8280, 8279, 8278 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8186, 8189, 8188, 8187 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8277, 8280, 8279, 8278 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ], - "fg": [ 8182, 8185, 8184, 8183 ], + "fg": [ 8273, 8276, 8275, 8274 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8182, 8185, 8184, 8183 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8273, 8276, 8275, 8274 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ], - "fg": [ 8186, 8189, 8188, 8187 ], + "fg": [ 8277, 8280, 8279, 8278 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7938, "bg": [ 8186, 8189, 8188, 8187 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8277, 8280, 8279, 8278 ] } ] }, { "id": "vp_frame_wood_vertical_2", - "fg": 8210, + "fg": 8301, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8210 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8301 } ] }, { "id": "vp_frame_wood_vertical_2_unconnected", - "fg": 8213, + "fg": 8304, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8213 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8304 } ] }, { "id": "vp_frame_wood_vertical_2_right", - "fg": 8212, + "fg": 8303, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8212 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8303 } ] }, { "id": "vp_frame_wood_vertical_2_left", - "fg": 8211, + "fg": 8302, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8211 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8302 } ] }, { "id": "vp_frame_wood_vertical", - "fg": 8209, + "fg": 8300, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8209 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8300 } ] }, { "id": "vp_frame_wood_vertical_unconnected", - "fg": 8216, + "fg": 8307, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8216 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8307 } ] }, { "id": "vp_frame_wood_vertical_right", - "fg": 8215, + "fg": 8306, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8215 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8306 } ] }, { "id": "vp_frame_wood_vertical_left", - "fg": 8214, + "fg": 8305, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8214 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8305 } ] }, { "id": "vp_frame_wood_sw", - "fg": 8208, + "fg": 8299, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8208 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8299 } ] }, { "id": "vp_frame_wood_se", - "fg": 8207, + "fg": 8298, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8207 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8298 } ] }, { "id": "vp_frame_wood_nw", - "fg": 8206, + "fg": 8297, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8206 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8297 } ] }, { "id": "vp_frame_wood_ne", - "fg": 8205, + "fg": 8296, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8205 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8296 } ] }, { "id": "vp_frame_wood_horizontal_2", - "fg": 8194, + "fg": 8285, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8194 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8285 } ] }, { "id": "vp_frame_wood_horizontal_2_unconnected", - "fg": 8199, + "fg": 8290, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8199 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8290 } ] }, { "id": "vp_frame_wood_horizontal_2_right", - "fg": 8198, + "fg": 8289, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8198 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8289 } ] }, { "id": "vp_frame_wood_horizontal_2_rear", - "fg": 8197, + "fg": 8288, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8197 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8288 } ] }, { "id": "vp_frame_wood_horizontal_2_left", - "fg": 8196, + "fg": 8287, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8196 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8287 } ] }, { "id": "vp_frame_wood_horizontal_2_front", - "fg": 8195, + "fg": 8286, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8195 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8286 } ] }, { "id": "vp_frame_wood_horizontal", - "fg": 8193, + "fg": 8284, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8193 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8284 } ] }, { "id": "vp_frame_wood_horizontal_unconnected", - "fg": 8204, + "fg": 8295, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8204 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8295 } ] }, { "id": "vp_frame_wood_horizontal_right", - "fg": 8203, + "fg": 8294, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8203 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8294 } ] }, { "id": "vp_frame_wood_horizontal_rear", - "fg": 8202, + "fg": 8293, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8202 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8293 } ] }, { "id": "vp_frame_wood_horizontal_left", - "fg": 8201, + "fg": 8292, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8201 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8292 } ] }, { "id": "vp_frame_wood_horizontal_front", - "fg": 8200, + "fg": 8291, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8200 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8291 } ] }, { "id": "vp_frame_wood_cross", - "fg": 8191, + "fg": 8282, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8191 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8282 } ] }, { "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ], - "fg": 8192, + "fg": 8283, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8192 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8283 } ] }, { "id": "vp_frame_wood_cover", - "fg": 8190, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8190 } ] - }, - { "id": "f_floor_mattress", "fg": 7468 }, - { "id": "f_fungal_mass", "fg": 7471 }, - { "id": "f_fungal_tangle", "fg": 7472 }, - { "id": "f_brazier", "fg": 7473 }, - { "id": "emer_blanket", "fg": 7503 }, - { "id": "emer_blanket_on", "fg": 7504 }, - { "id": "jacket_evac", "fg": 7505 }, - { "id": "f_autoclave", "fg": 7508 }, - { "id": "jeans_red", "fg": 7515 }, - { "id": "tights", "fg": 7516 }, - { "id": "blade", "fg": 7517 }, - { "id": "rm13_armor", "fg": 7518 }, - { "id": "55gal_drum", "fg": 7519 }, - { "id": "leather_funnel", "fg": 7544 }, - { "id": "tr_leather_funnel", "fg": 7546 }, - { "id": "brush", "fg": 7554 }, - { "id": "casserole", "fg": 7555 }, - { "id": "curling_iron", "fg": 7556 }, - { "id": "cutting_board", "fg": 7557 }, - { "id": "elec_hairtrimmer", "fg": 7558 }, - { "id": "hairbrush", "fg": 7559 }, - { "id": "metal_file", "fg": 7561 }, - { "id": "mobile_memory_card", "fg": 7562 }, - { "id": "plastic_straw", "fg": 7563 }, - { "id": "razor_blade", "fg": 7564 }, - { "id": "razor_shaving", "fg": 7565 }, - { "id": "string_floss", "fg": 7566 }, - { "id": "tumbler_plastic", "fg": 7568 }, - { "id": "xacto", "fg": 7569 }, - { "id": "mon_creeper_hub", "fg": 7641 }, - { "id": "mon_creeper_vine", "fg": 7642 }, - { "id": "f_rubble_landfill", "fg": 7669 }, - { "id": "t_roof_paper", "fg": 7718 }, - { "id": "crack_glass_left", "fg": 7939 }, - { "id": "crack_glass_right", "fg": 7940 }, - { "id": "vp_ram_mattress", "fg": 7968 }, - { "id": "vp_tearer", "fg": 7972 }, - { "id": "vp_vehicle_scoop", "fg": 8080 }, - { "id": "seat", "fg": 8090 }, - { "id": "seat_leather", "fg": 8091 } + "fg": 8281, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8281 } ] + }, + { "id": "f_floor_mattress", "fg": 7559 }, + { "id": "f_fungal_mass", "fg": 7562 }, + { "id": "f_fungal_tangle", "fg": 7563 }, + { "id": "f_brazier", "fg": 7564 }, + { "id": "emer_blanket", "fg": 7594 }, + { "id": "emer_blanket_on", "fg": 7595 }, + { "id": "jacket_evac", "fg": 7596 }, + { "id": "f_autoclave", "fg": 7599 }, + { "id": "jeans_red", "fg": 7606 }, + { "id": "tights", "fg": 7607 }, + { "id": "blade", "fg": 7608 }, + { "id": "rm13_armor", "fg": 7609 }, + { "id": "55gal_drum", "fg": 7610 }, + { "id": "leather_funnel", "fg": 7635 }, + { "id": "tr_leather_funnel", "fg": 7637 }, + { "id": "brush", "fg": 7645 }, + { "id": "casserole", "fg": 7646 }, + { "id": "curling_iron", "fg": 7647 }, + { "id": "cutting_board", "fg": 7648 }, + { "id": "elec_hairtrimmer", "fg": 7649 }, + { "id": "hairbrush", "fg": 7650 }, + { "id": "metal_file", "fg": 7652 }, + { "id": "mobile_memory_card", "fg": 7653 }, + { "id": "plastic_straw", "fg": 7654 }, + { "id": "razor_blade", "fg": 7655 }, + { "id": "razor_shaving", "fg": 7656 }, + { "id": "string_floss", "fg": 7657 }, + { "id": "tumbler_plastic", "fg": 7659 }, + { "id": "xacto", "fg": 7660 }, + { "id": "mon_creeper_hub", "fg": 7732 }, + { "id": "mon_creeper_vine", "fg": 7733 }, + { "id": "f_rubble_landfill", "fg": 7760 }, + { "id": "t_roof_paper", "fg": 7809 }, + { "id": "crack_glass_left", "fg": 8030 }, + { "id": "crack_glass_right", "fg": 8031 }, + { "id": "vp_ram_mattress", "fg": 8059 }, + { "id": "vp_tearer", "fg": 8063 }, + { "id": "vp_vehicle_scoop", "fg": 8171 }, + { "id": "seat", "fg": 8181 }, + { "id": "seat_leather", "fg": 8182 } ] }, { "file": "incomplete_large.png", - "//": "range 8224 to 8271", + "//": "range 8320 to 8367", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "mon_alpha_razorclaw", "fg": 8224, "bg": 7142 }, - { "id": "mon_chickenbot", "fg": 8225, "bg": 7142 }, - { "id": "mon_razorclaw", "fg": 8226, "bg": 7142 }, - { "id": "mon_science_bot", "fg": 8227, "bg": 7142 }, + { "id": "mon_alpha_razorclaw", "fg": 8320, "bg": 7238 }, + { "id": "mon_chickenbot", "fg": 8321, "bg": 7238 }, + { "id": "mon_razorclaw", "fg": 8322, "bg": 7238 }, + { "id": "mon_science_bot", "fg": 8323, "bg": 7238 }, { "id": "vp_halfboard_hatch_wheel_left", - "fg": [ 8230, 8233, 8232, 8231 ], + "fg": [ 8325, 8328, 8327, 8326 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8229, 8229, 8229, 8229 ], "bg": [ 8230, 8233, 8232, 8231 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8325, 8328, 8327, 8326 ] } ] }, { "id": "vp_halfboard_hatch_wheel_right", - "fg": [ 8234, 8237, 8236, 8235 ], + "fg": [ 8329, 8332, 8331, 8330 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8229, 8229, 8229, 8229 ], "bg": [ 8234, 8237, 8236, 8235 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8329, 8332, 8331, 8330 ] } ] }, { "id": "vp_halfboard_horizontal_2_rear", - "fg": [ 8238, 8241, 8240, 8239 ], + "fg": [ 8333, 8336, 8335, 8334 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8229, 8229, 8229, 8229 ], "bg": [ 8238, 8241, 8240, 8239 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8333, 8336, 8335, 8334 ] } ] }, { "id": "vp_hatch", - "fg": [ 8242, 8257, 8256, 8255 ], + "fg": [ 8337, 8352, 8351, 8350 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8251, 8254, 8253, 8252 ] }, - { "id": "broken", "fg": [ 8229, 8229, 8229, 8229 ], "bg": [ 8251, 8254, 8253, 8252 ] } + { "id": "open", "fg": [ 8346, 8349, 8348, 8347 ] }, + { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8346, 8349, 8348, 8347 ] } ] }, { "id": "vp_hatch_opaque", - "fg": [ 8243, 8250, 8249, 8248 ], + "fg": [ 8338, 8345, 8344, 8343 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8244, 8247, 8246, 8245 ] }, - { "id": "broken", "fg": [ 8229, 8229, 8229, 8229 ], "bg": [ 8244, 8247, 8246, 8245 ] } + { "id": "open", "fg": [ 8339, 8342, 8341, 8340 ] }, + { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8339, 8342, 8341, 8340 ] } ] }, { "id": "vp_door_trunk_hatch_wheel_left", - "fg": [ 8258, 8265, 8264, 8263 ], + "fg": [ 8353, 8360, 8359, 8358 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8259, 8262, 8261, 8260 ] }, - { "id": "broken", "fg": [ 8229, 8229, 8229, 8229 ], "bg": [ 8259, 8262, 8261, 8260 ] } + { "id": "open", "fg": [ 8354, 8357, 8356, 8355 ] }, + { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8354, 8357, 8356, 8355 ] } ] - }, - { "id": "mon_worm", "fg": 8228 } + } ] }, { "file": "fillerhoder.png", - "//": "range 8272 to 8351", + "//": "range 8368 to 8431", "tiles": [ { "id": "f_sandbag_wall", - "fg": 8272, + "fg": 8368, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 8272 }, - { "id": "center", "fg": 8273 }, - { "id": "corner", "fg": 8274 }, - { "id": "edge", "fg": 8275 }, - { "id": "end_piece", "fg": 8276 }, - { "id": "t_connection", "fg": 8277 } + { "id": "unconnected", "fg": 8368 }, + { "id": "center", "fg": 8369 }, + { "id": "corner", "fg": 8370 }, + { "id": "edge", "fg": 8371 }, + { "id": "end_piece", "fg": 8372 }, + { "id": "t_connection", "fg": 8373 } ] }, - { "id": "f_slab", "fg": 8278 }, - { "id": "animation_bullet_flame", "fg": 8279, "rotates": false }, - { "id": "animation_bullet_normal", "fg": 8280, "rotates": false }, - { "id": "animation_bullet_shrapnel", "fg": 8281 }, + { "id": "f_slab", "fg": 8374 }, + { "id": "animation_bullet_flame", "fg": 8375, "rotates": false }, + { "id": "animation_bullet_normal", "fg": 8376, "rotates": false }, + { "id": "animation_bullet_shrapnel", "fg": 8377 }, { "id": "explosion", - "fg": 8282, + "fg": 8378, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8282 }, { "id": "edge", "fg": 8283 } ] + "additional_tiles": [ { "id": "corner", "fg": 8378 }, { "id": "edge", "fg": 8379 } ] }, { "id": "explosion_medium", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8282 }, { "id": "edge", "fg": 8283 } ], - "fg": 8282 + "additional_tiles": [ { "id": "corner", "fg": 8378 }, { "id": "edge", "fg": 8379 } ], + "fg": 8378 }, { "id": "explosion_weak", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8282 }, { "id": "edge", "fg": 8283 } ], - "fg": 8282 + "additional_tiles": [ { "id": "corner", "fg": 8378 }, { "id": "edge", "fg": 8379 } ], + "fg": 8378 }, { "id": "vp_chimes", - "fg": 8284, + "fg": 8380, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8284 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8380 } ] }, { "id": "vp_robot_controls", - "fg": 8285, + "fg": 8381, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8285 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8381 } ] }, - { "id": "t_pit_corpsed", "fg": 8286, "bg": 3064 }, - { "id": "t_pit_corpsed_season_winter", "fg": 8286, "bg": 2811 }, - { "id": "vp_ram_wood", "fg": [ 8300, 8302, 8301, 8303 ], "rotates": true }, - { "id": "vp_ram_military", "fg": [ 8296, 8298, 8297, 8299 ], "rotates": true }, - { "id": "vp_ram_hardsteel", "fg": [ 8292, 8294, 8293, 8295 ], "rotates": true }, - { "id": "vp_ram_alloy", "fg": [ 8288, 8290, 8289, 8291 ], "rotates": true }, + { "id": "vp_ram_wood", "fg": [ 8395, 8397, 8396, 8398 ], "rotates": true }, + { "id": "vp_ram_military", "fg": [ 8391, 8393, 8392, 8394 ], "rotates": true }, + { "id": "vp_ram_hardsteel", "fg": [ 8387, 8389, 8388, 8390 ], "rotates": true }, + { "id": "vp_ram_alloy", "fg": [ 8383, 8385, 8384, 8386 ], "rotates": true }, { "id": "vp_roller_drum", - "fg": 8304, + "fg": 8399, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8287, "bg": 8304 } ] + "additional_tiles": [ { "id": "broken", "fg": 8382, "bg": 8399 } ] }, { "id": "vp_battery_motorbike", - "fg": 8316, + "fg": 8411, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8316 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8411 } ] }, { "id": "vp_blade_horizontal", - "fg": 8325, + "fg": 8420, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8325 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8420 } ] }, { "id": "vp_blade_vertical", - "fg": 8326, + "fg": 8421, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8326 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8421 } ] }, { "id": "vp_controls", - "fg": 8320, + "fg": 8415, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8320 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8415 } ] }, { "id": "vp_engine_1cyl", - "fg": 8309, + "fg": 8404, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8309 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8404 } ] }, { "id": "vp_engine_electric", - "fg": 8313, + "fg": 8408, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8313 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8408 } ] }, { "id": "vp_engine_electric_large", - "fg": 8314, + "fg": 8409, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8314 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8409 } ] }, - { "id": "vp_engine_v12", "fg": 8311, "bg": 8312 }, + { "id": "vp_engine_v12", "fg": 8406, "bg": 8407 }, { "id": "vp_engine_v6", - "fg": 8311, + "fg": 8406, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8311 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8406 } ] }, { "id": "vp_engine_v8", - "fg": 8312, + "fg": 8407, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8312 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8407 } ] }, { "id": "vp_engine_vtwin", - "fg": 8310, + "fg": 8405, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8310 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8405 } ] }, { "id": "vp_foot_pedals", - "fg": 8315, + "fg": 8410, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8315 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8410 } ] }, { "id": "vp_fusion_gun", - "fg": 8328, + "fg": 8423, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8328 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8423 } ] }, { "id": "vp_hdroof", - "fg": 8330, + "fg": 8425, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8330 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8425 } ] }, { "id": "vp_hydrogen_tank", - "fg": 8318, + "fg": 8413, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8318 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8413 } ] }, { "id": "vp_minireactor", - "fg": 8317, + "fg": 8412, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8317 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8412 } ] }, { "id": "vp_muffler", - "fg": 8319, + "fg": 8414, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8319 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8414 } ] }, { "id": "vp_plating_hard", - "fg": 8324, + "fg": 8419, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8324 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8419 } ] }, { "id": "vp_plating_military", - "fg": 8321, + "fg": 8416, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8321 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8416 } ] }, { "id": "vp_plating_spiked", - "fg": 8323, + "fg": 8418, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8323 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8418 } ] }, { "id": "vp_plating_steel", - "fg": 8321, + "fg": 8416, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8321 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8416 } ] }, { "id": "vp_plating_superalloy", - "fg": 8322, + "fg": 8417, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8322 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8417 } ] }, { "id": "vp_plating_wood", - "fg": 8333, + "fg": 8428, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8333 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8428 } ] }, { "id": "vp_roof", - "fg": 8331, + "fg": 8426, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8331 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8426 } ] }, { "id": "vp_roof_cloth", - "fg": 8332, + "fg": 8427, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8332 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8427 } ] }, { "id": "vp_seatbelt", - "fg": 8308, + "fg": 8403, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8308 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8403 } ] }, { "id": "vp_seatbelt_heavyduty", - "fg": 8308, + "fg": 8403, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8308 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8403 } ] }, { "id": "vp_small_storage_battery", - "fg": 8316, + "fg": 8411, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8316 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8411 } ] }, { "id": "vp_storage_battery", - "fg": 8316, + "fg": 8411, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8316 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8411 } ] }, { "id": "vp_v_curtain", - "fg": 8334, + "fg": 8429, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8334 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8429 } ] }, { "id": "vp_wheel_armor", - "fg": 8305, + "fg": 8400, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8305 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8400 } ] }, { "id": "vp_wheel_armor_steerable", - "fg": 8305, + "fg": 8400, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8305 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8400 } ] }, { "id": "vp_wheel_caster", - "fg": 8329, + "fg": 8424, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8329 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8424 } ] }, { "id": "vp_wheel_small", - "fg": 8307, + "fg": 8402, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8307 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8402 } ] }, { "id": "vp_wheel_small_steerable", - "fg": 8307, + "fg": 8402, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8307 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8402 } ] }, { "id": "vp_wheel_wheelchair", - "fg": 8306, + "fg": 8401, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8306 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8401 } ] }, { "id": "vp_wheel_wood", - "fg": 8336, + "fg": 8431, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8336 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8431 } ] }, { "id": [ "wheel_wood", "wheel_wood_b" ], - "fg": 8336, + "fg": 8431, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8336 } ] + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8431 } ] }, { "id": "vp_wheel_wood_b", - "fg": 8336, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7941, "bg": 8336 } ] - }, - { "id": "foot_crank", "fg": 8315 }, - { "id": "frame", "fg": 8335 }, - { "id": "hard_plate", "fg": 8324 }, - { "id": "kitchen_unit", "fg": 8327 }, - { "id": "motor", "fg": 8313 }, - { "id": "motor_large", "fg": 8314 }, - { "id": "muffler", "fg": 8319 }, - { "id": "spiked_plate", "fg": 8323 }, - { "id": "storage_battery", "fg": 8316 }, - { "id": "vehicle_controls", "fg": 8320 }, - { "id": "1cyl_combustion", "fg": 8309 }, - { "id": "v2_combustion", "fg": 8310 }, - { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8311 }, - { "id": "v8_combustion", "fg": 8312 } + "fg": 8431, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8431 } ] + }, + { "id": "foot_crank", "fg": 8410 }, + { "id": "frame", "fg": 8430 }, + { "id": "hard_plate", "fg": 8419 }, + { "id": "kitchen_unit", "fg": 8422 }, + { "id": "motor", "fg": 8408 }, + { "id": "motor_large", "fg": 8409 }, + { "id": "muffler", "fg": 8414 }, + { "id": "spiked_plate", "fg": 8418 }, + { "id": "storage_battery", "fg": 8411 }, + { "id": "vehicle_controls", "fg": 8415 }, + { "id": "1cyl_combustion", "fg": 8404 }, + { "id": "v2_combustion", "fg": 8405 }, + { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8406 }, + { "id": "v8_combustion", "fg": 8407 } ] }, { "file": "filler.png", - "//": "range 8352 to 8383", + "//": "range 8432 to 8463", "tiles": [ { "id": "f_metal_bench", "multitile": true, - "fg": 8367, + "fg": 8447, "additional_tiles": [ - { "id": "center", "fg": 8352 }, - { "id": "corner", "fg": [ 8354, 8356, 8355, 8353 ] }, - { "id": "t_connection", "fg": [ 8364, 8366, 8365, 8363 ] }, - { "id": "edge", "fg": [ 8358, 8357 ] }, - { "id": "end_piece", "fg": [ 8360, 8362, 8361, 8359 ] }, - { "id": "unconnected", "fg": [ 8367, 8367 ] } + { "id": "center", "fg": 8432 }, + { "id": "corner", "fg": [ 8434, 8436, 8435, 8433 ] }, + { "id": "t_connection", "fg": [ 8444, 8446, 8445, 8443 ] }, + { "id": "edge", "fg": [ 8438, 8437 ] }, + { "id": "end_piece", "fg": [ 8440, 8442, 8441, 8439 ] }, + { "id": "unconnected", "fg": [ 8447, 8447 ] } ] }, - { "id": "mon_leech_pod_cluster", "fg": 8368 }, - { "id": "mon_leech_root_drone", "fg": 8369 }, - { "id": "mon_leech_root_runner", "fg": 8370 }, - { "id": "mon_leech_stalk", "fg": 8371 } + { "id": "mon_leech_pod_cluster", "fg": 8448 }, + { "id": "mon_leech_root_drone", "fg": 8449 }, + { "id": "mon_leech_root_runner", "fg": 8450 }, + { "id": "mon_leech_stalk", "fg": 8451 } ] }, { "file": "filler_tall.png", - "//": "range 8384 to 8399", + "//": "range 8464 to 8479", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, "sprite_offset_y": -32, - "tiles": [ { "id": "f_exodii_printer_large", "fg": 8384 }, { "id": "f_exodii_printer_small", "fg": 8385 } ] + "tiles": [ { "id": "f_exodii_printer_large", "fg": 8464 }, { "id": "f_exodii_printer_small", "fg": 8465 } ] }, { "file": "fillergiant.png", - "//": "range 8400 to 8415", + "//": "range 8480 to 8495", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, @@ -13981,18 +14220,18 @@ "t_tree_pear_season_spring", "t_tree_plum_season_spring" ], - "fg": 7371, - "bg": 7364 + "fg": 7468, + "bg": 7461 }, - { "id": "t_tree_apricot_season_summer", "fg": 8400, "bg": 7365 }, - { "id": "t_tree_mulberry_season_summer", "fg": 8401, "bg": 7365 }, - { "id": "t_tree_elderberry_season_summer", "fg": 8401, "bg": 7365 }, - { "id": "t_tree_pear_season_autumn", "fg": 8402, "bg": 7365 }, - { "id": "t_tree_plum_season_summer", "fg": 8403, "bg": 7365 }, + { "id": "t_tree_apricot_season_summer", "fg": 8480, "bg": 7462 }, + { "id": "t_tree_mulberry_season_summer", "fg": 8481, "bg": 7462 }, + { "id": "t_tree_elderberry_season_summer", "fg": 8481, "bg": 7462 }, + { "id": "t_tree_pear_season_autumn", "fg": 8482, "bg": 7462 }, + { "id": "t_tree_plum_season_summer", "fg": 8483, "bg": 7462 }, { "id": [ "t_tree_apricot_harvested", "t_tree_mulberry_harvested", "t_tree_plum_harvested", "t_tree_pear_season_summer" ], - "fg": 7366, - "bg": 7365 + "fg": 7463, + "bg": 7462 }, { "id": [ @@ -14002,12 +14241,12 @@ "t_tree_pear_harvested" ], "fg": [ - { "weight": 100, "sprite": 7367 }, - { "weight": 100, "sprite": 7368 }, - { "weight": 100, "sprite": 7369 }, - { "weight": 100, "sprite": 7370 } + { "weight": 100, "sprite": 7464 }, + { "weight": 100, "sprite": 7465 }, + { "weight": 100, "sprite": 7466 }, + { "weight": 100, "sprite": 7467 } ], - "bg": 7363 + "bg": 7460 }, { "id": [ @@ -14016,29 +14255,29 @@ "t_tree_pear_season_winter", "t_tree_plum_season_winter" ], - "fg": 7395, - "bg": 7362 - }, - { "id": "t_tree_chestnut", "fg": 8405, "bg": 7364 }, - { "id": "t_tree_chestnut_season_summer", "fg": 8404, "bg": 7365 }, - { "id": "t_tree_chestnut_season_autumn", "fg": 8404, "bg": 7363 }, - { "id": "t_tree_chestnut_season_winter", "fg": 8404, "bg": 7362 }, - { "id": "t_tree_pine", "fg": 8409, "bg": 7364 }, - { "id": "t_tree_pine_season_summer", "fg": 8409, "bg": 7365 }, - { "id": "t_tree_pine_season_autumn", "fg": 8409, "bg": 7363 }, - { "id": "t_tree_pine_season_winter", "fg": 8409, "bg": 7362 }, - { "id": "t_tree_deadpine", "fg": 8406, "bg": 7364 }, - { "id": "t_tree_deadpine_season_summer", "fg": 8406, "bg": 7365 }, - { "id": "t_tree_deadpine_season_autumn", "fg": 8406, "bg": 7363 }, - { "id": "t_tree_deadpine_season_winter", "fg": 8406, "bg": 7362 }, - { "id": "t_tree_hickory", "fg": 8408, "bg": 7364 }, - { "id": "t_tree_hickory_season_summer", "fg": 8408, "bg": 7365 }, - { "id": "t_tree_hickory_season_autumn", "fg": 8408, "bg": 7363 }, - { "id": "t_tree_hickory_season_winter", "fg": 8407, "bg": 7362 }, - { "id": "t_tree_hickory_dead", "fg": 8407, "bg": 7364 }, - { "id": "t_tree_hickory_dead_season_summer", "fg": 8407, "bg": 7365 }, - { "id": "t_tree_hickory_dead_season_autumn", "fg": 8407, "bg": 7363 }, - { "id": "t_tree_hickory_dead_season_winter", "fg": 8407, "bg": 7362 } + "fg": 7492, + "bg": 7459 + }, + { "id": "t_tree_chestnut", "fg": 8485, "bg": 7461 }, + { "id": "t_tree_chestnut_season_summer", "fg": 8484, "bg": 7462 }, + { "id": "t_tree_chestnut_season_autumn", "fg": 8484, "bg": 7460 }, + { "id": "t_tree_chestnut_season_winter", "fg": 8484, "bg": 7459 }, + { "id": "t_tree_pine", "fg": 8489, "bg": 7461 }, + { "id": "t_tree_pine_season_summer", "fg": 8489, "bg": 7462 }, + { "id": "t_tree_pine_season_autumn", "fg": 8489, "bg": 7460 }, + { "id": "t_tree_pine_season_winter", "fg": 8489, "bg": 7459 }, + { "id": "t_tree_deadpine", "fg": 8486, "bg": 7461 }, + { "id": "t_tree_deadpine_season_summer", "fg": 8486, "bg": 7462 }, + { "id": "t_tree_deadpine_season_autumn", "fg": 8486, "bg": 7460 }, + { "id": "t_tree_deadpine_season_winter", "fg": 8486, "bg": 7459 }, + { "id": "t_tree_hickory", "fg": 8488, "bg": 7461 }, + { "id": "t_tree_hickory_season_summer", "fg": 8488, "bg": 7462 }, + { "id": "t_tree_hickory_season_autumn", "fg": 8488, "bg": 7460 }, + { "id": "t_tree_hickory_season_winter", "fg": 8487, "bg": 7459 }, + { "id": "t_tree_hickory_dead", "fg": 8487, "bg": 7461 }, + { "id": "t_tree_hickory_dead_season_summer", "fg": 8487, "bg": 7462 }, + { "id": "t_tree_hickory_dead_season_autumn", "fg": 8487, "bg": 7460 }, + { "id": "t_tree_hickory_dead_season_winter", "fg": 8487, "bg": 7459 } ] }, { diff --git a/lang/extract_json_strings.py b/lang/extract_json_strings.py index 405b277f52f2c..8ea8f82f4db27 100755 --- a/lang/extract_json_strings.py +++ b/lang/extract_json_strings.py @@ -681,19 +681,19 @@ def extract_recipe_group(item): writestr(outfile, i.get("description")) -def extract_gendered_dynamic_line_optional(line, outfile): +def extract_gendered_dynamic_line_optional(line, outfile, comment=None): if "gendered_line" in line: msg = line["gendered_line"] subjects = line["relevant_genders"] options = [gender_options(subject) for subject in subjects] for context_list in itertools.product(*options): context = " ".join(context_list) - writestr(outfile, msg, context=context) + writestr(outfile, msg, context=context, comment=comment) -def extract_dynamic_line_optional(line, member, outfile): +def extract_dynamic_line_optional(line, member, outfile, comment=None): if member in line: - extract_dynamic_line(line[member], outfile) + extract_dynamic_line(line[member], outfile, comment=comment) dynamic_line_string_keys = [ @@ -714,16 +714,16 @@ def extract_dynamic_line_optional(line, member, outfile): ] -def extract_dynamic_line(line, outfile): +def extract_dynamic_line(line, outfile, comment=None): if type(line) == list: for l in line: - extract_dynamic_line(l, outfile) + extract_dynamic_line(l, outfile, comment) elif type(line) == dict: - extract_gendered_dynamic_line_optional(line, outfile) + extract_gendered_dynamic_line_optional(line, outfile, comment=comment) for key in dynamic_line_string_keys: - extract_dynamic_line_optional(line, key, outfile) + extract_dynamic_line_optional(line, key, outfile, comment=comment) elif type(line) == str: - writestr(outfile, line) + writestr(outfile, line, comment=comment) def extract_talk_effects(effects, outfile): @@ -763,7 +763,10 @@ def extract_talk_response(response, outfile): def extract_talk_topic(item): outfile = get_outfile("talk_topic") if "dynamic_line" in item: - extract_dynamic_line(item["dynamic_line"], outfile) + comment = None + if "//~" in item: + comment = item["//~"] + extract_dynamic_line(item["dynamic_line"], outfile, comment) if "responses" in item: for r in item["responses"]: extract_talk_response(r, outfile) diff --git a/src/avatar.cpp b/src/avatar.cpp index ac9eb08cf2a82..986060544ba54 100644 --- a/src/avatar.cpp +++ b/src/avatar.cpp @@ -180,8 +180,8 @@ void avatar::control_npc( npc &np ) // perception and mutations may have changed, so reset light level caches g->reset_light_level(); // center the map on the new avatar character - g->vertical_shift( posz() ); - g->update_map( *this ); + const bool z_level_changed = g->vertical_shift( posz() ); + g->update_map( *this, z_level_changed ); } void avatar::control_npc_menu() @@ -1776,7 +1776,15 @@ bool character_martial_arts::pick_style( const avatar &you ) // Style selection int selection = kmenu.ret; if( selection >= STYLE_OFFSET ) { + // If the currect style is selected, do not change styles + if( style_selected == selectable_styles[selection - STYLE_OFFSET] ) { + return false; + } + + avatar &u = const_cast( you ); + style_selected->remove_all_buffs( u ); style_selected = selectable_styles[selection - STYLE_OFFSET]; + ma_static_effects( u ); martialart_use_message( you ); } else if( selection == KEEP_HANDS_FREE ) { keep_hands_free = !keep_hands_free; diff --git a/src/bionics.cpp b/src/bionics.cpp index 05b113d14a78c..d35de2955cb15 100644 --- a/src/bionics.cpp +++ b/src/bionics.cpp @@ -187,6 +187,7 @@ static const json_character_flag json_flag_BIONIC_GUN( "BIONIC_GUN" ); static const json_character_flag json_flag_BIONIC_NPC_USABLE( "BIONIC_NPC_USABLE" ); static const json_character_flag json_flag_BIONIC_WEAPON( "BIONIC_WEAPON" ); static const json_character_flag json_flag_BIONIC_TOGGLED( "BIONIC_TOGGLED" ); +static const json_character_flag json_flag_ENHANCED_VISION( "ENHANCED_VISION" ); struct Character::auto_toggle_bionic_result { bool can_burn_fuel = false; @@ -2875,6 +2876,10 @@ void Character::add_bionic( const bionic_id &b ) calc_encumbrance(); recalc_sight_limits(); + if( is_avatar() && has_flag( json_flag_ENHANCED_VISION ) ) { + // enhanced vision counts as optics for overmap sight range. + g->update_overmap_seen(); + } if( !b->enchantments.empty() ) { recalculate_enchantment_cache(); } diff --git a/src/cata_tiles.cpp b/src/cata_tiles.cpp index 24e6abb440f32..d0e621dd720dd 100644 --- a/src/cata_tiles.cpp +++ b/src/cata_tiles.cpp @@ -3734,7 +3734,7 @@ void cata_tiles::draw_sct_frame( std::multimap &overlay_s const direction direction = iter->getDirection(); // Compensate for string length offset added at SCT creation // (it will be readded using font size and proper encoding later). - const int direction_offset = ( -direction_XY( direction ).x + 1 ) * + const int direction_offset = ( -displace_XY( direction ).x + 1 ) * full_text_length / 2; overlay_strings.emplace( diff --git a/src/cata_variant.cpp b/src/cata_variant.cpp index 525d5c76f9d59..ccea044e25955 100644 --- a/src/cata_variant.cpp +++ b/src/cata_variant.cpp @@ -60,6 +60,7 @@ std::string enum_to_string( cata_variant_type type ) case cata_variant_type::move_mode_id: return "character_movemode"; case cata_variant_type::mutagen_technique: return "mutagen_technique"; case cata_variant_type::mutation_category_id: return "mutation_category_id"; + case cata_variant_type::nested_mapgen_id: return "nested_mapgen_id"; case cata_variant_type::npc_template_id: return "npc_template_id"; case cata_variant_type::oter_id: return "oter_id"; case cata_variant_type::oter_type_str_id: return "oter_type_str_id"; diff --git a/src/cata_variant.h b/src/cata_variant.h index 5d8d2bd5655ca..f68261661481a 100644 --- a/src/cata_variant.h +++ b/src/cata_variant.h @@ -60,6 +60,7 @@ enum class cata_variant_type : int { move_mode_id, mutagen_technique, mutation_category_id, + nested_mapgen_id, npc_template_id, oter_id, oter_type_str_id, @@ -186,7 +187,7 @@ struct convert_enum { }; // These are the specializations of convert for each value type. -static_assert( static_cast( cata_variant_type::num_types ) == 45, +static_assert( static_cast( cata_variant_type::num_types ) == 46, "This assert is a reminder to add conversion support for any new types to the " "below specializations" ); @@ -320,6 +321,9 @@ template<> struct convert : convert_string_id {}; +template<> +struct convert : convert_string_id {}; + template<> struct convert : convert_string_id {}; diff --git a/src/character.cpp b/src/character.cpp index 441665ae57b2d..e5aaa8378f41f 100644 --- a/src/character.cpp +++ b/src/character.cpp @@ -919,6 +919,7 @@ int Character::overmap_sight_range( int light_level ) const float multiplier = mutation_value( "overmap_multiplier" ); // Binoculars double your sight range. + // When adding checks here, also call game::update_overmap_seen at the place they first become true const bool has_optic = ( has_item_with_flag( flag_ZOOM ) || has_flag( json_flag_ENHANCED_VISION ) || ( is_mounted() && mounted_creature->has_flag( MF_MECH_RECON_VISION ) ) ); @@ -1216,6 +1217,10 @@ void Character::mount_creature( monster &z ) } // some rideable mechs have night-vision recalc_sight_limits(); + if( is_avatar() && z.has_flag( MF_MECH_RECON_VISION ) ) { + // mech night-vision counts as optics for overmap sight range. + g->update_overmap_seen(); + } mod_moves( -100 ); } @@ -2899,6 +2904,16 @@ void Character::die( Creature *nkiller ) is_dead = true; set_killer( nkiller ); set_time_died( calendar::turn ); + + dialogue d( get_talker_for( this ), nkiller == nullptr ? nullptr : get_talker_for( nkiller ) ); + for( effect_on_condition_id &eoc : death_eocs ) { + if( eoc->type == eoc_type::NPC_DEATH ) { + eoc->activate( d ); + } else { + debugmsg( "Tried to use non NPC_DEATH eoc_type %s for an npc death.", eoc.c_str() ); + } + } + if( has_effect( effect_lightsnare ) ) { inv->add_item( item( "string_36", calendar::turn_zero ) ); inv->add_item( item( "snare_trigger", calendar::turn_zero ) ); @@ -7179,6 +7194,19 @@ std::vector Character::inv_dump() return ret; } +std::vector Character::inv_dump() const +{ + std::vector ret; + if( is_armed() && can_drop( weapon ).success() ) { + ret.push_back( &weapon ); + } + for( const item &i : worn ) { + ret.push_back( &i ); + } + inv->dump( ret ); + return ret; +} + bool Character::covered_with_flag( const flag_id &f, const body_part_set &parts ) const { if( parts.none() ) { @@ -7237,6 +7265,52 @@ units::volume Character::free_space() const return volume_capacity; } +units::volume Character::holster_volume() const +{ + units::volume holster_volume = 0_ml; + if( weapon.is_holster() ) { + holster_volume += weapon.get_total_capacity(); + } + for( const item &w : worn ) { + if( w.is_holster() ) { + holster_volume += w.get_total_capacity(); + } + } + return holster_volume; +} + +int Character::empty_holsters() const +{ + int e_holsters = 0; + if( weapon.is_holster() ) { + e_holsters += 1; + } + for( const item &w : worn ) { + if( w.is_holster() && w.is_container_empty() ) { + e_holsters += 1; + } + } + return e_holsters; +} + +units::volume Character::small_pocket_volume( const units::volume &threshold ) const +{ + units::volume small_spaces = 0_ml; + if( weapon.get_total_capacity() <= threshold ) { + small_spaces += weapon.get_total_capacity(); + } + for( const item &w : worn ) { + if( !w.is_holster() ) { + for( const item_pocket *pocket : w.get_all_contained_pockets().value() ) { + if( pocket->volume_capacity() <= threshold ) { + small_spaces += ( pocket->volume_capacity() ); + } + } + } + } + return small_spaces; +} + units::volume Character::volume_capacity() const { units::volume volume_capacity = 0_ml; @@ -8143,6 +8217,15 @@ void Character::on_item_takeoff( const item &it ) morale->on_item_takeoff( it ); } +void Character::on_item_acquire( const item &it ) +{ + if( is_avatar() && it.has_item_with( []( const item & it ) { + return it.has_flag( flag_ZOOM ); + } ) ) { + g->update_overmap_seen(); + } +} + void Character::on_effect_int_change( const efftype_id &eid, int intensity, const bodypart_id &bp ) { // Adrenaline can reduce perceived pain (or increase it when you enter comedown). diff --git a/src/character.h b/src/character.h index 94bb504662e92..8256f7b2f4a63 100644 --- a/src/character.h +++ b/src/character.h @@ -1015,8 +1015,8 @@ class Character : public Creature, public visitable */ void passive_absorb_hit( const bodypart_id &bp, damage_unit &du ) const; /** Runs through all bionics and armor on a part and reduces damage through their armor_absorb */ - std::string absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, - damage_instance &dam ) override; + const weakpoint *absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, + damage_instance &dam ) override; /** The character's skill in hitting a weakpoint */ float melee_weakpoint_skill( const item &weapon ); float ranged_weakpoint_skill( const item &weapon ); @@ -1846,7 +1846,7 @@ class Character : public Creature, public visitable // weapon + worn (for death, etc) std::vector inv_dump(); - + std::vector inv_dump() const; units::mass weight_carried() const; units::volume volume_carried() const; @@ -1882,6 +1882,16 @@ class Character : public Creature, public visitable units::volume volume_capacity_with_tweaks( const std::vector> &locations ) const; units::volume free_space() const; + /** + * Returns the total volume of all worn holsters. + */ + units::volume holster_volume() const; + int empty_holsters() const; + /** + * Returns the total volume of all pockets less than or equal to the volume passed in + * @param volume threshold for pockets to be considered + */ + units::volume small_pocket_volume( const units::volume &threshold = 1000_ml ) const; /** Note that we've read a book at least once. **/ virtual bool has_identified( const itype_id &item_id ) const = 0; @@ -2223,7 +2233,7 @@ class Character : public Creature, public visitable bool male = false; bool is_dead = false; - + std::vector death_eocs; std::list worn; bool nv_cached = false; // Means player sit inside vehicle on the tile he is now @@ -2514,6 +2524,8 @@ class Character : public Creature, public visitable void on_item_takeoff( const item &it ); /** Called when an item is washed */ void on_worn_item_washed( const item &it ); + /** Called when an item is acquired (picked up, worn, or wielded) */ + void on_item_acquire( const item &it ); /** Called when effect intensity has been changed */ void on_effect_int_change( const efftype_id &eid, int intensity, const bodypart_id &bp = bodypart_id( "bp_null" ) ) override; diff --git a/src/character_armor.cpp b/src/character_armor.cpp index 1c7f0a734659f..eaa3a92ae343a 100644 --- a/src/character_armor.cpp +++ b/src/character_armor.cpp @@ -329,8 +329,8 @@ static void destroyed_armor_msg( Character &who, const std::string &pre_damage_n pre_damage_name ); } -std::string Character::absorb_hit( const weakpoint_attack &, const bodypart_id &bp, - damage_instance &dam ) +const weakpoint *Character::absorb_hit( const weakpoint_attack &, const bodypart_id &bp, + damage_instance &dam ) { std::list worn_remains; bool armor_destroyed = false; @@ -435,7 +435,7 @@ std::string Character::absorb_hit( const weakpoint_attack &, const bodypart_id & if( armor_destroyed ) { drop_invalid_inventory(); } - return {}; + return nullptr; } diff --git a/src/character_martial_arts.h b/src/character_martial_arts.h index b185cc6f83481..49f790f77817c 100644 --- a/src/character_martial_arts.h +++ b/src/character_martial_arts.h @@ -53,6 +53,8 @@ class character_martial_arts /** Displays a message if the player can or cannot use the martial art */ void martialart_use_message( const Character &owner ) const; + /** Removes all martial arts events */ + void clear_all_effects( Character &owner ); /** Fires all non-triggered martial arts events */ void ma_static_effects( Character &owner ); /** Fires all move-triggered martial arts events */ diff --git a/src/character_morale.cpp b/src/character_morale.cpp index b8d863122fffe..8f7b0ac4f420d 100644 --- a/src/character_morale.cpp +++ b/src/character_morale.cpp @@ -20,7 +20,9 @@ void Character::update_morale() void Character::hoarder_morale_penalty() { - int pen = free_space() / 125_ml; + // For hoarders holsters count as a flat -1 penalty for being empty, we also give them a 25% allowence on their pockets below 1000_ml + int pen = ( ( free_space() - holster_volume() ) - ( small_pocket_volume() / 4 ) ) / 125_ml; + pen += empty_holsters(); if( pen > 70 ) { pen = 70; } diff --git a/src/condition.cpp b/src/condition.cpp index ebfc37d128d6c..a877423744ed4 100644 --- a/src/condition.cpp +++ b/src/condition.cpp @@ -305,7 +305,7 @@ void conditional_t::set_has_item_category( const JsonObject &jo, const std::s condition = [category_id, count, is_npc]( const T & d ) { const talker *actor = d.actor( is_npc ); - const auto items_with = actor->items_with( [category_id]( const item & it ) { + const auto items_with = actor->const_items_with( [category_id]( const item & it ) { return it.get_category_shallow().get_id() == category_id; } ); return items_with.size() >= count; @@ -807,7 +807,15 @@ template void conditional_t::set_is_outside( bool is_npc ) { condition = [is_npc]( const T & d ) { - return is_creature_outside( *d.actor( is_npc )->get_character() ); + return is_creature_outside( *d.actor( is_npc )->get_creature() ); + }; +} + +template +void conditional_t::set_is_underwater( bool is_npc ) +{ + condition = [is_npc]( const T & d ) { + return get_map().is_divable( d.actor( is_npc )->pos() ); }; } @@ -820,6 +828,22 @@ void conditional_t::set_one_in_chance( const JsonObject &jo, const std::strin }; } +template +void conditional_t::set_query( const JsonObject &jo, const std::string &member, bool is_npc ) +{ + std::string message = jo.get_string( member ); + bool default_val = jo.get_bool( "default" ); + condition = [message, default_val, is_npc]( const T & d ) { + const talker *actor = d.actor( is_npc ); + if( actor->get_character() && actor->get_character()->is_avatar() ) { + std::string translated_message = _( message ); + return query_yn( translated_message ); + } else { + return default_val; + } + }; +} + template void conditional_t::set_x_in_y_chance( const JsonObject &jo, const std::string &member ) { @@ -1177,6 +1201,14 @@ std::function conditional_t::get_get_int( const JsonObject return [is_npc]( const T & d ) { return d.actor( is_npc )->get_friendly(); }; + } else if( checked_value == "moon" ) { + return []( const T & ) { + return static_cast( get_moon_phase( calendar::turn ) ); + }; + } else if( checked_value == "hour" ) { + return []( const T & ) { + return to_hours( time_past_midnight( calendar::turn ) ); + }; } } jo.throw_error( "unrecognized integer source in " + jo.str() ); @@ -1451,6 +1483,10 @@ conditional_t::conditional_t( const JsonObject &jo ) set_need( jo, "u_need" ); } else if( jo.has_string( "npc_need" ) ) { set_need( jo, "npc_need", is_npc ); + } else if( jo.has_member( "u_query" ) ) { + set_query( jo, "u_query" ); + } else if( jo.has_member( "npc_query" ) ) { + set_query( jo, "npc_query", is_npc ); } else if( jo.has_string( "u_at_om_location" ) ) { set_at_om_location( jo, "u_at_om_location" ); } else if( jo.has_string( "npc_at_om_location" ) ) { @@ -1610,6 +1646,10 @@ conditional_t::conditional_t( const std::string &type ) set_is_outside(); } else if( type == "is_outside" || type == "npc_is_outside" ) { set_is_outside( is_npc ); + } else if( type == "u_is_underwater" ) { + set_is_underwater(); + } else if( type == "npc_is_underwater" ) { + set_is_underwater( is_npc ); } else if( type == "u_has_camp" ) { set_u_has_camp(); } else if( type == "has_pickup_list" ) { diff --git a/src/condition.h b/src/condition.h index 07dad179954db..dca0fc6f6a8b5 100644 --- a/src/condition.h +++ b/src/condition.h @@ -38,7 +38,7 @@ const std::unordered_set complex_conds = { { "u_has_items", "npc_has_items", "u_has_item_category", "npc_has_item_category", "u_has_bionics", "npc_has_bionics", "u_has_effect", "npc_has_effect", "u_need", "npc_need", "u_at_om_location", "npc_at_om_location", "npc_role_nearby", "npc_allies", "npc_service", - "u_has_cash", "u_are_owed", + "u_has_cash", "u_are_owed", "u_query", "npc_query", "npc_aim_rule", "npc_engagement_rule", "npc_rule", "npc_override", "npc_cbm_reserve_rule", "npc_cbm_recharge_rule", "days_since_cataclysm", "is_season", "mission_goal", "u_has_var", "npc_has_var", @@ -155,6 +155,7 @@ struct conditional_t { void set_is_on_terrain( const JsonObject &jo, const std::string &member, bool is_npc = false ); void set_is_in_field( const JsonObject &jo, const std::string &member, bool is_npc = false ); void set_one_in_chance( const JsonObject &jo, const std::string &member ); + void set_query( const JsonObject &jo, const std::string &member, bool is_npc = false ); void set_x_in_y_chance( const JsonObject &jo, const std::string &member ); void set_has_worn_with_flag( const JsonObject &jo, const std::string &member, bool is_npc = false ); void set_has_wielded_with_flag( const JsonObject &jo, const std::string &member, @@ -203,6 +204,7 @@ struct conditional_t { void set_is_day(); void set_has_stolen_item( bool is_npc = false ); void set_is_outside( bool is_npc = false ); + void set_is_underwater( bool is_npc = false ); void set_is_by_radio(); void set_u_has_camp(); void set_has_pickup_list(); diff --git a/src/creature.cpp b/src/creature.cpp index 04b52d4d3b80b..b21442b5f5759 100644 --- a/src/creature.cpp +++ b/src/creature.cpp @@ -964,7 +964,7 @@ void Creature::messaging_projectile_attack( const Creature *source, add_msg( m_good, _( "You hit %1$s in %2$s for %3$d damage." ), disp_name(), hit_selection.wp_hit, total_damage ); } - } else if( u_see_this ) { + } else if( u_see_this && source != this ) { if( hit_selection.wp_hit.empty() ) { //~ 1$ - shooter, 2$ - target add_msg( _( "%1$s shoots %2$s." ), @@ -1094,7 +1094,8 @@ dealt_damage_instance Creature::deal_damage( Creature *source, bodypart_id bp, damage_instance d = dam; // copy, since we will mutate in absorb_hit dealt_damage_instance dealt_dams; - dealt_dams.wp_hit = absorb_hit( attack, bp, d ); + const weakpoint *wp = absorb_hit( attack, bp, d ); + dealt_dams.wp_hit = wp == nullptr ? "" : wp->name; // Add up all the damage units dealt for( const auto &it : d.damage_units ) { @@ -1109,6 +1110,11 @@ dealt_damage_instance Creature::deal_damage( Creature *source, bodypart_id bp, mod_pain( total_pain ); apply_damage( source, bp, total_damage ); + + if( wp != nullptr ) { + wp->apply_effects( *this, total_damage, attack ); + } + return dealt_dams; } void Creature::deal_damage_handle_type( const effect_source &source, const damage_unit &du, @@ -2736,9 +2742,24 @@ std::unique_ptr get_talker_for( Creature &me ) } } +std::unique_ptr get_talker_for( const Creature &me ) +{ + if( !me.is_monster() ) { + return std::make_unique( static_cast( &me ) ); + } else { + debugmsg( "Invalid creature type %s.", me.get_name() ); + standard_npc default_npc( "Default" ); + return get_talker_for( default_npc ); + } +} + std::unique_ptr get_talker_for( Creature *me ) { - if( me->is_monster() ) { + if( !me ) { + debugmsg( "Null creature type." ); + standard_npc default_npc( "Default" ); + return get_talker_for( default_npc ); + } else if( me->is_monster() ) { return std::make_unique( static_cast( me ) ); } else if( me->is_npc() ) { return std::make_unique( static_cast( me ) ); diff --git a/src/creature.h b/src/creature.h index fc6c41f5648d9..e9d1465efe28a 100644 --- a/src/creature.h +++ b/src/creature.h @@ -394,8 +394,8 @@ class Creature : public viewer // handles armor absorption (including clothing damage etc) // of damage instance. returns name of weakpoint hit, if any. mutates &dam. - virtual std::string absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, - damage_instance &dam ) = 0; + virtual const weakpoint *absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, + damage_instance &dam ) = 0; // TODO: this is just a shim so knockbacks work void knock_back_from( const tripoint &p ); @@ -1263,5 +1263,6 @@ class Creature : public viewer const projectile_attack_results &hit_selection, int total_damage ) const; }; std::unique_ptr get_talker_for( Creature &me ); +std::unique_ptr get_talker_for( const Creature &me ); std::unique_ptr get_talker_for( Creature *me ); #endif // CATA_SRC_CREATURE_H diff --git a/src/cube_direction.h b/src/cube_direction.h new file mode 100644 index 0000000000000..1fa799d037d3d --- /dev/null +++ b/src/cube_direction.h @@ -0,0 +1,44 @@ +#ifndef CATA_SRC_CUBE_DIRECTION_H +#define CATA_SRC_CUBE_DIRECTION_H + +#include + +#include "enum_traits.h" + +namespace om_direction +{ +enum class type : int; +} // namespace om_direction + +// We have other direction enums, but for this purpose we need to have one for +// the six rectilinear directions. These correspond to the faces of a cube, so +// I've called it cube_direction +enum class cube_direction : int { + north, + east, + south, + west, + above, + below, + last +}; + +template<> +struct enum_traits { + static constexpr cube_direction last = cube_direction::last; +}; + +namespace std +{ +template <> struct hash { + std::size_t operator()( const cube_direction &d ) const { + return static_cast( d ); + } +}; +} // namespace std + +cube_direction operator+( const cube_direction, const om_direction::type ); +cube_direction operator+( const cube_direction, int i ); +cube_direction operator-( const cube_direction, int i ); + +#endif // CATA_SRC_CUBE_DIRECTION_H diff --git a/src/effect_on_condition.cpp b/src/effect_on_condition.cpp index d12b0d118f143..c0d928e8c11c6 100644 --- a/src/effect_on_condition.cpp +++ b/src/effect_on_condition.cpp @@ -10,6 +10,26 @@ #include "talker.h" #include "type_id.h" +namespace io +{ + // *INDENT-OFF* + template<> + std::string enum_to_string( eoc_type data ) + { + switch ( data ) { + case eoc_type::ACTIVATION: return "ACTIVATION"; + case eoc_type::RECURRING: return "RECURRING"; + case eoc_type::SCENARIO_SPECIFIC: return "SCENARIO_SPECIFIC"; + case eoc_type::AVATAR_DEATH: return "AVATAR_DEATH"; + case eoc_type::NPC_DEATH: return "NPC_DEATH"; + case eoc_type::NUM_EOC_TYPES: break; + } + cata_fatal( "Invalid eoc_type" ); + } + // *INDENT-ON* +} // namespace io + + namespace { generic_factory @@ -36,15 +56,21 @@ void effect_on_conditions::check_consistency() void effect_on_condition::load( const JsonObject &jo, const std::string & ) { mandatory( jo, was_loaded, "id", id ); - activate_only = true; + optional( jo, was_loaded, "eoc_type", type, eoc_type::NUM_EOC_TYPES ); if( jo.has_member( "recurrence_min" ) || jo.has_member( "recurrence_max" ) ) { - activate_only = false; + if( type != eoc_type::NUM_EOC_TYPES && type != eoc_type::RECURRING ) { + jo.throw_error( "A recurring effect_on_condition must be of type RECURRING." ); + } + type = eoc_type::RECURRING; mandatory( jo, was_loaded, "recurrence_min", recurrence_min ); mandatory( jo, was_loaded, "recurrence_max", recurrence_max ); if( recurrence_max < recurrence_min ) { jo.throw_error( "recurrence_max cannot be smaller than recurrence_min." ); } } + if( type == eoc_type::NUM_EOC_TYPES ) { + type = eoc_type::ACTIVATION; + } if( jo.has_member( "deactivate_condition" ) ) { read_condition( jo, "deactivate_condition", deactivate_condition, false ); @@ -61,11 +87,10 @@ void effect_on_condition::load( const JsonObject &jo, const std::string & ) has_false_effect = true; } - optional( jo, was_loaded, "scenario_specific", scenario_specific ); optional( jo, was_loaded, "run_for_npcs", run_for_npcs, false ); optional( jo, was_loaded, "global", global, false ); - if( activate_only && global ) { - jo.throw_error( "global should only be true for recurring effect_on_conditions." ); + if( type != eoc_type::RECURRING && ( global || run_for_npcs ) ) { + jo.throw_error( "run_for_npcs and global should only be true for RECURRING effect_on_conditions." ); } else if( !global && run_for_npcs ) { jo.throw_error( "run_for_npcs should only be true for global effect_on_conditions." ); } @@ -96,7 +121,7 @@ void effect_on_conditions::load_new_character( Character &you ) bool is_avatar = you.is_avatar(); for( const effect_on_condition_id &eoc_id : get_scenario()->eoc() ) { effect_on_condition eoc = eoc_id.obj(); - if( eoc.scenario_specific && ( is_avatar || eoc.run_for_npcs ) ) { + if( eoc.type == eoc_type::SCENARIO_SPECIFIC && ( is_avatar || eoc.run_for_npcs ) ) { queued_eoc new_eoc = queued_eoc{ eoc.id, true, calendar::turn + next_recurrence( eoc.id ) }; you.queued_effect_on_conditions.push( new_eoc ); } @@ -105,7 +130,7 @@ void effect_on_conditions::load_new_character( Character &you ) effect_on_conditions::clear( you ); for( const effect_on_condition &eoc : effect_on_conditions::get_all() ) { - if( !eoc.activate_only && !eoc.scenario_specific && ( is_avatar || !eoc.global ) ) { + if( eoc.type == eoc_type::RECURRING && ( is_avatar || eoc.run_for_npcs ) ) { queued_eoc new_eoc = queued_eoc{ eoc.id, true, calendar::turn + next_recurrence( eoc.id ) }; if( eoc.global ) { g->queued_global_effect_on_conditions.push( new_eoc ); @@ -147,7 +172,7 @@ void effect_on_conditions::load_existing_character( Character &you ) bool is_avatar = you.is_avatar(); std::map new_eocs; for( const effect_on_condition &eoc : effect_on_conditions::get_all() ) { - if( !eoc.activate_only && !eoc.scenario_specific && ( is_avatar || !eoc.global ) ) { + if( eoc.type == eoc_type::RECURRING && ( is_avatar || !eoc.global ) ) { new_eocs[eoc.id] = true; } } @@ -335,6 +360,18 @@ void effect_on_conditions::write_global_eocs_to_file( ) }, "eocs test file" ); } +void effect_on_conditions::avatar_death() +{ + avatar &player_character = get_avatar(); + dialogue d( get_talker_for( get_avatar() ), + player_character.get_killer() == nullptr ? nullptr : get_talker_for( + player_character.get_killer() ) ); + for( const effect_on_condition &eoc : effect_on_conditions::get_all() ) { + if( eoc.type == eoc_type::AVATAR_DEATH ) { + eoc.activate( d ); + } + } +} void effect_on_condition::finalize() { diff --git a/src/effect_on_condition.h b/src/effect_on_condition.h index 88f30ea6fd25b..a15dee8c8d697 100644 --- a/src/effect_on_condition.h +++ b/src/effect_on_condition.h @@ -13,7 +13,14 @@ template class generic_factory; - +enum eoc_type { + ACTIVATION, + RECURRING, + SCENARIO_SPECIFIC, + AVATAR_DEATH, + NPC_DEATH, + NUM_EOC_TYPES +}; struct effect_on_condition { public: friend class generic_factory; @@ -23,7 +30,7 @@ struct effect_on_condition { /* If this is true it will be run on the player and every npc. Deactivate conditions will work based on the player. */ bool global = false; effect_on_condition_id id; - + eoc_type type; std::function condition; std::function deactivate_condition; talk_effect_t true_effect; @@ -31,9 +38,7 @@ struct effect_on_condition { bool has_deactivate_condition = false; bool has_condition = false; bool has_false_effect = false; - bool activate_only = true; - bool scenario_specific = false; - + //TODO duration or var these time_duration recurrence_min = 1_seconds; time_duration recurrence_max = 1_seconds; bool activate( dialogue &d ) const; @@ -72,6 +77,12 @@ void clear( Character &you ); /** write out all queued eocs and inactive eocs to a file for testing */ void write_eocs_to_file( Character &you ); void write_global_eocs_to_file(); +/** Run all avatar death eocs */ +void avatar_death(); } // namespace effect_on_conditions +template<> +struct enum_traits { + static constexpr eoc_type last = eoc_type::NUM_EOC_TYPES; +}; #endif // CATA_SRC_EFFECT_ON_CONDITION_H diff --git a/src/game.cpp b/src/game.cpp index 50286c7219c45..3946acf20eef7 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -2312,6 +2312,10 @@ bool game::is_game_over() } // is_dead_state() already checks hp_torso && hp_head, no need to for loop it if( u.is_dead_state() ) { + effect_on_conditions::avatar_death(); + if( !u.is_dead_state() ) { + return false; + } Messages::deactivate(); if( get_option( "DEATHCAM" ) == "always" ) { uquit = QUIT_WATCH; @@ -4937,11 +4941,15 @@ bool game::npc_menu( npc &who ) if( !prompt_dangerous_tile( who.pos() ) ) { return true; } - // TODO: Make NPCs protest when displaced onto dangerous crap - add_msg( _( "You swap places with %s." ), who.get_name() ); - swap_critters( u, who ); - // TODO: Make that depend on stuff - u.mod_moves( -200 ); + if( u.get_grab_type() == object_type::NONE ) { + // TODO: Make NPCs protest when displaced onto dangerous crap + add_msg( _( "You swap places with %s." ), who.get_name() ); + swap_critters( u, who ); + // TODO: Make that depend on stuff + u.mod_moves( -200 ); + } else { + add_msg( _( "You cannot swap places while grabbing something." ) ); + } } else if( choice == push ) { // TODO: Make NPCs protest when displaced onto dangerous crap tripoint oldpos = who.pos(); @@ -9257,8 +9265,9 @@ point game::place_player( const tripoint &dest_loc ) } // Move the player // Start with z-level, to make it less likely that old functions (2D ones) freak out + bool z_level_changed = false; if( dest_loc.z != m.get_abs_sub().z ) { - vertical_shift( dest_loc.z ); + z_level_changed = vertical_shift( dest_loc.z ); } if( u.is_hauling() && ( !m.can_put_items( dest_loc ) || @@ -9273,7 +9282,7 @@ point game::place_player( const tripoint &dest_loc ) mon->process_triggers(); m.creature_in_field( *mon ); } - point submap_shift = update_map( u ); + point submap_shift = update_map( u, z_level_changed ); // Important: don't use dest_loc after this line. `update_map` may have shifted the map // and dest_loc was not adjusted and therefore is still in the un-shifted system and probably wrong. // If you must use it you can calculate the position in the new, shifted system with @@ -9309,7 +9318,7 @@ point game::place_player( const tripoint &dest_loc ) }; for( const direction &elem : adjacentDir ) { - forage( u.pos() + direction_XY( elem ) ); + forage( u.pos() + displace_XY( elem ) ); } } @@ -9352,7 +9361,7 @@ point game::place_player( const tripoint &dest_loc ) if( pulp_butcher == "pulp_adjacent" || pulp_butcher == "pulp_adjacent_zombie_only" ) { for( const direction &elem : adjacentDir ) { - pulp( u.pos() + direction_XY( elem ) ); + pulp( u.pos() + displace_XY( elem ) ); } } else { pulp( u.pos() ); @@ -10321,9 +10330,9 @@ void game::vertical_move( int movez, bool force, bool peeking ) const tripoint old_pos = u.pos(); const tripoint old_abs_pos = here.getabs( old_pos ); point submap_shift; - vertical_shift( z_after ); + const bool z_level_changed = vertical_shift( z_after ); if( !force ) { - submap_shift = update_map( stairs.x, stairs.y ); + submap_shift = update_map( stairs.x, stairs.y, z_level_changed ); } // if an NPC or monster is on the stiars when player ascends/descends @@ -10587,12 +10596,12 @@ cata::optional game::find_or_make_stairs( map &mp, const int z_after, return stairs; } -void game::vertical_shift( const int z_after ) +bool game::vertical_shift( const int z_after ) { if( z_after < -OVERMAP_DEPTH || z_after > OVERMAP_HEIGHT ) { debugmsg( "Tried to get z-level %d outside allowed range of %d-%d", z_after, -OVERMAP_DEPTH, OVERMAP_HEIGHT ); - return; + return false; } // TODO: Implement dragging stuff up/down @@ -10606,6 +10615,8 @@ void game::vertical_shift( const int z_after ) m.vertical_shift( z_after ); vertical_notes( z_before, z_after ); + + return z_before != z_after; } void game::vertical_notes( int z_before, int z_after ) @@ -10648,13 +10659,13 @@ void game::vertical_notes( int z_before, int z_after ) } } -point game::update_map( Character &p ) +point game::update_map( Character &p, bool z_level_changed ) { point p2( p.posx(), p.posy() ); - return update_map( p2.x, p2.y ); + return update_map( p2.x, p2.y, z_level_changed ); } -point game::update_map( int &x, int &y ) +point game::update_map( int &x, int &y, bool z_level_changed ) { point shift; @@ -10678,10 +10689,11 @@ point game::update_map( int &x, int &y ) if( shift == point_zero ) { // adjust player position u.setpos( tripoint( x, y, m.get_abs_sub().z ) ); - // Update what parts of the world map we can see - // We need this call because even if the map hasn't shifted we may have changed z-level and can now see farther - // TODO: only make this call if we changed z-level - update_overmap_seen(); + if( z_level_changed ) { + // Update what parts of the world map we can see + // We may be able to see farther now that the z-level has changed. + update_overmap_seen(); + } // Not actually shifting the submaps, all the stuff below would do nothing return point_zero; } diff --git a/src/game.h b/src/game.h index f049fcb161d5f..a11803c5d1bfd 100644 --- a/src/game.h +++ b/src/game.h @@ -275,8 +275,10 @@ class game /** Returns the other end of the stairs (if any). May query, affect u etc. */ cata::optional find_or_make_stairs( map &mp, int z_after, bool &rope_ladder, bool peeking ); - /** Actual z-level movement part of vertical_move. Doesn't include stair finding, traps etc. */ - void vertical_shift( int z_after ); + /** Actual z-level movement part of vertical_move. Doesn't include stair finding, traps etc. + * Returns true if the z-level changed. + */ + bool vertical_shift( int z_after ); /** Add goes up/down auto_notes (if turned on) */ void vertical_notes( int z_before, int z_after ); /** Checks to see if a player can use a computer (not illiterate, etc.) and uses if able. */ @@ -557,8 +559,8 @@ class game Creature *is_hostile_very_close( bool dangerous = false ); // Handles shifting coordinates transparently when moving between submaps. // Helper to make calling with a player pointer less verbose. - point update_map( Character &p ); - point update_map( int &x, int &y ); + point update_map( Character &p, bool z_level_changed = false ); + point update_map( int &x, int &y, bool z_level_changed = false ); void update_overmap_seen(); // Update which overmap tiles we can see void peek(); diff --git a/src/iexamine.cpp b/src/iexamine.cpp index 3c70ff278a773..89c817cf52ec6 100644 --- a/src/iexamine.cpp +++ b/src/iexamine.cpp @@ -1682,16 +1682,6 @@ void iexamine::bulletin_board( Character &you, const tripoint &examp ) } } -/** - * Display popup with reference to "The Enigma of Amigara Fault." - */ -void iexamine::fault( Character &, const tripoint & ) -{ - popup( _( "This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" - "as far back into the solid rock as you can see. The holes are humanoid in\n" - "shape, but with long, twisted, distended limbs." ) ); -} - /** * Spawn 1d4 wyrms and sink pedestal into ground. */ @@ -6257,7 +6247,6 @@ iexamine_functions iexamine_functions_from_string( const std::string &function_n { "slot_machine", &iexamine::slot_machine }, { "safe", &iexamine::safe }, { "bulletin_board", &iexamine::bulletin_board }, - { "fault", &iexamine::fault }, { "pedestal_wyrm", &iexamine::pedestal_wyrm }, { "pedestal_temple", &iexamine::pedestal_temple }, { "door_peephole", &iexamine::door_peephole }, @@ -6319,7 +6308,6 @@ iexamine_functions iexamine_functions_from_string( const std::string &function_n "harvest_furn", "harvest_ter_nectar", "harvest_ter", - "tree_hickory", }; auto iter = function_map.find( function_name ); diff --git a/src/iexamine.h b/src/iexamine.h index ff1b061c19e48..71c9088b009dd 100644 --- a/src/iexamine.h +++ b/src/iexamine.h @@ -81,7 +81,6 @@ void harvested_plant( Character &you, const tripoint &examp ); void locked_object( Character &you, const tripoint &examp ); void locked_object_pickable( Character &you, const tripoint &examp ); void bulletin_board( Character &you, const tripoint &examp ); -void fault( Character &you, const tripoint &examp ); void pedestal_wyrm( Character &you, const tripoint &examp ); void pedestal_temple( Character &you, const tripoint &examp ); void door_peephole( Character &you, const tripoint &examp ); diff --git a/src/iexamine_actors.cpp b/src/iexamine_actors.cpp index d5b906712dac2..d87fdced9a6fe 100644 --- a/src/iexamine_actors.cpp +++ b/src/iexamine_actors.cpp @@ -1,5 +1,7 @@ #include "iexamine_actors.h" +#include "avatar.h" +#include "effect_on_condition.h" #include "game.h" #include "generic_factory.h" #include "itype.h" @@ -192,3 +194,32 @@ std::unique_ptr cardreader_examine_actor::clone() const { return std::make_unique( *this ); } + +void eoc_examine_actor::call( Character &you, const tripoint & ) const +{ + dialogue d( get_talker_for( you ), nullptr ); + for( const effect_on_condition_id &eoc : eocs ) { + eoc->activate( d ); + } +} + +void eoc_examine_actor::load( const JsonObject &jo ) +{ + for( JsonValue jv : jo.get_array( "effect_on_conditions" ) ) { + eocs.emplace_back( effect_on_conditions::load_inline_eoc( jv, "" ) ); + } +} + +void eoc_examine_actor::finalize() const +{ + for( const effect_on_condition_id &eoc : eocs ) { + if( !eoc.is_valid() ) { + debugmsg( "Invalid effect_on_condition_id: %s", eoc.str() ); + } + } +} + +std::unique_ptr eoc_examine_actor::clone() const +{ + return std::make_unique( *this ); +} diff --git a/src/iexamine_actors.h b/src/iexamine_actors.h index f98d31800ff4b..b6b7708b273bc 100644 --- a/src/iexamine_actors.h +++ b/src/iexamine_actors.h @@ -49,4 +49,18 @@ class cardreader_examine_actor : public iexamine_actor std::unique_ptr clone() const override; }; +class eoc_examine_actor : public iexamine_actor +{ + private: + std::vector eocs; + public: + explicit eoc_examine_actor( const std::string &type = "effect_on_condition" ) + : iexamine_actor( type ) {} + + void load( const JsonObject &jo ) override; + void call( Character &you, const tripoint &examp ) const override; + void finalize() const override; + + std::unique_ptr clone() const override; +}; #endif // CATA_SRC_IEXAMINE_ACTORS_H diff --git a/src/inventory.cpp b/src/inventory.cpp index 784f17b61368e..4450b9c04e5a1 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -653,6 +653,15 @@ void inventory::dump( std::vector &dest ) } } +void inventory::dump( std::vector &dest ) const +{ + for( auto &elem : items ) { + for( auto &elem_stack_iter : elem ) { + dest.push_back( &elem_stack_iter ); + } + } +} + const item &inventory::find_item( int position ) const { if( position < 0 || position >= static_cast( items.size() ) ) { diff --git a/src/inventory.h b/src/inventory.h index cfe80b818c121..0b5b6ff1099a3 100644 --- a/src/inventory.h +++ b/src/inventory.h @@ -194,6 +194,7 @@ class inventory : public visitable // dumps contents into dest (does not delete contents) void dump( std::vector &dest ); + void dump( std::vector &dest ) const; // vector rather than list because it's NOT an item stack // returns all items that need processing diff --git a/src/inventory_ui.cpp b/src/inventory_ui.cpp index 016586a5a50fd..5864c83b6d48e 100644 --- a/src/inventory_ui.cpp +++ b/src/inventory_ui.cpp @@ -723,7 +723,7 @@ void inventory_column::set_collapsed( std::vector &locations, } } -void inventory_column::on_input( const inventory_input &input ) +void inventory_column::on_input( const inventory_input &input, const bool allow_hide ) { if( !empty() && active ) { @@ -742,10 +742,10 @@ void inventory_column::on_input( const inventory_input &input ) } else if( input.action == "TOGGLE_FAVORITE" ) { inventory_entry &selected = get_selected(); set_stack_favorite( selected.locations, !selected.any_item()->is_favorite ); - } else if( input.action == "HIDE_CONTENTS" ) { + } else if( allow_hide && input.action == "HIDE_CONTENTS" ) { inventory_entry &selected = get_selected(); set_collapsed( selected.locations, true ); - } else if( input.action == "SHOW_CONTENTS" ) { + } else if( allow_hide && input.action == "SHOW_CONTENTS" ) { inventory_entry &selected = get_selected(); set_collapsed( selected.locations, false ); } @@ -1047,7 +1047,8 @@ static int num_parents( const item_location &loc ) } void inventory_column::draw( const catacurses::window &win, const point &p, - std::vector, inventory_entry *>> &rect_entry_map ) + std::vector, inventory_entry *>> &rect_entry_map, + const bool allow_hide ) { if( !visible() ) { return; @@ -1121,10 +1122,12 @@ void inventory_column::draw( const catacurses::window &win, const point &p, std::string text = entry_cell_cache.text[cell_index]; bool collapsed = false; if( entry.is_item() && entry.any_item().get_item()->is_container() ) { + std::string hidden_text = allow_hide ? std::string( " " ) + string_format _( "hidden" ) : + std::string(); for( const item_pocket *pckt : entry.any_item().get_item()->get_all_contained_pockets().value() ) { // If one is collapsed then assume all are collapsed. if( pckt->settings.is_collapsed() && !pckt->empty() ) { - text += std::string( " " ) + string_format _( "hidden" ); + text += hidden_text; collapsed = true; break; } @@ -1150,7 +1153,7 @@ void inventory_column::draw( const catacurses::window &win, const point &p, text_width; // Align either to the left or to the right const std::string &hl_option = get_option( "INVENTORY_HIGHLIGHT" ); - if( collapsed ) { + if( collapsed && allow_hide ) { trim_and_print( win, point( text_x - 1, yy ), 1, c_dark_gray, "<" ); } if( entry.is_item() && ( selected || !entry.is_selectable() ) ) { @@ -1993,14 +1996,14 @@ void inventory_selector::draw_columns( const catacurses::window &w ) x += gap_rounding_error; } if( !is_active_column( *elem ) ) { - elem->draw( w, point( x, y ), rect_entry_map ); + elem->draw( w, point( x, y ), rect_entry_map, allow_hide ); } else { active_x = x; } x += elem->get_width() + gap; } - get_active_column().draw( w, point( active_x, y ), rect_entry_map ); + get_active_column().draw( w, point( active_x, y ), rect_entry_map, allow_hide ); if( empty() ) { center_print( w, getmaxy( w ) / 2, c_dark_gray, _( "Your inventory is empty." ) ); } @@ -2150,7 +2153,7 @@ void inventory_selector::on_input( const inventory_input &input ) } else { if( has_available_choices() ) { for( inventory_column *elem : columns ) { - elem->on_input( input ); + elem->on_input( input, allow_hide ); } } refresh_active_column(); // Columns can react to actions by losing their activation capacity diff --git a/src/inventory_ui.h b/src/inventory_ui.h index 598eca8988be2..9e8cd42a0489d 100644 --- a/src/inventory_ui.h +++ b/src/inventory_ui.h @@ -316,7 +316,8 @@ class inventory_column inventory_entry *find_by_invlet( int invlet ) const; void draw( const catacurses::window &win, const point &p, - std::vector< std::pair, inventory_entry *>> &rect_entry_map ); + std::vector< std::pair, inventory_entry *>> &rect_entry_map, + const bool allow_hide = false ); void add_entry( const inventory_entry &entry ); void move_entries_to( inventory_column &dest ); @@ -362,7 +363,7 @@ class inventory_column /** * Event handlers */ - virtual void on_input( const inventory_input &input ); + virtual void on_input( const inventory_input &input, const bool allow_hide = false ); /** The entry has been changed. */ virtual void on_change( const inventory_entry &entry ); /** The column has been activated. */ diff --git a/src/item.cpp b/src/item.cpp index af9d9609655cb..e23004c59a920 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -627,13 +627,23 @@ item &item::ammo_set( const itype_id &ammo, int qty ) if( mag_item.ammo_capacity( ammo_type ) < qty ) { std::vector opts; for( const itype_id &mag_type : mags ) { - if( mag->magazine->type.count( ammo_type ) ) { + if( mag_type->magazine->type.count( ammo_type ) ) { opts.emplace_back( mag_type ); } } if( opts.empty() ) { - debugmsg( "Cannot find magazine with enough %s ammo capacity for %s", ammo.c_str(), - typeId().c_str() ); + const std::string magazines_str = enumerate_as_string( mags, + []( const itype_id & mag ) { + return string_format( + "%s (taking %s)", mag.str(), + enumerate_as_string( mag->magazine->type, + []( const ammotype & a ) { + return a.str(); + } ) ); + } ); + debugmsg( "Cannot find magazine fitting %s with any capacity for ammo %s " + "(ammotype %s). Magazines considered were %s", + typeId().str(), ammo.str(), ammo_type.str(), magazines_str ); return *this; } std::sort( opts.begin(), opts.end(), [&ammo_type]( const item & lhs, const item & rhs ) { @@ -4984,6 +4994,7 @@ void item::on_wear( Character &p ) if( get_player_character().getID().is_valid() ) { handle_pickup_ownership( p ); } + p.on_item_acquire( *this ); p.on_item_wear( *this ); } @@ -5047,6 +5058,7 @@ void item::on_wield( Character &you ) // Update encumbrance in case we were wearing it you.flag_encumbrance(); + you.on_item_acquire( *this ); } void item::handle_pickup_ownership( Character &c ) @@ -5102,6 +5114,7 @@ void item::on_pickup( Character &p ) p.flag_encumbrance(); p.invalidate_weight_carried_cache(); + p.on_item_acquire( *this ); } void item::on_contents_changed() @@ -5581,7 +5594,7 @@ int item::price( bool practical ) const } else if( e->magazine_integral() && e->ammo_remaining() && e->ammo_data() ) { // items with integral magazines may contain ammunition which can affect the price - child += item( e->ammo_data(), calendar::turn, e->charges ).price( practical ); + child += item( e->ammo_data(), calendar::turn, e->ammo_remaining() ).price( practical ); } else if( e->is_tool() && e->type->tool->max_charges != 0 ) { // if tool has no ammo (e.g. spray can) reduce price proportional to remaining charges @@ -5595,6 +5608,43 @@ int item::price( bool practical ) const return res; } +int item::price_no_contents( bool practical ) +{ + if( rotten() ) { + return 0; + } + int price = units::to_cent( practical ? type->price_post : type->price ); + if( damage() > 0 ) { + // maximal damage level is 4, maximal reduction is 40% of the value. + price -= price * static_cast< double >( damage_level() ) / 10; + } + + if( count_by_charges() || made_of( phase_id::LIQUID ) ) { + // price from json data is for default-sized stack + price *= charges / static_cast< double >( type->stack_size ); + + } else if( ( magazine_integral() || is_magazine() ) && ammo_remaining() && ammo_data() ) { + // items with integral magazines may contain ammunition which can affect the price + price += item( ammo_data(), calendar::turn, ammo_remaining() ).price( practical ); + + } else if( is_tool() && type->tool->max_charges != 0 ) { + // if tool has no ammo (e.g. spray can) reduce price proportional to remaining charges + price *= ammo_remaining() / static_cast< double >( std::max( type->charges_default(), 1 ) ); + + } else if( is_watertight_container() ) { + // Liquid contents are hidden so must be included in the price. + visit_contents( [&price, &practical]( item * node, item * ) { + if( node->type->phase != phase_id::LIQUID ) { + return VisitResponse::SKIP; + } + price += node->price_no_contents( practical ); + return VisitResponse::SKIP; + } ); + } + + return price; +} + // TODO: MATERIALS add a density field to materials.json units::mass item::weight( bool include_contents, bool integral ) const { @@ -11118,9 +11168,16 @@ std::string item::type_name( unsigned int quantity ) const } break; case condition_type::VAR: - if( has_var( cname.condition ) ) { + if( has_var( cname.condition ) && get_var( cname.condition ) == cname.value ) { ret_name = string_format( cname.name.translated( quantity ), ret_name ); } + break; + case condition_type::SNIPPET_ID: + if( has_var( cname.condition + "_snippet_id" ) && + get_var( cname.condition + "_snippet_id" ) == cname.value ) { + ret_name = string_format( cname.name.translated( quantity ), ret_name ); + } + break; case condition_type::num_condition_types: break; } diff --git a/src/item.h b/src/item.h index 14a146f050e34..a2acb9de6e557 100644 --- a/src/item.h +++ b/src/item.h @@ -543,6 +543,14 @@ class item : public visitable */ int price( bool practical ) const; + /** + * Returns the monetary value of an item by itself. + * Price includes hidden contents such as ammo and liquids. + * If `practical` is false, returns pre-cataclysm market value, + * otherwise returns approximate post-cataclysm value. + */ + int price_no_contents( bool practical ); + /** * Whether two items should stack when displayed in a inventory menu. * This is different from stacks_with, when two previously non-stackable diff --git a/src/item_factory.cpp b/src/item_factory.cpp index a3890a5340967..6dc502bee88b9 100644 --- a/src/item_factory.cpp +++ b/src/item_factory.cpp @@ -3090,6 +3090,7 @@ void Item_factory::load_basic_info( const JsonObject &jo, itype &def, const std: cname.type = curr.get_enum_value( "type" ); cname.condition = curr.get_string( "condition" ); cname.name = translation( translation::plural_tag() ); + cname.value = curr.get_string( "value", "" ); if( !curr.read( "name", cname.name ) ) { curr.throw_error( "name unspecified for conditional name" ); } diff --git a/src/itype.cpp b/src/itype.cpp index 67855895dfdb9..066d48af762c5 100644 --- a/src/itype.cpp +++ b/src/itype.cpp @@ -40,6 +40,8 @@ std::string enum_to_string( condition_type data ) return "COMPONENT_ID"; case condition_type::VAR: return "VAR"; + case condition_type::SNIPPET_ID: + return "SNIPPET_ID"; case condition_type::num_condition_types: break; } diff --git a/src/itype.h b/src/itype.h index 3000c5074e572..b4229e9e2d668 100644 --- a/src/itype.h +++ b/src/itype.h @@ -837,6 +837,7 @@ enum condition_type { FLAG, COMPONENT_ID, VAR, + SNIPPET_ID, num_condition_types }; @@ -851,6 +852,8 @@ struct conditional_name { condition_type type; // Context name (i.e. "CANNIBALISM" or "mutant") std::string condition; + // Used for variables and snippets to identify the specific value + std::string value; // Name to apply (i.e. "Luigi lasagne" or "smoked mutant"). Can use %s which will // be replaced by the item's normal name and/or preceding conditional names. translation name; diff --git a/src/iuse_actor.cpp b/src/iuse_actor.cpp index 248bfa5600dfd..92a83814a7aa4 100644 --- a/src/iuse_actor.cpp +++ b/src/iuse_actor.cpp @@ -4703,10 +4703,10 @@ cata::optional effect_on_conditons_actor::use( Character &p, item &it, bool item_location loc( *( p.as_character() ), &it ); dialogue d( get_talker_for( char_ptr ), get_talker_for( loc ) ); for( const effect_on_condition_id &eoc : eocs ) { - if( eoc->activate_only ) { + if( eoc->type == eoc_type::ACTIVATION ) { eoc->activate( d ); } else { - debugmsg( "Cannot use a recurring effect_on_condition in an item. If you don't want the effect_on_condition to happen on its own (without the item's involvement), remove the recurrence min and max. Otherwise, create a non-recurring effect_on_condition for this item with its condition and effects, then have a recurring one queue it." ); + debugmsg( "Must use an activation eoc for activation. If you don't want the effect_on_condition to happen on its own (without the item's involvement), remove the recurrence min and max. Otherwise, create a non-recurring effect_on_condition for this item with its condition and effects, then have a recurring one queue it." ); } } return it.type->charges_to_use(); diff --git a/src/line.cpp b/src/line.cpp index dc673a767e319..7e66a43c4ee92 100644 --- a/src/line.cpp +++ b/src/line.cpp @@ -449,7 +449,71 @@ direction direction_from( const tripoint &p, const tripoint &q ) return direction_from( q - p ); } -point direction_XY( const direction dir ) +tripoint displace( direction dir ) +{ + switch( dir ) { + case direction::NORTHWEST: + return tripoint_north_west; + case direction::ABOVENORTHWEST: + return point_north_west + tripoint_above; + case direction::BELOWNORTHWEST: + return point_north_west + tripoint_below; + case direction::NORTH: + return tripoint_north; + case direction::ABOVENORTH: + return point_north + tripoint_above; + case direction::BELOWNORTH: + return point_north + tripoint_below; + case direction::NORTHEAST: + return tripoint_north_east; + case direction::ABOVENORTHEAST: + return point_north_east + tripoint_above; + case direction::BELOWNORTHEAST: + return point_north_east + tripoint_below; + case direction::WEST: + return tripoint_west; + case direction::ABOVEWEST: + return point_west + tripoint_above; + case direction::BELOWWEST: + return point_west + tripoint_below; + case direction::CENTER: + return tripoint_zero; + case direction::ABOVECENTER: + return tripoint_above; + case direction::BELOWCENTER: + return tripoint_below; + case direction::EAST: + return tripoint_east; + case direction::ABOVEEAST: + return point_east + tripoint_above; + case direction::BELOWEAST: + return point_east + tripoint_below; + case direction::SOUTHWEST: + return tripoint_south_west; + case direction::ABOVESOUTHWEST: + return point_south_west + tripoint_above; + case direction::BELOWSOUTHWEST: + return point_south_west + tripoint_below; + case direction::SOUTH: + return tripoint_south; + case direction::ABOVESOUTH: + return point_south + tripoint_above; + case direction::BELOWSOUTH: + return point_south + tripoint_below; + case direction::SOUTHEAST: + return tripoint_south_east; + case direction::ABOVESOUTHEAST: + return point_south_east + tripoint_above; + case direction::BELOWSOUTHEAST: + return point_south_east + tripoint_below; + case direction::last: + cata_fatal( "Invalid direction" ); + } + + return tripoint_zero; +} + +point displace_XY( const direction dir ) { switch( dir % 9 ) { case direction::NORTHWEST: diff --git a/src/line.h b/src/line.h index 542fc68fdb58c..334c6aa1d3c89 100644 --- a/src/line.h +++ b/src/line.h @@ -128,7 +128,8 @@ direction direction_from( const tripoint &p ) noexcept; direction direction_from( const point &p1, const point &p2 ) noexcept; direction direction_from( const tripoint &p, const tripoint &q ); -point direction_XY( direction dir ); +tripoint displace( direction dir ); +point displace_XY( direction dir ); std::string direction_name( direction dir ); std::string direction_name_short( direction dir ); diff --git a/src/magic_enchantment.cpp b/src/magic_enchantment.cpp index 8916ebb01933a..a6656b2536937 100644 --- a/src/magic_enchantment.cpp +++ b/src/magic_enchantment.cpp @@ -6,6 +6,7 @@ #include "calendar.h" #include "character.h" +#include "condition.h" #include "creature.h" #include "debug.h" #include "enum_conversions.h" @@ -38,12 +39,9 @@ namespace io { switch ( data ) { case enchantment::condition::ALWAYS: return "ALWAYS"; - case enchantment::condition::UNDERGROUND: return "UNDERGROUND"; - case enchantment::condition::NIGHT: return "NIGHT"; - case enchantment::condition::DAY: return "DAY"; - case enchantment::condition::UNDERWATER: return "UNDERWATER"; case enchantment::condition::ACTIVE: return "ACTIVE"; case enchantment::condition::INACTIVE: return "INACTIVE"; + case enchantment::condition::DIALOG_CONDITION: return "DIALOG_CONDITION"; case enchantment::condition::NUM_CONDITION: break; } cata_fatal( "Invalid enchantment::condition" ); @@ -220,20 +218,9 @@ bool enchantment::is_active( const Character &guy, const bool active ) const return true; } - if( active_conditions.second == condition::UNDERGROUND ) { - return guy.pos().z < 0; - } - - if( active_conditions.second == condition::NIGHT ) { - return is_night( calendar::turn ); - } - - if( active_conditions.second == condition::DAY ) { - return is_day( calendar::turn ); - } - - if( active_conditions.second == condition::UNDERWATER ) { - return get_map().is_divable( guy.pos() ); + if( active_conditions.second == condition::DIALOG_CONDITION ) { + dialogue d( get_talker_for( guy ), nullptr ); + return dialog_condition( d ); } return false; } @@ -297,9 +284,22 @@ void enchantment::load( const JsonObject &jo, const std::string &, } active_conditions.first = io::string_to_enum( jo.get_string( "has", "HELD" ) ); - active_conditions.second = io::string_to_enum( jo.get_string( "condition", - "ALWAYS" ) ); - + if( jo.has_string( "condition" ) ) { + std::string condit; + optional( jo, was_loaded, "condition", condit ); + cata::optional con = io::string_to_enum_optional( condit ); + if( con.has_value() ) { + active_conditions.second = con.value(); + } else { + active_conditions.second = condition::DIALOG_CONDITION; + read_condition( jo, "condition", dialog_condition, false ); + } + } else if( jo.has_member( "condition" ) ) { + active_conditions.second = condition::DIALOG_CONDITION; + read_condition( jo, "condition", dialog_condition, false ); + } else { + active_conditions.second = condition::ALWAYS; + } for( JsonObject jsobj : jo.get_array( "ench_effects" ) ) { ench_effects.emplace( efftype_id( jsobj.get_string( "effect" ) ), jsobj.get_int( "intensity" ) ); } diff --git a/src/magic_enchantment.h b/src/magic_enchantment.h index 78a80c453a59d..a06ce0d184b0e 100644 --- a/src/magic_enchantment.h +++ b/src/magic_enchantment.h @@ -20,6 +20,7 @@ class Creature; class JsonObject; class JsonOut; class item; +struct dialogue; namespace enchant_vals { @@ -123,12 +124,9 @@ class enchantment // the condition at which the enchantment is giving passive effects enum condition { ALWAYS, - UNDERGROUND, - NIGHT, - DAY, - UNDERWATER, ACTIVE, // the item, mutation, etc. is active INACTIVE, // the item, mutation, etc. is inactive + DIALOG_CONDITION, // Check a provided dialog condition NUM_CONDITION }; @@ -227,6 +225,7 @@ class enchantment std::map> intermittent_activation; std::pair active_conditions; + std::function dialog_condition; // NOLINT(cata-serialize) void add_activation( const time_duration &dur, const fake_spell &fake ); diff --git a/src/magic_spell_effect.cpp b/src/magic_spell_effect.cpp index 390797aef1183..53b0754ce546b 100644 --- a/src/magic_spell_effect.cpp +++ b/src/magic_spell_effect.cpp @@ -1528,10 +1528,10 @@ void spell_effect::effect_on_condition( const spell &sp, Creature &caster, const dialogue d( get_talker_for( creatures.creature_at( potential_target ) ), get_talker_for( caster ) ); effect_on_condition_id eoc = effect_on_condition_id( sp.effect_data() ); - if( eoc->activate_only ) { + if( eoc->type == eoc_type::ACTIVATION ) { eoc->activate( d ); } else { - debugmsg( "Cannot use a recurring effect_on_condition in a spell. If you don't want the effect_on_condition to happen on its own (without the spell being cast), remove the recurrence min and max. Otherwise, create a non-recurring effect_on_condition for this spell with its condition and effects, then have a recurring one queue it." ); + debugmsg( "Must use an activation eoc for a spell. If you don't want the effect_on_condition to happen on its own (without the spell being cast), remove the recurrence min and max. Otherwise, create a non-recurring effect_on_condition for this spell with its condition and effects, then have a recurring one queue it." ); } } } diff --git a/src/map_extras.cpp b/src/map_extras.cpp index 8075da93ade52..faa51f8ef9173 100644 --- a/src/map_extras.cpp +++ b/src/map_extras.cpp @@ -127,8 +127,6 @@ static const mongroup_id GROUP_WASP_QUEEN( "GROUP_WASP_QUEEN" ); static const mtype_id mon_dispatch( "mon_dispatch" ); static const mtype_id mon_dermatik( "mon_dermatik" ); static const mtype_id mon_jabberwock( "mon_jabberwock" ); -static const mtype_id mon_marloss_zealot_f( "mon_marloss_zealot_f" ); -static const mtype_id mon_marloss_zealot_m( "mon_marloss_zealot_m" ); static const mtype_id mon_shia( "mon_shia" ); static const mtype_id mon_spider_cellar_giant( "mon_spider_cellar_giant" ); static const mtype_id mon_spider_web( "mon_spider_web" ); @@ -734,25 +732,6 @@ static bool mx_roadblock( map &m, const tripoint &abs_sub ) return true; } -static bool mx_marloss_pilgrimage( map &m, const tripoint &abs_sub ) -{ - const tripoint leader_pos( rng( 4, 19 ), rng( 4, 19 ), abs_sub.z ); - const int max_followers = rng( 3, 12 ); - const int rad = 3; - const tripoint_range spawnzone = m.points_in_radius( leader_pos, rad ); - - m.place_npc( leader_pos.xy(), string_id( "marloss_voice" ) ); - for( int spawned = 0 ; spawned <= max_followers ; spawned++ ) { - if( const cata::optional where_ = random_point( spawnzone, [&]( const tripoint & p ) { - return m.passable( p ); - } ) ) { - m.add_spawn( one_in( 2 ) ? mon_marloss_zealot_f : mon_marloss_zealot_m, 1, *where_ ); - } - } - - return true; -} - static bool mx_bandits_block( map &m, const tripoint &abs_sub ) { const tripoint_abs_omt abs_omt( sm_to_omt_copy( abs_sub ) ); @@ -2951,7 +2930,6 @@ FunctionMap builtin_functions = { { "mx_point_dead_vegetation", mx_point_dead_vegetation }, { "mx_burned_ground", mx_burned_ground }, { "mx_point_burned_ground", mx_point_burned_ground }, - { "mx_marloss_pilgrimage", mx_marloss_pilgrimage }, { "mx_casings", mx_casings }, { "mx_looters", mx_looters }, { "mx_corpses", mx_corpses }, diff --git a/src/mapdata.cpp b/src/mapdata.cpp index 0a1ebfc43746f..eb72c8402c6b5 100644 --- a/src/mapdata.cpp +++ b/src/mapdata.cpp @@ -1301,6 +1301,7 @@ static cata::clone_ptr iexamine_actor_from_jsobj( const JsonObje void init_mapdata() { add_actor( std::make_unique() ); + add_actor( std::make_unique() ); } void map_data_common_t::load( const JsonObject &jo, const std::string & ) diff --git a/src/mapgen.cpp b/src/mapgen.cpp index c1275670e4385..4864b01d3205c 100644 --- a/src/mapgen.cpp +++ b/src/mapgen.cpp @@ -387,6 +387,12 @@ static mapgen_factory oter_mapgen; std::map nested_mapgens; std::map update_mapgens; +template<> +bool string_id::is_valid() const +{ + return str() == "null" || nested_mapgens.find( *this ) != nested_mapgens.end(); +} + /* * setup mapgen_basic_container::weights_ which mapgen uses to diceroll. Also setup mapgen_function_json */ @@ -1024,7 +1030,7 @@ class mapgen_value void check( const std::string &context, const mapgen_parameters & ) const override { if( !is_valid_helper( id ) ) { - debugmsg( "mapgen '%s' uses invalid entry '%s' in weighted list", + debugmsg( "mapgen '%s' uses invalid entry '%s'", context, cata_variant( id ).get_string() ); } } @@ -2687,15 +2693,15 @@ class jmapgen_zone : public jmapgen_piece class jmapgen_nested : public jmapgen_piece { private: - class neighborhood_check + class neighbor_oter_check { private: - std::unordered_map> neighbors; + std::unordered_map> neighbors; public: - explicit neighborhood_check( const JsonObject &jsi ) { + explicit neighbor_oter_check( const JsonObject &jsi ) { for( direction dir : all_enum_values() ) { - cata::flat_set dir_neighbours = - jsi.get_tags>( + cata::flat_set dir_neighbours = + jsi.get_tags>( io::enum_to_string( dir ) ); if( !dir_neighbours.empty() ) { neighbors[dir] = std::move( dir_neighbours ); @@ -2703,16 +2709,32 @@ class jmapgen_nested : public jmapgen_piece } } + void check( const std::string &/*oter_name*/, const mapgen_parameters & ) const { + // The check is ot_match_type::contains, so actually these + // don't need to be valid ids, although they were until + // recently. TODO: permit the JSON to specify which match + // type is intended and check where applicable. + + //for( const std::pair> &p : + // neighbors ) { + // for( const oter_type_str_id &id : p.second ) { + // if( !id.is_valid() ) { + // debugmsg( "Invalid oter_str_id '%s' in %s", id.str(), oter_name ); + // } + // } + //} + } + bool test( const mapgendata &dat ) const { - for( const std::pair> &p : + for( const std::pair> &p : neighbors ) { const direction dir = p.first; - const cata::flat_set &allowed_neighbors = p.second; + const cata::flat_set &allowed_neighbors = p.second; cata_assert( !allowed_neighbors.empty() ); bool this_direction_matches = false; - for( const oter_str_id &allowed_neighbor : allowed_neighbors ) { + for( const oter_type_str_id &allowed_neighbor : allowed_neighbors ) { this_direction_matches |= is_ot_match( allowed_neighbor.str(), dat.neighbor_at( dir ).id(), ot_match_type::contains ); @@ -2725,12 +2747,54 @@ class jmapgen_nested : public jmapgen_piece } }; + class neighbor_join_check + { + private: + std::unordered_map> neighbors; + public: + explicit neighbor_join_check( const JsonObject &jsi ) { + for( cube_direction dir : all_enum_values() ) { + cata::flat_set dir_neighbours = + jsi.get_tags>( + io::enum_to_string( dir ) ); + if( !dir_neighbours.empty() ) { + neighbors[dir] = std::move( dir_neighbours ); + } + } + } + + void check( const std::string &, const mapgen_parameters & ) const { + // TODO: check join ids are valid + } + + bool test( const mapgendata &dat ) const { + for( const std::pair> &p : + neighbors ) { + const cube_direction dir = p.first; + const cata::flat_set &allowed_joins = p.second; + + cata_assert( !allowed_joins.empty() ); + + bool this_direction_matches = false; + for( const std::string &allowed_join : allowed_joins ) { + this_direction_matches |= dat.has_join( dir, allowed_join ); + } + if( !this_direction_matches ) { + return false; + } + } + return true; + } + }; + public: - weighted_int_list entries; - weighted_int_list else_entries; - neighborhood_check neighbors; - jmapgen_nested( const JsonObject &jsi, const std::string &/*context*/ ) : - neighbors( jsi.get_object( "neighbors" ) ) { + weighted_int_list> entries; + weighted_int_list> else_entries; + neighbor_oter_check neighbor_oters; + neighbor_join_check neighbor_joins; + jmapgen_nested( const JsonObject &jsi, const std::string &/*context*/ ) + : neighbor_oters( jsi.get_object( "neighbors" ) ) + , neighbor_joins( jsi.get_object( "joins" ) ) { if( jsi.has_member( "chunks" ) ) { load_weighted_list( jsi.get_member( "chunks" ), entries, 100 ); } @@ -2743,41 +2807,55 @@ class jmapgen_nested : public jmapgen_piece } void merge_parameters_into( mapgen_parameters ¶ms, const std::string &outer_context ) const override { - auto merge_from = [&]( const nested_mapgen_id & name ) { - if( name.is_null() ) { - return; - } - const auto iter = nested_mapgens.find( name ); - if( iter == nested_mapgens.end() ) { - debugmsg( "Unknown nested mapgen function id '%s'", name.str() ); - return; - } - using Obj = weighted_object>; - for( const Obj &nested : iter->second.funcs() ) { - nested.obj->merge_non_nest_parameters_into( params, outer_context ); + auto merge_from = [&]( const mapgen_value &val ) { + for( const nested_mapgen_id &id : val.all_possible_results( params ) ) { + if( id.is_null() ) { + return; + } + const auto iter = nested_mapgens.find( id ); + if( iter == nested_mapgens.end() ) { + debugmsg( "Unknown nested mapgen function id '%s'", id.str() ); + return; + } + using Obj = weighted_object>; + for( const Obj &nested : iter->second.funcs() ) { + nested.obj->merge_non_nest_parameters_into( params, outer_context ); + } } }; - for( const weighted_object &name : entries ) { + for( const weighted_object> &name : entries ) { merge_from( name.obj ); } - for( const weighted_object &name : else_entries ) { + for( const weighted_object> &name : else_entries ) { merge_from( name.obj ); } } + const weighted_int_list> &get_entries( + const mapgendata &dat ) const { + if( neighbor_oters.test( dat ) && neighbor_joins.test( dat ) ) { + return entries; + } else { + return else_entries; + } + } void apply( const mapgendata &dat, const jmapgen_int &x, const jmapgen_int &y ) const override { - const nested_mapgen_id *res = - neighbors.test( dat ) ? entries.pick() : else_entries.pick(); - if( res == nullptr || res->is_empty() || res->is_null() ) { - // This will be common when neighbors.test(...) is false, since else_entires is often empty. + const mapgen_value *val = get_entries( dat ).pick(); + if( val == nullptr ) { return; } - const auto iter = nested_mapgens.find( *res ); + const nested_mapgen_id res = val->get( dat ); + if( res.is_empty() || res.is_null() ) { + // This will be common when neighbors.test(...) is false, since else_entires is + // often empty. + return; + } + const auto iter = nested_mapgens.find( res ); if( iter == nested_mapgens.end() ) { - debugmsg( "Unknown nested mapgen function id %s", res->c_str() ); + debugmsg( "Unknown nested mapgen function id %s", res.str() ); return; } @@ -2789,18 +2867,30 @@ class jmapgen_nested : public jmapgen_piece ( *ptr )->nest( dat, point( x.get(), y.get() ) ); } + void check( const std::string &oter_name, const mapgen_parameters ¶meters + ) const override { + for( const weighted_object> &p : entries ) { + p.obj.check( oter_name, parameters ); + } + for( const weighted_object> &p : else_entries ) { + p.obj.check( oter_name, parameters ); + } + neighbor_oters.check( oter_name, parameters ); + neighbor_joins.check( oter_name, parameters ); + } bool has_vehicle_collision( const mapgendata &dat, const point &p ) const override { - const weighted_int_list &selected_entries = - neighbors.test( dat ) ? entries : else_entries; + const weighted_int_list> &selected_entries = + get_entries( dat ); if( selected_entries.empty() ) { return false; } for( const auto &entry : selected_entries ) { - if( entry.obj.is_null() ) { + nested_mapgen_id id = entry.obj.get( dat ); + if( id.is_null() ) { continue; } - const auto iter = nested_mapgens.find( entry.obj ); + const auto iter = nested_mapgens.find( id ); if( iter == nested_mapgens.end() ) { return false; } @@ -7021,12 +7111,7 @@ std::pair, std::map> get_changed_ids_from_up fake_map tmp_map( t_dirt ); - oter_id any = oter_id( "field" ); - // just need a variable here, it doesn't need to be valid - const regional_settings dummy_settings; - - mapgendata fake_md( any, any, any, any, any, any, any, any, any, any, 0, dummy_settings, - tmp_map, any, {}, 0.0f, calendar::turn, nullptr ); + mapgendata fake_md( tmp_map, mapgendata::dummy_settings ); if( update_function->second.funcs()[0]->update_map( fake_md ) ) { for( const tripoint &pos : tmp_map.points_on_zlevel( fake_map::fake_map_z ) ) { diff --git a/src/mapgendata.cpp b/src/mapgendata.cpp index b8e0a20dd9f0b..dd49d59e7d33b 100644 --- a/src/mapgendata.cpp +++ b/src/mapgendata.cpp @@ -1,5 +1,6 @@ #include "mapgendata.h" +#include "all_enum_values.h" #include "debug.h" #include "json.h" #include "map.h" @@ -26,40 +27,48 @@ void mapgen_arguments::deserialize( const JsonValue &ji ) ji.read( map, true ); } -mapgendata::mapgendata( oter_id north, oter_id east, oter_id south, oter_id west, - oter_id northeast, oter_id southeast, oter_id southwest, oter_id northwest, - oter_id up, oter_id down, int z, const regional_settings &rsettings, - map &mp, const oter_id &terrain_type, const mapgen_arguments &args, - const float density, const time_point &when, - ::mission *const miss ) - : terrain_type_( terrain_type ), density_( density ), when_( when ), mission_( miss ) - , zlevel_( z ), mapgen_args_( args ) - , t_nesw{ north, east, south, west, northeast, southeast, southwest, northwest } - , t_above( up ) - , t_below( down ) - , region( rsettings ) +static const regional_settings dummy_regional_settings; + +mapgendata::mapgendata( map &mp, dummy_settings_t ) + : density_( 0 ) + , when_( calendar::turn ) + , mission_( nullptr ) + , zlevel_( 0 ) + , region( dummy_regional_settings ) , m( mp ) , default_groundcover( region.default_groundcover ) { + oter_id any = oter_id( "field" ); + t_above = t_below = terrain_type_ = any; + std::fill( std::begin( t_nesw ), std::end( t_nesw ), any ); } -mapgendata::mapgendata( const tripoint_abs_omt &over, map &m, const float density, +mapgendata::mapgendata( const tripoint_abs_omt &over, map &mp, const float density, const time_point &when, ::mission *const miss ) -// NOLINTNEXTLINE( cata-unsequenced-calls ) - : mapgendata( overmap_buffer.ter( over + tripoint_north ), - overmap_buffer.ter( over + tripoint_east ), - overmap_buffer.ter( over + tripoint_south ), - overmap_buffer.ter( over + tripoint_west ), - overmap_buffer.ter( over + tripoint_north_east ), - overmap_buffer.ter( over + tripoint_south_east ), - overmap_buffer.ter( over + tripoint_south_west ), - overmap_buffer.ter( over + tripoint_north_west ), - overmap_buffer.ter( over + tripoint_above ), - overmap_buffer.ter( over + tripoint_below ), - over.z(), overmap_buffer.get_settings( over ), m, - overmap_buffer.ter( over ), mapgen_arguments(), density, - when, miss ) + : terrain_type_( overmap_buffer.ter( over ) ) + , density_( density ) + , when_( when ) + , mission_( miss ) + , zlevel_( over.z() ) + , t_above( overmap_buffer.ter( over + tripoint_above ) ) + , t_below( overmap_buffer.ter( over + tripoint_below ) ) + , region( overmap_buffer.get_settings( over ) ) + , m( mp ) + , default_groundcover( region.default_groundcover ) { + int rotation = terrain_type_->get_rotation(); + auto set_neighbour = [&]( int index, direction dir ) { + t_nesw[index] = + overmap_buffer.ter( over + displace( dir ).rotate( rotation ) ); + }; + set_neighbour( 0, direction::NORTH ); + set_neighbour( 1, direction::EAST ); + set_neighbour( 2, direction::SOUTH ); + set_neighbour( 3, direction::WEST ); + set_neighbour( 4, direction::NORTHEAST ); + set_neighbour( 5, direction::SOUTHEAST ); + set_neighbour( 6, direction::SOUTHWEST ); + set_neighbour( 7, direction::NORTHWEST ); if( cata::optional *maybe_args = overmap_buffer.mapgen_args( over ) ) { if( *maybe_args ) { mapgen_args_ = **maybe_args; @@ -76,6 +85,12 @@ mapgendata::mapgendata( const tripoint_abs_omt &over, map &m, const float densit } } } + for( cube_direction dir : all_enum_values() ) { + if( std::string *join = overmap_buffer.join_used_at( { over, dir } ) ) { + cube_direction rotated_dir = dir - rotation; + joins.emplace( rotated_dir, *join ); + } + } } mapgendata::mapgendata( const mapgendata &other, const oter_id &other_id ) : mapgendata( other ) @@ -239,3 +254,9 @@ const oter_id &mapgendata::neighbor_at( direction dir ) const debugmsg( "Neighbor not supported for direction %d", io::enum_to_string( dir ) ); return north(); } + +bool mapgendata::has_join( const cube_direction dir, const std::string &join_id ) const +{ + auto it = joins.find( dir ); + return it != joins.end() && it->second == join_id; +} diff --git a/src/mapgendata.h b/src/mapgendata.h index 55df51f4716b2..50b57a3c2f65f 100644 --- a/src/mapgendata.h +++ b/src/mapgendata.h @@ -5,6 +5,7 @@ #include "calendar.h" #include "cata_variant.h" #include "coordinates.h" +#include "cube_direction.h" #include "type_id.h" #include "weighted_list.h" @@ -84,17 +85,18 @@ class mapgendata oter_id t_above; oter_id t_below; + std::unordered_map joins; + const regional_settings ®ion; map &m; weighted_int_list default_groundcover; - mapgendata( oter_id t_north, oter_id t_east, oter_id t_south, oter_id t_west, - oter_id northeast, oter_id southeast, oter_id southwest, oter_id northwest, - oter_id up, oter_id down, int z, const regional_settings &rsettings, map &mp, - const oter_id &terrain_type, const mapgen_arguments &args, float density, - const time_point &when, ::mission *miss ); + struct dummy_settings_t {}; + static constexpr dummy_settings_t dummy_settings = {}; + + mapgendata( map &, dummy_settings_t ); mapgendata( const tripoint_abs_omt &over, map &m, float density, const time_point &when, ::mission *miss ); @@ -175,6 +177,8 @@ class mapgendata ter_id groundcover() const; bool is_groundcover( const ter_id &iid ) const; + bool has_join( const cube_direction, const std::string &join_id ) const; + template Result get_arg( const std::string &name ) const { auto it = mapgen_args_.map.find( name ); diff --git a/src/martialarts.cpp b/src/martialarts.cpp index ac3d2037ff2dd..46bb863cc91fc 100644 --- a/src/martialarts.cpp +++ b/src/martialarts.cpp @@ -132,7 +132,11 @@ void ma_requirements::load( const JsonObject &jo, const std::string & ) optional( jo, was_loaded, "strictly_unarmed", strictly_unarmed, false ); optional( jo, was_loaded, "wall_adjacent", wall_adjacent, false ); - optional( jo, was_loaded, "req_buffs", req_buffs, string_id_reader<::ma_buff> {} ); + optional( jo, was_loaded, "required_buffs_all", req_buffs_all, string_id_reader<::ma_buff> {} ); + optional( jo, was_loaded, "required_buffs_any", req_buffs_any, string_id_reader<::ma_buff> {} ); + optional( jo, was_loaded, "forbidden_buffs_all", forbid_buffs_all, string_id_reader<::ma_buff> {} ); + optional( jo, was_loaded, "forbidden_buffs_any", forbid_buffs_any, string_id_reader<::ma_buff> {} ); + optional( jo, was_loaded, "req_flags", req_flags, string_id_reader<::json_flag> {} ); optional( jo, was_loaded, "skill_requirements", min_skill, ma_skill_reader {} ); @@ -207,6 +211,7 @@ void ma_buff::load( const JsonObject &jo, const std::string &src ) optional( jo, was_loaded, "buff_duration", buff_duration, 2_turns ); optional( jo, was_loaded, "max_stacks", max_stacks, 1 ); + optional( jo, was_loaded, "persists", persists, false ); optional( jo, was_loaded, "bonus_dodges", dodges_bonus, 0 ); optional( jo, was_loaded, "bonus_blocks", blocks_bonus, 0 ); @@ -335,7 +340,25 @@ std::vector autolearn_martialart_types() static void check( const ma_requirements &req, const std::string &display_text ) { - for( const mabuff_id &r : req.req_buffs ) { + for( const mabuff_id &r : req.req_buffs_all ) { + if( !r.is_valid() ) { + debugmsg( "ma buff %s of %s does not exist", r.c_str(), display_text ); + } + } + + for( const mabuff_id &r : req.req_buffs_any ) { + if( !r.is_valid() ) { + debugmsg( "ma buff %s of %s does not exist", r.c_str(), display_text ); + } + } + + for( const mabuff_id &r : req.forbid_buffs_all ) { + if( !r.is_valid() ) { + debugmsg( "ma buff %s of %s does not exist", r.c_str(), display_text ); + } + } + + for( const mabuff_id &r : req.forbid_buffs_any ) { if( !r.is_valid() ) { debugmsg( "ma buff %s of %s does not exist", r.c_str(), display_text ); } @@ -384,6 +407,7 @@ class ma_buff_effect_type : public effect_type // above buff_duration, this keeps the old ma_buff behavior max_duration = buff.buff_duration; dur_add_perc = 100; + show_intensity = true; // each add_effect call increases the intensity by 1 int_add_val = 1; // effect intensity increases by -1 each turn. @@ -435,12 +459,48 @@ void clear_techniques_and_martial_arts() bool ma_requirements::is_valid_character( const Character &u ) const { - for( const mabuff_id &buff_id : req_buffs ) { + // Check: Required Buffs All + for( const mabuff_id &buff_id : req_buffs_all ) { if( !u.has_mabuff( buff_id ) ) { return false; } } + // Check: Forbidden Buffs Any + for( const mabuff_id &buff_id : forbid_buffs_any ) { + if( u.has_mabuff( buff_id ) ) { + return false; + } + } + + // Check: Required Buffs Any + if( !req_buffs_any.empty() ) {} + bool req_buff_valid = false; + + for( const mabuff_id &buff_id : req_buffs_any ) { + if( u.has_mabuff( buff_id ) ) { + req_buff_valid = true; + } + + if( !req_buff_valid ) { + return false; + } + } + + // Check: Forbidden Buffs All + if( !forbid_buffs_all.empty() ) {} + bool forbid_buff_valid = false; + + for( const mabuff_id &buff_id : forbid_buffs_all ) { + if( !u.has_mabuff( buff_id ) ) { + forbid_buff_valid = true; + } + + if( !forbid_buff_valid ) { + return false; + } + } + //A technique is valid if it applies to unarmed strikes, if it applies generally //to all weapons (such as Ninjutsu sneak attacks or innate weapon techniques like RAPID) //or if the weapon is flagged as being compatible with the style. Some techniques have @@ -531,10 +591,38 @@ std::string ma_requirements::get_description( bool buff ) const }, enumeration_conjunction::none ) + "\n"; } - if( !req_buffs.empty() ) { - dump += _( "Requires: " ); + if( !req_buffs_all.empty() ) { + dump += _( "Requires (all): " ); + + dump += enumerate_as_string( req_buffs_all.begin(), + req_buffs_all.end(), []( const mabuff_id & bid ) { + return bid->name.translated(); + }, enumeration_conjunction::none ) + "\n"; + } + + if( !req_buffs_any.empty() ) { + dump += _( "Requires (any): " ); + + dump += enumerate_as_string( req_buffs_any.begin(), + req_buffs_any.end(), []( const mabuff_id & bid ) { + return bid->name.translated(); + }, enumeration_conjunction::none ) + "\n"; + } + + if( !forbid_buffs_all.empty() ) { + dump += _( "Forbidden (all): " ); - dump += enumerate_as_string( req_buffs.begin(), req_buffs.end(), []( const mabuff_id & bid ) { + dump += enumerate_as_string( forbid_buffs_all.begin(), + forbid_buffs_all.end(), []( const mabuff_id & bid ) { + return bid->name.translated(); + }, enumeration_conjunction::none ) + "\n"; + } + + if( !forbid_buffs_any.empty() ) { + dump += _( "Forbidden (any): " ); + + dump += enumerate_as_string( forbid_buffs_any.begin(), + forbid_buffs_any.end(), []( const mabuff_id & bid ) { return bid->name.translated(); }, enumeration_conjunction::none ) + "\n"; } @@ -778,6 +866,97 @@ static void simultaneous_add( Character &u, const std::vector &buffs } } +void martialart::remove_all_buffs( Character &u ) const +{ + // Remove static buffs + for( auto &elem : static_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove onmove buffs + for( auto &elem : onmove_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove onpause buffs + for( auto &elem : onpause_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove onhit buffs + for( auto &elem : onhit_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove onattack buffs + for( auto &elem : onattack_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove ondodge buffs + for( auto &elem : ondodge_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove onblock buffs + for( auto &elem : onblock_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove ongethit buffs + for( auto &elem : ongethit_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove onmiss buffs + for( auto &elem : onmiss_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove oncrit buffs + for( auto &elem : oncrit_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } + + // Remove onkill buffs + for( auto &elem : onkill_buffs ) { + const efftype_id eff_id = elem->get_effect_id(); + if( u.has_effect( eff_id ) && !elem->persists ) { + u.remove_effect( eff_id ); + } + } +} + void martialart::apply_static_buffs( Character &u ) const { simultaneous_add( u, static_buffs ); @@ -993,6 +1172,12 @@ bool character_martial_arts::is_force_unarmed() const return style_selected->force_unarmed; } +void character_martial_arts::clear_all_effects( Character &owner ) +{ + style_selected->remove_all_buffs( owner ); +} + + // event handlers void character_martial_arts::ma_static_effects( Character &owner ) { diff --git a/src/martialarts.h b/src/martialarts.h index 846c40c97723e..4aa333302ff63 100644 --- a/src/martialarts.h +++ b/src/martialarts.h @@ -44,7 +44,12 @@ struct ma_requirements { */ std::vector> min_damage; - std::set req_buffs; // other buffs required to trigger this bonus + std::set req_buffs_all; // all listed buffs required to trigger this bonus + std::set req_buffs_any; // any listed buffs required to trigger this bonus + std::set forbid_buffs_all; // all listed buffs prevent triggering this bonus + std::set forbid_buffs_any; // any listed buffs prevent triggering this bonus + + std::set req_flags; // any item flags required for this technique ma_requirements() { @@ -188,6 +193,7 @@ class ma_buff time_duration buff_duration = 0_turns; // total length this buff lasts int max_stacks = 0; // total number of stacks this buff can have + bool persists = false; // prevent buff removal when switching styles int dodges_bonus = 0; // extra dodges, like karate int blocks_bonus = 0; // extra blocks, like karate @@ -211,6 +217,8 @@ class martialart void load( const JsonObject &jo, const std::string &src ); + void remove_all_buffs( Character &u ) const; + // modifies a Character's "current" stats with various types of bonuses void apply_static_buffs( Character &u ) const; diff --git a/src/mission_companion.cpp b/src/mission_companion.cpp index 2f6d4e22f0b84..e1638f014f434 100644 --- a/src/mission_companion.cpp +++ b/src/mission_companion.cpp @@ -1989,14 +1989,14 @@ npc_ptr talk_function::companion_choose( const std::map &required //~ %1$s: skill name, %2$d: companion skill level npc_desc += string_format( pgettext( "companion skill", "%1$s %2$d" ), skill_tested_id.obj().name(), - e->get_skill_level( skill_tested_id ) ); + e->get_knowledge_level( skill_tested_id ) ); } else { //~ %1$s: skill name, %2$d: companion skill level, %3$d: skill requirement npc_desc += string_format( pgettext( "companion skill", "%1$s %2$d/%3$d" ), skill_tested_id.obj().name(), - e->get_skill_level( skill_tested_id ), + e->get_knowledge_level( skill_tested_id ), skill_level ); - can_do &= e->get_skill_level( skill_tested_id ) >= skill_level; + can_do &= e->get_knowledge_level( skill_tested_id ) >= skill_level; } } } diff --git a/src/monster.cpp b/src/monster.cpp index 07a33a30955b6..3d1e87edf39a0 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -657,7 +657,12 @@ int monster::print_info( const catacurses::window &w, int vStart, int vLines, in type->src.end(), []( const std::pair &source ) { return string_format( "'%s'", source.second->name() ); }, enumeration_conjunction::arrow ); - oss << "" << "\n\n"; + oss << "" << "\n"; + + if( debug_mode ) { + oss << colorize( type->id.str(), c_white ); + } + oss << "\n"; // Print health bar, monster name, then statuses on the first line. nc_color bar_color = c_white; @@ -758,6 +763,11 @@ std::string monster::extended_description() const ss += "\n--\n"; + if( debug_mode ) { + ss += type->id.str(); + ss += "\n"; + } + ss += string_format( _( "This is a %s. %s %s" ), name(), att_colored, difficulty_str ) + "\n"; if( !get_effect_status().empty() ) { @@ -1525,11 +1535,13 @@ bool monster::block_hit( Creature *, bodypart_id &, damage_instance & ) return false; } -std::string monster::absorb_hit( const weakpoint_attack &attack, const bodypart_id &, - damage_instance &dam ) +const weakpoint *monster::absorb_hit( const weakpoint_attack &attack, const bodypart_id &, + damage_instance &dam ) { resistances r = resistances( *this ); - const weakpoint *wp = type->weakpoints.select_weakpoint( attack ); + weakpoint_attack attack_copy = attack; + attack_copy.target = this; + const weakpoint *wp = type->weakpoints.select_weakpoint( attack_copy ); wp->apply_to( r ); for( auto &elem : dam.damage_units ) { add_msg_debug( debugmode::DF_MONSTER, "Dam Type: %s :: Ar Pen: %.1f :: Armor Mult: %.1f", @@ -1543,7 +1555,7 @@ std::string monster::absorb_hit( const weakpoint_attack &attack, const bodypart_ get_worn_armor_val( elem.type ), elem.amount ); } wp->apply_to( dam, attack.is_crit ); - return wp->name; + return wp; } bool monster::melee_attack( Creature &target ) diff --git a/src/monster.h b/src/monster.h index eb91bce18cbbe..394205d272957 100644 --- a/src/monster.h +++ b/src/monster.h @@ -329,8 +329,8 @@ class monster : public Creature void make_bleed( const effect_source &source, const bodypart_id &bp, time_duration duration, int intensity = 1, bool permanent = false, bool force = false, bool defferred = false ) override; - std::string absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, - damage_instance &dam ) override; + const weakpoint *absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, + damage_instance &dam ) override; // The monster's skill in hitting a weakpoint float weakpoint_skill(); diff --git a/src/mutation.cpp b/src/mutation.cpp index adc7ddaead89e..83c76fb401b11 100644 --- a/src/mutation.cpp +++ b/src/mutation.cpp @@ -11,6 +11,7 @@ #include "bionics.h" #include "character.h" #include "color.h" +#include "condition.h" #include "creature.h" #include "debug.h" #include "enums.h" @@ -272,48 +273,8 @@ void Character::mutation_reflex_trigger( const trait_id &mut ) bool reflex_activation_data::is_trigger_true( const Character &guy ) const { - bool activate = false; - - int var = 0; - switch( trigger ) { - case PAIN: - var = guy.get_pain(); - break; - case HUNGER: - var = guy.get_hunger(); - break; - case THRIST: - var = guy.get_thirst(); - break; - case MOOD: - var = guy.get_morale_level(); - break; - case STAMINA: - var = guy.get_stamina(); - break; - case MOON: - var = static_cast( get_moon_phase( calendar::turn ) ); - break; - case TIME: - var = to_hours( time_past_midnight( calendar::turn ) ); - break; - default: - debugmsg( "Invalid trigger" ); - return false; - } - - if( threshold_low < threshold_high ) { - if( var < threshold_high && - var > threshold_low ) { - activate = true; - } - } else { - if( var < threshold_high || - var > threshold_low ) { - activate = true; - } - } - return activate; + dialogue d( get_talker_for( guy ), nullptr ); + return trigger( d ); } int Character::get_mod( const trait_id &mut, const std::string &arg ) const diff --git a/src/mutation.h b/src/mutation.h index bdc4884f28d81..b66a56885b4e5 100644 --- a/src/mutation.h +++ b/src/mutation.h @@ -92,30 +92,10 @@ struct mut_transform { bool load( const JsonObject &jsobj, const std::string &member ); }; -enum trigger_type { - PAIN, - HUNGER, - THRIST, - MOOD, - STAMINA, - MOON, - TIME, - num_trigger -}; -template<> -struct enum_traits { - static constexpr trigger_type last = trigger_type::num_trigger; -}; - struct reflex_activation_data { /**What variable controls the activation*/ - trigger_type trigger = trigger_type::TIME; - - /**Activates above that threshold and deactivates below it*/ - int threshold_low = INT_MIN; - /**Activates below that threshold and deactivates above it*/ - int threshold_high = INT_MAX; + std::functiontrigger; std::pair msg_on; std::pair msg_off; diff --git a/src/mutation_data.cpp b/src/mutation_data.cpp index 0fd871b01bd10..be64c59d6474e 100644 --- a/src/mutation_data.cpp +++ b/src/mutation_data.cpp @@ -10,6 +10,7 @@ #include "assign.h" #include "color.h" +#include "condition.h" #include "debug.h" #include "enum_conversions.h" #include "enums.h" @@ -289,36 +290,9 @@ bool mut_transform::load( const JsonObject &jsobj, const std::string &member ) return true; } -namespace io -{ - // *INDENT-OFF* - template<> - std::string enum_to_string(trigger_type trigger_num) - { - switch (trigger_num) { - case trigger_type::PAIN: return "PAIN"; - case trigger_type::HUNGER: return "HUNGER"; - case trigger_type::THRIST: return "THIRST"; - case trigger_type::MOOD: return "MOOD"; - case trigger_type::STAMINA: return "STAMINA"; - case trigger_type::MOON: return "MOON"; - case trigger_type::TIME: return "TIME"; - case trigger_type::num_trigger: return "undefined trigger"; - } - cata_fatal("Invalid trigger_type %d", trigger_num); - } - // *INDENT-ON* -} // namespace io - void reflex_activation_data::load( const JsonObject &jsobj ) { - std::string tmp; - mandatory( jsobj, was_loaded, "trigger_type", tmp ); - trigger = io::string_to_enum( tmp ); - - optional( jsobj, was_loaded, "threshold_low", threshold_low, INT_MIN ); - optional( jsobj, was_loaded, "threshold_high", threshold_high, INT_MAX ); - + read_condition( jsobj, "condition", trigger, false ); if( jsobj.has_object( "msg_on" ) ) { JsonObject jo = jsobj.get_object( "msg_on" ); optional( jo, was_loaded, "text", msg_on.first ); diff --git a/src/npc.cpp b/src/npc.cpp index 9af53bde832e6..94316718344fa 100644 --- a/src/npc.cpp +++ b/src/npc.cpp @@ -282,6 +282,10 @@ void npc_template::load( const JsonObject &jsobj ) if( jsobj.has_int( "height" ) ) { guy.set_base_height( jsobj.get_int( "height" ) ); } + for( JsonValue jv : jsobj.get_array( "death_eocs" ) ) { + guy.death_eocs.emplace_back( effect_on_conditions::load_inline_eoc( jv, "" ) ); + } + npc_templates.emplace( string_id( guy.idz ), std::move( tem ) ); } @@ -376,6 +380,7 @@ void npc::load_npc_template( const string_id &ident ) for( const mission_type_id &miss_id : tguy.miss_ids ) { add_new_mission( mission::reserve_new( miss_id, getID() ) ); } + death_eocs = tguy.death_eocs; } npc::~npc() = default; diff --git a/src/npc_attack.cpp b/src/npc_attack.cpp index 201204e5c99d8..4ecfe0f24611f 100644 --- a/src/npc_attack.cpp +++ b/src/npc_attack.cpp @@ -650,11 +650,7 @@ tripoint_range npc_attack_throw::targetable_points( const npc &source npc_attack_rating npc_attack_throw::evaluate( const npc &source, const Creature *target ) const { -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wunknown-pragmas" -#pragma GCC diagnostic ignored "-Wmaybe-uninitialized" npc_attack_rating effectiveness( cata::nullopt, source.pos() ); -#pragma GCC diagnostic pop if( !can_use( source ) ) { // please don't throw your pants... return effectiveness; diff --git a/src/npcmove.cpp b/src/npcmove.cpp index 54eeb282b7e62..651e088d18a3d 100644 --- a/src/npcmove.cpp +++ b/src/npcmove.cpp @@ -287,14 +287,14 @@ tripoint npc::good_escape_direction( bool include_pos ) std::map adj_map; for( direction pt_dir : npc_threat_dir ) { - const tripoint pt = pos() + direction_XY( pt_dir ); + const tripoint pt = pos() + displace_XY( pt_dir ); float cur_rating = rate_pt( pt, ai_cache.threat_map[ pt_dir ] ); adj_map[pt_dir] = cur_rating; if( cur_rating == best_rating ) { - candidates.emplace_back( pos() + direction_XY( pt_dir ) ); + candidates.emplace_back( pos() + displace_XY( pt_dir ) ); } else if( cur_rating < best_rating ) { candidates.clear(); - candidates.emplace_back( pos() + direction_XY( pt_dir ) ); + candidates.emplace_back( pos() + displace_XY( pt_dir ) ); best_rating = cur_rating; } } diff --git a/src/npctalk.cpp b/src/npctalk.cpp index bbf75f2fbeffb..2186000e7b9e5 100644 --- a/src/npctalk.cpp +++ b/src/npctalk.cpp @@ -2165,6 +2165,7 @@ void talk_effect_fun_t::set_message( const JsonObject &jo, const std::string &me { std::string message = jo.get_string( member ); const bool snippet = jo.get_bool( "snippet", false ); + const bool same_snippet = jo.get_bool( "same_snippet", false ); const bool outdoor_only = jo.get_bool( "outdoor_only", false ); const bool sound = jo.get_bool( "sound", false ); const bool popup_msg = jo.get_bool( "popup", false ); @@ -2194,18 +2195,30 @@ void talk_effect_fun_t::set_message( const JsonObject &jo, const std::string &me jo.throw_error( "Invalid message type." ); } - function = [message, outdoor_only, sound, snippet, type, popup_msg, is_npc]( const dialogue & d ) { + function = [message, outdoor_only, sound, snippet, same_snippet, type, popup_msg, + is_npc]( const dialogue & d ) { + Character *target = d.actor( is_npc )->get_character(); + if( !target ) { + return; + } std::string translated_message; if( snippet ) { - translated_message = SNIPPET.expand( SNIPPET.random_from_category( message ).value_or( - translation() ).translated() ); + if( same_snippet ) { + talker *target = d.actor( !is_npc ); + std::string sid = target->get_value( message + "_snippet_id" ); + if( sid.empty() ) { + sid = SNIPPET.random_id_from_category( message ).c_str(); + target->set_value( message + "_snippet_id", sid ); + } + translated_message = SNIPPET.expand( SNIPPET.get_snippet_by_id( snippet_id( sid ) ).value_or( + translation() ).translated() ); + } else { + translated_message = SNIPPET.expand( SNIPPET.random_from_category( message ).value_or( + translation() ).translated() ); + } } else { translated_message = _( message ); } - Character *target = d.actor( is_npc )->get_character(); - if( !target ) { - return; - } if( sound ) { bool display = false; map &here = get_map(); @@ -2820,17 +2833,17 @@ void talk_effect_fun_t::set_queue_effect_on_condition( const JsonObject &jo, if( max > 0_seconds ) { time_duration time_in_future = rng( dov_time_in_future_min.evaluate( d.actor( false ) ), max ); for( const effect_on_condition_id &eoc : eocs ) { - if( eoc->activate_only ) { + if( eoc->type == eoc_type::ACTIVATION ) { effect_on_conditions::queue_effect_on_condition( time_in_future, eoc ); } else { - debugmsg( "Cannot queue a recurring effect_on_condition." ); + debugmsg( "Cannot queue a non activation effect_on_condition." ); } } } else { - Creature *creature_alpha = d.actor( false )->get_creature(); - item_location *item_alpha = d.actor( false )->get_item(); - Creature *creature_beta = d.actor( true )->get_creature(); - item_location *item_beta = d.actor( true )->get_item(); + Creature *creature_alpha = d.has_alpha ? d.actor( false )->get_creature() : nullptr; + item_location *item_alpha = d.has_alpha ? d.actor( false )->get_item() : nullptr; + Creature *creature_beta = d.has_beta ? d.actor( true )->get_creature() : nullptr; + item_location *item_beta = d.has_beta ? d.actor( true )->get_item() : nullptr; dialogue newDialog( ( creature_alpha ) ? get_talker_for( creature_alpha ) : ( item_alpha ) ? get_talker_for( item_alpha ) : nullptr, diff --git a/src/npctrade.cpp b/src/npctrade.cpp index 88a397a3909d5..a3cc56c8190be 100644 --- a/src/npctrade.cpp +++ b/src/npctrade.cpp @@ -49,6 +49,11 @@ std::list npc_trading::transfer_items( std::vector &stuff, C const bool use_escrow = !npc_gives; std::list escrow = std::list(); + // Sort top level containers to be processed last. + // Used to prevent character handling of contained items that are also traded. + std::vector> unsorted_stuff; + std::vector> containers; + std::vector> sorted_stuff; for( item_pricing &ip : stuff ) { if( !ip.selected ) { continue; @@ -59,11 +64,49 @@ std::list npc_trading::transfer_items( std::vector &stuff, C continue; } + if( ip.loc.get_item()->is_container() ) { + containers.emplace_back( ip ); + } else { + unsorted_stuff.emplace_back( ip ); + } + } + // Sort the containers only. Non-containers do not need to be sorted. + for( item_pricing &cont : containers ) { + for( std::vector>::iterator iter = sorted_stuff.begin(); + iter != sorted_stuff.end(); ++iter ) { + if( cont.loc.has_parent() && cont.loc.parent_item() == iter->get().loc ) { + sorted_stuff.insert( iter, cont ); + break; + } + } + sorted_stuff.emplace_back( cont ); + } + sorted_stuff.insert( sorted_stuff.begin(), unsorted_stuff.begin(), unsorted_stuff.end() ); + + for( item_pricing ip : sorted_stuff ) { + + if( ip.loc.get_item() == nullptr ) { + DebugLog( D_ERROR, D_NPC ) << "Null item being traded in npc_trading::transfer_items"; + continue; + } + item gift = *ip.loc.get_item(); gift.set_owner( receiver ); int charges = npc_gives ? ip.u_charges : ip.npc_charges; int count = npc_gives ? ip.u_has : ip.npc_has; + // Only affects worn containers. Other containers have contents hidden. + // Only untraded contents remain due to sorting. + if( gift.is_container() && !gift.is_tool() && !gift.is_firearm() && + ip.loc.where() == item_location::type::character ) { + for( item *it : gift.get_contents().all_items_top() ) { + if( it->made_of_from_type( phase_id::SOLID ) ) { + giver.i_add_or_drop( *it, 1, ip.loc.get_item() ); + gift.remove_item( *it ); + } + } + } + // Items are moving to escrow. if( use_escrow && ip.charges ) { gift.charges = charges; @@ -80,13 +123,13 @@ std::list npc_trading::transfer_items( std::vector &stuff, C } } - if( ip.loc.where() == item_location::type::character ) { + if( ip.loc.held_by( giver ) ) { if( ip.charges > 0 ) { giver.use_charges( gift.typeId(), charges ); } else if( ip.count > 0 ) { - for( int i = 0; i < count; i++ ) { - giver.use_amount( gift.typeId(), 1 ); - } + giver.remove_items_with( [&ip]( const item & i ) { + return &i == ip.loc.get_item(); + }, count ); } } else { if( ip.charges > 0 ) { @@ -175,8 +218,8 @@ std::vector npc_trading::init_buying( Character &buyer, Character } item &it = *loc; - // Don't sell items that are loose liquid - if( it.made_of( phase_id::LIQUID ) ) { + // Only solids allowed. All others should be transfered in a container. + if( !it.made_of( phase_id::SOLID ) ) { return; } @@ -190,7 +233,16 @@ std::vector npc_trading::init_buying( Character &buyer, Character return; } - const int market_price = it.price( true ); + // Hide contents of any containers that are not worn. + if( loc.has_parent() && !( loc.parent_item().where() == item_location::type::character ) ) { + return; + } + + // Worn containers have most contents visible so they show price for the container only, + // except hidden contents such as liquids. + const int market_price = loc.where() == item_location::type::character ? + it.price_no_contents( true ) : + it.price( true ); int val = np.value( it, market_price ); if( ( is_npc && np.wants_to_sell( it, val, market_price ) ) || ( !is_npc && np.wants_to_buy( it, val, market_price ) ) ) { @@ -630,49 +682,85 @@ bool trading_window::perform_trade( npc &np, const std::string &deal ) ch += offset; if( ch < target_list.size() ) { - item_pricing &ip = target_list[ch]; - int change_amount = 1; - int &owner_sells = focus_them ? ip.u_has : ip.npc_has; - int &owner_sells_charge = focus_them ? ip.u_charges : ip.npc_charges; - - if( ip.selected ) { - if( owner_sells_charge > 0 ) { - change_amount = owner_sells_charge; - owner_sells_charge = 0; - } else if( owner_sells > 0 ) { - change_amount = owner_sells; - owner_sells = 0; + item_pricing &ipr = target_list[ch]; + + // Recursive lambda https://artificial-mind.net/blog/2020/09/12/recursive-lambdas + auto item_selection = [ this, &np, &target_list ]( item_pricing & ip, + auto &&item_selection, bool max = false ) -> void { + int change_amount = 1; + int &owner_sells = focus_them ? ip.u_has : ip.npc_has; + int &owner_sells_charge = focus_them ? ip.u_charges : ip.npc_charges; + + if( ip.selected ) + { + if( owner_sells_charge > 0 ) { + change_amount = owner_sells_charge; + owner_sells_charge = 0; + } else if( owner_sells > 0 ) { + change_amount = owner_sells; + owner_sells = 0; + // Deselect all contents when deselecting a container. + if( ip.is_container ) { + for( item *it : ip.loc.get_item()->get_contents().all_items_top() ) { + for( item_pricing &ipp : target_list ) { + if( it == ipp.loc.get_item() && ipp.selected ) { + item_selection( ipp, item_selection ); + break; + } + } + } + } + } + } else if( ip.charges > 0 ) + { + change_amount = max ? ip.charges : get_var_trade( *ip.loc.get_item(), ip.charges ); + + if( change_amount < 1 ) { + return; + } + owner_sells_charge = change_amount; + } else + { + if( ip.count > 1 ) { + change_amount = max ? ip.count : get_var_trade( *ip.loc.get_item(), ip.count ); + + if( change_amount < 1 ) { + return; + } + } + owner_sells = change_amount; + // Select all contents when selecting a container. + if( ip.is_container ) { + for( item *it : ip.loc.get_item()->get_contents().all_items_top() ) { + for( item_pricing &ipp : target_list ) { + if( it == ipp.loc.get_item() && !ipp.selected ) { + item_selection( ipp, item_selection, true ); + break; + } + } + } + } } - } else if( ip.charges > 0 ) { - change_amount = get_var_trade( *ip.loc.get_item(), ip.charges ); - if( change_amount < 1 ) { - continue; + ip.selected = !ip.selected; + if( ip.selected != focus_them ) + { + change_amount *= -1; } - owner_sells_charge = change_amount; - } else { - if( ip.count > 1 ) { - change_amount = get_var_trade( *ip.loc.get_item(), ip.count ); - if( change_amount < 1 ) { - continue; + int delta_price = ip.price * change_amount; + if( !np.will_exchange_items_freely() ) + { + your_balance -= delta_price; + if( ip.selected != focus_them ) { + your_sale_value -= delta_price; } } - owner_sells = change_amount; - } - ip.selected = !ip.selected; - if( ip.selected != focus_them ) { - change_amount *= -1; - } - int delta_price = ip.price * change_amount; - if( !np.will_exchange_items_freely() ) { - your_balance -= delta_price; - if( ip.selected != focus_them ) { - your_sale_value -= delta_price; + if( ip.loc.where_recursive() == item_location::type::character ) + { + volume_left += ip.vol * change_amount; + weight_left += ip.weight * change_amount; } - } - if( ip.loc.where() == item_location::type::character ) { - volume_left += ip.vol * change_amount; - weight_left += ip.weight * change_amount; - } + }; + item_selection( ipr, item_selection ); } } } diff --git a/src/optional.h b/src/optional.h index cc732d902a9d0..34f6ba3307e4e 100644 --- a/src/optional.h +++ b/src/optional.h @@ -33,6 +33,9 @@ class optional private: using StoredType = typename std::remove_const::type; union { + // `volatile` suppresses -Wmaybe-uninitialized false positive + // See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80635#c53 + volatile char dont_use; char dummy; StoredType data; }; diff --git a/src/output.cpp b/src/output.cpp index 34a152d1ee154..d7a0df07b47eb 100644 --- a/src/output.cpp +++ b/src/output.cpp @@ -2077,7 +2077,7 @@ scrollingcombattext::cSCT::cSCT( const point &p_pos, const direction p_oDir, oLeft = iso_mode ? direction::NORTHWEST : direction::WEST; oUpLeft = iso_mode ? direction::NORTH : direction::NORTHWEST; - point pairDirXY = direction_XY( oDir ); + point pairDirXY = displace_XY( oDir ); dir = pairDirXY; diff --git a/src/overmap.cpp b/src/overmap.cpp index 977c1c52b8e47..87d45cad5102b 100644 --- a/src/overmap.cpp +++ b/src/overmap.cpp @@ -1,3 +1,4 @@ +#include "cube_direction.h" // IWYU pragma: associated #include "omdata.h" // IWYU pragma: associated #include "overmap.h" // IWYU pragma: associated @@ -913,41 +914,32 @@ overmap_special_terrain::overmap_special_terrain( , flags( fs ) {} -// We have other direction enums, but for this purpose we need to have one for -// the six rectilinear directions. These correspond to the faces of a cube, so -// I've called it cube_direction -enum class cube_direction { - north, - east, - south, - west, - above, - below, - last -}; - -template<> -struct enum_traits { - static constexpr cube_direction last = cube_direction::last; -}; - -namespace std +cube_direction operator+( const cube_direction l, const om_direction::type r ) { -template <> struct hash { - std::size_t operator()( const cube_direction &d ) const { - return static_cast( d ); + switch( l ) { + case cube_direction::north: + case cube_direction::east: + case cube_direction::south: + case cube_direction::west: + return static_cast( + ( static_cast( l ) + static_cast( r ) ) % 4 ); + case cube_direction::above: + case cube_direction::below: + return l; + case cube_direction::last: + break; } -}; -} // namespace std + constexpr_fatal( cube_direction::last, "Invalid cube_direction" ); +} -static constexpr cube_direction operator-( const cube_direction d, int i ) +cube_direction operator+( const cube_direction d, int i ) { switch( d ) { case cube_direction::north: case cube_direction::east: case cube_direction::south: case cube_direction::west: - return static_cast( ( static_cast( d ) - i + 4 ) % 4 ); + return static_cast( ( static_cast( d ) + i ) % 4 ); case cube_direction::above: case cube_direction::below: return d; @@ -957,33 +949,23 @@ static constexpr cube_direction operator-( const cube_direction d, int i ) constexpr_fatal( cube_direction::last, "Invalid cube_direction" ); } -static constexpr cube_direction operator+( const cube_direction l, const om_direction::type r ) +cube_direction operator-( const cube_direction d, int i ) { - switch( l ) { + switch( d ) { case cube_direction::north: case cube_direction::east: case cube_direction::south: case cube_direction::west: - return static_cast( - ( static_cast( l ) + static_cast( r ) ) % 4 ); + return static_cast( ( static_cast( d ) - i + 4 ) % 4 ); case cube_direction::above: case cube_direction::below: - return l; + return d; case cube_direction::last: break; } constexpr_fatal( cube_direction::last, "Invalid cube_direction" ); } -static_assert( cube_direction::north - 0 == cube_direction::north, "" ); -static_assert( cube_direction::north - 1 == cube_direction::west, "" ); -static_assert( cube_direction::north - 2 == cube_direction::south, "" ); -static_assert( cube_direction::north - 3 == cube_direction::east, "" ); -static_assert( cube_direction::north - 4 == cube_direction::north, "" ); -static_assert( cube_direction::east - 2 == cube_direction::west, "" ); -static_assert( cube_direction::south - 2 == cube_direction::north, "" ); -static_assert( cube_direction::west - 2 == cube_direction::east, "" ); - static tripoint displace( cube_direction d ) { switch( d ) { @@ -1342,57 +1324,63 @@ struct mutable_overmap_phase { } }; -struct pos_dir { - tripoint_om_omt p; - cube_direction dir; - - bool inbounds() const { - static constexpr half_open_cuboid overmap_bounds( - tripoint_om_omt( 0, 0, -OVERMAP_DEPTH ), - tripoint_om_omt( OMAPX, OMAPY, OVERMAP_HEIGHT + 1 ) - ); - return overmap_bounds.contains( p ); - } - - pos_dir opposite() const { - switch( dir ) { - case cube_direction::north: - return { p + tripoint_north, cube_direction::south }; - case cube_direction::east: - return { p + tripoint_east, cube_direction::west }; - case cube_direction::south: - return { p + tripoint_south, cube_direction::north }; - case cube_direction::west: - return { p + tripoint_west, cube_direction::east }; - case cube_direction::above: - return { p + tripoint_above, cube_direction::below }; - case cube_direction::below: - return { p + tripoint_below, cube_direction::above }; - case cube_direction::last: - break; - } - cata_fatal( "Invalid cube_direction" ); - } +bool om_pos_dir::inbounds() const +{ + static constexpr half_open_cuboid overmap_bounds( + tripoint_om_omt( 0, 0, -OVERMAP_DEPTH ), + tripoint_om_omt( OMAPX, OMAPY, OVERMAP_HEIGHT + 1 ) + ); + return overmap_bounds.contains( p ); +} - friend bool operator==( const pos_dir &l, const pos_dir &r ) { - return l.p == r.p && l.dir == r.dir; +om_pos_dir om_pos_dir::opposite() const +{ + switch( dir ) { + case cube_direction::north: + return { p + tripoint_north, cube_direction::south }; + case cube_direction::east: + return { p + tripoint_east, cube_direction::west }; + case cube_direction::south: + return { p + tripoint_south, cube_direction::north }; + case cube_direction::west: + return { p + tripoint_west, cube_direction::east }; + case cube_direction::above: + return { p + tripoint_above, cube_direction::below }; + case cube_direction::below: + return { p + tripoint_below, cube_direction::above }; + case cube_direction::last: + break; } + cata_fatal( "Invalid cube_direction" ); +} - friend bool operator<( const pos_dir &l, const pos_dir &r ) { - return std::tie( l.p, l.dir ) < std::tie( r.p, r.dir ); - } -}; +void om_pos_dir::serialize( JsonOut &jsout ) const +{ + jsout.start_array(); + jsout.write( p ); + jsout.write( dir ); + jsout.end_array(); +} -namespace std +void om_pos_dir::deserialize( JsonIn &jsin ) { -template<> -struct hash { - size_t operator()( const pos_dir &p ) const { - cata::tuple_hash h; - return h( std::make_tuple( p.p, p.dir ) ); + JsonArray ja = jsin.get_array(); + if( ja.size() != 2 ) { + ja.throw_error( "Expected array of size 2" ); } -}; -} // namespace std + ja.read( 0, p ); + ja.read( 1, dir ); +} + +bool operator==( const om_pos_dir &l, const om_pos_dir &r ) +{ + return l.p == r.p && l.dir == r.dir; +} + +bool operator<( const om_pos_dir &l, const om_pos_dir &r ) +{ + return std::tie( l.p, l.dir ) < std::tie( r.p, r.dir ); +} // When building a mutable overmap special we maintain a collection of // unresolved joins. We need to be able to index that collection in @@ -1406,7 +1394,7 @@ class joins_tracker } struct join { - pos_dir where; + om_pos_dir where; std::string join_id; unsigned join_priority; }; @@ -1451,11 +1439,13 @@ class joins_tracker const mutable_overmap_terrain_join &join = p.second; const mutable_overmap_join &opposite_join = *join.join->opposite; - pos_dir this_side{ pos, dir }; - pos_dir other_side = this_side.opposite(); + om_pos_dir this_side{ pos, dir }; + om_pos_dir other_side = this_side.opposite(); if( resolved.count( other_side ) ) { erase_unresolved( this_side ); + used.emplace_back( this_side, join.join_id ); + used.emplace_back( other_side, opposite_join.id ); } else { // If there were postponed joins pointing into this point, // so we need to un-postpone them because it might now be @@ -1474,7 +1464,7 @@ class joins_tracker consistency_check(); } - std::pair pick_top_priority() const { + std::pair pick_top_priority() const { cata_assert( any_unresolved() ); auto priority_it = std::find_if( unresolved_priority_index.begin(), unresolved_priority_index.end(), @@ -1485,7 +1475,7 @@ class joins_tracker auto it = random_entry( *priority_it ); const tripoint_om_omt &pos = it->where.p; cata_assert( !postponed.any_at( pos ) ); - std::pair result( it->where, {} ); + std::pair result( it->where, {} ); for( iterator it : unresolved.all_at( pos ) ) { result.second.joins.emplace_back( it->where.dir, it->join_id ); } @@ -1514,6 +1504,10 @@ class joins_tracker } postponed.clear(); } + + const std::vector> &all_used() const { + return used; + } private: unsigned priority_of( const std::string &join_id ) const { auto it = joins->find( join_id ); @@ -1526,7 +1520,7 @@ class joins_tracker struct indexed_joins { std::list joins; - std::unordered_map position_index; + std::unordered_map position_index; iterator begin() { return joins.begin(); @@ -1548,13 +1542,13 @@ class joins_tracker return joins.empty(); } - bool count( const pos_dir &p ) const { + bool count( const om_pos_dir &p ) const { return position_index.count( p ); } bool any_at( const tripoint_om_omt &pos ) const { for( cube_direction dir : all_enum_values() ) { - if( count( pos_dir{ pos, dir } ) ) { + if( count( om_pos_dir{ pos, dir } ) ) { return true; } } @@ -1564,7 +1558,7 @@ class joins_tracker std::vector all_at( const tripoint_om_omt &pos ) const { std::vector result; for( cube_direction dir : all_enum_values() ) { - pos_dir key{ pos, dir }; + om_pos_dir key{ pos, dir }; auto pos_it = position_index.find( key ); if( pos_it != position_index.end() ) { result.push_back( pos_it->second ); @@ -1573,7 +1567,7 @@ class joins_tracker return result; } - iterator add( const joins_tracker &tracker, const pos_dir &p, + iterator add( const joins_tracker &tracker, const om_pos_dir &p, const std::string &join_id ) { unsigned priority = tracker.priority_of( join_id ); return add( { p, join_id, priority } ); @@ -1599,7 +1593,7 @@ class joins_tracker } }; - void add_unresolved( const pos_dir &p, const std::string &join_id ) { + void add_unresolved( const om_pos_dir &p, const std::string &join_id ) { iterator it = unresolved.add( *this, p, join_id ); unsigned priority = it->join_priority; if( unresolved_priority_index.size() <= priority ) { @@ -1609,7 +1603,7 @@ class joins_tracker cata_assert( insert_result_2.second ); } - bool erase_unresolved( const pos_dir &p ) { + bool erase_unresolved( const om_pos_dir &p ) { auto pos_it = unresolved.position_index.find( p ); if( pos_it == unresolved.position_index.end() ) { return false; @@ -1636,6 +1630,8 @@ class joins_tracker indexed_joins resolved; indexed_joins postponed; + + std::vector> used; }; struct mutable_overmap_special_data { @@ -1755,13 +1751,15 @@ struct mutable_overmap_special_data { return { tripoint_zero, root_om.terrain, root_om.locations, {} }; } - std::vector place( overmap &om, const tripoint_om_omt &origin ) const { + // Returns a list of the points placed and a list of the joins used + auto place( overmap &om, const tripoint_om_omt &origin ) const -> + std::pair, std::vector>> { std::vector result; auto it = overmaps.find( root ); if( it == overmaps.end() ) { debugmsg( "Invalid root %s", root ); - return result; + return { result, {} }; } const mutable_overmap_terrain &root_omt = it->second; om.ter_set( origin, root_omt.terrain ); @@ -1778,7 +1776,7 @@ struct mutable_overmap_special_data { mutable_overmap_phase_remainder phase_remaining = current_phase->realise(); while( unresolved.any_unresolved() ) { - pos_dir p_d; + om_pos_dir p_d; placement_constraints next; std::tie( p_d, next ) = unresolved.pick_top_priority(); const tripoint_om_omt &p = p_d.p; @@ -1811,7 +1809,7 @@ struct mutable_overmap_special_data { // This is an error in the JSON; extract some useful info to help // the user debug it unresolved.restore_postponed(); - pos_dir p_d; + om_pos_dir p_d; placement_constraints next; std::tie( p_d, next ) = unresolved.pick_top_priority(); const tripoint_om_omt &p = p_d.p; @@ -1827,9 +1825,14 @@ struct mutable_overmap_special_data { "at %s was %s; joins were %s\nComplete record of placement follows:\n%s", parent_id.str(), p.to_string(), current_terrain.id().str(), joins, join( descriptions, "\n" ) ); + + om.add_note( + p, string_format( + "U:R;DEBUG: unresolved joins %s at %s placing %s", + joins, p.to_string(), parent_id.str() ) ); } - return result; + return { result, unresolved.all_used() }; } }; @@ -2284,6 +2287,15 @@ cata::optional *overmap::mapgen_args( const tripoint_om_omt &p return it->second; } +std::string *overmap::join_used_at( const om_pos_dir &p ) +{ + auto it = joins_used.find( p ); + if( it == joins_used.end() ) { + return nullptr; + } + return &it->second; +} + bool &overmap::seen( const tripoint_om_omt &p ) { if( !inbounds( p ) ) { @@ -5312,9 +5324,14 @@ std::vector overmap::place_special( must_be_unexplored ); break; } - case overmap_special_subtype::mutable_: - result = special.get_mutable_data().place( *this, p ); + case overmap_special_subtype::mutable_: { + std::vector> joins; + std::tie( result, joins ) = special.get_mutable_data().place( *this, p ); + for( const std::pair &join : joins ) { + joins_used[join.first] = join.second; + } break; + } case overmap_special_subtype::last: cata_fatal( "Invalid overmap_special_subtype" ); } diff --git a/src/overmap.h b/src/overmap.h index 5224085562d87..c7a83baceae08 100644 --- a/src/overmap.h +++ b/src/overmap.h @@ -17,6 +17,7 @@ #include "basecamp.h" #include "coordinates.h" +#include "cube_direction.h" #include "enums.h" #include "game_constants.h" #include "mapgendata.h" @@ -203,6 +204,31 @@ static const std::map oter_flags_map = { { "SOURCE_WEAPON", oter_flags::source_weapon } }; +struct om_pos_dir { + tripoint_om_omt p; + cube_direction dir; + + bool inbounds() const; + om_pos_dir opposite() const; + + void serialize( JsonOut &jsout ) const; + void deserialize( JsonIn &jsin ); + + friend bool operator==( const om_pos_dir &l, const om_pos_dir &r ); + friend bool operator<( const om_pos_dir &l, const om_pos_dir &r ); +}; + +namespace std +{ +template<> +struct hash { + size_t operator()( const om_pos_dir &p ) const { + cata::tuple_hash h; + return h( std::make_tuple( p.p, p.dir ) ); + } +}; +} // namespace std + class overmap { public: @@ -246,6 +272,7 @@ class overmap void ter_set( const tripoint_om_omt &p, const oter_id &id ); const oter_id &ter( const tripoint_om_omt &p ) const; cata::optional *mapgen_args( const tripoint_om_omt & ); + std::string *join_used_at( const om_pos_dir & ); bool &seen( const tripoint_om_omt &p ); bool seen( const tripoint_om_omt &p ) const; bool &explored( const tripoint_om_omt &p ); @@ -379,6 +406,10 @@ class overmap cata::colony> mapgen_arg_storage; std::unordered_map *> mapgen_args_index; + // Records the joins that were chosen during placement of a mutable + // special, so that it can be queried later by mapgen + std::unordered_map joins_used; + pimpl settings; oter_id get_default_terrain( int z ) const; diff --git a/src/overmap_ui.cpp b/src/overmap_ui.cpp index b786994025382..5b8dccdb100f0 100644 --- a/src/overmap_ui.cpp +++ b/src/overmap_ui.cpp @@ -21,6 +21,7 @@ #include #include "activity_actor_definitions.h" +#include "all_enum_values.h" #include "avatar.h" #include "basecamp.h" #include "cached_options.h" @@ -1071,7 +1072,8 @@ static void draw_om_sidebar( if( ( data.debug_editor && center_seen ) || data.debug_info ) { const oter_t &oter = overmap_buffer.ter( center ).obj(); - mvwprintz( wbar, point( 1, ++lines ), c_white, _( "oter: %s" ), oter.id.str() ); + mvwprintz( wbar, point( 1, ++lines ), c_white, _( "oter: %s (rot %d)" ), oter.id.str(), + oter.get_rotation() ); mvwprintz( wbar, point( 1, ++lines ), c_white, _( "oter_type: %s" ), oter.get_type_id().str() ); cata::optional *args = overmap_buffer.mapgen_args( center ); @@ -1085,6 +1087,13 @@ static void draw_om_sidebar( mvwprintz( wbar, point( 1, ++lines ), c_white, _( "args not yet set" ) ); } } + + for( cube_direction dir : all_enum_values() ) { + if( std::string *join = overmap_buffer.join_used_at( { center, dir } ) ) { + mvwprintz( wbar, point( 1, ++lines ), c_white, _( "join %s: %s" ), + io::enum_to_string( dir ), *join ); + } + } } if( has_target ) { diff --git a/src/overmapbuffer.cpp b/src/overmapbuffer.cpp index d7cccff9fd93e..02241ef5bfb50 100644 --- a/src/overmapbuffer.cpp +++ b/src/overmapbuffer.cpp @@ -749,6 +749,12 @@ cata::optional *overmapbuffer::mapgen_args( const tripoint_abs return om_loc.om->mapgen_args( om_loc.local ); } +std::string *overmapbuffer::join_used_at( const std::pair &p ) +{ + const overmap_with_local_coords om_loc = get_om_global( p.first ); + return om_loc.om->join_used_at( { om_loc.local, p.second } ); +} + bool overmapbuffer::reveal( const point_abs_omt ¢er, int radius, int z ) { return reveal( tripoint_abs_omt( center, z ), radius ); diff --git a/src/overmapbuffer.h b/src/overmapbuffer.h index 9b8c3d3f1d447..c0be4838ec3f3 100644 --- a/src/overmapbuffer.h +++ b/src/overmapbuffer.h @@ -22,6 +22,7 @@ class basecamp; class character_id; +enum class cube_direction : int; class map_extra; class monster; class npc; @@ -166,6 +167,7 @@ class overmapbuffer const oter_id &ter_existing( const tripoint_abs_omt &p ); void ter_set( const tripoint_abs_omt &p, const oter_id &id ); cata::optional *mapgen_args( const tripoint_abs_omt & ); + std::string *join_used_at( const std::pair & ); /** * Uses global overmap terrain coordinates. */ diff --git a/src/pickup.cpp b/src/pickup.cpp index 3e765458826ba..bbf0ab441668c 100644 --- a/src/pickup.cpp +++ b/src/pickup.cpp @@ -522,7 +522,7 @@ void Pickup::pick_up( const tripoint &p, int min, from_where get_items_from ) direction adjacentDir[8] = {direction::NORTH, direction::NORTHEAST, direction::EAST, direction::SOUTHEAST, direction::SOUTH, direction::SOUTHWEST, direction::WEST, direction::NORTHWEST}; for( auto &elem : adjacentDir ) { - tripoint apos = tripoint( direction_XY( elem ), 0 ); + tripoint apos = tripoint( displace_XY( elem ), 0 ); apos += p; pick_up( apos, min ); diff --git a/src/point.h b/src/point.h index 6850f064c08ee..b6ed7676ea6c0 100644 --- a/src/point.h +++ b/src/point.h @@ -229,6 +229,13 @@ struct tripoint { return point( x, y ); } + /** + * Rotates just the x,y component of the tripoint. See point::rotate() + * NOLINTNEXTLINE(cata-use-named-point-constants) */ + tripoint rotate( int turns, const point &dim = { 1, 1 } ) const { + return tripoint( xy().rotate( turns, dim ), z ); + } + std::string to_string() const; std::string to_string_writable() const; diff --git a/src/savegame.cpp b/src/savegame.cpp index bdc2480413f7a..76dcbe1b90cf0 100644 --- a/src/savegame.cpp +++ b/src/savegame.cpp @@ -410,6 +410,9 @@ void overmap::convert_terrain( ter_set( pos, oter_id( "field" ) ); } else if( old == "mine_shaft" ) { ter_set( pos, oter_id( "mine_shaft_middle_north" ) ); + } else if( old.compare( 0, 30, "microlab_generic_hallway_start" ) == 0 || + old.compare( 0, 24, "microlab_generic_hallway" ) == 0 ) { + ter_set( pos, oter_id( "microlab_generic" ) ); } else if( old.compare( 0, 23, "office_tower_1_entrance" ) == 0 ) { ter_set( pos, oter_id( "office_tower_ne_north" ) ); ter_set( pos + point_west, oter_id( "office_tower_nw_north" ) ); @@ -727,6 +730,12 @@ void overmap::unserialize( std::istream &fin ) auto it = mapgen_arg_storage.get_iterator_from_index( p.second ); mapgen_args_index.emplace( p.first, &*it ); } + } else if( name == "joins_used" ) { + std::vector> flat_index; + jsin.read( flat_index, true ); + for( const std::pair &p : flat_index ) { + joins_used.insert( p ); + } } } } @@ -1142,6 +1151,11 @@ void overmap::serialize( std::ostream &fout ) const json.end_array(); fout << std::endl; + std::vector> flattened_joins_used( + joins_used.begin(), joins_used.end() ); + json.member( "joins_used", flattened_joins_used ); + fout << std::endl; + json.end_object(); fout << std::endl; } diff --git a/src/savegame_json.cpp b/src/savegame_json.cpp index 22b45369845e5..833073ebbc3db 100644 --- a/src/savegame_json.cpp +++ b/src/savegame_json.cpp @@ -730,7 +730,7 @@ void Character::load( const JsonObject &data ) data.read( "my_bionics", *my_bionics ); invalidate_pseudo_items(); - + data.read( "death_eocs", death_eocs ); for( auto &w : worn ) { w.on_takeoff( *this ); } @@ -1210,7 +1210,7 @@ void Character::store( JsonOut &json ) const // "Looks like I picked the wrong week to quit smoking." - Steve McCroskey json.member( "addictions", addictions ); - + json.member( "death_eocs", death_eocs ); json.member( "worn", worn ); // also saves contents json.member( "inv" ); inv->json_save_items( json ); diff --git a/src/sounds.cpp b/src/sounds.cpp index 15b1ee58a9df1..249e25fe2b94b 100644 --- a/src/sounds.cpp +++ b/src/sounds.cpp @@ -1030,6 +1030,11 @@ void sfx::do_ambient() break; case weather_sound_category::silent: break; + case weather_sound_category::portal_storm: + play_ambient_variant_sound( "environment", "WEATHER_PORTAL_STORM", heard_volume, + channel::outdoors_portal_storm_env, + 1000 ); + break; case weather_sound_category::last: debugmsg( "Invalid weather sound category." ); break; diff --git a/src/sounds.h b/src/sounds.h index e015187488504..dc2f772601830 100644 --- a/src/sounds.h +++ b/src/sounds.h @@ -118,6 +118,7 @@ enum class channel : int { exterior_engine_sound, interior_engine_sound, radio, + outdoors_portal_storm_env, MAX_CHANNEL //the last reserved channel }; diff --git a/src/talker.h b/src/talker.h index abf8413f0f6fe..7007ac5312cc7 100644 --- a/src/talker.h +++ b/src/talker.h @@ -33,7 +33,7 @@ class talker virtual Character *get_character() { return nullptr; } - virtual Character *get_character() const { + virtual const Character *get_character() const { return nullptr; } virtual npc *get_npc() { @@ -57,7 +57,7 @@ class talker virtual Creature *get_creature() { return nullptr; } - virtual Creature *get_creature() const { + virtual const Creature *get_creature() const { return nullptr; } // identity and location @@ -125,16 +125,16 @@ class talker virtual void set_dex_max( int ) {} virtual void set_int_max( int ) {} virtual void set_per_max( int ) {} - virtual int get_str_max() { + virtual int get_str_max() const { return 0; } - virtual int get_dex_max() { + virtual int get_dex_max() const { return 0; } - virtual int get_int_max() { + virtual int get_int_max() const { return 0; } - virtual int get_per_max() { + virtual int get_per_max() const { return 0; } virtual int get_skill_level( const skill_id & ) const { @@ -262,6 +262,10 @@ class talker virtual std::vector items_with( const std::function & ) const { return {}; } + virtual std::vector const_items_with( const std::function & ) + const { + return {}; + } virtual void i_add( const item & ) {} virtual void remove_items_with( const std::function & ) {} virtual bool unarmed_attack() const { diff --git a/src/talker_avatar.cpp b/src/talker_avatar.cpp index 7dfbd34992047..2588c866c7564 100644 --- a/src/talker_avatar.cpp +++ b/src/talker_avatar.cpp @@ -23,6 +23,7 @@ static const trait_id trait_PROF_FOODP( "PROF_FOODP" ); talker_avatar::talker_avatar( avatar *new_me ) { me_chr = new_me; + me_chr_const = new_me; } std::vector talker_avatar::get_topics( bool ) diff --git a/src/talker_character.cpp b/src/talker_character.cpp index 63d7c96245d02..9aa55a0c7b0eb 100644 --- a/src/talker_character.cpp +++ b/src/talker_character.cpp @@ -14,49 +14,55 @@ class time_duration; static const trait_id trait_SEESLEEP( "SEESLEEP" ); -std::string talker_character::disp_name() const +talker_character::talker_character( Character *new_me ) { - return me_chr->disp_name(); + me_chr = new_me; + me_chr_const = new_me; } -character_id talker_character::getID() const +std::string talker_character_const::disp_name() const { - return me_chr->getID(); + return me_chr_const->disp_name(); } -bool talker_character::is_male() const +character_id talker_character_const::getID() const { - return me_chr->male; + return me_chr_const->getID(); } -std::vector talker_character::get_grammatical_genders() const +bool talker_character_const::is_male() const { - return me_chr->get_grammatical_genders(); + return me_chr_const->male; } -int talker_character::posx() const +std::vector talker_character_const::get_grammatical_genders() const { - return me_chr->posx(); + return me_chr_const->get_grammatical_genders(); } -int talker_character::posy() const +int talker_character_const::posx() const { - return me_chr->posy(); + return me_chr_const->posx(); } -int talker_character::posz() const +int talker_character_const::posy() const { - return me_chr->posz(); + return me_chr_const->posy(); } -tripoint talker_character::pos() const +int talker_character_const::posz() const { - return me_chr->pos(); + return me_chr_const->posz(); } -tripoint_abs_omt talker_character::global_omt_location() const +tripoint talker_character_const::pos() const { - return me_chr->global_omt_location(); + return me_chr_const->pos(); +} + +tripoint_abs_omt talker_character_const::global_omt_location() const +{ + return me_chr_const->global_omt_location(); } void talker_character::set_pos( tripoint new_pos ) @@ -64,24 +70,24 @@ void talker_character::set_pos( tripoint new_pos ) me_chr->setpos( new_pos ); } -int talker_character::str_cur() const +int talker_character_const::str_cur() const { - return me_chr->str_cur; + return me_chr_const->str_cur; } -int talker_character::dex_cur() const +int talker_character_const::dex_cur() const { - return me_chr->dex_cur; + return me_chr_const->dex_cur; } -int talker_character::int_cur() const +int talker_character_const::int_cur() const { - return me_chr->int_cur; + return me_chr_const->int_cur; } -int talker_character::per_cur() const +int talker_character_const::per_cur() const { - return me_chr->per_cur; + return me_chr_const->per_cur; } void talker_character::set_str_max( int value ) @@ -104,39 +110,39 @@ void talker_character::set_per_max( int value ) me_chr->per_max = value; } -int talker_character::get_str_max() +int talker_character_const::get_str_max() const { - return me_chr->str_max; + return me_chr_const->str_max; } -int talker_character::get_dex_max() +int talker_character_const::get_dex_max() const { - return me_chr->dex_max; + return me_chr_const->dex_max; } -int talker_character::get_int_max() +int talker_character_const::get_int_max() const { - return me_chr->int_max; + return me_chr_const->int_max; } -int talker_character::get_per_max() +int talker_character_const::get_per_max() const { - return me_chr->per_max; + return me_chr_const->per_max; } -bool talker_character::has_trait( const trait_id &trait_to_check ) const +bool talker_character_const::has_trait( const trait_id &trait_to_check ) const { - return me_chr->has_trait( trait_to_check ); + return me_chr_const->has_trait( trait_to_check ); } -bool talker_character::is_deaf() const +bool talker_character_const::is_deaf() const { - return me_chr->is_deaf(); + return me_chr_const->is_deaf(); } -bool talker_character::is_mute() const +bool talker_character_const::is_mute() const { - return me_chr->is_mute(); + return me_chr_const->is_mute(); } void talker_character::set_mutation( const trait_id &new_trait ) @@ -149,24 +155,24 @@ void talker_character::unset_mutation( const trait_id &old_trait ) me_chr->unset_mutation( old_trait ); } -bool talker_character::has_trait_flag( const json_character_flag &trait_flag_to_check ) const +bool talker_character_const::has_trait_flag( const json_character_flag &trait_flag_to_check ) const { - return me_chr->has_trait_flag( trait_flag_to_check ); + return me_chr_const->has_trait_flag( trait_flag_to_check ); } -bool talker_character::crossed_threshold() const +bool talker_character_const::crossed_threshold() const { - return me_chr->crossed_threshold(); + return me_chr_const->crossed_threshold(); } -int talker_character::num_bionics() const +int talker_character_const::num_bionics() const { - return me_chr->num_bionics(); + return me_chr_const->num_bionics(); } -bool talker_character::has_max_power() const +bool talker_character_const::has_max_power() const { - return me_chr->has_max_power(); + return me_chr_const->has_max_power(); } void talker_character::set_power_cur( units::energy value ) @@ -174,19 +180,19 @@ void talker_character::set_power_cur( units::energy value ) me_chr->set_power_level( value ); } -bool talker_character::has_bionic( const bionic_id &bionics_id ) const +bool talker_character_const::has_bionic( const bionic_id &bionics_id ) const { - return me_chr->has_bionic( bionics_id ); + return me_chr_const->has_bionic( bionics_id ); } -bool talker_character::knows_spell( const spell_id &sp ) const +bool talker_character_const::knows_spell( const spell_id &sp ) const { - return me_chr->magic->knows_spell( sp ); + return me_chr_const->magic->knows_spell( sp ); } -int talker_character::get_skill_level( const skill_id &skill ) const +int talker_character_const::get_skill_level( const skill_id &skill ) const { - return me_chr->get_skill_level( skill ); + return me_chr_const->get_skill_level( skill ); } void talker_character::set_skill_level( const skill_id &skill, int value ) @@ -194,19 +200,20 @@ void talker_character::set_skill_level( const skill_id &skill, int value ) me_chr->set_skill_level( skill, value ); } -bool talker_character::knows_proficiency( const proficiency_id &proficiency ) const +bool talker_character_const::knows_proficiency( const proficiency_id &proficiency ) const { - return me_chr->has_proficiency( proficiency ); + return me_chr_const->has_proficiency( proficiency ); } -bool talker_character::has_effect( const efftype_id &effect_id, const bodypart_id &bp ) const +bool talker_character_const::has_effect( const efftype_id &effect_id, const bodypart_id &bp ) const { - return me_chr->has_effect( effect_id, bp ); + return me_chr_const->has_effect( effect_id, bp ); } -effect talker_character::get_effect( const efftype_id &effect_id, const bodypart_id &bp ) const +effect talker_character_const::get_effect( const efftype_id &effect_id, + const bodypart_id &bp ) const { - return me_chr->get_effect( effect_id, bp ); + return me_chr_const->get_effect( effect_id, bp ); } void talker_character::add_effect( const efftype_id &new_effect, const time_duration &dur, @@ -227,9 +234,9 @@ void talker_character::remove_effect( const efftype_id &old_effect ) me_chr->remove_effect( old_effect ); } -std::string talker_character::get_value( const std::string &var_name ) const +std::string talker_character_const::get_value( const std::string &var_name ) const { - return me_chr->get_value( var_name ); + return me_chr_const->get_value( var_name ); } void talker_character::set_value( const std::string &var_name, const std::string &value ) @@ -242,19 +249,19 @@ void talker_character::remove_value( const std::string &var_name ) me_chr->remove_value( var_name ); } -bool talker_character::is_wearing( const itype_id &item_id ) const +bool talker_character_const::is_wearing( const itype_id &item_id ) const { - return me_chr->is_wearing( item_id ); + return me_chr_const->is_wearing( item_id ); } -int talker_character::charges_of( const itype_id &item_id ) const +int talker_character_const::charges_of( const itype_id &item_id ) const { - return me_chr->charges_of( item_id ); + return me_chr_const->charges_of( item_id ); } -bool talker_character::has_charges( const itype_id &item_id, int count ) const +bool talker_character_const::has_charges( const itype_id &item_id, int count ) const { - return me_chr->has_charges( item_id, count ); + return me_chr_const->has_charges( item_id, count ); } std::list talker_character::use_charges( const itype_id &item_name, const int count ) @@ -267,19 +274,26 @@ std::list talker_character::use_amount( const itype_id &item_name, const i return me_chr->use_amount( item_name, count ); } -bool talker_character::has_amount( const itype_id &item_id, int count ) const +bool talker_character_const::has_amount( const itype_id &item_id, int count ) const { - return me_chr->has_amount( item_id, count ); + return me_chr_const->has_amount( item_id, count ); } -int talker_character::get_amount( const itype_id &item_id ) const +int talker_character_const::get_amount( const itype_id &item_id ) const { - return me_chr->amount_of( item_id ); + return me_chr_const->amount_of( item_id ); } -int talker_character::cash() const +int talker_character_const::cash() const +{ + return me_chr_const->cash; +} + +std::vector talker_character_const::const_items_with( const + std::function + &filter ) const { - return me_chr->cash; + return me_chr_const->items_with( filter ); } std::vector talker_character::items_with( const std::function @@ -298,21 +312,21 @@ void talker_character::remove_items_with( const std::functionremove_items_with( filter ); } -bool talker_character::unarmed_attack() const +bool talker_character_const::unarmed_attack() const { - return me_chr->unarmed_attack(); + return me_chr_const->unarmed_attack(); } -bool talker_character::can_stash_weapon() const +bool talker_character_const::can_stash_weapon() const { - return me_chr->can_pickVolume( me_chr->get_wielded_item() ); + return me_chr_const->can_pickVolume( me_chr_const->get_wielded_item() ); } -bool talker_character::has_stolen_item( const talker &guy ) const +bool talker_character_const::has_stolen_item( const talker &guy ) const { const Character *owner = guy.get_character(); if( owner ) { - for( auto &elem : me_chr->inv_dump() ) { + for( auto &elem : me_chr_const->inv_dump() ) { if( elem->is_old_owner( *owner, true ) ) { return true; } @@ -321,44 +335,44 @@ bool talker_character::has_stolen_item( const talker &guy ) const return false; } -faction *talker_character::get_faction() const +faction *talker_character_const::get_faction() const { - return me_chr->get_faction(); + return me_chr_const->get_faction(); } -std::string talker_character::short_description() const +std::string talker_character_const::short_description() const { - return me_chr->short_description(); + return me_chr_const->short_description(); } -bool talker_character::has_activity() const +bool talker_character_const::has_activity() const { - return !me_chr->activity.is_null(); + return !me_chr_const->activity.is_null(); } -bool talker_character::is_mounted() const +bool talker_character_const::is_mounted() const { - return me_chr->is_mounted(); + return me_chr_const->is_mounted(); } -int talker_character::get_fatigue() const +int talker_character_const::get_fatigue() const { - return me_chr->get_fatigue(); + return me_chr_const->get_fatigue(); } -int talker_character::get_hunger() const +int talker_character_const::get_hunger() const { - return me_chr->get_hunger(); + return me_chr_const->get_hunger(); } -int talker_character::get_thirst() const +int talker_character_const::get_thirst() const { - return me_chr->get_thirst(); + return me_chr_const->get_thirst(); } -int talker_character::get_stored_kcal() const +int talker_character_const::get_stored_kcal() const { - return me_chr->get_stored_kcal(); + return me_chr_const->get_stored_kcal(); } void talker_character::set_stored_kcal( int value ) @@ -370,9 +384,9 @@ void talker_character::set_thirst( int value ) me_chr->set_thirst( value ); } -bool talker_character::is_in_control_of( const vehicle &veh ) const +bool talker_character_const::is_in_control_of( const vehicle &veh ) const { - return veh.player_in_control( *me_chr ); + return veh.player_in_control( *me_chr_const ); } void talker_character::shout( const std::string &speech, bool order ) @@ -380,9 +394,9 @@ void talker_character::shout( const std::string &speech, bool order ) me_chr->shout( speech, order ); } -int talker_character::pain_cur() const +int talker_character_const::pain_cur() const { - return me_chr->get_pain(); + return me_chr_const->get_pain(); } void talker_character::mod_pain( int amount ) @@ -390,34 +404,34 @@ void talker_character::mod_pain( int amount ) me_chr->mod_pain( amount ); } -bool talker_character::worn_with_flag( const flag_id &flag ) const +bool talker_character_const::worn_with_flag( const flag_id &flag ) const { - return me_chr->worn_with_flag( flag ); + return me_chr_const->worn_with_flag( flag ); } -bool talker_character::wielded_with_flag( const flag_id &flag ) const +bool talker_character_const::wielded_with_flag( const flag_id &flag ) const { - return me_chr->get_wielded_item().has_flag( flag ); + return me_chr_const->get_wielded_item().has_flag( flag ); } -units::energy talker_character::power_cur() const +units::energy talker_character_const::power_cur() const { - return me_chr->get_power_level(); + return me_chr_const->get_power_level(); } -units::energy talker_character::power_max() const +units::energy talker_character_const::power_max() const { - return me_chr->get_max_power_level(); + return me_chr_const->get_max_power_level(); } -int talker_character::mana_cur() const +int talker_character_const::mana_cur() const { - return me_chr->magic->available_mana(); + return me_chr_const->magic->available_mana(); } -int talker_character::mana_max() const +int talker_character_const::mana_max() const { - return me_chr->magic->max_mana( *me_chr ); + return me_chr_const->magic->max_mana( *me_chr_const ); } void talker_character::set_mana_cur( int value ) @@ -425,9 +439,10 @@ void talker_character::set_mana_cur( int value ) me_chr->magic->set_mana( value ); } -bool talker_character::can_see() const +bool talker_character_const::can_see() const { - return !me_chr->is_blind() && ( !me_chr->in_sleep_state() || me_chr->has_trait( trait_SEESLEEP ) ); + return !me_chr_const->is_blind() && ( !me_chr_const->in_sleep_state() || + me_chr_const->has_trait( trait_SEESLEEP ) ); } void talker_character::set_fatigue( int amount ) @@ -440,9 +455,9 @@ void talker_character::mod_healthy_mod( int amount, int cap ) me_chr->mod_healthy_mod( amount, cap ); } -int talker_character::morale_cur() const +int talker_character_const::morale_cur() const { - return me_chr->get_morale_level(); + return me_chr_const->get_morale_level(); } void talker_character::add_morale( const morale_type &new_morale, int bonus, int max_bonus, @@ -456,9 +471,9 @@ void talker_character::remove_morale( const morale_type &old_morale ) me_chr->rem_morale( old_morale ); } -int talker_character::focus_cur() const +int talker_character_const::focus_cur() const { - return me_chr->get_focus(); + return me_chr_const->get_focus(); } void talker_character::mod_focus( int amount ) @@ -471,14 +486,14 @@ void talker_character::set_rad( int amount ) me_chr->set_rad( amount ); } -int talker_character::get_rad() const +int talker_character_const::get_rad() const { - return me_chr->get_rad(); + return me_chr_const->get_rad(); } -int talker_character::get_stim() const +int talker_character_const::get_stim() const { - return me_chr->get_stim(); + return me_chr_const->get_stim(); } void talker_character::set_stim( int amount ) @@ -486,9 +501,9 @@ void talker_character::set_stim( int amount ) me_chr->set_stim( amount ); } -int talker_character::get_pkill() const +int talker_character_const::get_pkill() const { - return me_chr->get_painkiller(); + return me_chr_const->get_painkiller(); } void talker_character::set_pkill( int amount ) @@ -496,9 +511,9 @@ void talker_character::set_pkill( int amount ) me_chr->set_painkiller( amount ); } -int talker_character::get_stamina() const +int talker_character_const::get_stamina() const { - return me_chr->get_stamina(); + return me_chr_const->get_stamina(); } void talker_character::set_stamina( int amount ) @@ -506,9 +521,9 @@ void talker_character::set_stamina( int amount ) me_chr->set_stamina( amount ); } -int talker_character::get_sleep_deprivation() const +int talker_character_const::get_sleep_deprivation() const { - return me_chr->get_sleep_deprivation(); + return me_chr_const->get_sleep_deprivation(); } void talker_character::set_sleep_deprivation( int amount ) @@ -521,9 +536,9 @@ void talker_character::set_kill_xp( int amount ) me_chr->kill_xp = amount; } -int talker_character::get_kill_xp() const +int talker_character_const::get_kill_xp() const { - return me_chr->kill_xp; + return me_chr_const->kill_xp; } void talker_character::add_bionic( const bionic_id &new_bionic ) diff --git a/src/talker_character.h b/src/talker_character.h index 7be0dbd531a50..284fb8f35d678 100644 --- a/src/talker_character.h +++ b/src/talker_character.h @@ -7,6 +7,7 @@ #include #include +#include "character.h" #include "coordinates.h" #include "npc.h" #include "talker.h" @@ -15,36 +16,22 @@ class character_id; class faction; class item; -class Character; + class time_duration; class vehicle; struct tripoint; /* - * Talker wrapper class for Character. well, ideally, but since Character is such a mess, - * it's the wrapper class for player + * Talker wrapper class for const Character access. * Should never be invoked directly. Only talker_avatar and talker_npc are really valid. */ -class talker_character: public talker +class talker_character_const: public talker { public: - explicit talker_character( Character *new_me ): me_chr( new_me ) { + explicit talker_character_const( const Character *new_me ): me_chr_const( new_me ) { } - ~talker_character() override = default; + ~talker_character_const() override = default; - // underlying element accessor functions - Character *get_character() override { - return me_chr; - } - Character *get_character() const override { - return me_chr; - } - Creature *get_creature() override { - return me_chr; - } - Creature *get_creature() const override { - return me_chr; - } // identity and location std::string disp_name() const override; character_id getID() const override; @@ -55,7 +42,6 @@ class talker_character: public talker int posz() const override; tripoint pos() const override; tripoint_abs_omt global_omt_location() const override; - void set_pos( tripoint new_pos ) override; // stats, skills, traits, bionics, and magic int str_cur() const override; @@ -63,23 +49,15 @@ class talker_character: public talker int int_cur() const override; int per_cur() const override; int pain_cur() const override; - void set_str_max( int value ) override; - void set_dex_max( int value ) override; - void set_int_max( int value ) override; - void set_per_max( int value ) override; - int get_str_max() override; - int get_dex_max() override; - int get_int_max() override; - int get_per_max() override; + int get_str_max() const override; + int get_dex_max() const override; + int get_int_max() const override; + int get_per_max() const override; units::energy power_cur() const override; units::energy power_max() const override; - void set_power_cur( units::energy value ) override; int mana_cur() const override; int mana_max() const override; - void set_mana_cur( int value ) override; bool has_trait( const trait_id &trait_to_check ) const override; - void set_mutation( const trait_id &new_trait ) override; - void unset_mutation( const trait_id &old_trait ) override; bool has_trait_flag( const json_character_flag &trait_flag_to_check ) const override; bool crossed_threshold() const override; int num_bionics() const override; @@ -87,7 +65,6 @@ class talker_character: public talker bool has_bionic( const bionic_id &bionics_id ) const override; bool knows_spell( const spell_id &sp ) const override; int get_skill_level( const skill_id &skill ) const override; - void set_skill_level( const skill_id &skill, int value ) override; bool knows_proficiency( const proficiency_id &proficiency ) const override; // effects and values @@ -95,25 +72,17 @@ class talker_character: public talker effect get_effect( const efftype_id &effect_id, const bodypart_id &bp ) const override; bool is_deaf() const override; bool is_mute() const override; - void add_effect( const efftype_id &new_effect, const time_duration &dur, - std::string bp, bool permanent, bool force, int intensity ) override; - void remove_effect( const efftype_id &old_effect ) override; std::string get_value( const std::string &var_name ) const override; - void set_value( const std::string &var_name, const std::string &value ) override; - void remove_value( const std::string &var_name ) override; // inventory, buying, and selling bool is_wearing( const itype_id &item_id ) const override; int charges_of( const itype_id &item_id ) const override; bool has_charges( const itype_id &item_id, int count ) const override; - std::list use_charges( const itype_id &item_name, int count ) override; bool has_amount( const itype_id &item_id, int count ) const override; int get_amount( const itype_id &item_id ) const override; - std::list use_amount( const itype_id &item_name, int count ) override; int cash() const override; - std::vector items_with( const std::function &filter ) const override; - void i_add( const item &new_item ) override; - void remove_items_with( const std::function &filter ) override; + std::vector const_items_with( const std::function &filter ) + const override; bool unarmed_attack() const override; bool can_stash_weapon() const override; bool has_stolen_item( const talker &guy ) const override; @@ -129,38 +98,95 @@ class talker_character: public talker int get_hunger() const override; int get_thirst() const override; int get_stored_kcal() const override; + bool is_in_control_of( const vehicle &veh ) const override; + + + bool worn_with_flag( const flag_id &flag ) const override; + bool wielded_with_flag( const flag_id &flag ) const override; + + bool can_see() const override; + int morale_cur() const override; + int focus_cur() const override; + int get_rad() const override; + int get_stim() const override; + int get_pkill() const override; + int get_stamina() const override; + int get_sleep_deprivation() const override; + int get_kill_xp() const override; + protected: + talker_character_const() = default; + const Character *me_chr_const; +}; + +/* + * Talker wrapper class for mutable Character access. + * Should never be invoked directly. Only talker_avatar and talker_npc are really valid. + */ +class talker_character: public talker_character_const +{ + public: + explicit talker_character( Character *new_me ); + ~talker_character() override = default; + + // underlying element accessor functions + Character *get_character() override { + return me_chr; + } + const Character *get_character() const override { + return me_chr_const; + } + Creature *get_creature() override { + return me_chr; + } + const Creature *get_creature() const override { + return me_chr_const; + } + void set_pos( tripoint new_pos ) override; + + // stats, skills, traits, bionics, and magic + void set_str_max( int value ) override; + void set_dex_max( int value ) override; + void set_int_max( int value ) override; + void set_per_max( int value ) override; + void set_power_cur( units::energy value ) override; + void set_mana_cur( int value ) override; + void set_mutation( const trait_id &new_trait ) override; + void unset_mutation( const trait_id &old_trait ) override; + void set_skill_level( const skill_id &skill, int value ) override; + + void add_effect( const efftype_id &new_effect, const time_duration &dur, + std::string bp, bool permanent, bool force, int intensity ) override; + void remove_effect( const efftype_id &old_effect ) override; + void set_value( const std::string &var_name, const std::string &value ) override; + void remove_value( const std::string &var_name ) override; + + // inventory, buying, and selling + std::vector items_with( const std::function &filter ) const override; + std::list use_charges( const itype_id &item_name, int count ) override; + std::list use_amount( const itype_id &item_name, int count ) override; + void i_add( const item &new_item ) override; + void remove_items_with( const std::function &filter ) override; + void set_stored_kcal( int value ) override; void set_thirst( int value ) override; - bool is_in_control_of( const vehicle &veh ) const override; // speaking void shout( const std::string &speech = "", bool order = false ) override; - bool worn_with_flag( const flag_id &flag ) const override; - bool wielded_with_flag( const flag_id &flag ) const override; void set_fatigue( int amount ) override; void mod_pain( int amount ) override; - bool can_see() const override; void mod_healthy_mod( int, int ) override; - int morale_cur() const override; void add_morale( const morale_type &new_morale, int bonus, int max_bonus, time_duration duration, time_duration decay_started, bool capped ) override; void remove_morale( const morale_type &old_morale ) override; - int focus_cur() const override; void mod_focus( int ) override; void set_rad( int ) override; - int get_rad() const override; void set_stim( int ) override; - int get_stim() const override; void set_pkill( int ) override; - int get_pkill() const override; void set_stamina( int ) override; - int get_stamina() const override; void set_sleep_deprivation( int ) override; - int get_sleep_deprivation() const override; void set_kill_xp( int ) override; - int get_kill_xp() const override; void add_bionic( const bionic_id &new_bionic ) override; void remove_bionic( const bionic_id &old_bionic ) override; protected: diff --git a/src/talker_npc.cpp b/src/talker_npc.cpp index 85deabbcfaca5..5a2e64d8a8583 100644 --- a/src/talker_npc.cpp +++ b/src/talker_npc.cpp @@ -50,6 +50,13 @@ static const trait_id trait_DEBUG_MIND_CONTROL( "DEBUG_MIND_CONTROL" ); static const trait_id trait_PROF_FOODP( "PROF_FOODP" ); static const trait_id trait_SAPROVORE( "SAPROVORE" ); +talker_npc::talker_npc( npc *new_me ) +{ + me_npc = new_me; + me_chr = new_me; + me_chr_const = new_me; +} + std::string talker_npc::distance_to_goal() const { // TODO: this ignores the z-component diff --git a/src/talker_npc.h b/src/talker_npc.h index 522c2da7b5830..2791ec2b1e202 100644 --- a/src/talker_npc.h +++ b/src/talker_npc.h @@ -20,8 +20,7 @@ class talker; class talker_npc : public talker_character { public: - explicit talker_npc( npc *new_me ): talker_character( new_me ), me_npc( new_me ) { - } + explicit talker_npc( npc *new_me ); ~talker_npc() override = default; npc *get_npc() override { diff --git a/src/weakpoint.cpp b/src/weakpoint.cpp index 72058bc6fe626..87cdeb750234e 100644 --- a/src/weakpoint.cpp +++ b/src/weakpoint.cpp @@ -6,10 +6,13 @@ #include #include "assign.h" +#include "calendar.h" #include "character.h" #include "creature.h" #include "damage.h" #include "debug.h" +#include "effect_source.h" +#include "enums.h" #include "item.h" #include "messages.h" #include "monster.h" @@ -51,8 +54,67 @@ float Character::throw_weakpoint_skill() return skill + stat; } +weakpoint_effect::weakpoint_effect() : + chance( 100.0f ), + permanent( false ), + duration( 1, 1 ), + intensity( 0, 0 ), + damage_required( 0.0f, 100.0f ) {} + +void weakpoint_effect::apply_to( Creature &target, int total_damage, + const weakpoint_attack &attack ) const +{ + // Check if damage is within required bounds + float percent_hp = 100.0f * static_cast( total_damage ) / target.get_hp_max(); + percent_hp = std::min( 100.0f, percent_hp ); + if( percent_hp < damage_required.first || damage_required.second < percent_hp ) { + return; + } + // Roll for chance. + if( !( rng_float( 0.0f, 100.f ) < chance ) ) { + return; + } + target.add_effect( effect_source( attack.source ), effect, + time_duration::from_turns( rng( duration.first, duration.second ) ), + permanent, rng( intensity.first, intensity.second ) ); + + if( !message.empty() && attack.source != nullptr && attack.source->is_avatar() ) { + add_msg_if_player_sees( target, m_good, message, target.get_name() ); + } +} + +void weakpoint_effect::load( const JsonObject &jo ) +{ + assign( jo, "effect", effect ); + + if( jo.has_float( "chance" ) ) { + assign( jo, "chance", chance, false, 0.0f, 100.0f ); + } + if( jo.has_bool( "permanent" ) ) { + assign( jo, "permanent", permanent ); + } + if( jo.has_string( "message" ) ) { + assign( jo, "message", message ); + } + + // Support shorthand for a single value. + if( jo.has_int( "duration" ) ) { + int i = jo.get_int( "duration", 0 ); + duration = {i, i}; + } else if( jo.has_array( "duration" ) ) { + assign( jo, "duration", duration ); + } + if( jo.has_int( "intensity" ) ) { + int i = jo.get_int( "intensity", 0 ); + intensity = {i, i}; + } else if( jo.has_array( "intensity" ) ) { + assign( jo, "intensity", intensity ); + } +} + weakpoint_attack::weakpoint_attack() : source( nullptr ), + target( nullptr ), weapon( &null_item_reference() ), is_melee( false ), is_crit( false ), @@ -88,7 +150,16 @@ void weakpoint::load( const JsonObject &jo ) // Default to damage multiplier, if crit multipler is not specified. crit_mult = damage_mult; } - + if( jo.has_array( "required_effects" ) ) { + assign( jo, "required_effects", required_effects ); + } + if( jo.has_array( "effects" ) ) { + for( const JsonObject jo : jo.get_array( "effects" ) ) { + weakpoint_effect effect; + effect.load( jo ); + effects.push_back( std::move( effect ) ); + } + } // Set the ID to the name, if not provided. if( id.empty() ) { @@ -112,9 +183,21 @@ void weakpoint::apply_to( damage_instance &damage, bool is_crit ) const } } -float weakpoint::hit_chance( const weakpoint_attack & ) const +void weakpoint::apply_effects( Creature &target, int total_damage, + const weakpoint_attack &attack ) const { - // TODO: scale the hit chance based on the source's skill / stats + for( const auto &effect : effects ) { + effect.apply_to( target, total_damage, attack ); + } +} + +float weakpoint::hit_chance( const weakpoint_attack &attack ) const +{ + for( const auto &effect : required_effects ) { + if( !attack.target->has_effect( effect ) ) { + return 0.0f; + } + } return coverage; } diff --git a/src/weakpoint.h b/src/weakpoint.h index bb2609e5af20e..7bacb01501a7d 100644 --- a/src/weakpoint.h +++ b/src/weakpoint.h @@ -4,6 +4,7 @@ #include #include +#include #include #include "damage.h" @@ -17,22 +18,43 @@ class JsonObject; struct weakpoint_attack { // The source of the attack. const Creature *source; - + // The target of the attack. + const Creature *target; // The weapon used to make the attack. const item *weapon; - // Weather the attack is a melee attack. bool is_melee; - // Whether the attack a critical hit. bool is_crit; - // The Creature's skill in hitting weak points. float wp_skill; weakpoint_attack(); }; +// An effect that a weakpoint can cause. +struct weakpoint_effect { + // The type of the effect. + efftype_id effect; + // The percent chance of causing the effect. + float chance; + // Whether the effect is permanent. + bool permanent; + // The range of the durations (in turns) of the effect. + std::pair duration; + // The range of the intensities of the effect. + std::pair intensity; + // The range of damage, as a percentage of max health, required to the effect. + std::pair damage_required; + // The message to print, if the player causes the effect. + std::string message; + + weakpoint_effect(); + // Maybe apply an effect to the target. + void apply_to( Creature &target, int total_damage, const weakpoint_attack &attack ) const; + void load( const JsonObject &jo ); +}; + struct weakpoint { // ID of the weakpoint. Equal to the name, if not provided. std::string id; @@ -50,12 +72,17 @@ struct weakpoint { std::array( damage_type::NUM )>crit_mult; // Difficulty to hit the weak point. float difficulty = -10.0f; + // A list of required effects. + std::vector required_effects; + // A list of effects that may trigger by hitting this weak point. + std::vector effects; weakpoint(); // Apply the armor multipliers and offsets to a set of resistances. void apply_to( resistances &resistances ) const; // Apply the damage multiplers to a set of damage values. void apply_to( damage_instance &damage, bool is_crit ) const; + void apply_effects( Creature &target, int total_damage, const weakpoint_attack &attack ) const; // Return the change of the creature hitting the weakpoint. float hit_chance( const weakpoint_attack &attack ) const; void load( const JsonObject &jo ); @@ -75,4 +102,4 @@ struct weakpoints { void remove( const JsonArray &ja ); }; -#endif // CATA_SRC_WEAKPOINT_H \ No newline at end of file +#endif // CATA_SRC_WEAKPOINT_H diff --git a/src/weather_type.cpp b/src/weather_type.cpp index 05c5e1fd37388..77b08b91d6f1d 100644 --- a/src/weather_type.cpp +++ b/src/weather_type.cpp @@ -70,6 +70,8 @@ std::string enum_to_string( weather_sound_category data return "thunder"; case weather_sound_category::silent: return "silent"; + case weather_sound_category::portal_storm: + return "portal_storm"; case weather_sound_category::last: break; } diff --git a/src/weather_type.h b/src/weather_type.h index d6658cf5e2a9e..3980e89dbd657 100644 --- a/src/weather_type.h +++ b/src/weather_type.h @@ -58,6 +58,7 @@ enum weather_sound_category : int { flurries, snowstorm, snow, + portal_storm, last }; diff --git a/src/wish.cpp b/src/wish.cpp index f84be91c6faa0..6625c27eb889c 100644 --- a/src/wish.cpp +++ b/src/wish.cpp @@ -562,7 +562,7 @@ class wish_monster_callback: public uilist_callback if( valid_entnum ) { tmp.print_info( w_info, 2, 5, 1 ); - std::string header = string_format( "#%d: %s (%d)%s", entnum, tmp.type->nname(), + std::string header = string_format( "#%d: %s (%d)%s", entnum, tmp.type->id.str(), group, hallucination ? _( " (hallucination)" ) : "" ); mvwprintz( w_info, point( ( getmaxx( w_info ) - utf8_width( header ) ) / 2, 0 ), c_cyan, header ); } diff --git a/tests/cube_direction_test.cpp b/tests/cube_direction_test.cpp new file mode 100644 index 0000000000000..8a4edd47b66d8 --- /dev/null +++ b/tests/cube_direction_test.cpp @@ -0,0 +1,38 @@ +#include "cata_catch.h" +#include "cube_direction.h" +#include "omdata.h" + +TEST_CASE( "cube_direction_add_om_direction", "[cube_direction]" ) +{ + CHECK( cube_direction::north + om_direction::type::north == cube_direction::north ); + CHECK( cube_direction::north + om_direction::type::east == cube_direction::east ); + CHECK( cube_direction::north + om_direction::type::south == cube_direction::south ); + CHECK( cube_direction::north + om_direction::type::west == cube_direction::west ); + CHECK( cube_direction::east + om_direction::type::south == cube_direction::west ); + CHECK( cube_direction::south + om_direction::type::south == cube_direction::north ); + CHECK( cube_direction::west + om_direction::type::south == cube_direction::east ); +} + +TEST_CASE( "cube_direction_add_int", "[cube_direction]" ) +{ + CHECK( cube_direction::north + 0 == cube_direction::north ); + CHECK( cube_direction::north + 1 == cube_direction::east ); + CHECK( cube_direction::north + 2 == cube_direction::south ); + CHECK( cube_direction::north + 3 == cube_direction::west ); + CHECK( cube_direction::north + 4 == cube_direction::north ); + CHECK( cube_direction::east + 2 == cube_direction::west ); + CHECK( cube_direction::south + 2 == cube_direction::north ); + CHECK( cube_direction::west + 2 == cube_direction::east ); +} + +TEST_CASE( "cube_direction_subtract_int", "[cube_direction]" ) +{ + CHECK( cube_direction::north - 0 == cube_direction::north ); + CHECK( cube_direction::north - 1 == cube_direction::west ); + CHECK( cube_direction::north - 2 == cube_direction::south ); + CHECK( cube_direction::north - 3 == cube_direction::east ); + CHECK( cube_direction::north - 4 == cube_direction::north ); + CHECK( cube_direction::east - 2 == cube_direction::west ); + CHECK( cube_direction::south - 2 == cube_direction::north ); + CHECK( cube_direction::west - 2 == cube_direction::east ); +} diff --git a/tests/json_test.cpp b/tests/json_test.cpp index 6a7034010a2c9..92f5a0916a702 100644 --- a/tests/json_test.cpp +++ b/tests/json_test.cpp @@ -210,8 +210,6 @@ TEST_CASE( "serialize_map", "[json]" ) test_serialization( s_map, R"({"bar":"bar_val","foo":"foo_val"})" ); std::map string_id_map = { { mtype_id( "foo" ), "foo_val" } }; test_serialization( string_id_map, R"({"foo":"foo_val"})" ); - std::map enum_map = { { HUNGER, "foo_val" } }; - test_serialization( enum_map, R"({"HUNGER":"foo_val"})" ); } TEST_CASE( "serialize_pair", "[json]" ) @@ -236,8 +234,6 @@ TEST_CASE( "serialize_set", "[json]" ) test_serialization( s_set, R"(["bar","foo"])" ); std::set string_id_set = { mtype_id( "foo" ) }; test_serialization( string_id_set, R"(["foo"])" ); - std::set enum_set = { HUNGER }; - test_serialization( enum_set, string_format( R"([%d])", static_cast( HUNGER ) ) ); } template