diff --git a/Makefile b/Makefile
index b412fc32a505d..414e5d52f9ace 100644
--- a/Makefile
+++ b/Makefile
@@ -967,6 +967,8 @@ $(ODIR)/%.o: $(SRC_DIR)/%.cpp $(PCH_P)
$(ODIR)/%.o: $(SRC_DIR)/%.rc
$(RC) $(RFLAGS) $< -o $@
+$(ODIR)/resource.o: data/cataicon.ico data/application_manifest.xml
+
src/version.h: version
src/version.cpp: src/version.h
diff --git a/build-scripts/build.sh b/build-scripts/build.sh
index d23885e1d4c60..ca16077437ed9 100755
--- a/build-scripts/build.sh
+++ b/build-scripts/build.sh
@@ -12,6 +12,10 @@ num_jobs=3
export PATH=$HOME/.local/bin:$PATH
$COMPILER --version
+if [ -n "$CROSS_COMPILATION" ]
+then
+ "$CROSS_COMPILATION$COMPILER" --version
+fi
if [ -n "$TEST_STAGE" ]
then
diff --git a/build-scripts/requirements.sh b/build-scripts/requirements.sh
index 84b98290270ec..8c294746e689f 100644
--- a/build-scripts/requirements.sh
+++ b/build-scripts/requirements.sh
@@ -124,7 +124,7 @@ then
do
if [ -n "${!v}" ]
then
- printf "%s='%s'\n" "$v" "${!v}" >> "$GITHUB_ENV"
+ printf "%s=%s\n" "$v" "${!v}" >> "$GITHUB_ENV"
fi
done
fi
diff --git a/data/application_manifest.xml b/data/application_manifest.xml
new file mode 100644
index 0000000000000..07d043b30b4d4
--- /dev/null
+++ b/data/application_manifest.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+ UTF-8
+
+
+
+
+
+
+
+
diff --git a/data/json/effect_on_condition.json b/data/json/effect_on_condition.json
index 6ca98940339c5..1367552240751 100644
--- a/data/json/effect_on_condition.json
+++ b/data/json/effect_on_condition.json
@@ -133,16 +133,16 @@
{
"type": "effect_on_condition",
"id": "ambient_subway",
- "recurrence_min": "2 hours",
- "recurrence_max": "4 hours",
+ "recurrence_min": "1 hours",
+ "recurrence_max": "2 hours",
"condition": { "or": [ { "u_at_om_location": "subway_ns" }, { "u_at_om_location": "subway_ew" } ] },
- "effect": [ { "u_message": "AMBIENT_SUBWAY", "snippet": true, "sound": true } ]
+ "effect": [ { "u_message": "", "snippet": true, "sound": true } ]
},
{
"type": "effect_on_condition",
"id": "ambient_lab_subway",
- "recurrence_min": "2 hours",
- "recurrence_max": "4 hours",
+ "recurrence_min": "1 hours",
+ "recurrence_max": "2 hours",
"condition": { "or": [ { "u_at_om_location": "lab_subway_ns" }, { "u_at_om_location": "lab_subway_ew" } ] },
"effect": [ { "u_message": "AMBIENT_LAB_SUBWAY", "snippet": true, "sound": true } ]
},
diff --git a/data/json/furniture_and_terrain/furniture-industrial.json b/data/json/furniture_and_terrain/furniture-industrial.json
index 7c25fe4fc4bef..b39429c94744c 100644
--- a/data/json/furniture_and_terrain/furniture-industrial.json
+++ b/data/json/furniture_and_terrain/furniture-industrial.json
@@ -461,6 +461,37 @@
},
"deconstruct": { "items": [ { "item": "cable", "charges": [ 3, 4 ] } ] }
},
+ {
+ "type": "furniture",
+ "id": "f_electrical_conduit",
+ "name": "electrical conduit",
+ "looks_like": "t_sewer_pipe",
+ "description": "A thick bundle of electrical wiring protected by a metal conduit.",
+ "symbol": "|",
+ "color": "light_gray",
+ "move_cost_mod": 1,
+ "required_str": -1,
+ "flags": [ "TRANSPARENT", "NOCOLLIDE" ],
+ "bash": {
+ "str_min": 10,
+ "str_max": 100,
+ "sound": "smash!",
+ "sound_fail": "thunk!",
+ "items": [
+ { "item": "scrap", "count": [ 1, 4 ] },
+ { "item": "scrap_copper", "count": [ 10, 20 ] },
+ { "item": "cable", "charges": [ 20, 100 ] },
+ { "item": "pipe", "count": [ 1, 2 ] }
+ ]
+ },
+ "deconstruct": {
+ "items": [
+ { "item": "cable", "charges": [ 200, 800 ] },
+ { "item": "pipe_fittings", "count": [ 1, 2 ] },
+ { "item": "pipe", "count": [ 2, 4 ] }
+ ]
+ }
+ },
{
"type": "furniture",
"id": "f_capacitor",
diff --git a/data/json/furniture_and_terrain/furniture-roof.json b/data/json/furniture_and_terrain/furniture-roof.json
index b7b0f8372fe1e..78ade711a13b1 100644
--- a/data/json/furniture_and_terrain/furniture-roof.json
+++ b/data/json/furniture_and_terrain/furniture-roof.json
@@ -119,6 +119,33 @@
"items": [ { "item": "pipe", "count": [ 1, 2 ] }, { "item": "scrap", "count": [ 1, 3 ] } ]
}
},
+ {
+ "type": "furniture",
+ "id": "f_wind_vane",
+ "name": "wind vane",
+ "description": "A metal fin that swivels around a central pivot, indicating the direction of prevailing wind.",
+ "symbol": ">",
+ "color": "dark_gray",
+ "move_cost_mod": 2,
+ "coverage": 10,
+ "required_str": -1,
+ "flags": [ "TRANSPARENT" ],
+ "deconstruct": {
+ "items": [
+ { "item": "pipe", "count": 1 },
+ { "item": "pipe_fittings", "count": 1 },
+ { "item": "wire", "count": 4 },
+ { "item": "sheet_metal_small", "count": 2 }
+ ]
+ },
+ "bash": {
+ "str_min": 10,
+ "str_max": 15,
+ "sound": "whack!",
+ "sound_fail": "whump!",
+ "items": [ { "item": "scrap", "count": [ 1, 3 ] }, { "item": "sheet_metal_small", "count": [ 0, 1 ] } ]
+ }
+ },
{
"type": "furniture",
"id": "f_roof_turbine_vent",
diff --git a/data/json/furniture_and_terrain/terrain-floors-indoor.json b/data/json/furniture_and_terrain/terrain-floors-indoor.json
index aaa5c27b44936..56221006cd200 100644
--- a/data/json/furniture_and_terrain/terrain-floors-indoor.json
+++ b/data/json/furniture_and_terrain/terrain-floors-indoor.json
@@ -342,6 +342,29 @@
]
}
},
+ {
+ "type": "terrain",
+ "id": "t_broken_metal_floor",
+ "name": "broken metal floor",
+ "description": "Something has cratered this metal flooring. It will be difficult to move things across.",
+ "symbol": ".",
+ "color": "light_cyan",
+ "move_cost": 2,
+ "roof": "t_flat_roof",
+ "flags": [ "TRANSPARENT", "INDOORS" ],
+ "bash": {
+ "sound": "thump",
+ "ter_set": "t_null",
+ "str_min": 200,
+ "str_max": 500,
+ "str_min_supported": 200,
+ "items": [
+ { "item": "steel_lump", "count": [ 1, 4 ] },
+ { "item": "steel_chunk", "count": [ 3, 12 ] },
+ { "item": "scrap", "count": [ 9, 36 ] }
+ ]
+ }
+ },
{
"type": "terrain",
"id": "t_floor",
diff --git a/data/json/items/basecamp.json b/data/json/items/basecamp.json
index 404038bba36b1..dd0d20cfeadb7 100644
--- a/data/json/items/basecamp.json
+++ b/data/json/items/basecamp.json
@@ -7,7 +7,7 @@
"description": "A fake charcoal smoker used for basecamps.",
"sub": "char_smoker",
"ammo": [ "charcoal" ],
- "max_charges": 2000
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "charcoal": 2000 } } ]
},
{
"id": "fake_fireplace",
@@ -17,7 +17,7 @@
"description": "A fake fireplace used for basecamps.",
"sub": "hotplate",
"ammo": [ "tinder" ],
- "max_charges": 50000,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "tinder": 50000 } } ],
"charge_factor": 25
},
{
@@ -28,7 +28,7 @@
"description": "A fake forge used for basecamps.",
"sub": "char_forge",
"ammo": [ "charcoal" ],
- "max_charges": 2000
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "charcoal": 2000 } } ]
},
{
"id": "fake_char_kiln",
@@ -38,7 +38,7 @@
"description": "A fake kiln used for basecamps.",
"sub": "char_kiln",
"ammo": [ "charcoal" ],
- "max_charges": 2000
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "charcoal": 2000 } } ]
},
{
"id": "fake_stove",
@@ -48,7 +48,7 @@
"description": "A fake stove used for basecamps.",
"sub": "hotplate",
"ammo": [ "tinder" ],
- "max_charges": 50000,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "tinder": 50000 } } ],
"charge_factor": 10
},
{
diff --git a/data/json/items/obsolete.json b/data/json/items/obsolete.json
index 2670c3ea38152..b05c508a579bb 100644
--- a/data/json/items/obsolete.json
+++ b/data/json/items/obsolete.json
@@ -36,35 +36,40 @@
"type": "GENERIC",
"copy-from": "mre_smallbox",
"name": { "str": "MRE - Accessory Pack", "str_pl": "MREs - Accessory Packs" },
- "description": "An MRE accessory pack containing a variety of utensils and drinks. Activate or disassemble it to get to its contents."
+ "description": "An MRE accessory pack containing a variety of utensils and drinks. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_accessory_pack" }
},
{
"id": "mre_dessert",
"type": "GENERIC",
"copy-from": "mre_smallbox",
"name": { "str": "MRE - Dessert Pack", "str_pl": "MREs - Dessert Packs" },
- "description": "A sealed plastic bag containing an array of desserts. Activate or disassemble it to get to its contents."
+ "description": "A sealed plastic bag containing an array of desserts. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_dessert_pack" }
},
{
"id": "mre_chilibeans_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Chili & Beans", "str_pl": "MREs - Chili & Beans" },
- "description": "A 'Meal Ready to Eat' with a chili & beans entree and everything a vegetarian soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a chili & beans entree and everything a vegetarian soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_bbqbeef_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - BBQ Beef", "str_pl": "MREs - BBQ Beef" },
- "description": "A 'Meal Ready to Eat' with a BBQ beef entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a BBQ beef entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_chickennoodle_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Chicken & Noodles", "str_pl": "MREs - Chicken & Noodles" },
- "description": "A 'Meal Ready to Eat' with a chicken & noodles entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a chicken & noodles entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_spaghetti_box",
@@ -72,6 +77,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Spaghetti", "str_pl": "MREs - Spaghetti" },
"description": "A 'Meal Ready to Eat' with a spaghetti entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_veggy_box"
},
{
@@ -79,35 +85,40 @@
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Chicken Chunks", "str_pl": "MREs - Chicken Chunks" },
- "description": "A 'Meal Ready to Eat' with a chicken chunk entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a chicken chunk entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_beeftaco_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Beef Taco", "str_pl": "MREs - Beef Taco" },
- "description": "A 'Meal Ready to Eat' with a beef taco entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a beef taco entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_beef_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Beef Brisket", "str_pl": "MREs - Beef Brisket" },
- "description": "A 'Meal Ready to Eat' with a beef brisket entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a beef brisket entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_meatball_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Meatballs & Marinara", "str_pl": "MREs - Meatballs & Marinara" },
- "description": "A 'Meal Ready to Eat' with a meatball entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a meatball entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_beefstew_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Beef Stew", "str_pl": "MREs - Beef Stew" },
- "description": "A 'Meal Ready to Eat' with a beef stew entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a beef stew entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_chilimac_box",
@@ -115,6 +126,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Chili & Macaroni", "str_pl": "MREs - Chili & Macaroni" },
"description": "A 'Meal Ready to Eat' with a chili & macaroni entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_veggy_box"
},
{
@@ -122,7 +134,8 @@
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Vegetarian Taco", "str_pl": "MREs - Vegetarian Taco" },
- "description": "A 'Meal Ready to Eat' with a vegetarian taco entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a vegetarian taco entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_macaronimarinara_box",
@@ -130,6 +143,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Macaroni Marinara", "str_pl": "MREs - Macaroni Marinara" },
"description": "A 'Meal Ready to Eat' with a macaroni marinara entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_veggy_box"
},
{
@@ -138,6 +152,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Spinach Fettuccine", "str_pl": "MREs - Spinach Fettuccine" },
"description": "A 'Meal Ready to Eat' with a creamy spinach fettuccine entree and everything a vegetarian soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_veggy_box"
},
{
@@ -146,6 +161,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Ratatouille", "str_pl": "MREs - Ratatouille" },
"description": "A 'Meal Ready to Eat' with a ratatouille entree and everything a vegetarian soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_veggy_box"
},
{
@@ -154,6 +170,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Cheese Tortellini", "str_pl": "MREs - Cheese Tortellini" },
"description": "A 'Meal Ready to Eat' with a cheese tortellini entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_veggy_box"
},
{
@@ -162,6 +179,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Mushroom Fettuccine", "str_pl": "MREs - Mushroom Fettuccine" },
"description": "A 'Meal Ready to Eat' with a mushroom fettuccine entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_veggy_box"
},
{
@@ -170,6 +188,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Mexican Chicken Stew", "str_pl": "MREs - Mexican Chicken Stew" },
"description": "A 'Meal Ready to Eat' with a Mexican chicken stew entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"looks_like": "mre_beef_box"
},
{
@@ -177,63 +196,72 @@
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Chicken Burrito Bowl", "str_pl": "MREs - Chicken Burrito Bowl" },
- "description": "A 'Meal Ready to Eat' with a chicken burrito bowl entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a chicken burrito bowl entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_maplesausage_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Maple Sausage", "str_pl": "MREs - Maple Sausage" },
- "description": "A 'Meal Ready to Eat' with a maple sausage entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a maple sausage entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_ravioli_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Ravioli", "str_pl": "MREs - Ravioli" },
- "description": "A 'Meal Ready to Eat' with a ravioli entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a ravioli entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_pepperjackbeef_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Pepper Jack Beef", "str_pl": "MREs - Pepper Jack Beef" },
- "description": "A 'Meal Ready to Eat' with a pepper jack beef entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a pepper jack beef entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_hashbrownbacon_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Hash Browns & Bacon", "str_pl": "MREs - Hash Browns & Bacon" },
- "description": "A 'Meal Ready to Eat' with a hash browns & bacon entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a hash browns & bacon entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_lemontuna_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Lemon Pepper Tuna", "str_pl": "MREs - Lemon Pepper Tuna" },
- "description": "A 'Meal Ready to Eat' with a lemon pepper tuna entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a lemon pepper tuna entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_asianbeef_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Asian Beef & Vegetables", "str_pl": "MREs - Asian Beef & Vegetables" },
- "description": "A 'Meal Ready to Eat' with an Asian beef & vegetables entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with an Asian beef & vegetables entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_chickenpesto_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Chicken Pesto & Pasta", "str_pl": "MREs - Chicken Pesto & Pasta" },
- "description": "A 'Meal Ready to Eat' with a chicken pesto entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a chicken pesto entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_southwestbeef_box",
"type": "GENERIC",
"copy-from": "mre_box",
"name": { "str": "MRE - Southwest Beef & Beans", "str_pl": "MREs - Southwest Beef & Beans" },
- "description": "A 'Meal Ready to Eat' with a southwest beef & beans entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents."
+ "description": "A 'Meal Ready to Eat' with a southwest beef & beans entree and everything a hungry soldier needs. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" }
},
{
"id": "mre_hotdog_box",
@@ -241,6 +269,7 @@
"copy-from": "mre_box",
"name": { "str": "MRE - Frankfurters & Beans", "str_pl": "MREs - Frankfurters & Beans" },
"description": "A vintage MRE, still perfectly preserved and edible. The contents will begin to rot once they're removed from this sealed bag. Activate or disassemble it to get to its contents.",
+ "use_action": { "type": "unpack", "group": "mre_full_pack" },
"price": 1000
},
{
diff --git a/data/json/mapgen/basecamps/modular_farm/version_2/modular_farm_common.json b/data/json/mapgen/basecamps/modular_farm/version_2/modular_farm_common.json
new file mode 100644
index 0000000000000..32b3f89c501c4
--- /dev/null
+++ b/data/json/mapgen/basecamps/modular_farm/version_2/modular_farm_common.json
@@ -0,0 +1,183 @@
+[
+ {
+ "type": "palette",
+ "id": "fbmf_2_common_palette",
+ "terrain": {
+ "F": "t_splitrail_fence",
+ "g": "t_splitrail_fencegate_c",
+ "m": "t_dirtmound",
+ "p": "t_palisade",
+ "P": "t_palisade_pulley",
+ "G": "t_palisade_gate",
+ ";": "t_dirt"
+ },
+ "furniture": { }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "fbmf_2",
+ "object": {
+ "mapgensize": [ 24, 24 ],
+ "rows": [
+ ";;;;;;;;;;;;;;;;;;;; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ;; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ "; ; ",
+ "; ;;;;;;;;;;;;;;;; ; ",
+ ";;;;;;;;;;;;;;;;;;;; ",
+ " "
+ ],
+ "palettes": [ "fbmf_2_common_palette" ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "faction_base_farm_2_0",
+ "method": "json",
+ "object": { "place_nested": [ { "chunks": [ "fbmf_2" ], "x": 0, "y": 0 } ] }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_1",
+ "method": "json",
+ "object": { "set": [ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 21, "y2": 21 } ] }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_2",
+ "method": "json",
+ "object": { "set": [ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 1, "y2": 1 } ] }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_3",
+ "method": "json",
+ "object": {
+ "set": [
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 18, "y2": 18 },
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 19, "y2": 19 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_4",
+ "method": "json",
+ "object": {
+ "set": [
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 15, "y2": 15 },
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 16, "y2": 16 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_5",
+ "method": "json",
+ "object": {
+ "set": [
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 12, "y2": 12 },
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 13, "y2": 13 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_6",
+ "method": "json",
+ "object": {
+ "set": [
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 9, "y2": 9 },
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 10, "y2": 10 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_7",
+ "method": "json",
+ "object": {
+ "set": [
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 6, "y2": 6 },
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 7, "y2": 7 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_plot_8",
+ "method": "json",
+ "object": {
+ "set": [
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 3, "y2": 3 },
+ { "line": "terrain", "id": "t_dirtmound", "x": 2, "x2": 17, "y": 4, "y2": 4 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_fence_1",
+ "method": "json",
+ "object": { "set": [ { "line": "terrain", "id": "t_splitrail_fence", "x": 0, "x2": 0, "y": 0, "y2": 22 } ] }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_fence_2",
+ "method": "json",
+ "object": { "set": [ { "line": "terrain", "id": "t_splitrail_fence", "x": 1, "x2": 19, "y": 0, "y2": 0 } ] }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_fence_3",
+ "method": "json",
+ "object": {
+ "set": [
+ { "line": "terrain", "id": "t_splitrail_fence", "x": 1, "x2": 17, "y": 22, "y2": 22 },
+ { "point": "terrain", "id": "t_splitrail_fencegate_c", "x": 18, "y": 22 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_fence_4",
+ "method": "json",
+ "object": { "set": [ { "line": "terrain", "id": "t_splitrail_fence", "x": 19, "x2": 19, "y": 0, "y2": 13 } ] }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_gate",
+ "method": "json",
+ "object": {
+ "set": [
+ { "point": "terrain", "id": "t_palisade", "x": 19, "y": 14 },
+ { "line": "terrain", "id": "t_palisade_gate", "x": 19, "x2": 19, "y": 15, "y2": 21 },
+ { "point": "terrain", "id": "t_palisade", "x": 19, "y": 22 },
+ { "point": "terrain", "id": "t_palisade_pulley", "x": 18, "y": 14 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "update_mapgen_id": "fbmf_2_fence_5",
+ "method": "json",
+ "object": { "set": [ { "line": "terrain", "id": "t_splitrail_fence", "x": 19, "x2": 19, "y": 14, "y2": 22 } ] }
+ }
+]
diff --git a/data/json/mapgen/bugs/ants.json b/data/json/mapgen/bugs/ants.json
new file mode 100644
index 0000000000000..9f1475d8e57d7
--- /dev/null
+++ b/data/json/mapgen/bugs/ants.json
@@ -0,0 +1,614 @@
+[
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "anthill",
+ "object": {
+ "rows": [
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ------ ",
+ " -++++- ",
+ " -+<<+- ",
+ " -+<<+- ",
+ " -++++- ",
+ " ------ ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": {
+ " ": [ [ "t_region_groundcover_barren", 5 ], [ "t_region_groundcover", 3 ], [ "t_region_shrub", 1 ] ],
+ "<": "t_slope_down",
+ "+": "t_dirtmound",
+ "-": [ "t_dirtmound", "t_region_groundcover_barren" ]
+ }
+ }
+ },
+ {
+ "//": "walls of ant tunnel that can shift from side to side to make the tunnel wind",
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "ant_tunnel_bounds_h",
+ "object": {
+ "mapgensize": [ 14, 14 ],
+ "rows": [
+ "#### ####",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": { "#": "t_soil" }
+ }
+ },
+ {
+ "//": "walls of ant tunnel that can shift from side to side to make the tunnel wind",
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "ant_tunnel_bounds_h1",
+ "object": {
+ "mapgensize": [ 14, 14 ],
+ "rows": [
+ "#### ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": { "#": "t_soil" }
+ }
+ },
+ {
+ "//": "walls of ant tunnel that can shift from side to side to make the tunnel wind",
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "ant_tunnel_bounds_v",
+ "object": {
+ "mapgensize": [ 14, 14 ],
+ "rows": [
+ "# ",
+ "# ",
+ "# ",
+ "# ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ "# ",
+ "# ",
+ "# ",
+ "# "
+ ],
+ "terrain": { "#": "t_soil" }
+ }
+ },
+ {
+ "//": "walls of ant tunnel that can shift from side to side to make the tunnel wind",
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "ant_tunnel_bounds_v1",
+ "object": {
+ "mapgensize": [ 14, 14 ],
+ "rows": [
+ "# ",
+ "# ",
+ "# ",
+ "# ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": { "#": "t_soil" }
+ }
+ },
+ {
+ "//": "walls of ant tunnel that can shift from side to side to make the tunnel wind",
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "ant_tunnel_bounds_v2",
+ "object": {
+ "mapgensize": [ 14, 14 ],
+ "rows": [
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ "# ",
+ "# ",
+ "# ",
+ "# "
+ ],
+ "terrain": { "#": "t_soil" }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_straight",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######"
+ ],
+ "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 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_end",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################"
+ ],
+ "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 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_curved",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### ",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######"
+ ],
+ "terrain": { "#": "t_soil" },
+ "place_nested": [
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 7 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 8 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 9 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 10 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 11 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 12 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 13 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 14 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "x": [ 4, 6 ], "y": 15 },
+ { "chunks": [ "ant_tunnel_bounds_h1" ], "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 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 7 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 8 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 9 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 10 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 11 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 12 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 13 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 14 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 15 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 16 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 17 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 18 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 19 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 20 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 21 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 22 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 23 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_tee",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ "########################",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######"
+ ],
+ "terrain": { "#": "t_soil" },
+ "place_nested": [
+ { "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 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 0 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 1 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 2 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 3 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 4 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 5 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 6 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 7 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 8 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 9 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 10 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 11 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 12 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 13 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 14 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 15 },
+ { "chunks": [ "ant_tunnel_bounds_v1" ], "y": [ 4, 6 ], "x": 16 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 17 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 18 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 19 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 20 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 21 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 22 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 23 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_four_way",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "####### #######"
+ ],
+ "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": 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 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 0 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 1 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 2 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 3 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 4 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 5 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 6 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 17 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 18 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 19 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 20 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 21 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 22 },
+ { "chunks": [ "ant_tunnel_bounds_v" ], "y": [ 4, 6 ], "x": 23 }
+ ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_food",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "###### #######",
+ "####### #######",
+ "###### ######",
+ "###### #####",
+ "##### ####",
+ "#### #####",
+ "##### #####",
+ "#### ####",
+ "#### ####",
+ "### ###",
+ "### ####",
+ "#### ######",
+ "####### #####",
+ "######### ####",
+ "######## ######",
+ "####### ######",
+ "######## #####",
+ "########## ########",
+ "############ ##########",
+ "########################",
+ "########################"
+ ],
+ "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 }
+ ],
+ "items": { " ": { "item": "ant_food", "chance": 4 } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_larvae",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "###### #######",
+ "####### #######",
+ "###### ######",
+ "###### #####",
+ "##### ####",
+ "#### #####",
+ "##### #####",
+ "#### ####",
+ "#### ####",
+ "### ###",
+ "### ####",
+ "#### ######",
+ "####### #####",
+ "######### ####",
+ "######## ######",
+ "####### ######",
+ "######## #####",
+ "########## ########",
+ "############ ##########",
+ "########################",
+ "########################"
+ ],
+ "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 }
+ ],
+ "place_monster": [ { "monster": "mon_ant_larva", "x": [ 6, 17 ], "y": [ 6, 22 ], "repeat": 10 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "ants_queen",
+ "object": {
+ "fill_ter": "t_dirt_underground",
+ "rows": [
+ "####### #######",
+ "####### #######",
+ "####### #######",
+ "###### #######",
+ "####### #######",
+ "###### ######",
+ "###### #####",
+ "##### ####",
+ "#### #####",
+ "##### #####",
+ "#### ####",
+ "#### ####",
+ "### ###",
+ "### ####",
+ "#### ######",
+ "####### #####",
+ "######### ####",
+ "######## ######",
+ "####### ######",
+ "######## #####",
+ "########## ########",
+ "############ ##########",
+ "########################",
+ "########################"
+ ],
+ "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 }
+ ],
+ "place_monster": [ { "monster": "mon_ant_queen", "x": [ 6, 17 ], "y": [ 6, 22 ] } ]
+ }
+ }
+]
diff --git a/data/json/mapgen/faction_buildings.json b/data/json/mapgen/faction_buildings.json
index 051b7c25c071e..fa2962c782bff 100644
--- a/data/json/mapgen/faction_buildings.json
+++ b/data/json/mapgen/faction_buildings.json
@@ -2551,5 +2551,42 @@
],
"palettes": [ "acidia_camp_palette" ]
}
+ },
+ {
+ "type": "mapgen",
+ "om_terrain": [ "faction_base_farm_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/lab/lab_modular/lab_nests_modular/lab_nested_security.json b/data/json/mapgen/lab/lab_modular/lab_nests_modular/lab_nested_security.json
index b4c2f3a243999..4b88a5cf0086e 100644
--- a/data/json/mapgen/lab/lab_modular/lab_nests_modular/lab_nested_security.json
+++ b/data/json/mapgen/lab/lab_modular/lab_nests_modular/lab_nested_security.json
@@ -673,23 +673,23 @@
"mapgensize": [ 14, 14 ],
"rotation": [ 0, 3 ],
"rows": [
- "ɜ| | ",
+ "!| | ",
"|| | ",
"|| | ",
- "ɜ| | ",
+ "!| | ",
"|| | ",
"|| | ",
- "ɜ| | ",
+ "!| | ",
"|| | ",
"|| | ",
- "ɜ| | ",
+ "!| | ",
"|| | ",
"|| | ",
- "ɜ| | ",
+ "!| | ",
"|| | "
],
"palettes": [ "lab_common_palette", "lab_security_palette" ],
- "monster": { "ɜ": { "monster": "mon_turret_riot" } },
+ "monster": { "!": { "monster": "mon_turret_riot" } },
"place_nested": [
{
"chunks": [ [ "null", 30 ], [ "lab_security_sandbag_EW_1", 50 ], [ "lab_security_sandbag_EW_2", 50 ] ],
@@ -715,23 +715,23 @@
"mapgensize": [ 14, 14 ],
"rotation": [ 0, 3 ],
"rows": [
- " |ɜ ",
+ " |! ",
" || ",
" || ",
- " |ɜ ",
+ " |! ",
" || ",
" || ",
- " |ɜ ",
+ " |! ",
" || ",
" || ",
- " |ɜ ",
+ " |! ",
" || ",
" || ",
- " |ɜ ",
+ " |! ",
" || "
],
"palettes": [ "lab_common_palette", "lab_security_palette" ],
- "monster": { "ɜ": { "monster": "mon_turret_riot" } },
+ "monster": { "!": { "monster": "mon_turret_riot" } },
"place_nested": [
{
"chunks": [ [ "null", 30 ], [ "lab_security_sandbag_EW_1", 50 ], [ "lab_security_sandbag_EW_2", 50 ] ],
diff --git a/data/json/mapgen/wind_turbine.json b/data/json/mapgen/wind_turbine.json
new file mode 100644
index 0000000000000..6862e87efafc2
--- /dev/null
+++ b/data/json/mapgen/wind_turbine.json
@@ -0,0 +1,223 @@
+[
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "wind_turbine_ground",
+ "object": {
+ "fill_ter": "t_metal_floor_no_roof",
+ "rows": [
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " #X# ",
+ " ##-## ",
+ " #S-H# ",
+ " ##-## ",
+ " ### ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": {
+ " ": "t_region_groundcover",
+ "H": "t_ladder_up",
+ "-": "t_metal_floor_no_roof",
+ "#": "t_wall_metal",
+ "S": "t_switchgear_l",
+ "X": "t_door_metal_locked"
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "wind_turbine_pillar",
+ "object": {
+ "fill_ter": "t_open_air",
+ "rows": [
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ### ",
+ " ## ## ",
+ " #I H# ",
+ " ## ## ",
+ " ### ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": {
+ " ": "t_open_air",
+ "H": "t_ladder_up_down",
+ "=": "t_metal_floor_no_roof",
+ "I": "t_metal_floor_no_roof",
+ "#": "t_wall_metal"
+ },
+ "furniture": { "I": "f_electrical_conduit" }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "wind_turbine_pillar_platform",
+ "object": {
+ "fill_ter": "t_open_air",
+ "rows": [
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ### ",
+ " ##=## ",
+ " #I=H# ",
+ " ##=## ",
+ " ### ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": {
+ " ": "t_open_air",
+ "H": "t_ladder_up_down",
+ "=": "t_metal_floor_no_roof",
+ "I": "t_metal_floor_no_roof",
+ "#": "t_wall_metal"
+ },
+ "furniture": { "I": "f_electrical_conduit" }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "wind_turbine_nacelle",
+ "object": {
+ "fill_ter": "t_open_air",
+ "rows": [
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " + ",
+ " +++ ",
+ " ++|++ ",
+ " ++|++ ",
+ " ##|## ",
+ " #&& ",
+ " #I|H# ",
+ " #E|=# ",
+ " #&& ",
+ " #&& ",
+ " ##### ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": {
+ " ": "t_open_air",
+ "H": "t_ladder_up_down",
+ "+": "t_open_air",
+ "=": "t_metal_floor_no_roof",
+ "&": "t_metal_floor_no_roof",
+ "E": "t_metal_floor_no_roof",
+ "|": "t_metal_floor_no_roof",
+ "I": "t_metal_floor_no_roof",
+ "#": "t_wall_metal"
+ },
+ "furniture": {
+ "E": "f_machinery_electronic",
+ "I": "f_electrical_conduit",
+ "&": "f_generator_broken",
+ "+": "f_generator_broken",
+ "|": "f_machinery_heavy"
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": "wind_turbine_roof",
+ "object": {
+ "fill_ter": "t_open_air",
+ "rows": [
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " + ",
+ " +++ ",
+ " +++++ ",
+ " ===== ",
+ " ===== ",
+ " ===H= ",
+ " ===== ",
+ " ===== ",
+ " =>=?= ",
+ " ===== ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " ",
+ " "
+ ],
+ "terrain": {
+ " ": "t_open_air",
+ "H": "t_ladder_down",
+ "+": "t_open_air",
+ "=": "t_metal_floor_no_roof",
+ ">": "t_metal_floor_no_roof",
+ "?": "t_metal_floor_no_roof"
+ },
+ "furniture": { ">": "f_wind_vane", "?": "f_cellphone_booster" }
+ }
+ }
+]
diff --git a/data/json/martialarts_fictional.json b/data/json/martialarts_fictional.json
index c93b35fbaea4a..6295fa0353c15 100644
--- a/data/json/martialarts_fictional.json
+++ b/data/json/martialarts_fictional.json
@@ -300,7 +300,8 @@
"melee_allowed": true,
"unarmed_allowed": true,
"block_counter": true,
- "crit_ok": true
+ "crit_ok": true,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ]
},
{
"type": "technique",
@@ -527,7 +528,7 @@
"unarmed_allowed": true,
"block_counter": true,
"down_dur": 1,
- "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ]
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 }, { "stat": "damage", "type": "bash", "scale": 1.25 } ]
},
{
"type": "technique",
@@ -539,7 +540,7 @@
"block_counter": true,
"crit_tec": true,
"down_dur": 1,
- "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 2.0 } ]
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 }, { "stat": "damage", "type": "bash", "scale": 2.0 } ]
},
{
"type": "technique",
diff --git a/data/json/monsters/feral_humans.json b/data/json/monsters/feral_humans.json
index b0515f85f96ff..fc2f1e2edc547 100644
--- a/data/json/monsters/feral_humans.json
+++ b/data/json/monsters/feral_humans.json
@@ -35,9 +35,8 @@
"gun_type": "feral_human_thrown_rock",
"ammo_type": "rock",
"no_ammo_sound": "",
- "fake_skills": [ [ "gun", 2 ], [ "throw", 2 ] ],
- "fake_dex": 6,
- "fake_per": 6,
+ "fake_skills": [ [ "throw", 4 ] ],
+ "fake_str": 7,
"require_targeting_player": false,
"ranges": [ [ 2, 5, "DEFAULT" ] ],
"description": "The feral human throws a rock!"
diff --git a/data/json/monsters/fungus.json b/data/json/monsters/fungus.json
index f1abe5ebcf8d6..a5f4345fcf8a7 100644
--- a/data/json/monsters/fungus.json
+++ b/data/json/monsters/fungus.json
@@ -170,9 +170,8 @@
"cooldown": 5,
"move_cost": 150,
"gun_type": "feral_human_thrown_rock",
- "fake_skills": [ [ "gun", 2 ], [ "throw", 2 ] ],
- "fake_dex": 6,
- "fake_per": 6,
+ "fake_skills": [ [ "throw", 4 ] ],
+ "fake_str": 7,
"require_targeting_player": false,
"ranges": [ [ 2, 5, "DEFAULT" ] ],
"description": "The fungaloid shambler throws a rock!"
diff --git a/data/json/monsters/misc.json b/data/json/monsters/misc.json
index 8bad55003dff8..b1b3b60e45d67 100644
--- a/data/json/monsters/misc.json
+++ b/data/json/monsters/misc.json
@@ -25,7 +25,7 @@
"harvest": "exempt",
"death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." },
"regenerates": 50,
- "regeneration_modifers": [ [ "onfire", -5 ], [ "corroding", 5 ] ],
+ "regeneration_modifiers": [ [ "onfire", -5 ], [ "corroding", 5 ] ],
"flags": [ "IMMOBILE", "NOT_HALLUCINATION", "FILTHY" ]
},
{
diff --git a/data/json/npcs/godco/NPC_Chloe_Taylor_King.json b/data/json/npcs/godco/NPC_Chloe_Taylor_King.json
new file mode 100644
index 0000000000000..11aed1cf60d21
--- /dev/null
+++ b/data/json/npcs/godco/NPC_Chloe_Taylor_King.json
@@ -0,0 +1,173 @@
+[
+ {
+ "type": "npc",
+ "id": "godco_chloe",
+ "name_unique": "Chloe Taylor King",
+ "gender": "female",
+ "name_suffix": "member",
+ "class": "NC_godco_chloe",
+ "attitude": 0,
+ "mission": 7,
+ "chat": "TALK_GODCO_Chloe_1",
+ "faction": "gods_community"
+ },
+ {
+ "type": "npc_class",
+ "id": "NC_godco_chloe",
+ "name": { "str": "Member" },
+ "job_description": "I am a member of the New England Church Community.",
+ "common": false,
+ "bonus_str": { "rng": [ -3, -2 ] },
+ "bonus_dex": { "rng": [ 0, 2 ] },
+ "bonus_int": { "rng": [ -2, -2 ] },
+ "bonus_per": { "rng": [ 0, 2 ] },
+ "worn_override": "GODCO_chloe_worn",
+ "carry_override": "GODCO_chloe_carried",
+ "weapon_override": "GODCO_chloe_wield",
+ "traits": [ { "group": "NPC_starting_traits" }, { "group": "Skin_Any" }, { "trait": "hair_black_long" } ],
+ "skills": [
+ { "skill": "ALL", "level": { "mul": [ { "one_in": 3 }, { "sum": [ { "dice": [ 2, 2 ] }, { "rng": [ 0, -4 ] } ] } ] } },
+ { "skill": "melee", "bonus": 1 },
+ { "skill": "stabbing", "bonus": 1 }
+ ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_chloe_worn",
+ "subtype": "collection",
+ "entries": [
+ { "item": "sports_bra" },
+ { "item": "boxer_shorts" },
+ { "item": "socks" },
+ { "item": "tshirt_text" },
+ { "item": "skirt" },
+ { "item": "sneakers" },
+ { "item": "gloves_light" },
+ { "item": "knit_scarf" },
+ { "item": "holy_symbol_wood" },
+ { "item": "hat_knit", "prob": 50 },
+ { "item": "coat_rain" }
+ ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_chloe_carried",
+ "subtype": "collection",
+ "entries": [ { "item": "portable_game" }, { "item": "lemonlime" } ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_chloe_wield",
+ "subtype": "collection",
+ "entries": [ { "item": "knife_combat" } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": [
+ "TALK_GODCO_Chloe_2",
+ "TALK_GODCO_Chloe_Story",
+ "TALK_GODCO_Chloe_Mood",
+ "TALK_GODCO_Chloe_Help",
+ "TALK_GODCO_Chloe_Sonia",
+ "TALK_GODCO_Chloe_Knife"
+ ],
+ "responses": [
+ { "text": "What's your story?", "topic": "TALK_GODCO_Chloe_Story" },
+ { "text": "What's your take on the situation here?", "topic": "TALK_GODCO_Chloe_Mood" },
+ { "text": "Who takes care of you here?", "topic": "TALK_GODCO_Chloe_Help" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_1",
+ "dynamic_line": {
+ "u_has_var": "u_met_godco_chloe",
+ "type": "general",
+ "context": "meeting",
+ "value": "yes",
+ "yes": "Aw hey, it's you again.",
+ "no": "Oh… hi. I don't know you. My name's Chloe."
+ },
+ "responses": [
+ {
+ "text": "Nice to meet you, kid. What's up?",
+ "effect": { "u_add_var": "u_met_godco_chloe", "type": "general", "context": "meeting", "value": "yes" },
+ "condition": { "not": { "u_has_var": "u_met_godco_chloe", "type": "general", "context": "meeting", "value": "yes" } },
+ "topic": "TALK_GODCO_Chloe_2"
+ },
+ {
+ "text": "Hello, Chloe. What's up?",
+ "topic": "TALK_GODCO_Chloe_2",
+ "condition": { "u_has_var": "u_met_godco_chloe", "type": "general", "context": "meeting", "value": "yes" }
+ },
+ { "text": "Hi, Chloe. I can't stay to talk.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_2",
+ "dynamic_line": "Things suck right now, but you know that anyway. I don't even know why you bother asking these stupid questions.",
+ "responses": [ { "text": "I'd better get going.", "topic": "TALK_DONE" } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_Story",
+ "dynamic_line": "You're creepy. I'm sorry for your lack of friends but, like, I'm literally a kid. Everyone on Earth turned into a zombie, we're running out of toilet paper and everything, and my parents are gone. I know they're still alive and they're looking for me. I miss them. Is that enough personal stuff for you?",
+ "responses": [
+ { "text": "I'm sorry for your loss. What were you saying before?", "topic": "TALK_GODCO_Chloe_Loss" },
+ { "text": "I'm sorry for your loss. I'd better get going.", "topic": "TALK_GODCO_Chloe_Loss" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_Loss",
+ "dynamic_line": "They are not dead.",
+ "responses": [ { "text": "…", "topic": "TALK_DONE" } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_Mood",
+ "dynamic_line": "I told you already: it sucks. Nobody's happy here, everyone's hungry, Sonia's songs are getting repetitive, and turns out, the boogeyman is friggin' real. We can hear it screaming every night.",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_Help",
+ "dynamic_line": "I'm not a baby, you know? I don't need a babysitter. Sonia looks out for me though. She's not so weird, I guess. She promised to give me guitar lessons and she even signed me an autograph. I know she's only nice to me because I saved her, but that's okay; we're equal now.",
+ "responses": [
+ {
+ "text": "Saving Sonia sounds like an interesting story; can you tell me what happened?",
+ "topic": "TALK_GODCO_Chloe_Sonia"
+ },
+ { "text": "Aren't you a bit too young to be carrying a knife?", "topic": "TALK_GODCO_Chloe_Knife" },
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_Sonia",
+ "dynamic_line": "I was home alone during the ongoing riots. My parents chose the worst possible time to reconnect, which sucks, but I'm also kinda happy for them. Anyway, they were part of the NECC people, so they knew about this place and their plans and all. Thing is, it was, like, really far away. I kinda didn't want to go alone but I also didn't want the rioters to eat me, so I asked Sonia - my neighbor - to evacuate with me, I guess. So that was fun; escaping my hometown, walking down the country road, waiting for a horror to ambush us. Spoiler alert: we were attacked. So this zombie shambles in front of us and Sonia whacks it real hard with her guitar! Its brain splatters all over the pavement, and it was super cool, but I also vomited because it was really disgusting. We got here soon after that. My parents weren't here, obviously. Oh man, they must worry about me so much…",
+ "responses": [
+ { "text": "Aren't you a bit too young to be carrying a knife?", "topic": "TALK_GODCO_Chloe_Knife" },
+ { "text": "Thanks for telling me that. What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "Thanks for telling me that. I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Chloe_Knife",
+ "dynamic_line": "Aren't you a bit too old not to realize how dangerous the world is for a kid like me? I know how to handle one without hurting myself! My dad taught me everything, he's a real pro.",
+ "responses": [
+ {
+ "text": "Saving Sonia sounds like an interesting story; can you tell me what happened?",
+ "topic": "TALK_GODCO_Chloe_Sonia"
+ },
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ }
+]
diff --git a/data/json/npcs/godco/NPC_Sonia_Greene.json b/data/json/npcs/godco/NPC_Sonia_Greene.json
new file mode 100644
index 0000000000000..344db104f1003
--- /dev/null
+++ b/data/json/npcs/godco/NPC_Sonia_Greene.json
@@ -0,0 +1,163 @@
+[
+ {
+ "type": "npc",
+ "id": "godco_sonia",
+ "name_unique": "Sonia Greene",
+ "name_suffix": "joinee",
+ "gender": "female",
+ "class": "NC_godco_sonia",
+ "attitude": 0,
+ "mission": 7,
+ "chat": "TALK_GODCO_Sonia_1",
+ "faction": "gods_community"
+ },
+ {
+ "type": "npc_class",
+ "id": "NC_godco_sonia",
+ "name": { "str": "Joinee" },
+ "job_description": "I'm just trying to survive.",
+ "common": false,
+ "bonus_str": { "rng": [ -3, -1 ] },
+ "bonus_dex": { "rng": [ -1, 1 ] },
+ "bonus_int": { "rng": [ -2, 2 ] },
+ "bonus_per": { "rng": [ 0, 1 ] },
+ "worn_override": "GODCO_sonia_worn",
+ "carry_override": "GODCO_sonia_carried",
+ "weapon_override": "GODCO_sonia_wield",
+ "traits": [
+ { "trait": "PRETTY" },
+ { "trait": "PACIFIST" },
+ { "group": "NPC_starting_traits" },
+ { "trait": "SKIN_LIGHT" },
+ { "trait": "hair_blond_long" }
+ ],
+ "skills": [ { "skill": "speech", "bonus": { "rng": [ 3, 4 ] } }, { "bonus": 1, "skill": "bashing" } ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_sonia_worn",
+ "subtype": "collection",
+ "entries": [
+ { "item": "socks" },
+ { "item": "sneakers" },
+ { "item": "briefs" },
+ { "item": "bra" },
+ { "item": "tshirt_tour" },
+ { "item": "pants_cargo" },
+ { "item": "leather_belt" },
+ { "item": "trenchcoat_leather" },
+ { "item": "wristwatch" },
+ { "item": "bead_bracelet" }
+ ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_sonia_carried",
+ "subtype": "collection",
+ "entries": [ { "item": "smart_phone", "ammo-item": "battery", "charges": 120 }, { "group": "snacks", "count": [ 1, 2 ] } ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_sonia_wield",
+ "subtype": "collection",
+ "entries": [ { "item": "acoustic_guitar", "damage": 1 } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": [
+ "TALK_GODCO_Sonia_2",
+ "TALK_GODCO_Sonia_Guitar",
+ "TALK_GODCO_Sonia_Story",
+ "TALK_GODCO_Sonia_Story1",
+ "TALK_GODCO_Sonia_Mood",
+ "TALK_GODCO_Sonia_Firstmeet",
+ "TALK_GODCO_Sonia_Community"
+ ],
+ "responses": [
+ { "text": "So, how did you get here?", "topic": "TALK_GODCO_Sonia_Story" },
+ { "text": "How are things, living here?", "topic": "TALK_GODCO_Sonia_Mood" },
+ { "text": "Are the non-joinees treating you fairly?", "topic": "TALK_GODCO_Sonia_Community" },
+ { "text": "That's a nice guitar you have.", "topic": "TALK_GODCO_Sonia_Guitar" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Sonia_1",
+ "dynamic_line": {
+ "u_has_var": "u_met_godco_sonia",
+ "type": "general",
+ "context": "meeting",
+ "value": "yes",
+ "yes": "Well now, good to see you again, friend.",
+ "no": "Good to see people like you in the world. I'm Sonia, Sonia Greene. I entertain the people."
+ },
+ "responses": [
+ {
+ "text": "Sonia, hey? Nice to meet you. How are things here?",
+ "effect": { "u_add_var": "u_met_godco_sonia", "type": "general", "context": "meeting", "value": "yes" },
+ "condition": { "not": { "u_has_var": "u_met_godco_sonia", "type": "general", "context": "meeting", "value": "yes" } },
+ "topic": "TALK_GODCO_Sonia_Mood"
+ },
+ {
+ "text": "Hey, Sonia. What's up?",
+ "condition": { "u_has_var": "u_met_godco_sonia", "type": "general", "context": "meeting", "value": "yes" },
+ "topic": "TALK_GODCO_Sonia_2"
+ },
+ { "text": "Hey, Sonia. I can't stay to talk.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Sonia_2",
+ "dynamic_line": [
+ "Just playing some good ol' tunes. There's so much negativity around here, someone's gotta cheer the people up, you know?"
+ ],
+ "responses": [ { "text": "I'd better get going.", "topic": "TALK_DONE" } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Sonia_Guitar",
+ "dynamic_line": "You are damn right. I like its scars, makes it look like it has a history, you know? We've been through a lot, him and I. Those pesky forced me to inflict harm on my sweet, sweet guitar. But I retaliated, and bashed their head in! I lost a part of me that day, yeah. The guitar's all right, thank you very much. Just a bit rusted from all that blood and gore.",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Sonia_Story",
+ "dynamic_line": "Now that's a wild, wild story. I owe my life to this kid, Chloe, really. I'll let her tell the tale.",
+ "responses": [
+ { "text": "What did you do before ?", "topic": "TALK_GODCO_Sonia_Story1" },
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Sonia_Story1",
+ "dynamic_line": "I was in an underground band - Taurists was our name - before all this. Performing gigs at local venues, jamming with my friends; that's all my life was about. Now, I'm a badass soloist with a war-torn guitar, a singer of the old-world, preserving the wonders of music and the Taurist legacy for generations to come. That's also a synonym for not having all that much going on in my life, yeah.",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Sonia_Mood",
+ "dynamic_line": "Oh, you know, just fine. A bit malnourished and all, but I can't really complain if that's the worst of it, right? My guitar makes our twisted little world a bit more tolerable, though. Takes my mind off stuff, muffles the screams of the boogeyman, you know?",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Sonia_Community",
+ "dynamic_line": "Fairly? There's no such thing as fairness in the world. The NECC wouldn't give a damn if I starved to death on this very bench. At least I have friends here, ones that appreciate what I do. I make music. That's all I have left, and it means everything to me.",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ }
+]
diff --git a/data/json/npcs/godco/NPC_Zachary_Montes.json b/data/json/npcs/godco/NPC_Zachary_Montes.json
new file mode 100644
index 0000000000000..2dea3193c6d93
--- /dev/null
+++ b/data/json/npcs/godco/NPC_Zachary_Montes.json
@@ -0,0 +1,179 @@
+[
+ {
+ "type": "npc",
+ "id": "godco_zachary",
+ "name_unique": "Zachary Montes",
+ "name_suffix": "joinee",
+ "gender": "male",
+ "class": "NC_godco_zachary",
+ "attitude": 0,
+ "mission": 7,
+ "chat": "TALK_GODCO_Zachary_1",
+ "faction": "gods_community"
+ },
+ {
+ "type": "npc_class",
+ "id": "NC_godco_zachary",
+ "name": { "str": "Joinee" },
+ "job_description": "I'm just trying to survive.",
+ "common": false,
+ "bonus_str": { "rng": [ 0, 2 ] },
+ "bonus_dex": { "rng": [ 0, 2 ] },
+ "bonus_int": { "rng": [ -1, 1 ] },
+ "bonus_per": { "rng": [ -1, 1 ] },
+ "worn_override": "GODCO_zachary_worn",
+ "carry_override": "GODCO_zachary_carried",
+ "weapon_override": "GODCO_zachary_wield",
+ "proficiencies": [ "prof_carpentry_basic", "prof_carving" ],
+ "traits": [ { "group": "NPC_starting_traits" }, { "group": "Appearance_demographics" }, { "trait": "FACIAL_HAIR_BEARD" } ],
+ "skills": [
+ { "bonus": 1, "skill": "melee" },
+ { "bonus": 2, "skill": "cutting" },
+ { "bonus": 2, "skill": "survival" },
+ { "bonus": 3, "skill": "bashing" },
+ { "bonus": 4, "skill": "fabrication" }
+ ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_zachary_worn",
+ "subtype": "collection",
+ "entries": [
+ { "item": "socks" },
+ { "item": "boots" },
+ { "item": "boxer_shorts" },
+ { "item": "jeans" },
+ { "item": "undershirt" },
+ { "item": "leather_belt" },
+ { "item": "gloves_work" },
+ { "item": "gold_ear" },
+ { "item": "hat_hard_hooded" }
+ ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_zachary_carried",
+ "subtype": "collection",
+ "entries": [ { "item": "nail" }, { "item": "hammer" } ]
+ },
+ {
+ "type": "item_group",
+ "id": "GODCO_zachary_wield",
+ "subtype": "collection",
+ "entries": [ { "item": "fire_ax" } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": [
+ "TALK_GODCO_Zachary_2",
+ "TALK_GODCO_Zachary_Story",
+ "TALK_GODCO_Zachary_Mood",
+ "TALK_GODCO_Zachary_Result_rewardIcon",
+ "TALK_GODCO_Zachary_Result_rewardRation",
+ "TALK_GODCO_Zachary_Community",
+ "TALK_GODCO_Zachary_Firstmeet",
+ "TALK_GODCO_Zachary_Story1"
+ ],
+ "responses": [
+ { "text": "So, how did you get here?", "topic": "TALK_GODCO_Zachary_Story" },
+ { "text": "How are things, living here?", "topic": "TALK_GODCO_Zachary_Mood" },
+ { "text": "Are the non-joinees treating you fairly?", "topic": "TALK_GODCO_Zachary_Community" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_1",
+ "dynamic_line": "I got my rights to be here, chum. Squatter's rights!",
+ "responses": [
+ {
+ "text": "Don't worry, I'm not going to hurt you.",
+ "effect": { "u_add_var": "u_met_godco_zachary", "type": "general", "context": "meeting", "value": "yes" },
+ "condition": { "not": { "u_has_var": "u_met_godco_zachary", "type": "general", "context": "meeting", "value": "yes" } },
+ "topic": "TALK_GODCO_Zachary_Firstmeet"
+ },
+ {
+ "text": "Hey, good to see you're still around.",
+ "condition": { "u_has_var": "u_met_godco_zachary", "type": "general", "context": "meeting", "value": "yes" },
+ "topic": "TALK_GODCO_Zachary_2"
+ },
+ { "text": "…", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_Firstmeet",
+ "dynamic_line": "I got here first, therefore this place belongs to me. Them's the rules in the Cataclysm.",
+ "responses": [ { "text": "Now that's an archaic belief. I'll see you around.", "topic": "TALK_DONE" } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_2",
+ "dynamic_line": [ "I ain't leaving, bruv. Not until that eldritch screechin' nightmare is dead 'n buried." ],
+ "responses": [ { "text": "I'll see you around then.", "topic": "TALK_DONE" } ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_Story",
+ "dynamic_line": "That ain't the point here, chum. Don'tcha get it? This was MY territory, but they took it away from me. Now they think of us as nothin' but a goddamn nuisance.",
+ "responses": [
+ { "text": "What did you do before ?", "topic": "TALK_GODCO_Zachary_Story1" },
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_Story1",
+ "dynamic_line": "Who I was is gone, dead… died when I put down the monsters wearing the face of my friends. Ever since then, I've felt nothing but disgust for myself. Let's not fuckin' reminisce.",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_Community",
+ "dynamic_line": "They are nice people, lettin' us crash here 'n all. I got friends here. We may not be members but we belong here. We'll fight together if they ever try to kick us out.",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_Mood",
+ "dynamic_line": "It ain't so bad. I got shelter, heat, and people to defend me if any shuffles its way here. If I want to eat then I'll be doin' construction work from dusk till dawn.",
+ "responses": [
+ {
+ "text": "How have things changed after that deal with Helena?",
+ "topic": "TALK_GODCO_Zachary_Result_rewardIcon",
+ "condition": { "u_has_var": "godco_machine_reward", "type": "mission", "context": "reward", "value": "icon" }
+ },
+ {
+ "text": "How have things changed after that deal with Helena?",
+ "topic": "TALK_GODCO_Zachary_Result_rewardRation",
+ "condition": { "u_has_var": "godco_machine_reward", "type": "mission", "context": "reward", "value": "ration" }
+ },
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_Result_rewardRation",
+ "dynamic_line": "Food is the only thing a starving man needs. Thanks for the help, bruv.",
+ "responses": [
+ { "text": "What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "I'd better get going.", "topic": "TALK_DONE" }
+ ]
+ },
+ {
+ "type": "talk_topic",
+ "id": "TALK_GODCO_Zachary_Result_rewardIcon",
+ "dynamic_line": "Ha ha ha! Think before you speak, chum. Eight icons for an honest day's work. The system's broken!",
+ "responses": [
+ { "text": "Sorry to hear that. What were you saying before?", "topic": "TALK_NONE" },
+ { "text": "No rest for the weary…", "topic": "TALK_DONE" }
+ ]
+ }
+]
diff --git a/data/json/npcs/missiondef.json b/data/json/npcs/missiondef.json
index cbf973cbc98c2..2de8f66ec2fdd 100644
--- a/data/json/npcs/missiondef.json
+++ b/data/json/npcs/missiondef.json
@@ -9,23 +9,23 @@
"start": {
"effect": [ "follow", { "u_buy_item": "sarcophagus_access_code" } ],
"assign_mission_target": {
- "om_terrain": "haz_sar_1_1",
+ "om_terrain": "haz_sar_b_4",
"om_special": "Hazardous Waste Sarcophagus",
- "reveal_radius": 3,
+ "reveal_radius": 1,
"search_range": 240,
"min_distance": 60
}
},
"origins": [ "ORIGIN_SECONDARY" ],
- "destination": "haz_sar_b_1",
+ "destination": "haz_sar_b_4",
"dialogue": {
"describe": "You wouldn't believe what I found…",
"offer": "Holy hell, the crash you recovered the black box from wasn't as old as I thought. Check this out, it was on its approach to pick up a team sent to secure and destroy something called a 'Hazardous Waste Sarcophagus' in the middle of nowhere. If the bird never picked up the team then we may still have a chance to meet up with them. It includes an access code for the elevator and an encoded message for the team leader, I guess. If we want to join up with what remains of the government then now may be our only chance.",
"accepted": "Fuck ya, America!",
"rejected": "Are you going to forfeit your duty when the country needs you the most?",
"advice": "If there is a military team down there then we better go in prepared if we want to impress them. Carry as much ammo as you can and prepare to ditch this place if they have a second bird coming to pick them up.",
- "inquire": "Having any trouble following the map?",
- "success": "We got this shit!",
+ "inquire": "Having any trouble following the map? Remember to search underground.",
+ "success": "Maybe these things are what remains of the team we were searching for…",
"success_lie": "What?! I out'ta whip your ass.",
"failure": "Damn, we were so close."
}
@@ -663,7 +663,7 @@
"id": "MISSION_RECRUIT_TRACKER",
"type": "mission_definition",
"name": { "str": "Recruit Tracker" },
- "goal": "MGOAL_RECRUIT_NPC_CLASS",
+ "goal": "MGOAL_RECRUIT_NPC",
"difficulty": 5,
"value": 70000,
"start": {
diff --git a/data/json/obsolete_terrains.json b/data/json/obsolete_terrains.json
index 5d1ba2c8cb28b..86354178d18c9 100644
--- a/data/json/obsolete_terrains.json
+++ b/data/json/obsolete_terrains.json
@@ -1,6 +1,22 @@
[
{
"type": "obsolete_terrain",
- "terrains": [ "triffid_grove", "triffid_roots", "triffid_finale", "mine_entrance", "mine_shaft", "spiral", "spiral_hub" ]
+ "terrains": [
+ "triffid_grove",
+ "triffid_roots",
+ "triffid_finale",
+ "mine_entrance",
+ "mine_shaft",
+ "spiral",
+ "spiral_hub",
+ "anthill",
+ "acid_anthill",
+ "ants_food",
+ "ants_food",
+ "ants_larvae",
+ "ants_larvae_acid",
+ "ants_queen",
+ "ants_queen_acid"
+ ]
}
]
diff --git a/data/json/overmap/overmap_mutable/anthill.json b/data/json/overmap/overmap_mutable/anthill.json
index e1490a975333b..f0d7c382fe278 100644
--- a/data/json/overmap/overmap_mutable/anthill.json
+++ b/data/json/overmap/overmap_mutable/anthill.json
@@ -1,13 +1,25 @@
[
+ {
+ "type": "overmap_special",
+ "id": "Anthill",
+ "occurrences": [ 0, 0 ],
+ "overmaps": [ ]
+ },
+ {
+ "type": "overmap_special",
+ "id": "Acid Anthill",
+ "occurrences": [ 0, 0 ],
+ "overmaps": [ ]
+ },
{
"type": "overmap_special",
"id": "anthill",
"subtype": "mutable",
"locations": [ "subterranean_empty" ],
- "city_distance": [ 25, -1 ],
- "city_sizes": [ 0, 20 ],
- "occurrences": [ 0, 1 ],
- "flags": [ "CLASSIC", "WILDERNESS" ],
+ "city_distance": [ 10, -1 ],
+ "occurrences": [ 80, 100 ],
+ "flags": [ "ANT", "UNIQUE", "CLASSIC", "WILDERNESS" ],
+ "spawns": { "group": "GROUP_ANT_SURFACE", "population": [ 1000, 2000 ], "radius": [ 10, 30 ] },
"check_for_locations": [
[ [ 0, 0, 0 ], [ "land" ] ],
[ [ 0, 0, -1 ], [ "subterranean_empty" ] ],
@@ -18,7 +30,7 @@
],
"joins": [ "surface_to_tunnel", "tunnel_to_tunnel" ],
"overmaps": {
- "surface": { "overmap": "anthill", "below": "surface_to_tunnel", "locations": [ "land" ] },
+ "surface": { "overmap": "anthill_north", "below": "surface_to_tunnel", "locations": [ "land" ] },
"below_entrance": {
"overmap": "ants_nesw",
"above": "surface_to_tunnel",
@@ -38,9 +50,9 @@
"straight_tunnel": { "overmap": "ants_ns", "north": "tunnel_to_tunnel", "south": "tunnel_to_tunnel" },
"corner": { "overmap": "ants_ne", "north": "tunnel_to_tunnel", "east": "tunnel_to_tunnel" },
"dead_end": { "overmap": "ants_end_south", "north": "tunnel_to_tunnel" },
- "queen": { "overmap": "ants_queen", "north": "tunnel_to_tunnel" },
- "larvae": { "overmap": "ants_larvae", "north": "tunnel_to_tunnel" },
- "food": { "overmap": "ants_food", "north": "tunnel_to_tunnel" }
+ "queen": { "overmap": "ants_queen_north", "north": "tunnel_to_tunnel" },
+ "larvae": { "overmap": "ants_larvae_north", "north": "tunnel_to_tunnel" },
+ "food": { "overmap": "ants_food_north", "north": "tunnel_to_tunnel" }
},
"root": "surface",
"phases": [
diff --git a/data/json/overmap/overmap_special/specials.json b/data/json/overmap/overmap_special/specials.json
index 003d9da7f078f..027dbeea79cf6 100644
--- a/data/json/overmap/overmap_special/specials.json
+++ b/data/json/overmap/overmap_special/specials.json
@@ -697,7 +697,7 @@
{
"type": "overmap_special",
"id": "Lab with Anthill",
- "overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "lab_stairs" }, { "point": [ 3, 1, 0 ], "overmap": "anthill" } ],
+ "overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "lab_stairs" }, { "point": [ 3, 1, 0 ], "overmap": "anthill_north" } ],
"connections": [ { "point": [ 0, -1, 0 ], "terrain": "road" } ],
"locations": [ "wilderness" ],
"city_distance": [ 10, -1 ],
@@ -911,6 +911,27 @@
"occurrences": [ 0, 4 ],
"flags": [ "CLASSIC", "WILDERNESS" ]
},
+ {
+ "type": "overmap_special",
+ "id": "Wind Turbine",
+ "overmaps": [
+ { "point": [ 0, 0, 0 ], "overmap": "wind_turbine_ground_north" },
+ { "point": [ 0, 0, 1 ], "overmap": "wind_turbine_pillar_north" },
+ { "point": [ 0, 0, 2 ], "overmap": "wind_turbine_pillar_north" },
+ { "point": [ 0, 0, 3 ], "overmap": "wind_turbine_pillar_platform_north" },
+ { "point": [ 0, 0, 4 ], "overmap": "wind_turbine_pillar_north" },
+ { "point": [ 0, 0, 5 ], "overmap": "wind_turbine_pillar_north" },
+ { "point": [ 0, 0, 6 ], "overmap": "wind_turbine_pillar_north" },
+ { "point": [ 0, 0, 7 ], "overmap": "wind_turbine_pillar_platform_north" },
+ { "point": [ 0, 0, 8 ], "overmap": "wind_turbine_nacelle_north" },
+ { "point": [ 0, 0, 9 ], "overmap": "wind_turbine_roof_north" }
+ ],
+ "connections": [ { "point": [ 0, -1, 0 ], "terrain": "road", "connection": "local_road", "from": [ 0, 0, 0 ] } ],
+ "locations": [ "field" ],
+ "city_distance": [ 10, 40 ],
+ "occurrences": [ 0, 4 ],
+ "flags": [ "CLASSIC", "WILDERNESS" ]
+ },
{
"type": "overmap_special",
"id": "Wasp Tower",
@@ -1209,28 +1230,6 @@
"occurrences": [ 0, 2 ],
"flags": [ "WILDERNESS" ]
},
- {
- "type": "overmap_special",
- "id": "Anthill",
- "overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "anthill" } ],
- "locations": [ "wilderness" ],
- "city_distance": [ 10, -1 ],
- "occurrences": [ 80, 100 ],
- "flags": [ "ANT", "UNIQUE" ],
- "rotate": false,
- "spawns": { "group": "GROUP_ANT_SURFACE", "population": [ 1000, 2000 ], "radius": [ 10, 30 ] }
- },
- {
- "type": "overmap_special",
- "id": "Acid Anthill",
- "overmaps": [ { "point": [ 0, 0, 0 ], "overmap": "acid_anthill" } ],
- "locations": [ "wilderness" ],
- "city_distance": [ 10, -1 ],
- "occurrences": [ 80, 100 ],
- "flags": [ "ANT", "UNIQUE" ],
- "rotate": false,
- "spawns": { "group": "GROUP_ANT_ACID", "population": [ 800, 1600 ], "radius": [ 10, 30 ] }
- },
{
"type": "overmap_special",
"id": "Spider Pit",
diff --git a/data/json/overmap/overmap_terrain/overmap_terrain.json b/data/json/overmap/overmap_terrain/overmap_terrain.json
index 23f586983f36f..476ad4361b54e 100644
--- a/data/json/overmap/overmap_terrain/overmap_terrain.json
+++ b/data/json/overmap/overmap_terrain/overmap_terrain.json
@@ -36,6 +36,7 @@
"id": "deep_rock",
"//": "Ugly placeholder solution to differentiate between subway tunnels, remove if per-special connection subtyping is implemented.",
"name": "solid rock",
+ "looks_like": "empty_rock",
"sym": "%",
"color": "dark_gray",
"see_cost": 5,
@@ -362,6 +363,20 @@
"mondensity": 2,
"spawns": { "group": "GROUP_WASP_GUARD", "population": [ 3, 8 ], "chance": 100 }
},
+ {
+ "type": "overmap_terrain",
+ "id": [ "wind_turbine_ground", "wind_turbine_pillar", "wind_turbine_pillar_platform", "wind_turbine_roof" ],
+ "name": "wind turbine",
+ "sym": "o",
+ "color": "light_gray"
+ },
+ {
+ "type": "overmap_terrain",
+ "id": [ "wind_turbine_nacelle" ],
+ "name": "wind turbine",
+ "sym": "Y",
+ "color": "white"
+ },
{
"type": "overmap_terrain",
"id": [ "bandit_camp_1", "bandit_camp_2", "bandit_camp_3", "bandit_camp_4" ],
@@ -667,6 +682,7 @@
"type": "overmap_terrain",
"id": "airliner_2c_-1",
"name": "solid rock",
+ "looks_like": "empty_rock",
"sym": "%",
"color": "dark_gray",
"see_cost": 5
diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_ants.json b/data/json/overmap/overmap_terrain/overmap_terrain_ants.json
new file mode 100644
index 0000000000000..747032b7be1e4
--- /dev/null
+++ b/data/json/overmap/overmap_terrain/overmap_terrain_ants.json
@@ -0,0 +1,43 @@
+[
+ {
+ "type": "overmap_terrain",
+ "id": "anthill",
+ "name": "anthill",
+ "sym": "%",
+ "color": "brown",
+ "see_cost": 2,
+ "flags": [ "KNOWN_DOWN", "RISK_HIGH" ]
+ },
+ {
+ "type": "overmap_terrain",
+ "id": "ants_food",
+ "name": "ant food storage",
+ "sym": "O",
+ "color": "green",
+ "see_cost": 5,
+ "spawns": { "group": "GROUP_ANT", "population": [ 6, 10 ], "chance": 100 }
+ },
+ {
+ "type": "overmap_terrain",
+ "id": "ants_larvae",
+ "copy-from": "ants_food",
+ "name": "ant larva chamber",
+ "color": "white"
+ },
+ {
+ "type": "overmap_terrain",
+ "id": "ants_queen",
+ "copy-from": "ants_food",
+ "name": "ant queen chamber",
+ "color": "red"
+ },
+ {
+ "type": "overmap_terrain",
+ "id": "ants",
+ "name": "ant tunnel",
+ "color": "brown",
+ "see_cost": 5,
+ "spawns": { "group": "GROUP_ANT", "population": [ 4, 6 ], "chance": 100 },
+ "flags": [ "LINEAR" ]
+ }
+]
diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_evac_center.json b/data/json/overmap/overmap_terrain/overmap_terrain_evac_center.json
index c9f05abc1ad63..a38b898a1eaed 100644
--- a/data/json/overmap/overmap_terrain/overmap_terrain_evac_center.json
+++ b/data/json/overmap/overmap_terrain/overmap_terrain_evac_center.json
@@ -11,6 +11,7 @@
"abstract": "generic_evac_center_road",
"copy-from": "generic_evac_center",
"name": "road",
+ "looks_like": "road",
"color": "dark_gray"
},
{
@@ -89,6 +90,7 @@
"abstract": "generic_refctr",
"see_cost": 2,
"name": "field",
+ "looks_like": "field",
"sym": ".",
"color": "brown"
},
@@ -761,6 +763,7 @@
"type": "overmap_terrain",
"abstract": "generic_rc_earth",
"name": "solid earth",
+ "looks_like": "solid_earth",
"sym": "#",
"color": "brown",
"see_cost": 5
@@ -769,6 +772,7 @@
"type": "overmap_terrain",
"abstract": "generic_rc_underground",
"name": "solid rock",
+ "looks_like": "empty_rock",
"sym": "%",
"color": "dark_gray",
"see_cost": 5
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 ff3e8ce0b8258..7fce0da03e43d 100644
--- a/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json
+++ b/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json
@@ -190,6 +190,14 @@
"color": "i_green",
"delete": { "flags": [ "SOURCE_PEOPLE" ] }
},
+ {
+ "type": "overmap_terrain",
+ "id": "faction_base_farm_2_0",
+ "copy-from": "faction_base_camp_0",
+ "name": "farm survey_2",
+ "color": "i_brown",
+ "delete": { "flags": [ "SOURCE_PEOPLE" ] }
+ },
{
"type": "overmap_terrain",
"id": "faction_base_helipad_garage_0",
diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json b/data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json
index 9d3c0426891f7..4fe366595c918 100644
--- a/data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json
+++ b/data/json/overmap/overmap_terrain/overmap_terrain_hardcoded.json
@@ -152,6 +152,7 @@
"type": "overmap_terrain",
"id": "cave_rat_underground",
"name": "rat cave",
+ "looks_like": "cave_underground",
"sym": "C",
"color": "brown",
"see_cost": 2,
@@ -161,6 +162,7 @@
"type": "overmap_terrain",
"id": "cave_rat",
"name": "rat cave",
+ "looks_like": "cave",
"sym": "C",
"color": "dark_gray",
"see_cost": 2,
@@ -188,29 +190,12 @@
"type": "overmap_terrain",
"id": "spider_pit_under",
"name": "cavern",
+ "looks_like": "cave_underground",
"sym": "0",
"color": "light_gray",
"see_cost": 5,
"flags": [ "NO_ROTATE" ]
},
- {
- "type": "overmap_terrain",
- "id": "anthill",
- "name": "anthill",
- "sym": "%",
- "color": "brown",
- "see_cost": 2,
- "flags": [ "KNOWN_DOWN", "NO_ROTATE", "RISK_HIGH" ]
- },
- {
- "type": "overmap_terrain",
- "id": "acid_anthill",
- "name": "sulfurous anthill",
- "sym": "%",
- "color": "green",
- "see_cost": 2,
- "flags": [ "KNOWN_DOWN", "NO_ROTATE", "RISK_HIGH" ]
- },
{
"type": "overmap_terrain",
"id": "slimepit",
@@ -233,6 +218,7 @@
"type": "overmap_terrain",
"id": "cavern",
"name": "cavern",
+ "looks_like": "cave",
"sym": "0",
"color": "light_gray",
"see_cost": 5,
@@ -243,6 +229,7 @@
"id": "rock",
"//": "This is old rock type, new one (below) will replace it in new overmaps",
"name": "solid rock",
+ "looks_like": "empty_rock",
"sym": "%",
"color": "dark_gray",
"see_cost": 5,
@@ -275,41 +262,6 @@
"see_cost": 2,
"flags": [ "KNOWN_DOWN", "NO_ROTATE", "RISK_HIGH" ]
},
- {
- "type": "overmap_terrain",
- "id": "ants",
- "name": "ant tunnel",
- "color": "brown",
- "see_cost": 5,
- "flags": [ "LINEAR" ]
- },
- {
- "type": "overmap_terrain",
- "id": "ants_food",
- "name": "ant food storage",
- "sym": "O",
- "color": "green",
- "see_cost": 5,
- "flags": [ "NO_ROTATE" ]
- },
- {
- "type": "overmap_terrain",
- "id": [ "ants_larvae", "ants_larvae_acid" ],
- "name": "ant larva chamber",
- "sym": "O",
- "color": "white",
- "see_cost": 5,
- "flags": [ "NO_ROTATE" ]
- },
- {
- "type": "overmap_terrain",
- "id": [ "ants_queen", "ants_queen_acid" ],
- "name": "ant queen chamber",
- "sym": "O",
- "color": "red",
- "see_cost": 5,
- "flags": [ "NO_ROTATE" ]
- },
{
"type": "overmap_terrain",
"id": "tutorial",
diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_lab.json b/data/json/overmap/overmap_terrain/overmap_terrain_lab.json
index 4db52ebc0e98b..179a22cc95685 100644
--- a/data/json/overmap/overmap_terrain/overmap_terrain_lab.json
+++ b/data/json/overmap/overmap_terrain/overmap_terrain_lab.json
@@ -277,6 +277,7 @@
"lab_surface_brick_basementE4"
],
"name": "solid earth",
+ "looks_like": "solid_earth",
"sym": "#",
"color": "brown",
"see_cost": 5
diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json b/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json
index ed96bee77eab9..392cf01b1ee35 100644
--- a/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json
+++ b/data/json/overmap/overmap_terrain/overmap_terrain_microlab.json
@@ -13,6 +13,7 @@
"type": "overmap_terrain",
"id": "microlab_rock_border",
"name": "solid rock",
+ "looks_like": "empty_rock",
"sym": "%",
"color": "dark_gray",
"see_cost": 5,
diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json b/data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json
index acbaaccb2315e..fee8fb4f7f774 100644
--- a/data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json
+++ b/data/json/overmap/overmap_terrain/overmap_terrain_necropolis.json
@@ -356,6 +356,7 @@
],
"copy-from": "generic_necropolis_underground",
"name": "solid earth",
+ "looks_like": "solid_earth",
"sym": "#",
"color": "brown"
},
@@ -374,6 +375,7 @@
],
"copy-from": "generic_necropolis_underground",
"name": "solid rock",
+ "looks_like": "empty_rock",
"sym": "%",
"color": "dark_gray"
},
diff --git a/data/json/professions.json b/data/json/professions.json
index 3749d6e991a32..2007497107231 100644
--- a/data/json/professions.json
+++ b/data/json/professions.json
@@ -4021,5 +4021,41 @@
"female": [ "sports_bra", "boy_shorts" ]
},
"traits": [ "LIAR" ]
+ },
+ {
+ "type": "profession",
+ "id": "mafia_boss",
+ "name": "Mafia boss",
+ "description": "Born into poverty, you joined one of the organized crime families to make a living. There, you quickly made it to the top and became the boss. The government was building a RICO case against you, but the doomsday arrived first. Your crew is gone, but your past life prepared you for a world where violence is common currency.",
+ "points": 5,
+ "skills": [
+ { "level": 2, "name": "pistol" },
+ { "level": 2, "name": "smg" },
+ { "level": 2, "name": "unarmed" },
+ { "level": 4, "name": "speech" }
+ ],
+ "items": {
+ "both": {
+ "items": [
+ "tux",
+ "fedora",
+ "pants",
+ "socks",
+ "dress_shoes",
+ "gold_watch",
+ "diamond_ring",
+ "cigar",
+ "gold_bracelet",
+ "knuckle_brass"
+ ],
+ "entries": [
+ { "item": "deagle_44", "ammo-item": "44fmj", "container-item": "holster", "charges": 8 },
+ { "item": "deaglemag", "ammo-item": "44fmj", "charges": 8, "count": 2 }
+ ]
+ },
+ "male": [ "boxer_shorts" ],
+ "female": [ "bra", "panties" ]
+ },
+ "traits": [ "LIAR" ]
}
]
diff --git a/data/json/recipes/basecamps/fbmc_radio_tower/recipe_modular_radio_tower_common.json b/data/json/recipes/basecamps/fbmc_radio_tower/recipe_modular_radio_tower_common.json
index 687c5ee648007..06b23a5a36fd9 100644
--- a/data/json/recipes/basecamps/fbmc_radio_tower/recipe_modular_radio_tower_common.json
+++ b/data/json/recipes/basecamps/fbmc_radio_tower/recipe_modular_radio_tower_common.json
@@ -59,7 +59,7 @@
"never_learn": true,
"construction_blueprint": "fbmc_radio_tower_root_cellar",
"blueprint_name": "root cellar",
- "blueprint_provides": [ { "id": "pantry" }, { "id": "fbmc_radio_tower_root_cellar" } ],
+ "blueprint_provides": [ { "id": "pantry" }, { "id": "trapping" }, { "id": "fbmc_radio_tower_root_cellar" } ],
"blueprint_requires": [ { "id": "bed", "amount": 4 }, { "id": "fbmc_radio_tower" } ],
"blueprint_excludes": [ { "id": "fbmc_radio_tower_root_cellar" } ]
},
@@ -73,7 +73,7 @@
"never_learn": true,
"construction_blueprint": "fbmc_radio_tower_water_well",
"blueprint_name": "water well",
- "blueprint_provides": [ { "id": "fbmc_radio_tower_water_well" } ],
+ "blueprint_provides": [ { "id": "relaying" }, { "id": "fbmc_radio_tower_water_well" } ],
"blueprint_requires": [ { "id": "bed", "amount": 4 }, { "id": "fbmc_radio_tower" } ],
"blueprint_excludes": [ { "id": "fbmc_radio_tower_water_well" } ]
},
@@ -88,7 +88,13 @@
"construction_blueprint": "fbmc_radio_tower_fix_controls",
"blueprint_name": "fix radio tower and controls",
"blueprint_requires": [ { "id": "fbmc_radio_tower_water_well" }, { "id": "fbmc_radio_tower_root_cellar" } ],
- "blueprint_provides": [ { "id": "fbmc_radio_tower_fix_controls" }, { "id": "recruiting" }, { "id": "radio" } ],
+ "blueprint_provides": [
+ { "id": "fbmc_radio_tower_fix_controls" },
+ { "id": "recruiting" },
+ { "id": "scouting" },
+ { "id": "patrolling" },
+ { "id": "radio" }
+ ],
"blueprint_excludes": [ { "id": "fbmc_radio_tower_fix_controls" } ],
"blueprint_needs": {
"time": "10 h",
@@ -156,7 +162,7 @@
"autolearn": false,
"never_learn": true,
"construction_blueprint": "fbmc_radio_tower_0_palisade",
- "blueprint_provides": [ { "id": "fbmc_radio_tower_0_palisade" }, { "id": "fbmc_radio_tower_palisade" } ],
+ "blueprint_provides": [ { "id": "fbmc_radio_tower_0_palisade" }, { "id": "fbmc_radio_tower_palisade" }, { "id": "walls" } ],
"blueprint_requires": [ { "id": "fbmc_radio_tower_0_prepalisade" } ],
"blueprint_excludes": [ { "id": "fbmc_radio_tower_palisade" } ],
"blueprint_name": "build palisade"
@@ -170,7 +176,7 @@
"autolearn": false,
"never_learn": true,
"construction_blueprint": "fbmc_radio_tower_1_palisade",
- "blueprint_provides": [ { "id": "fbmc_radio_tower_1_palisade" }, { "id": "fbmc_radio_tower_palisade" } ],
+ "blueprint_provides": [ { "id": "fbmc_radio_tower_1_palisade" }, { "id": "fbmc_radio_tower_palisade" }, { "id": "walls" } ],
"blueprint_requires": [ { "id": "fbmc_radio_tower_1_prepalisade" } ],
"blueprint_excludes": [ { "id": "fbmc_radio_tower_palisade" } ],
"blueprint_name": "build palisade"
diff --git a/data/json/recipes/basecamps/recipe_groups.json b/data/json/recipes/basecamps/recipe_groups.json
index 75976c7ee4681..4c68c73162f1c 100644
--- a/data/json/recipes/basecamps/recipe_groups.json
+++ b/data/json/recipes/basecamps/recipe_groups.json
@@ -99,7 +99,16 @@
"id": "all_faction_base_expansions",
"building_type": "NONE",
"recipes": [
- { "id": "faction_base_farm_0", "description": "Farm", "om_terrains": [ "field" ] },
+ {
+ "id": "faction_base_farm_0",
+ "description": "Farm version 1. Shed, plots, some farming recipes",
+ "om_terrains": [ "field" ]
+ },
+ {
+ "id": "faction_base_farm_2_0",
+ "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_canteen_0", "description": "Canteen", "om_terrains": [ "field" ] },
{ "id": "faction_base_livestock_0", "description": "Livestock Area", "om_terrains": [ "field" ] },
diff --git a/data/json/recipes/basecamps/recipe_modular_canteen/recipe_modular_canteen_rammed_earth.json b/data/json/recipes/basecamps/recipe_modular_canteen/recipe_modular_canteen_rammed_earth.json
index f05c44a9b0b87..36bf874289ee2 100644
--- a/data/json/recipes/basecamps/recipe_modular_canteen/recipe_modular_canteen_rammed_earth.json
+++ b/data/json/recipes/basecamps/recipe_modular_canteen/recipe_modular_canteen_rammed_earth.json
@@ -12,30 +12,7 @@
"blueprint_name": "build the rammed earth central kitchen room",
"blueprint_requires": [ { "id": "fbmk_0" } ],
"blueprint_provides": [ { "id": "fbmk_center" } ],
- "blueprint_excludes": [ { "id": "fbmk_center" } ],
- "blueprint_needs": {
- "time": "2 d 5 h 45 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 151 ] ],
- [ [ "nail", 334 ] ],
- [ [ "pointy_stick", 12 ], [ "spear_wood", 12 ] ],
- [ [ "material_soil", 1440 ] ],
- [ [ "water", 600 ], [ "water_clean", 600 ] ],
- [ [ "material_sand", 120 ], [ "material_quicklime", 120 ], [ "concrete", 6 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "wood_panel", 11 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmk_center" } ]
},
{
"type": "recipe",
@@ -50,30 +27,7 @@
"blueprint_name": "finish the rammed earth central kitchen room",
"blueprint_requires": [ { "id": "fbmk_center" } ],
"blueprint_provides": [ { "id": "fbmk_center2" } ],
- "blueprint_excludes": [ { "id": "fbmk_center2" } ],
- "blueprint_needs": {
- "time": "3 d 4 h 30 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 179 ] ],
- [ [ "nail", 398 ] ],
- [ [ "pointy_stick", 18 ], [ "spear_wood", 18 ] ],
- [ [ "material_soil", 2160 ] ],
- [ [ "water", 900 ], [ "water_clean", 900 ] ],
- [ [ "material_sand", 180 ], [ "material_quicklime", 180 ], [ "concrete", 9 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "wood_panel", 16 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmk_center2" } ]
},
{
"type": "recipe",
@@ -88,24 +42,7 @@
"blueprint_name": "build a rammed earth roofed area for smoking racks",
"blueprint_requires": [ { "id": "fbmk_center2" } ],
"blueprint_provides": [ { "id": "fbmk_smoking_area" } ],
- "blueprint_excludes": [ { "id": "fbmk_smoking_area" } ],
- "blueprint_needs": {
- "time": "2 d 11 h 55 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 12 ], [ "spear_wood", 12 ] ],
- [ [ "2x4", 180 ] ],
- [ [ "nail", 448 ] ],
- [ [ "material_soil", 1440 ] ],
- [ [ "water", 600 ], [ "water_clean", 600 ] ],
- [ [ "material_sand", 120 ], [ "material_quicklime", 120 ], [ "concrete", 6 ] ],
- [ [ "wood_panel", 22 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmk_smoking_area" } ]
},
{
"type": "recipe",
@@ -120,24 +57,7 @@
"blueprint_name": "build a rammed earth pantry",
"blueprint_requires": [ { "id": "fbmk_center2" } ],
"blueprint_provides": [ { "id": "fbmk_pantry_room" } ],
- "blueprint_excludes": [ { "id": "fbmk_pantry_room" } ],
- "blueprint_needs": {
- "time": "5 d 1 h 15 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 230 ] ],
- [ [ "concrete", 15 ], [ "material_quicklime", 300 ], [ "material_sand", 300 ] ],
- [ [ "material_soil", 3600 ] ],
- [ [ "nail", 560 ] ],
- [ [ "pointy_stick", 30 ], [ "spear_wood", 30 ] ],
- [ [ "water", 1500 ], [ "water_clean", 1500 ] ],
- [ [ "wood_panel", 25 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmk_pantry_room" } ]
},
{
"type": "recipe",
@@ -152,34 +72,7 @@
"blueprint_name": "build W rammed earth wall",
"blueprint_requires": [ { "id": "fbmk_pantry_room" } ],
"blueprint_provides": [ { "id": "fbmk_canteen_dining_west" } ],
- "blueprint_excludes": [ { "id": "fbmk_canteen_dining_west" } ],
- "blueprint_needs": {
- "time": "2 d 6 h 6 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [
- [ [ "machete", -1 ], [ "makeshift_machete", -1 ], [ "scythe", -1 ], [ "sickle", -1 ], [ "survivor_machete", -1 ] ],
- [ [ "frame_wood_light", -1 ] ],
- [ [ "log", -1 ] ]
- ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 148 ] ],
- [ [ "nail", 334 ] ],
- [ [ "pointy_stick", 12 ], [ "spear_wood", 12 ] ],
- [ [ "material_soil", 1440 ] ],
- [ [ "water", 600 ], [ "water_clean", 600 ] ],
- [ [ "material_sand", 120 ], [ "material_quicklime", 120 ], [ "concrete", 6 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "wood_panel", 11 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmk_canteen_dining_west" } ]
},
{
"type": "recipe",
@@ -194,24 +87,7 @@
"blueprint_name": "build E rammed earth wall",
"blueprint_requires": [ { "id": "fbmk_canteen_dining_west" }, { "id": "fbmk_smoking_area" } ],
"blueprint_provides": [ { "id": "fbmk_canteen_dining_east" } ],
- "blueprint_excludes": [ { "id": "fbmk_canteen_dining_east" } ],
- "blueprint_needs": {
- "time": "2 d 18 h",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 14 ], [ "spear_wood", 14 ] ],
- [ [ "2x4", 193 ] ],
- [ [ "nail", 460 ] ],
- [ [ "material_soil", 1680 ] ],
- [ [ "water", 700 ], [ "water_clean", 700 ] ],
- [ [ "material_sand", 140 ], [ "material_quicklime", 140 ], [ "concrete", 7 ] ],
- [ [ "wood_panel", 17 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmk_canteen_dining_east" } ]
},
{
"type": "recipe",
@@ -226,29 +102,6 @@
"blueprint_name": "build center of the rammed earth dining hall",
"blueprint_requires": [ { "id": "fbmk_canteen_dining_east" } ],
"blueprint_provides": [ { "id": "fbmk_canteen_dining_center" } ],
- "blueprint_excludes": [ { "id": "fbmk_canteen_dining_center" } ],
- "blueprint_needs": {
- "time": "1 d 15 h 15 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 225 ] ],
- [ [ "nail", 534 ] ],
- [ [ "pointy_stick", 4 ], [ "spear_wood", 4 ] ],
- [ [ "material_soil", 480 ] ],
- [ [ "water", 200 ], [ "water_clean", 200 ] ],
- [ [ "material_sand", 40 ], [ "material_quicklime", 40 ], [ "concrete", 2 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "wood_panel", 24 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmk_canteen_dining_center" } ]
}
]
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
new file mode 100644
index 0000000000000..195e77c42f805
--- /dev/null
+++ b/data/json/recipes/basecamps/recipe_modular_farm/recipe_modular_farm_common.json
@@ -0,0 +1,18 @@
+[
+ {
+ "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/basecamps/recipe_modular_farm/version_2/recipe_modular_farm_common.json b/data/json/recipes/basecamps/recipe_modular_farm/version_2/recipe_modular_farm_common.json
new file mode 100644
index 0000000000000..2ee0e8c0c556b
--- /dev/null
+++ b/data/json/recipes/basecamps/recipe_modular_farm/version_2/recipe_modular_farm_common.json
@@ -0,0 +1,432 @@
+[
+ {
+ "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" } ],
+ "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": "fbmf_2_plot_1",
+ "description": "Prepare a row of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_1",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_1" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_1" } ],
+ "skill_used": "fabrication",
+ "time": "48 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_plot_2",
+ "description": "Prepare a second row of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_2",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2_plot_1" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_2" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_2" } ],
+ "skill_used": "fabrication",
+ "time": "48 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_plot_3",
+ "description": "Prepare another pair of rows of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_3",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2_plot_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_3" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_3" } ],
+ "skill_used": "fabrication",
+ "time": "1 h 36 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_plot_4",
+ "description": "Prepare another pair of rows of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_4",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2_plot_3" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_4" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_4" } ],
+ "skill_used": "fabrication",
+ "time": "1 h 36 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_plot_5",
+ "description": "Prepare another pair of rows of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_5",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2_plot_4" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_5" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_5" } ],
+ "skill_used": "fabrication",
+ "time": "1 h 36 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_plot_6",
+ "description": "Prepare another pair of rows of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_6",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2_plot_5" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_6" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_6" } ],
+ "skill_used": "fabrication",
+ "time": "1 h 36 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_plot_7",
+ "description": "Prepare another pair of rows of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_7",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2_plot_6" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_7" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_7" } ],
+ "skill_used": "fabrication",
+ "time": "1 h 36 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_plot_8",
+ "description": "Prepare another pair of rows of farm plots.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_plot_8",
+ "blueprint_name": "prepare farm plots",
+ "blueprint_requires": [ { "id": "fbmf_2_plot_7" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_plot_8" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_plot_8" } ],
+ "skill_used": "fabrication",
+ "time": "1 h 36 m",
+ "qualities": [ [ { "id": "DIG", "level": 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": "fbmf_2_fence_1",
+ "description": "Erect a fence along the longer outer edge to keep deer away from the crops.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_fence_1",
+ "blueprint_name": "erect a fence",
+ "blueprint_requires": [ { "id": "fbmf_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_fence_1" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_fence_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": "fbmf_2_fence_2",
+ "description": "Erect a fence along the shorter outer edge to keep deer away from the crops.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_fence_2",
+ "blueprint_name": "erect a fence",
+ "blueprint_requires": [ { "id": "fbmf_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_fence_2" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_fence_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": "fbmf_2_fence_3",
+ "description": "Erect a fence along the shorter inner edge to keep deer away from the crops.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_fence_3",
+ "blueprint_name": "erect a fence",
+ "blueprint_requires": [ { "id": "fbmf_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_fence_3" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_fence_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": "fbmf_2_fence_4",
+ "description": "Erect a fence along the outer part of the longer inner edge to keep deer away from the crops.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_fence_4",
+ "blueprint_name": "erect a fence",
+ "blueprint_requires": [ { "id": "fbmf_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_fence_4" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_fence_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": "fbmf_2_fence_5",
+ "description": "We don't plan to replow the fields with a tractor, so erect a fence along the inner part of the longer inner edge.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_fence_5",
+ "blueprint_name": "erect a fence",
+ "blueprint_requires": [ { "id": "fbmf_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_fence_5" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_fence_5" }, { "id": "fbmf_2_gate" } ],
+ "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": "fbmf_2_gate",
+ "description": "Build a palisade gate to allow us to reach the fields and replow them with a tractor next year.",
+ "category": "CC_BUILDING",
+ "subcategory": "CSC_BUILDING_BASES",
+ "autolearn": false,
+ "never_learn": true,
+ "construction_blueprint": "fbmf_2_gate",
+ "blueprint_name": "build a palisade gate",
+ "blueprint_requires": [ { "id": "fbmf_2" } ],
+ "blueprint_provides": [ { "id": "fbmf_2_gate" } ],
+ "blueprint_excludes": [ { "id": "fbmf_2_fence_5" }, { "id": "fbmf_2_gate" } ],
+ "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_field_rammed_earth.json b/data/json/recipes/basecamps/recipe_modular_field_rammed_earth.json
index 8822612038302..93b69e5a5ef99 100644
--- a/data/json/recipes/basecamps/recipe_modular_field_rammed_earth.json
+++ b/data/json/recipes/basecamps/recipe_modular_field_rammed_earth.json
@@ -12,24 +12,7 @@
"blueprint_name": "northeast shack",
"blueprint_requires": [ { "id": "fbmh_0" } ],
"blueprint_provides": [ { "id": "fbmh_northeast" } ],
- "blueprint_excludes": [ { "id": "fbmh_northeast" } ],
- "blueprint_needs": {
- "time": "1 d 9 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "material_soil", 1120 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ],
- [ [ "material_sand", 80 ], [ "material_quicklime", 80 ], [ "concrete", 4 ] ],
- [ [ "log", 8 ] ],
- [ [ "stick", 16 ], [ "2x4", 32 ] ],
- [ [ "birchbark", 48 ], [ "pine_bough", 48 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_northeast" } ]
},
{
"type": "recipe",
@@ -44,25 +27,7 @@
"blueprint_name": "expand northeast shack",
"blueprint_requires": [ { "id": "fbmh_northeast" } ],
"blueprint_provides": [ { "id": "fbmh_northeast" } ],
- "blueprint_excludes": [ { "id": "fbmh_northeast", "amount": 2 }, { "id": "fbmh_tent_northeast" } ],
- "blueprint_needs": {
- "time": "1 d 6 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "log", 12 ] ],
- [ [ "2x4", 40 ], [ "stick", 20 ] ],
- [ [ "birchbark", 60 ], [ "pine_bough", 60 ] ],
- [ [ "concrete", 3 ], [ "material_quicklime", 60 ], [ "material_sand", 60 ] ],
- [ [ "material_soil", 920 ] ],
- [ [ "nail", 30 ] ],
- [ [ "pointy_stick", 6 ], [ "spear_wood", 6 ] ],
- [ [ "water", 300 ], [ "water_clean", 300 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_northeast", "amount": 2 }, { "id": "fbmh_tent_northeast" } ]
},
{
"type": "recipe",
@@ -78,24 +43,7 @@
"blueprint_name": "finish northeast shack",
"blueprint_requires": [ { "id": "fbmh_northeast", "amount": 2 } ],
"blueprint_provides": [ { "id": "fbmh_northeast", "amount": 2 } ],
- "blueprint_excludes": [ { "id": "fbmh_northeast", "amount": 4 }, { "id": "fbmh_tent_northeast" } ],
- "blueprint_needs": {
- "time": "1 d 21 h 15 m",
- "skills": [ [ "fabrication", 2 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 18 ] ],
- [ [ "nail", 24 ] ],
- [ [ "pointy_stick", 14 ], [ "spear_wood", 14 ] ],
- [ [ "material_soil", 1680 ] ],
- [ [ "water", 700 ], [ "water_clean", 700 ] ],
- [ [ "material_sand", 140 ], [ "material_quicklime", 140 ], [ "concrete", 7 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_northeast", "amount": 4 }, { "id": "fbmh_tent_northeast" } ]
},
{
"type": "recipe",
@@ -110,26 +58,7 @@
"blueprint_name": "east shack",
"blueprint_requires": [ { "id": "fbmh_tent_northeast" }, { "id": "fbmh_fire_northeast" }, { "id": "fbmh_bed2_northeast" } ],
"blueprint_provides": [ { "id": "fbmh_east", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_east" } ],
- "blueprint_needs": {
- "time": "5 d 22 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 179 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 34 ], [ "spear_wood", 34 ] ],
- [ [ "material_soil", 4720 ] ],
- [ [ "water", 1700 ], [ "water_clean", 1700 ] ],
- [ [ "material_sand", 340 ], [ "material_quicklime", 340 ], [ "concrete", 17 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 32 ] ],
- [ [ "birchbark", 192 ], [ "pine_bough", 192 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_east" } ]
},
{
"type": "recipe",
@@ -145,26 +74,7 @@
"blueprint_name": "east room",
"blueprint_requires": [ { "id": "fbmh_northeast", "amount": 4 }, { "id": "fbmh_fire_northeast" }, { "id": "fbmh_bed2_northeast" } ],
"blueprint_provides": [ { "id": "fbmh_east", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_east" }, { "id": "fbmh_tent_northeast" } ],
- "blueprint_needs": {
- "time": "5 d 11 h 45 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 211 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 28 ], [ "spear_wood", 28 ] ],
- [ [ "material_soil", 4160 ] ],
- [ [ "water", 1400 ], [ "water_clean", 1400 ] ],
- [ [ "material_sand", 280 ], [ "material_quicklime", 280 ], [ "concrete", 14 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 40 ] ],
- [ [ "birchbark", 240 ], [ "pine_bough", 240 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_east" }, { "id": "fbmh_tent_northeast" } ]
},
{
"type": "recipe",
@@ -179,26 +89,7 @@
"blueprint_name": "southeast shack",
"blueprint_requires": [ { "id": "fbmh_tent_east" } ],
"blueprint_provides": [ { "id": "fbmh_southeast", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_southeast" } ],
- "blueprint_needs": {
- "time": "5 d 22 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 179 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 34 ], [ "spear_wood", 34 ] ],
- [ [ "material_soil", 4720 ] ],
- [ [ "water", 1700 ], [ "water_clean", 1700 ] ],
- [ [ "material_sand", 340 ], [ "material_quicklime", 340 ], [ "concrete", 17 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 32 ] ],
- [ [ "birchbark", 192 ], [ "pine_bough", 192 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_southeast" } ]
},
{
"type": "recipe",
@@ -214,26 +105,7 @@
"blueprint_name": "southeast room",
"blueprint_requires": [ { "id": "fbmh_east", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_southeast", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_southeast" }, { "id": "fbmh_tent_east" } ],
- "blueprint_needs": {
- "time": "5 d 5 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 211 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 26 ], [ "spear_wood", 26 ] ],
- [ [ "material_soil", 3920 ] ],
- [ [ "water", 1300 ], [ "water_clean", 1300 ] ],
- [ [ "material_sand", 260 ], [ "material_quicklime", 260 ], [ "concrete", 13 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 40 ] ],
- [ [ "birchbark", 240 ], [ "pine_bough", 240 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_southeast" }, { "id": "fbmh_tent_east" } ]
},
{
"type": "recipe",
@@ -248,26 +120,7 @@
"blueprint_name": "northwest shack",
"blueprint_requires": [ { "id": "fbmh_northeast", "amount": 4 }, { "id": "fbmh_fire_northeast" }, { "id": "fbmh_bed2_northeast" } ],
"blueprint_provides": [ { "id": "fbmh_northwest", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_northwest" } ],
- "blueprint_needs": {
- "time": "4 d 12 h 15 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 105 ] ],
- [ [ "nail", 54 ] ],
- [ [ "pointy_stick", 28 ], [ "spear_wood", 28 ] ],
- [ [ "material_soil", 3720 ] ],
- [ [ "water", 1400 ], [ "water_clean", 1400 ] ],
- [ [ "material_sand", 280 ], [ "material_quicklime", 280 ], [ "concrete", 14 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "log", 18 ] ],
- [ [ "birchbark", 108 ], [ "pine_bough", 108 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_northwest" } ]
},
{
"type": "recipe",
@@ -282,26 +135,7 @@
"blueprint_name": "west shack",
"blueprint_requires": [ { "id": "fbmh_tent_northwest" } ],
"blueprint_provides": [ { "id": "fbmh_west", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_west" } ],
- "blueprint_needs": {
- "time": "5 d 22 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 179 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 34 ], [ "spear_wood", 34 ] ],
- [ [ "material_soil", 4720 ] ],
- [ [ "water", 1700 ], [ "water_clean", 1700 ] ],
- [ [ "material_sand", 340 ], [ "material_quicklime", 340 ], [ "concrete", 17 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 32 ] ],
- [ [ "birchbark", 192 ], [ "pine_bough", 192 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_west" } ]
},
{
"type": "recipe",
@@ -316,26 +150,7 @@
"blueprint_name": "west room",
"blueprint_requires": [ { "id": "fbmh_northwest", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_west", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_west" }, { "id": "fbmh_tent_northwest" } ],
- "blueprint_needs": {
- "time": "5 d 11 h 45 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 211 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 28 ], [ "spear_wood", 28 ] ],
- [ [ "material_soil", 4160 ] ],
- [ [ "water", 1400 ], [ "water_clean", 1400 ] ],
- [ [ "material_sand", 280 ], [ "material_quicklime", 280 ], [ "concrete", 14 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 40 ] ],
- [ [ "birchbark", 240 ], [ "pine_bough", 240 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_west" }, { "id": "fbmh_tent_northwest" } ]
},
{
"type": "recipe",
@@ -350,26 +165,7 @@
"blueprint_name": "southwest shack",
"blueprint_requires": [ { "id": "fbmh_tent_west" } ],
"blueprint_provides": [ { "id": "fbmh_southwest", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_southwest" } ],
- "blueprint_needs": {
- "time": "5 d 22 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 179 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 34 ], [ "spear_wood", 34 ] ],
- [ [ "material_soil", 4720 ] ],
- [ [ "water", 1700 ], [ "water_clean", 1700 ] ],
- [ [ "material_sand", 340 ], [ "material_quicklime", 340 ], [ "concrete", 17 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 32 ] ],
- [ [ "birchbark", 192 ], [ "pine_bough", 192 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_southwest" } ]
},
{
"type": "recipe",
@@ -384,26 +180,7 @@
"blueprint_name": "southwest room",
"blueprint_requires": [ { "id": "fbmh_west", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_southwest", "amount": 4 } ],
- "blueprint_excludes": [ { "id": "fbmh_southwest" }, { "id": "fbmh_tent_west" } ],
- "blueprint_needs": {
- "time": "5 d 5 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 211 ] ],
- [ [ "nail", 78 ] ],
- [ [ "pointy_stick", 26 ], [ "spear_wood", 26 ] ],
- [ [ "material_soil", 3920 ] ],
- [ [ "water", 1300 ], [ "water_clean", 1300 ] ],
- [ [ "material_sand", 260 ], [ "material_quicklime", 260 ], [ "concrete", 13 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 40 ] ],
- [ [ "birchbark", 240 ], [ "pine_bough", 240 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_southwest" }, { "id": "fbmh_tent_west" } ]
},
{
"type": "recipe",
@@ -418,26 +195,7 @@
"blueprint_name": "central building NE corner",
"blueprint_requires": [ { "id": "fbmh_tent_east" } ],
"blueprint_provides": [ { "id": "fbmh_center", "amount": 2 }, { "id": "fbmh_ne_center" } ],
- "blueprint_excludes": [ { "id": "fbmh_ne_center" } ],
- "blueprint_needs": {
- "time": "2 d 17 h 15 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 98 ] ],
- [ [ "nail", 24 ] ],
- [ [ "pointy_stick", 14 ], [ "spear_wood", 14 ] ],
- [ [ "material_soil", 2080 ] ],
- [ [ "water", 700 ], [ "water_clean", 700 ] ],
- [ [ "material_sand", 140 ], [ "material_quicklime", 140 ], [ "concrete", 7 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "log", 20 ] ],
- [ [ "birchbark", 120 ], [ "pine_bough", 120 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_ne_center" } ]
},
{
"type": "recipe",
@@ -452,24 +210,7 @@
"blueprint_name": "central building NE corner",
"blueprint_requires": [ { "id": "fbmh_east", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_center", "amount": 2 }, { "id": "fbmh_ne_center" } ],
- "blueprint_excludes": [ { "id": "fbmh_ne_center" }, { "id": "fbmh_tent_east" } ],
- "blueprint_needs": {
- "time": "2 d 45 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 6 ], [ "spear_wood", 6 ] ],
- [ [ "material_soil", 1320 ] ],
- [ [ "water", 300 ], [ "water_clean", 300 ] ],
- [ [ "material_sand", 60 ], [ "material_quicklime", 60 ], [ "concrete", 3 ] ],
- [ [ "log", 30 ] ],
- [ [ "stick", 60 ], [ "2x4", 120 ] ],
- [ [ "birchbark", 180 ], [ "pine_bough", 180 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_ne_center" }, { "id": "fbmh_tent_east" } ]
},
{
"type": "recipe",
@@ -484,26 +225,7 @@
"blueprint_name": "central building NW corner",
"blueprint_requires": [ { "id": "fbmh_tent_west" } ],
"blueprint_provides": [ { "id": "fbmh_center", "amount": 2 }, { "id": "fbmh_nw_center" } ],
- "blueprint_excludes": [ { "id": "fbmh_nw_center" } ],
- "blueprint_needs": {
- "time": "2 d 12 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 116 ] ],
- [ [ "nail", 48 ] ],
- [ [ "pointy_stick", 12 ], [ "spear_wood", 12 ] ],
- [ [ "material_soil", 1840 ] ],
- [ [ "water", 600 ], [ "water_clean", 600 ] ],
- [ [ "material_sand", 120 ], [ "material_quicklime", 120 ], [ "concrete", 6 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 20 ] ],
- [ [ "birchbark", 120 ], [ "pine_bough", 120 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_nw_center" } ]
},
{
"type": "recipe",
@@ -518,26 +240,7 @@
"blueprint_name": "central building NW corner",
"blueprint_requires": [ { "id": "fbmh_west", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_center", "amount": 2 }, { "id": "fbmh_nw_center" } ],
- "blueprint_excludes": [ { "id": "fbmh_nw_center" }, { "id": "fbmh_tent_west" } ],
- "blueprint_needs": {
- "time": "1 d 20 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 138 ] ],
- [ [ "nail", 24 ] ],
- [ [ "pointy_stick", 4 ], [ "spear_wood", 4 ] ],
- [ [ "material_soil", 1080 ] ],
- [ [ "water", 200 ], [ "water_clean", 200 ] ],
- [ [ "material_sand", 40 ], [ "material_quicklime", 40 ], [ "concrete", 2 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "log", 30 ] ],
- [ [ "birchbark", 180 ], [ "pine_bough", 180 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_nw_center" }, { "id": "fbmh_tent_west" } ]
},
{
"type": "recipe",
@@ -552,26 +255,7 @@
"blueprint_name": "central building north half",
"blueprint_requires": [ { "id": "fbmh_east", "amount": 4 }, { "id": "fbmh_west", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_center", "amount": 4 }, { "id": "fbmh_ne_center" }, { "id": "fbmh_nw_center" } ],
- "blueprint_excludes": [ { "id": "fbmh_ne_center" }, { "id": "fbmh_nw_center" }, { "id": "fbmh_tent_east" }, { "id": "fbmh_tent_west" } ],
- "blueprint_needs": {
- "time": "3 d 20 h 45 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 258 ] ],
- [ [ "nail", 24 ] ],
- [ [ "pointy_stick", 10 ], [ "spear_wood", 10 ] ],
- [ [ "material_soil", 2400 ] ],
- [ [ "water", 500 ], [ "water_clean", 500 ] ],
- [ [ "material_sand", 100 ], [ "material_quicklime", 100 ], [ "concrete", 5 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "log", 60 ] ],
- [ [ "birchbark", 360 ], [ "pine_bough", 360 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_ne_center" }, { "id": "fbmh_nw_center" }, { "id": "fbmh_tent_east" }, { "id": "fbmh_tent_west" } ]
},
{
"type": "recipe",
@@ -586,26 +270,7 @@
"blueprint_name": "central building SE corner",
"blueprint_requires": [ { "id": "fbmh_tent_southeast" } ],
"blueprint_provides": [ { "id": "fbmh_south", "amount": 2 }, { "id": "fbmh_se_south" } ],
- "blueprint_excludes": [ { "id": "fbmh_se_south" } ],
- "blueprint_needs": {
- "time": "2 d 12 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 116 ] ],
- [ [ "nail", 48 ] ],
- [ [ "pointy_stick", 12 ], [ "spear_wood", 12 ] ],
- [ [ "material_soil", 1840 ] ],
- [ [ "water", 600 ], [ "water_clean", 600 ] ],
- [ [ "material_sand", 120 ], [ "material_quicklime", 120 ], [ "concrete", 6 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 20 ] ],
- [ [ "birchbark", 120 ], [ "pine_bough", 120 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_se_south" } ]
},
{
"type": "recipe",
@@ -621,26 +286,7 @@
"blueprint_name": "central building SE corner",
"blueprint_requires": [ { "id": "fbmh_southeast", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_south", "amount": 2 }, { "id": "fbmh_se_south" } ],
- "blueprint_excludes": [ { "id": "fbmh_se_south" }, { "id": "fbmh_tent_southeast" } ],
- "blueprint_needs": {
- "time": "1 d 20 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 138 ] ],
- [ [ "nail", 24 ] ],
- [ [ "pointy_stick", 4 ], [ "spear_wood", 4 ] ],
- [ [ "material_soil", 1080 ] ],
- [ [ "water", 200 ], [ "water_clean", 200 ] ],
- [ [ "material_sand", 40 ], [ "material_quicklime", 40 ], [ "concrete", 2 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "log", 30 ] ],
- [ [ "birchbark", 180 ], [ "pine_bough", 180 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_se_south" }, { "id": "fbmh_tent_southeast" } ]
},
{
"type": "recipe",
@@ -655,26 +301,7 @@
"blueprint_name": "central building SW corner",
"blueprint_requires": [ { "id": "fbmh_tent_southwest" } ],
"blueprint_provides": [ { "id": "fbmh_south", "amount": 2 }, { "id": "fbmh_sw_south" } ],
- "blueprint_excludes": [ { "id": "fbmh_sw_south" } ],
- "blueprint_needs": {
- "time": "2 d 17 h 15 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 98 ] ],
- [ [ "nail", 24 ] ],
- [ [ "pointy_stick", 14 ], [ "spear_wood", 14 ] ],
- [ [ "material_soil", 2080 ] ],
- [ [ "water", 700 ], [ "water_clean", 700 ] ],
- [ [ "material_sand", 140 ], [ "material_quicklime", 140 ], [ "concrete", 7 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "log", 20 ] ],
- [ [ "birchbark", 120 ], [ "pine_bough", 120 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_sw_south" } ]
},
{
"type": "recipe",
@@ -689,24 +316,7 @@
"blueprint_name": "central building SW corner",
"blueprint_requires": [ { "id": "fbmh_southwest", "amount": 4 } ],
"blueprint_provides": [ { "id": "fbmh_south", "amount": 2 }, { "id": "fbmh_sw_south" } ],
- "blueprint_excludes": [ { "id": "fbmh_sw_south" }, { "id": "fbmh_tent_southwest" } ],
- "blueprint_needs": {
- "time": "2 d 45 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 6 ], [ "spear_wood", 6 ] ],
- [ [ "material_soil", 1320 ] ],
- [ [ "water", 300 ], [ "water_clean", 300 ] ],
- [ [ "material_sand", 60 ], [ "material_quicklime", 60 ], [ "concrete", 3 ] ],
- [ [ "log", 30 ] ],
- [ [ "stick", 60 ], [ "2x4", 120 ] ],
- [ [ "birchbark", 180 ], [ "pine_bough", 180 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmh_sw_south" }, { "id": "fbmh_tent_southwest" } ]
},
{
"type": "recipe",
@@ -726,25 +336,6 @@
{ "id": "fbmh_sw_south" },
{ "id": "fbmh_tent_southeast" },
{ "id": "fbmh_tent_southwest" }
- ],
- "blueprint_needs": {
- "time": "3 d 20 h 45 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 258 ] ],
- [ [ "nail", 24 ] ],
- [ [ "pointy_stick", 10 ], [ "spear_wood", 10 ] ],
- [ [ "material_soil", 2400 ] ],
- [ [ "water", 500 ], [ "water_clean", 500 ] ],
- [ [ "material_sand", 100 ], [ "material_quicklime", 100 ], [ "concrete", 5 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "log", 60 ] ],
- [ [ "birchbark", 360 ], [ "pine_bough", 360 ] ]
- ]
- }
- }
+ ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_firestation_1/recipe_modular_firestation1.json b/data/json/recipes/basecamps/recipe_modular_firestation_1/recipe_modular_firestation1.json
index 72b729e09e489..268d361b9de91 100644
--- a/data/json/recipes/basecamps/recipe_modular_firestation_1/recipe_modular_firestation1.json
+++ b/data/json/recipes/basecamps/recipe_modular_firestation_1/recipe_modular_firestation1.json
@@ -54,16 +54,7 @@
"blueprint_name": "build a well",
"blueprint_requires": [ { "id": "fbmc_firestation1_0" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_well" }, { "id": "relaying" }, { "id": "scouting" }, { "id": "patrolling" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_well" } ],
- "blueprint_needs": {
- "time": "11 h",
- "skills": [ [ "fabrication", 4 ], [ "mechanics", 2 ], [ "survival", 4 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "WRENCH" } ] ],
- "components": [ [ [ "rock", 40 ] ], [ [ "2x4", 4 ] ], [ [ "nail", 8 ] ], [ [ "well_pump", 1 ] ], [ [ "pipe", 6 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_well" } ]
},
{
"type": "recipe",
@@ -78,38 +69,7 @@
"blueprint_name": "build a radio tower and console",
"blueprint_requires": [ { "id": "fbmc_firestation1_well" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_radio" }, { "id": "recruiting" }, { "id": "radio" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_radio" } ],
- "blueprint_needs": {
- "time": "2 d",
- "skills": [ [ "fabrication", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "SCREW" } ], [ { "id": "WRENCH" } ] ],
- "components": [
- [
- [ "wind_turbine", 4 ],
- [ "xl_wind_turbine", 1 ],
- [ "solar_panel", 4 ],
- [ "reinforced_solar_panel", 4 ],
- [ "solar_panel_v2", 2 ],
- [ "reinforced_solar_panel_v2", 2 ]
- ],
- [ [ "storage_battery", 1 ], [ "medium_storage_battery", 4 ], [ "small_storage_battery", 32 ] ],
- [ [ "sheet_metal", 2 ], [ "wire", 8 ] ],
- [ [ "pipe", 24 ] ],
- [ [ "processor", 2 ] ],
- [ [ "RAM", 2 ] ],
- [ [ "large_lcd_screen", 1 ] ],
- [ [ "e_scrap", 8 ] ],
- [ [ "frame", 1 ] ],
- [ [ "circuit", 4 ] ],
- [ [ "power_supply", 2 ] ],
- [ [ "amplifier", 2 ] ],
- [ [ "cable", 80 ] ],
- [ [ "motor_small", 1 ], [ "motor_tiny", 2 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_radio" } ]
},
{
"type": "recipe",
@@ -162,16 +122,7 @@
"blueprint_name": "build a privacy fence",
"blueprint_requires": [ { "id": "fbmc_firestation1_farm" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_fence" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_fence" } ],
- "blueprint_needs": {
- "time": "8 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [ [ [ "pointy_stick", 32 ], [ "spear_wood", 32 ] ], [ [ "2x4", 128 ] ], [ [ "nail", 320 ] ], [ [ "hinge", 4 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_fence" } ]
},
{
"type": "recipe",
@@ -194,15 +145,6 @@
],
"blueprint_excludes": [ { "id": "fbmc_firestation1_fire" } ],
"blueprint_resources": [ "fake_fireplace", "pot" ],
- "blueprint_needs": {
- "time": "2 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [ [ [ "rock", 40 ] ] ]
- }
- },
"components": [ [ [ "pot", 1 ], [ "rock_pot", 1 ], [ "pot_copper", 1 ], [ "clay_pot", 1 ] ] ]
},
{
@@ -252,11 +194,6 @@
],
"blueprint_excludes": [ { "id": "fbmc_firestation1_fire" } ],
"blueprint_resources": [ "fake_fireplace", "pot" ],
- "blueprint_needs": {
- "time": "1 h",
- "skills": [ [ "fabrication", 5 ], [ "mechanics", 3 ] ],
- "inline": { "tools": [ ], "qualities": [ [ { "id": "SAW_M" } ] ], "components": [ [ [ "metal_tank", 1 ] ], [ [ "pipe", 1 ] ] ] }
- },
"components": [ [ [ "pot", 1 ], [ "rock_pot", 1 ], [ "pot_copper", 1 ], [ "clay_pot", 1 ] ] ]
},
{
@@ -274,16 +211,7 @@
"blueprint_requires": [ { "id": "fbmc_firestation1_fire" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_smoking" }, { "id": "kitchen_recipes_2" } ],
"blueprint_excludes": [ { "id": "fbmc_firestation1_smoking" } ],
- "blueprint_resources": [ "fake_char_smoker", "fake_char_kiln" ],
- "blueprint_needs": {
- "time": "5 h",
- "skills": [ [ "cooking", 2 ], [ "fabrication", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG" } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ] ],
- "components": [ [ [ "2x4", 32 ], [ "stick", 32 ] ], [ [ "rock", 56 ] ] ]
- }
- }
+ "blueprint_resources": [ "fake_char_smoker", "fake_char_kiln" ]
},
{
"type": "recipe",
@@ -300,35 +228,6 @@
"blueprint_requires": [ { "id": "fbmc_firestation1_smoking" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_butchery" }, { "id": "kitchen_recipes_3" }, { "id": "trapping" }, { "id": "hunting" } ],
"blueprint_excludes": [ { "id": "fbmc_firestation1_butchery" } ],
- "blueprint_needs": {
- "time": "1 h 15 m",
- "skills": [ [ "fabrication", 1 ], [ "survival", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ] ],
- "components": [
- [ [ "2x4", 4 ] ],
- [ [ "wood_sheet", 1 ], [ "wood_panel", 1 ] ],
- [ [ "nail", 8 ] ],
- [ [ "stick_long", 6 ] ],
- [
- [ "rope_6", 1 ],
- [ "vine_6", 1 ],
- [ "rope_makeshift_6", 1 ],
- [ "string_36", 2 ],
- [ "cordage_36", 2 ],
- [ "string_6", 12 ],
- [ "cordage_6", 12 ],
- [ "thread", 600 ],
- [ "sinew", 600 ],
- [ "plant_fibre", 600 ],
- [ "yarn", 600 ],
- [ "wire", 8 ]
- ],
- [ [ "pointy_stick", 2 ], [ "spike", 2 ] ]
- ]
- }
- },
"components": [ [ [ "knife_butcher", 1 ], [ "knife_steak", 1 ], [ "knife_chef", 1 ], [ "knife_carving", 1 ] ] ]
},
{
@@ -345,16 +244,7 @@
"blueprint_name": "build fermenting vats",
"blueprint_requires": [ { "id": "fbmc_firestation1_butchery" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_vat" }, { "id": "fermenting" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_vat" } ],
- "blueprint_needs": {
- "time": "3 h",
- "skills": [ [ "cooking", 3 ], [ "fabrication", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ] ],
- "components": [ [ [ "2x4", 28 ] ], [ [ "nail", 24 ] ], [ [ "sheet_metal_small", 24 ] ], [ [ "water_faucet", 2 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_vat" } ]
},
{
"type": "recipe",
@@ -394,24 +284,7 @@
"blueprint_name": "furnish the SW bedroom",
"blueprint_requires": [ { "id": "fbmc_firestation1_quarters" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_bedroom_sw" }, { "id": "bed" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_sw" } ],
- "blueprint_needs": {
- "time": "5 h 30 m",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ], [ { "id": "WRENCH" } ] ],
- "components": [
- [ [ "sheet_metal", 2 ] ],
- [ [ "pipe", 8 ] ],
- [ [ "lock", 1 ] ],
- [ [ "2x4", 52 ] ],
- [ [ "wood_sheet", 1 ], [ "wood_panel", 1 ] ],
- [ [ "nail", 48 ] ],
- [ [ "mattress", 4 ], [ "down_mattress", 4 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_sw" } ]
},
{
"type": "recipe",
@@ -426,24 +299,7 @@
"blueprint_name": "furnish the NW bedroom",
"blueprint_requires": [ { "id": "fbmc_firestation1_quarters" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_bedroom_nw" }, { "id": "bed" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_nw" } ],
- "blueprint_needs": {
- "time": "6 h 30 m",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ], [ { "id": "WRENCH" } ] ],
- "components": [
- [ [ "sheet_metal", 4 ] ],
- [ [ "pipe", 16 ] ],
- [ [ "lock", 2 ] ],
- [ [ "2x4", 52 ] ],
- [ [ "wood_sheet", 1 ], [ "wood_panel", 1 ] ],
- [ [ "nail", 48 ] ],
- [ [ "mattress", 4 ], [ "down_mattress", 4 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_nw" } ]
},
{
"type": "recipe",
@@ -458,24 +314,7 @@
"blueprint_name": "furnish the SE bedroom",
"blueprint_requires": [ { "id": "fbmc_firestation1_quarters" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_bedroom_se" }, { "id": "bed" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_se" } ],
- "blueprint_needs": {
- "time": "5 h 30 m",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ], [ { "id": "WRENCH" } ] ],
- "components": [
- [ [ "sheet_metal", 2 ] ],
- [ [ "pipe", 8 ] ],
- [ [ "lock", 1 ] ],
- [ [ "2x4", 52 ] ],
- [ [ "wood_sheet", 1 ], [ "wood_panel", 1 ] ],
- [ [ "nail", 48 ] ],
- [ [ "mattress", 4 ], [ "down_mattress", 4 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_se" } ]
},
{
"type": "recipe",
@@ -490,24 +329,7 @@
"blueprint_name": "furnish the NE bedroom",
"blueprint_requires": [ { "id": "fbmc_firestation1_quarters" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_bedroom_ne" }, { "id": "bed" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_ne" } ],
- "blueprint_needs": {
- "time": "6 h 30 m",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ], [ { "id": "WRENCH" } ] ],
- "components": [
- [ [ "sheet_metal", 4 ] ],
- [ [ "pipe", 16 ] ],
- [ [ "lock", 2 ] ],
- [ [ "2x4", 52 ] ],
- [ [ "wood_sheet", 1 ], [ "wood_panel", 1 ] ],
- [ [ "nail", 48 ] ],
- [ [ "mattress", 4 ], [ "down_mattress", 4 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_bedroom_ne" } ]
},
{
"type": "recipe",
@@ -522,21 +344,7 @@
"blueprint_name": "furnish the common area furniture",
"blueprint_requires": [ { "id": "fbmc_firestation1_quarters" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_quarters_common" } ],
- "blueprint_excludes": [ { "id": "fbmc_firestation1_quarters_common" } ],
- "blueprint_needs": {
- "time": "12 h",
- "skills": [ [ "fabrication", 4 ], [ "tailor", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ] ],
- "components": [
- [ [ "2x4", 110 ] ],
- [ [ "wood_sheet", 6 ], [ "wood_panel", 9 ] ],
- [ [ "nail", 166 ] ],
- [ [ "blanket", 5 ], [ "down_blanket", 5 ], [ "fur_blanket", 5 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmc_firestation1_quarters_common" } ]
},
{
"type": "recipe",
@@ -554,15 +362,6 @@
"blueprint_provides": [ { "id": "fbmc_firestation1_forge" }, { "id": "blacksmith_recipes_1" } ],
"blueprint_excludes": [ { "id": "fbmc_firestation1_forge" } ],
"blueprint_resources": [ "fake_forge", "hammer" ],
- "blueprint_needs": {
- "time": "2 h",
- "skills": [ [ "fabrication", 5 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG" } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [ [ [ "rock", 40 ] ] ]
- }
- },
"components": [ [ [ "hammer", 1 ] ] ]
},
{
@@ -600,19 +399,6 @@
"blueprint_provides": [ { "id": "fbmc_firestation1_pottery" }, { "id": "blacksmith_recipes_3" } ],
"blueprint_excludes": [ { "id": "fbmc_firestation1_pottery" } ],
"blueprint_resources": [ "anvil", "crucible" ],
- "blueprint_needs": {
- "time": "2 h 30 m",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "rock", 40 ] ],
- [ [ "material_cement", 50 ], [ "mortar_build", 1 ], [ "clay_lump", 12 ] ],
- [ [ "water", 2 ], [ "water_clean", 2 ] ]
- ]
- }
- },
"components": [ [ [ "glassblowing_book", 1 ] ], [ [ "glasses_safety", 1 ] ], [ [ "chemistry_set", 1 ] ], [ [ "pipe", 1 ] ] ]
},
{
@@ -675,15 +461,6 @@
"blueprint_requires": [ { "id": "fbmc_firestation1_workbench" } ],
"blueprint_provides": [ { "id": "fbmc_firestation1_bellows" }, { "id": "blacksmith_recipes_6" } ],
"blueprint_excludes": [ { "id": "fbmc_firestation1_bellows" } ],
- "blueprint_needs": {
- "time": "1 h",
- "skills": [ [ "fabrication", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER" } ] ],
- "components": [ [ [ "2x4", 4 ] ], [ [ "tanned_hide", 2 ] ], [ [ "scrap", 20 ] ], [ [ "wire", 8 ] ] ]
- }
- },
"components": [ [ [ "hammer_sledge", 1 ] ], [ [ "30gal_drum", 1 ] ], [ [ "knife_combat", 1 ], [ "copper_knife", 1 ] ] ]
},
{
@@ -702,15 +479,6 @@
"blueprint_provides": [ { "id": "fbmc_firestation1_drophammer" }, { "id": "blacksmith_recipes_7" } ],
"blueprint_excludes": [ { "id": "fbmc_firestation1_drophammer" } ],
"blueprint_resources": [ "wrench", "pliers", "fake_drop_hammer" ],
- "blueprint_needs": {
- "time": "2 h",
- "skills": [ [ "fabrication", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER" } ] ],
- "components": [ [ [ "metal_tank", 2 ] ], [ [ "water_faucet", 2 ] ], [ [ "anvil", 1 ] ], [ [ "chain", 4 ] ], [ [ "pipe", 3 ] ] ]
- }
- },
"components": [ [ [ "wrench", 1 ] ], [ [ "pliers", 1 ] ] ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_common.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_common.json
index 2dc41de4525b4..bd4af3b89927a 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_common.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_common.json
@@ -28,16 +28,7 @@
"blueprint_name": "east coop yard",
"blueprint_requires": [ { "id": "fbml_northeast" } ],
"blueprint_provides": [ { "id": "fbml_east" } ],
- "blueprint_excludes": [ { "id": "fbml_east" } ],
- "blueprint_needs": {
- "time": "15 h 45 m",
- "skills": [ [ "fabrication", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [ [ [ "2x4", 80 ] ], [ [ "nail", 320 ] ], [ [ "wire", 160 ] ], [ [ "hinge", 2 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_east" } ]
},
{
"type": "recipe",
@@ -52,16 +43,7 @@
"blueprint_name": "north paddock",
"blueprint_requires": [ { "id": "fbml_northwest" } ],
"blueprint_provides": [ { "id": "fbml_north" } ],
- "blueprint_excludes": [ { "id": "fbml_north" } ],
- "blueprint_needs": {
- "time": "3 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [ [ [ "pointy_stick", 12 ], [ "spear_wood", 12 ] ], [ [ "2x4", 25 ] ], [ [ "nail", 112 ] ], [ [ "hinge", 2 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_north" } ]
},
{
"type": "recipe",
@@ -76,16 +58,7 @@
"blueprint_name": "center paddock",
"blueprint_requires": [ { "id": "fbml_north" } ],
"blueprint_provides": [ { "id": "fbml_center" } ],
- "blueprint_excludes": [ { "id": "fbml_center" } ],
- "blueprint_needs": {
- "time": "1 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [ [ [ "pointy_stick", 4 ], [ "spear_wood", 4 ] ], [ [ "2x4", 8 ] ], [ [ "nail", 40 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_center" } ]
},
{
"type": "recipe",
@@ -100,15 +73,6 @@
"blueprint_name": "center paddock",
"blueprint_requires": [ { "id": "fbml_center" } ],
"blueprint_provides": [ { "id": "fbml_south" } ],
- "blueprint_excludes": [ { "id": "fbml_south" } ],
- "blueprint_needs": {
- "time": "5 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [ [ [ "pointy_stick", 20 ], [ "spear_wood", 20 ] ], [ [ "2x4", 42 ] ], [ [ "nail", 184 ] ], [ [ "hinge", 4 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_south" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_log.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_log.json
index a048abd2c8868..40331cbecb018 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_log.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_log.json
@@ -12,23 +12,7 @@
"blueprint_name": "northeast coop",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_northeast" }, { "id": "chicken_coop" } ],
- "blueprint_excludes": [ { "id": "fbml_northeast" } ],
- "blueprint_needs": {
- "time": "2 d 5 h 45 m",
- "skills": [ [ "fabrication", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 354 ] ],
- [ [ "nail", 360 ] ],
- [ [ "wire", 20 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "log", 72 ] ],
- [ [ "wood_panel", 16 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northeast" } ]
},
{
"type": "recipe",
@@ -43,30 +27,7 @@
"blueprint_name": "southeast storage room",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_southeast" } ],
- "blueprint_excludes": [ { "id": "fbml_southeast" } ],
- "blueprint_needs": {
- "time": "1 d 20 h",
- "skills": [ [ "fabrication", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ],
- [ { "id": "WRENCH" } ]
- ],
- "components": [
- [ [ "2x4", 274 ] ],
- [ [ "nail", 324 ] ],
- [ [ "wood_panel", 10 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "pipe", 60 ] ],
- [ [ "sheet_metal", 10 ] ],
- [ [ "glass_sheet", 4 ] ],
- [ [ "log", 44 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southeast" } ]
},
{
"type": "recipe",
@@ -81,23 +42,7 @@
"blueprint_name": "southwest stable",
"blueprint_requires": [ { "id": "faction_base_livestock_0" } ],
"blueprint_provides": [ { "id": "fbml_southwest" }, { "id": "stables" } ],
- "blueprint_excludes": [ { "id": "fbml_southwest" } ],
- "blueprint_needs": {
- "time": "2 d 2 h",
- "skills": [ [ "fabrication", 3 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 341 ] ],
- [ [ "nail", 432 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "log", 60 ] ],
- [ [ "wood_panel", 17 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southwest" } ]
},
{
"type": "recipe",
@@ -112,23 +57,7 @@
"blueprint_name": "west stable",
"blueprint_requires": [ { "id": "fbml_southwest" } ],
"blueprint_provides": [ { "id": "fbml_west" } ],
- "blueprint_excludes": [ { "id": "fbml_west" } ],
- "blueprint_needs": {
- "time": "2 d",
- "skills": [ [ "fabrication", 3 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 334 ] ],
- [ [ "nail", 464 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "log", 52 ] ],
- [ [ "wood_panel", 19 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_west" } ]
},
{
"type": "recipe",
@@ -143,22 +72,6 @@
"blueprint_name": "northwest stable",
"blueprint_requires": [ { "id": "fbml_west" } ],
"blueprint_provides": [ { "id": "fbml_northwest" } ],
- "blueprint_excludes": [ { "id": "fbml_northwest" } ],
- "blueprint_needs": {
- "time": "2 d 1 h",
- "skills": [ [ "fabrication", 3 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 338 ] ],
- [ [ "nail", 444 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "log", 56 ] ],
- [ [ "wood_panel", 18 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_metal.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_metal.json
index 6c7d6a0ea837d..4b03531bea970 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_metal.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_metal.json
@@ -12,23 +12,7 @@
"blueprint_name": "northeast coop",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_northeast" }, { "id": "chicken_coop" } ],
- "blueprint_excludes": [ { "id": "fbml_northeast" } ],
- "blueprint_needs": {
- "time": "2 d 23 h 45 m",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ [ [ "oxy_torch", 360 ], [ "welder", 1800 ], [ "welder_crude", 2700 ], [ "toolset", 2700 ] ] ],
- "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 138 ] ],
- [ [ "nail", 360 ] ],
- [ [ "wire", 20 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "steel_plate", 72 ] ],
- [ [ "wood_panel", 16 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northeast" } ]
},
{
"type": "recipe",
@@ -43,30 +27,7 @@
"blueprint_name": "southeast storage room",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_southeast" } ],
- "blueprint_excludes": [ { "id": "fbml_southeast" } ],
- "blueprint_needs": {
- "time": "2 d 7 h",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ [ [ "oxy_torch", 220 ], [ "welder", 1100 ], [ "welder_crude", 1650 ], [ "toolset", 1650 ] ] ],
- "qualities": [
- [ { "id": "GLARE", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ],
- [ { "id": "WRENCH" } ]
- ],
- "components": [
- [ [ "2x4", 142 ] ],
- [ [ "nail", 324 ] ],
- [ [ "wood_panel", 10 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "pipe", 60 ] ],
- [ [ "sheet_metal", 10 ] ],
- [ [ "glass_sheet", 4 ] ],
- [ [ "steel_plate", 44 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southeast" } ]
},
{
"type": "recipe",
@@ -81,28 +42,7 @@
"blueprint_name": "southwest stable",
"blueprint_requires": [ { "id": "faction_base_livestock_0" } ],
"blueprint_provides": [ { "id": "fbml_southwest" }, { "id": "stables" } ],
- "blueprint_excludes": [ { "id": "fbml_southwest" } ],
- "blueprint_needs": {
- "time": "2 d 17 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ [ [ "oxy_torch", 300 ], [ "welder", 1500 ], [ "welder_crude", 2250 ], [ "toolset", 2250 ] ] ],
- "qualities": [
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "GLARE", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 161 ] ],
- [ [ "nail", 432 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "steel_plate", 60 ] ],
- [ [ "wood_panel", 17 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southwest" } ]
},
{
"type": "recipe",
@@ -117,28 +57,7 @@
"blueprint_name": "west stable",
"blueprint_requires": [ { "id": "fbml_southwest" } ],
"blueprint_provides": [ { "id": "fbml_west" } ],
- "blueprint_excludes": [ { "id": "fbml_west" } ],
- "blueprint_needs": {
- "time": "2 d 13 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ [ [ "oxy_torch", 260 ], [ "welder", 1300 ], [ "welder_crude", 1950 ], [ "toolset", 1950 ] ] ],
- "qualities": [
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "GLARE", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 178 ] ],
- [ [ "nail", 464 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "steel_plate", 52 ] ],
- [ [ "wood_panel", 19 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_west" } ]
},
{
"type": "recipe",
@@ -153,27 +72,6 @@
"blueprint_name": "northwest stable",
"blueprint_requires": [ { "id": "fbml_west" } ],
"blueprint_provides": [ { "id": "fbml_northwest" } ],
- "blueprint_excludes": [ { "id": "fbml_northwest" } ],
- "blueprint_needs": {
- "time": "2 d 15 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ [ [ "oxy_torch", 280 ], [ "welder", 1400 ], [ "welder_crude", 2100 ], [ "toolset", 2100 ] ] ],
- "qualities": [
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "GLARE", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 170 ] ],
- [ [ "nail", 444 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "steel_plate", 56 ] ],
- [ [ "wood_panel", 18 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_migo_resin.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_migo_resin.json
index 7c6320e2ad46c..f8701cf1015e4 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_migo_resin.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_migo_resin.json
@@ -12,16 +12,7 @@
"blueprint_name": "northeast coop",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_northeast" }, { "id": "chicken_coop" } ],
- "blueprint_excludes": [ { "id": "fbml_northeast" } ],
- "blueprint_needs": {
- "time": "1 d 10 h 45 m",
- "skills": [ [ "fabrication", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SMOOTH" } ] ],
- "components": [ [ [ "2x4", 10 ] ], [ [ "nail", 40 ] ], [ [ "wire", 20 ] ], [ [ "hinge", 2 ] ], [ [ "alien_pod_resin", 68 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northeast" } ]
},
{
"type": "recipe",
@@ -36,21 +27,7 @@
"blueprint_name": "southeast storage room",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_southeast" } ],
- "blueprint_excludes": [ { "id": "fbml_southeast" } ],
- "blueprint_needs": {
- "time": "1 d 8 h 40 m",
- "skills": [ [ "fabrication", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ], [ { "id": "SMOOTH" } ] ],
- "components": [
- [ [ "2x4", 34 ] ],
- [ [ "wood_sheet", 11 ], [ "wood_panel", 21 ] ],
- [ [ "nail", 208 ] ],
- [ [ "alien_pod_resin", 42 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southeast" } ]
},
{
"type": "recipe",
@@ -65,22 +42,7 @@
"blueprint_name": "southwest stable",
"blueprint_requires": [ { "id": "faction_base_livestock_0" } ],
"blueprint_provides": [ { "id": "fbml_southwest" }, { "id": "stables" } ],
- "blueprint_excludes": [ { "id": "fbml_southwest" } ],
- "blueprint_needs": {
- "time": "1 d 12 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SMOOTH" } ] ],
- "components": [
- [ [ "2x4", 25 ] ],
- [ [ "nail", 92 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "alien_pod_resin", 64 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southwest" } ]
},
{
"type": "recipe",
@@ -95,22 +57,7 @@
"blueprint_name": "west stable",
"blueprint_requires": [ { "id": "fbml_southwest" } ],
"blueprint_provides": [ { "id": "fbml_west" } ],
- "blueprint_excludes": [ { "id": "fbml_west" } ],
- "blueprint_needs": {
- "time": "1 d 14 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SMOOTH" } ] ],
- "components": [
- [ [ "2x4", 26 ] ],
- [ [ "nail", 84 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "alien_pod_resin", 64 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_west" } ]
},
{
"type": "recipe",
@@ -125,21 +72,6 @@
"blueprint_name": "northwest stable",
"blueprint_requires": [ { "id": "fbml_west" } ],
"blueprint_provides": [ { "id": "fbml_northwest" } ],
- "blueprint_excludes": [ { "id": "fbml_northwest" } ],
- "blueprint_needs": {
- "time": "1 d 13 h",
- "skills": [ [ "fabrication", 2 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SMOOTH" } ] ],
- "components": [
- [ [ "2x4", 26 ] ],
- [ [ "nail", 84 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "alien_pod_resin", 64 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rammed_earth.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rammed_earth.json
index bbd7540857689..3948a6607197b 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rammed_earth.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rammed_earth.json
@@ -12,26 +12,7 @@
"blueprint_name": "northeast coop",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_northeast" }, { "id": "chicken_coop" } ],
- "blueprint_excludes": [ { "id": "fbml_northeast" } ],
- "blueprint_needs": {
- "time": "5 d 10 h 15 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 36 ], [ "spear_wood", 36 ] ],
- [ [ "2x4", 138 ] ],
- [ [ "nail", 360 ] ],
- [ [ "wire", 20 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "material_soil", 4320 ] ],
- [ [ "water", 1800 ], [ "water_clean", 1800 ] ],
- [ [ "material_sand", 360 ], [ "material_quicklime", 360 ], [ "concrete", 18 ] ],
- [ [ "wood_panel", 16 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northeast" } ]
},
{
"type": "recipe",
@@ -46,30 +27,7 @@
"blueprint_name": "southeast storage room",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_southeast" } ],
- "blueprint_excludes": [ { "id": "fbml_southeast" } ],
- "blueprint_needs": {
- "time": "3 d 18 h 25 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 176 ] ],
- [ [ "concrete", 11 ], [ "material_quicklime", 220 ], [ "material_sand", 220 ] ],
- [ [ "material_soil", 2640 ] ],
- [ [ "nail", 512 ] ],
- [ [ "pointy_stick", 22 ], [ "spear_wood", 22 ] ],
- [ [ "rope_6", 2 ], [ "rope_makeshift_6", 2 ] ],
- [ [ "water", 1100 ], [ "water_clean", 1100 ] ],
- [ [ "wood_panel", 29 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southeast" } ]
},
{
"type": "recipe",
@@ -84,25 +42,7 @@
"blueprint_name": "southwest stable",
"blueprint_requires": [ { "id": "faction_base_livestock_0" } ],
"blueprint_provides": [ { "id": "fbml_southwest" }, { "id": "stables" } ],
- "blueprint_excludes": [ { "id": "fbml_southwest" } ],
- "blueprint_needs": {
- "time": "4 d 17 h 45 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 38 ], [ "spear_wood", 38 ] ],
- [ [ "2x4", 161 ] ],
- [ [ "nail", 432 ] ],
- [ [ "material_soil", 3600 ] ],
- [ [ "water", 1500 ], [ "water_clean", 1500 ] ],
- [ [ "material_sand", 300 ], [ "material_quicklime", 300 ], [ "concrete", 15 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "wood_panel", 17 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southwest" } ]
},
{
"type": "recipe",
@@ -117,25 +57,7 @@
"blueprint_name": "west stable",
"blueprint_requires": [ { "id": "fbml_southwest" } ],
"blueprint_provides": [ { "id": "fbml_west" } ],
- "blueprint_excludes": [ { "id": "fbml_west" } ],
- "blueprint_needs": {
- "time": "4 d 7 h 15 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 34 ], [ "spear_wood", 34 ] ],
- [ [ "2x4", 178 ] ],
- [ [ "nail", 464 ] ],
- [ [ "material_soil", 3120 ] ],
- [ [ "water", 1300 ], [ "water_clean", 1300 ] ],
- [ [ "material_sand", 260 ], [ "material_quicklime", 260 ], [ "concrete", 13 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "wood_panel", 19 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_west" } ]
},
{
"type": "recipe",
@@ -150,24 +72,6 @@
"blueprint_name": "northwest stable",
"blueprint_requires": [ { "id": "fbml_west" } ],
"blueprint_provides": [ { "id": "fbml_northwest" } ],
- "blueprint_excludes": [ { "id": "fbml_northwest" } ],
- "blueprint_needs": {
- "time": "4 d 12 h 30 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 36 ], [ "spear_wood", 36 ] ],
- [ [ "2x4", 170 ] ],
- [ [ "nail", 444 ] ],
- [ [ "material_soil", 3360 ] ],
- [ [ "water", 1400 ], [ "water_clean", 1400 ] ],
- [ [ "material_sand", 280 ], [ "material_quicklime", 280 ], [ "concrete", 14 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "wood_panel", 18 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rock.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rock.json
index af4e6b497317c..c88636e7bbaa9 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rock.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_rock.json
@@ -12,25 +12,7 @@
"blueprint_name": "northeast coop",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_northeast" }, { "id": "chicken_coop" } ],
- "blueprint_excludes": [ { "id": "fbml_northeast" } ],
- "blueprint_needs": {
- "time": "5 d 5 h 45 m",
- "skills": [ [ "fabrication", 6 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 138 ] ],
- [ [ "nail", 360 ] ],
- [ [ "wire", 20 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "rock", 432 ] ],
- [ [ "pebble", 900 ] ],
- [ [ "mortar_build", 36 ] ],
- [ [ "wood_panel", 16 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northeast" } ]
},
{
"type": "recipe",
@@ -45,32 +27,7 @@
"blueprint_name": "southeast storage room",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_southeast" } ],
- "blueprint_excludes": [ { "id": "fbml_southeast" } ],
- "blueprint_needs": {
- "time": "3 d 16 h",
- "skills": [ [ "fabrication", 6 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ],
- [ { "id": "WRENCH" } ]
- ],
- "components": [
- [ [ "2x4", 142 ] ],
- [ [ "nail", 324 ] ],
- [ [ "wood_panel", 10 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "pipe", 60 ] ],
- [ [ "sheet_metal", 10 ] ],
- [ [ "glass_sheet", 4 ] ],
- [ [ "rock", 264 ] ],
- [ [ "pebble", 550 ] ],
- [ [ "mortar_build", 22 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southeast" } ]
},
{
"type": "recipe",
@@ -85,25 +42,7 @@
"blueprint_name": "southwest stable",
"blueprint_requires": [ { "id": "faction_base_livestock_0" } ],
"blueprint_provides": [ { "id": "fbml_southwest" }, { "id": "stables" } ],
- "blueprint_excludes": [ { "id": "fbml_southwest" } ],
- "blueprint_needs": {
- "time": "4 d 14 h",
- "skills": [ [ "fabrication", 6 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 161 ] ],
- [ [ "nail", 432 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "rock", 360 ] ],
- [ [ "pebble", 750 ] ],
- [ [ "mortar_build", 30 ] ],
- [ [ "wood_panel", 17 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southwest" } ]
},
{
"type": "recipe",
@@ -118,25 +57,7 @@
"blueprint_name": "west stable",
"blueprint_requires": [ { "id": "fbml_southwest" } ],
"blueprint_provides": [ { "id": "fbml_west" } ],
- "blueprint_excludes": [ { "id": "fbml_west" } ],
- "blueprint_needs": {
- "time": "4 d 4 h",
- "skills": [ [ "fabrication", 6 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 178 ] ],
- [ [ "nail", 464 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "rock", 312 ] ],
- [ [ "pebble", 650 ] ],
- [ [ "mortar_build", 26 ] ],
- [ [ "wood_panel", 19 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_west" } ]
},
{
"type": "recipe",
@@ -151,24 +72,6 @@
"blueprint_name": "northwest stable",
"blueprint_requires": [ { "id": "fbml_west" } ],
"blueprint_provides": [ { "id": "fbml_northwest" } ],
- "blueprint_excludes": [ { "id": "fbml_northwest" } ],
- "blueprint_needs": {
- "time": "4 d 9 h",
- "skills": [ [ "fabrication", 6 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 170 ] ],
- [ [ "nail", 444 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "rock", 336 ] ],
- [ [ "pebble", 700 ] ],
- [ [ "mortar_build", 28 ] ],
- [ [ "wood_panel", 18 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wad.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wad.json
index c861c90686d20..a11990b364329 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wad.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wad.json
@@ -12,26 +12,7 @@
"blueprint_name": "northeast coop",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_northeast" }, { "id": "chicken_coop" } ],
- "blueprint_excludes": [ { "id": "fbml_northeast" } ],
- "blueprint_needs": {
- "time": "1 d 23 h 45 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 318 ] ],
- [ [ "nail", 360 ] ],
- [ [ "wire", 20 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "material_quicklime", 144 ], [ "material_limestone", 144 ], [ "clay_lump", 144 ] ],
- [ [ "pebble", 360 ], [ "material_sand", 360 ] ],
- [ [ "straw_pile", 144 ], [ "cattail_stalk", 144 ], [ "dogbane", 144 ], [ "pine_bough", 144 ] ],
- [ [ "water", 180 ], [ "water_clean", 180 ] ],
- [ [ "wood_panel", 16 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northeast" } ]
},
{
"type": "recipe",
@@ -46,25 +27,7 @@
"blueprint_name": "southeast storage room",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_southeast" } ],
- "blueprint_excludes": [ { "id": "fbml_southeast" } ],
- "blueprint_needs": {
- "time": "1 d 14 h 20 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 246 ] ],
- [ [ "cattail_stalk", 104 ], [ "dogbane", 104 ], [ "pine_bough", 104 ], [ "straw_pile", 104 ] ],
- [ [ "clay_lump", 104 ], [ "material_limestone", 104 ], [ "material_quicklime", 104 ] ],
- [ [ "material_sand", 260 ], [ "pebble", 260 ] ],
- [ [ "nail", 392 ] ],
- [ [ "rope_6", 2 ], [ "rope_makeshift_6", 2 ] ],
- [ [ "water", 130 ], [ "water_clean", 130 ] ],
- [ [ "wood_panel", 29 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southeast" } ]
},
{
"type": "recipe",
@@ -79,31 +42,7 @@
"blueprint_name": "southwest stable",
"blueprint_requires": [ { "id": "faction_base_livestock_0" } ],
"blueprint_provides": [ { "id": "fbml_southwest" }, { "id": "stables" } ],
- "blueprint_excludes": [ { "id": "fbml_southwest" } ],
- "blueprint_needs": {
- "time": "1 d 21 h",
- "skills": [ [ "fabrication", 3 ], [ "survival", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 311 ] ],
- [ [ "nail", 432 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "material_quicklime", 120 ], [ "material_limestone", 120 ], [ "clay_lump", 120 ] ],
- [ [ "pebble", 300 ], [ "material_sand", 300 ] ],
- [ [ "straw_pile", 120 ], [ "cattail_stalk", 120 ], [ "dogbane", 120 ], [ "pine_bough", 120 ] ],
- [ [ "water", 150 ], [ "water_clean", 150 ] ],
- [ [ "wood_panel", 17 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southwest" } ]
},
{
"type": "recipe",
@@ -118,31 +57,7 @@
"blueprint_name": "west stable",
"blueprint_requires": [ { "id": "fbml_southwest" } ],
"blueprint_provides": [ { "id": "fbml_west" } ],
- "blueprint_excludes": [ { "id": "fbml_west" } ],
- "blueprint_needs": {
- "time": "1 d 19 h 40 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 308 ] ],
- [ [ "nail", 464 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "material_quicklime", 104 ], [ "material_limestone", 104 ], [ "clay_lump", 104 ] ],
- [ [ "pebble", 260 ], [ "material_sand", 260 ] ],
- [ [ "straw_pile", 104 ], [ "cattail_stalk", 104 ], [ "dogbane", 104 ], [ "pine_bough", 104 ] ],
- [ [ "water", 130 ], [ "water_clean", 130 ] ],
- [ [ "wood_panel", 19 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_west" } ]
},
{
"type": "recipe",
@@ -157,30 +72,6 @@
"blueprint_name": "northwest stable",
"blueprint_requires": [ { "id": "fbml_west" } ],
"blueprint_provides": [ { "id": "fbml_northwest" } ],
- "blueprint_excludes": [ { "id": "fbml_northwest" } ],
- "blueprint_needs": {
- "time": "1 d 20 h 20 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 310 ] ],
- [ [ "nail", 444 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "material_quicklime", 112 ], [ "material_limestone", 112 ], [ "clay_lump", 112 ] ],
- [ [ "pebble", 280 ], [ "material_sand", 280 ] ],
- [ [ "straw_pile", 112 ], [ "cattail_stalk", 112 ], [ "dogbane", 112 ], [ "pine_bough", 112 ] ],
- [ [ "water", 140 ], [ "water_clean", 140 ] ],
- [ [ "wood_panel", 18 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wood.json b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wood.json
index eb9da4bf2921d..a314d080c5767 100644
--- a/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wood.json
+++ b/data/json/recipes/basecamps/recipe_modular_livestock/recipe_modular_livestock_wood.json
@@ -12,16 +12,7 @@
"blueprint_name": "northeast coop",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_northeast" }, { "id": "chicken_coop" } ],
- "blueprint_excludes": [ { "id": "fbml_northeast" } ],
- "blueprint_needs": {
- "time": "1 d 17 h 45 m",
- "skills": [ [ "fabrication", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [ [ [ "2x4", 318 ] ], [ [ "hinge", 2 ] ], [ [ "nail", 1080 ] ], [ [ "wire", 20 ] ], [ [ "wood_panel", 52 ] ] ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northeast" } ]
},
{
"type": "recipe",
@@ -36,24 +27,7 @@
"blueprint_name": "southeast storage room",
"blueprint_requires": [ { "id": "fbml_0" } ],
"blueprint_provides": [ { "id": "fbml_southeast" } ],
- "blueprint_excludes": [ { "id": "fbml_southeast" } ],
- "blueprint_needs": {
- "time": "1 d 12 h 40 m",
- "skills": [ [ "fabrication", 3 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], [ { "id": "WRENCH" } ] ],
- "components": [
- [ [ "2x4", 252 ] ],
- [ [ "nail", 764 ] ],
- [ [ "wood_panel", 32 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "pipe", 60 ] ],
- [ [ "sheet_metal", 10 ] ],
- [ [ "glass_sheet", 4 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southeast" } ]
},
{
"type": "recipe",
@@ -68,22 +42,7 @@
"blueprint_name": "southwest stable",
"blueprint_requires": [ { "id": "faction_base_livestock_0" } ],
"blueprint_provides": [ { "id": "fbml_southwest" }, { "id": "stables" } ],
- "blueprint_excludes": [ { "id": "fbml_southwest" } ],
- "blueprint_needs": {
- "time": "1 d 16 h",
- "skills": [ [ "fabrication", 3 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 311 ] ],
- [ [ "hinge", 2 ] ],
- [ [ "nail", 1032 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "wood_panel", 47 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_southwest" } ]
},
{
"type": "recipe",
@@ -98,22 +57,7 @@
"blueprint_name": "west stable",
"blueprint_requires": [ { "id": "fbml_southwest" } ],
"blueprint_provides": [ { "id": "fbml_west" } ],
- "blueprint_excludes": [ { "id": "fbml_west" } ],
- "blueprint_needs": {
- "time": "1 d 15 h 20 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 308 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "nail", 984 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "wood_panel", 45 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_west" } ]
},
{
"type": "recipe",
@@ -128,21 +72,6 @@
"blueprint_name": "northwest stable",
"blueprint_requires": [ { "id": "fbml_west" } ],
"blueprint_provides": [ { "id": "fbml_northwest" } ],
- "blueprint_excludes": [ { "id": "fbml_northwest" } ],
- "blueprint_needs": {
- "time": "1 d 15 h 40 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 1 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 310 ] ],
- [ [ "hinge", 4 ] ],
- [ [ "nail", 1004 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "wood_panel", 46 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbml_northwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_saltworks/recipe_modular_saltworks_rammed_earth.json b/data/json/recipes/basecamps/recipe_modular_saltworks/recipe_modular_saltworks_rammed_earth.json
index b17874bdb4203..4161969d3dd07 100644
--- a/data/json/recipes/basecamps/recipe_modular_saltworks/recipe_modular_saltworks_rammed_earth.json
+++ b/data/json/recipes/basecamps/recipe_modular_saltworks/recipe_modular_saltworks_rammed_earth.json
@@ -12,30 +12,7 @@
"blueprint_name": "NE rammed earth saltpan",
"blueprint_requires": [ { "id": "fbmsw_0" } ],
"blueprint_provides": [ { "id": "fbmsw_northeast" }, { "id": "Salt_Pan" }, { "id": "kitchen" }, { "id": "saltworks_recipes_1" } ],
- "blueprint_excludes": [ { "id": "fbmsw_northeast" } ],
- "blueprint_needs": {
- "time": "6 d 5 h 10 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 211 ] ],
- [ [ "concrete", 20 ], [ "material_quicklime", 400 ], [ "material_sand", 400 ] ],
- [ [ "material_soil", 4800 ] ],
- [ [ "nail", 486 ] ],
- [ [ "pointy_stick", 40 ], [ "spear_wood", 40 ] ],
- [ [ "rope_6", 2 ], [ "rope_makeshift_6", 2 ] ],
- [ [ "water", 2000 ], [ "water_clean", 2000 ] ],
- [ [ "wood_panel", 22 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmsw_northeast" } ]
},
{
"type": "recipe",
@@ -50,33 +27,7 @@
"blueprint_name": "SE rammed earth storage room",
"blueprint_requires": [ { "id": "fbmsw_0" } ],
"blueprint_provides": [ { "id": "fbmsw_southeast" } ],
- "blueprint_excludes": [ { "id": "fbmsw_southeast" } ],
- "blueprint_needs": {
- "time": "3 d 10 h 45 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ],
- [ { "id": "WRENCH" } ]
- ],
- "components": [
- [ [ "2x4", 98 ] ],
- [ [ "concrete", 11 ], [ "material_quicklime", 220 ], [ "material_sand", 220 ] ],
- [ [ "material_soil", 2640 ] ],
- [ [ "nail", 192 ] ],
- [ [ "pipe", 60 ] ],
- [ [ "pointy_stick", 22 ], [ "spear_wood", 22 ] ],
- [ [ "rope_6", 2 ], [ "rope_makeshift_6", 2 ] ],
- [ [ "sheet_metal", 10 ] ],
- [ [ "water", 1100 ], [ "water_clean", 1100 ] ],
- [ [ "wood_panel", 3 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmsw_southeast" } ]
},
{
"type": "recipe",
@@ -91,35 +42,6 @@
"blueprint_name": "SW rammed earth brewery",
"blueprint_requires": [ { "id": "fbmsw_0" } ],
"blueprint_provides": [ { "id": "fbmsw_southwest" }, { "id": "saltworks_recipes_2" }, { "id": "brewery" } ],
- "blueprint_excludes": [ { "id": "fbmsw_southwest" } ],
- "blueprint_needs": {
- "time": "6 d 17 h 45 m",
- "skills": [ [ "cooking", 3 ], [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_M", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ],
- [ { "id": "WRENCH" } ]
- ],
- "components": [
- [ [ "2x4", 240 ] ],
- [ [ "nail", 510 ] ],
- [ [ "pointy_stick", 42 ], [ "spear_wood", 42 ] ],
- [ [ "pipe", 36 ] ],
- [ [ "sheet_metal", 7 ] ],
- [ [ "sheet_metal_small", 12 ] ],
- [ [ "water_faucet", 2 ] ],
- [ [ "material_soil", 5040 ] ],
- [ [ "water", 2100 ], [ "water_clean", 2100 ] ],
- [ [ "material_sand", 420 ], [ "material_quicklime", 420 ], [ "concrete", 21 ] ],
- [ [ "rope_makeshift_6", 2 ], [ "rope_6", 2 ] ],
- [ [ "wood_panel", 20 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmsw_southwest" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_storehouse/recipe_modular_storehouse_rammed_earth.json b/data/json/recipes/basecamps/recipe_modular_storehouse/recipe_modular_storehouse_rammed_earth.json
index 238fb5c213f79..50aa63ba59053 100644
--- a/data/json/recipes/basecamps/recipe_modular_storehouse/recipe_modular_storehouse_rammed_earth.json
+++ b/data/json/recipes/basecamps/recipe_modular_storehouse/recipe_modular_storehouse_rammed_earth.json
@@ -12,24 +12,7 @@
"blueprint_name": "east storage wing",
"blueprint_requires": [ { "id": "fbms_0" } ],
"blueprint_provides": [ { "id": "fbms_east" } ],
- "blueprint_excludes": [ { "id": "fbms_east" } ],
- "blueprint_needs": {
- "time": "4 d 3 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 24 ], [ "spear_wood", 24 ] ],
- [ [ "material_soil", 3360 ] ],
- [ [ "water", 1200 ], [ "water_clean", 1200 ] ],
- [ [ "material_sand", 240 ], [ "material_quicklime", 240 ], [ "concrete", 12 ] ],
- [ [ "log", 24 ] ],
- [ [ "stick", 48 ], [ "2x4", 96 ] ],
- [ [ "birchbark", 144 ], [ "pine_bough", 144 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_east" } ]
},
{
"type": "recipe",
@@ -44,24 +27,7 @@
"blueprint_name": "east storage wing",
"blueprint_requires": [ { "id": "fbms_0" } ],
"blueprint_provides": [ { "id": "fbms_west" } ],
- "blueprint_excludes": [ { "id": "fbms_west" } ],
- "blueprint_needs": {
- "time": "4 d 3 h",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 24 ], [ "spear_wood", 24 ] ],
- [ [ "material_soil", 3360 ] ],
- [ [ "water", 1200 ], [ "water_clean", 1200 ] ],
- [ [ "material_sand", 240 ], [ "material_quicklime", 240 ], [ "concrete", 12 ] ],
- [ [ "log", 24 ] ],
- [ [ "stick", 48 ], [ "2x4", 96 ] ],
- [ [ "birchbark", 144 ], [ "pine_bough", 144 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_west" } ]
},
{
"type": "recipe",
@@ -76,25 +42,7 @@
"blueprint_name": "northwest storeroom corner",
"blueprint_requires": [ { "id": "fbms_west" } ],
"blueprint_provides": [ { "id": "fbms_northwest" } ],
- "blueprint_excludes": [ { "id": "fbms_northwest" } ],
- "blueprint_needs": {
- "time": "1 d 10 h 15 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "log", 10 ] ],
- [ [ "2x4", 32 ], [ "stick", 16 ] ],
- [ [ "birchbark", 48 ], [ "pine_bough", 48 ] ],
- [ [ "concrete", 4 ], [ "material_quicklime", 80 ], [ "material_sand", 80 ] ],
- [ [ "material_soil", 1120 ] ],
- [ [ "nail", 30 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_northwest" } ]
},
{
"type": "recipe",
@@ -109,25 +57,7 @@
"blueprint_name": "southwest storeroom corner",
"blueprint_requires": [ { "id": "fbms_west" } ],
"blueprint_provides": [ { "id": "fbms_southwest" } ],
- "blueprint_excludes": [ { "id": "fbms_southwest" } ],
- "blueprint_needs": {
- "time": "1 d 10 h 15 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "log", 10 ] ],
- [ [ "2x4", 32 ], [ "stick", 16 ] ],
- [ [ "birchbark", 48 ], [ "pine_bough", 48 ] ],
- [ [ "concrete", 4 ], [ "material_quicklime", 80 ], [ "material_sand", 80 ] ],
- [ [ "material_soil", 1120 ] ],
- [ [ "nail", 30 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_southwest" } ]
},
{
"type": "recipe",
@@ -142,25 +72,7 @@
"blueprint_name": "northeast storeroom corner",
"blueprint_requires": [ { "id": "fbms_east" } ],
"blueprint_provides": [ { "id": "fbms_northeast" } ],
- "blueprint_excludes": [ { "id": "fbms_northeast" } ],
- "blueprint_needs": {
- "time": "1 d 10 h 15 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "log", 10 ] ],
- [ [ "2x4", 32 ], [ "stick", 16 ] ],
- [ [ "birchbark", 48 ], [ "pine_bough", 48 ] ],
- [ [ "concrete", 4 ], [ "material_quicklime", 80 ], [ "material_sand", 80 ] ],
- [ [ "material_soil", 1120 ] ],
- [ [ "nail", 30 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_northeast" } ]
},
{
"type": "recipe",
@@ -175,25 +87,7 @@
"blueprint_name": "southeast storeroom corner",
"blueprint_requires": [ { "id": "fbms_east" } ],
"blueprint_provides": [ { "id": "fbms_southeast" } ],
- "blueprint_excludes": [ { "id": "fbms_southeast" } ],
- "blueprint_needs": {
- "time": "1 d 10 h 15 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "log", 10 ] ],
- [ [ "2x4", 32 ], [ "stick", 16 ] ],
- [ [ "birchbark", 48 ], [ "pine_bough", 48 ] ],
- [ [ "concrete", 4 ], [ "material_quicklime", 80 ], [ "material_sand", 80 ] ],
- [ [ "material_soil", 1120 ] ],
- [ [ "nail", 30 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_southeast" } ]
},
{
"type": "recipe",
@@ -208,26 +102,7 @@
"blueprint_name": "south storeroom entrance",
"blueprint_requires": [ { "id": "fbms_southeast" }, { "id": "fbms_southwest" } ],
"blueprint_provides": [ { "id": "fbms_south" } ],
- "blueprint_excludes": [ { "id": "fbms_south" } ],
- "blueprint_needs": {
- "time": "3 d 6 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 258 ] ],
- [ [ "nail", 108 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "material_soil", 1920 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ],
- [ [ "material_sand", 80 ], [ "material_quicklime", 80 ], [ "concrete", 4 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 48 ] ],
- [ [ "birchbark", 288 ], [ "pine_bough", 288 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_south" } ]
},
{
"type": "recipe",
@@ -242,26 +117,7 @@
"blueprint_name": "north storeroom entrance",
"blueprint_requires": [ { "id": "fbms_northeast" }, { "id": "fbms_northwest" } ],
"blueprint_provides": [ { "id": "fbms_north" } ],
- "blueprint_excludes": [ { "id": "fbms_north" } ],
- "blueprint_needs": {
- "time": "3 d 6 h 30 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "CUT" } ], [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 258 ] ],
- [ [ "nail", 108 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "material_soil", 1920 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ],
- [ [ "material_sand", 80 ], [ "material_quicklime", 80 ], [ "concrete", 4 ] ],
- [ [ "rope_makeshift_6", 4 ], [ "rope_6", 4 ] ],
- [ [ "log", 48 ] ],
- [ [ "birchbark", 288 ], [ "pine_bough", 288 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_north" } ]
},
{
"type": "recipe",
@@ -276,20 +132,6 @@
"blueprint_name": "north storeroom entrance",
"blueprint_requires": [ { "id": "fbms_north" }, { "id": "fbms_south" } ],
"blueprint_provides": [ { "id": "fbms_center" } ],
- "blueprint_excludes": [ { "id": "fbms_center" } ],
- "blueprint_needs": {
- "time": "5 d",
- "skills": [ [ "fabrication", 4 ] ],
- "inline": {
- "tools": [ ],
- "qualities": [ [ { "id": "HAMMER", "level": 2 } ] ],
- "components": [
- [ [ "log", 120 ] ],
- [ [ "stick", 240 ], [ "2x4", 480 ] ],
- [ [ "material_soil", 2400 ] ],
- [ [ "birchbark", 720 ], [ "pine_bough", 720 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbms_center" } ]
}
]
diff --git a/data/json/recipes/basecamps/recipe_modular_workshop/recipe_modular_workshop_rammed_earth.json b/data/json/recipes/basecamps/recipe_modular_workshop/recipe_modular_workshop_rammed_earth.json
index e61bed0f2ff8a..192a22ca4770e 100644
--- a/data/json/recipes/basecamps/recipe_modular_workshop/recipe_modular_workshop_rammed_earth.json
+++ b/data/json/recipes/basecamps/recipe_modular_workshop/recipe_modular_workshop_rammed_earth.json
@@ -12,24 +12,7 @@
"blueprint_name": "northeast wall",
"blueprint_requires": [ { "id": "fbmw_0" } ],
"blueprint_provides": [ { "id": "fbmw_northeast" } ],
- "blueprint_excludes": [ { "id": "fbmw_northeast" } ],
- "blueprint_needs": {
- "time": "3 d 11 h 45 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 230 ] ],
- [ [ "concrete", 9 ], [ "material_quicklime", 180 ], [ "material_sand", 180 ] ],
- [ [ "material_soil", 2160 ] ],
- [ [ "nail", 560 ] ],
- [ [ "pointy_stick", 18 ], [ "spear_wood", 18 ] ],
- [ [ "water", 900 ], [ "water_clean", 900 ] ],
- [ [ "wood_panel", 25 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmw_northeast" } ]
},
{
"type": "recipe",
@@ -44,30 +27,7 @@
"blueprint_name": "north wall",
"blueprint_requires": [ { "id": "fbmw_northeast", "amount": 3 } ],
"blueprint_provides": [ { "id": "fbmw_north" } ],
- "blueprint_excludes": [ { "id": "fbmw_north" } ],
- "blueprint_needs": {
- "time": "2 d 6 h 40 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 135 ] ],
- [ [ "concrete", 6 ], [ "material_quicklime", 120 ], [ "material_sand", 120 ] ],
- [ [ "material_soil", 1440 ] ],
- [ [ "nail", 382 ] ],
- [ [ "pointy_stick", 12 ], [ "spear_wood", 12 ] ],
- [ [ "rope_6", 2 ], [ "rope_makeshift_6", 2 ] ],
- [ [ "water", 600 ], [ "water_clean", 600 ] ],
- [ [ "wood_panel", 22 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmw_north" } ]
},
{
"type": "recipe",
@@ -82,31 +42,7 @@
"blueprint_name": "east forage wall",
"blueprint_requires": [ { "id": "fbmw_north" } ],
"blueprint_provides": [ { "id": "fbmw_east" }, { "id": "blacksmith_recipes_3" } ],
- "blueprint_excludes": [ { "id": "fbmw_east" } ],
- "blueprint_needs": {
- "time": "2 d 14 h 25 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 285 ] ],
- [ [ "concrete", 4 ], [ "material_quicklime", 80 ], [ "material_sand", 80 ] ],
- [ [ "material_soil", 960 ] ],
- [ [ "nail", 734 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "rock", 40 ] ],
- [ [ "rope_6", 2 ], [ "rope_makeshift_6", 2 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ],
- [ [ "wood_panel", 38 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmw_east" } ]
},
{
"type": "recipe",
@@ -121,25 +57,7 @@
"blueprint_name": "west forage wall",
"blueprint_requires": [ { "id": "fbmw_east" } ],
"blueprint_provides": [ { "id": "fbmw_center" } ],
- "blueprint_excludes": [ { "id": "fbmw_center" } ],
- "blueprint_needs": {
- "time": "1 d 19 h 5 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ], [ "tailor", 3 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "2x4", 152 ] ],
- [ [ "blanket", 1 ], [ "down_blanket", 1 ], [ "fur_blanket", 1 ] ],
- [ [ "concrete", 4 ], [ "material_quicklime", 80 ], [ "material_sand", 80 ] ],
- [ [ "material_soil", 960 ] ],
- [ [ "nail", 372 ] ],
- [ [ "pointy_stick", 8 ], [ "spear_wood", 8 ] ],
- [ [ "water", 400 ], [ "water_clean", 400 ] ],
- [ [ "wood_panel", 19 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmw_center" } ]
},
{
"type": "recipe",
@@ -156,38 +74,7 @@
"blueprint_provides": [ { "id": "fbmw_north" }, { "id": "blacksmith_recipes_4" } ],
"blueprint_excludes": [ { "id": "fbmw_north", "amount": 2 } ],
"blueprint_resources": [ "tongs", "chisel", "hammer", "swage" ],
- "components": [ [ [ "tongs", 1 ] ], [ [ "chisel", 1 ] ], [ [ "hammer", 1 ] ], [ [ "swage", 1 ] ] ],
- "blueprint_needs": {
- "time": "1 d 16 h 55 m",
- "skills": [ [ "fabrication", 4 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [
- [ [ "frame_wood_light", -1 ] ],
- [ [ "log", -1 ] ],
- [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ]
- ],
- "qualities": [
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "GLARE", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 132 ] ],
- [ [ "clay_lump", 12 ], [ "material_cement", 50 ], [ "mortar_build", 1 ] ],
- [ [ "concrete", 3 ], [ "material_quicklime", 60 ], [ "material_sand", 60 ] ],
- [ [ "material_soil", 720 ] ],
- [ [ "nail", 380 ] ],
- [ [ "pipe", 16 ] ],
- [ [ "pointy_stick", 6 ], [ "spear_wood", 6 ] ],
- [ [ "rock", 40 ] ],
- [ [ "sheet_metal", 4 ] ],
- [ [ "sheet_metal_small", 8 ] ],
- [ [ "water", 302 ], [ "water_clean", 302 ] ],
- [ [ "wood_panel", 23 ] ]
- ]
- }
- }
+ "components": [ [ [ "tongs", 1 ] ], [ [ "chisel", 1 ] ], [ [ "hammer", 1 ] ], [ [ "swage", 1 ] ] ]
},
{
"type": "recipe",
@@ -202,40 +89,7 @@
"blueprint_name": "northwest and south pottery wall",
"blueprint_requires": [ { "id": "fbmw_north", "amount": 2 } ],
"blueprint_provides": [ { "id": "fbmw_northwest" }, { "id": "blacksmith_recipes_5" } ],
- "blueprint_excludes": [ { "id": "fbmw_northwest" } ],
- "blueprint_needs": {
- "time": "3 d 19 h 13 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [
- [ [ "frame_wood_light", -1 ] ],
- [ [ "log", -1 ] ],
- [
- [ "machete", -1 ],
- [ "makeshift_machete", -1 ],
- [ "scythe", -1 ],
- [ "sickle", -1 ],
- [ "survivor_machete", -1 ]
- ]
- ],
- "qualities": [
- [ { "id": "CUT" } ],
- [ { "id": "DIG", "level": 2 } ],
- [ { "id": "HAMMER", "level": 2 } ],
- [ { "id": "SAW_W", "level": 2 } ]
- ],
- "components": [
- [ [ "2x4", 170 ] ],
- [ [ "concrete", 11 ], [ "material_quicklime", 220 ], [ "material_sand", 220 ] ],
- [ [ "material_soil", 2640 ] ],
- [ [ "nail", 514 ] ],
- [ [ "pointy_stick", 22 ], [ "spear_wood", 22 ] ],
- [ [ "rope_6", 2 ], [ "rope_makeshift_6", 2 ] ],
- [ [ "water", 1100 ], [ "water_clean", 1100 ] ],
- [ [ "wood_panel", 30 ] ]
- ]
- }
- }
+ "blueprint_excludes": [ { "id": "fbmw_northwest" } ]
},
{
"type": "recipe",
@@ -252,28 +106,6 @@
"blueprint_provides": [ { "id": "fbmw_southeast" }, { "id": "fbmw_south" }, { "id": "blacksmith_recipes_7" } ],
"blueprint_excludes": [ { "id": "fbmw_northsoutheast" }, { "id": "fbmw_south" } ],
"blueprint_resources": [ "wrench", "pliers", "fake_drop_hammer" ],
- "components": [ [ [ "wrench", 1 ] ], [ [ "pliers", 1 ] ] ],
- "blueprint_needs": {
- "time": "4 d 12 h 30 m",
- "skills": [ [ "fabrication", 3 ], [ "survival", 2 ] ],
- "inline": {
- "tools": [ [ [ "frame_wood_light", -1 ] ], [ [ "log", -1 ] ] ],
- "qualities": [ [ { "id": "DIG", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ],
- "components": [
- [ [ "pointy_stick", 20 ], [ "spear_wood", 20 ] ],
- [ [ "material_soil", 2400 ] ],
- [ [ "water", 1000 ], [ "water_clean", 1000 ] ],
- [ [ "material_sand", 200 ], [ "material_quicklime", 200 ], [ "concrete", 10 ] ],
- [ [ "metal_tank", 2 ] ],
- [ [ "water_faucet", 2 ] ],
- [ [ "anvil", 1 ] ],
- [ [ "chain", 4 ] ],
- [ [ "pipe", 3 ] ],
- [ [ "wood_panel", 44 ] ],
- [ [ "2x4", 352 ] ],
- [ [ "nail", 880 ] ]
- ]
- }
- }
+ "components": [ [ [ "wrench", 1 ] ], [ [ "pliers", 1 ] ] ]
}
]
diff --git a/data/json/recipes/practice/fabrication.json b/data/json/recipes/practice/fabrication.json
new file mode 100644
index 0000000000000..c9d53179588f2
--- /dev/null
+++ b/data/json/recipes/practice/fabrication.json
@@ -0,0 +1,25 @@
+[
+ {
+ "id": "prac_fletching",
+ "type": "practice",
+ "activity_level": "NO_EXERCISE",
+ "category": "CC_PRACTICE",
+ "subcategory": "CSC_PRACTICE_FABRICATION",
+ "name": "fletching",
+ "description": "Practice fletching by modifying, studying and testing the aerodynamics of some arrows or bolts.",
+ "skill_used": "fabrication",
+ "skills_required": [ [ "archery", 1 ] ],
+ "practice_data": { "min_difficulty": 1, "max_difficulty": 2, "skill_limit": 3 },
+ "proficiencies": [ { "proficiency": "prof_fletching", "fail_multiplier": 1, "time_multiplier": 1 } ],
+ "time": "1 h",
+ "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "CUT", "level": 1 } ],
+ "//": "Modifying so much the arrows/bolts will cause them to eventually lose their shape",
+ "components": [
+ [ [ "arrow_fire_hardened_fletched", 4 ], [ "bolt_crude", 4 ] ],
+ [ [ "adhesive", 1, "LIST" ], [ "filament", 20, "LIST" ] ],
+ [ [ "fletching", 1, "LIST" ] ]
+ ],
+ "autolearn": [ [ "fabrication", 2 ] ],
+ "book_learn": [ [ "recipe_arrows", 1 ] ]
+ }
+]
diff --git a/data/json/recipes/practice/social.json b/data/json/recipes/practice/social.json
new file mode 100644
index 0000000000000..3294006714027
--- /dev/null
+++ b/data/json/recipes/practice/social.json
@@ -0,0 +1,32 @@
+[
+ {
+ "id": "prac_speech_beg",
+ "type": "practice",
+ "activity_level": "NO_EXERCISE",
+ "category": "CC_PRACTICE",
+ "subcategory": "CSC_PRACTICE_SOCIAL",
+ "name": "social (beginner)",
+ "description": "Practice speaking in front of a mirror to improve your poise and eloquence and project confidence.",
+ "skill_used": "speech",
+ "time": "1 h",
+ "practice_data": { "min_difficulty": 0, "max_difficulty": 2, "skill_limit": 3 },
+ "autolearn": [ [ "speech", 2 ] ],
+ "book_learn": [ [ "manual_business", 1 ], [ "manual_speech", 1 ] ],
+ "tools": [ [ "mirror" ] ]
+ },
+ {
+ "id": "prac_speech_int",
+ "type": "practice",
+ "activity_level": "NO_EXERCISE",
+ "category": "CC_PRACTICE",
+ "subcategory": "CSC_PRACTICE_SOCIAL",
+ "name": "social (intermediate)",
+ "description": "Practice advanced persuasion and negotiation techniques while acting out both sides of a dialogue in front of a mirror.",
+ "skill_used": "speech",
+ "time": "1 h",
+ "practice_data": { "min_difficulty": 3, "max_difficulty": 5, "skill_limit": 6 },
+ "autolearn": [ [ "speech", 5 ] ],
+ "book_learn": [ [ "textbook_speech", 4 ] ],
+ "tools": [ [ "mirror" ] ]
+ }
+]
diff --git a/data/json/recipes/practice/tailoring.json b/data/json/recipes/practice/tailoring.json
new file mode 100644
index 0000000000000..eee88eb3e8a2b
--- /dev/null
+++ b/data/json/recipes/practice/tailoring.json
@@ -0,0 +1,18 @@
+[
+ {
+ "id": "prac_leather_beg",
+ "type": "practice",
+ "activity_level": "NO_EXERCISE",
+ "category": "CC_PRACTICE",
+ "subcategory": "CSC_PRACTICE_TAILORING",
+ "name": "leatherworking (beginner)",
+ "description": "Practice basic leatherworking skills by cutting and punching holes in leather, and stitching together leather patches.",
+ "skill_used": "tailor",
+ "proficiencies": [ { "proficiency": "prof_leatherworking_basic", "fail_multiplier": 1, "time_multiplier": 1 } ],
+ "time": "1 h",
+ "practice_data": { "min_difficulty": 1, "max_difficulty": 2, "skill_limit": 3 },
+ "autolearn": [ [ "tailor", 2 ] ],
+ "book_learn": [ [ "mag_animecon", 0 ], [ "dieselpunk_tailor", 0 ] ],
+ "using": [ [ "tailoring_leather_small", 4 ], [ "filament", 20 ] ]
+ }
+]
diff --git a/data/json/snippets/effect_on_conditions.json b/data/json/snippets/effect_on_conditions.json
index 61778799f0b99..87c81a388cf2b 100644
--- a/data/json/snippets/effect_on_conditions.json
+++ b/data/json/snippets/effect_on_conditions.json
@@ -39,11 +39,11 @@
},
{
"type": "snippet",
- "category": "AMBIENT_SUBWAY",
+ "category": "",
"text": [
"The trains have long grown still, and your echoing footsteps are the only thing breaking the silence. For now.",
"The rails are slick here with a grey, quivering ooze welling up from below.",
- "There is a low, droning hum emenating from the rail making teeth ache.",
+ "There is a low, droning hum emanating from the rail, making your teeth ache.",
"The layer of dust is broken by a thick trail of stinking slime leading off into the darkness.",
"The air stings like chlorine in some spots, around black splashes etched into the concrete.",
"Here and there roots already break up the ceiling. How long will these tunnels last?",
@@ -57,10 +57,11 @@
"type": "snippet",
"category": "AMBIENT_LAB_SUBWAY",
"text": [
+ "",
"These tunnels look even more utilitarian than those of the normal line, with barely any emergency lights - not that they'd help you without power, of course.",
"Do you still know where you're going? Did you ever?",
"You could swear you already saw this spot already. Did you get turned around, or did the tunnels shift with you?",
- "Bullet marks pock the walls, interspersed with finger-deep scrathches and dried blood.",
+ "Bullet marks pock the walls, interspersed with finger-deep scratches and dried blood.",
"A bobbing light in the distance, a flurry of movement, and a drawn-out scream. You're alone with the darkness, again.",
"Behind you.",
"It is peaceful down here, away from the harsh sun and the noises of the new world. You could lose yourself in the dark, still embrace of the tunnels. Maybe you want to.",
diff --git a/data/json/techniques.json b/data/json/techniques.json
index f8ed54f961892..45237ce283398 100644
--- a/data/json/techniques.json
+++ b/data/json/techniques.json
@@ -206,7 +206,8 @@
"crit_ok": true,
"disarms": true,
"down_dur": 1,
- "knockback_dist": 1
+ "knockback_dist": 1,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ]
},
{
"type": "technique",
@@ -219,7 +220,8 @@
"block_counter": true,
"crit_ok": true,
"down_dur": 1,
- "knockback_dist": 1
+ "knockback_dist": 1,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ]
},
{
"type": "technique",
@@ -233,7 +235,8 @@
"dodge_counter": true,
"crit_ok": true,
"down_dur": 1,
- "knockback_dist": 1
+ "knockback_dist": 1,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ]
},
{
"type": "technique",
@@ -248,7 +251,8 @@
"crit_ok": true,
"disarms": true,
"down_dur": 1,
- "knockback_dist": 1
+ "knockback_dist": 1,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ]
},
{
"type": "technique",
@@ -494,7 +498,8 @@
"skill_requirements": [ { "name": "unarmed", "level": 2 } ],
"unarmed_allowed": true,
"dodge_counter": true,
- "down_dur": 1
+ "down_dur": 1,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.66 } ]
},
{
"type": "technique",
@@ -529,6 +534,7 @@
"block_counter": true,
"down_dur": 1,
"mult_bonuses": [
+ { "stat": "movecost", "scale": 0.5 },
{ "stat": "damage", "type": "bash", "scale": 0.5 },
{ "stat": "damage", "type": "cut", "scale": 0.5 },
{ "stat": "damage", "type": "stab", "scale": 0.5 }
@@ -545,6 +551,7 @@
"dodge_counter": true,
"stun_dur": 1,
"mult_bonuses": [
+ { "stat": "movecost", "scale": 0.5 },
{ "stat": "damage", "type": "bash", "scale": 0.5 },
{ "stat": "damage", "type": "cut", "scale": 0.5 },
{ "stat": "damage", "type": "stab", "scale": 0.5 }
@@ -690,6 +697,7 @@
"crit_ok": true,
"stun_dur": 1,
"mult_bonuses": [
+ { "stat": "movecost", "scale": 0.66 },
{ "stat": "damage", "type": "bash", "scale": 1.2 },
{ "stat": "damage", "type": "cut", "scale": 1.2 },
{ "stat": "damage", "type": "stab", "scale": 1.2 }
@@ -706,7 +714,7 @@
"crit_ok": true,
"down_dur": 2,
"mult_bonuses": [
- { "stat": "movecost", "scale": 0.0 },
+ { "stat": "movecost", "scale": 0.5 },
{ "stat": "damage", "type": "bash", "scale": 0.5 },
{ "stat": "damage", "type": "cut", "scale": 0.5 },
{ "stat": "damage", "type": "stab", "scale": 0.5 }
@@ -852,7 +860,8 @@
"skill_requirements": [ { "name": "unarmed", "level": 5 } ],
"unarmed_allowed": true,
"block_counter": true,
- "crit_ok": true
+ "crit_ok": true,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ]
},
{
"type": "technique",
@@ -960,7 +969,8 @@
"melee_allowed": true,
"unarmed_allowed": true,
"crit_ok": true,
- "block_counter": true
+ "block_counter": true,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ]
},
{
"type": "technique",
@@ -1006,7 +1016,8 @@
"crit_ok": true,
"dodge_counter": true,
"knockback_dist": 1,
- "knockback_spread": 1
+ "knockback_spread": 1,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.66 } ]
},
{
"type": "technique",
@@ -1373,6 +1384,7 @@
"crit_ok": true,
"knockback_dist": 1,
"mult_bonuses": [
+ { "stat": "movecost", "scale": 0.5 },
{ "stat": "damage", "type": "bash", "scale": 0.5 },
{ "stat": "damage", "type": "cut", "scale": 0.5 },
{ "stat": "damage", "type": "stab", "scale": 0.5 }
@@ -1618,7 +1630,7 @@
"unarmed_allowed": true,
"dodge_counter": true,
"crit_ok": true,
- "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ]
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 }, { "stat": "damage", "type": "bash", "scale": 1.25 } ]
},
{
"type": "technique",
diff --git a/data/mods/Aftershock/itemgroups/arcology_groups.json b/data/mods/Aftershock/itemgroups/arcology_groups.json
new file mode 100644
index 0000000000000..f359745f279da
--- /dev/null
+++ b/data/mods/Aftershock/itemgroups/arcology_groups.json
@@ -0,0 +1,7 @@
+[
+ {
+ "id": "arcology_vitamin_shop",
+ "type": "item_group",
+ "items": [ [ "cream_prot_cold", 25 ], [ "cream_greater_prot_cold", 5 ], [ "homeopathic_pills", 80 ] ]
+ }
+]
diff --git a/data/mods/Aftershock/items/inactiverobot.json b/data/mods/Aftershock/items/inactiverobot.json
index ae7149dc4cfd9..3551274a7cfd9 100644
--- a/data/mods/Aftershock/items/inactiverobot.json
+++ b/data/mods/Aftershock/items/inactiverobot.json
@@ -430,15 +430,20 @@
"bashing": 6,
"symbol": ";",
"color": "dark_gray",
- "flags": [ "LEAK_DAM", "RADIOACTIVE", "TRADER_AVOID" ]
+ "flags": [ "TRADER_AVOID" ]
},
{
"id": "bot_skitterbot_rat",
"type": "TOOL",
"copy-from": "bot_skitterbot_base",
"name": "inactive rat snatcher",
- "description": "A salvaged skitterbot repurposed for hunting small game. It attacks targets with pincers and an integrated tazer. Activate this item to deploy the robot.",
+ "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",
+ "price": "200 USD",
+ "to_hit": -3,
+ "bashing": 2,
"use_action": {
"type": "place_monster",
"monster_id": "mon_skitterbot_rat",
diff --git a/data/mods/Aftershock/items/tools.json b/data/mods/Aftershock/items/tools.json
index 284e63519b85f..5e27a9651a08c 100644
--- a/data/mods/Aftershock/items/tools.json
+++ b/data/mods/Aftershock/items/tools.json
@@ -179,7 +179,7 @@
"looks_like": "circsaw_off",
"color": "light_red",
"ammo": [ "gasoline" ],
- "max_charges": 500,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 500 } } ],
"charges_per_use": 1,
"use_action": { "target": "afs_power_cutter_on", "msg": "You rev up the power cutter!", "active": true, "type": "transform" },
"flags": [ "ALWAYS_TWOHAND", "NONCONDUCTIVE" ]
@@ -214,7 +214,7 @@
"looks_like": "circsaw_off",
"color": "yellow",
"ammo": [ "gasoline" ],
- "max_charges": 500,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 500 } } ],
"charges_per_use": 1,
"use_action": { "target": "afs_murdersaw_on", "msg": "You rev up the murdersaw!", "active": true, "type": "transform" },
"flags": [ "ALWAYS_TWOHAND", "NONCONDUCTIVE" ]
diff --git a/data/mods/Aftershock/maps/city_buildings.json b/data/mods/Aftershock/maps/city_buildings.json
index 9d1c3795747b1..433d78bd2a18c 100644
--- a/data/mods/Aftershock/maps/city_buildings.json
+++ b/data/mods/Aftershock/maps/city_buildings.json
@@ -13,6 +13,72 @@
],
"locations": [ "land" ]
},
+ {
+ "id": "afs_city_arcology1",
+ "type": "city_building",
+ "//": "needs work. remember to check against notes on phone",
+ "overmaps": [
+ { "point": [ 0, 0, 0 ], "overmap": "arcology_interior_center_robots_north" },
+ { "point": [ -1, 0, 0 ], "overmap": "arcology_interior_w_side_robots_north" },
+ { "point": [ 1, 0, 0 ], "overmap": "arcology_interior_e_side_robots_north" },
+ { "point": [ 0, -1, 0 ], "overmap": "arcology_interior_n_side_robots_north" },
+ { "point": [ 0, 1, 0 ], "overmap": "arcology_interior_s_side_robots_north" },
+ { "point": [ 1, -1, 0 ], "overmap": "arcology_interior_ne_corner_robots_north" },
+ { "point": [ -1, -1, 0 ], "overmap": "arcology_interior_nw_corner_robots_north" },
+ { "point": [ 1, 1, 0 ], "overmap": "arcology_interior_se_corner_robots_north" },
+ { "point": [ -1, 1, 0 ], "overmap": "arcology_interior_sw_corner_robots_north" },
+ { "point": [ -2, 1, 0 ], "overmap": "arcology_exterior_w_side_robots_north" },
+ { "point": [ -2, 0, 0 ], "overmap": "arcology_exterior_w_entrance_robots_north" },
+ { "point": [ -2, -1, 0 ], "overmap": "arcology_exterior_w_side_robots_north" },
+ { "point": [ 2, 1, 0 ], "overmap": "arcology_exterior_e_side_robots_north" },
+ { "point": [ 2, 0, 0 ], "overmap": "arcology_exterior_e_entrance_robots_north" },
+ { "point": [ 2, -1, 0 ], "overmap": "arcology_exterior_e_side_robots_north" },
+ { "point": [ -1, -2, 0 ], "overmap": "arcology_exterior_n_side_robots_north" },
+ { "point": [ 0, -2, 0 ], "overmap": "arcology_exterior_n_entrance_robots_north" },
+ { "point": [ 1, -2, 0 ], "overmap": "arcology_exterior_n_side_robots_north" },
+ { "point": [ 1, 2, 0 ], "overmap": "arcology_exterior_s_side_robots_north" },
+ { "point": [ 0, 2, 0 ], "overmap": "arcology_exterior_s_entrance_robots_north" },
+ { "point": [ -1, 2, 0 ], "overmap": "arcology_exterior_s_side_robots_north" },
+ { "point": [ 2, -2, 0 ], "overmap": "arcology_exterior_ne_corner_robots_north" },
+ { "point": [ -2, -2, 0 ], "overmap": "arcology_exterior_nw_corner_robots_north" },
+ { "point": [ 2, 2, 0 ], "overmap": "arcology_exterior_se_corner_robots_north" },
+ { "point": [ -2, 2, 0 ], "overmap": "arcology_exterior_sw_corner_robots_north" }
+ ],
+ "locations": [ "land" ]
+ },
+ {
+ "id": "afs_city_arcology2",
+ "type": "city_building",
+ "//": "needs work. remember to check against notes on phone",
+ "overmaps": [
+ { "point": [ 0, 0, 0 ], "overmap": "arcology_interior_center_uplifts_north" },
+ { "point": [ -1, 0, 0 ], "overmap": "arcology_interior_w_side_uplifts_north" },
+ { "point": [ 1, 0, 0 ], "overmap": "arcology_interior_e_side_uplifts_north" },
+ { "point": [ 0, -1, 0 ], "overmap": "arcology_interior_n_side_uplifts_north" },
+ { "point": [ 0, 1, 0 ], "overmap": "arcology_interior_s_side_uplifts_north" },
+ { "point": [ 1, -1, 0 ], "overmap": "arcology_interior_ne_corner_uplifts_north" },
+ { "point": [ -1, -1, 0 ], "overmap": "arcology_interior_nw_corner_uplifts_north" },
+ { "point": [ 1, 1, 0 ], "overmap": "arcology_interior_se_corner_uplifts_north" },
+ { "point": [ -1, 1, 0 ], "overmap": "arcology_interior_sw_corner_uplifts_north" },
+ { "point": [ -2, 1, 0 ], "overmap": "arcology_exterior_w_side_uplifts_north" },
+ { "point": [ -2, 0, 0 ], "overmap": "arcology_exterior_w_entrance_uplifts_north" },
+ { "point": [ -2, -1, 0 ], "overmap": "arcology_exterior_w_side_uplifts_north" },
+ { "point": [ 2, 1, 0 ], "overmap": "arcology_exterior_e_side_uplifts_north" },
+ { "point": [ 2, 0, 0 ], "overmap": "arcology_exterior_e_entrance_uplifts_north" },
+ { "point": [ 2, -1, 0 ], "overmap": "arcology_exterior_e_side_uplifts_north" },
+ { "point": [ -1, -2, 0 ], "overmap": "arcology_exterior_n_side_uplifts_north" },
+ { "point": [ 0, -2, 0 ], "overmap": "arcology_exterior_n_entrance_uplifts_north" },
+ { "point": [ 1, -2, 0 ], "overmap": "arcology_exterior_n_side_uplifts_north" },
+ { "point": [ 1, 2, 0 ], "overmap": "arcology_exterior_s_side_uplifts_north" },
+ { "point": [ 0, 2, 0 ], "overmap": "arcology_exterior_s_entrance_uplifts_north" },
+ { "point": [ -1, 2, 0 ], "overmap": "arcology_exterior_s_side_uplifts_north" },
+ { "point": [ 2, -2, 0 ], "overmap": "arcology_exterior_ne_corner_uplifts_north" },
+ { "point": [ -2, -2, 0 ], "overmap": "arcology_exterior_nw_corner_uplifts_north" },
+ { "point": [ 2, 2, 0 ], "overmap": "arcology_exterior_se_corner_uplifts_north" },
+ { "point": [ -2, 2, 0 ], "overmap": "arcology_exterior_sw_corner_uplifts_north" }
+ ],
+ "locations": [ "land" ]
+ },
{
"type": "city_building",
"id": "afs_astrobiology_lab",
diff --git a/data/mods/Aftershock/maps/terrain.json b/data/mods/Aftershock/maps/furniture_and_terrain/terrain.json
similarity index 100%
rename from data/mods/Aftershock/maps/terrain.json
rename to data/mods/Aftershock/maps/furniture_and_terrain/terrain.json
diff --git a/data/mods/Aftershock/maps/terrain_floraxeno.json b/data/mods/Aftershock/maps/furniture_and_terrain/terrain_floraxeno.json
similarity index 100%
rename from data/mods/Aftershock/maps/terrain_floraxeno.json
rename to data/mods/Aftershock/maps/furniture_and_terrain/terrain_floraxeno.json
diff --git a/data/mods/Aftershock/maps/terrain_groundxeno.json b/data/mods/Aftershock/maps/furniture_and_terrain/terrain_groundxeno.json
similarity index 100%
rename from data/mods/Aftershock/maps/terrain_groundxeno.json
rename to data/mods/Aftershock/maps/furniture_and_terrain/terrain_groundxeno.json
diff --git a/data/mods/Aftershock/maps/terrain_spaceship.json b/data/mods/Aftershock/maps/furniture_and_terrain/terrain_spaceship.json
similarity index 100%
rename from data/mods/Aftershock/maps/terrain_spaceship.json
rename to data/mods/Aftershock/maps/furniture_and_terrain/terrain_spaceship.json
diff --git a/data/mods/Aftershock/maps/mapgen/arcology_ground.json b/data/mods/Aftershock/maps/mapgen/arcology_ground.json
new file mode 100644
index 0000000000000..5dcbdcfd2f87f
--- /dev/null
+++ b/data/mods/Aftershock/maps/mapgen/arcology_ground.json
@@ -0,0 +1,867 @@
+[
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_nw_corner_uplifts", "arcology_exterior_nw_corner_robots" ],
+ "weight": 100,
+ "//": "Arcology general principles. Ground floor will be mostly shops and the like. Living quarters and administration/white collar goes up. Manufacturing and secure locations go down. Mostly filled with nested chunks respecting hallways. Stairs and elevators are in center generally. Make separate specials that have unique locations inside of them.",
+ "//2": "There 19 rows vertically and 16 horizontally inside the walls this tile. This will house 2 8x8 nested chunks.",
+ "//3": "Once dev master becomes 0.F experimental convert reinforced glass to whatever glass we are using for prepnet orchard.",
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,||||||||||||||||||",
+ ",,,,,,||||||||||||||||||",
+ ",,,,,,||1_______________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,((________________",
+ ",,,,,,((________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||1_______________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,((________________",
+ ",,,,,,((________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,óó________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "1": { "chunks": [ [ "arcology_8x8_foodplace", 20 ], [ "arcology_8x8_electronic", 20 ] ] } },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_w_side_robots", "arcology_exterior_w_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ ",,,,,,óó________________",
+ ",,,,,,||1_______________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,((________________",
+ ",,,,,,((________________",
+ ",,,,,,((________________",
+ ",,,,,,||1_______________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,óó________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "1": { "chunks": [ [ "room_10x10_junk_S", 20 ], [ "room_10x10_junk_N", 20 ] ] } },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_w_entrance_robots", "arcology_exterior_w_entrance_uplifts" ],
+ "weight": 100,
+ "//": "Turn gate into a 8x8 nested chunk that can be a closed gate working console, closed gate broken console, broken gate working console, broken gate broken console, open gate working console, open gate broken console.",
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ ",,,,,,||________________",
+ ",,,,,,||1_______________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ "3,,,,,||________________",
+ ",,,,,,OO________________",
+ ",,,,,,OO________________",
+ ",,,,,,OO________________",
+ ",,,,,,OO________________",
+ ",,,,,,OO________________",
+ ",,,,,,OO________________",
+ ",,,,,,||________________",
+ ",,,,,,||2_______________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": {
+ "1": { "chunks": [ [ "greenhouse_6x6_herbal", 20 ], [ "greenhouse_6x6_vegetable", 20 ] ] },
+ "2": { "chunks": [ [ "greenhouse_6x6_herbal", 20 ], [ "greenhouse_6x6_vegetable", 20 ] ] },
+ "3": {
+ "chunks": [
+ [ "arcology_8x8_gate_w_1", 10 ],
+ [ "arcology_8x8_gate_w_2", 20 ],
+ [ "arcology_8x8_gate_w_3", 20 ],
+ [ "arcology_8x8_gate_w_4", 10 ],
+ [ "arcology_8x8_gate_w_5", 20 ],
+ [ "arcology_8x8_gate_w_6", 10 ]
+ ]
+ }
+ },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_sw_corner_robots", "arcology_exterior_sw_corner_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ ",,,,,,||________________",
+ ",,,,,,||1_______________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,((________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,óó________________",
+ ",,,,,,óó________________",
+ ",,,,,,||1_______________",
+ ",,,,,,||________2_______",
+ ",,,,,,((________________",
+ ",,,,,,((________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||________________",
+ ",,,,,,||||((|||||||||||ó",
+ ",,,,,,||||((|||||||||||ó",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": {
+ "1": { "chunks": [ [ "arcology_8x8_electronic", 20 ], [ "arcology_8x8_foodplace", 20 ] ] },
+ "2": { "chunks": [ [ "lab_spawn_7x7", 20 ], [ "lab_spawn_7x7_crossdoors", 20 ] ] }
+ },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_s_side_robots", "arcology_exterior_s_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "1_______________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "ó||||||||||||||||||||||ó",
+ "ó||||||||||||||||||||||ó",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "1": { "chunks": [ [ "arcology_24x24_s", 20 ], [ "arcology_24x24_s", 20 ] ] } },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_s_entrance_robots", "arcology_exterior_s_entrance_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "2_____________2_________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "1_______________1_______",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________3_______________",
+ "________________________",
+ "________________________",
+ "|||||||||OOOOOO|||||||||",
+ "|||||||||OOOOOO|||||||||",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": {
+ "1": { "chunks": [ [ "arcology_8x8_foodplace", 20 ], [ "arcology_8x8_electronic", 20 ] ] },
+ "2": { "chunks": [ [ "room_10x10_junk_S", 20 ], [ "room_10x10_junk_N", 20 ] ] },
+ "3": {
+ "chunks": [
+ [ "arcology_8x8_gate_s_1", 10 ],
+ [ "arcology_8x8_gate_s_2", 20 ],
+ [ "arcology_8x8_gate_s_3", 20 ],
+ [ "arcology_8x8_gate_s_4", 10 ],
+ [ "arcology_8x8_gate_s_5", 20 ],
+ [ "arcology_8x8_gate_s_6", 10 ]
+ ]
+ }
+ },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_se_corner_robots", "arcology_exterior_se_corner_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________||,,,,,,",
+ "________1_______||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________((,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________óó,,,,,,",
+ "________________óó,,,,,,",
+ "_______2________||,,,,,,",
+ "________________||,,,,,,",
+ "3_______________((,,,,,,",
+ "________________((,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "||||||||||||((||||,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": {
+ "1": { "chunks": [ [ "arcology_8x8_electronic", 20 ], [ "arcology_8x8_foodplace", 20 ] ] },
+ "2": {
+ "chunks": [ [ "arcology_9x9_candy_shop", 20 ], [ "arcology_9x9_beauty_shop", 20 ], [ "arcology_9x9_vitamin_shop", 20 ] ]
+ },
+ "3": { "chunks": [ [ "lab_spawn_7x7", 20 ], [ "lab_spawn_7x7_crossdoors", 20 ] ] }
+ },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_e_side_robots", "arcology_exterior_e_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "____1___________óó,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________((,,,,,,",
+ "________________((,,,,,,",
+ "________________((,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "____1___________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________((,,,,,,",
+ "________________((,,,,,,",
+ "________________((,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________óó,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "1": { "chunks": [ [ "workoutroom_12x12", 20 ], [ "tvroom_12x12", 20 ] ] } },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_e_entrance_robots", "arcology_exterior_e_entrance_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________óó,,,,,,",
+ "_________1______||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "______________3_||,,,,,,",
+ "________________OO,,,,,,",
+ "________________OO,,,,,,",
+ "________________OO,,,,,,",
+ "________________OO,,,,,,",
+ "________________OO,,,,,,",
+ "________________OO,,,,,,",
+ "________________||,,,,,,",
+ "_________1______||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________óó,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "1": { "chunks": [ [ "lab_spawn_7x7", 20 ], [ "lab_spawn_7x7_crossdoors", 20 ] ] } },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_ne_corner_robots", "arcology_exterior_ne_corner_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ "||||||||||||||||||,,,,,,",
+ "1_______1_______||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "______2_________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________||,,,,,,",
+ "________________óó,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": {
+ "1": { "chunks": [ [ "arcology_8x8_foodplace", 20 ], [ "arcology_8x8_electronic", 20 ] ] },
+ "2": { "chunks": [ [ "room_10x10_junk_S", 20 ], [ "room_10x10_junk_N", 20 ] ] }
+ },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_n_entrance_robots", "arcology_exterior_n_entrance_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ ",,,,,,,,3,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ "|||||||||OOOOOO|||||||||",
+ "|||||||||OOOOOO|||||||||",
+ "1_______________1_______",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "2_____________2_________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": {
+ "1": { "chunks": [ [ "arcology_8x8_electronic", 20 ], [ "arcology_8x8_foodplace", 20 ] ] },
+ "2": { "chunks": [ [ "room_10x10_junk_S", 20 ], [ "room_10x10_junk_N", 20 ] ] },
+ "3": {
+ "chunks": [
+ [ "arcology_8x8_gate_n_1", 10 ],
+ [ "arcology_8x8_gate_n_2", 20 ],
+ [ "arcology_8x8_gate_n_3", 20 ],
+ [ "arcology_8x8_gate_n_4", 10 ],
+ [ "arcology_8x8_gate_n_5", 20 ],
+ [ "arcology_8x8_gate_n_6", 10 ]
+ ]
+ }
+ },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_exterior_n_side_robots", "arcology_exterior_n_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ ",,,,,,,,,,,,,,,,,,,,,,,,",
+ "||||||||||||||||||||||||",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "1": { "chunks": [ [ "arcology_24x24_s", 20 ], [ "arcology_24x24_s", 20 ] ] } },
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_ne_corner_robots", "arcology_interior_ne_corner_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_n_side_robots", "arcology_interior_n_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_nw_corner_robots", "arcology_interior_nw_corner_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_w_side_robots", "arcology_interior_w_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_sw_corner_robots", "arcology_interior_sw_corner_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_s_side_robots", "arcology_interior_s_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_se_corner_robots", "arcology_interior_se_corner_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_e_side_robots", "arcology_interior_e_side_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "om_terrain": [ "arcology_interior_center_robots", "arcology_interior_center_uplifts" ],
+ "weight": 100,
+ "object": {
+ "fill_ter": "t_thconc_floor",
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "place_loot": [ { "group": "office_mess", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 50, "repeat": [ 1, 4 ] } ],
+ "place_monsters": [ { "monster": "AFS_GROUP_ROBOT_LOW_RISK", "x": [ 0, 23 ], "y": [ 0, 23 ], "chance": 10, "density": 0.1 } ]
+ }
+ }
+]
diff --git a/data/mods/Aftershock/maps/mapgen_pallete/arcology.json b/data/mods/Aftershock/maps/mapgen_pallete/arcology.json
new file mode 100644
index 0000000000000..fe096958c4c2d
--- /dev/null
+++ b/data/mods/Aftershock/maps/mapgen_pallete/arcology.json
@@ -0,0 +1,85 @@
+[
+ {
+ "type": "palette",
+ "id": "arcology_exterior",
+ "terrain": {
+ " ": "t_region_groundcover_urban",
+ "_": [ "t_thconc_floor", "t_thconc_r", "t_thconc_y" ],
+ ",": [ "t_pavement", "t_region_groundcover_urban", "t_railroad_rubble" ],
+ "!": "t_door_locked_interior",
+ "O": "t_metal_floor",
+ ".": "t_wall_metal",
+ "|": "t_strconc_wall",
+ "/": "t_wall_prefab_metal",
+ "#": "t_broken_prefab",
+ "Q": "t_wall_prefab_glass_shutters",
+ ":": "t_door_glass_c",
+ ";": "t_door_locked",
+ "o": "t_wall_prefab_glass",
+ "(": "t_reinforced_glass",
+ "X": "t_door_metal_locked",
+ "3": "t_door_metal_c",
+ "4": "t_door_metal_pickable",
+ "ó": "t_metal_ventilation_shutter",
+ "R": "t_railing",
+ "U": "t_ladder_up",
+ "D": "t_ladder_down",
+ ">": "t_stairs_down",
+ "<": "t_stairs_up"
+ },
+ "furniture": {
+ "$": "f_safe_l",
+ "A": "f_neuralnet_inserter",
+ "0": "f_cryo_pod",
+ "&": "f_toilet",
+ "%": "f_console_broken",
+ "5": "f_console",
+ "c": "f_counter",
+ "H": "f_utility_shelf",
+ "l": "f_locker",
+ "r": "f_trashcan"
+ },
+ "toilets": { "&": { } }
+ },
+ {
+ "type": "palette",
+ "id": "arcology_mall_chunks",
+ "terrain": {
+ " ": "t_linoleum_white",
+ "_": [ "t_thconc_floor", "t_thconc_r", "t_thconc_y" ],
+ ",": [ "t_pavement", "t_region_groundcover_urban", "t_railroad_rubble" ],
+ "!": "t_door_locked_interior",
+ "O": "t_metal_floor",
+ ".": "t_wall_metal",
+ "/": "t_wall_prefab_metal",
+ "#": "t_broken_prefab",
+ "Q": "t_wall_prefab_glass_shutters",
+ ":": "t_door_glass_c",
+ ";": "t_door_locked",
+ "o": "t_wall_prefab_glass",
+ "(": "t_reinforced_glass",
+ "X": "t_door_metal_locked",
+ "3": "t_door_metal_c",
+ "4": "t_door_metal_pickable",
+ "ó": "t_metal_ventilation_shutter",
+ "R": "t_railing",
+ "U": "t_ladder_up",
+ "D": "t_ladder_down",
+ ">": "t_stairs_down",
+ "<": "t_stairs_up"
+ },
+ "furniture": {
+ "$": "f_safe_l",
+ "A": "f_neuralnet_inserter",
+ "0": "f_cryo_pod",
+ "&": "f_toilet",
+ "%": "f_console_broken",
+ "5": "f_console",
+ "c": "f_counter",
+ "H": "f_utility_shelf",
+ "l": "f_locker",
+ "r": "f_trashcan"
+ },
+ "toilets": { "&": { } }
+ }
+]
diff --git a/data/mods/Aftershock/maps/nested/arcology/arcology_chunks.json b/data/mods/Aftershock/maps/nested/arcology/arcology_chunks.json
new file mode 100644
index 0000000000000..a223e9d2b05f5
--- /dev/null
+++ b/data/mods/Aftershock/maps/nested/arcology/arcology_chunks.json
@@ -0,0 +1,445 @@
+[
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_2x2_gate",
+ "//": "Goes to 9x9 arcology stores",
+ "object": {
+ "mapgensize": [ 2, 2 ],
+ "rows": [
+ "//",
+ "/ "
+ ],
+ "terrain": { "/": [ "t_retractable_gate_l", "t_retractable_gate_l", "t_retractable_gate_l", "t_retractable_gate_c" ] }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for spaces 9x9. Add walls around it and entrances.",
+ "nested_mapgen_id": "arcology_9x9_candy_shop",
+ "object": {
+ "mapgensize": [ 9, 9 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "1 |||||||",
+ " ",
+ "| L L L w",
+ "| L L L w",
+ "| L L L w",
+ "| ",
+ "|MM?MM Y",
+ "| A ",
+ "| VVV "
+ ],
+ "terrain": { " ": "t_floor", "|": "t_wall_p", "1": "t_floor" },
+ "nested": { "1": { "chunks": [ "arcology_2x2_gate" ] } },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "H": "f_table",
+ "G": "f_table",
+ "M": "f_displaycase",
+ "w": "f_rack_wood",
+ "V": "f_glass_cabinet",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "H": [ { "item": "toy_store", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "trash", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "candy_chocolate", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "w": [ { "item": "candy_chocolate", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "M": [
+ { "item": "candy_chocolate", "chance": 30, "repeat": [ 0, 4 ] },
+ { "item": "toy_store", "chance": 30, "repeat": [ 1, 2 ] }
+ ],
+ "V": [
+ { "item": "candy_chocolate", "chance": 30, "repeat": [ 0, 4 ] },
+ { "item": "toy_store", "chance": 30, "repeat": [ 1, 2 ] }
+ ]
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for spaces 9x9. Beauty and cosmetics shop.",
+ "nested_mapgen_id": "arcology_9x9_beauty_shop",
+ "object": {
+ "mapgensize": [ 9, 9 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "1 |||||||",
+ " ...... ",
+ "|.L.L.L.w",
+ "|.L.L.L.w",
+ "|.L.L.L.w",
+ "|....... ",
+ "|MM?MM Y",
+ "| A ",
+ "| VVV "
+ ],
+ "nested": { "1": { "chunks": [ "arcology_2x2_gate" ] } },
+ "terrain": {
+ " ": "t_floor",
+ "L": "t_carpet_yellow",
+ ".": "t_carpet_yellow",
+ "?": "t_carpet_yellow",
+ "|": "t_wall_p",
+ "1": "t_floor"
+ },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "H": "f_table",
+ "G": "f_table",
+ "M": "f_displaycase",
+ "w": "f_rack",
+ "V": "f_glass_cabinet",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "H": [ { "item": "beauty", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "beauty", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "w": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "M": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "V": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ]
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for 9x9 vitamin shop.",
+ "nested_mapgen_id": "arcology_9x9_vitamin_shop",
+ "object": {
+ "mapgensize": [ 9, 9 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "|HL LHL",
+ "| ",
+ "| L L L w",
+ "| L L L w",
+ "| L L L w",
+ "| ",
+ "|MM?MM Y",
+ "| A ",
+ "| VVV "
+ ],
+ "terrain": {
+ " ": "t_linoleum_white",
+ "L": "t_linoleum_white",
+ "H": "t_linoleum_white",
+ "V": "t_linoleum_white",
+ "M": "t_linoleum_white",
+ "A": "t_linoleum_white",
+ "w": "t_linoleum_white",
+ "y": "t_linoleum_white",
+ "Y": "t_linoleum_white",
+ "?": "t_linoleum_white",
+ "|": "t_wall_g"
+ },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "H": "f_table",
+ "G": "f_table",
+ "M": "f_counter",
+ "V": "f_rack",
+ "w": "f_rack",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "H": [ { "item": "arcology_vitamin_shop", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "trash", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "arcology_vitamin_shop", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "M": [ { "item": "office", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "V": [ { "item": "arcology_vitamin_shop", "chance": 30, "repeat": [ 0, 4 ] } ]
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for 9x9 cellphone shop.",
+ "nested_mapgen_id": "city_block_9x9_cellphone_shop_front",
+ "object": {
+ "mapgensize": [ 9, 9 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "GGy yGG",
+ " ....... ",
+ "V.LL.HH.V",
+ "V.LL.HH.V",
+ "V.LL.HH.V",
+ " ....... ",
+ "M?MM?M Y",
+ " A A ",
+ "y MMMM y"
+ ],
+ "terrain": {
+ " ": "t_linoleum_white",
+ "G": "t_linoleum_white",
+ "V": "t_linoleum_white",
+ "M": "t_linoleum_white",
+ "A": "t_linoleum_white",
+ "y": "t_linoleum_white",
+ "Y": "t_linoleum_white",
+ "H": "t_carpet_green",
+ "L": "t_carpet_green",
+ ".": "t_carpet_green",
+ "?": "t_carpet_green"
+ },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "H": "f_table",
+ "G": "f_displaycase",
+ "M": "f_counter",
+ "V": "f_rack",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "H": [ { "item": "elecsto_pcs", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "G": [ { "item": "elecsto_persele", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "trash", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "cell_shop", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "M": [ { "item": "cell_shop", "chance": 30, "repeat": [ 0, 1 ] } ],
+ "V": [ { "item": "cell_shop", "chance": 30, "repeat": [ 0, 4 ] } ]
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for 9x9 music shop.",
+ "nested_mapgen_id": "city_block_9x9_music_shop_front",
+ "object": {
+ "mapgensize": [ 9, 9 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "HHHy yHHH",
+ " ....... ",
+ "V.LL.GG.V",
+ "V.LL.GG.V",
+ "V.LL.GG.V",
+ " .......V",
+ "MMMM?M V",
+ " A ",
+ "y MMMM Y"
+ ],
+ "terrain": { " ": "t_floor", "G": "t_carpet_red", "L": "t_carpet_red", ".": "t_carpet_red", "?": "t_carpet_red" },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "H": "f_table",
+ "G": "f_displaycase",
+ "M": "f_counter",
+ "V": "f_bookcase",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "H": [ { "item": "musicstore_showpiece", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "G": [ { "item": "mussto_windinst", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "trash", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "mussto_stringinst", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "M": [ { "item": "office", "chance": 30, "repeat": [ 0, 1 ] } ],
+ "V": [ { "item": "musicstore_showpiece", "chance": 30, "repeat": [ 0, 4 ] } ]
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for 9x9 electronics shop. needs aftershocking",
+ "nested_mapgen_id": "arcology_8x8_electronic",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "HHHy yHH",
+ " .......",
+ "V.LL.LL.",
+ "V.GG.GG.",
+ "V.BB.BB.",
+ " .......",
+ "MMMM?M ",
+ " A "
+ ],
+ "terrain": {
+ " ": "t_floor",
+ "G": "t_carpet_yellow",
+ "L": "t_carpet_yellow",
+ "B": "t_carpet_yellow",
+ ".": "t_carpet_yellow",
+ "?": "t_carpet_yellow"
+ },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "B": "f_table",
+ "H": "f_displaycase",
+ "G": "f_displaycase",
+ "M": "f_counter",
+ "V": "f_rack",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "H": [ { "item": "elecsto_pcs", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "G": [ { "item": "elecsto_cameras", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "trash", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "elecsto_entapl", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "B": [ { "item": "elecsto_homapl", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "M": [ { "item": "office", "chance": 30, "repeat": [ 0, 1 ] } ],
+ "V": [
+ { "item": "elecsto_lights", "chance": 30, "repeat": [ 0, 4 ] },
+ { "item": "elecsto_diy", "chance": 30, "repeat": [ 0, 4 ] }
+ ]
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for 8x8 pizza shop. Make foodplace shop.",
+ "nested_mapgen_id": "arcology_8x8_foodplace",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "AAAY YMM",
+ "MMM AA",
+ "V ? ",
+ "B M R R",
+ "i G L L",
+ "B G R R",
+ "s M ",
+ "Q RLyL"
+ ],
+ "terrain": {
+ " ": "t_linoleum_gray",
+ "L": "t_linoleum_gray",
+ "R": "t_linoleum_gray",
+ "B": "t_linoleum_gray",
+ "G": "t_linoleum_gray",
+ "M": "t_linoleum_gray",
+ "F": "t_linoleum_gray",
+ "V": "t_linoleum_gray",
+ "Q": "t_linoleum_gray",
+ "Y": "t_linoleum_gray",
+ "y": "t_linoleum_gray",
+ "A": "t_linoleum_gray",
+ "s": "t_linoleum_gray",
+ "i": "t_linoleum_gray",
+ "?": "t_linoleum_gray"
+ },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "i": "f_oven",
+ "s": "f_sink",
+ "R": "f_bench",
+ "B": "f_counter",
+ "G": "f_displaycase",
+ "M": "f_counter",
+ "F": "f_glass_fridge",
+ "V": "f_rack",
+ "Q": "f_rack",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "B": [ { "item": "pizza_kitchen", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "G": [ { "item": "pizza_display", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "pizza_table", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "trash", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "F": [ { "item": "pizza_fridge", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "V": [ { "item": "pizza_display", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "Q": [ { "item": "pizza_kitchen", "chance": 30, "repeat": [ 0, 1 ] } ],
+ "M": [
+ { "item": "pizza_table", "chance": 30, "repeat": [ 0, 4 ] },
+ { "item": "pizza_display", "chance": 30, "repeat": [ 0, 1 ] }
+ ]
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "//": "designed for spaces 9x9. Beauty and cosmetics shop.",
+ "nested_mapgen_id": "arcology_24x24_s",
+ "object": {
+ "mapgensize": [ 24, 24 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________",
+ "________________________"
+ ],
+ "nested": { "1": { "chunks": [ "arcology_2x2_gate" ] } },
+ "terrain": {
+ "_": "t_floor",
+ "L": "t_carpet_yellow",
+ ".": "t_carpet_yellow",
+ "?": "t_carpet_yellow",
+ "|": "t_wall_p",
+ "1": "t_floor"
+ },
+ "furniture": {
+ "?": "f_console_broken",
+ "L": "f_table",
+ "H": "f_table",
+ "G": "f_table",
+ "M": "f_displaycase",
+ "w": "f_rack",
+ "V": "f_glass_cabinet",
+ "Y": "f_trashcan",
+ "A": "f_stool",
+ "y": [ "f_indoor_plant", "f_indoor_plant_y" ]
+ },
+ "items": {
+ "H": [ { "item": "beauty", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "Y": [ { "item": "beauty", "chance": 30, "repeat": [ 1, 2 ] } ],
+ "L": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "w": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "M": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ],
+ "V": [ { "item": "beauty", "chance": 30, "repeat": [ 0, 4 ] } ]
+ }
+ }
+ }
+]
diff --git a/data/mods/Aftershock/maps/nested/arcology/arcology_gate_chunks.json b/data/mods/Aftershock/maps/nested/arcology/arcology_gate_chunks.json
new file mode 100644
index 0000000000000..55c1f5a55701a
--- /dev/null
+++ b/data/mods/Aftershock/maps/nested/arcology/arcology_gate_chunks.json
@@ -0,0 +1,733 @@
+[
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_w_1",
+ "//": "Working Console, closed gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,||",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,5,||"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "computers": {
+ "5": {
+ "name": "West Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_w_2",
+ "//": "Broken Console, closed gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,||",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,,,..",
+ ",,,,%,||"
+ ],
+ "palettes": [ "arcology_exterior" ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_w_3",
+ "//": "Broken Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,||",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,%,||"
+ ],
+ "palettes": [ "arcology_exterior" ]
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_w_4",
+ "//": "Working Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,||",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,,,OO",
+ ",,,,5,||"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "computers": {
+ "5": {
+ "name": "West Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_w_5",
+ "//": "Broken Console, broke gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,||",
+ ",,,,,,.C",
+ ",,,,,,CW",
+ ",,,,,,W.",
+ ",,,,,,CP",
+ ",,,,,,W.",
+ ",,,,,,..",
+ ",,,,%,||"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "terrain": { "P": "t_metal_floor", "C": "t_metal_floor", "W": "t_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_w_6",
+ "//": "Working Console, broken gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,||",
+ ",,,,,,.C",
+ ",,,,,,CW",
+ ",,,,,,W.",
+ ",,,,,,CP",
+ ",,,,,,W.",
+ ",,,,,,..",
+ ",,,,5,||"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "terrain": { "P": "t_broken_metal_floor", "C": "t_broken_metal_floor", "W": "t_broken_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" },
+ "computers": {
+ "5": {
+ "name": "West Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_s_1",
+ "//": "Working Console, closed gate",
+ "//2": "Go back and make interior consoles have their own 1x1 nested chunk for broken and working consoles.",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "________",
+ "________",
+ "6_______",
+ "|......|",
+ "|......|",
+ ",,,,,,,5",
+ ",,,,,,,,",
+ ",,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "computers": {
+ "5": {
+ "name": "South Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_s_2",
+ "//": "Broken Console, closed gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "________",
+ "________",
+ "6_______",
+ "|......|",
+ "|......|",
+ ",,,,,,,%",
+ ",,,,,,,,",
+ ",,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_s_3",
+ "//": "Broken Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "________",
+ "________",
+ "6_______",
+ "|OOOOOO|",
+ "|OOOOOO|",
+ ",,,,,,,%",
+ ",,,,,,,,",
+ ",,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_s_4",
+ "//": "Working Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "________",
+ "________",
+ "6_______",
+ "|OOOOOO|",
+ "|OOOOOO|",
+ ",,,,,,,5",
+ ",,,,,,,,",
+ ",,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "computers": {
+ "5": {
+ "name": "South Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_s_5",
+ "//": "Broken Console, broke gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "________",
+ "________",
+ "6_______",
+ "|.CWCOO|",
+ "|COWPW.|",
+ ",,,,,,,%",
+ ",,,,,,,,",
+ ",,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "terrain": { "P": "t_metal_floor", "C": "t_metal_floor", "W": "t_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" },
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_s_6",
+ "//": "Working Console, broken gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "________",
+ "________",
+ "6_______",
+ "|.CWCOO|",
+ "|COWPW.|",
+ ",,,,,,,5",
+ ",,,,,,,,",
+ ",,,,,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "computers": {
+ "5": {
+ "name": "South Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ },
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "terrain": { "P": "t_broken_metal_floor", "C": "t_broken_metal_floor", "W": "t_broken_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_e_1",
+ "//": "Working Console, closed gate",
+ "//2": "Go back and make interior consoles have their own 1x1 nested chunk for broken and working consoles.",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "__||,5,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "_6||,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "computers": {
+ "5": {
+ "name": "East Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_e_2",
+ "//": "Broken Console, closed gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "__||,%,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "__..,,,,",
+ "_6||,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_e_3",
+ "//": "Broken Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "__||,%,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "_6||,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_e_4",
+ "//": "Working Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "__||,5,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "__OO,,,,",
+ "_6||,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "computers": {
+ "5": {
+ "name": "East Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_e_5",
+ "//": "Broken Console, broke gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "__||,%,,",
+ "__..,,,,",
+ "__.W,,,,",
+ "__CW,,,,",
+ "__W.,,,,",
+ "__OP,,,,",
+ "__C.,,,,",
+ "_6||,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "terrain": { "P": "t_metal_floor", "C": "t_metal_floor", "W": "t_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_e_6",
+ "//": "Working Console, broken gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ "__||,5,,",
+ "__..,,,,",
+ "__.W,,,,",
+ "__CW,,,,",
+ "__W.,,,,",
+ "__OP,,,,",
+ "__C.,,,,",
+ "_6||,,,,"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "terrain": { "P": "t_broken_metal_floor", "C": "t_broken_metal_floor", "W": "t_broken_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" },
+ "computers": {
+ "5": {
+ "name": "East Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_n_1",
+ "//": "Working Console, closed gate",
+ "//2": "Go back and make interior consoles have their own 1x1 nested chunk for broken and working consoles.",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,,,",
+ "5,,,,,,,",
+ ",,,,,,,,",
+ "|......|",
+ "|......|",
+ "_______6",
+ "________",
+ "________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "computers": {
+ "5": {
+ "name": "North Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_n_2",
+ "//": "Broken Console, closed gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,,,",
+ "%,,,,,,,",
+ ",,,,,,,,",
+ "|......|",
+ "|......|",
+ "_______6",
+ "________",
+ "________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_n_3",
+ "//": "Broken Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,,,",
+ "%,,,,,,,",
+ ",,,,,,,,",
+ "|OOOOOO|",
+ "|OOOOOO|",
+ "_______6",
+ "________",
+ "________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_n_4",
+ "//": "Working Console, open gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,,,",
+ "5,,,,,,,",
+ ",,,,,,,,",
+ "|OOOOOO|",
+ "|OOOOOO|",
+ "_______6",
+ "________",
+ "________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "computers": {
+ "5": {
+ "name": "North Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_n_5",
+ "//": "Broken Console, broke gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,,,",
+ "%,,,,,,,",
+ ",,,,,,,,",
+ "|.CWCOO|",
+ "|COWPW.|",
+ "_______6",
+ "________",
+ "________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "terrain": { "P": "t_metal_floor", "C": "t_metal_floor", "W": "t_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_8x8_gate_n_6",
+ "//": "Working Console, broken gate",
+ "object": {
+ "mapgensize": [ 8, 8 ],
+ "rotation": [ 0, 3 ],
+ "rows": [
+ ",,,,,,,,",
+ "5,,,,,,,",
+ ",,,,,,,,",
+ "|.CWCOO|",
+ "|COWPW.|",
+ "_______6",
+ "________",
+ "________"
+ ],
+ "palettes": [ "arcology_exterior" ],
+ "nested": { "6": { "chunks": [ [ "arcology_1x1_gate", 50 ], [ "arcology_1x1_gate_broken", 50 ] ] } },
+ "terrain": { "P": "t_broken_metal_floor", "C": "t_broken_metal_floor", "W": "t_broken_metal_floor" },
+ "items": {
+ "W": [ { "item": "building_rubble", "chance": 80, "repeat": [ 1, 3 ] } ],
+ "C": [ { "item": "wreckage", "chance": 100, "repeat": [ 1, 2 ] } ]
+ },
+ "furniture": { "P": "f_ash" },
+ "computers": {
+ "5": {
+ "name": "North Entrance Gate Controls",
+ "security": 1,
+ "options": [
+ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 3 },
+ { "name": "EMERGENCY OVERRIDE - CLOSE GATES", "action": "close_gate", "security": 1 }
+ ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_1x1_gate",
+ "//": "Working Console",
+ "object": {
+ "mapgensize": [ 1, 1 ],
+ "rows": [ "5" ],
+ "palettes": [ "arcology_exterior" ],
+ "computers": {
+ "5": {
+ "name": "Interior Gate Controls",
+ "security": 1,
+ "options": [ { "name": "EMERGENCY OVERRIDE - OPEN GATES", "action": "open_gate", "security": 1 } ],
+ "failures": [ { "action": "damage" }, { "action": "shutdown" } ]
+ }
+ }
+ }
+ },
+ {
+ "type": "mapgen",
+ "method": "json",
+ "nested_mapgen_id": "arcology_1x1_gate_broken",
+ "//": "Broken Console",
+ "object": { "mapgensize": [ 1, 1 ], "rows": [ "%" ], "palettes": [ "arcology_exterior" ] }
+ }
+]
diff --git a/data/mods/Aftershock/maps/overmap_terrain.json b/data/mods/Aftershock/maps/overmap_terrain.json
index e3652bdb5d281..1c66b6f0f4b9a 100644
--- a/data/mods/Aftershock/maps/overmap_terrain.json
+++ b/data/mods/Aftershock/maps/overmap_terrain.json
@@ -243,5 +243,69 @@
"sym": "<",
"color": "green",
"see_cost": 3
+ },
+ {
+ "type": "overmap_terrain",
+ "id": [
+ "arcology_interior_center_robots",
+ "arcology_interior_w_side_robots",
+ "arcology_interior_e_side_robots",
+ "arcology_interior_n_side_robots",
+ "arcology_interior_s_side_robots",
+ "arcology_interior_ne_corner_robots",
+ "arcology_interior_nw_corner_robots",
+ "arcology_interior_se_corner_robots",
+ "arcology_interior_sw_corner_robots",
+ "arcology_exterior_e_side_robots",
+ "arcology_exterior_n_side_robots",
+ "arcology_exterior_s_side_robots",
+ "arcology_exterior_w_side_robots",
+ "arcology_exterior_ne_corner_robots",
+ "arcology_exterior_nw_corner_robots",
+ "arcology_exterior_se_corner_robots",
+ "arcology_exterior_sw_corner_robots",
+ "arcology_exterior_n_entrance_robots",
+ "arcology_exterior_s_entrance_robots",
+ "arcology_exterior_e_entrance_robots",
+ "arcology_exterior_w_entrance_robots"
+ ],
+ "name": "Desolate Arcology - Ground Level",
+ "sym": "A",
+ "color": "light_blue",
+ "see_cost": 2,
+ "mondensity": 2,
+ "flags": [ "RISK_HIGH" ]
+ },
+ {
+ "type": "overmap_terrain",
+ "id": [
+ "arcology_interior_center_uplifts",
+ "arcology_interior_w_side_uplifts",
+ "arcology_interior_e_side_uplifts",
+ "arcology_interior_n_side_uplifts",
+ "arcology_interior_s_side_uplifts",
+ "arcology_interior_ne_corner_uplifts",
+ "arcology_interior_nw_corner_uplifts",
+ "arcology_interior_se_corner_uplifts",
+ "arcology_interior_sw_corner_uplifts",
+ "arcology_exterior_e_side_uplifts",
+ "arcology_exterior_n_side_uplifts",
+ "arcology_exterior_s_side_uplifts",
+ "arcology_exterior_w_side_uplifts",
+ "arcology_exterior_ne_corner_uplifts",
+ "arcology_exterior_nw_corner_uplifts",
+ "arcology_exterior_se_corner_uplifts",
+ "arcology_exterior_sw_corner_uplifts",
+ "arcology_exterior_n_entrance_uplifts",
+ "arcology_exterior_s_entrance_uplifts",
+ "arcology_exterior_e_entrance_uplifts",
+ "arcology_exterior_w_entrance_uplifts"
+ ],
+ "name": "Arcology - Ground Level",
+ "sym": "A",
+ "color": "light_blue",
+ "see_cost": 2,
+ "mondensity": 2,
+ "flags": [ "RISK_HIGH" ]
}
]
diff --git a/data/mods/Aftershock/mobs/robots.json b/data/mods/Aftershock/mobs/robots.json
index 5c03863dd0d95..b44ced51ea396 100644
--- a/data/mods/Aftershock/mobs/robots.json
+++ b/data/mods/Aftershock/mobs/robots.json
@@ -377,20 +377,22 @@
"type": "MONSTER",
"copy-from": "mon_skitterbot",
"name": "rat snatcher",
- "description": "A salvaged skitterbot repurposed for hunting small game. It's faster than the original model but far less sturdy.",
+ "description": "A small and flimsy hexapod drone that relies on sheer speed to hunt rats and other small pests. It has either gone rampant or been maliciously reprogrammed.",
+ "volume": "750 ml",
+ "weight": "1 kg",
"color": "light_gray",
- "speed": 250,
- "hp": 30,
+ "speed": 100,
+ "attack_cost": 500,
+ "hp": 10,
"armor_bash": 8,
"armor_cut": 8,
- "vision_night": 20,
+ "vision_night": 10,
"revert_to_itype": "bot_skitterbot_rat",
"melee_skill": 6,
"melee_dice": 2,
"melee_dice_sides": 2,
- "melee_damage": [ { "damage_type": "electric", "amount": 6 } ],
- "special_attacks": [ { "type": "leap", "cooldown": 2, "move_cost": 0, "max_range": 10, "min_consider_range": 3 } ],
- "extend": { "flags": [ "CLIMBS" ] }
+ "special_attacks": [ { "type": "leap", "cooldown": 2, "move_cost": 0, "max_range": 2, "min_consider_range": 3 }, [ "TAZER", 10 ] ],
+ "extend": { "flags": [ "CLIMBS", "HIT_AND_RUN" ] }
},
{
"id": "mon_skitterbot_grab",
diff --git a/data/mods/Aftershock/recipes/uncraft.json b/data/mods/Aftershock/recipes/uncraft.json
index 1f4c25bebebaf..59044a5c2e6ee 100644
--- a/data/mods/Aftershock/recipes/uncraft.json
+++ b/data/mods/Aftershock/recipes/uncraft.json
@@ -306,12 +306,10 @@
[ [ "robot_controls", 1 ] ],
[ [ "sensor_module", 1 ] ],
[ [ "spidery_legs_small", 1 ] ],
- [ [ "afs_circuitry_1", 4 ] ],
- [ [ "afs_circuitry_2", 2 ] ],
- [ [ "afs_circuitry_3", 1 ] ],
- [ [ "afs_energy_storage_3", 1 ] ],
- [ [ "afs_material_1", 4 ] ],
- [ [ "afs_material_2", 2 ] ],
+ [ [ "afs_circuitry_1", 2 ] ],
+ [ [ "afs_circuitry_2", 1 ] ],
+ [ [ "afs_material_1", 2 ] ],
+ [ [ "afs_material_2", 1 ] ],
[ [ "targeting_module", 1 ] ],
[ [ "pathfinding_module", 1 ] ]
]
diff --git a/data/mods/BlazeIndustries/README.txt b/data/mods/BlazeIndustries/README.txt
index c92816f729c35..6eaa2ee9c42eb 100644
--- a/data/mods/BlazeIndustries/README.txt
+++ b/data/mods/BlazeIndustries/README.txt
@@ -3,9 +3,7 @@ please get it from https://github.com/Soup-de-Loop/CDDA-old-complete-blazemod
Uninstall any turrets and turretframes from your vehicles before updating to it in order to avoid segfaults, some errors might still be thrown but
it shouldn't crash. Contact me using the options at the end if you need help, and I will try to set aside some time to direct.
-Welcome to the new and improved blazemod, now with 90% less content. Over time this will be reversed as I expand on the scope of the base content
-and restore some things that have been removed, but over a longer time scale without constantly having to break saves when an oversight has to be
-fixed.
+Welcome to the new and improved blazemod, now with 90% less content.
Where did most of the content of blazemod go, you might be wondering? Despite having gotten the quality of the code to a modern state, most of the
content is actually quite out of place when compared to each other, and each part including the basic essentials of blazemod deserve to be worked on
@@ -20,12 +18,4 @@ Diamond & Vortex: https://github.com/Soup-de-Loop/CCDA-high-science-vehicles
If your save is older than 0.E, I recommend that you keep your older version of blazemod backed up or use the version at the start of this README
and put it back into the game files each time you update. Blaze Industries has a different ident and name to blazemod so that it's possible to
-overlap and ignore the new content if you choose not to use it in lieu of the legacy stuff. I will be writing up a large migration list that should
-make it possible to update from any of the pre-0.E versions of blazemod to the newest, that can be applied once to carry an old save over without
-segfaults caused by blazemod. Additional instructions will be included once it is made.
-
-Please note, however that I will also be working on re-introducing each of these parts of blazemod as separate mods unto themselves, better
-implemented into the game and of quality and calibre worthy of spirit of current development standards.
-
-If you have any questions you can hit me as Soup-de-Loop up on the master repo for CDDA on github, or find me as SouP on the developer's discord
-server, the old (or new) fan discord channels, SDG's discord channel, as well as on discourse, or also as Soupymierr on reddit.
+overlap and ignore the new content if you choose not to use it in lieu of the legacy stuff.
diff --git a/data/mods/BlazeIndustries/modinfo.json b/data/mods/BlazeIndustries/modinfo.json
index 09191cd87420c..0e9b7247c4ed9 100644
--- a/data/mods/BlazeIndustries/modinfo.json
+++ b/data/mods/BlazeIndustries/modinfo.json
@@ -4,7 +4,7 @@
"id": "blazeindustries",
"name": "Blaze Industries",
"authors": [ "Blaze-whatdoyoumeanitsalreadytaken" ],
- "maintainers": [ "Soup-de-Loop" ],
+ "maintainers": [ "N/A" ],
"description": "Introduces the fictional corporation Blaze Industries, bringing advanced vehicle modification to the consumer.",
"//": "Spiritual successor to blazemod, do not use together with the legacy blazemod unless you know what you are doing.",
"category": "content",
diff --git a/data/mods/CrazyCataclysm/crazy_items.json b/data/mods/CrazyCataclysm/crazy_items.json
index 7ec92701c69d1..63f736e2cd77a 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,
- "max_charges": 50,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ],
"techniques": [ "RAPID", "WBLOCK_2" ],
"use_action": {
"type": "fireweapon_off",
@@ -148,7 +148,7 @@
"symbol": "/",
"color": "red",
"ammo": [ "gasoline" ],
- "max_charges": 50,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ],
"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,
- "max_charges": 50,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ],
"techniques": [ "WBLOCK_1", "WIDE", "BRUTAL", "SWEEP" ],
"use_action": {
"type": "fireweapon_off",
@@ -211,7 +211,7 @@
"symbol": "/",
"color": "red",
"ammo": [ "gasoline" ],
- "max_charges": 50,
+ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "gasoline": 50 } } ],
"turns_per_charge": 30,
"revert_to": "zweifire_off",
"techniques": [ "WBLOCK_1", "WIDE", "BRUTAL", "SWEEP" ],
diff --git a/data/mods/Graphical_Overmap/go_overmap_terrain_evac_center.json b/data/mods/Graphical_Overmap/go_overmap_terrain_evac_center.json
index 393ece6c94175..b806332744ca8 100644
--- a/data/mods/Graphical_Overmap/go_overmap_terrain_evac_center.json
+++ b/data/mods/Graphical_Overmap/go_overmap_terrain_evac_center.json
@@ -3295,6 +3295,7 @@
"type": "overmap_terrain",
"abstract": "generic_rc_underground",
"name": "solid rock",
+ "looks_like": "empty_rock",
"sym": "%",
"color": "dark_gray",
"see_cost": 5
diff --git a/data/mods/Graphical_Overmap/go_overmap_terrain_hardcoded.json b/data/mods/Graphical_Overmap/go_overmap_terrain_hardcoded.json
index b191a9c5b5643..44967e38a8685 100644
--- a/data/mods/Graphical_Overmap/go_overmap_terrain_hardcoded.json
+++ b/data/mods/Graphical_Overmap/go_overmap_terrain_hardcoded.json
@@ -151,18 +151,6 @@
"copy-from": "spider_pit_under",
"sym": "\u00B0"
},
- {
- "type": "overmap_terrain",
- "id": "anthill",
- "copy-from": "anthill",
- "sym": "\u00F3"
- },
- {
- "type": "overmap_terrain",
- "id": "acid_anthill",
- "copy-from": "acid_anthill",
- "sym": "\u00F3"
- },
{
"type": "overmap_terrain",
"id": "slimepit",
diff --git a/data/mods/Magiclysm/worldgen/overmap_terrain.json b/data/mods/Magiclysm/worldgen/overmap_terrain.json
index 482c4991bbf44..3ce135e8622e5 100644
--- a/data/mods/Magiclysm/worldgen/overmap_terrain.json
+++ b/data/mods/Magiclysm/worldgen/overmap_terrain.json
@@ -5,6 +5,7 @@
"name": "magic shop",
"sym": "M",
"color": "red",
+ "looks_like": "s_shoppingplaza_b1",
"see_cost": 5,
"extras": "build",
"mondensity": 2,
@@ -16,6 +17,7 @@
"name": "magic shop",
"sym": "M",
"color": "red",
+ "looks_like": "s_shoppingplaza_b2",
"see_cost": 5,
"extras": "build",
"mondensity": 2
@@ -26,6 +28,7 @@
"name": "magic shop roof",
"sym": "M",
"color": "red",
+ "looks_like": "s_shoppingplaza_b6",
"see_cost": 5,
"extras": "build",
"mondensity": 2
@@ -56,6 +59,7 @@
"name": "Forest",
"sym": "F",
"color": "light_gray",
+ "looks_like": "spider_pit",
"see_cost": 5
},
{
@@ -64,6 +68,7 @@
"name": "used bookstore",
"sym": "B",
"color": "white",
+ "looks_like": "s_bookstore",
"see_cost": 5,
"extras": "build",
"mondensity": 1,
@@ -75,6 +80,7 @@
"name": "used bookstore",
"sym": "B",
"color": "white",
+ "looks_like": "s_bookstore_roof",
"see_cost": 5,
"extras": "build",
"mondensity": 1
@@ -100,31 +106,24 @@
"name": "Swamp",
"sym": "F",
"color": "cyan",
- "see_cost": 5
+ "looks_like": "forest_water",
+ "see_cost": 5,
+ "flags": [ "SOURCE_FORAGE", "RISK_HIGH" ]
},
{
"type": "overmap_terrain",
"id": "black_dragon_lair_z-0_NE",
- "name": "Swamp",
- "sym": "F",
- "color": "cyan",
- "see_cost": 5
+ "copy-from": "black_dragon_lair_z-0_NW"
},
{
"type": "overmap_terrain",
"id": "black_dragon_lair_z-0_SE",
- "name": "Swamp",
- "sym": "F",
- "color": "cyan",
- "see_cost": 5
+ "copy-from": "black_dragon_lair_z-0_NW"
},
{
"type": "overmap_terrain",
"id": "black_dragon_lair_z-0_SW",
- "name": "Swamp",
- "sym": "F",
- "color": "cyan",
- "see_cost": 5
+ "copy-from": "black_dragon_lair_z-0_NW"
},
{
"type": "overmap_terrain",
@@ -132,6 +131,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -140,6 +140,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -148,6 +149,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -156,6 +158,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -164,6 +167,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -172,6 +176,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -180,6 +185,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -188,6 +194,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -196,6 +203,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -204,6 +212,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -212,6 +221,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -220,6 +230,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -228,6 +239,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -236,6 +248,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -244,6 +257,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -252,6 +266,7 @@
"name": "solid rock",
"sym": "%",
"color": "light_gray",
+ "looks_like": "empty_rock",
"see_cost": 5
},
{
@@ -260,6 +275,7 @@
"name": "forest",
"sym": "F",
"color": "green",
+ "looks_like": "forest",
"see_cost": 5
},
{
@@ -268,6 +284,7 @@
"name": "forest",
"sym": ".",
"color": "blue",
+ "looks_like": "open_air",
"see_cost": 5
},
{
@@ -276,6 +293,7 @@
"name": "forest",
"sym": ".",
"color": "blue",
+ "looks_like": "open_air",
"see_cost": 5
},
{
@@ -284,6 +302,7 @@
"name": "forest",
"sym": ".",
"color": "blue",
+ "looks_like": "open_air",
"see_cost": 5
},
{
@@ -292,6 +311,7 @@
"name": "forest",
"sym": ".",
"color": "blue",
+ "looks_like": "open_air",
"see_cost": 5
},
{
@@ -300,6 +320,7 @@
"name": "lake shore",
"sym": "#",
"color": "light_blue",
+ "looks_like": "lake_shore",
"see_cost": 5
},
{
@@ -308,6 +329,7 @@
"name": "forest",
"sym": ".",
"color": "blue",
+ "looks_like": "open_air",
"see_cost": 5
},
{
@@ -316,7 +338,8 @@
"copy-from": "generic_city_building",
"sym": "W",
"color": "light_blue",
- "name": "wizard tower"
+ "name": "wizard tower",
+ "flags": [ "SOURCE_LUXURY", "RISK_HIGH" ]
},
{
"type": "overmap_terrain",
@@ -369,6 +392,7 @@
"name": "forest",
"sym": "F",
"color": "brown",
+ "looks_like": "cemetery_small",
"see_cost": 5
},
{
@@ -387,6 +411,7 @@
"name": "magic academy",
"sym": "#",
"color": "light_blue",
+ "looks_like": "campus_lecture_0_0_0",
"see_cost": 5,
"mondensity": 2,
"flags": [ "SIDEWALK" ]
@@ -397,70 +422,44 @@
"name": "magic academy",
"sym": "#",
"color": "light_blue",
+ "looks_like": "campus_lecture_0_0_1",
"mondensity": 2,
"see_cost": 5
},
{
"type": "overmap_terrain",
"id": "magic_academy_3rd",
- "name": "magic academy",
- "sym": "#",
- "color": "light_blue",
- "mondensity": 2,
- "see_cost": 5
+ "copy-from": "magic_academy_2nd"
},
{
"type": "overmap_terrain",
"id": "magic_academy_4th",
- "name": "magic academy",
- "sym": "#",
- "color": "light_blue",
- "mondensity": 2,
- "see_cost": 5
+ "copy-from": "magic_academy_3rd"
},
{
"type": "overmap_terrain",
"id": "magic_academy_5th",
- "name": "magic academy",
- "sym": "#",
- "color": "light_blue",
- "see_cost": 5
+ "copy-from": "magic_academy_4th"
},
{
"type": "overmap_terrain",
"id": "magic_academy_6th",
- "name": "magic academy",
- "sym": "#",
- "color": "light_blue",
- "mondensity": 2,
- "see_cost": 5
+ "copy-from": "magic_academy_5th"
},
{
"type": "overmap_terrain",
"id": "magic_academy_7th",
- "name": "magic academy",
- "sym": "#",
- "color": "light_blue",
- "mondensity": 2,
- "see_cost": 5
+ "copy-from": "magic_academy_6th"
},
{
"type": "overmap_terrain",
"id": "magic_academy_8th",
- "name": "magic academy",
- "sym": "#",
- "color": "light_blue",
- "mondensity": 2,
- "see_cost": 5
+ "copy-from": "magic_academy_7th"
},
{
"type": "overmap_terrain",
"id": "magic_academy_basement",
- "name": "magic academy",
- "sym": "#",
- "color": "light_blue",
- "mondensity": 2,
- "see_cost": 5
+ "copy-from": "magic_academy_2nd"
},
{
"type": "overmap_terrain",
@@ -468,6 +467,7 @@
"name": "magic academy",
"sym": "#",
"color": "light_blue",
+ "looks_like": "campus_lecture_0_0_3",
"see_cost": 5
},
{
@@ -485,6 +485,7 @@
"name": "attunement altar",
"sym": "O",
"color": "light_green",
+ "looks_like": "standing_stones",
"see_cost": 5,
"mondensity": 2
}
diff --git a/data/mods/TEST_DATA/effects.json b/data/mods/TEST_DATA/effects.json
index b6fd71d706341..0069a87d459bf 100644
--- a/data/mods/TEST_DATA/effects.json
+++ b/data/mods/TEST_DATA/effects.json
@@ -10,6 +10,7 @@
"rating": "good",
"max_duration": "1 h",
"max_intensity": 10,
+ "int_decay_tick": 2,
"base_mods": {
"str_mod": [ 1 ],
"dex_mod": [ 2 ],
@@ -76,6 +77,16 @@
"max_intensity": 3,
"chance_kill": [ [ 0, 1 ], [ 1, 10 ], [ 1, 1 ] ]
},
+ {
+ "type": "effect_type",
+ "id": "test_int_remove",
+ "name": [ "Protected from removal" ],
+ "desc": [ "Don't worry, you can't run out of steam!" ],
+ "int_decay_remove": false,
+ "max_intensity": 4,
+ "int_decay_step": -2,
+ "int_decay_tick": 1
+ },
{
"type": "effect_type",
"id": "max_effected",
diff --git a/data/raw/keybindings.json b/data/raw/keybindings.json
index 6958c446953e2..bef6f1a69ce5e 100644
--- a/data/raw/keybindings.json
+++ b/data/raw/keybindings.json
@@ -1232,6 +1232,12 @@
"name": "Show extended description",
"bindings": [ { "input_method": "keyboard_any", "key": "e" } ]
},
+ {
+ "type": "keybinding",
+ "id": "CHANGE_MONSTER_NAME",
+ "name": "Change monster name",
+ "bindings": [ { "input_method": "keyboard_any", "key": "c" } ]
+ },
{
"type": "keybinding",
"id": "TRAVEL_TO",
diff --git a/doc/EFFECTS_JSON.md b/doc/EFFECTS_JSON.md
index ce56042a2d6c1..0860f8e847f29 100644
--- a/doc/EFFECTS_JSON.md
+++ b/doc/EFFECTS_JSON.md
@@ -217,8 +217,8 @@ in "removes_effects" are automatically added to "blocks_effects", no need for ma
### Effect limiters
```C++
- "max_duration": 100,
- "dur_add_perc": 150 - Defaults to 100%
+ "max_duration": 100, - Time duration string, defaults to 365 days
+ "dur_add_perc": 150 - Defaults to 100(%)
```
These are utilized when adding to currently existing effects. "max_duration" limits the overall duration of the effect.
"dur_add_perc" is the percentage value of the normal duration for adding to an existing. An example:
@@ -230,11 +230,12 @@ future applications decreasing the overall time left.
### Intensities
Intensities are used to control effect effects, names, and descriptions. They are defined with:
-```C++
- "int_add_val": 2 - Defaults to 0! This means future applications will not increase intensity unless changed!
- and/or
- "int_decay_step": -2, - Defaults to -1
- "int_decay_tick": 10
+```JSON
+ "int_add_val": 2 - Int, defaults to 0 meaning future applications will not increase intensity
+
+ "int_decay_step": -2, - Int, default -1, intensity levels removed every decay tick
+ "int_decay_tick": 10 - Int, seconds between intensity decay (no decay at the default of 0)
+ "int_decay_remove": true - Bool, default true, removes the intensity if decay would decrease it to zero
or
"int_dur_factor": 700
```
@@ -245,7 +246,8 @@ Because "int_add_val" = 2, the second addition will change the effect intensity
NOTE: You must have at least one of the 3 intensity data sets for intensity to do anything!
"int_decay_step" and "int_decay_tick" require one another to do anything. If both exist then the game will automatically
-increment the current effect intensities by "int_decay_step" every "int_decay_tick" ticks, capping the result at [1, "max_intensity"].
+increment the current effect intensities by "int_decay_step" every "int_decay_tick" ticks, capping the result at [0, "max_intensity"]
+and removing effects if the intensity reaches zero and `int_decay_remove` is true.
This can be used to make effects automatically increase or decrease in intensity over time.
"int_dur_factor" overrides the other three intensities fields, and forces the intensity to be a number defined as
diff --git a/doc/JSON_FLAGS.md b/doc/JSON_FLAGS.md
index 4578ee542fbda..c21ebd69d1981 100644
--- a/doc/JSON_FLAGS.md
+++ b/doc/JSON_FLAGS.md
@@ -1225,6 +1225,23 @@ These branches are also the valid entries for the categories of `dreams` in `dre
- ```NEED_FULL_MAGAZINE``` If this recipe requires magazines, it needs one that is full.
- ```FULL_MAGAZINE``` Crafted or deconstructed items from this recipe will have fully-charged magazines.
+### Categories
+
+- ```CC_BUILDING```
+
+### Flags
+
+These flags apply only to camp building recipes (hubs and expansions). The purpose is to allow reuse of blueprints to create the "same"
+facility oriented differently. Mirroring takes place before rotation, and it is an error to try to apply mirroring multiple times with the
+same orientation, as well as to try to apply multiple rotations. It is permitted to apply different versions of the flags if they apply to
+different directions (and it is indeed the primary intended usage).
+
+- ```MAP_MIRROR_HORIZONTAL``` Causes the building recipe to mirror both the location and contents of the blueprint(s) used by the recipe.
+- ```MAP_MIRROR_VERTICAL``` Causes the building recipe to mirror both the location and contents of the blueprint(s) used by the recipe.
+- ```MAP_ROTATE_[X]``` X has to be one of 90, 180, or 270 and requests the blueprint to be rotated by the given number of degrees before being applied.
+- ```MAP_MIRROR_HORIZONTAL_IF_[Y]``` Similar to MAP_MIRROR_HORIZONTAL, but is applied only if the tile the expansion is on is Y. The legal values for Y are "NW", "N", "NE", "E", "SE", "S", SW", and "W".
+- ```MAP_MIRROR_VERTICAL_IF_[Y]``` The vertical version of the previous flag.
+- ```MAP_ROTATE_[X]_IF_[Y]``` The expansion location dependent version of "MAP_ROTATE_X", with Y having the same legal values as the two sets of flags above.
## Scenarios
diff --git a/doc/JSON_INFO.md b/doc/JSON_INFO.md
index ea2ef20e47b9f..50cf93e9d2e9c 100644
--- a/doc/JSON_INFO.md
+++ b/doc/JSON_INFO.md
@@ -55,6 +55,7 @@ Use the `Home` key to return to the top.
- [`cbms`](#cbms)
- [`traits`](#traits)
- [Recipes](#recipes)
+ - [Practice recipes](#practice-recipes)
- [Recipe requirements](#recipe-requirements)
- [Defining common requirements](#defining-common-requirements)
- [Overlapping recipe component requirements](#overlapping-recipe-component-requirements)
@@ -67,6 +68,7 @@ Use the `Home` key to return to the top.
- [`achievement`](#achievement)
- [`conduct`](#conduct)
- [Skills](#skills)
+ - [Speed Description](#speed-description)
- [Traits/Mutations](#traitsmutations)
- [Traps](#traps)
- [Vehicle Groups](#vehicle-groups)
@@ -1306,6 +1308,13 @@ Crafting recipes are defined as a JSON object with the following fields:
]
```
+#### Practice recipes
+
+Recipes may instead be defined with type "practice", to make them appear in the "PRACTICE" tab of
+the crafting menu. These recipes do not have a "result", but they may define "byproducts". See
+[PRACTICE_RECIPES.md](PRACTICE_RECIPES.md) for how to define them.
+
+
#### Recipe requirements
The tool quality and component requirements for a recipe may be expressed in a combination of
diff --git a/doc/MAPGEN.md b/doc/MAPGEN.md
index 732e33cb4fc52..8184fac902072 100644
--- a/doc/MAPGEN.md
+++ b/doc/MAPGEN.md
@@ -218,6 +218,18 @@ Example:
In this example, the "rows" property should be 48x48, with each quadrant of 24x24 being associated with each of the four
apartments_mod_tower overmap terrain ids specified.
+### "om_terrain" for linear terrain
+
+Some overmap terrains are *linear*. This is used for things like roads,
+tunnels, etc. where they form lines which can connect in various ways. Such
+terrains are defined with the `LINEAR` flag in their `overmap_terrain`
+definition (see the [OVERMAP docs](OVERMAP.md)).
+
+When defining the JSON mapgen for such terrain, you must define several
+instances, for each type of connection that might exist. Each gets a suffix
+added to the `overmap_terrain` id. The suffixes are: `_end`, `_straight`,
+`_curved`, `_tee`, `_four_way`. For an example, see the definitions for `ants`
+in [`ants.json`](../data/json/mapgen/bugs/ants.json).
### Define mapgen "weight"
diff --git a/doc/OVERMAP.md b/doc/OVERMAP.md
index 7a326fad3a0d8..e222afc422b21 100644
--- a/doc/OVERMAP.md
+++ b/doc/OVERMAP.md
@@ -225,11 +225,11 @@ rotation for the referenced overmap terrains (e.g. the `_north` version for all)
| `spawns` | Spawns added once at mapgen. Monster group, % chance, population range (min/max). |
| `flags` | See `Overmap terrains` in [JSON_FLAGS.md](JSON_FLAGS.md). |
| `mapgen` | Specify a C++ mapgen function. Don't do this--use JSON. |
-| `mapgen_straight` | Specify a C++ mapgen function for a LINEAR feature variation. |
-| `mapgen_curved` | Specify a C++ mapgen function for a LINEAR feature variation. |
-| `mapgen_end` | Specify a C++ mapgen function for a LINEAR feature variation. |
-| `mapgen_tee` | Specify a C++ mapgen function for a LINEAR feature variation. |
-| `mapgen_four_way` | Specify a C++ mapgen function for a LINEAR feature variation. |
+| `mapgen_straight` | Specify a C++ mapgen function for a LINEAR feature variation. Prefer JSON instead. |
+| `mapgen_curved` | Specify a C++ mapgen function for a LINEAR feature variation. Prefer JSON instead. |
+| `mapgen_end` | Specify a C++ mapgen function for a LINEAR feature variation. Prefer JSON instead. |
+| `mapgen_tee` | Specify a C++ mapgen function for a LINEAR feature variation. Prefer JSON instead. |
+| `mapgen_four_way` | Specify a C++ mapgen function for a LINEAR feature variation. Prefer JSON instead. |
### Example
diff --git a/doc/PRACTICE_RECIPES.md b/doc/PRACTICE_RECIPES.md
new file mode 100644
index 0000000000000..2a257debba21b
--- /dev/null
+++ b/doc/PRACTICE_RECIPES.md
@@ -0,0 +1,70 @@
+# practice
+
+Practice recipes allow practicing skills and proficiencies by working on crafts that are "just for
+practice", and do not yield a finished result (although they may have some byproducts). They may be
+designed to focus on specific niche skills or proficiencies, which might be prohibitive to learn
+from the more productive (and time-consuming) crafting recipes requiring many proficiencies.
+
+The practice recipe JSON format is a form of the "recipe" type, with a few differences noted below.
+See [Recipes section of JSON_INFO](JSON_INFO.md#recipes) for more on recipe fields.
+
+
+## JSON fields
+
+Practice recipes have type "practice", and they cannot define a "result", since they are not
+intended to make a specific item. In most other ways, they are just like "recipe" definitions, are
+loaded into the main `recipe_dictionary` used for crafting, and appear in the crafting UI.
+
+They:
+
+- must define `id`, `name`, `description` and `practice_data`
+- must not define a `result` or `difficulty`
+- may define `byproducts`
+
+The `practice_data` field is required for practice recipes, and must be defined. It is an object
+with its own fields, as follows:
+
+- `min_difficulty` - Lowest skill level when practice recipe can be attempted.
+- `max_difficulty` - Highest skill level difficulty you will get credit for when practicing.
+- `skill_limit` - Hard cap on highest skill level that can be obtained. Optional, default max skill level (10). This should not be set higher than `max_difficulty` + 1.
+
+The difficulty of the recipe will match your current *practical* skill level if it is between
+`min_difficulty` and `max_difficulty`.
+
+The "category" and "subcategory" fields tell where the recipe should appear in the crafting menu.
+Use category "CC_PRACTICE" for practice recipes, and set a subcategory like "CSC_TAILORING" to make
+it appear in the corresponding skill sub-tab.
+
+As with other recipes, the `skill_used` and `proficiencies` will affect what is learned during
+practice crafting, the `components`, `tools`, and `using` fields for ingredients and requirements
+work the same way.
+
+
+## Example
+
+For example, here is a recipe for practicing intermediate level computer skill:
+
+```
+[
+ {
+ "id": "prac_computer_int",
+ "type": "practice",
+ "activity_level": "NO_EXERCISE",
+ "category": "CC_PRACTICE",
+ "subcategory": "CSC_PRACTICE_COMPUTERS",
+ "name": "computer (intermediate)",
+ "description": "Practice using the command line, writing and running scripts making use of common algorithms and data structures.",
+ "skill_used": "computer",
+ "time": "1 h",
+ "practice_data": { "min_difficulty": 2, "max_difficulty": 4, "skill_limit": 5 },
+ "autolearn": [ [ "computer", 4 ] ],
+ "book_learn": [ [ "manual_computers", 2 ], [ "computer_science", 3 ] ],
+ "tools": [ [ [ "laptop", 50 ] ] ]
+ }
+]
+```
+
+The recipe `time` should be set to the standard `1 h` unless there is a compelling reason to do
+otherwise. Practice recipes will be easier to balance against one another for skill and proficiency
+development if they all adhere to the same standard recipe length.
+
diff --git a/gfx/ChibiUltica/ChibiNormalCharacter.png b/gfx/ChibiUltica/ChibiNormalCharacter.png
index 50898b7a460fc..93fa608c4881a 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 48c39d947e73d..b1204ab6e4be7 100644
Binary files a/gfx/ChibiUltica/ChibiNormalMonster.png and b/gfx/ChibiUltica/ChibiNormalMonster.png differ
diff --git a/gfx/ChibiUltica/ChibiTallOverlay.png b/gfx/ChibiUltica/ChibiTallOverlay.png
index 1fe5686539bb5..96f7892297d67 100644
Binary files a/gfx/ChibiUltica/ChibiTallOverlay.png and b/gfx/ChibiUltica/ChibiTallOverlay.png differ
diff --git a/gfx/ChibiUltica/ChibiWideMonster.png b/gfx/ChibiUltica/ChibiWideMonster.png
new file mode 100644
index 0000000000000..40873426a2cd4
Binary files /dev/null and b/gfx/ChibiUltica/ChibiWideMonster.png differ
diff --git a/gfx/ChibiUltica/ChibismallMonster.png b/gfx/ChibiUltica/ChibismallMonster.png
new file mode 100644
index 0000000000000..24cd2453a8cbb
Binary files /dev/null and b/gfx/ChibiUltica/ChibismallMonster.png differ
diff --git a/gfx/ChibiUltica/fillerhoder.png b/gfx/ChibiUltica/fillerhoder.png
index 1700c400d73ed..fc22c821cd633 100644
Binary files a/gfx/ChibiUltica/fillerhoder.png and b/gfx/ChibiUltica/fillerhoder.png differ
diff --git a/gfx/ChibiUltica/huge.png b/gfx/ChibiUltica/huge.png
index 011b2b72a7253..0582f0e6b22bc 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 fff86188f8776..d17c88b72b4b3 100644
Binary files a/gfx/ChibiUltica/incomplete.png and b/gfx/ChibiUltica/incomplete.png differ
diff --git a/gfx/ChibiUltica/large.png b/gfx/ChibiUltica/large.png
index 5fbba7ca5fd51..bac21bde5f258 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 0bc3636bea2ef..206b164fdd3b9 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 f4a4ca75c7361..4a4d5ecbbff83 100644
Binary files a/gfx/ChibiUltica/small.png and b/gfx/ChibiUltica/small.png differ
diff --git a/gfx/ChibiUltica/tallcommon.png b/gfx/ChibiUltica/tallcommon.png
new file mode 100644
index 0000000000000..01413bc96345e
Binary files /dev/null and b/gfx/ChibiUltica/tallcommon.png differ
diff --git a/gfx/ChibiUltica/tallfurniture.png b/gfx/ChibiUltica/tallfurniture.png
index f6f96157fedc8..52f67661f5212 100644
Binary files a/gfx/ChibiUltica/tallfurniture.png and b/gfx/ChibiUltica/tallfurniture.png differ
diff --git a/gfx/ChibiUltica/tallmonsters.png b/gfx/ChibiUltica/tallmonsters.png
index 53a2490cd3c6f..24c28c36c7b5f 100644
Binary files a/gfx/ChibiUltica/tallmonsters.png and b/gfx/ChibiUltica/tallmonsters.png differ
diff --git a/gfx/ChibiUltica/tallterrain.png b/gfx/ChibiUltica/tallterrain.png
index 10cbb269e1aad..bcb17b805abc1 100644
Binary files a/gfx/ChibiUltica/tallterrain.png and b/gfx/ChibiUltica/tallterrain.png differ
diff --git a/gfx/ChibiUltica/tallvehicle.png b/gfx/ChibiUltica/tallvehicle.png
index 40f6e0d0f265a..ec3677343187c 100644
Binary files a/gfx/ChibiUltica/tallvehicle.png and b/gfx/ChibiUltica/tallvehicle.png differ
diff --git a/gfx/ChibiUltica/tile_config.json b/gfx/ChibiUltica/tile_config.json
index 8765cc72cf76a..94135f318f58d 100644
--- a/gfx/ChibiUltica/tile_config.json
+++ b/gfx/ChibiUltica/tile_config.json
@@ -476,8 +476,8 @@
{ "id": "overlay_wielded_arx160", "fg": 481, "rotates": false },
{ "id": "overlay_wielded_ashot", "fg": 482, "rotates": false },
{ "id": "overlay_wielded_ax", "fg": 560, "rotates": false },
- { "id": "overlay_wielded_bag_canvas", "fg": 953, "rotates": false },
- { "id": "overlay_wielded_bag_canvas_small", "fg": 953, "rotates": false },
+ { "id": "overlay_wielded_bag_canvas", "fg": 954, "rotates": false },
+ { "id": "overlay_wielded_bag_canvas_small", "fg": 954, "rotates": false },
{ "id": "overlay_wielded_bagh_nakha", "fg": 431, "rotates": false },
{ "id": "overlay_wielded_bagpipes", "fg": 613, "rotates": false },
{ "id": "overlay_wielded_banjo", "fg": 561, "rotates": false },
@@ -507,7 +507,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": 6632, "rotates": false },
+ { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 6776, "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 },
@@ -901,7 +901,7 @@
{ "id": "overlay_wielded_sten", "fg": 550, "rotates": false },
{ "id": "overlay_wielded_steyr_aug", "fg": 551, "rotates": false },
{ "id": "overlay_wielded_stick", "fg": 448, "rotates": false },
- { "id": "overlay_wielded_stock_pot", "fg": 620, "rotates": false },
+ { "id": "overlay_wielded_stock_pot", "fg": 621, "rotates": false },
{ "id": "overlay_wielded_stormbringer", "fg": 565, "rotates": false },
{ "id": "overlay_wielded_stormbringer_on", "fg": 602, "rotates": false },
{ "id": "overlay_wielded_surv_carbine_223", "fg": 493, "rotates": false },
@@ -977,660 +977,660 @@
{ "id": "overlay_wielded_zweihander", "fg": 610, "rotates": false },
{ "id": "overlay_wielded_zweihander_fake", "fg": 610, "rotates": false },
{ "id": "overlay_wielded_zweihander_inferior", "fg": 610, "rotates": false },
- { "id": "overlay_female_worn_dress_shirt", "fg": 662, "rotates": false },
- { "id": "overlay_female_worn_jumpsuit", "fg": 663, "rotates": false },
- { "id": "overlay_female_worn_jumpsuit_xl", "fg": 663, "rotates": false },
- { "id": "overlay_female_worn_linuxtshirt", "fg": 667, "rotates": false },
- { "id": "overlay_female_worn_long_underpants", "fg": 664, "rotates": false },
- { "id": "overlay_female_worn_long_undertop", "fg": 665, "rotates": false },
- { "id": "overlay_female_worn_longshirt", "fg": 666, "rotates": false },
- { "id": "overlay_female_worn_polo_shirt", "fg": 667, "rotates": false },
- { "id": "overlay_female_worn_postman_shirt", "fg": 662, "rotates": false },
- { "id": "overlay_female_worn_sheriffshirt", "fg": 666, "rotates": false },
- { "id": "overlay_female_worn_thermal_outfit", "fg": 622, "rotates": false },
- { "id": "overlay_female_worn_thermal_outfit_on", "fg": 622, "rotates": false },
- { "id": "overlay_female_worn_thermal_suit", "fg": 623, "rotates": false },
- { "id": "overlay_female_worn_thermal_suit_on", "fg": 623, "rotates": false },
- { "id": "overlay_female_worn_towel", "fg": 624, "rotates": false },
- { "id": "overlay_female_worn_towel_soiled", "fg": 677, "rotates": false },
- { "id": "overlay_female_worn_towel_wet", "fg": 624, "rotates": false },
- { "id": "overlay_female_worn_tshirt", "fg": 667, "rotates": false },
- { "id": "overlay_female_worn_tshirt_text", "fg": 667, "rotates": false },
- { "id": "overlay_female_worn_under_armor", "fg": 668, "rotates": false },
- { "id": "overlay_female_worn_union_suit", "fg": 669, "rotates": false },
- { "id": "overlay_male_worn_dress_shirt", "fg": 670, "rotates": false },
- { "id": "overlay_male_worn_jumpsuit", "fg": 671, "rotates": false },
- { "id": "overlay_male_worn_jumpsuit_xl", "fg": 671, "rotates": false },
- { "id": "overlay_male_worn_linuxtshirt", "fg": 676, "rotates": false },
- { "id": "overlay_male_worn_long_underpants", "fg": 672, "rotates": false },
- { "id": "overlay_male_worn_long_undertop", "fg": 673, "rotates": false },
- { "id": "overlay_male_worn_longshirt", "fg": 674, "rotates": false },
- { "id": "overlay_male_worn_polo_shirt", "fg": 676, "rotates": false },
- { "id": "overlay_male_worn_postman_shirt", "fg": 670, "rotates": false },
- { "id": "overlay_male_worn_sheriffshirt", "fg": 674, "rotates": false },
- { "id": "overlay_male_worn_thermal_outfit", "fg": 625, "rotates": false },
- { "id": "overlay_male_worn_thermal_outfit_on", "fg": 625, "rotates": false },
- { "id": "overlay_male_worn_thermal_suit", "fg": 626, "rotates": false },
- { "id": "overlay_male_worn_thermal_suit_on", "fg": 626, "rotates": false },
- { "id": "overlay_male_worn_towel", "fg": 627, "rotates": false },
- { "id": "overlay_male_worn_towel_soiled", "fg": 678, "rotates": false },
- { "id": "overlay_male_worn_towel_wet", "fg": 627, "rotates": false },
- { "id": "overlay_male_worn_tshirt", "fg": 676, "rotates": false },
- { "id": "overlay_male_worn_tshirt_text", "fg": 676, "rotates": false },
- { "id": "overlay_male_worn_under_armor", "fg": 680, "rotates": false },
- { "id": "overlay_male_worn_union_suit", "fg": 682, "rotates": false },
- { "id": "overlay_worn_2byarm_guard", "fg": 693, "rotates": false },
- { "id": "overlay_worn_2byshin_guard", "fg": 850, "rotates": false },
- { "id": "overlay_worn_XL_holster", "fg": 917, "rotates": false },
- { "id": "overlay_worn_aep_suit", "fg": 685, "rotates": false },
- { "id": "overlay_worn_american_flag", "fg": 689, "rotates": false },
- { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 816, "rotates": false },
- { "id": "overlay_worn_anbc_suit", "fg": 691, "rotates": false },
- { "id": "overlay_worn_apron_leather", "fg": 970, "rotates": false },
- { "id": "overlay_worn_arm_splint", "fg": 702, "rotates": false },
- { "id": "overlay_worn_arm_warmers", "fg": 703, "rotates": false },
- { "id": "overlay_worn_armguard_acidchitin", "fg": 690, "rotates": false },
- { "id": "overlay_worn_armguard_chitin", "fg": 692, "rotates": false },
- { "id": "overlay_worn_armguard_hard", "fg": 693, "rotates": false },
- { "id": "overlay_worn_armguard_larmor", "fg": 692, "rotates": false },
- { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 1020, "rotates": false },
- { "id": "overlay_worn_armguard_paper", "fg": 694, "rotates": false },
- { "id": "overlay_worn_armguard_soft", "fg": 693, "rotates": false },
- { "id": "overlay_worn_armor_acidchitin", "fg": 688, "rotates": false },
- { "id": "overlay_worn_armor_blarmor", "fg": 696, "rotates": false },
- { "id": "overlay_worn_armor_chitin", "fg": 695, "rotates": false },
- { "id": "overlay_worn_armor_cuirass", "fg": 746, "rotates": false },
- { "id": "overlay_worn_armor_farmor", "fg": 696, "rotates": false },
- { "id": "overlay_worn_armor_lamellar", "fg": 696, "rotates": false },
- { "id": "overlay_worn_armor_larmor", "fg": 696, "rotates": false },
- { "id": "overlay_worn_armor_lightplate", "fg": 698, "rotates": false },
- { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 746, "rotates": false },
- { "id": "overlay_worn_armor_nomad", "fg": 987, "rotates": false },
- { "id": "overlay_worn_armor_plarmor", "fg": 697, "rotates": false },
- { "id": "overlay_worn_armor_plate", "fg": 698, "rotates": false },
- { "id": "overlay_worn_armor_samurai", "fg": 699, "rotates": false },
- { "id": "overlay_worn_armor_scavenger", "fg": 988, "rotates": false },
- { "id": "overlay_worn_armor_scrapsuit", "fg": 700, "rotates": false },
- { "id": "overlay_worn_armor_wyrm", "fg": 628, "rotates": false },
- { "id": "overlay_worn_army_top", "fg": 701, "rotates": false },
- { "id": "overlay_worn_b_shorts", "fg": 739, "rotates": false },
- { "id": "overlay_worn_back_holster", "fg": 705, "rotates": false },
- { "id": "overlay_worn_backpack", "fg": 704, "rotates": false },
- { "id": "overlay_worn_backpack_leather", "fg": 704, "rotates": false },
- { "id": "overlay_worn_badge_doctor", "fg": 989, "rotates": false },
- { "id": "overlay_worn_badge_foodkid", "fg": 990, "rotates": false },
- { "id": "overlay_worn_balclava", "fg": 706, "rotates": false },
- { "id": "overlay_worn_baldric", "fg": 917, "rotates": false },
- { "id": "overlay_worn_bandana", "fg": 707, "rotates": false },
- { "id": "overlay_worn_bastsandals", "fg": 708, "rotates": false },
- { "id": "overlay_worn_bead_bracelet", "fg": 991, "rotates": false },
- { "id": "overlay_worn_bead_ear", "fg": 992, "rotates": false },
- { "id": "overlay_worn_beekeeping_gloves", "fg": 782, "rotates": false },
- { "id": "overlay_worn_beekeeping_hood", "fg": 993, "rotates": false },
- { "id": "overlay_worn_beekeeping_suit", "fg": 709, "rotates": false },
- { "id": "overlay_worn_beret", "fg": 710, "rotates": false },
- { "id": "overlay_worn_beret_wool", "fg": 710, "rotates": false },
- { "id": "overlay_worn_bikini_bottom", "fg": 711, "rotates": false },
- { "id": "overlay_worn_bikini_top", "fg": 712, "rotates": false },
- { "id": "overlay_worn_bikini_top_fur", "fg": 748, "rotates": false },
- { "id": "overlay_worn_bikini_top_leather", "fg": 748, "rotates": false },
- { "id": "overlay_worn_bindle", "fg": 713, "rotates": false },
- { "id": "overlay_worn_blanket", "fg": 714, "rotates": false },
- { "id": "overlay_worn_blazer", "fg": 715, "rotates": false },
- { "id": "overlay_worn_blindfold", "fg": 716, "rotates": false },
- { "id": "overlay_worn_bondage_mask", "fg": 717, "rotates": false },
- { "id": "overlay_worn_bondage_suit", "fg": 718, "rotates": false },
- { "id": "overlay_worn_boots", "fg": 719, "rotates": false },
- { "id": "overlay_worn_boots_acidchitin", "fg": 683, "rotates": false },
- { "id": "overlay_worn_boots_bunker", "fg": 726, "rotates": false },
- { "id": "overlay_worn_boots_chitin", "fg": 722, "rotates": false },
- { "id": "overlay_worn_boots_combat", "fg": 723, "rotates": false },
- { "id": "overlay_worn_boots_fsurvivor", "fg": 726, "rotates": false },
- { "id": "overlay_worn_boots_fur", "fg": 725, "rotates": false },
- { "id": "overlay_worn_boots_h20survivor", "fg": 978, "rotates": false },
- { "id": "overlay_worn_boots_hiking", "fg": 719, "rotates": false },
- { "id": "overlay_worn_boots_hsurvivor", "fg": 724, "rotates": false },
- { "id": "overlay_worn_boots_larmor", "fg": 725, "rotates": false },
- { "id": "overlay_worn_boots_lsurvivor", "fg": 725, "rotates": false },
- { "id": "overlay_worn_boots_plate", "fg": 725, "rotates": false },
- { "id": "overlay_worn_boots_steel", "fg": 727, "rotates": false },
- { "id": "overlay_worn_boots_survivor", "fg": 725, "rotates": false },
- { "id": "overlay_worn_boots_western", "fg": 728, "rotates": false },
- { "id": "overlay_worn_boots_winter", "fg": 729, "rotates": false },
- { "id": "overlay_worn_boots_wsurvivor", "fg": 729, "rotates": false },
- { "id": "overlay_worn_boots_xlsurvivor", "fg": 729, "rotates": false },
- { "id": "overlay_worn_bootsheath", "fg": 720, "rotates": false },
- { "id": "overlay_worn_bootstrap", "fg": 721, "rotates": false },
- { "id": "overlay_worn_boxer_briefs", "fg": 730, "rotates": false },
- { "id": "overlay_worn_boxer_shorts", "fg": 730, "rotates": false },
- { "id": "overlay_worn_boxing_gloves", "fg": 731, "rotates": false },
- { "id": "overlay_worn_boy_shorts", "fg": 732, "rotates": false },
- { "id": "overlay_worn_bra", "fg": 733, "rotates": false },
- { "id": "overlay_worn_breeches", "fg": 895, "rotates": false },
- { "id": "overlay_worn_briefcase", "fg": 734, "rotates": false },
- { "id": "overlay_worn_briefs", "fg": 735, "rotates": false },
- { "id": "overlay_worn_bronze_medal", "fg": 996, "rotates": false },
- { "id": "overlay_worn_bscabbard", "fg": 736, "rotates": false },
- { "id": "overlay_worn_bunker_coat", "fg": 737, "rotates": false },
- { "id": "overlay_worn_bunker_pants", "fg": 738, "rotates": false },
- { "id": "overlay_worn_camisole", "fg": 740, "rotates": false },
- { "id": "overlay_worn_case_violin", "fg": 687, "rotates": false },
- { "id": "overlay_worn_cassock", "fg": 741, "rotates": false },
- { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 1014, "rotates": false },
- { "id": "overlay_worn_chainmail_arms", "fg": 742, "rotates": false },
- { "id": "overlay_worn_chainmail_hauberk", "fg": 746, "rotates": false },
- { "id": "overlay_worn_chainmail_hood", "fg": 743, "rotates": false },
- { "id": "overlay_worn_chainmail_legs", "fg": 744, "rotates": false },
- { "id": "overlay_worn_chainmail_suit", "fg": 745, "rotates": false },
- { "id": "overlay_worn_chainmail_vest", "fg": 746, "rotates": false },
- { "id": "overlay_worn_chaps_leather", "fg": 747, "rotates": false },
- { "id": "overlay_worn_chestrig", "fg": 974, "rotates": false },
- { "id": "overlay_worn_chestwrap", "fg": 748, "rotates": false },
- { "id": "overlay_worn_chestwrap_fur", "fg": 748, "rotates": false },
- { "id": "overlay_worn_chestwrap_leather", "fg": 748, "rotates": false },
- { "id": "overlay_worn_chestwrap_wool", "fg": 748, "rotates": false },
- { "id": "overlay_worn_cleansuit", "fg": 749, "rotates": false },
- { "id": "overlay_worn_cleats", "fg": 933, "rotates": false },
- { "id": "overlay_worn_cloak", "fg": 750, "rotates": false },
- { "id": "overlay_worn_cloak_bless", "fg": 755, "rotates": false },
- { "id": "overlay_worn_cloak_fur", "fg": 913, "rotates": false },
- { "id": "overlay_worn_cloak_leather", "fg": 913, "rotates": false },
- { "id": "overlay_worn_cloak_wool", "fg": 889, "rotates": false },
- { "id": "overlay_worn_clogs", "fg": 751, "rotates": false },
- { "id": "overlay_worn_clown_suit", "fg": 753, "rotates": false },
- { "id": "overlay_worn_clownshoes", "fg": 752, "rotates": false },
- { "id": "overlay_worn_coat_fur", "fg": 754, "rotates": false },
- { "id": "overlay_worn_coat_fur_sf", "fg": 754, "rotates": false },
- { "id": "overlay_worn_coat_lab", "fg": 755, "rotates": false },
- { "id": "overlay_worn_coat_rain", "fg": 756, "rotates": false },
- { "id": "overlay_worn_coat_winter", "fg": 757, "rotates": false },
- { "id": "overlay_worn_copper_locket", "fg": 997, "rotates": false },
- { "id": "overlay_worn_copper_necklace", "fg": 998, "rotates": false },
- { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 999, "rotates": false },
- { "id": "overlay_worn_corset", "fg": 758, "rotates": false },
- { "id": "overlay_worn_cowboy_hat", "fg": 759, "rotates": false },
- { "id": "overlay_worn_cowl_wool", "fg": 821, "rotates": false },
- { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 686, "rotates": false },
- { "id": "overlay_worn_dance_shoes", "fg": 797, "rotates": false },
- { "id": "overlay_worn_depowered_armor", "fg": 904, "rotates": false },
- { "id": "overlay_worn_depowered_helmet", "fg": 760, "rotates": false },
- { "id": "overlay_worn_dinosuit", "fg": 761, "rotates": false },
- { "id": "overlay_worn_dive_bag", "fg": 762, "rotates": false },
- { "id": "overlay_worn_diving_watch", "fg": 1004, "rotates": false },
- { "id": "overlay_worn_down_blanket", "fg": 714, "rotates": false },
- { "id": "overlay_worn_dragonskin", "fg": 1005, "rotates": false },
- { "id": "overlay_worn_dress", "fg": 763, "rotates": false },
- { "id": "overlay_worn_dress_bless", "fg": 764, "rotates": false },
- { "id": "overlay_worn_dress_shoes", "fg": 920, "rotates": false },
- { "id": "overlay_worn_dress_shoes_air", "fg": 797, "rotates": false },
- { "id": "overlay_worn_dress_skirt", "fg": 926, "rotates": false },
- { "id": "overlay_worn_dress_wedding", "fg": 764, "rotates": false },
- { "id": "overlay_worn_duffelbag", "fg": 947, "rotates": false },
- { "id": "overlay_worn_duster", "fg": 765, "rotates": false },
- { "id": "overlay_worn_duster_fur", "fg": 765, "rotates": false },
- { "id": "overlay_worn_duster_leather", "fg": 765, "rotates": false },
- { "id": "overlay_worn_duster_survivor", "fg": 766, "rotates": false },
+ { "id": "overlay_female_worn_dress_shirt", "fg": 663, "rotates": false },
+ { "id": "overlay_female_worn_jumpsuit", "fg": 664, "rotates": false },
+ { "id": "overlay_female_worn_jumpsuit_xl", "fg": 664, "rotates": false },
+ { "id": "overlay_female_worn_linuxtshirt", "fg": 668, "rotates": false },
+ { "id": "overlay_female_worn_long_underpants", "fg": 665, "rotates": false },
+ { "id": "overlay_female_worn_long_undertop", "fg": 666, "rotates": false },
+ { "id": "overlay_female_worn_longshirt", "fg": 667, "rotates": false },
+ { "id": "overlay_female_worn_polo_shirt", "fg": 668, "rotates": false },
+ { "id": "overlay_female_worn_postman_shirt", "fg": 663, "rotates": false },
+ { "id": "overlay_female_worn_sheriffshirt", "fg": 667, "rotates": false },
+ { "id": "overlay_female_worn_thermal_outfit", "fg": 623, "rotates": false },
+ { "id": "overlay_female_worn_thermal_outfit_on", "fg": 623, "rotates": false },
+ { "id": "overlay_female_worn_thermal_suit", "fg": 624, "rotates": false },
+ { "id": "overlay_female_worn_thermal_suit_on", "fg": 624, "rotates": false },
+ { "id": "overlay_female_worn_towel", "fg": 625, "rotates": false },
+ { "id": "overlay_female_worn_towel_soiled", "fg": 678, "rotates": false },
+ { "id": "overlay_female_worn_towel_wet", "fg": 625, "rotates": false },
+ { "id": "overlay_female_worn_tshirt", "fg": 668, "rotates": false },
+ { "id": "overlay_female_worn_tshirt_text", "fg": 668, "rotates": false },
+ { "id": "overlay_female_worn_under_armor", "fg": 669, "rotates": false },
+ { "id": "overlay_female_worn_union_suit", "fg": 670, "rotates": false },
+ { "id": "overlay_male_worn_dress_shirt", "fg": 671, "rotates": false },
+ { "id": "overlay_male_worn_jumpsuit", "fg": 672, "rotates": false },
+ { "id": "overlay_male_worn_jumpsuit_xl", "fg": 672, "rotates": false },
+ { "id": "overlay_male_worn_linuxtshirt", "fg": 677, "rotates": false },
+ { "id": "overlay_male_worn_long_underpants", "fg": 673, "rotates": false },
+ { "id": "overlay_male_worn_long_undertop", "fg": 674, "rotates": false },
+ { "id": "overlay_male_worn_longshirt", "fg": 675, "rotates": false },
+ { "id": "overlay_male_worn_polo_shirt", "fg": 677, "rotates": false },
+ { "id": "overlay_male_worn_postman_shirt", "fg": 671, "rotates": false },
+ { "id": "overlay_male_worn_sheriffshirt", "fg": 675, "rotates": false },
+ { "id": "overlay_male_worn_thermal_outfit", "fg": 626, "rotates": false },
+ { "id": "overlay_male_worn_thermal_outfit_on", "fg": 626, "rotates": false },
+ { "id": "overlay_male_worn_thermal_suit", "fg": 627, "rotates": false },
+ { "id": "overlay_male_worn_thermal_suit_on", "fg": 627, "rotates": false },
+ { "id": "overlay_male_worn_towel", "fg": 628, "rotates": false },
+ { "id": "overlay_male_worn_towel_soiled", "fg": 679, "rotates": false },
+ { "id": "overlay_male_worn_towel_wet", "fg": 628, "rotates": false },
+ { "id": "overlay_male_worn_tshirt", "fg": 677, "rotates": false },
+ { "id": "overlay_male_worn_tshirt_text", "fg": 677, "rotates": false },
+ { "id": "overlay_male_worn_under_armor", "fg": 681, "rotates": false },
+ { "id": "overlay_male_worn_union_suit", "fg": 683, "rotates": false },
+ { "id": "overlay_worn_2byarm_guard", "fg": 694, "rotates": false },
+ { "id": "overlay_worn_2byshin_guard", "fg": 851, "rotates": false },
+ { "id": "overlay_worn_XL_holster", "fg": 918, "rotates": false },
+ { "id": "overlay_worn_aep_suit", "fg": 686, "rotates": false },
+ { "id": "overlay_worn_american_flag", "fg": 690, "rotates": false },
+ { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 817, "rotates": false },
+ { "id": "overlay_worn_anbc_suit", "fg": 692, "rotates": false },
+ { "id": "overlay_worn_apron_leather", "fg": 971, "rotates": false },
+ { "id": "overlay_worn_arm_splint", "fg": 703, "rotates": false },
+ { "id": "overlay_worn_arm_warmers", "fg": 704, "rotates": false },
+ { "id": "overlay_worn_armguard_acidchitin", "fg": 691, "rotates": false },
+ { "id": "overlay_worn_armguard_chitin", "fg": 693, "rotates": false },
+ { "id": "overlay_worn_armguard_hard", "fg": 694, "rotates": false },
+ { "id": "overlay_worn_armguard_larmor", "fg": 693, "rotates": false },
+ { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 1021, "rotates": false },
+ { "id": "overlay_worn_armguard_paper", "fg": 695, "rotates": false },
+ { "id": "overlay_worn_armguard_soft", "fg": 694, "rotates": false },
+ { "id": "overlay_worn_armor_acidchitin", "fg": 689, "rotates": false },
+ { "id": "overlay_worn_armor_blarmor", "fg": 697, "rotates": false },
+ { "id": "overlay_worn_armor_chitin", "fg": 696, "rotates": false },
+ { "id": "overlay_worn_armor_cuirass", "fg": 747, "rotates": false },
+ { "id": "overlay_worn_armor_farmor", "fg": 697, "rotates": false },
+ { "id": "overlay_worn_armor_lamellar", "fg": 697, "rotates": false },
+ { "id": "overlay_worn_armor_larmor", "fg": 697, "rotates": false },
+ { "id": "overlay_worn_armor_lightplate", "fg": 699, "rotates": false },
+ { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 747, "rotates": false },
+ { "id": "overlay_worn_armor_nomad", "fg": 988, "rotates": false },
+ { "id": "overlay_worn_armor_plarmor", "fg": 698, "rotates": false },
+ { "id": "overlay_worn_armor_plate", "fg": 699, "rotates": false },
+ { "id": "overlay_worn_armor_samurai", "fg": 700, "rotates": false },
+ { "id": "overlay_worn_armor_scavenger", "fg": 989, "rotates": false },
+ { "id": "overlay_worn_armor_scrapsuit", "fg": 701, "rotates": false },
+ { "id": "overlay_worn_armor_wyrm", "fg": 629, "rotates": false },
+ { "id": "overlay_worn_army_top", "fg": 702, "rotates": false },
+ { "id": "overlay_worn_b_shorts", "fg": 740, "rotates": false },
+ { "id": "overlay_worn_back_holster", "fg": 706, "rotates": false },
+ { "id": "overlay_worn_backpack", "fg": 705, "rotates": false },
+ { "id": "overlay_worn_backpack_leather", "fg": 705, "rotates": false },
+ { "id": "overlay_worn_badge_doctor", "fg": 990, "rotates": false },
+ { "id": "overlay_worn_badge_foodkid", "fg": 991, "rotates": false },
+ { "id": "overlay_worn_balclava", "fg": 707, "rotates": false },
+ { "id": "overlay_worn_baldric", "fg": 918, "rotates": false },
+ { "id": "overlay_worn_bandana", "fg": 708, "rotates": false },
+ { "id": "overlay_worn_bastsandals", "fg": 709, "rotates": false },
+ { "id": "overlay_worn_bead_bracelet", "fg": 992, "rotates": false },
+ { "id": "overlay_worn_bead_ear", "fg": 993, "rotates": false },
+ { "id": "overlay_worn_beekeeping_gloves", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_beekeeping_hood", "fg": 994, "rotates": false },
+ { "id": "overlay_worn_beekeeping_suit", "fg": 710, "rotates": false },
+ { "id": "overlay_worn_beret", "fg": 711, "rotates": false },
+ { "id": "overlay_worn_beret_wool", "fg": 711, "rotates": false },
+ { "id": "overlay_worn_bikini_bottom", "fg": 712, "rotates": false },
+ { "id": "overlay_worn_bikini_top", "fg": 713, "rotates": false },
+ { "id": "overlay_worn_bikini_top_fur", "fg": 749, "rotates": false },
+ { "id": "overlay_worn_bikini_top_leather", "fg": 749, "rotates": false },
+ { "id": "overlay_worn_bindle", "fg": 714, "rotates": false },
+ { "id": "overlay_worn_blanket", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_blazer", "fg": 716, "rotates": false },
+ { "id": "overlay_worn_blindfold", "fg": 717, "rotates": false },
+ { "id": "overlay_worn_bondage_mask", "fg": 718, "rotates": false },
+ { "id": "overlay_worn_bondage_suit", "fg": 719, "rotates": false },
+ { "id": "overlay_worn_boots", "fg": 720, "rotates": false },
+ { "id": "overlay_worn_boots_acidchitin", "fg": 684, "rotates": false },
+ { "id": "overlay_worn_boots_bunker", "fg": 727, "rotates": false },
+ { "id": "overlay_worn_boots_chitin", "fg": 723, "rotates": false },
+ { "id": "overlay_worn_boots_combat", "fg": 724, "rotates": false },
+ { "id": "overlay_worn_boots_fsurvivor", "fg": 727, "rotates": false },
+ { "id": "overlay_worn_boots_fur", "fg": 726, "rotates": false },
+ { "id": "overlay_worn_boots_h20survivor", "fg": 979, "rotates": false },
+ { "id": "overlay_worn_boots_hiking", "fg": 720, "rotates": false },
+ { "id": "overlay_worn_boots_hsurvivor", "fg": 725, "rotates": false },
+ { "id": "overlay_worn_boots_larmor", "fg": 726, "rotates": false },
+ { "id": "overlay_worn_boots_lsurvivor", "fg": 726, "rotates": false },
+ { "id": "overlay_worn_boots_plate", "fg": 726, "rotates": false },
+ { "id": "overlay_worn_boots_steel", "fg": 728, "rotates": false },
+ { "id": "overlay_worn_boots_survivor", "fg": 726, "rotates": false },
+ { "id": "overlay_worn_boots_western", "fg": 729, "rotates": false },
+ { "id": "overlay_worn_boots_winter", "fg": 730, "rotates": false },
+ { "id": "overlay_worn_boots_wsurvivor", "fg": 730, "rotates": false },
+ { "id": "overlay_worn_boots_xlsurvivor", "fg": 730, "rotates": false },
+ { "id": "overlay_worn_bootsheath", "fg": 721, "rotates": false },
+ { "id": "overlay_worn_bootstrap", "fg": 722, "rotates": false },
+ { "id": "overlay_worn_boxer_briefs", "fg": 731, "rotates": false },
+ { "id": "overlay_worn_boxer_shorts", "fg": 731, "rotates": false },
+ { "id": "overlay_worn_boxing_gloves", "fg": 732, "rotates": false },
+ { "id": "overlay_worn_boy_shorts", "fg": 733, "rotates": false },
+ { "id": "overlay_worn_bra", "fg": 734, "rotates": false },
+ { "id": "overlay_worn_breeches", "fg": 896, "rotates": false },
+ { "id": "overlay_worn_briefcase", "fg": 735, "rotates": false },
+ { "id": "overlay_worn_briefs", "fg": 736, "rotates": false },
+ { "id": "overlay_worn_bronze_medal", "fg": 997, "rotates": false },
+ { "id": "overlay_worn_bscabbard", "fg": 737, "rotates": false },
+ { "id": "overlay_worn_bunker_coat", "fg": 738, "rotates": false },
+ { "id": "overlay_worn_bunker_pants", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_camisole", "fg": 741, "rotates": false },
+ { "id": "overlay_worn_case_violin", "fg": 688, "rotates": false },
+ { "id": "overlay_worn_cassock", "fg": 742, "rotates": false },
+ { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 1015, "rotates": false },
+ { "id": "overlay_worn_chainmail_arms", "fg": 743, "rotates": false },
+ { "id": "overlay_worn_chainmail_hauberk", "fg": 747, "rotates": false },
+ { "id": "overlay_worn_chainmail_hood", "fg": 744, "rotates": false },
+ { "id": "overlay_worn_chainmail_legs", "fg": 745, "rotates": false },
+ { "id": "overlay_worn_chainmail_suit", "fg": 746, "rotates": false },
+ { "id": "overlay_worn_chainmail_vest", "fg": 747, "rotates": false },
+ { "id": "overlay_worn_chaps_leather", "fg": 748, "rotates": false },
+ { "id": "overlay_worn_chestrig", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_chestwrap", "fg": 749, "rotates": false },
+ { "id": "overlay_worn_chestwrap_fur", "fg": 749, "rotates": false },
+ { "id": "overlay_worn_chestwrap_leather", "fg": 749, "rotates": false },
+ { "id": "overlay_worn_chestwrap_wool", "fg": 749, "rotates": false },
+ { "id": "overlay_worn_cleansuit", "fg": 750, "rotates": false },
+ { "id": "overlay_worn_cleats", "fg": 934, "rotates": false },
+ { "id": "overlay_worn_cloak", "fg": 751, "rotates": false },
+ { "id": "overlay_worn_cloak_bless", "fg": 756, "rotates": false },
+ { "id": "overlay_worn_cloak_fur", "fg": 914, "rotates": false },
+ { "id": "overlay_worn_cloak_leather", "fg": 914, "rotates": false },
+ { "id": "overlay_worn_cloak_wool", "fg": 890, "rotates": false },
+ { "id": "overlay_worn_clogs", "fg": 752, "rotates": false },
+ { "id": "overlay_worn_clown_suit", "fg": 754, "rotates": false },
+ { "id": "overlay_worn_clownshoes", "fg": 753, "rotates": false },
+ { "id": "overlay_worn_coat_fur", "fg": 755, "rotates": false },
+ { "id": "overlay_worn_coat_fur_sf", "fg": 755, "rotates": false },
+ { "id": "overlay_worn_coat_lab", "fg": 756, "rotates": false },
+ { "id": "overlay_worn_coat_rain", "fg": 757, "rotates": false },
+ { "id": "overlay_worn_coat_winter", "fg": 758, "rotates": false },
+ { "id": "overlay_worn_copper_locket", "fg": 998, "rotates": false },
+ { "id": "overlay_worn_copper_necklace", "fg": 999, "rotates": false },
+ { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 1000, "rotates": false },
+ { "id": "overlay_worn_corset", "fg": 759, "rotates": false },
+ { "id": "overlay_worn_cowboy_hat", "fg": 760, "rotates": false },
+ { "id": "overlay_worn_cowl_wool", "fg": 822, "rotates": false },
+ { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 687, "rotates": false },
+ { "id": "overlay_worn_dance_shoes", "fg": 798, "rotates": false },
+ { "id": "overlay_worn_depowered_armor", "fg": 905, "rotates": false },
+ { "id": "overlay_worn_depowered_helmet", "fg": 761, "rotates": false },
+ { "id": "overlay_worn_dinosuit", "fg": 762, "rotates": false },
+ { "id": "overlay_worn_dive_bag", "fg": 763, "rotates": false },
+ { "id": "overlay_worn_diving_watch", "fg": 1005, "rotates": false },
+ { "id": "overlay_worn_down_blanket", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_dragonskin", "fg": 1006, "rotates": false },
+ { "id": "overlay_worn_dress", "fg": 764, "rotates": false },
+ { "id": "overlay_worn_dress_bless", "fg": 765, "rotates": false },
+ { "id": "overlay_worn_dress_shoes", "fg": 921, "rotates": false },
+ { "id": "overlay_worn_dress_shoes_air", "fg": 798, "rotates": false },
+ { "id": "overlay_worn_dress_skirt", "fg": 927, "rotates": false },
+ { "id": "overlay_worn_dress_wedding", "fg": 765, "rotates": false },
+ { "id": "overlay_worn_duffelbag", "fg": 948, "rotates": false },
+ { "id": "overlay_worn_duster", "fg": 766, "rotates": false },
+ { "id": "overlay_worn_duster_fur", "fg": 766, "rotates": false },
+ { "id": "overlay_worn_duster_leather", "fg": 766, "rotates": false },
+ { "id": "overlay_worn_duster_survivor", "fg": 767, "rotates": false },
{ "id": "overlay_worn_e_handcuffs", "fg": 575, "rotates": false },
{
"id": [ "overlay_worn_silver_ear", "overlay_worn_platinum_ear", "overlay_worn_pearl_ear" ],
- "fg": 1030,
+ "fg": 1031,
"rotates": false
},
- { "id": "overlay_worn_elbow_pads", "fg": 767, "rotates": false },
- { "id": "overlay_worn_emer_blanket", "fg": 714, "rotates": false },
- { "id": "overlay_worn_emer_blanket_on", "fg": 714, "rotates": false },
- { "id": "overlay_worn_entry_suit", "fg": 1007, "rotates": false },
- { "id": "overlay_worn_fancy_bra", "fg": 733, "rotates": false },
- { "id": "overlay_worn_fancy_sunglasses", "fg": 944, "rotates": false },
- { "id": "overlay_worn_fencing_jacket", "fg": 1012, "rotates": false },
- { "id": "overlay_worn_fencing_mask", "fg": 1013, "rotates": false },
- { "id": "overlay_worn_fencing_pants", "fg": 768, "rotates": false },
- { "id": "overlay_worn_fire_gauntlets", "fg": 779, "rotates": false },
- { "id": "overlay_worn_fireman_belt", "fg": 946, "rotates": false },
- { "id": "overlay_worn_fishing_waders", "fg": 769, "rotates": false },
- { "id": "overlay_worn_fitover_sunglasses", "fg": 944, "rotates": false },
- { "id": "overlay_worn_flag_shirt", "fg": 770, "rotates": false },
- { "id": "overlay_worn_flip_flops", "fg": 771, "rotates": false },
- { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 832, "rotates": false },
- { "id": "overlay_worn_folding_poncho_on", "fg": 629, "rotates": false },
- { "id": "overlay_worn_football_armor", "fg": 772, "rotates": false },
- { "id": "overlay_worn_footrags", "fg": 773, "rotates": false },
- { "id": "overlay_worn_footrags_fur", "fg": 934, "rotates": false },
- { "id": "overlay_worn_footrags_leather", "fg": 887, "rotates": false },
- { "id": "overlay_worn_footrags_wool", "fg": 934, "rotates": false },
- { "id": "overlay_worn_fsurvivor_suit", "fg": 888, "rotates": false },
- { "id": "overlay_worn_fur_blanket", "fg": 714, "rotates": false },
+ { "id": "overlay_worn_elbow_pads", "fg": 768, "rotates": false },
+ { "id": "overlay_worn_emer_blanket", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_emer_blanket_on", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_entry_suit", "fg": 1008, "rotates": false },
+ { "id": "overlay_worn_fancy_bra", "fg": 734, "rotates": false },
+ { "id": "overlay_worn_fancy_sunglasses", "fg": 945, "rotates": false },
+ { "id": "overlay_worn_fencing_jacket", "fg": 1013, "rotates": false },
+ { "id": "overlay_worn_fencing_mask", "fg": 1014, "rotates": false },
+ { "id": "overlay_worn_fencing_pants", "fg": 769, "rotates": false },
+ { "id": "overlay_worn_fire_gauntlets", "fg": 780, "rotates": false },
+ { "id": "overlay_worn_fireman_belt", "fg": 947, "rotates": false },
+ { "id": "overlay_worn_fishing_waders", "fg": 770, "rotates": false },
+ { "id": "overlay_worn_fitover_sunglasses", "fg": 945, "rotates": false },
+ { "id": "overlay_worn_flag_shirt", "fg": 771, "rotates": false },
+ { "id": "overlay_worn_flip_flops", "fg": 772, "rotates": false },
+ { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 833, "rotates": false },
+ { "id": "overlay_worn_folding_poncho_on", "fg": 630, "rotates": false },
+ { "id": "overlay_worn_football_armor", "fg": 773, "rotates": false },
+ { "id": "overlay_worn_footrags", "fg": 774, "rotates": false },
+ { "id": "overlay_worn_footrags_fur", "fg": 935, "rotates": false },
+ { "id": "overlay_worn_footrags_leather", "fg": 888, "rotates": false },
+ { "id": "overlay_worn_footrags_wool", "fg": 935, "rotates": false },
+ { "id": "overlay_worn_fsurvivor_suit", "fg": 889, "rotates": false },
+ { "id": "overlay_worn_fur_blanket", "fg": 715, "rotates": false },
{ "id": "overlay_female_worn_fur_cat_ears", "fg": 255, "rotates": false },
{ "id": "overlay_male_worn_fur_cat_ears", "fg": 280, "rotates": false },
- { "id": "overlay_worn_gambeson", "fg": 970, "rotates": false },
- { "id": "overlay_worn_gauntlets_acidchitin", "fg": 684, "rotates": false },
- { "id": "overlay_worn_gauntlets_chitin", "fg": 780, "rotates": false },
- { "id": "overlay_worn_gauntlets_larmor", "fg": 780, "rotates": false },
- { "id": "overlay_worn_geta", "fg": 932, "rotates": false },
- { "id": "overlay_worn_glasses_bal", "fg": 784, "rotates": false },
- { "id": "overlay_worn_glasses_monocle", "fg": 775, "rotates": false },
- { "id": [ "overlay_worn_glasses_safety" ], "fg": 776, "rotates": false },
- { "id": "overlay_worn_glove_jackson", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_bag", "fg": 777, "rotates": false },
- { "id": "overlay_worn_gloves_fingerless", "fg": 778, "rotates": false },
- { "id": "overlay_worn_gloves_fingerless_mod", "fg": 778, "rotates": false },
- { "id": "overlay_worn_gloves_fsurvivor", "fg": 779, "rotates": false },
- { "id": "overlay_worn_gloves_fur", "fg": 780, "rotates": false },
- { "id": "overlay_worn_gloves_h20survivor", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gloves_hsurvivor", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gloves_leather", "fg": 780, "rotates": false },
- { "id": "overlay_worn_gloves_light", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_liner", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_lsurvivor", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gloves_medical", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_plate", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_survivor", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gloves_tactical", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gloves_winter", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gloves_wool", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_work", "fg": 783, "rotates": false },
- { "id": "overlay_worn_gloves_wraps", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_wraps_fur", "fg": 780, "rotates": false },
- { "id": "overlay_worn_gloves_wraps_leather", "fg": 780, "rotates": false },
- { "id": "overlay_worn_gloves_wraps_wool", "fg": 782, "rotates": false },
- { "id": "overlay_worn_gloves_wsurvivor", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gloves_xlsurvivor", "fg": 781, "rotates": false },
- { "id": "overlay_worn_gobag", "fg": 947, "rotates": false },
- { "id": "overlay_worn_goggles_ir", "fg": 630, "rotates": false },
- { "id": "overlay_worn_goggles_ir_on", "fg": 631, "rotates": false },
- { "id": "overlay_worn_goggles_nv", "fg": 632, "rotates": false },
- { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 633, "rotates": false },
- { "id": "overlay_worn_goggles_nv_on", "fg": 634, "rotates": false },
- { "id": "overlay_worn_goggles_ski", "fg": 784, "rotates": false },
- { "id": "overlay_worn_goggles_swim", "fg": 784, "rotates": false },
- { "id": "overlay_worn_goggles_welding", "fg": 785, "rotates": false },
- { "id": "overlay_worn_gold_dental_grill", "fg": 681, "rotates": false },
- { "id": "overlay_worn_gold_locket", "fg": 1023, "rotates": false },
- { "id": "overlay_worn_gold_medal", "fg": 1024, "rotates": false },
- { "id": "overlay_worn_gold_necklace", "fg": 1025, "rotates": false },
- { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 1026, "rotates": false },
- { "id": "overlay_worn_gown", "fg": 763, "rotates": false },
- { "id": "overlay_worn_greatcoat", "fg": 786, "rotates": false },
- { "id": "overlay_worn_h20survivor_suit", "fg": 825, "rotates": false },
- { "id": "overlay_worn_hakama_gi", "fg": 787, "rotates": false },
- { "id": "overlay_worn_halter_top", "fg": 788, "rotates": false },
- { "id": "overlay_worn_harmonica_holder", "fg": 635, "rotates": false },
- { "id": "overlay_worn_hat_ball", "fg": 789, "rotates": false },
- { "id": "overlay_worn_hat_boonie", "fg": 790, "rotates": false },
- { "id": "overlay_worn_hat_cotton", "fg": 793, "rotates": false },
- { "id": "overlay_worn_hat_fur", "fg": 791, "rotates": false },
- { "id": "overlay_worn_hat_hunting", "fg": 792, "rotates": false },
- { "id": "overlay_worn_hat_knit", "fg": 793, "rotates": false },
- { "id": "overlay_worn_hat_newsboy", "fg": 794, "rotates": false },
- { "id": "overlay_worn_hat_noise_cancelling", "fg": 795, "rotates": false },
- { "id": "overlay_worn_hazmat_suit", "fg": 691, "rotates": false },
- { "id": "overlay_worn_headgear", "fg": 796, "rotates": false },
- { "id": "overlay_worn_heels", "fg": 797, "rotates": false },
- { "id": "overlay_worn_helmet_acidchitin", "fg": 679, "rotates": false },
- { "id": "overlay_worn_helmet_army", "fg": 798, "rotates": false },
- { "id": "overlay_worn_helmet_ball", "fg": 799, "rotates": false },
- { "id": "overlay_worn_helmet_barbute", "fg": 800, "rotates": false },
- { "id": "overlay_worn_helmet_bike", "fg": 801, "rotates": false },
- { "id": "overlay_worn_helmet_chitin", "fg": 802, "rotates": false },
- { "id": "overlay_worn_helmet_conical", "fg": 800, "rotates": false },
- { "id": "overlay_worn_helmet_corinthian", "fg": 800, "rotates": false },
- { "id": "overlay_worn_helmet_football", "fg": 803, "rotates": false },
- { "id": "overlay_worn_helmet_galea", "fg": 743, "rotates": false },
- { "id": "overlay_worn_helmet_hsurvivor", "fg": 804, "rotates": false },
- { "id": "overlay_worn_helmet_larmor", "fg": 805, "rotates": false },
- { "id": "overlay_worn_helmet_liner", "fg": 819, "rotates": false },
- { "id": "overlay_worn_helmet_lobster", "fg": 806, "rotates": false },
- { "id": "overlay_worn_helmet_motor", "fg": 807, "rotates": false },
- { "id": "overlay_worn_helmet_nasal", "fg": 743, "rotates": false },
- { "id": "overlay_worn_helmet_nomad", "fg": 808, "rotates": false },
- { "id": "overlay_worn_helmet_plate", "fg": 809, "rotates": false },
- { "id": "overlay_worn_helmet_riot", "fg": 810, "rotates": false },
- { "id": "overlay_worn_helmet_scavenger", "fg": 811, "rotates": false },
- { "id": "overlay_worn_helmet_skid", "fg": 812, "rotates": false },
- { "id": "overlay_worn_helmet_survivor", "fg": 813, "rotates": false },
- { "id": "overlay_worn_helmet_xlsurvivor", "fg": 814, "rotates": false },
- { "id": "overlay_worn_hmil_armor", "fg": 815, "rotates": false },
- { "id": "overlay_worn_holo_cloak", "fg": 661, "rotates": false },
- { "id": "overlay_worn_holster", "fg": 816, "rotates": false },
- { "id": "overlay_worn_hood_fsurvivor", "fg": 818, "rotates": false },
- { "id": "overlay_worn_hood_h20survivor", "fg": 819, "rotates": false },
- { "id": "overlay_worn_hood_lsurvivor", "fg": 820, "rotates": false },
- { "id": "overlay_worn_hood_rain", "fg": 819, "rotates": false },
- { "id": "overlay_worn_hood_survivor", "fg": 820, "rotates": false },
- { "id": "overlay_worn_hood_wsurvivor", "fg": 821, "rotates": false },
- { "id": "overlay_worn_hood_xlsurvivor", "fg": 820, "rotates": false },
- { "id": "overlay_worn_hoodie", "fg": 817, "rotates": false },
- { "id": "overlay_worn_hot_pants", "fg": 822, "rotates": false },
- { "id": "overlay_worn_hot_pants_fur", "fg": 822, "rotates": false },
- { "id": "overlay_worn_hot_pants_leather", "fg": 823, "rotates": false },
- { "id": "overlay_worn_house_coat", "fg": 824, "rotates": false },
- { "id": "overlay_worn_hsurvivor_suit", "fg": 825, "rotates": false },
- { "id": "overlay_worn_iggaak", "fg": 944, "rotates": false },
- { "id": "overlay_worn_jacket_army", "fg": 826, "rotates": false },
- { "id": "overlay_worn_jacket_chef", "fg": 827, "rotates": false },
- { "id": "overlay_worn_jacket_evac", "fg": 828, "rotates": false },
- { "id": "overlay_worn_jacket_flannel", "fg": 829, "rotates": false },
- { "id": "overlay_worn_jacket_jean", "fg": 830, "rotates": false },
- { "id": "overlay_worn_jacket_leather", "fg": 831, "rotates": false },
- { "id": "overlay_worn_jacket_leather_mod", "fg": 831, "rotates": false },
- { "id": "overlay_worn_jacket_leather_red", "fg": 832, "rotates": false },
- { "id": "overlay_worn_jacket_light", "fg": 833, "rotates": false },
- { "id": "overlay_worn_jacket_windbreaker", "fg": 834, "rotates": false },
- { "id": "overlay_worn_jade_brooch", "fg": 1028, "rotates": false },
- { "id": "overlay_worn_jeans", "fg": 835, "rotates": false },
- { "id": "overlay_worn_jeans_red", "fg": 836, "rotates": false },
- { "id": "overlay_worn_jedi_cloak", "fg": 837, "rotates": false },
- { "id": "overlay_worn_jerrypack", "fg": 838, "rotates": false },
- { "id": "overlay_worn_jersey", "fg": 839, "rotates": false },
- { "id": "overlay_worn_judo_belt_black", "fg": 849, "rotates": false },
- { "id": "overlay_worn_judo_belt_blue", "fg": 849, "rotates": false },
- { "id": "overlay_worn_judo_belt_brown", "fg": 849, "rotates": false },
- { "id": "overlay_worn_judo_belt_green", "fg": 849, "rotates": false },
- { "id": "overlay_worn_judo_belt_orange", "fg": 849, "rotates": false },
- { "id": "overlay_worn_judo_belt_white", "fg": 849, "rotates": false },
- { "id": "overlay_worn_judo_belt_yellow", "fg": 849, "rotates": false },
- { "id": "overlay_worn_judo_gi", "fg": 840, "rotates": false },
- { "id": "overlay_worn_karate_gi", "fg": 840, "rotates": false },
- { "id": "overlay_worn_kariginu", "fg": 841, "rotates": false },
- { "id": "overlay_worn_keffiyeh", "fg": 873, "rotates": false },
- { "id": "overlay_worn_keikogi", "fg": 842, "rotates": false },
- { "id": "overlay_worn_kevlar", "fg": 1005, "rotates": false },
- { "id": "overlay_worn_kilt", "fg": 925, "rotates": false },
- { "id": "overlay_worn_kimono", "fg": 843, "rotates": false },
- { "id": "overlay_worn_kippah", "fg": 844, "rotates": false },
- { "id": "overlay_worn_kittel", "fg": 845, "rotates": false },
- { "id": "overlay_worn_knee_high_boots", "fg": 846, "rotates": false },
- { "id": "overlay_worn_knee_pads", "fg": 847, "rotates": false },
- { "id": "overlay_worn_knit_scarf", "fg": 636, "rotates": false },
- { "id": "overlay_worn_knit_scarf_loose", "fg": 636, "rotates": false },
- { "id": "overlay_worn_kufi", "fg": 848, "rotates": false },
- { "id": "overlay_worn_leather_belt", "fg": 849, "rotates": false },
+ { "id": "overlay_worn_gambeson", "fg": 971, "rotates": false },
+ { "id": "overlay_worn_gauntlets_acidchitin", "fg": 685, "rotates": false },
+ { "id": "overlay_worn_gauntlets_chitin", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_gauntlets_larmor", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_geta", "fg": 933, "rotates": false },
+ { "id": "overlay_worn_glasses_bal", "fg": 785, "rotates": false },
+ { "id": "overlay_worn_glasses_monocle", "fg": 776, "rotates": false },
+ { "id": [ "overlay_worn_glasses_safety" ], "fg": 777, "rotates": false },
+ { "id": "overlay_worn_glove_jackson", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_bag", "fg": 778, "rotates": false },
+ { "id": "overlay_worn_gloves_fingerless", "fg": 779, "rotates": false },
+ { "id": "overlay_worn_gloves_fingerless_mod", "fg": 779, "rotates": false },
+ { "id": "overlay_worn_gloves_fsurvivor", "fg": 780, "rotates": false },
+ { "id": "overlay_worn_gloves_fur", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_gloves_h20survivor", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gloves_hsurvivor", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gloves_leather", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_gloves_light", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_liner", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_lsurvivor", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gloves_medical", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_plate", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_survivor", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gloves_tactical", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gloves_winter", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gloves_wool", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_work", "fg": 784, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps_fur", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps_leather", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps_wool", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_gloves_wsurvivor", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gloves_xlsurvivor", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_gobag", "fg": 948, "rotates": false },
+ { "id": "overlay_worn_goggles_ir", "fg": 631, "rotates": false },
+ { "id": "overlay_worn_goggles_ir_on", "fg": 632, "rotates": false },
+ { "id": "overlay_worn_goggles_nv", "fg": 633, "rotates": false },
+ { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 634, "rotates": false },
+ { "id": "overlay_worn_goggles_nv_on", "fg": 635, "rotates": false },
+ { "id": "overlay_worn_goggles_ski", "fg": 785, "rotates": false },
+ { "id": "overlay_worn_goggles_swim", "fg": 785, "rotates": false },
+ { "id": "overlay_worn_goggles_welding", "fg": 786, "rotates": false },
+ { "id": "overlay_worn_gold_dental_grill", "fg": 682, "rotates": false },
+ { "id": "overlay_worn_gold_locket", "fg": 1024, "rotates": false },
+ { "id": "overlay_worn_gold_medal", "fg": 1025, "rotates": false },
+ { "id": "overlay_worn_gold_necklace", "fg": 1026, "rotates": false },
+ { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 1027, "rotates": false },
+ { "id": "overlay_worn_gown", "fg": 764, "rotates": false },
+ { "id": "overlay_worn_greatcoat", "fg": 787, "rotates": false },
+ { "id": "overlay_worn_h20survivor_suit", "fg": 826, "rotates": false },
+ { "id": "overlay_worn_hakama_gi", "fg": 788, "rotates": false },
+ { "id": "overlay_worn_halter_top", "fg": 789, "rotates": false },
+ { "id": "overlay_worn_harmonica_holder", "fg": 636, "rotates": false },
+ { "id": "overlay_worn_hat_ball", "fg": 790, "rotates": false },
+ { "id": "overlay_worn_hat_boonie", "fg": 791, "rotates": false },
+ { "id": "overlay_worn_hat_cotton", "fg": 794, "rotates": false },
+ { "id": "overlay_worn_hat_fur", "fg": 792, "rotates": false },
+ { "id": "overlay_worn_hat_hunting", "fg": 793, "rotates": false },
+ { "id": "overlay_worn_hat_knit", "fg": 794, "rotates": false },
+ { "id": "overlay_worn_hat_newsboy", "fg": 795, "rotates": false },
+ { "id": "overlay_worn_hat_noise_cancelling", "fg": 796, "rotates": false },
+ { "id": "overlay_worn_hazmat_suit", "fg": 692, "rotates": false },
+ { "id": "overlay_worn_headgear", "fg": 797, "rotates": false },
+ { "id": "overlay_worn_heels", "fg": 798, "rotates": false },
+ { "id": "overlay_worn_helmet_acidchitin", "fg": 680, "rotates": false },
+ { "id": "overlay_worn_helmet_army", "fg": 799, "rotates": false },
+ { "id": "overlay_worn_helmet_ball", "fg": 800, "rotates": false },
+ { "id": "overlay_worn_helmet_barbute", "fg": 801, "rotates": false },
+ { "id": "overlay_worn_helmet_bike", "fg": 802, "rotates": false },
+ { "id": "overlay_worn_helmet_chitin", "fg": 803, "rotates": false },
+ { "id": "overlay_worn_helmet_conical", "fg": 801, "rotates": false },
+ { "id": "overlay_worn_helmet_corinthian", "fg": 801, "rotates": false },
+ { "id": "overlay_worn_helmet_football", "fg": 804, "rotates": false },
+ { "id": "overlay_worn_helmet_galea", "fg": 744, "rotates": false },
+ { "id": "overlay_worn_helmet_hsurvivor", "fg": 805, "rotates": false },
+ { "id": "overlay_worn_helmet_larmor", "fg": 806, "rotates": false },
+ { "id": "overlay_worn_helmet_liner", "fg": 820, "rotates": false },
+ { "id": "overlay_worn_helmet_lobster", "fg": 807, "rotates": false },
+ { "id": "overlay_worn_helmet_motor", "fg": 808, "rotates": false },
+ { "id": "overlay_worn_helmet_nasal", "fg": 744, "rotates": false },
+ { "id": "overlay_worn_helmet_nomad", "fg": 809, "rotates": false },
+ { "id": "overlay_worn_helmet_plate", "fg": 810, "rotates": false },
+ { "id": "overlay_worn_helmet_riot", "fg": 811, "rotates": false },
+ { "id": "overlay_worn_helmet_scavenger", "fg": 812, "rotates": false },
+ { "id": "overlay_worn_helmet_skid", "fg": 813, "rotates": false },
+ { "id": "overlay_worn_helmet_survivor", "fg": 814, "rotates": false },
+ { "id": "overlay_worn_helmet_xlsurvivor", "fg": 815, "rotates": false },
+ { "id": "overlay_worn_hmil_armor", "fg": 816, "rotates": false },
+ { "id": "overlay_worn_holo_cloak", "fg": 662, "rotates": false },
+ { "id": "overlay_worn_holster", "fg": 817, "rotates": false },
+ { "id": "overlay_worn_hood_fsurvivor", "fg": 819, "rotates": false },
+ { "id": "overlay_worn_hood_h20survivor", "fg": 820, "rotates": false },
+ { "id": "overlay_worn_hood_lsurvivor", "fg": 821, "rotates": false },
+ { "id": "overlay_worn_hood_rain", "fg": 820, "rotates": false },
+ { "id": "overlay_worn_hood_survivor", "fg": 821, "rotates": false },
+ { "id": "overlay_worn_hood_wsurvivor", "fg": 822, "rotates": false },
+ { "id": "overlay_worn_hood_xlsurvivor", "fg": 821, "rotates": false },
+ { "id": "overlay_worn_hoodie", "fg": 818, "rotates": false },
+ { "id": "overlay_worn_hot_pants", "fg": 823, "rotates": false },
+ { "id": "overlay_worn_hot_pants_fur", "fg": 823, "rotates": false },
+ { "id": "overlay_worn_hot_pants_leather", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_house_coat", "fg": 825, "rotates": false },
+ { "id": "overlay_worn_hsurvivor_suit", "fg": 826, "rotates": false },
+ { "id": "overlay_worn_iggaak", "fg": 945, "rotates": false },
+ { "id": "overlay_worn_jacket_army", "fg": 827, "rotates": false },
+ { "id": "overlay_worn_jacket_chef", "fg": 828, "rotates": false },
+ { "id": "overlay_worn_jacket_evac", "fg": 829, "rotates": false },
+ { "id": "overlay_worn_jacket_flannel", "fg": 830, "rotates": false },
+ { "id": "overlay_worn_jacket_jean", "fg": 831, "rotates": false },
+ { "id": "overlay_worn_jacket_leather", "fg": 832, "rotates": false },
+ { "id": "overlay_worn_jacket_leather_mod", "fg": 832, "rotates": false },
+ { "id": "overlay_worn_jacket_leather_red", "fg": 833, "rotates": false },
+ { "id": "overlay_worn_jacket_light", "fg": 834, "rotates": false },
+ { "id": "overlay_worn_jacket_windbreaker", "fg": 835, "rotates": false },
+ { "id": "overlay_worn_jade_brooch", "fg": 1029, "rotates": false },
+ { "id": "overlay_worn_jeans", "fg": 836, "rotates": false },
+ { "id": "overlay_worn_jeans_red", "fg": 837, "rotates": false },
+ { "id": "overlay_worn_jedi_cloak", "fg": 838, "rotates": false },
+ { "id": "overlay_worn_jerrypack", "fg": 839, "rotates": false },
+ { "id": "overlay_worn_jersey", "fg": 840, "rotates": false },
+ { "id": "overlay_worn_judo_belt_black", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_judo_belt_blue", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_judo_belt_brown", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_judo_belt_green", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_judo_belt_orange", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_judo_belt_white", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_judo_belt_yellow", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_judo_gi", "fg": 841, "rotates": false },
+ { "id": "overlay_worn_karate_gi", "fg": 841, "rotates": false },
+ { "id": "overlay_worn_kariginu", "fg": 842, "rotates": false },
+ { "id": "overlay_worn_keffiyeh", "fg": 874, "rotates": false },
+ { "id": "overlay_worn_keikogi", "fg": 843, "rotates": false },
+ { "id": "overlay_worn_kevlar", "fg": 1006, "rotates": false },
+ { "id": "overlay_worn_kilt", "fg": 926, "rotates": false },
+ { "id": "overlay_worn_kimono", "fg": 844, "rotates": false },
+ { "id": "overlay_worn_kippah", "fg": 845, "rotates": false },
+ { "id": "overlay_worn_kittel", "fg": 846, "rotates": false },
+ { "id": "overlay_worn_knee_high_boots", "fg": 847, "rotates": false },
+ { "id": "overlay_worn_knee_pads", "fg": 848, "rotates": false },
+ { "id": "overlay_worn_knit_scarf", "fg": 637, "rotates": false },
+ { "id": "overlay_worn_knit_scarf_loose", "fg": 637, "rotates": false },
+ { "id": "overlay_worn_kufi", "fg": 849, "rotates": false },
+ { "id": "overlay_worn_leather_belt", "fg": 850, "rotates": false },
{ "id": "overlay_female_worn_leather_cat_ears", "fg": 255, "rotates": false },
{ "id": "overlay_male_worn_leather_cat_ears", "fg": 280, "rotates": false },
- { "id": "overlay_worn_leather_cat_tail", "fg": 774, "rotates": false },
- { "id": "overlay_worn_leather_pouch", "fg": 621, "rotates": false },
- { "id": "overlay_worn_leathersandals", "fg": 771, "rotates": false },
- { "id": "overlay_worn_leg_splint", "fg": 853, "rotates": false },
- { "id": "overlay_worn_leg_warmers", "fg": 854, "rotates": false },
- { "id": "overlay_worn_leg_warmers_f", "fg": 854, "rotates": false },
- { "id": "overlay_worn_leg_warmers_xl", "fg": 854, "rotates": false },
- { "id": "overlay_worn_leg_warmers_xlf", "fg": 854, "rotates": false },
- { "id": "overlay_worn_leggings", "fg": 966, "rotates": false },
- { "id": "overlay_worn_legguard_bronze", "fg": 851, "rotates": false },
- { "id": "overlay_worn_legguard_hard", "fg": 850, "rotates": false },
- { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 851, "rotates": false },
- { "id": "overlay_worn_legguard_paper", "fg": 852, "rotates": false },
- { "id": "overlay_worn_legrig", "fg": 946, "rotates": false },
- { "id": "overlay_worn_lmil_armor", "fg": 855, "rotates": false },
- { "id": "overlay_worn_loincloth", "fg": 856, "rotates": false },
- { "id": "overlay_worn_loincloth_fur", "fg": 856, "rotates": false },
- { "id": "overlay_worn_loincloth_leather", "fg": 856, "rotates": false },
- { "id": "overlay_worn_loincloth_wool", "fg": 856, "rotates": false },
- { "id": "overlay_worn_long_glove_white", "fg": 857, "rotates": false },
- { "id": "overlay_worn_long_knit_scarf", "fg": 637, "rotates": false },
- { "id": "overlay_worn_long_knit_scarf_loose", "fg": 637, "rotates": false },
- { "id": "overlay_worn_long_patchwork_scarf", "fg": 638, "rotates": false },
- { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 638, "rotates": false },
- { "id": "overlay_worn_lowtops", "fg": 858, "rotates": false },
- { "id": "overlay_worn_lsurvivor_armor", "fg": 859, "rotates": false },
- { "id": "overlay_worn_lsurvivor_pants", "fg": 897, "rotates": false },
- { "id": "overlay_worn_lsurvivor_suit", "fg": 949, "rotates": false },
- { "id": "overlay_worn_magbandolier", "fg": 660, "rotates": false },
- { "id": "overlay_worn_maid_dress", "fg": 860, "rotates": false },
- { "id": "overlay_worn_maid_hat", "fg": 861, "rotates": false },
- { "id": "overlay_worn_maid_stockings", "fg": 936, "rotates": false },
- { "id": "overlay_worn_makeshift_knapsack", "fg": 862, "rotates": false },
- { "id": "overlay_worn_makeshift_sling", "fg": 863, "rotates": false },
- { "id": "overlay_worn_mask_bal", "fg": 864, "rotates": false },
- { "id": "overlay_worn_mask_bunker", "fg": 639, "rotates": false },
- { "id": "overlay_worn_mask_bunker_on", "fg": 640, "rotates": false },
- { "id": "overlay_worn_mask_dust", "fg": 865, "rotates": false },
- { "id": "overlay_worn_mask_filter", "fg": 866, "rotates": false },
- { "id": "overlay_worn_mask_fsurvivor", "fg": 867, "rotates": false },
- { "id": "overlay_worn_mask_fsurvivorxl", "fg": 867, "rotates": false },
- { "id": "overlay_worn_mask_gas", "fg": 868, "rotates": false },
- { "id": "overlay_worn_mask_gas_xl", "fg": 868, "rotates": false },
- { "id": "overlay_worn_mask_guy_fawkes", "fg": 869, "rotates": false },
- { "id": "overlay_worn_mask_h20survivor", "fg": 641, "rotates": false },
- { "id": "overlay_worn_mask_h20survivor_on", "fg": 641, "rotates": false },
- { "id": "overlay_worn_mask_h20survivorxl", "fg": 641, "rotates": false },
- { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 641, "rotates": false },
- { "id": "overlay_worn_mask_hockey", "fg": 870, "rotates": false },
- { "id": "overlay_worn_mask_hsurvivor", "fg": 871, "rotates": false },
- { "id": "overlay_worn_mask_lsurvivor", "fg": 872, "rotates": false },
- { "id": "overlay_worn_mask_rioter", "fg": 873, "rotates": false },
- { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 643, "rotates": false },
- { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 642, "rotates": false },
- { "id": "overlay_worn_mask_survivor", "fg": 872, "rotates": false },
- { "id": "overlay_worn_mask_survivorxl", "fg": 872, "rotates": false },
- { "id": "overlay_worn_mask_wsurvivor", "fg": 874, "rotates": false },
- { "id": "overlay_worn_mask_wsurvivorxl", "fg": 874, "rotates": false },
- { "id": "overlay_worn_mbag", "fg": 875, "rotates": false },
- { "id": "overlay_worn_megaarmor_armguards_1", "fg": 876, "rotates": false },
- { "id": "overlay_worn_megaarmor_boots_1", "fg": 877, "rotates": false },
- { "id": "overlay_worn_megaarmor_gloves_1", "fg": 878, "rotates": false },
- { "id": "overlay_worn_megaarmor_head_1", "fg": 879, "rotates": false },
- { "id": "overlay_worn_megaarmor_leggings_1", "fg": 880, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_1", "fg": 881, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_2", "fg": 882, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_3", "fg": 644, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 645, "rotates": false },
- { "id": "overlay_worn_microskirt", "fg": 886, "rotates": false },
- { "id": "overlay_worn_mil_armor", "fg": 883, "rotates": false },
- { "id": "overlay_worn_mittens", "fg": 779, "rotates": false },
- { "id": "overlay_worn_mocassins", "fg": 751, "rotates": false },
- { "id": "overlay_worn_modularvest", "fg": 974, "rotates": false },
- { "id": "overlay_worn_modularvestceramic", "fg": 974, "rotates": false },
- { "id": "overlay_worn_modularvesthard", "fg": 974, "rotates": false },
- { "id": "overlay_worn_modularvestkevlar", "fg": 974, "rotates": false },
- { "id": "overlay_worn_modularveststeel", "fg": 974, "rotates": false },
- { "id": "overlay_worn_modularvestsuper", "fg": 974, "rotates": false },
- { "id": "overlay_worn_molle_pack", "fg": 884, "rotates": false },
- { "id": "overlay_worn_motorbike_armor", "fg": 885, "rotates": false },
- { "id": "overlay_worn_motorbike_boots", "fg": 725, "rotates": false },
- { "id": "overlay_worn_motorbike_pants", "fg": 960, "rotates": false },
- { "id": "overlay_worn_nanoskirt", "fg": 886, "rotates": false },
- { "id": "overlay_worn_nomex_gloves", "fg": 779, "rotates": false },
- { "id": "overlay_worn_nomex_hood", "fg": 819, "rotates": false },
- { "id": "overlay_worn_nomex_socks", "fg": 887, "rotates": false },
- { "id": "overlay_worn_nomex_suit", "fg": 888, "rotates": false },
- { "id": "overlay_worn_obi_gi", "fg": 849, "rotates": false },
- { "id": "overlay_worn_optical_cloak", "fg": 889, "rotates": false },
- { "id": "overlay_worn_panties", "fg": 890, "rotates": false },
- { "id": "overlay_worn_pants", "fg": 891, "rotates": false },
- { "id": "overlay_worn_pants_army", "fg": 892, "rotates": false },
- { "id": "overlay_worn_pants_cargo", "fg": 893, "rotates": false },
- { "id": "overlay_worn_pants_checkered", "fg": 894, "rotates": false },
- { "id": "overlay_worn_pants_fur", "fg": 895, "rotates": false },
- { "id": "overlay_worn_pants_leather", "fg": 895, "rotates": false },
- { "id": "overlay_worn_pants_ski", "fg": 896, "rotates": false },
- { "id": "overlay_worn_pants_survivor", "fg": 897, "rotates": false },
- { "id": "overlay_worn_patchwork_scarf", "fg": 653, "rotates": false },
- { "id": "overlay_worn_patchwork_scarf_loose", "fg": 653, "rotates": false },
- { "id": "overlay_worn_peacoat", "fg": 898, "rotates": false },
- { "id": "overlay_worn_plastic_shopping_bag", "fg": 899, "rotates": false },
- { "id": "overlay_worn_platinum_locket", "fg": 1031, "rotates": false },
- { "id": "overlay_worn_platinum_necklace", "fg": 1032, "rotates": false },
- { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 1033, "rotates": false },
- { "id": "overlay_worn_poncho", "fg": 900, "rotates": false },
- { "id": "overlay_worn_postman_hat", "fg": 901, "rotates": false },
- { "id": "overlay_worn_postman_shorts", "fg": 902, "rotates": false },
- { "id": "overlay_worn_pot_helmet", "fg": 903, "rotates": false },
- { "id": "overlay_worn_power_armor_basic", "fg": 904, "rotates": false },
- { "id": "overlay_worn_power_armor_heavy", "fg": 905, "rotates": false },
- { "id": "overlay_worn_power_armor_helmet_basic", "fg": 906, "rotates": false },
- { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 907, "rotates": false },
- { "id": "overlay_worn_power_armor_helmet_light", "fg": 908, "rotates": false },
- { "id": "overlay_worn_power_armor_light", "fg": 909, "rotates": false },
- { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 675 },
- { "id": "overlay_worn_purse", "fg": 910, "rotates": false },
- { "id": "overlay_worn_quiver", "fg": 911, "rotates": false },
- { "id": "overlay_worn_quiver_birchbark", "fg": 911, "rotates": false },
- { "id": "overlay_worn_quiver_large", "fg": 912, "rotates": false },
- { "id": "overlay_worn_quiver_large_birchbark", "fg": 912, "rotates": false },
- { "id": "overlay_worn_rebreather", "fg": 1034, "rotates": false },
- { "id": "overlay_worn_rebreather_xl", "fg": 1034, "rotates": false },
- { "id": "overlay_worn_revenant_crown", "fg": 646, "rotates": false },
- { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 1001, "rotates": false },
- { "id": [ "overlay_worn_ring_engagement" ], "fg": 1035, "rotates": false },
- { "id": "overlay_worn_ring_purity", "fg": 1036, "rotates": false },
- { "id": "overlay_worn_ring_signet", "fg": 1037, "rotates": false },
- { "id": "overlay_worn_rm13_armor", "fg": 659, "rotates": false },
- { "id": "overlay_worn_rm13_armor_on", "fg": 647, "rotates": false },
- { "id": "overlay_worn_robe", "fg": 913, "rotates": false },
- { "id": "overlay_worn_roller_blades", "fg": 914, "rotates": false },
- { "id": "overlay_worn_rollerskates", "fg": 914, "rotates": false },
- { "id": "overlay_worn_rucksack", "fg": 915, "rotates": false },
- { "id": "overlay_worn_runner_bag", "fg": 916, "rotates": false },
- { "id": "overlay_worn_sac_purse", "fg": 648, "rotates": false },
- { "id": "overlay_worn_sac_purse_arm", "fg": 649, "rotates": false },
- { "id": "overlay_worn_sac_purse_leg", "fg": 650, "rotates": false },
- { "id": "overlay_worn_scabbard", "fg": 917, "rotates": false },
- { "id": "overlay_worn_scarf", "fg": 651, "rotates": false },
- { "id": "overlay_worn_scarf_fur", "fg": 652, "rotates": false },
- { "id": "overlay_worn_scarf_fur_long", "fg": 637, "rotates": false },
- { "id": "overlay_worn_scarf_fur_long_loose", "fg": 637, "rotates": false },
- { "id": "overlay_worn_scarf_fur_loose", "fg": 652, "rotates": false },
- { "id": "overlay_worn_scarf_long", "fg": 638, "rotates": false },
- { "id": "overlay_worn_scarf_long_loose", "fg": 638, "rotates": false },
- { "id": "overlay_worn_scarf_loose", "fg": 653, "rotates": false },
- { "id": "overlay_worn_shark_suit", "fg": 918, "rotates": false },
- { "id": "overlay_worn_shark_suit_faraday", "fg": 918, "rotates": false },
- { "id": "overlay_worn_sheath", "fg": 919, "rotates": false },
- { "id": "overlay_worn_sheet", "fg": 714, "rotates": false },
- { "id": "overlay_worn_shoes_birchbark", "fg": 920, "rotates": false },
- { "id": "overlay_worn_shoes_bowling", "fg": 921, "rotates": false },
- { "id": "overlay_worn_sholster", "fg": 816, "rotates": false },
- { "id": "overlay_worn_shorts", "fg": 922, "rotates": false },
- { "id": "overlay_worn_shorts_cargo", "fg": 923, "rotates": false },
- { "id": "overlay_worn_shorts_denim", "fg": 902, "rotates": false },
- { "id": "overlay_worn_silver_medal", "fg": 1039, "rotates": false },
- { "id": "overlay_worn_silver_necklace", "fg": 1040, "rotates": false },
- { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 1041, "rotates": false },
- { "id": "overlay_worn_skinny_tie", "fg": 924, "rotates": false },
- { "id": "overlay_worn_skirt", "fg": 925, "rotates": false },
- { "id": "overlay_worn_skirt_leather", "fg": 926, "rotates": false },
- { "id": "overlay_worn_sleeping_bag", "fg": 927, "rotates": false },
- { "id": "overlay_worn_sleeping_bag_fur", "fg": 927, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster", "fg": 928, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster_fur", "fg": 928, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster_leather", "fg": 928, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 929, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 930, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 930, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 930, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 931, "rotates": false },
- { "id": "overlay_worn_sleeveless_tunic", "fg": 970, "rotates": false },
- { "id": "overlay_worn_slingpack", "fg": 916, "rotates": false },
- { "id": "overlay_worn_slippers", "fg": 932, "rotates": false },
- { "id": "overlay_worn_sneakers", "fg": 933, "rotates": false },
- { "id": "overlay_worn_snuggie", "fg": 1043, "rotates": false },
- { "id": "overlay_worn_sockmitts", "fg": 857, "rotates": false },
- { "id": "overlay_worn_socks", "fg": 934, "rotates": false },
- { "id": "overlay_worn_socks_bag", "fg": 934, "rotates": false },
- { "id": "overlay_worn_socks_bowling", "fg": 934, "rotates": false },
- { "id": "overlay_worn_socks_wool", "fg": 934, "rotates": false },
- { "id": "overlay_worn_sports_bra", "fg": 935, "rotates": false },
- { "id": "overlay_worn_stealth_cloak", "fg": 654, "rotates": false },
- { "id": "overlay_worn_stillsuit", "fg": 825, "rotates": false },
- { "id": "overlay_worn_stockings", "fg": 936, "rotates": false },
- { "id": "overlay_worn_stockings_oath", "fg": 936, "rotates": false },
- { "id": "overlay_worn_stockings_tent_arms", "fg": 937, "rotates": false },
- { "id": "overlay_worn_stockings_tent_legs", "fg": 938, "rotates": false },
- { "id": "overlay_worn_stomach_sealed", "fg": 621, "rotates": false },
- { "id": "overlay_worn_straw_basket", "fg": 939, "rotates": false },
- { "id": "overlay_worn_straw_sandals", "fg": 771, "rotates": false },
- { "id": "overlay_worn_striped_pants", "fg": 1044, "rotates": false },
- { "id": "overlay_worn_striped_shirt", "fg": 940, "rotates": false },
- { "id": "overlay_worn_subsuit_xl", "fg": 964, "rotates": false },
- { "id": "overlay_worn_suit", "fg": 941, "rotates": false },
- { "id": "overlay_worn_suitcase_l", "fg": 942, "rotates": false },
- { "id": "overlay_worn_suitcase_m", "fg": 942, "rotates": false },
- { "id": "overlay_worn_sundress", "fg": 943, "rotates": false },
- { "id": "overlay_worn_sunglasses", "fg": 944, "rotates": false },
- { "id": "overlay_worn_surv_armor_suit", "fg": 951, "rotates": false },
- { "id": "overlay_worn_surv_suit", "fg": 952, "rotates": false },
- { "id": "overlay_worn_survbowpack", "fg": 945, "rotates": false },
- { "id": "overlay_worn_survivor_belt", "fg": 946, "rotates": false },
- { "id": "overlay_worn_survivor_belt_notools", "fg": 946, "rotates": false },
- { "id": "overlay_worn_survivor_duffel_bag", "fg": 947, "rotates": false },
- { "id": "overlay_worn_survivor_goggles", "fg": 784, "rotates": false },
- { "id": "overlay_worn_survivor_light", "fg": 655, "rotates": false },
- { "id": "overlay_worn_survivor_light_on", "fg": 656, "rotates": false },
- { "id": "overlay_worn_survivor_pack", "fg": 704, "rotates": false },
- { "id": "overlay_worn_survivor_rucksack", "fg": 948, "rotates": false },
- { "id": "overlay_worn_survivor_runner_pack", "fg": 916, "rotates": false },
- { "id": "overlay_worn_survivor_suit", "fg": 949, "rotates": false },
- { "id": "overlay_worn_survivor_vest", "fg": 950, "rotates": false },
- { "id": "overlay_worn_swag_bag", "fg": 953, "rotates": false },
- { "id": "overlay_worn_swat_armor", "fg": 954, "rotates": false },
- { "id": "overlay_worn_swat_badge_swat", "fg": 1048, "rotates": false },
- { "id": "overlay_worn_sweater", "fg": 955, "rotates": false },
- { "id": "overlay_worn_sweatshirt", "fg": 956, "rotates": false },
- { "id": "overlay_worn_swim_fins", "fg": 957, "rotates": false },
- { "id": "overlay_worn_tabi_dress", "fg": 934, "rotates": false },
- { "id": "overlay_worn_tabi_gi", "fg": 773, "rotates": false },
- { "id": "overlay_worn_tac_fullhelmet", "fg": 958, "rotates": false },
- { "id": "overlay_worn_tac_helmet", "fg": 812, "rotates": false },
- { "id": "overlay_worn_tank_top", "fg": 959, "rotates": false },
- { "id": "overlay_worn_tarp", "fg": 714, "rotates": false },
- { "id": "overlay_worn_technician_pants_gray", "fg": 960, "rotates": false },
- { "id": "overlay_worn_technician_shirt_blue", "fg": 961, "rotates": false },
- { "id": "overlay_worn_technician_shirt_gray", "fg": 962, "rotates": false },
- { "id": "overlay_worn_technician_shirt_ltblue", "fg": 963, "rotates": false },
- { "id": "overlay_worn_thawb", "fg": 964, "rotates": false },
- { "id": "overlay_worn_thermal_gloves", "fg": 782, "rotates": false },
- { "id": "overlay_worn_thermal_gloves_on", "fg": 782, "rotates": false },
- { "id": "overlay_worn_thermal_mask", "fg": 873, "rotates": false },
- { "id": "overlay_worn_thermal_mask_on", "fg": 873, "rotates": false },
- { "id": "overlay_worn_thermal_socks", "fg": 773, "rotates": false },
- { "id": "overlay_worn_thermal_socks_on", "fg": 773, "rotates": false },
- { "id": "overlay_worn_thigh_high_boots", "fg": 965, "rotates": false },
- { "id": "overlay_worn_thong", "fg": 890, "rotates": false },
- { "id": "overlay_worn_tights", "fg": 966, "rotates": false },
- { "id": "overlay_worn_tool_belt", "fg": 946, "rotates": false },
- { "id": "overlay_worn_touring_suit", "fg": 949, "rotates": false },
- { "id": "overlay_worn_trenchcoat", "fg": 967, "rotates": false },
- { "id": "overlay_worn_trenchcoat_fur", "fg": 967, "rotates": false },
- { "id": "overlay_worn_trenchcoat_leather", "fg": 967, "rotates": false },
- { "id": "overlay_worn_trenchcoat_survivor", "fg": 968, "rotates": false },
- { "id": "overlay_worn_tricorne", "fg": 969, "rotates": false },
- { "id": "overlay_worn_trunks", "fg": 902, "rotates": false },
- { "id": "overlay_worn_tunic", "fg": 970, "rotates": false },
- { "id": "overlay_worn_tunic_rag", "fg": 970, "rotates": false },
- { "id": "overlay_worn_turban", "fg": 971, "rotates": false },
- { "id": "overlay_worn_tux", "fg": 941, "rotates": false },
- { "id": "overlay_worn_under_armor_shorts", "fg": 973, "rotates": false },
- { "id": "overlay_worn_undershirt", "fg": 972, "rotates": false },
- { "id": "overlay_worn_vambrace_larmor", "fg": 778, "rotates": false },
- { "id": "overlay_worn_vest", "fg": 974, "rotates": false },
- { "id": "overlay_worn_vest_leather", "fg": 975, "rotates": false },
- { "id": "overlay_worn_vest_leather_mod", "fg": 975, "rotates": false },
- { "id": "overlay_worn_waistcoat", "fg": 976, "rotates": false },
- { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 1038, "rotates": false },
- { "id": "overlay_worn_gold_watch", "fg": 1027, "rotates": false },
- { "id": "overlay_worn_waterskin2", "fg": 621, "rotates": false },
- { "id": "overlay_worn_waterskin3", "fg": 621, "rotates": false },
- { "id": "overlay_worn_waterskin", "fg": 621, "rotates": false },
- { "id": "overlay_worn_wearable_light", "fg": 657, "rotates": false },
- { "id": "overlay_worn_wearable_light_on", "fg": 658, "rotates": false },
- { "id": "overlay_worn_welding_mask", "fg": 1049, "rotates": false },
- { "id": "overlay_worn_welding_mask_crude", "fg": 1050, "rotates": false },
- { "id": "overlay_worn_wetsuit", "fg": 977, "rotates": false },
- { "id": "overlay_worn_wetsuit_booties", "fg": 978, "rotates": false },
- { "id": "overlay_worn_wetsuit_gloves", "fg": 783, "rotates": false },
- { "id": "overlay_worn_wetsuit_hood", "fg": 979, "rotates": false },
- { "id": "overlay_worn_wetsuit_spring", "fg": 980, "rotates": false },
- { "id": "overlay_worn_winter_gloves_army", "fg": 780, "rotates": false },
- { "id": "overlay_worn_winter_jacket_army", "fg": 981, "rotates": false },
- { "id": "overlay_worn_winter_pants_army", "fg": 982, "rotates": false },
- { "id": "overlay_worn_wolfsuit", "fg": 983, "rotates": false },
- { "id": "overlay_worn_wool_hoodie", "fg": 834, "rotates": false },
- { "id": "overlay_worn_wool_suit", "fg": 941, "rotates": false },
- { "id": "overlay_worn_wristwatch", "fg": 1051, "rotates": false },
- { "id": "overlay_worn_wsurvivor_suit", "fg": 984, "rotates": false },
- { "id": "overlay_worn_xlsurvivor_suit", "fg": 949, "rotates": false },
- { "id": "overlay_worn_zubon_gi", "fg": 896, "rotates": false },
+ { "id": "overlay_worn_leather_cat_tail", "fg": 775, "rotates": false },
+ { "id": "overlay_worn_leather_pouch", "fg": 622, "rotates": false },
+ { "id": "overlay_worn_leathersandals", "fg": 772, "rotates": false },
+ { "id": "overlay_worn_leg_splint", "fg": 854, "rotates": false },
+ { "id": "overlay_worn_leg_warmers", "fg": 855, "rotates": false },
+ { "id": "overlay_worn_leg_warmers_f", "fg": 855, "rotates": false },
+ { "id": "overlay_worn_leg_warmers_xl", "fg": 855, "rotates": false },
+ { "id": "overlay_worn_leg_warmers_xlf", "fg": 855, "rotates": false },
+ { "id": "overlay_worn_leggings", "fg": 967, "rotates": false },
+ { "id": "overlay_worn_legguard_bronze", "fg": 852, "rotates": false },
+ { "id": "overlay_worn_legguard_hard", "fg": 851, "rotates": false },
+ { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 852, "rotates": false },
+ { "id": "overlay_worn_legguard_paper", "fg": 853, "rotates": false },
+ { "id": "overlay_worn_legrig", "fg": 947, "rotates": false },
+ { "id": "overlay_worn_lmil_armor", "fg": 856, "rotates": false },
+ { "id": "overlay_worn_loincloth", "fg": 857, "rotates": false },
+ { "id": "overlay_worn_loincloth_fur", "fg": 857, "rotates": false },
+ { "id": "overlay_worn_loincloth_leather", "fg": 857, "rotates": false },
+ { "id": "overlay_worn_loincloth_wool", "fg": 857, "rotates": false },
+ { "id": "overlay_worn_long_glove_white", "fg": 858, "rotates": false },
+ { "id": "overlay_worn_long_knit_scarf", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_long_knit_scarf_loose", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_long_patchwork_scarf", "fg": 639, "rotates": false },
+ { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 639, "rotates": false },
+ { "id": "overlay_worn_lowtops", "fg": 859, "rotates": false },
+ { "id": "overlay_worn_lsurvivor_armor", "fg": 860, "rotates": false },
+ { "id": "overlay_worn_lsurvivor_pants", "fg": 898, "rotates": false },
+ { "id": "overlay_worn_lsurvivor_suit", "fg": 950, "rotates": false },
+ { "id": "overlay_worn_magbandolier", "fg": 661, "rotates": false },
+ { "id": "overlay_worn_maid_dress", "fg": 861, "rotates": false },
+ { "id": "overlay_worn_maid_hat", "fg": 862, "rotates": false },
+ { "id": "overlay_worn_maid_stockings", "fg": 937, "rotates": false },
+ { "id": "overlay_worn_makeshift_knapsack", "fg": 863, "rotates": false },
+ { "id": "overlay_worn_makeshift_sling", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_mask_bal", "fg": 865, "rotates": false },
+ { "id": "overlay_worn_mask_bunker", "fg": 640, "rotates": false },
+ { "id": "overlay_worn_mask_bunker_on", "fg": 641, "rotates": false },
+ { "id": "overlay_worn_mask_dust", "fg": 866, "rotates": false },
+ { "id": "overlay_worn_mask_filter", "fg": 867, "rotates": false },
+ { "id": "overlay_worn_mask_fsurvivor", "fg": 868, "rotates": false },
+ { "id": "overlay_worn_mask_fsurvivorxl", "fg": 868, "rotates": false },
+ { "id": "overlay_worn_mask_gas", "fg": 869, "rotates": false },
+ { "id": "overlay_worn_mask_gas_xl", "fg": 869, "rotates": false },
+ { "id": "overlay_worn_mask_guy_fawkes", "fg": 870, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivor", "fg": 642, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivor_on", "fg": 642, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivorxl", "fg": 642, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 642, "rotates": false },
+ { "id": "overlay_worn_mask_hockey", "fg": 871, "rotates": false },
+ { "id": "overlay_worn_mask_hsurvivor", "fg": 872, "rotates": false },
+ { "id": "overlay_worn_mask_lsurvivor", "fg": 873, "rotates": false },
+ { "id": "overlay_worn_mask_rioter", "fg": 874, "rotates": false },
+ { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 644, "rotates": false },
+ { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 643, "rotates": false },
+ { "id": "overlay_worn_mask_survivor", "fg": 873, "rotates": false },
+ { "id": "overlay_worn_mask_survivorxl", "fg": 873, "rotates": false },
+ { "id": "overlay_worn_mask_wsurvivor", "fg": 875, "rotates": false },
+ { "id": "overlay_worn_mask_wsurvivorxl", "fg": 875, "rotates": false },
+ { "id": "overlay_worn_mbag", "fg": 876, "rotates": false },
+ { "id": "overlay_worn_megaarmor_armguards_1", "fg": 877, "rotates": false },
+ { "id": "overlay_worn_megaarmor_boots_1", "fg": 878, "rotates": false },
+ { "id": "overlay_worn_megaarmor_gloves_1", "fg": 879, "rotates": false },
+ { "id": "overlay_worn_megaarmor_head_1", "fg": 880, "rotates": false },
+ { "id": "overlay_worn_megaarmor_leggings_1", "fg": 881, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_1", "fg": 882, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_2", "fg": 883, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_3", "fg": 645, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 646, "rotates": false },
+ { "id": "overlay_worn_microskirt", "fg": 887, "rotates": false },
+ { "id": "overlay_worn_mil_armor", "fg": 884, "rotates": false },
+ { "id": "overlay_worn_mittens", "fg": 780, "rotates": false },
+ { "id": "overlay_worn_mocassins", "fg": 752, "rotates": false },
+ { "id": "overlay_worn_modularvest", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_modularvestceramic", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_modularvesthard", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_modularvestkevlar", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_modularveststeel", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_modularvestsuper", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_molle_pack", "fg": 885, "rotates": false },
+ { "id": "overlay_worn_motorbike_armor", "fg": 886, "rotates": false },
+ { "id": "overlay_worn_motorbike_boots", "fg": 726, "rotates": false },
+ { "id": "overlay_worn_motorbike_pants", "fg": 961, "rotates": false },
+ { "id": "overlay_worn_nanoskirt", "fg": 887, "rotates": false },
+ { "id": "overlay_worn_nomex_gloves", "fg": 780, "rotates": false },
+ { "id": "overlay_worn_nomex_hood", "fg": 820, "rotates": false },
+ { "id": "overlay_worn_nomex_socks", "fg": 888, "rotates": false },
+ { "id": "overlay_worn_nomex_suit", "fg": 889, "rotates": false },
+ { "id": "overlay_worn_obi_gi", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_optical_cloak", "fg": 890, "rotates": false },
+ { "id": "overlay_worn_panties", "fg": 891, "rotates": false },
+ { "id": "overlay_worn_pants", "fg": 892, "rotates": false },
+ { "id": "overlay_worn_pants_army", "fg": 893, "rotates": false },
+ { "id": "overlay_worn_pants_cargo", "fg": 894, "rotates": false },
+ { "id": "overlay_worn_pants_checkered", "fg": 895, "rotates": false },
+ { "id": "overlay_worn_pants_fur", "fg": 896, "rotates": false },
+ { "id": "overlay_worn_pants_leather", "fg": 896, "rotates": false },
+ { "id": "overlay_worn_pants_ski", "fg": 897, "rotates": false },
+ { "id": "overlay_worn_pants_survivor", "fg": 898, "rotates": false },
+ { "id": "overlay_worn_patchwork_scarf", "fg": 654, "rotates": false },
+ { "id": "overlay_worn_patchwork_scarf_loose", "fg": 654, "rotates": false },
+ { "id": "overlay_worn_peacoat", "fg": 899, "rotates": false },
+ { "id": "overlay_worn_plastic_shopping_bag", "fg": 900, "rotates": false },
+ { "id": "overlay_worn_platinum_locket", "fg": 1032, "rotates": false },
+ { "id": "overlay_worn_platinum_necklace", "fg": 1033, "rotates": false },
+ { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 1034, "rotates": false },
+ { "id": "overlay_worn_poncho", "fg": 901, "rotates": false },
+ { "id": "overlay_worn_postman_hat", "fg": 902, "rotates": false },
+ { "id": "overlay_worn_postman_shorts", "fg": 903, "rotates": false },
+ { "id": "overlay_worn_pot_helmet", "fg": 904, "rotates": false },
+ { "id": "overlay_worn_power_armor_basic", "fg": 905, "rotates": false },
+ { "id": "overlay_worn_power_armor_heavy", "fg": 906, "rotates": false },
+ { "id": "overlay_worn_power_armor_helmet_basic", "fg": 907, "rotates": false },
+ { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 908, "rotates": false },
+ { "id": "overlay_worn_power_armor_helmet_light", "fg": 909, "rotates": false },
+ { "id": "overlay_worn_power_armor_light", "fg": 910, "rotates": false },
+ { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 676 },
+ { "id": "overlay_worn_purse", "fg": 911, "rotates": false },
+ { "id": "overlay_worn_quiver", "fg": 912, "rotates": false },
+ { "id": "overlay_worn_quiver_birchbark", "fg": 912, "rotates": false },
+ { "id": "overlay_worn_quiver_large", "fg": 913, "rotates": false },
+ { "id": "overlay_worn_quiver_large_birchbark", "fg": 913, "rotates": false },
+ { "id": "overlay_worn_rebreather", "fg": 1035, "rotates": false },
+ { "id": "overlay_worn_rebreather_xl", "fg": 1035, "rotates": false },
+ { "id": "overlay_worn_revenant_crown", "fg": 647, "rotates": false },
+ { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 1002, "rotates": false },
+ { "id": [ "overlay_worn_ring_engagement" ], "fg": 1036, "rotates": false },
+ { "id": "overlay_worn_ring_purity", "fg": 1037, "rotates": false },
+ { "id": "overlay_worn_ring_signet", "fg": 1038, "rotates": false },
+ { "id": "overlay_worn_rm13_armor", "fg": 660, "rotates": false },
+ { "id": "overlay_worn_rm13_armor_on", "fg": 648, "rotates": false },
+ { "id": "overlay_worn_robe", "fg": 914, "rotates": false },
+ { "id": "overlay_worn_roller_blades", "fg": 915, "rotates": false },
+ { "id": "overlay_worn_rollerskates", "fg": 915, "rotates": false },
+ { "id": "overlay_worn_rucksack", "fg": 916, "rotates": false },
+ { "id": "overlay_worn_runner_bag", "fg": 917, "rotates": false },
+ { "id": "overlay_worn_sac_purse", "fg": 649, "rotates": false },
+ { "id": "overlay_worn_sac_purse_arm", "fg": 650, "rotates": false },
+ { "id": "overlay_worn_sac_purse_leg", "fg": 651, "rotates": false },
+ { "id": "overlay_worn_scabbard", "fg": 918, "rotates": false },
+ { "id": "overlay_worn_scarf", "fg": 652, "rotates": false },
+ { "id": "overlay_worn_scarf_fur", "fg": 653, "rotates": false },
+ { "id": "overlay_worn_scarf_fur_long", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_scarf_fur_long_loose", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_scarf_fur_loose", "fg": 653, "rotates": false },
+ { "id": "overlay_worn_scarf_long", "fg": 639, "rotates": false },
+ { "id": "overlay_worn_scarf_long_loose", "fg": 639, "rotates": false },
+ { "id": "overlay_worn_scarf_loose", "fg": 654, "rotates": false },
+ { "id": "overlay_worn_shark_suit", "fg": 919, "rotates": false },
+ { "id": "overlay_worn_shark_suit_faraday", "fg": 919, "rotates": false },
+ { "id": "overlay_worn_sheath", "fg": 920, "rotates": false },
+ { "id": "overlay_worn_sheet", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_shoes_birchbark", "fg": 921, "rotates": false },
+ { "id": "overlay_worn_shoes_bowling", "fg": 922, "rotates": false },
+ { "id": "overlay_worn_sholster", "fg": 817, "rotates": false },
+ { "id": "overlay_worn_shorts", "fg": 923, "rotates": false },
+ { "id": "overlay_worn_shorts_cargo", "fg": 924, "rotates": false },
+ { "id": "overlay_worn_shorts_denim", "fg": 903, "rotates": false },
+ { "id": "overlay_worn_silver_medal", "fg": 1040, "rotates": false },
+ { "id": "overlay_worn_silver_necklace", "fg": 1041, "rotates": false },
+ { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 1042, "rotates": false },
+ { "id": "overlay_worn_skinny_tie", "fg": 925, "rotates": false },
+ { "id": "overlay_worn_skirt", "fg": 926, "rotates": false },
+ { "id": "overlay_worn_skirt_leather", "fg": 927, "rotates": false },
+ { "id": "overlay_worn_sleeping_bag", "fg": 928, "rotates": false },
+ { "id": "overlay_worn_sleeping_bag_fur", "fg": 928, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster", "fg": 929, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster_fur", "fg": 929, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster_leather", "fg": 929, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 930, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 931, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 931, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 931, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 932, "rotates": false },
+ { "id": "overlay_worn_sleeveless_tunic", "fg": 971, "rotates": false },
+ { "id": "overlay_worn_slingpack", "fg": 917, "rotates": false },
+ { "id": "overlay_worn_slippers", "fg": 933, "rotates": false },
+ { "id": "overlay_worn_sneakers", "fg": 934, "rotates": false },
+ { "id": "overlay_worn_snuggie", "fg": 1044, "rotates": false },
+ { "id": "overlay_worn_sockmitts", "fg": 858, "rotates": false },
+ { "id": "overlay_worn_socks", "fg": 935, "rotates": false },
+ { "id": "overlay_worn_socks_bag", "fg": 935, "rotates": false },
+ { "id": "overlay_worn_socks_bowling", "fg": 935, "rotates": false },
+ { "id": "overlay_worn_socks_wool", "fg": 935, "rotates": false },
+ { "id": "overlay_worn_sports_bra", "fg": 936, "rotates": false },
+ { "id": "overlay_worn_stealth_cloak", "fg": 655, "rotates": false },
+ { "id": "overlay_worn_stillsuit", "fg": 826, "rotates": false },
+ { "id": "overlay_worn_stockings", "fg": 937, "rotates": false },
+ { "id": "overlay_worn_stockings_oath", "fg": 937, "rotates": false },
+ { "id": "overlay_worn_stockings_tent_arms", "fg": 938, "rotates": false },
+ { "id": "overlay_worn_stockings_tent_legs", "fg": 939, "rotates": false },
+ { "id": "overlay_worn_stomach_sealed", "fg": 622, "rotates": false },
+ { "id": "overlay_worn_straw_basket", "fg": 940, "rotates": false },
+ { "id": "overlay_worn_straw_sandals", "fg": 772, "rotates": false },
+ { "id": "overlay_worn_striped_pants", "fg": 1045, "rotates": false },
+ { "id": "overlay_worn_striped_shirt", "fg": 941, "rotates": false },
+ { "id": "overlay_worn_subsuit_xl", "fg": 965, "rotates": false },
+ { "id": "overlay_worn_suit", "fg": 942, "rotates": false },
+ { "id": "overlay_worn_suitcase_l", "fg": 943, "rotates": false },
+ { "id": "overlay_worn_suitcase_m", "fg": 943, "rotates": false },
+ { "id": "overlay_worn_sundress", "fg": 944, "rotates": false },
+ { "id": "overlay_worn_sunglasses", "fg": 945, "rotates": false },
+ { "id": "overlay_worn_surv_armor_suit", "fg": 952, "rotates": false },
+ { "id": "overlay_worn_surv_suit", "fg": 953, "rotates": false },
+ { "id": "overlay_worn_survbowpack", "fg": 946, "rotates": false },
+ { "id": "overlay_worn_survivor_belt", "fg": 947, "rotates": false },
+ { "id": "overlay_worn_survivor_belt_notools", "fg": 947, "rotates": false },
+ { "id": "overlay_worn_survivor_duffel_bag", "fg": 948, "rotates": false },
+ { "id": "overlay_worn_survivor_goggles", "fg": 785, "rotates": false },
+ { "id": "overlay_worn_survivor_light", "fg": 656, "rotates": false },
+ { "id": "overlay_worn_survivor_light_on", "fg": 657, "rotates": false },
+ { "id": "overlay_worn_survivor_pack", "fg": 705, "rotates": false },
+ { "id": "overlay_worn_survivor_rucksack", "fg": 949, "rotates": false },
+ { "id": "overlay_worn_survivor_runner_pack", "fg": 917, "rotates": false },
+ { "id": "overlay_worn_survivor_suit", "fg": 950, "rotates": false },
+ { "id": "overlay_worn_survivor_vest", "fg": 951, "rotates": false },
+ { "id": "overlay_worn_swag_bag", "fg": 954, "rotates": false },
+ { "id": "overlay_worn_swat_armor", "fg": 955, "rotates": false },
+ { "id": "overlay_worn_swat_badge_swat", "fg": 1049, "rotates": false },
+ { "id": "overlay_worn_sweater", "fg": 956, "rotates": false },
+ { "id": "overlay_worn_sweatshirt", "fg": 957, "rotates": false },
+ { "id": "overlay_worn_swim_fins", "fg": 958, "rotates": false },
+ { "id": "overlay_worn_tabi_dress", "fg": 935, "rotates": false },
+ { "id": "overlay_worn_tabi_gi", "fg": 774, "rotates": false },
+ { "id": "overlay_worn_tac_fullhelmet", "fg": 959, "rotates": false },
+ { "id": "overlay_worn_tac_helmet", "fg": 813, "rotates": false },
+ { "id": "overlay_worn_tank_top", "fg": 960, "rotates": false },
+ { "id": "overlay_worn_tarp", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_technician_pants_gray", "fg": 961, "rotates": false },
+ { "id": "overlay_worn_technician_shirt_blue", "fg": 962, "rotates": false },
+ { "id": "overlay_worn_technician_shirt_gray", "fg": 963, "rotates": false },
+ { "id": "overlay_worn_technician_shirt_ltblue", "fg": 964, "rotates": false },
+ { "id": "overlay_worn_thawb", "fg": 965, "rotates": false },
+ { "id": "overlay_worn_thermal_gloves", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_thermal_gloves_on", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_thermal_mask", "fg": 874, "rotates": false },
+ { "id": "overlay_worn_thermal_mask_on", "fg": 874, "rotates": false },
+ { "id": "overlay_worn_thermal_socks", "fg": 774, "rotates": false },
+ { "id": "overlay_worn_thermal_socks_on", "fg": 774, "rotates": false },
+ { "id": "overlay_worn_thigh_high_boots", "fg": 966, "rotates": false },
+ { "id": "overlay_worn_thong", "fg": 891, "rotates": false },
+ { "id": "overlay_worn_tights", "fg": 967, "rotates": false },
+ { "id": "overlay_worn_tool_belt", "fg": 947, "rotates": false },
+ { "id": "overlay_worn_touring_suit", "fg": 950, "rotates": false },
+ { "id": "overlay_worn_trenchcoat", "fg": 968, "rotates": false },
+ { "id": "overlay_worn_trenchcoat_fur", "fg": 968, "rotates": false },
+ { "id": "overlay_worn_trenchcoat_leather", "fg": 968, "rotates": false },
+ { "id": "overlay_worn_trenchcoat_survivor", "fg": 969, "rotates": false },
+ { "id": "overlay_worn_tricorne", "fg": 970, "rotates": false },
+ { "id": "overlay_worn_trunks", "fg": 903, "rotates": false },
+ { "id": "overlay_worn_tunic", "fg": 971, "rotates": false },
+ { "id": "overlay_worn_tunic_rag", "fg": 971, "rotates": false },
+ { "id": "overlay_worn_turban", "fg": 972, "rotates": false },
+ { "id": "overlay_worn_tux", "fg": 942, "rotates": false },
+ { "id": "overlay_worn_under_armor_shorts", "fg": 974, "rotates": false },
+ { "id": "overlay_worn_undershirt", "fg": 973, "rotates": false },
+ { "id": "overlay_worn_vambrace_larmor", "fg": 779, "rotates": false },
+ { "id": "overlay_worn_vest", "fg": 975, "rotates": false },
+ { "id": "overlay_worn_vest_leather", "fg": 976, "rotates": false },
+ { "id": "overlay_worn_vest_leather_mod", "fg": 976, "rotates": false },
+ { "id": "overlay_worn_waistcoat", "fg": 977, "rotates": false },
+ { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 1039, "rotates": false },
+ { "id": "overlay_worn_gold_watch", "fg": 1028, "rotates": false },
+ { "id": "overlay_worn_waterskin2", "fg": 622, "rotates": false },
+ { "id": "overlay_worn_waterskin3", "fg": 622, "rotates": false },
+ { "id": "overlay_worn_waterskin", "fg": 622, "rotates": false },
+ { "id": "overlay_worn_wearable_light", "fg": 658, "rotates": false },
+ { "id": "overlay_worn_wearable_light_on", "fg": 659, "rotates": false },
+ { "id": "overlay_worn_welding_mask", "fg": 1050, "rotates": false },
+ { "id": "overlay_worn_welding_mask_crude", "fg": 1051, "rotates": false },
+ { "id": "overlay_worn_wetsuit", "fg": 978, "rotates": false },
+ { "id": "overlay_worn_wetsuit_booties", "fg": 979, "rotates": false },
+ { "id": "overlay_worn_wetsuit_gloves", "fg": 784, "rotates": false },
+ { "id": "overlay_worn_wetsuit_hood", "fg": 980, "rotates": false },
+ { "id": "overlay_worn_wetsuit_spring", "fg": 981, "rotates": false },
+ { "id": "overlay_worn_winter_gloves_army", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_winter_jacket_army", "fg": 982, "rotates": false },
+ { "id": "overlay_worn_winter_pants_army", "fg": 983, "rotates": false },
+ { "id": "overlay_worn_wolfsuit", "fg": 984, "rotates": false },
+ { "id": "overlay_worn_wool_hoodie", "fg": 835, "rotates": false },
+ { "id": "overlay_worn_wool_suit", "fg": 942, "rotates": false },
+ { "id": "overlay_worn_wristwatch", "fg": 1052, "rotates": false },
+ { "id": "overlay_worn_wsurvivor_suit", "fg": 985, "rotates": false },
+ { "id": "overlay_worn_xlsurvivor_suit", "fg": 950, "rotates": false },
+ { "id": "overlay_worn_zubon_gi", "fg": 897, "rotates": false },
{ "id": "overlay_female_mutation_BARK", "fg": 248 },
{ "id": "overlay_female_mutation_BEAK", "fg": 249 },
{ "id": "overlay_female_mutation_SPINES", "fg": 265 },
@@ -1667,46 +1667,47 @@
{ "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 422 },
{ "id": "overlay_male_mutation_SKIN_PINK", "fg": 423 },
{ "id": "overlay_wielded_primitive_shovel", "fg": 619 },
- { "id": "overlay_female_worn_boots_rubber", "fg": 985 },
- { "id": "overlay_male_worn_boots_rubber", "fg": 986 },
- { "id": "overlay_worn_bookplate", "fg": 994 },
- { "id": "overlay_worn_broken_dimensional_anchor", "fg": 995 },
- { "id": "overlay_worn_diamond_dental_grill", "fg": 1000 },
- { "id": "overlay_worn_dimensional_anchor", "fg": 1002 },
- { "id": "overlay_worn_dimensional_anchor_on", "fg": 1003 },
- { "id": "overlay_worn_eclipse_glasses", "fg": 1006 },
- { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 1008 },
- { "id": "overlay_worn_fancy_glasses_eye", "fg": 1009 },
- { "id": "overlay_worn_fancy_glasses_reading", "fg": 1010 },
- { "id": "overlay_worn_fanny", "fg": 1011 },
- { "id": "overlay_worn_fur_cat_tail", "fg": 1015 },
- { "id": "overlay_worn_fur_collar", "fg": 1016 },
- { "id": "overlay_worn_glasses_bifocal", "fg": 1017 },
- { "id": "overlay_worn_glasses_eye", "fg": 1018 },
- { "id": "overlay_worn_glasses_reading", "fg": 1019 },
- { "id": "overlay_worn_gloves_rubber", "fg": 1021 },
- { "id": "overlay_worn_gold_ear", "fg": 1022 },
- { "id": "overlay_worn_leather_collar", "fg": 1029 },
- { "id": "overlay_worn_silver_watch", "fg": 1042 },
- { "id": "overlay_worn_sunglasses_bifocal", "fg": 1045 },
- { "id": "overlay_worn_sunglasses_eye", "fg": 1046 },
- { "id": "overlay_worn_sunglasses_reading", "fg": 1047 },
- { "id": "overlay_worn_chestguard_hard", "fg": 1052 }
+ { "id": "overlay_wielded_scalpel", "fg": 620 },
+ { "id": "overlay_female_worn_boots_rubber", "fg": 986 },
+ { "id": "overlay_male_worn_boots_rubber", "fg": 987 },
+ { "id": "overlay_worn_bookplate", "fg": 995 },
+ { "id": "overlay_worn_broken_dimensional_anchor", "fg": 996 },
+ { "id": "overlay_worn_diamond_dental_grill", "fg": 1001 },
+ { "id": "overlay_worn_dimensional_anchor", "fg": 1003 },
+ { "id": "overlay_worn_dimensional_anchor_on", "fg": 1004 },
+ { "id": "overlay_worn_eclipse_glasses", "fg": 1007 },
+ { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 1009 },
+ { "id": "overlay_worn_fancy_glasses_eye", "fg": 1010 },
+ { "id": "overlay_worn_fancy_glasses_reading", "fg": 1011 },
+ { "id": "overlay_worn_fanny", "fg": 1012 },
+ { "id": "overlay_worn_fur_cat_tail", "fg": 1016 },
+ { "id": "overlay_worn_fur_collar", "fg": 1017 },
+ { "id": "overlay_worn_glasses_bifocal", "fg": 1018 },
+ { "id": "overlay_worn_glasses_eye", "fg": 1019 },
+ { "id": "overlay_worn_glasses_reading", "fg": 1020 },
+ { "id": "overlay_worn_gloves_rubber", "fg": 1022 },
+ { "id": "overlay_worn_gold_ear", "fg": 1023 },
+ { "id": "overlay_worn_leather_collar", "fg": 1030 },
+ { "id": "overlay_worn_silver_watch", "fg": 1043 },
+ { "id": "overlay_worn_sunglasses_bifocal", "fg": 1046 },
+ { "id": "overlay_worn_sunglasses_eye", "fg": 1047 },
+ { "id": "overlay_worn_sunglasses_reading", "fg": 1048 },
+ { "id": "overlay_worn_chestguard_hard", "fg": 1053 }
]
},
{
"file": "ChibiNormalMonster.png",
- "//": "range 1056 to 1535",
+ "//": "range 1056 to 1567",
"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": 1277, "bg": 1324, "rotates": false },
- { "id": "mon_ant_acid_larva", "fg": 1276, "bg": 1324, "rotates": false },
- { "id": "mon_ant_acid_queen", "fg": 1278, "bg": 1324, "rotates": false },
- { "id": "mon_ant_acid_soldier", "fg": 1275, "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 },
@@ -1720,7 +1721,7 @@
{ "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": 1182, "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_blob_large", "fg": 1075, "rotates": false },
@@ -1748,7 +1749,7 @@
{ "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": 1182, "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 },
@@ -1790,7 +1791,7 @@
{ "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": 1266, "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 },
@@ -1809,7 +1810,7 @@
{ "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": 1267, "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 },
@@ -1826,7 +1827,7 @@
{ "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": 1182, "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 },
@@ -1841,116 +1842,115 @@
{ "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_secubot", "fg": 1180, "bg": 1324, "rotates": false },
- { "id": "mon_sewer_fish", "fg": 1181, "bg": 1324, "rotates": false },
- { "id": "mon_sewer_rat", "fg": 1182, "bg": 1324, "rotates": false },
- { "id": "mon_sewer_snake", "fg": 1183, "bg": 1324, "rotates": false },
- { "id": "mon_shadow", "fg": 1184, "rotates": false },
- { "id": "mon_shadow_snake", "fg": 1185, "rotates": false },
- { "id": "mon_skeleton", "fg": 1186, "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": 1187, "bg": 1324, "rotates": false },
- { "id": "mon_sludge_crawler", "fg": 1188, "bg": 1324, "rotates": false },
- { "id": "mon_spider_cellar_giant", "fg": 1189, "bg": 1324, "rotates": false },
- { "id": "mon_spider_cellar_giant_s", "fg": 1190, "bg": 1324, "rotates": false },
- { "id": "mon_spider_jumping_giant", "fg": 1192, "bg": 1324, "rotates": false },
- { "id": "mon_spider_jumping_giant_mega", "fg": 1193, "rotates": false },
- { "id": "mon_spider_jumping_small", "fg": 1191, "bg": 1324, "rotates": false },
- { "id": "mon_spider_trapdoor", "fg": 1194, "bg": 1324, "rotates": false },
- { "id": "mon_spider_trapdoor_giant", "fg": 1195, "bg": 1324, "rotates": false },
- { "id": "mon_spider_trapdoor_giant_mega", "fg": 1196, "rotates": false },
- { "id": "mon_spider_trapdoor_giant_small", "fg": 1197, "rotates": false },
- { "id": "mon_spider_web", "fg": 1198, "bg": 1324, "rotates": false },
- { "id": "mon_spider_web_giant", "fg": 1198, "bg": 1324, "rotates": false },
- { "id": "mon_spider_web_mega", "fg": 1199, "rotates": false },
- { "id": "mon_spider_web_s", "fg": 1200, "bg": 1324, "rotates": false },
- { "id": "mon_spider_widow_giant", "fg": 1202, "bg": 1324, "rotates": false },
- { "id": "mon_spider_widow_giant_s", "fg": 1203, "bg": 1324, "rotates": false },
- { "id": "mon_spider_widow_small", "fg": 1201, "bg": 1324, "rotates": false },
- { "id": "mon_spider_wolf_giant", "fg": 1205, "bg": 1324, "rotates": false },
- { "id": "mon_spider_wolf_small", "fg": 1204, "bg": 1324, "rotates": false },
- { "id": "mon_spore", "fg": 1206, "bg": 1324, "rotates": false },
- { "id": "mon_squirrel", "fg": 1207, "bg": 1324, "rotates": false },
- { "id": "mon_squirrel_red", "fg": 1207, "bg": 1324, "rotates": false },
- { "id": "mon_titanis", "fg": 1208, "bg": 1324, "rotates": false },
- { "id": "mon_turkey", "fg": 1209, "bg": 1324, "rotates": false },
- { "id": "mon_velociraptor", "fg": 1210, "bg": 1324, "rotates": false },
- { "id": "mon_vinebeast", "fg": 1211, "bg": 1324, "rotates": false },
- { "id": "mon_vortex", "fg": 1212, "bg": 1324, "rotates": false },
- { "id": "mon_w11b10", "fg": 1269, "rotates": false },
- { "id": "mon_w11b20b4", "fg": 1270, "rotates": false },
- { "id": "mon_w11h10", "fg": 1272, "rotates": false },
- { "id": "mon_w12b10", "fg": 1271, "rotates": false },
- { "id": "mon_w12n10", "fg": 1273, "rotates": false },
- { "id": "mon_wasp", "fg": 1213, "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_wasp_larvae", "fg": 1102 },
- { "id": "mon_wasp_mega", "fg": 1214 },
- { "id": "mon_wasp_small", "fg": 1215, "rotates": false },
+ { "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": 1216, "bg": 1324, "rotates": false },
- { "id": "mon_worm", "fg": 1217, "bg": 1324, "rotates": false },
- { "id": "mon_zhark", "fg": 1218 },
- { "id": "mon_zolf", "fg": 1219, "bg": 1324, "rotates": false },
- { "id": "mon_zolf_shady", "fg": 1220, "rotates": false },
- { "id": "mon_zombear", "fg": 1221, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_acidic", "fg": 1222, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_anklebiter", "fg": 1223, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_armored", "fg": 1224, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_bio_op", "fg": 1225, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_biter", "fg": 1226, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_blind", "fg": 1227, "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": 1228, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_brute_grappler", "fg": 1229, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_brute_ninja", "fg": 1230, "bg": 1324 },
- { "id": "mon_zombie_brute_shocker", "fg": 1231, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_child_fungus", "fg": 1274, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_child_scorched", "fg": 1232, "bg": 1324 },
- { "id": "mon_zombie_child_scorched_2", "fg": 1233, "rotates": false },
- { "id": "mon_zombie_cop", "fg": 1234, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_crawler", "fg": 1235, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_creepy", "fg": 1236, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_dancer", "fg": 1237, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_dog", "fg": 1238, "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": 1239, "bg": 1324, "rotates": false },
+ { "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": 1240, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_fungus", "fg": [ 1241, 1309 ], "bg": 1324, "rotates": false },
- { "id": "mon_zombie_gasbag", "fg": 1242, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_grappler", "fg": 1243, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_hazmat", "fg": 1244, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_hollow", "fg": 1245, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_hunter", "fg": 1246, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_jackson", "fg": 1247, "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": 1248, "bg": 1324 },
- { "id": "mon_zombie_master", "fg": 1249, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_military_pilot", "fg": 1268, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_necro", "fg": 1250, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_predator", "fg": 1251, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_rot", "fg": 1252, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_scorched", "fg": 1253, "bg": 1324 },
- { "id": "mon_zombie_shady", "fg": 1254, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_shady_ghost", "fg": 1255, "rotates": false },
- { "id": "mon_zombie_shriekling", "fg": 1256, "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": 1257, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_snotgobbler", "fg": 1258, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_soldier", "fg": 1259, "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": 1260, "bg": 1324, "rotates": false },
- { "id": "mon_zombie_sproglodyte", "fg": 1261, "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": 1262, "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": 1263, "bg": 1324, "rotates": false },
+ { "id": "mon_zombie_waif", "fg": 1262, "bg": 1324, "rotates": false },
{ "id": "mon_zombie_wretched", "fg": 1322, "bg": 1324, "rotates": false },
- { "id": "mon_zoose", "fg": 1264, "bg": 1324, "rotates": false },
- { "id": "mon_zougar", "fg": 1265, "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 },
@@ -2014,34 +2014,78 @@
],
"bg": 1324
},
+ {
+ "id": "mon_feral_labsecurity_9mm",
+ "fg": [
+ { "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 }
+ ],
+ "bg": 1324
+ },
+ {
+ "id": "mon_feral_labsecurity_flashlight",
+ "fg": [
+ { "weight": 1, "sprite": 1376 },
+ { "weight": 1, "sprite": 1377 },
+ { "weight": 1, "sprite": 1378 },
+ { "weight": 1, "sprite": 1379 },
+ { "weight": 1, "sprite": 1380 }
+ ],
+ "bg": 1324
+ },
+ {
+ "id": "mon_feral_scientist_scalpel",
+ "fg": [
+ { "weight": 1, "sprite": 1381 },
+ { "weight": 1, "sprite": 1382 },
+ { "weight": 1, "sprite": 1383 },
+ { "weight": 1, "sprite": 1384 },
+ { "weight": 1, "sprite": 1385 }
+ ],
+ "bg": 1324
+ },
{
"id": "mon_fungaloid",
- "fg": [ { "weight": 100, "sprite": 1371 }, { "weight": 1, "sprite": 1372 } ],
+ "fg": [ { "weight": 100, "sprite": 1395 }, { "weight": 1, "sprite": 1396 } ],
"rotates": false
},
{
"id": "mon_zombie_giant_heart",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 1377 },
- { "weight": 15, "sprite": 1378 },
- { "weight": 15, "sprite": 1377 },
- { "weight": 15, "sprite": 1379 }
+ { "weight": 15, "sprite": 1404 },
+ { "weight": 15, "sprite": 1405 },
+ { "weight": 15, "sprite": 1404 },
+ { "weight": 15, "sprite": 1406 }
],
"rotates": false,
"bg": 1324
},
{
"id": "mon_twisted_body",
- "fg": [ { "weight": 1, "sprite": 1388 }, { "weight": 1, "sprite": 1389 }, { "weight": 1, "sprite": 1390 } ],
+ "fg": [ { "weight": 1, "sprite": 1415 }, { "weight": 1, "sprite": 1416 }, { "weight": 1, "sprite": 1417 } ],
"bg": 1324,
"rotates": false
},
{
"id": "mon_zombie",
"fg": [
- { "weight": 1, "sprite": 1401 },
- { "weight": 1, "sprite": 1412 },
+ { "weight": 1, "sprite": 1428 },
+ { "weight": 1, "sprite": 1439 },
+ { "weight": 1, "sprite": 1446 },
+ { "weight": 1, "sprite": 1447 },
+ { "weight": 1, "sprite": 1448 },
+ { "weight": 1, "sprite": 1449 },
+ { "weight": 1, "sprite": 1450 },
+ { "weight": 1, "sprite": 1451 },
+ { "weight": 1, "sprite": 1452 },
+ { "weight": 1, "sprite": 1418 },
{ "weight": 1, "sprite": 1419 },
{ "weight": 1, "sprite": 1420 },
{ "weight": 1, "sprite": 1421 },
@@ -2049,48 +2093,8 @@
{ "weight": 1, "sprite": 1423 },
{ "weight": 1, "sprite": 1424 },
{ "weight": 1, "sprite": 1425 },
- { "weight": 1, "sprite": 1391 },
- { "weight": 1, "sprite": 1392 },
- { "weight": 1, "sprite": 1393 },
- { "weight": 1, "sprite": 1394 },
- { "weight": 1, "sprite": 1395 },
- { "weight": 1, "sprite": 1396 },
- { "weight": 1, "sprite": 1397 },
- { "weight": 1, "sprite": 1398 },
- { "weight": 1, "sprite": 1399 },
- { "weight": 1, "sprite": 1400 },
- { "weight": 1, "sprite": 1402 },
- { "weight": 1, "sprite": 1403 },
- { "weight": 1, "sprite": 1404 },
- { "weight": 1, "sprite": 1405 },
- { "weight": 1, "sprite": 1406 },
- { "weight": 1, "sprite": 1407 },
- { "weight": 1, "sprite": 1408 },
- { "weight": 1, "sprite": 1409 },
- { "weight": 1, "sprite": 1410 },
- { "weight": 1, "sprite": 1411 },
- { "weight": 1, "sprite": 1413 },
- { "weight": 1, "sprite": 1414 },
- { "weight": 1, "sprite": 1415 },
- { "weight": 1, "sprite": 1416 },
- { "weight": 1, "sprite": 1417 },
- { "weight": 1, "sprite": 1418 }
- ],
- "bg": 1324,
- "rotates": false
- },
- {
- "id": "mon_zombie_child",
- "fg": [
{ "weight": 1, "sprite": 1426 },
{ "weight": 1, "sprite": 1427 },
- { "weight": 1, "sprite": 1428 },
- { "weight": 1, "sprite": 1437 },
- { "weight": 1, "sprite": 1438 },
- { "weight": 1, "sprite": 1439 },
- { "weight": 1, "sprite": 1440 },
- { "weight": 1, "sprite": 1441 },
- { "weight": 1, "sprite": 1442 },
{ "weight": 1, "sprite": 1429 },
{ "weight": 1, "sprite": 1430 },
{ "weight": 1, "sprite": 1431 },
@@ -2098,30 +2102,62 @@
{ "weight": 1, "sprite": 1433 },
{ "weight": 1, "sprite": 1434 },
{ "weight": 1, "sprite": 1435 },
- { "weight": 1, "sprite": 1436 }
+ { "weight": 1, "sprite": 1436 },
+ { "weight": 1, "sprite": 1437 },
+ { "weight": 1, "sprite": 1438 },
+ { "weight": 1, "sprite": 1440 },
+ { "weight": 1, "sprite": 1441 },
+ { "weight": 1, "sprite": 1442 },
+ { "weight": 1, "sprite": 1443 },
+ { "weight": 1, "sprite": 1444 },
+ { "weight": 1, "sprite": 1445 }
],
"bg": 1324,
"rotates": false
},
{
- "id": "mon_zombie_fat",
+ "id": "mon_zombie_child",
"fg": [
- { "weight": 1, "sprite": 1443 },
- { "weight": 1, "sprite": 1444 },
- { "weight": 1, "sprite": 1445 },
{ "weight": 1, "sprite": 1453 },
{ "weight": 1, "sprite": 1454 },
{ "weight": 1, "sprite": 1455 },
+ { "weight": 1, "sprite": 1464 },
+ { "weight": 1, "sprite": 1465 },
+ { "weight": 1, "sprite": 1466 },
+ { "weight": 1, "sprite": 1467 },
+ { "weight": 1, "sprite": 1468 },
+ { "weight": 1, "sprite": 1469 },
{ "weight": 1, "sprite": 1456 },
{ "weight": 1, "sprite": 1457 },
{ "weight": 1, "sprite": 1458 },
- { "weight": 1, "sprite": 1446 },
- { "weight": 1, "sprite": 1447 },
- { "weight": 1, "sprite": 1448 },
- { "weight": 1, "sprite": 1449 },
- { "weight": 1, "sprite": 1450 },
- { "weight": 1, "sprite": 1451 },
- { "weight": 1, "sprite": 1452 }
+ { "weight": 1, "sprite": 1459 },
+ { "weight": 1, "sprite": 1460 },
+ { "weight": 1, "sprite": 1461 },
+ { "weight": 1, "sprite": 1462 },
+ { "weight": 1, "sprite": 1463 }
+ ],
+ "bg": 1324,
+ "rotates": false
+ },
+ {
+ "id": "mon_zombie_fat",
+ "fg": [
+ { "weight": 1, "sprite": 1470 },
+ { "weight": 1, "sprite": 1471 },
+ { "weight": 1, "sprite": 1472 },
+ { "weight": 1, "sprite": 1480 },
+ { "weight": 1, "sprite": 1481 },
+ { "weight": 1, "sprite": 1482 },
+ { "weight": 1, "sprite": 1483 },
+ { "weight": 1, "sprite": 1484 },
+ { "weight": 1, "sprite": 1485 },
+ { "weight": 1, "sprite": 1473 },
+ { "weight": 1, "sprite": 1474 },
+ { "weight": 1, "sprite": 1475 },
+ { "weight": 1, "sprite": 1476 },
+ { "weight": 1, "sprite": 1477 },
+ { "weight": 1, "sprite": 1478 },
+ { "weight": 1, "sprite": 1479 }
],
"bg": 1324,
"rotates": false
@@ -2129,15 +2165,15 @@
{
"id": "mon_zombie_grabber",
"fg": [
- { "weight": 1, "sprite": 1459 },
- { "weight": 1, "sprite": 1460 },
- { "weight": 1, "sprite": 1461 },
- { "weight": 1, "sprite": 1462 },
- { "weight": 1, "sprite": 1463 },
- { "weight": 1, "sprite": 1464 },
- { "weight": 1, "sprite": 1465 },
- { "weight": 1, "sprite": 1466 },
- { "weight": 1, "sprite": 1467 }
+ { "weight": 1, "sprite": 1486 },
+ { "weight": 1, "sprite": 1487 },
+ { "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 }
],
"bg": 1324,
"rotates": false
@@ -2145,12 +2181,12 @@
{
"id": "mon_zombie_labsecurity",
"fg": [
- { "weight": 1, "sprite": 1468 },
- { "weight": 1, "sprite": 1469 },
- { "weight": 1, "sprite": 1470 },
- { "weight": 1, "sprite": 1471 },
- { "weight": 1, "sprite": 1472 },
- { "weight": 1, "sprite": 1473 }
+ { "weight": 1, "sprite": 1495 },
+ { "weight": 1, "sprite": 1496 },
+ { "weight": 1, "sprite": 1497 },
+ { "weight": 1, "sprite": 1498 },
+ { "weight": 1, "sprite": 1499 },
+ { "weight": 1, "sprite": 1500 }
],
"bg": 1324,
"rotates": false
@@ -2158,12 +2194,12 @@
{
"id": "mon_zombie_prisoner",
"fg": [
- { "weight": 1, "sprite": 1474 },
- { "weight": 1, "sprite": 1475 },
- { "weight": 1, "sprite": 1476 },
- { "weight": 1, "sprite": 1477 },
- { "weight": 1, "sprite": 1478 },
- { "weight": 1, "sprite": 1479 }
+ { "weight": 1, "sprite": 1501 },
+ { "weight": 1, "sprite": 1502 },
+ { "weight": 1, "sprite": 1503 },
+ { "weight": 1, "sprite": 1504 },
+ { "weight": 1, "sprite": 1505 },
+ { "weight": 1, "sprite": 1506 }
],
"bg": 1324,
"rotates": false
@@ -2171,11 +2207,11 @@
{
"id": "mon_zombie_runner",
"fg": [
- { "weight": 1, "sprite": 1480 },
- { "weight": 1, "sprite": 1481 },
- { "weight": 1, "sprite": 1482 },
- { "weight": 1, "sprite": 1483 },
- { "weight": 1, "sprite": 1484 }
+ { "weight": 1, "sprite": 1507 },
+ { "weight": 1, "sprite": 1508 },
+ { "weight": 1, "sprite": 1509 },
+ { "weight": 1, "sprite": 1510 },
+ { "weight": 1, "sprite": 1511 }
],
"bg": 1324,
"rotates": false
@@ -2183,17 +2219,17 @@
{
"id": "mon_zombie_scientist",
"fg": [
- { "weight": 1, "sprite": 1485 },
- { "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": 1486 },
- { "weight": 1, "sprite": 1487 }
+ { "weight": 1, "sprite": 1512 },
+ { "weight": 1, "sprite": 1515 },
+ { "weight": 1, "sprite": 1516 },
+ { "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": 1513 },
+ { "weight": 1, "sprite": 1514 }
],
"bg": 1324,
"rotates": false
@@ -2201,10 +2237,10 @@
{
"id": "mon_zombie_screecher",
"fg": [
- { "weight": 1, "sprite": 1496 },
- { "weight": 1, "sprite": 1497 },
- { "weight": 1, "sprite": 1498 },
- { "weight": 1, "sprite": 1499 }
+ { "weight": 1, "sprite": 1523 },
+ { "weight": 1, "sprite": 1524 },
+ { "weight": 1, "sprite": 1525 },
+ { "weight": 1, "sprite": 1526 }
],
"bg": 1324,
"rotates": false
@@ -2212,33 +2248,33 @@
{
"id": "mon_zombie_shrieker",
"fg": [
- { "weight": 1, "sprite": 1500 },
- { "weight": 1, "sprite": 1501 },
- { "weight": 1, "sprite": 1502 },
- { "weight": 1, "sprite": 1503 }
+ { "weight": 1, "sprite": 1527 },
+ { "weight": 1, "sprite": 1528 },
+ { "weight": 1, "sprite": 1529 },
+ { "weight": 1, "sprite": 1530 }
],
"bg": 1324,
"rotates": false
},
{
"id": "mon_zombie_survivor",
- "fg": [ { "weight": 1, "sprite": 1504 }, { "weight": 1, "sprite": 1505 } ],
+ "fg": [ { "weight": 1, "sprite": 1531 }, { "weight": 1, "sprite": 1532 } ],
"bg": 1324,
"rotates": false
},
{
"id": "mon_zombie_survivor_elite",
- "fg": [ { "weight": 1, "sprite": 1506 }, { "weight": 1, "sprite": 1507 }, { "weight": 1, "sprite": 1508 } ],
+ "fg": [ { "weight": 1, "sprite": 1533 }, { "weight": 1, "sprite": 1534 }, { "weight": 1, "sprite": 1535 } ],
"bg": 1324,
"rotates": false
},
{
"id": "mon_zombie_technician",
"fg": [
- { "weight": 1, "sprite": 1509 },
- { "weight": 1, "sprite": 1510 },
- { "weight": 1, "sprite": 1511 },
- { "weight": 1, "sprite": 1512 }
+ { "weight": 1, "sprite": 1536 },
+ { "weight": 1, "sprite": 1537 },
+ { "weight": 1, "sprite": 1538 },
+ { "weight": 1, "sprite": 1539 }
],
"bg": 1324,
"rotates": false
@@ -2246,42 +2282,43 @@
{
"id": "mon_zombie_tough",
"fg": [
- { "weight": 1, "sprite": 1513 },
- { "weight": 1, "sprite": 1514 },
- { "weight": 1, "sprite": 1515 },
- { "weight": 1, "sprite": 1522 },
- { "weight": 1, "sprite": 1523 },
- { "weight": 1, "sprite": 1524 },
- { "weight": 1, "sprite": 1525 },
- { "weight": 1, "sprite": 1526 },
- { "weight": 1, "sprite": 1527 },
- { "weight": 1, "sprite": 1516 },
- { "weight": 1, "sprite": 1517 },
- { "weight": 1, "sprite": 1518 },
- { "weight": 1, "sprite": 1519 },
- { "weight": 1, "sprite": 1520 },
- { "weight": 1, "sprite": 1521 }
+ { "weight": 1, "sprite": 1540 },
+ { "weight": 1, "sprite": 1541 },
+ { "weight": 1, "sprite": 1542 },
+ { "weight": 1, "sprite": 1549 },
+ { "weight": 1, "sprite": 1550 },
+ { "weight": 1, "sprite": 1551 },
+ { "weight": 1, "sprite": 1552 },
+ { "weight": 1, "sprite": 1553 },
+ { "weight": 1, "sprite": 1554 },
+ { "weight": 1, "sprite": 1543 },
+ { "weight": 1, "sprite": 1544 },
+ { "weight": 1, "sprite": 1545 },
+ { "weight": 1, "sprite": 1546 },
+ { "weight": 1, "sprite": 1547 },
+ { "weight": 1, "sprite": 1548 }
],
"bg": 1324,
"rotates": false
},
- { "id": "corpse_mon_fish_lbass", "fg": 1279 },
- { "id": "corpse_mon_fish_pbass", "fg": 1280 },
- { "id": "corpse_mon_fish_salmon", "fg": 1281 },
- { "id": "corpse_mon_fish_sunfish", "fg": 1282 },
- { "id": "lemming_shadow", "fg": 1283 },
- { "id": "mon_boar_wild", "fg": 1284 },
- { "id": "mon_boar_wild_piglet", "fg": 1285 },
- { "id": "mon_copbot", "fg": 1286 },
- { "id": "mon_cow", "fg": 1287 },
- { "id": "mon_cow_calf", "fg": 1288 },
- { "id": "mon_fish_eel", "fg": 1289 },
- { "id": "mon_frog", "fg": 1290 },
- { "id": "mon_frog_small", "fg": 1291 },
- { "id": "mon_gracke", "fg": 1292 },
- { "id": "mon_grocerybot", "fg": 1293 },
- { "id": "mon_grocerybot_busted", "fg": 1294 },
- { "id": "mon_hallu_mannequin", "fg": 1295 },
+ { "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 },
@@ -2303,151 +2340,172 @@
{ "id": "mon_zombeaver", "fg": 1333 },
{ "id": "mon_dog_bull", "fg": 1342 },
{ "id": "mon_dog_rottweiler", "fg": 1343 },
- { "id": "bot_eyebot", "fg": 1368 },
- { "id": "broken_eyebot", "fg": 1369 },
- { "id": "mon_eyebot", "fg": 1370 },
- { "id": "mon_goose_canadian", "fg": 1373 },
- { "id": "mon_grouse", "fg": 1374 },
- { "id": "mon_pheasant", "fg": 1375 },
- { "id": "mon_tadpole_grabber", "fg": 1376 },
- { "id": "mon_zombie_necro_boomer", "fg": 1380 },
- { "id": "mon_zombie_pig_gas", "fg": 1381 },
- { "id": "corpse_mon_zombie_rust", "fg": 1382 },
- { "id": "corpse_mon_zombie_shell", "fg": 1383 },
- { "id": "corpse_mon_zombie_urchin", "fg": 1384 },
- { "id": "mon_zombie_rust", "fg": 1385 },
- { "id": "mon_zombie_shell", "fg": 1386 },
- { "id": "mon_zombie_urchin", "fg": 1387 }
+ { "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": "mon_pheasant", "fg": 1401 },
+ { "id": "mon_tadpole_grabber", "fg": 1402 },
+ { "id": "mon_tazer_hack", "fg": 1403 },
+ { "id": "mon_zombie_necro_boomer", "fg": 1407 },
+ { "id": "mon_zombie_pig_gas", "fg": 1408 },
+ { "id": "corpse_mon_zombie_rust", "fg": 1409 },
+ { "id": "corpse_mon_zombie_shell", "fg": 1410 },
+ { "id": "corpse_mon_zombie_urchin", "fg": 1411 },
+ { "id": "mon_zombie_rust", "fg": 1412 },
+ { "id": "mon_zombie_shell", "fg": 1413 },
+ { "id": "mon_zombie_urchin", "fg": 1414 }
]
},
{
"file": "ChibiNormalCharacterMagiclysm.png",
- "//": "range 1536 to 1583",
+ "//": "range 1568 to 1615",
"tiles": [
- { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 1570, "rotates": false },
- { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 1553, "rotates": false },
- { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 1568, "rotates": false },
- { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 1551, "rotates": false },
- { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 1569, "rotates": false },
- { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 1552, "rotates": false },
- { "id": "overlay_mutation_bio_sneeze_beam", "fg": 1536 },
- { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 1537 },
- { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 1538 },
- { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 1539 },
- { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 1540 },
- { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 1541 },
- { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 1542 },
- { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 1543 },
- { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 1544 },
- { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 1545 },
- { "id": "overlay_female_mutation_MANA_LUM", "fg": 1546 },
- { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 1547 },
- { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 1548 },
- { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 1549 },
- { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 1550 },
- { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 1554 },
- { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 1555 },
- { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 1556 },
- { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 1557 },
- { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 1558 },
- { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 1559 },
- { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 1560 },
- { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 1561 },
- { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 1562 },
- { "id": "overlay_male_mutation_MANA_LUM", "fg": 1563 },
- { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 1564 },
- { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 1565 },
- { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 1566 },
- { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 1567 },
- { "id": "overlay_mutation_DEMON_CLAWS", "fg": 1571 },
- { "id": "overlay_mutation_DEMON_POSSES", "fg": 1572 },
- { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 1573 },
- { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 1574 },
- { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 1575 },
- { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 1576 },
- { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 1577 },
- { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 1578 },
- { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 1579 },
- { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 1580 },
- { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 1581 }
+ { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 1602, "rotates": false },
+ { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 1585, "rotates": false },
+ { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 1600, "rotates": false },
+ { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 1583, "rotates": false },
+ { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 1601, "rotates": false },
+ { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 1584, "rotates": false },
+ { "id": "overlay_mutation_bio_sneeze_beam", "fg": 1568 },
+ { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 1569 },
+ { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 1570 },
+ { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 1571 },
+ { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 1572 },
+ { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 1573 },
+ { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 1574 },
+ { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 1575 },
+ { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 1576 },
+ { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 1577 },
+ { "id": "overlay_female_mutation_MANA_LUM", "fg": 1578 },
+ { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 1579 },
+ { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 1580 },
+ { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 1581 },
+ { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 1582 },
+ { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 1586 },
+ { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 1587 },
+ { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 1588 },
+ { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 1589 },
+ { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 1590 },
+ { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 1591 },
+ { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 1592 },
+ { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 1593 },
+ { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 1594 },
+ { "id": "overlay_male_mutation_MANA_LUM", "fg": 1595 },
+ { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 1596 },
+ { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 1597 },
+ { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 1598 },
+ { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 1599 },
+ { "id": "overlay_mutation_DEMON_CLAWS", "fg": 1603 },
+ { "id": "overlay_mutation_DEMON_POSSES", "fg": 1604 },
+ { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 1605 },
+ { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 1606 },
+ { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 1607 },
+ { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 1608 },
+ { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 1609 },
+ { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 1610 },
+ { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 1611 },
+ { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 1612 },
+ { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 1613 }
]
},
{
"file": "ChibiNormalMonsterMagiclysm.png",
- "//": "range 1584 to 1599",
+ "//": "range 1616 to 1631",
"tiles": [
{
"id": "mon_demon_spiderling",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 1587 },
- { "weight": 15, "sprite": 1588 },
- { "weight": 15, "sprite": 1589 },
- { "weight": 15, "sprite": 1588 }
+ { "weight": 15, "sprite": 1619 },
+ { "weight": 15, "sprite": 1620 },
+ { "weight": 15, "sprite": 1621 },
+ { "weight": 15, "sprite": 1620 }
],
"rotates": false
},
- { "id": "mon_goblin_chieftain", "fg": 1584 },
- { "id": "mon_goblin_slinger", "fg": 1585 },
- { "id": "mon_goblin_warrior", "fg": 1586 }
+ { "id": "mon_goblin_chieftain", "fg": 1616 },
+ { "id": "mon_goblin_slinger", "fg": 1617 },
+ { "id": "mon_goblin_warrior", "fg": 1618 }
]
},
{
"file": "ChibiNormalMonsterMSC.png",
- "//": "range 1600 to 1615",
+ "//": "range 1632 to 1647",
"tiles": [
{
"id": "mon_marshmallow_kid",
- "fg": [ { "weight": 1, "sprite": 1603 }, { "weight": 1, "sprite": 1604 } ],
+ "fg": [ { "weight": 1, "sprite": 1635 }, { "weight": 1, "sprite": 1636 } ],
"bg": [ ],
"rotates": false
},
{
"id": "mon_necco",
"fg": [
- { "weight": 1, "sprite": 1606 },
- { "weight": 1, "sprite": 1607 },
- { "weight": 1, "sprite": 1608 },
- { "weight": 1, "sprite": 1609 },
- { "weight": 1, "sprite": 1610 },
- { "weight": 1, "sprite": 1611 },
- { "weight": 1, "sprite": 1605 }
+ { "weight": 1, "sprite": 1638 },
+ { "weight": 1, "sprite": 1639 },
+ { "weight": 1, "sprite": 1640 },
+ { "weight": 1, "sprite": 1641 },
+ { "weight": 1, "sprite": 1642 },
+ { "weight": 1, "sprite": 1643 },
+ { "weight": 1, "sprite": 1637 }
],
"bg": [ ],
"rotates": false
},
- { "id": "mon_cookie", "fg": 1600 },
- { "id": "mon_cow_calf_choc", "fg": 1601 },
- { "id": "mon_cow_choc", "fg": 1602 }
+ { "id": "mon_cookie", "fg": 1632 },
+ { "id": "mon_cow_calf_choc", "fg": 1633 },
+ { "id": "mon_cow_choc", "fg": 1634 }
+ ]
+ },
+ {
+ "file": "ChibiWideMonster.png",
+ "//": "range 1648 to 1663",
+ "sprite_width": 48,
+ "sprite_height": 48,
+ "sprite_offset_x": -16,
+ "sprite_offset_y": -16,
+ "tiles": [
+ { "id": "mon_secubot", "fg": 1648 },
+ { "id": "mon_talon_m202a1", "fg": 1649 },
+ { "id": "mon_halloween_dragon", "fg": 1650 }
]
},
{
"file": "ChibiTallMonster.png",
- "//": "range 1616 to 1631",
+ "//": "range 1664 to 1679",
"sprite_width": 32,
"sprite_height": 48,
"sprite_offset_x": 0,
"sprite_offset_y": -16,
"tiles": [
- { "id": "mon_nursebot", "fg": [ 1616, 1617, 1618 ], "rotates": false },
+ { "id": "mon_nursebot", "fg": [ 1664, 1665, 1666 ], "rotates": false },
{
"id": "mon_firefly",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 1620 },
- { "weight": 15, "sprite": 1621 },
- { "weight": 15, "sprite": 1622 },
- { "weight": 15, "sprite": 1621 }
- ],
- "bg": [ { "weight": 15, "sprite": 1616 }, { "weight": 15, "sprite": 1618 } ]
+ { "weight": 15, "sprite": 1668 },
+ { "weight": 15, "sprite": 1669 },
+ { "weight": 15, "sprite": 1670 },
+ { "weight": 15, "sprite": 1669 }
+ ]
},
- { "id": "mon_zombie_scissorlimbs", "fg": 1619 },
- { "id": "mon_robofac_prototype", "fg": 1623 }
+ { "id": "mon_zombie_scissorlimbs", "fg": 1667 },
+ { "id": "mon_robofac_prototype", "fg": 1671 }
]
},
{
"file": "ChibiTallMonsterMagiclysm.png",
- "//": "range 1632 to 1647",
+ "//": "range 1680 to 1695",
"sprite_width": 32,
"sprite_height": 48,
"sprite_offset_x": 0,
@@ -2457,10 +2515,10 @@
"id": "mon_demon_spider",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 1632 },
- { "weight": 15, "sprite": 1633 },
- { "weight": 15, "sprite": 1634 },
- { "weight": 15, "sprite": 1633 }
+ { "weight": 15, "sprite": 1680 },
+ { "weight": 15, "sprite": 1681 },
+ { "weight": 15, "sprite": 1682 },
+ { "weight": 15, "sprite": 1681 }
],
"rotates": false
}
@@ -2468,7 +2526,7 @@
},
{
"file": "ChibiTallMonsterMSC.png",
- "//": "range 1648 to 1663",
+ "//": "range 1696 to 1711",
"sprite_width": 32,
"sprite_height": 48,
"sprite_offset_x": 0,
@@ -2476,7 +2534,7 @@
"tiles": [
{
"id": "mon_marshmallow_buff",
- "fg": [ { "weight": 1, "sprite": 1648 }, { "weight": 1, "sprite": 1649 } ],
+ "fg": [ { "weight": 1, "sprite": 1696 }, { "weight": 1, "sprite": 1697 } ],
"bg": [ ],
"rotates": false
}
@@ -2484,76 +2542,76 @@
},
{
"file": "ChibiTallOverlay.png",
- "//": "range 1664 to 1743",
+ "//": "range 1712 to 1791",
"sprite_width": 32,
"sprite_height": 48,
"sprite_offset_x": 0,
"sprite_offset_y": -16,
"tiles": [
- { "id": "overlay_worn_10gal_hat", "fg": 1664, "rotates": false },
- { "id": "overlay_worn_bowhat", "fg": 1665, "rotates": false },
- { "id": "overlay_worn_eboshi", "fg": 1666, "rotates": false },
- { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 1667, "rotates": false },
- { "id": "overlay_worn_firehelmet", "fg": 1668, "rotates": false },
- { "id": "overlay_worn_hat_chef", "fg": 1669, "rotates": false },
- { "id": "overlay_worn_hat_hard", "fg": 1670, "rotates": false },
- { "id": "overlay_worn_hat_hard_hooded", "fg": 1671, "rotates": false },
- { "id": "overlay_worn_hat_sombrero", "fg": 1672, "rotates": false },
- { "id": "overlay_worn_helmet_kabuto", "fg": 1673, "rotates": false },
- { "id": "overlay_worn_miner_hat", "fg": 1674, "rotates": false },
- { "id": "overlay_worn_miner_hat_on", "fg": 1675, "rotates": false },
- { "id": "overlay_worn_pickelhaube", "fg": 1676, "rotates": false },
- { "id": "overlay_worn_porkpie", "fg": 1677, "rotates": false },
- { "id": "overlay_worn_straw_fedora", "fg": 1678, "rotates": false },
- { "id": "overlay_worn_straw_hat", "fg": 1679, "rotates": false },
- { "id": "overlay_worn_tinfoil_hat", "fg": 1680, "rotates": false },
- { "id": "overlay_worn_tophat", "fg": 1681, "rotates": false },
- { "id": "overlay_worn_veil_wedding", "fg": 1682, "rotates": false },
- { "id": "overlay_worn_welding_mask_crude_raised", "fg": 1683, "rotates": false },
- { "id": "overlay_worn_welding_mask_raised", "fg": 1684, "rotates": false },
- { "id": "overlay_effect_badpoison", "fg": 1686 },
- { "id": "overlay_effect_bleed", "fg": 1687 },
- { "id": "overlay_effect_bouldering", "fg": 1688 },
- { "id": "overlay_effect_common_cold", "fg": 1689 },
- { "id": "overlay_effect_dazed", "fg": 1690 },
- { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 1691 },
- { "id": "overlay_effect_downed", "fg": 1692 },
- { "id": "overlay_effect_drunk", "fg": 1693 },
- { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 1694 },
- { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 1695 },
- { "id": "overlay_effect_fungus", "fg": 1696 },
- { "id": "overlay_effect_grabbed", "fg": 1697 },
- { "id": "overlay_female_effect_haslight", "fg": 1706 },
- { "id": "overlay_male_effect_haslight", "fg": 1707 },
- { "id": "overlay_effect_high", "fg": 1698 },
- { "id": "overlay_effect_paralyzepoison", "fg": 1699 },
- { "id": "overlay_effect_poison", "fg": 1700 },
- { "id": "overlay_effect_sleep", "fg": 1701 },
- { "id": "overlay_effect_spores", "fg": 1702 },
- { "id": "overlay_effect_stunned", "fg": 1703 },
- { "id": "overlay_effect_visuals", "fg": 1704 },
- { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 1705 },
- { "id": "overlay_female_mutation_hair_black_fro", "fg": 1710, "rotates": false },
- { "id": "overlay_female_mutation_hair_gray_fro", "fg": 1713, "rotates": false },
- { "id": "overlay_female_mutation_hair_blond_fro", "fg": 1711, "rotates": false },
- { "id": "overlay_female_mutation_hair_brown_fro", "fg": 1712, "rotates": false },
- { "id": "overlay_female_mutation_hair_white_fro", "fg": 1715, "rotates": false },
- { "id": "overlay_female_mutation_hair_red_fro", "fg": 1714, "rotates": false },
- { "id": "overlay_male_mutation_hair_black_fro", "fg": 1716, "rotates": false },
- { "id": "overlay_male_mutation_hair_gray_fro", "fg": 1719, "rotates": false },
- { "id": "overlay_male_mutation_hair_blond_fro", "fg": 1717, "rotates": false },
- { "id": "overlay_male_mutation_hair_brown_fro", "fg": 1718, "rotates": false },
- { "id": "overlay_male_mutation_hair_white_fro", "fg": 1721, "rotates": false },
- { "id": "overlay_male_mutation_hair_red_fro", "fg": 1720, "rotates": false },
- { "id": "overlay_mutation_hair_black_mohawk", "fg": 1722, "rotates": false },
- { "id": "overlay_mutation_hair_gray_mohawk", "fg": 1725, "rotates": false },
- { "id": "overlay_mutation_hair_blond_mohawk", "fg": 1723, "rotates": false },
- { "id": "overlay_mutation_hair_brown_mohawk", "fg": 1724, "rotates": false },
- { "id": "overlay_mutation_hair_white_mohawk", "fg": 1727, "rotates": false },
- { "id": "overlay_mutation_hair_red_mohawk", "fg": 1726, "rotates": false },
+ { "id": "overlay_worn_10gal_hat", "fg": 1712, "rotates": false },
+ { "id": "overlay_worn_bowhat", "fg": 1713, "rotates": false },
+ { "id": "overlay_worn_eboshi", "fg": 1714, "rotates": false },
+ { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 1715, "rotates": false },
+ { "id": "overlay_worn_firehelmet", "fg": 1716, "rotates": false },
+ { "id": "overlay_worn_hat_chef", "fg": 1717, "rotates": false },
+ { "id": "overlay_worn_hat_hard", "fg": 1718, "rotates": false },
+ { "id": "overlay_worn_hat_hard_hooded", "fg": 1719, "rotates": false },
+ { "id": "overlay_worn_hat_sombrero", "fg": 1720, "rotates": false },
+ { "id": "overlay_worn_helmet_kabuto", "fg": 1721, "rotates": false },
+ { "id": "overlay_worn_miner_hat", "fg": 1722, "rotates": false },
+ { "id": "overlay_worn_miner_hat_on", "fg": 1723, "rotates": false },
+ { "id": "overlay_worn_pickelhaube", "fg": 1724, "rotates": false },
+ { "id": "overlay_worn_porkpie", "fg": 1725, "rotates": false },
+ { "id": "overlay_worn_straw_fedora", "fg": 1726, "rotates": false },
+ { "id": "overlay_worn_straw_hat", "fg": 1727, "rotates": false },
+ { "id": "overlay_worn_tinfoil_hat", "fg": 1728, "rotates": false },
+ { "id": "overlay_worn_tophat", "fg": 1729, "rotates": false },
+ { "id": "overlay_worn_veil_wedding", "fg": 1730, "rotates": false },
+ { "id": "overlay_worn_welding_mask_crude_raised", "fg": 1731, "rotates": false },
+ { "id": "overlay_worn_welding_mask_raised", "fg": 1732, "rotates": false },
+ { "id": "overlay_effect_badpoison", "fg": 1734 },
+ { "id": "overlay_effect_bleed", "fg": 1735 },
+ { "id": "overlay_effect_bouldering", "fg": 1736 },
+ { "id": "overlay_effect_common_cold", "fg": 1737 },
+ { "id": "overlay_effect_dazed", "fg": 1738 },
+ { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 1739 },
+ { "id": "overlay_effect_downed", "fg": 1740 },
+ { "id": "overlay_effect_drunk", "fg": 1741 },
+ { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 1742 },
+ { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 1743 },
+ { "id": "overlay_effect_fungus", "fg": 1744 },
+ { "id": "overlay_effect_grabbed", "fg": 1745 },
+ { "id": "overlay_female_effect_haslight", "fg": 1754 },
+ { "id": "overlay_male_effect_haslight", "fg": 1755 },
+ { "id": "overlay_effect_high", "fg": 1746 },
+ { "id": "overlay_effect_paralyzepoison", "fg": 1747 },
+ { "id": "overlay_effect_poison", "fg": 1748 },
+ { "id": "overlay_effect_sleep", "fg": 1749 },
+ { "id": "overlay_effect_spores", "fg": 1750 },
+ { "id": "overlay_effect_stunned", "fg": 1751 },
+ { "id": "overlay_effect_visuals", "fg": 1752 },
+ { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 1753 },
+ { "id": "overlay_female_mutation_hair_black_fro", "fg": 1767, "rotates": false },
+ { "id": "overlay_female_mutation_hair_gray_fro", "fg": 1770, "rotates": false },
+ { "id": "overlay_female_mutation_hair_blond_fro", "fg": 1768, "rotates": false },
+ { "id": "overlay_female_mutation_hair_brown_fro", "fg": 1769, "rotates": false },
+ { "id": "overlay_female_mutation_hair_white_fro", "fg": 1772, "rotates": false },
+ { "id": "overlay_female_mutation_hair_red_fro", "fg": 1771, "rotates": false },
+ { "id": "overlay_male_mutation_hair_black_fro", "fg": 1773, "rotates": false },
+ { "id": "overlay_male_mutation_hair_gray_fro", "fg": 1776, "rotates": false },
+ { "id": "overlay_male_mutation_hair_blond_fro", "fg": 1774, "rotates": false },
+ { "id": "overlay_male_mutation_hair_brown_fro", "fg": 1775, "rotates": false },
+ { "id": "overlay_male_mutation_hair_white_fro", "fg": 1778, "rotates": false },
+ { "id": "overlay_male_mutation_hair_red_fro", "fg": 1777, "rotates": false },
+ { "id": "overlay_mutation_hair_black_mohawk", "fg": 1779, "rotates": false },
+ { "id": "overlay_mutation_hair_gray_mohawk", "fg": 1782, "rotates": false },
+ { "id": "overlay_mutation_hair_blond_mohawk", "fg": 1780, "rotates": false },
+ { "id": "overlay_mutation_hair_brown_mohawk", "fg": 1781, "rotates": false },
+ { "id": "overlay_mutation_hair_white_mohawk", "fg": 1784, "rotates": false },
+ { "id": "overlay_mutation_hair_red_mohawk", "fg": 1783, "rotates": false },
{
"id": [ "overlay_female_mutation_BIOLUM0", "overlay_female_mutation_BIOLUM1", "overlay_female_mutation_BIOLUM2" ],
- "fg": 1728,
+ "fg": 1785,
"rotates": false
},
{
@@ -2562,12 +2620,12 @@
"overlay_female_mutation_BIOLUM1_active",
"overlay_female_mutation_BIOLUM2_active"
],
- "fg": 1729,
+ "fg": 1786,
"rotates": false
},
{
"id": [ "overlay_male_mutation_BIOLUM0", "overlay_male_mutation_BIOLUM1", "overlay_male_mutation_BIOLUM2" ],
- "fg": 1730,
+ "fg": 1787,
"rotates": false
},
{
@@ -2576,19 +2634,28 @@
"overlay_male_mutation_BIOLUM1_active",
"overlay_male_mutation_BIOLUM2_active"
],
- "fg": 1731,
+ "fg": 1788,
"rotates": false
},
- { "id": "overlay_mutation_HORNS_POINTED", "fg": 1732, "rotates": false },
- { "id": "overlay_crouch", "fg": 1685 },
- { "id": "overlay_run", "fg": 1708 },
- { "id": "overlay_prone", "fg": 1709 },
- { "id": "overlay_wielded_mattress", "fg": 1733 }
+ { "id": "overlay_mutation_HORNS_POINTED", "fg": 1789, "rotates": false },
+ { "id": "overlay_crouch", "fg": 1733 },
+ { "id": "overlay_run", "fg": 1756 },
+ { "id": "overlay_effect_weary_0", "fg": 1757 },
+ { "id": "overlay_effect_weary_1", "fg": 1758 },
+ { "id": "overlay_effect_weary_2", "fg": 1759 },
+ { "id": "overlay_effect_weary_3", "fg": 1760 },
+ { "id": "overlay_effect_weary_4", "fg": 1761 },
+ { "id": "overlay_effect_weary_5", "fg": 1762 },
+ { "id": "overlay_effect_weary_6", "fg": 1763 },
+ { "id": "overlay_effect_weary_7", "fg": 1764 },
+ { "id": "overlay_effect_weary_8", "fg": 1765 },
+ { "id": "overlay_prone", "fg": 1766 },
+ { "id": "overlay_wielded_mattress", "fg": 1790 }
]
},
{
"file": "ChibiHugeAftershockMonster.png",
- "//": "range 1744 to 1759",
+ "//": "range 1792 to 1807",
"sprite_width": 128,
"sprite_height": 128,
"sprite_offset_x": -64,
@@ -2596,55 +2663,64 @@
"tiles": [
{
"id": "mon_tankbot",
- "fg": [ { "weight": 10, "sprite": 1746 }, { "weight": 1, "sprite": 1747 }, { "weight": 3, "sprite": 1748 } ],
+ "fg": [ { "weight": 10, "sprite": 1794 }, { "weight": 1, "sprite": 1795 }, { "weight": 3, "sprite": 1796 } ],
"rotates": false
},
- { "id": "bot_tankbot", "fg": 1744 },
- { "id": "broken_tankbot", "fg": 1745 }
+ { "id": "bot_tankbot", "fg": 1792 },
+ { "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 1760 to 2831",
+ "//": "range 1824 to 2911",
"sprite_width": 20,
"sprite_height": 20,
"sprite_offset_x": 0,
"sprite_offset_y": 0,
"tiles": [
- { "id": [ "plastic_plate", "soap_holder" ], "fg": 1872 },
- { "id": "RAM", "fg": 1761 },
- { "id": [ "beans_cooked", "can_beans" ], "fg": 1762 },
- { "id": "ceramic_plate", "fg": 1872 },
- { "id": [ "fancy_glasses_bifocal", "fancy_glasses_eye", "fancy_glasses_reading" ], "fg": 1896 },
- { "id": [ "glasses_eye", "glasses_reading" ], "fg": 1916 },
- { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 1934 },
- { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 1995 },
- { "id": "helmet_motor", "fg": 2025 },
- { "id": "katana", "fg": 2026 },
- { "id": "katana_fake", "fg": 2026 },
- { "id": "katana_inferior", "fg": 2026 },
- { "id": "223_casing", "fg": 2027 },
- { "id": "40mm_casing", "fg": 2028 },
- { "id": "40x46mm_m118_casing", "fg": 2028 },
- { "id": "50_casing", "fg": 2029 },
- { "id": "9mm_casing", "fg": 2030 },
- { "id": "arrow_cf", "fg": 2031 },
- { "id": "arrow_exploding", "fg": 2032 },
- { "id": "arrow_field_point_fletched", "fg": 2033 },
- { "id": "arrow_fire_hardened_fletched", "fg": 2034 },
- { "id": "flamable_arrow", "fg": 2048 },
- { "id": "arrow_flamming", "fg": 2035 },
- { "id": "arrow_heavy_fire_hardened_fletched", "fg": 2036 },
- { "id": "arrow_metal", "fg": 2037 },
- { "id": "arrow_metal_sharpened_fletched", "fg": 2038 },
- { "id": "arrow_plastic", "fg": 2039 },
- { "id": "arrow_small_game_fletched", "fg": 2040 },
- { "id": "arrow_wood", "fg": 2041 },
- { "id": "arrow_wood_heavy", "fg": 2042 },
- { "id": "bolt_cf", "fg": 2043 },
- { "id": "bolt_explosive", "fg": 2044 },
- { "id": "bolt_metal", "fg": 2045 },
- { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 2046 },
+ { "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": 2058 },
+ { "id": "helmet_motor", "fg": 2088 },
+ { "id": "katana", "fg": 2089 },
+ { "id": "katana_fake", "fg": 2089 },
+ { "id": "katana_inferior", "fg": 2089 },
+ { "id": "223_casing", "fg": 2090 },
+ { "id": "40mm_casing", "fg": 2091 },
+ { "id": "40x46mm_m118_casing", "fg": 2091 },
+ { "id": "50_casing", "fg": 2092 },
+ { "id": "9mm_casing", "fg": 2093 },
+ { "id": "arrow_cf", "fg": 2094 },
+ { "id": "arrow_exploding", "fg": 2095 },
+ { "id": "arrow_field_point_fletched", "fg": 2096 },
+ { "id": "arrow_fire_hardened_fletched", "fg": 2097 },
+ { "id": "flamable_arrow", "fg": 2111 },
+ { "id": "arrow_flamming", "fg": 2098 },
+ { "id": "arrow_heavy_fire_hardened_fletched", "fg": 2099 },
+ { "id": "arrow_metal", "fg": 2100 },
+ { "id": "arrow_metal_sharpened_fletched", "fg": 2101 },
+ { "id": "arrow_plastic", "fg": 2102 },
+ { "id": "arrow_small_game_fletched", "fg": 2103 },
+ { "id": "arrow_wood", "fg": 2104 },
+ { "id": "arrow_wood_heavy", "fg": 2105 },
+ { "id": "bolt_cf", "fg": 2106 },
+ { "id": "bolt_explosive", "fg": 2107 },
+ { "id": "bolt_metal", "fg": 2108 },
+ { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 2109 },
{
"id": [
"bolt_wood",
@@ -2655,61 +2731,62 @@
"bolt_wood_bodkin",
"bolt_wood_small_game"
],
- "fg": 2047
- },
- { "id": "shot_hull", "fg": 2049 },
- { "id": [ "TDI", "TDI_10" ], "fg": 2064 },
- { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 2095 },
- { "id": [ "hptjcp", "hptjhp" ], "fg": 2101 },
- { "id": [ "m1911", "m1911a1_38super" ], "fg": 2112 },
- { "id": "basket_laundry", "fg": 2185 },
- { "id": "heavy_battery_cell", "fg": 2187 },
- { "id": "heavy_plus_battery_cell", "fg": 2187 },
- { "id": "heavy_disposable_cell", "fg": 2187 },
- { "id": "heavy_atomic_battery_cell", "fg": 2186 },
- { "id": "light_battery_cell", "fg": 2189 },
- { "id": "light_minus_battery_cell", "fg": 2191 },
- { "id": "light_plus_battery_cell", "fg": 2189 },
- { "id": "light_disposable_cell", "fg": 2189 },
- { "id": "light_atomic_battery_cell", "fg": 2188 },
- { "id": "light_minus_atomic_battery_cell", "fg": 2190 },
- { "id": "medium_battery_cell", "fg": 2193 },
- { "id": "medium_plus_battery_cell", "fg": 2193 },
- { "id": "medium_disposable_cell", "fg": 2193 },
- { "id": "medium_atomic_battery_cell", "fg": 2192 },
- { "id": "bead_bracelet", "fg": 2194 },
- { "id": "bone", "fg": 2195 },
- { "id": "bone_human", "fg": 2196 },
- { "id": "bone_tainted", "fg": 2197 },
- { "id": "SICP", "fg": 2198 },
- { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 2199 },
- { "id": "book_fict_soft_tpl", "fg": 2209 },
- { "id": "novel_adventure", "fg": 2209 },
- { "id": "novel_buddy", "fg": 2210 },
- { "id": "novel_coa", "fg": 2211 },
- { "id": "novel_coa2", "fg": 2212 },
- { "id": "novel_crime", "fg": 2213 },
- { "id": "novel_crime2", "fg": 2214 },
- { "id": "novel_drama", "fg": 2215 },
- { "id": "novel_erotic", "fg": 2216 },
- { "id": "novel_experimental", "fg": 2217 },
- { "id": "novel_fantasy", "fg": 2218 },
- { "id": "novel_horror", "fg": 2219 },
- { "id": "novel_mystery", "fg": 2220 },
- { "id": "novel_pulp", "fg": 2221 },
- { "id": "novel_road", "fg": 2222 },
- { "id": "novel_romance", "fg": 2223 },
- { "id": "novel_samurai", "fg": 2224 },
- { "id": "novel_satire", "fg": 2225 },
- { "id": "novel_scifi", "fg": 2226 },
- { "id": "novel_sports", "fg": 2227 },
- { "id": "novel_spy", "fg": 2228 },
- { "id": "novel_swash", "fg": 2229 },
- { "id": "novel_thriller", "fg": 2230 },
- { "id": "novel_tragedy", "fg": 2231 },
- { "id": "novel_war", "fg": 2232 },
- { "id": "novel_war2", "fg": 2233 },
- { "id": "novel_western", "fg": 2234 },
+ "fg": 2110
+ },
+ { "id": "shot_hull", "fg": 2112 },
+ { "id": [ "90two", "90two40" ], "fg": 2124 },
+ { "id": [ "TDI", "TDI_10" ], "fg": 2126 },
+ { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 2157 },
+ { "id": [ "hptjcp", "hptjhp" ], "fg": 2163 },
+ { "id": [ "m1911", "m1911a1_38super" ], "fg": 2174 },
+ { "id": "basket_laundry", "fg": 2247 },
+ { "id": "heavy_battery_cell", "fg": 2249 },
+ { "id": "heavy_plus_battery_cell", "fg": 2249 },
+ { "id": "heavy_disposable_cell", "fg": 2249 },
+ { "id": "heavy_atomic_battery_cell", "fg": 2248 },
+ { "id": "light_battery_cell", "fg": 2251 },
+ { "id": "light_minus_battery_cell", "fg": 2253 },
+ { "id": "light_plus_battery_cell", "fg": 2251 },
+ { "id": "light_disposable_cell", "fg": 2251 },
+ { "id": "light_atomic_battery_cell", "fg": 2250 },
+ { "id": "light_minus_atomic_battery_cell", "fg": 2252 },
+ { "id": "medium_battery_cell", "fg": 2255 },
+ { "id": "medium_plus_battery_cell", "fg": 2255 },
+ { "id": "medium_disposable_cell", "fg": 2255 },
+ { "id": "medium_atomic_battery_cell", "fg": 2254 },
+ { "id": "bead_bracelet", "fg": 2256 },
+ { "id": "bone", "fg": 2257 },
+ { "id": "bone_human", "fg": 2258 },
+ { "id": "bone_tainted", "fg": 2259 },
+ { "id": "SICP", "fg": 2260 },
+ { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 2261 },
+ { "id": "book_fict_soft_tpl", "fg": 2271 },
+ { "id": "novel_adventure", "fg": 2271 },
+ { "id": "novel_buddy", "fg": 2272 },
+ { "id": "novel_coa", "fg": 2273 },
+ { "id": "novel_coa2", "fg": 2274 },
+ { "id": "novel_crime", "fg": 2275 },
+ { "id": "novel_crime2", "fg": 2276 },
+ { "id": "novel_drama", "fg": 2277 },
+ { "id": "novel_erotic", "fg": 2278 },
+ { "id": "novel_experimental", "fg": 2279 },
+ { "id": "novel_fantasy", "fg": 2280 },
+ { "id": "novel_horror", "fg": 2281 },
+ { "id": "novel_mystery", "fg": 2282 },
+ { "id": "novel_pulp", "fg": 2283 },
+ { "id": "novel_road", "fg": 2284 },
+ { "id": "novel_romance", "fg": 2285 },
+ { "id": "novel_samurai", "fg": 2286 },
+ { "id": "novel_satire", "fg": 2287 },
+ { "id": "novel_scifi", "fg": 2288 },
+ { "id": "novel_sports", "fg": 2289 },
+ { "id": "novel_spy", "fg": 2290 },
+ { "id": "novel_swash", "fg": 2291 },
+ { "id": "novel_thriller", "fg": 2292 },
+ { "id": "novel_tragedy", "fg": 2293 },
+ { "id": "novel_war", "fg": 2294 },
+ { "id": "novel_war2", "fg": 2295 },
+ { "id": "novel_western", "fg": 2296 },
{
"id": [
"adv_chemistry",
@@ -2729,7 +2806,7 @@
"modern_tanner",
"repeater_mod_guide"
],
- "fg": 2201
+ "fg": 2263
},
{
"id": [
@@ -2750,7 +2827,7 @@
"textbook_robots",
"textbook_armschina"
],
- "fg": 2208
+ "fg": 2270
},
{
"id": [
@@ -2765,7 +2842,7 @@
"cookbook_daintydishes",
"cookbook_liverforkids"
],
- "fg": 2202
+ "fg": 2264
},
{
"id": [
@@ -2778,7 +2855,7 @@
"recipe_melee",
"recipe_labchem"
],
- "fg": 2206
+ "fg": 2268
},
{
"id": [
@@ -2795,9 +2872,9 @@
"recipe_creepy",
"recipe_maiar"
],
- "fg": 2206
+ "fg": 2268
},
- { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 2205 },
+ { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 2267 },
{
"id": [
"mag_rifle",
@@ -2821,7 +2898,7 @@
"mag_swimming",
"mag_news"
],
- "fg": 2203
+ "fg": 2265
},
{
"id": [
@@ -2838,7 +2915,7 @@
"schematics_searchlight",
"schematics_secubot"
],
- "fg": 2207
+ "fg": 2269
},
{
"id": [
@@ -2859,110 +2936,113 @@
"manual_shotgun",
"manual_fabrication"
],
- "fg": 2204
- },
- { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 2200 },
- { "id": "bottle_twoliter", "fg": 2235 },
- { "id": "bowl_pewter", "fg": 2236 },
- { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 2314 },
- { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 2315 },
- { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 2329 },
- { "id": [ "flour", "bread_flour" ], "fg": 2351 },
- { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 2382 },
- { "id": [ "microscope", "microscope_dissecting" ], "fg": 2376 },
- { "id": "digging_stick", "fg": 2400 },
- { "id": "i_staff", "fg": 2437 },
- { "id": "shock_staff", "fg": 2449 },
- { "id": "q_staff", "fg": 2450 },
- { "id": "scarf_fur", "fg": 2454 },
- { "id": "knit_scarf", "fg": 2438 },
- { "id": "scarf_fur_long", "fg": 2455 },
- { "id": "long_knit_scarf", "fg": 2439 },
- { "id": "long_patchwork_scarf", "fg": 2440 },
- { "id": "scarf_long", "fg": 2456 },
- { "id": "patchwork_scarf", "fg": 2448 },
- { "id": "scarf", "fg": 2453 },
- { "id": "scarf_fur_loose", "fg": 2454 },
- { "id": "knit_scarf_loose", "fg": 2438 },
- { "id": "scarf_fur_long_loose", "fg": 2455 },
- { "id": "long_knit_scarf_loose", "fg": 2439 },
- { "id": "long_patchwork_scarf_loose", "fg": 2440 },
- { "id": "scarf_long_loose", "fg": 2456 },
- { "id": "patchwork_scarf_loose", "fg": 2448 },
- { "id": "scarf_loose", "fg": 2453 },
- { "id": "ceramic_cup", "fg": 2468 },
- { "id": "ceramic_mug", "fg": 2469 },
- { "id": "ceramic_shard", "fg": 2470 },
- { "id": "chain", "fg": 2471 },
- { "id": "clay_lump", "fg": 2474 },
- { "id": "bag_plastic", "fg": 2475 },
- { "id": "bag_zipper", "fg": 2476 },
- { "id": "bottle_glass", "fg": 2477 },
- { "id": "bottle_plastic", "fg": 2478 },
- { "id": "bottle_plastic_small", "fg": 2479 },
- { "id": "box_cigarette", "fg": 2480 },
- { "id": "box_small", "fg": 2481 },
- { "id": "can_drink", "fg": 2482 },
- { "id": "can_drink_unsealed", "fg": 2483 },
- { "id": [ "glass", "base_glass_dish" ], "fg": 2484 },
- { "id": "jar_3l_glass", "fg": 2485 },
- { "id": "jar_3l_glass_sealed", "fg": 2486 },
- { "id": "jar_glass", "fg": 2487 },
- { "id": "jar_glass_sealed", "fg": 2488 },
- { "id": "jug_plastic", "fg": 2489 },
- { "id": "wrapper", "fg": 2490 },
- { "id": "cudgel", "fg": 2491 },
- { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 2550 },
- { "id": [ "waffles", "fruit_waffles" ], "fg": 2554 },
- { "id": [ "cookies", "crackers", "biscuit" ], "fg": 2546 },
- { "id": [ "cake2", "cake3", "space_cake" ], "fg": 2545 },
- { "id": "hinge", "fg": 2598 },
- { "id": "inhaler", "fg": 2599 },
- { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 2600 },
- { "id": "cig_butt", "fg": 2627 },
- { "id": "joint", "fg": 2630 },
- { "id": "joint_lit", "fg": 2631 },
- { "id": "joint_roach", "fg": 2632 },
- { "id": "aspirin", "fg": 2624 },
- { "id": "bandages", "fg": 2625 },
- { "id": "syringe", "fg": 2636 },
- { "id": "antibiotics", "fg": 2621 },
- { "id": "weak_antibiotic", "fg": 2639 },
- { "id": "strong_antibiotic", "fg": 2635 },
- { "id": "vitamins", "fg": 2638 },
- { "id": "gummy_vitamins", "fg": 2628 },
- { "id": "calcium_tablet", "fg": 2626 },
- { "id": "oxycodone", "fg": 2633 },
- { "id": "tramadol", "fg": 2637 },
- { "id": "codeine", "fg": 2652 },
- { "id": "prussian_blue", "fg": 2634 },
- { "id": "iodine", "fg": 2629 },
- { "id": "antiparasitic", "fg": 2623 },
- { "id": "antifungal", "fg": 2622 },
- { "id": "money_bundle", "fg": 2640 },
- { "id": "mp3", "fg": 2641 },
- { "id": "permanent_marker", "fg": 2673 },
- { "id": "pipe", "fg": 2675 },
- { "id": "cu_pipe", "fg": 2674 },
- { "id": "acorns", "fg": 2676 },
- { "id": "chips", "fg": 2680 },
- { "id": "apple", "fg": 2677 },
- { "id": "banana", "fg": 2678 },
- { "id": "broccoli", "fg": 2679 },
- { "id": "corn", "fg": 2681 },
- { "id": "cucumber", "fg": 2682 },
- { "id": "egg_bird", "fg": 2683 },
- { "id": "grapes", "fg": 2684 },
- { "id": "lemon", "fg": 2688 },
- { "id": "onion", "fg": 2689 },
- { "id": "orange", "fg": 2690 },
- { "id": "pear", "fg": 2691 },
- { "id": "potato", "fg": 2692 },
- { "id": "pumpkin", "fg": 2693 },
- { "id": "tomato", "fg": 2696 },
- { "id": "hickory_nut", "fg": 2685 },
- { "id": "hickory_root", "fg": 2686 },
- { "id": "juniper", "fg": 2687 },
+ "fg": 2266
+ },
+ { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 2262 },
+ { "id": "bottle_twoliter", "fg": 2297 },
+ { "id": "bowl_pewter", "fg": 2298 },
+ { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 2389 },
+ { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 2390 },
+ { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 2405 },
+ { "id": [ "flour", "bread_flour" ], "fg": 2428 },
+ { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 2459 },
+ { "id": [ "microscope", "microscope_dissecting" ], "fg": 2453 },
+ { "id": "digging_stick", "fg": 2477 },
+ { "id": "sword_cane", "fg": 2536 },
+ { "id": "hollow_cane", "fg": 2513 },
+ { "id": "cane", "fg": 2539 },
+ { "id": "i_staff", "fg": 2515 },
+ { "id": "shock_staff", "fg": 2528 },
+ { "id": "q_staff", "fg": 2529 },
+ { "id": "scarf_fur", "fg": 2533 },
+ { "id": "knit_scarf", "fg": 2516 },
+ { "id": "scarf_fur_long", "fg": 2534 },
+ { "id": "long_knit_scarf", "fg": 2517 },
+ { "id": "long_patchwork_scarf", "fg": 2518 },
+ { "id": "scarf_long", "fg": 2535 },
+ { "id": "patchwork_scarf", "fg": 2526 },
+ { "id": "scarf", "fg": 2532 },
+ { "id": "scarf_fur_loose", "fg": 2533 },
+ { "id": "knit_scarf_loose", "fg": 2516 },
+ { "id": "scarf_fur_long_loose", "fg": 2534 },
+ { "id": "long_knit_scarf_loose", "fg": 2517 },
+ { "id": "long_patchwork_scarf_loose", "fg": 2518 },
+ { "id": "scarf_long_loose", "fg": 2535 },
+ { "id": "patchwork_scarf_loose", "fg": 2526 },
+ { "id": "scarf_loose", "fg": 2532 },
+ { "id": "ceramic_cup", "fg": 2549 },
+ { "id": "ceramic_mug", "fg": 2550 },
+ { "id": "ceramic_shard", "fg": 2551 },
+ { "id": "chain", "fg": 2552 },
+ { "id": "clay_lump", "fg": 2555 },
+ { "id": "bag_plastic", "fg": 2556 },
+ { "id": "bag_zipper", "fg": 2557 },
+ { "id": "bottle_glass", "fg": 2558 },
+ { "id": "bottle_plastic", "fg": 2559 },
+ { "id": "bottle_plastic_small", "fg": 2560 },
+ { "id": "box_cigarette", "fg": 2561 },
+ { "id": "box_small", "fg": 2562 },
+ { "id": "can_drink", "fg": 2563 },
+ { "id": "can_drink_unsealed", "fg": 2564 },
+ { "id": [ "glass", "base_glass_dish" ], "fg": 2565 },
+ { "id": "jar_3l_glass", "fg": 2566 },
+ { "id": "jar_3l_glass_sealed", "fg": 2567 },
+ { "id": "jar_glass", "fg": 2568 },
+ { "id": "jar_glass_sealed", "fg": 2569 },
+ { "id": "jug_plastic", "fg": 2570 },
+ { "id": "wrapper", "fg": 2571 },
+ { "id": "cudgel", "fg": 2572 },
+ { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 2631 },
+ { "id": [ "waffles", "fruit_waffles" ], "fg": 2635 },
+ { "id": [ "cookies", "crackers", "biscuit" ], "fg": 2627 },
+ { "id": [ "cake2", "cake3", "space_cake" ], "fg": 2626 },
+ { "id": "hinge", "fg": 2679 },
+ { "id": "inhaler", "fg": 2680 },
+ { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 2681 },
+ { "id": "cig_butt", "fg": 2708 },
+ { "id": "joint", "fg": 2711 },
+ { "id": "joint_lit", "fg": 2712 },
+ { "id": "joint_roach", "fg": 2713 },
+ { "id": "aspirin", "fg": 2705 },
+ { "id": "bandages", "fg": 2706 },
+ { "id": "syringe", "fg": 2717 },
+ { "id": "antibiotics", "fg": 2702 },
+ { "id": "weak_antibiotic", "fg": 2720 },
+ { "id": "strong_antibiotic", "fg": 2716 },
+ { "id": "vitamins", "fg": 2719 },
+ { "id": "gummy_vitamins", "fg": 2709 },
+ { "id": "calcium_tablet", "fg": 2707 },
+ { "id": "oxycodone", "fg": 2714 },
+ { "id": "tramadol", "fg": 2718 },
+ { "id": "codeine", "fg": 2733 },
+ { "id": "prussian_blue", "fg": 2715 },
+ { "id": "iodine", "fg": 2710 },
+ { "id": "antiparasitic", "fg": 2704 },
+ { "id": "antifungal", "fg": 2703 },
+ { "id": "money_bundle", "fg": 2721 },
+ { "id": "mp3", "fg": 2722 },
+ { "id": "permanent_marker", "fg": 2757 },
+ { "id": "pipe", "fg": 2759 },
+ { "id": "cu_pipe", "fg": 2758 },
+ { "id": "acorns", "fg": 2760 },
+ { "id": "chips", "fg": 2764 },
+ { "id": "apple", "fg": 2761 },
+ { "id": "banana", "fg": 2762 },
+ { "id": "broccoli", "fg": 2763 },
+ { "id": "corn", "fg": 2765 },
+ { "id": "cucumber", "fg": 2766 },
+ { "id": "egg_bird", "fg": 2767 },
+ { "id": "grapes", "fg": 2768 },
+ { "id": "lemon", "fg": 2772 },
+ { "id": "onion", "fg": 2773 },
+ { "id": "orange", "fg": 2774 },
+ { "id": "pear", "fg": 2775 },
+ { "id": "potato", "fg": 2776 },
+ { "id": "pumpkin", "fg": 2777 },
+ { "id": "tomato", "fg": 2780 },
+ { "id": "hickory_nut", "fg": 2769 },
+ { "id": "hickory_root", "fg": 2770 },
+ { "id": "juniper", "fg": 2771 },
{
"id": [
"seed_hops",
@@ -3030,1437 +3110,1493 @@
"seed_mulberries",
"seed_elderberries"
],
- "fg": 2694
- },
- { "id": "straw_pile", "fg": 2695 },
- { "id": "wheat", "fg": 2697 },
- { "id": "withered", "fg": 2698 },
- { "id": "bee_balm", "fg": 2699 },
- { "id": "carrot_wild", "fg": 2700 },
- { "id": "dogbane", "fg": 2701 },
- { "id": "egg_reptile", "fg": 2702 },
- { "id": "mugwort", "fg": 2703 },
- { "id": "thyme", "fg": 2704 },
- { "id": "veggy_wild", "fg": 2705 },
- { "id": "wild_herbs", "fg": 2706 },
- { "id": "feces_manure", "fg": 2710 },
- { "id": "feces_bird", "fg": 2707 },
- { "id": "feces_cow", "fg": 2708 },
- { "id": "feces_dog", "fg": 2709 },
- { "id": "feces_roach", "fg": 2711 },
- { "id": "fetid_goop", "fg": 2712 },
- { "id": "rag_bloody", "fg": 2714 },
- { "id": "ash", "fg": 2764 },
- { "id": "brick", "fg": 2765 },
- { "id": "scrap", "fg": 2768 },
- { "id": "e_scrap", "fg": 2767 },
- { "id": "steel_chunk", "fg": 2769 },
- { "id": "steel_lump", "fg": 2770 },
- { "id": "wire", "fg": 2771 },
- { "id": "cable", "fg": 2766 },
- { "id": "spring", "fg": 2773 },
- { "id": "survnote", "fg": 2774 },
- { "id": "creepy_doll", "fg": 2775 },
- { "id": "talking_doll", "fg": 2775 },
- { "id": "teapot", "fg": 2777 },
- { "id": "thermometer", "fg": 2778 },
- { "id": "crucible_clay", "fg": 2780 },
- { "id": "flashlight", "fg": 2782 },
- { "id": "heavy_flashlight", "fg": 2785 },
- { "id": "saw", "fg": 2795 },
- { "id": "screwdriver_set", "fg": 2791 },
- { "id": "wrench", "fg": 2796 },
- { "id": "hammer", "fg": 2784 },
- { "id": "hacksaw", "fg": 2783 },
- { "id": "knife_meat_cleaver", "fg": 2790 },
- { "id": "knife_vegetable_cleaver", "fg": 2794 },
+ "fg": 2778
+ },
+ { "id": "straw_pile", "fg": 2779 },
+ { "id": "wheat", "fg": 2781 },
+ { "id": "withered", "fg": 2782 },
+ { "id": "bee_balm", "fg": 2783 },
+ { "id": "carrot_wild", "fg": 2784 },
+ { "id": "dogbane", "fg": 2785 },
+ { "id": "egg_reptile", "fg": 2786 },
+ { "id": "mugwort", "fg": 2787 },
+ { "id": "thyme", "fg": 2788 },
+ { "id": "veggy_wild", "fg": 2789 },
+ { "id": "wild_herbs", "fg": 2790 },
+ { "id": "feces_manure", "fg": 2794 },
+ { "id": "feces_bird", "fg": 2791 },
+ { "id": "feces_cow", "fg": 2792 },
+ { "id": "feces_dog", "fg": 2793 },
+ { "id": "feces_roach", "fg": 2795 },
+ { "id": "fetid_goop", "fg": 2796 },
+ { "id": "rag_bloody", "fg": 2799 },
+ { "id": "ash", "fg": 2849 },
+ { "id": "brick", "fg": 2850 },
+ { "id": "scrap", "fg": 2853 },
+ { "id": "e_scrap", "fg": 2852 },
+ { "id": "steel_chunk", "fg": 2854 },
+ { "id": "steel_lump", "fg": 2855 },
+ { "id": "wire", "fg": 2856 },
+ { "id": "cable", "fg": 2851 },
+ { "id": "spring", "fg": 2858 },
+ { "id": "survnote", "fg": 2859 },
+ { "id": "creepy_doll", "fg": 2860 },
+ { "id": "talking_doll", "fg": 2860 },
+ { "id": "teapot", "fg": 2862 },
+ { "id": "thermometer", "fg": 2863 },
+ { "id": "crucible_clay", "fg": 2865 },
+ { "id": "flashlight", "fg": 2867 },
+ { "id": "heavy_flashlight", "fg": 2870 },
+ { "id": "saw", "fg": 2880 },
+ { "id": "screwdriver_set", "fg": 2876 },
+ { "id": "wrench", "fg": 2881 },
+ { "id": "hammer", "fg": 2869 },
+ { "id": "hacksaw", "fg": 2868 },
+ { "id": "knife_meat_cleaver", "fg": 2875 },
+ { "id": "knife_vegetable_cleaver", "fg": 2879 },
{
"id": "lighter",
- "fg": [ { "weight": 1, "sprite": 2787 }, { "weight": 1, "sprite": 2786 }, { "weight": 1, "sprite": 2788 } ]
- },
- { "id": "makeshift_crowbar", "fg": 2789 },
- { "id": "esbit_stove", "fg": 2781 },
- { "id": "usb_drive", "fg": 2793 },
- { "id": "cash_card", "fg": 2797 },
- { "id": "file", "fg": 2798 },
- { "id": "fp_loyalty_card", "fg": 2799 },
- { "id": "id_industrial", "fg": 2800 },
- { "id": "id_military", "fg": 2801 },
- { "id": "id_science", "fg": 2802 },
- { "id": "bowl_plastic", "fg": 2803 },
- { "id": "cup_plastic", "fg": 2804 },
- { "id": "fork", "fg": 2805 },
- { "id": "knife_butter", "fg": 2806 },
- { "id": "washboard", "fg": 2813 },
- { "id": "wash_kit", "fg": 2812 },
- { "id": "helmet_army", "fg": 2817 },
- { "id": "foodperson_mask", "fg": 2815 },
- { "id": "foodperson_mask_on", "fg": 2816 },
- { "id": "ballistic_vest_esapi", "fg": 2814 },
- { "id": "saddle", "fg": 1760 },
- { "id": "blt", "fg": 1763 },
- { "id": "brain_cooked", "fg": 1764 },
- { "id": "butter", "fg": 1765 },
- { "id": "cheese_fries", "fg": 1766 },
- { "id": "chili", "fg": 1767 },
- { "id": "chilidogs", "fg": 1768 },
- { "id": "cooked_dinner", "fg": 1769 },
- { "id": "corndogs_cooked", "fg": 1770 },
- { "id": "corndogs_frozen", "fg": 1771 },
- { "id": "corndogs_homemade", "fg": 1772 },
- { "id": "cracklins", "fg": 1773 },
- { "id": "currywurst", "fg": 1774 },
- { "id": "demihuman_cooked", "fg": 1775 },
- { "id": "demihuman_lard", "fg": 1776 },
- { "id": "demihuman_stomach_boiled", "fg": 1777 },
- { "id": "demihuman_tallow", "fg": 1778 },
- { "id": "fish_bagel", "fg": 1779 },
- { "id": "fish_cooked", "fg": 1780 },
- { "id": "fish_sandwich", "fg": 1781 },
- { "id": "fresh_fries", "fg": 1782 },
- { "id": "glazed_tenderloin", "fg": 1783 },
- { "id": "homemade_burrito", "fg": 1784 },
- { "id": "hotdogs_campfire", "fg": 1785 },
- { "id": "hotdogs_cooked", "fg": 1786 },
- { "id": "hotdogs_frozen", "fg": 1787 },
- { "id": "hotdogs_newyork", "fg": 1788 },
- { "id": "insta_salad", "fg": 1789 },
- { "id": "junk_burrito", "fg": 1790 },
- { "id": "kidney_cooked", "fg": 1791 },
- { "id": "lard", "fg": 1792 },
- { "id": "lentils_cooked", "fg": 1793 },
- { "id": "liver_cooked", "fg": 1794 },
- { "id": "liver_onion", "fg": 1795 },
- { "id": "lung_cooked", "fg": 1796 },
- { "id": "marshmallow", "fg": 1797 },
- { "id": "meat_cooked", "fg": 1798 },
- { "id": "meat_scrap_cooked", "fg": 1799 },
- { "id": "meat_smoked", "fg": 1800 },
- { "id": "meatball", "fg": 1801 },
- { "id": "meatball_raw", "fg": 1802 },
- { "id": "mutant_human_cooked", "fg": 1803 },
- { "id": "mutant_human_lard", "fg": 1804 },
- { "id": "mutant_human_tallow", "fg": 1805 },
- { "id": "mutant_lard", "fg": 1806 },
- { "id": "mutant_meat_cooked", "fg": 1807 },
- { "id": "mutant_tallow", "fg": 1808 },
- { "id": "nachos", "fg": 1809 },
- { "id": "nachosc", "fg": 1810 },
- { "id": "nachosm", "fg": 1811 },
- { "id": "nachosmc", "fg": 1812 },
- { "id": "nachosv", "fg": 1813 },
- { "id": "nachosvc", "fg": 1814 },
- { "id": "oatmeal_cooked", "fg": 1815 },
- { "id": "oatmeal_deluxe", "fg": 1816 },
- { "id": "pan_roasted_corn", "fg": 1817 },
- { "id": "pizza_supreme", "fg": 1818 },
- { "id": "popcorn", "fg": 1819 },
- { "id": "popcorn2", "fg": 1820 },
- { "id": "quesadilla_cheese", "fg": 1821 },
- { "id": "rice_cooked", "fg": 1822 },
- { "id": "sandwich_cheese", "fg": 1823 },
- { "id": "sandwich_cheese_grilled", "fg": 1824 },
- { "id": "sandwich_cucumber", "fg": 1825 },
- { "id": "sandwich_deluxe", "fg": 1826 },
- { "id": "sandwich_fairy", "fg": 1827 },
- { "id": "sandwich_honey", "fg": 1828 },
- { "id": "sandwich_jam", "fg": 1829 },
- { "id": "sandwich_jam_butter", "fg": 1830 },
- { "id": "sandwich_pb", "fg": 1831 },
- { "id": "sandwich_pbh", "fg": 1832 },
- { "id": "sandwich_pbj", "fg": 1833 },
- { "id": "sandwich_pbm", "fg": 1834 },
- { "id": "sandwich_sauce", "fg": 1835 },
- { "id": "sandwich_t", "fg": 1836 },
- { "id": "sandwich_veggy", "fg": 1837 },
- { "id": "sausage_cooked", "fg": 1838 },
- { "id": "sloppyjoe", "fg": 1839 },
- { "id": "spaghetti_cooked", "fg": 1840 },
- { "id": "stewed_tripe", "fg": 1841 },
- { "id": "stomach_boiled", "fg": 1842 },
- { "id": "stuffed_clams", "fg": 1843 },
- { "id": "sweetbread_cooked", "fg": 1844 },
- { "id": "taco", "fg": 1845 },
- { "id": "tallow", "fg": 1846 },
- { "id": "toasterpastry", "fg": 1847 },
- { "id": "veggy_cooked", "fg": 1848 },
- { "id": "2byarm_guard", "fg": 1849 },
- { "id": "2byshin_guard", "fg": 1850 },
- { "id": "adhesive_bandages", "fg": 1851 },
- { "id": "arm_warmers", "fg": 1852 },
- { "id": "arrowrest", "fg": 1853 },
- { "id": "atomic_light", "fg": 1854 },
- { "id": "atomic_light_off", "fg": 1855 },
- { "id": "b_paint", "fg": 1856 },
- { "id": "bandana", "fg": 1857 },
- { "id": "barley", "fg": 1858 },
- { "id": "birchbark", "fg": 1859 },
- { "id": "boltcutters", "fg": 1860 },
- { "id": "bottle_opener", "fg": 1861 },
- { "id": "bow_saw", "fg": 1862 },
- { "id": "briefcase", "fg": 1863 },
- { "id": "cable_instrument", "fg": 1864 },
- { "id": "cable_xlr", "fg": 1865 },
- { "id": "can_opener", "fg": 1866 },
- { "id": "candle", "fg": 1867 },
- { "id": "candlestick", "fg": 1868 },
- { "id": "cannonball_4lb", "fg": 1869 },
- { "id": "carving_fork", "fg": 1870 },
- { "id": "ceramic_armor", "fg": 1871 },
- { "id": "chain_link", "fg": 1873 },
- { "id": "chainmail_arms", "fg": 1874 },
- { "id": "chainmail_hood", "fg": 1875 },
- { "id": "chainmail_legs", "fg": 1876 },
- { "id": "chainmail_suit_faraday", "fg": 1877 },
- { "id": "charcoal", "fg": 1878 },
- { "id": "chess", "fg": 1879 },
- { "id": "chipper", "fg": 1880 },
- { "id": "chisel", "fg": 1881 },
- { "id": "clarinet", "fg": 1882 },
- { "id": "clay_pot_flower", "fg": 1883 },
- { "id": "colander_steel", "fg": 1884 },
- { "id": "copper_pan", "fg": 1885 },
- { "id": "cordless_drill", "fg": 1886 },
- { "id": "corkscrew", "fg": 1887 },
- { "id": "cow_bell", "fg": 1888 },
- { "id": "crown_golden", "fg": 1889 },
- { "id": "data_card", "fg": 1890 },
- { "id": "diazepam", "fg": 1891 },
- { "id": "dish_towel", "fg": 1892 },
- { "id": "esapi_plate", "fg": 1893 },
- { "id": "esbi_plate", "fg": 1894 },
- { "id": "eyedrops", "fg": 1895 },
- { "id": "feather", "fg": 1897 },
- { "id": "felt_patch", "fg": 1898 },
- { "id": "fishing_hook_basic", "fg": 1899 },
- { "id": "flask_yeast", "fg": 1900 },
- { "id": "flint_steel", "fg": 1901 },
- { "id": "flute", "fg": 1902 },
- { "id": "folding_poncho", "fg": 1903 },
- { "id": "food_processor", "fg": 1904 },
- { "id": "footrags", "fg": 1905 },
- { "id": "footrags_fur", "fg": 1906 },
- { "id": "footrags_leather", "fg": 1907 },
- { "id": "footrags_wool", "fg": 1908 },
- { "id": "frisbee", "fg": 1909 },
- { "id": "g_paint", "fg": 1910 },
- { "id": "garlic", "fg": 1911 },
- { "id": "garlic_press", "fg": 1912 },
- { "id": "glass_plate", "fg": 1913 },
- { "id": "glass_tinted", "fg": 1914 },
- { "id": "glasses_bifocal", "fg": 1915 },
- { "id": "gloves_light", "fg": 1917 },
- { "id": "hair_dryer", "fg": 1918 },
- { "id": "hammer_sledge", "fg": 1919 },
- { "id": "hammer_sledge_engineer", "fg": 1920 },
- { "id": "hammer_sledge_heavy", "fg": 1921 },
- { "id": "hammer_sledge_short", "fg": 1922 },
- { "id": "hand_axe", "fg": 1923 },
- { "id": "hand_drill", "fg": 1924 },
- { "id": "hand_rims", "fg": 1925 },
- { "id": "handrolled_cig", "fg": 1926 },
- { "id": "hard_steel_armor", "fg": 1927 },
- { "id": "harmonica_holder", "fg": 1928 },
- { "id": "hat_chef", "fg": 1929 },
- { "id": "iron_pot", "fg": 1930 },
- { "id": "jack", "fg": 1931 },
- { "id": "jack_makeshift", "fg": 1932 },
- { "id": "jack_small", "fg": 1933 },
- { "id": "kettle", "fg": 1935 },
- { "id": "ladle", "fg": 1936 },
- { "id": "laptop", "fg": 1937 },
- { "id": "leg_warmers", "fg": 1938 },
- { "id": "link_sheet", "fg": 1939 },
- { "id": "machete", "fg": 1940 },
- { "id": "makeshift_bayonet", "fg": 1941 },
- { "id": "makeshift_hammer", "fg": 1942 },
- { "id": "makeshift_machete", "fg": 1943 },
- { "id": "makeshift_stethoscope", "fg": 1944 },
- { "id": "matches", "fg": 1945 },
- { "id": "material_shrd_limestone", "fg": 1946 },
- { "id": "mbag", "fg": 1947 },
- { "id": "mess_tin", "fg": 1948 },
- { "id": "meth", "fg": 1949 },
- { "id": "morphine", "fg": 1950 },
- { "id": "mortar_pestle", "fg": 1951 },
- { "id": "motor_tiny", "fg": 1952 },
- { "id": "mouthpiece", "fg": 1953 },
- { "id": "office_holepunch", "fg": 1954 },
- { "id": "omnicamera", "fg": 1955 },
- { "id": "p_paint", "fg": 1956 },
- { "id": "paint_brush", "fg": 1957 },
- { "id": "pan", "fg": 1958 },
- { "id": "paper", "fg": 1959 },
- { "id": "peeler", "fg": 1960 },
- { "id": "pipe_fittings", "fg": 1961 },
- { "id": "plastic_pot_flower", "fg": 1962 },
- { "id": "pliers", "fg": 1963 },
- { "id": "plums", "fg": 1964 },
- { "id": "pot", "fg": 1965 },
- { "id": "pot_canning", "fg": 1966 },
- { "id": "pot_copper", "fg": 1967 },
- { "id": "pot_helmet", "fg": 1968 },
- { "id": "pot_makeshift", "fg": 1969 },
- { "id": "pot_makeshift_copper", "fg": 1970 },
- { "id": "potato_masher", "fg": 1971 },
- { "id": "r_paint", "fg": 1972 },
- { "id": "reading_light", "fg": 1973 },
- { "id": "reading_light_on", "fg": 1974 },
- { "id": "receiver", "fg": 1975 },
- { "id": "reinforced_glass_pane", "fg": 1976 },
- { "id": "rolling_pin", "fg": 1977 },
- { "id": "scrap_bronze", "fg": 1978 },
- { "id": "scrap_felt", "fg": 1979 },
- { "id": "sheet_felt", "fg": 1980 },
- { "id": "sheet_felt_patchwork", "fg": 1981 },
- { "id": "shocktonfa_off", "fg": 1982 },
- { "id": "shocktonfa_on", "fg": 1983 },
- { "id": "slingpack", "fg": 1984 },
- { "id": "smart_phone", "fg": 1985 },
- { "id": "soap", "fg": 1986 },
- { "id": "solder_wire", "fg": 1987 },
- { "id": "spatula", "fg": 1988 },
- { "id": "spider_egg", "fg": 1989 },
- { "id": "spike", "fg": 1990 },
- { "id": "steel_armor", "fg": 1991 },
- { "id": "steel_pan", "fg": 1992 },
- { "id": "stethoscope", "fg": 1993 },
- { "id": "stock_pot", "fg": 1994 },
- { "id": "swage", "fg": 1996 },
- { "id": "tazer", "fg": 1997 },
- { "id": "teleumbrella", "fg": 1998 },
- { "id": "tinder", "fg": 1999 },
- { "id": "tinderbox", "fg": 2000 },
- { "id": "tinfoil_hat", "fg": 2001 },
- { "id": "tonfa", "fg": 2002 },
- { "id": "tonfa_wood", "fg": 2003 },
- { "id": "tongs", "fg": 2004 },
- { "id": "unfinished_charcoal", "fg": 2005 },
- { "id": "w_paint", "fg": 2006 },
- { "id": "water_purifier", "fg": 2007 },
- { "id": "wheel", "fg": 2008 },
- { "id": "wheel_10", "fg": 2009 },
- { "id": "wheel_barrow", "fg": 2010 },
- { "id": "wheel_bicycle", "fg": 2011 },
- { "id": "wheel_bicycle_or", "fg": 2012 },
- { "id": "wheel_motorbike", "fg": 2013 },
- { "id": "wheel_motorbike_or", "fg": 2014 },
- { "id": "wheel_skate", "fg": 2015 },
- { "id": "wheel_slick", "fg": 2016 },
- { "id": "wheel_small", "fg": 2017 },
- { "id": "wheel_tricycle", "fg": 2018 },
- { "id": "wheel_wheelchair", "fg": 2019 },
- { "id": "whisk", "fg": 2020 },
- { "id": "wine_glass", "fg": 2021 },
- { "id": "wire_barbed", "fg": 2022 },
- { "id": "y_paint", "fg": 2023 },
- { "id": "halligan", "fg": 2024 },
- { "id": "cig", "fg": 2050 },
- { "id": "cig_lit", "fg": 2051 },
- { "id": "copper_ring", "fg": 2052 },
- { "id": "g_shovel", "fg": 2053 },
- { "id": "lsd", "fg": 2054 },
- { "id": "silver_ring", "fg": 2055 },
- { "id": "thermal_mask", "fg": 2056 },
- { "id": "thermal_socks", "fg": 2057 },
- { "id": "tie_clipon", "fg": 2058 },
- { "id": "whistle", "fg": 2059 },
- { "id": "2_shot_special", "fg": 2060 },
- { "id": "90two", "fg": 2061 },
- { "id": "90two40", "fg": 2062 },
- { "id": "LAW_Packed", "fg": 2063 },
- { "id": "af2011a1_38super", "fg": 2065 },
- { "id": "ar_pistol", "fg": 2066 },
- { "id": "ashot", "fg": 2067 },
- { "id": "bfr", "fg": 2068 },
- { "id": "bigun", "fg": 2069 },
- { "id": "bond_410", "fg": 2070 },
- { "id": "bt_apc9k", "fg": 2071 },
- { "id": "colt_army", "fg": 2072 },
- { "id": "colt_navy", "fg": 2073 },
- { "id": "colt_saa", "fg": 2074 },
- { "id": "cop_38", "fg": 2075 },
- { "id": "cz75", "fg": 2076 },
- { "id": "deagle_44", "fg": 2077 },
- { "id": "draco", "fg": 2078 },
- { "id": "flamethrower_crude", "fg": 2079 },
- { "id": "flamethrower_simple", "fg": 2080 },
- { "id": "fn1910", "fg": 2081 },
- { "id": "fn57", "fg": 2082 },
- { "id": "fn_p90", "fg": 2083 },
- { "id": "glock_17", "fg": 2084 },
- { "id": "glock_18c", "fg": 2085 },
- { "id": "glock_19", "fg": 2086 },
- { "id": "glock_20", "fg": 2087 },
- { "id": "glock_20_var_glock_40", "fg": 2088 },
- { "id": "glock_21", "fg": 2089 },
- { "id": "glock_22", "fg": 2090 },
- { "id": "glock_29", "fg": 2091 },
- { "id": "glock_31", "fg": 2092 },
- { "id": "hi_power_40", "fg": 2093 },
- { "id": "hi_power_9mm", "fg": 2094 },
- { "id": "hk_mp5_semi_pistol", "fg": 2096 },
- { "id": "hk_mp7", "fg": 2097 },
- { "id": "hk_ump45", "fg": 2098 },
- { "id": "hptc9", "fg": 2099 },
- { "id": "hptcf380", "fg": 2100 },
- { "id": "kp32", "fg": 2102 },
- { "id": "kp3at", "fg": 2103 },
- { "id": "kpf9", "fg": 2104 },
- { "id": "l_bak_223", "fg": 2105 },
- { "id": "launcher_simple", "fg": 2106 },
- { "id": "lemat_revolver", "fg": 2107 },
- { "id": "m11", "fg": 2108 },
- { "id": "m17", "fg": 2109 },
- { "id": "m18", "fg": 2110 },
- { "id": "m1911-460", "fg": 2111 },
- { "id": "m1911_10", "fg": 2113 },
- { "id": "m1911_var_m1911_MEU", "fg": 2114 },
- { "id": "m320", "fg": 2115 },
- { "id": "m4_carbine_var_m4_cqbr", "fg": 2116 },
- { "id": "m9", "fg": 2117 },
- { "id": "mac_10", "fg": 2118 },
- { "id": "mac_11", "fg": 2119 },
- { "id": "makarov", "fg": 2120 },
- { "id": "mauser_c96", "fg": 2121 },
- { "id": "mauser_m714", "fg": 2122 },
- { "id": "mgl", "fg": 2123 },
- { "id": "minispeargun", "fg": 2124 },
- { "id": "model_10_revolver", "fg": 2125 },
- { "id": "moss_brownie", "fg": 2126 },
- { "id": "nailgun", "fg": 2127 },
- { "id": "nailrifle", "fg": 2128 },
- { "id": "needlepistol", "fg": 2129 },
- { "id": "oa93", "fg": 2130 },
- { "id": "p08", "fg": 2131 },
- { "id": "p220_10", "fg": 2132 },
- { "id": "p226_357sig", "fg": 2133 },
- { "id": "p226_9mm", "fg": 2134 },
- { "id": "p320_357sig", "fg": 2135 },
- { "id": "paintballgun", "fg": 2136 },
- { "id": "pipe_double_shotgun", "fg": 2137 },
- { "id": "pistol_flintlock", "fg": 2138 },
- { "id": "px4", "fg": 2139 },
- { "id": "px4_40", "fg": 2140 },
- { "id": "raging_bull", "fg": 2141 },
- { "id": "raging_judge", "fg": 2142 },
- { "id": "revolver_shotgun", "fg": 2143 },
- { "id": "rm103a_pistol", "fg": 2144 },
- { "id": "rm2000_smg", "fg": 2145 },
- { "id": "rm228", "fg": 2146 },
- { "id": "ruger_lcr_22", "fg": 2147 },
- { "id": "ruger_lcr_38", "fg": 2148 },
- { "id": "ruger_redhawk", "fg": 2149 },
- { "id": "rugerlcp", "fg": 2150 },
- { "id": "sig_40", "fg": 2151 },
- { "id": "sig_mosquito", "fg": 2152 },
- { "id": "sig_p230", "fg": 2153 },
- { "id": "skorpion_61", "fg": 2154 },
- { "id": "smg_40", "fg": 2155 },
- { "id": "smg_45", "fg": 2156 },
- { "id": "sp2022", "fg": 2157 },
- { "id": "streetsweeper", "fg": 2158 },
- { "id": "surv_hand_cannon", "fg": 2159 },
- { "id": "surv_six_shooter", "fg": 2160 },
- { "id": "sw629", "fg": 2161 },
- { "id": "sw_22", "fg": 2162 },
- { "id": "sw_500", "fg": 2163 },
- { "id": "sw_610", "fg": 2164 },
- { "id": "sw_619", "fg": 2165 },
- { "id": "taurus_spectrum", "fg": 2166 },
- { "id": "tec9", "fg": 2167 },
- { "id": "tokarev", "fg": 2168 },
- { "id": "triple_launcher_simple", "fg": 2169 },
- { "id": "unbio_blaster_gun", "fg": 2170 },
- { "id": "usp_45", "fg": 2171 },
- { "id": "usp_45_var_mk23", "fg": 2172 },
- { "id": "usp_9mm", "fg": 2173 },
- { "id": "uzi", "fg": 2174 },
- { "id": "v29", "fg": 2175 },
- { "id": "v29_cheap", "fg": 2176 },
- { "id": "walther_ccp", "fg": 2177 },
- { "id": "walther_p22", "fg": 2178 },
- { "id": "walther_p38", "fg": 2179 },
- { "id": "walther_ppq_40", "fg": 2180 },
- { "id": "walther_ppq_45", "fg": 2181 },
- { "id": "walther_ppq_9mm", "fg": 2182 },
- { "id": "witness_10", "fg": 2183 },
- { "id": "xd_10", "fg": 2184 },
- { "id": "antenna", "fg": 2237 },
- { "id": "badge_deputy", "fg": 2238 },
- { "id": "coconut", "fg": 2239 },
- { "id": "directional_antenna", "fg": 2240 },
- { "id": "halter_top", "fg": 2241 },
- { "id": "hand_crank_charger", "fg": 2242 },
- { "id": "hops", "fg": 2243 },
- { "id": "kidney", "fg": 2244 },
- { "id": "lettuce", "fg": 2245 },
- { "id": "lily_flower", "fg": 2246 },
- { "id": "scorecard", "fg": 2247 },
- { "id": "spinach", "fg": 2248 },
- { "id": "altered_comb", "fg": 2249 },
- { "id": "gasdiscount_gold", "fg": 2250 },
- { "id": "gasdiscount_platinum", "fg": 2251 },
- { "id": "gasdiscount_silver", "fg": 2252 },
- { "id": "gold_hairpin", "fg": 2253 },
- { "id": "nanoskirt", "fg": 2254 },
- { "id": "pearl", "fg": 2255 },
- { "id": "platinum_ring", "fg": 2256 },
- { "id": "skirt_grass", "fg": 2257 },
- { "id": "skirt_leather", "fg": 2258 },
- { "id": "wallet_leather", "fg": 2259 },
- { "id": "copper_necklace", "fg": 2260 },
- { "id": "pearl_collar", "fg": 2261 },
- { "id": "alexandrite_gold_pendant_necklace", "fg": 2262 },
- { "id": "amethyst_gold_pendant_necklace", "fg": 2263 },
- { "id": "aquamarine_gold_pendant_necklace", "fg": 2264 },
- { "id": "blue_topaz_gold_pendant_necklace", "fg": 2265 },
- { "id": "citrine_gold_pendant_necklace", "fg": 2266 },
- { "id": "diamond_gold_pendant_necklace", "fg": 2267 },
- { "id": "emerald_gold_pendant_necklace", "fg": 2268 },
- { "id": "garnet_gold_pendant_necklace", "fg": 2269 },
- { "id": "gold_necklace", "fg": 2270 },
- { "id": "opal_gold_pendant_necklace", "fg": 2271 },
- { "id": "pearl_gold_pendant_necklace", "fg": 2272 },
- { "id": "peridot_gold_pendant_necklace", "fg": 2273 },
- { "id": "ruby_gold_pendant_necklace", "fg": 2274 },
- { "id": "sapphire_gold_pendant_necklace", "fg": 2275 },
- { "id": "tourmaline_gold_pendant_necklace", "fg": 2276 },
- { "id": "alexandrite_platinum_pendant_necklace", "fg": 2277 },
- { "id": "amethyst_platinum_pendant_necklace", "fg": 2278 },
- { "id": "aquamarine_platinum_pendant_necklace", "fg": 2279 },
- { "id": "blue_topaz_platinum_pendant_necklace", "fg": 2280 },
- { "id": "citrine_platinum_pendant_necklace", "fg": 2281 },
- { "id": "diamond_platinum_pendant_necklace", "fg": 2282 },
- { "id": "emerald_platinum_pendant_necklace", "fg": 2283 },
- { "id": "garnet_platinum_pendant_necklace", "fg": 2284 },
- { "id": "opal_platinum_pendant_necklace", "fg": 2285 },
- { "id": "pearl_platinum_pendant_necklace", "fg": 2286 },
- { "id": "peridot_platinum_pendant_necklace", "fg": 2287 },
- { "id": "platinum_necklace", "fg": 2288 },
- { "id": "ruby_platinum_pendant_necklace", "fg": 2289 },
- { "id": "sapphire_platinum_pendant_necklace", "fg": 2290 },
- { "id": "tourmaline_platinum_pendant_necklace", "fg": 2291 },
- { "id": "alexandrite_silver_pendant_necklace", "fg": 2292 },
- { "id": "amethyst_silver_pendant_necklace", "fg": 2293 },
- { "id": "aquamarine_silver_pendant_necklace", "fg": 2294 },
- { "id": "blue_topaz_silver_pendant_necklace", "fg": 2295 },
- { "id": "citrine_silver_pendant_necklace", "fg": 2296 },
- { "id": "diamond_silver_pendant_necklace", "fg": 2297 },
- { "id": "emerald_silver_pendant_necklace", "fg": 2298 },
- { "id": "garnet_silver_pendant_necklace", "fg": 2299 },
- { "id": "opal_silver_pendant_necklace", "fg": 2300 },
- { "id": "pearl_silver_pendant_necklace", "fg": 2301 },
- { "id": "peridot_silver_pendant_necklace", "fg": 2302 },
- { "id": "ruby_silver_pendant_necklace", "fg": 2303 },
- { "id": "sapphire_silver_pendant_necklace", "fg": 2304 },
- { "id": "silver_necklace", "fg": 2305 },
- { "id": "tourmaline_silver_pendant_necklace", "fg": 2306 },
- { "id": "barrette", "fg": 2307 },
- { "id": "cattail_stalk", "fg": 2308 },
- { "id": "golf_tee", "fg": 2309 },
- { "id": "magnifying_glass", "fg": 2310 },
- { "id": "mininuke", "fg": 2311 },
- { "id": "mininuke_act", "fg": 2312 },
- { "id": "rolling_paper", "fg": 2313 },
- { "id": "deck_of_cards", "fg": 2316 },
- { "id": "hairpin", "fg": 2317 },
- { "id": "weed", "fg": 2318 },
- { "id": "ceramic_bowl", "fg": 2319 },
- { "id": "chestrig", "fg": 2320 },
- { "id": "radio_car", "fg": 2321 },
- { "id": "radio_car_box", "fg": 2322 },
- { "id": "radio_car_on", "fg": 2323 },
- { "id": "radio_car_wheel", "fg": 2324 },
- { "id": "radiocontrol", "fg": 2325 },
- { "id": "rc_car_box", "fg": 2326 },
- { "id": "toaster", "fg": 2327 },
- { "id": "xl_chestrig", "fg": 2328 },
- { "id": "alternator_truck", "fg": 2330 },
- { "id": "ammolink", "fg": 2331 },
- { "id": "angle_grinder", "fg": 2332 },
- { "id": "atomic_lamp", "fg": 2333 },
- { "id": "atomic_lamp_off", "fg": 2334 },
- { "id": "barometer", "fg": 2335 },
- { "id": "birdfood", "fg": 2336 },
- { "id": "bismuth", "fg": 2337 },
- { "id": "brick_kiln", "fg": 2338 },
- { "id": "caffeine", "fg": 2339 },
- { "id": "chem_citric_acid", "fg": 2340 },
- { "id": "chem_sulphur", "fg": 2341 },
- { "id": "chunk_sulfur", "fg": 2342 },
- { "id": "circsaw_off", "fg": 2343 },
- { "id": "circsaw_on", "fg": 2344 },
- { "id": "coal_lump", "fg": 2345 },
- { "id": "con_mix", "fg": 2346 },
- { "id": "disc_golf", "fg": 2347 },
- { "id": "drivebelt", "fg": 2348 },
- { "id": "eink_tablet_pc", "fg": 2349 },
- { "id": "flatbread", "fg": 2350 },
- { "id": "gelbox", "fg": 2352 },
- { "id": "generator_7500w", "fg": 2353 },
- { "id": "glowstick", "fg": 2354 },
- { "id": "glowstick_dead", "fg": 2355 },
- { "id": "glowstick_lit", "fg": 2356 },
- { "id": "gold_small", "fg": 2357 },
- { "id": "golf_club", "fg": 2358 },
- { "id": "handflare", "fg": 2359 },
- { "id": "heatpack", "fg": 2360 },
- { "id": "heatpack_used", "fg": 2361 },
- { "id": "hoe", "fg": 2362 },
- { "id": "homeopathic_pills", "fg": 2363 },
- { "id": "horn_bicycle", "fg": 2364 },
- { "id": "jumper_cable", "fg": 2365 },
- { "id": "kiln", "fg": 2366 },
- { "id": "lead", "fg": 2367 },
- { "id": "leather", "fg": 2368 },
- { "id": "lightstrip", "fg": 2369 },
- { "id": "material_aluminium_ingot", "fg": 2370 },
- { "id": "material_limestone", "fg": 2371 },
- { "id": "material_rhodonite", "fg": 2372 },
- { "id": "material_rocksalt", "fg": 2373 },
- { "id": "material_zincite", "fg": 2374 },
- { "id": "metal_smoother", "fg": 2375 },
- { "id": "multitool", "fg": 2377 },
- { "id": "nic_gum", "fg": 2378 },
- { "id": "pencil", "fg": 2379 },
- { "id": "pipe_cleaner", "fg": 2380 },
- { "id": "pipe_glass", "fg": 2381 },
- { "id": "platinum_small", "fg": 2383 },
- { "id": "polisher", "fg": 2384 },
- { "id": "press", "fg": 2385 },
- { "id": "puller", "fg": 2386 },
- { "id": "rake", "fg": 2387 },
- { "id": "razorclaw_roe", "fg": 2388 },
- { "id": "sickle", "fg": 2389 },
- { "id": "silver_small", "fg": 2390 },
- { "id": "small_repairkit", "fg": 2391 },
- { "id": "tanned_hide", "fg": 2392 },
- { "id": "tanned_pelt", "fg": 2393 },
- { "id": "tourist_table", "fg": 2394 },
- { "id": "zinc_metal", "fg": 2395 },
- { "id": "beartrap", "fg": 2396 },
- { "id": "tr_beartrap", "fg": 2397 },
- { "id": "wire_mesh", "fg": 2398 },
- { "id": "cannabis", "fg": 2399 },
- { "id": "dnd_handbook", "fg": 2401 },
- { "id": "holybook_bible1", "fg": 2402 },
- { "id": "holybook_bible3", "fg": 2403 },
- { "id": "l-stick", "fg": 2404 },
- { "id": "l-stick_on", "fg": 2405 },
- { "id": "makarovmag", "fg": 2406 },
- { "id": "manual_brawl", "fg": 2407 },
- { "id": "manual_carpentry", "fg": 2408 },
- { "id": "manual_dodge_kid", "fg": 2409 },
- { "id": "manual_driving", "fg": 2410 },
- { "id": "manual_melee", "fg": 2411 },
- { "id": "philosophy_book", "fg": 2412 },
- { "id": "phonebook", "fg": 2413 },
- { "id": "photo_album", "fg": 2414 },
- { "id": "plastic_bucket", "fg": 2415 },
- { "id": "record_weather", "fg": 2416 },
- { "id": "straw_fedora", "fg": 2417 },
- { "id": "textbook_computer", "fg": 2418 },
- { "id": "textbook_fabrication", "fg": 2419 },
- { "id": "textbook_survival", "fg": 2420 },
- { "id": "water_faucet", "fg": 2421 },
- { "id": "can_food", "fg": 2422 },
- { "id": "can_food_big", "fg": 2423 },
- { "id": "can_food_big_unsealed", "fg": 2424 },
- { "id": "can_food_unsealed", "fg": 2425 },
- { "id": "can_medium", "fg": 2426 },
- { "id": "can_medium_unsealed", "fg": 2427 },
- { "id": "clamp", "fg": 2428 },
- { "id": "crude_picklock", "fg": 2429 },
- { "id": "cured_hide", "fg": 2430 },
- { "id": "cured_pelt", "fg": 2431 },
- { "id": "demihuman_fat", "fg": 2432 },
- { "id": "fat", "fg": 2433 },
- { "id": "fat_tainted", "fg": 2434 },
- { "id": "headscarf", "fg": 2435 },
- { "id": "human_fat", "fg": 2436 },
- { "id": "marloss_scarf", "fg": 2441 },
- { "id": "meat", "fg": 2442 },
- { "id": "meat_tainted", "fg": 2443 },
- { "id": "mutant_fat", "fg": 2444 },
- { "id": "mutant_human_fat", "fg": 2445 },
- { "id": "mutant_human_flesh", "fg": 2446 },
- { "id": "mutant_meat", "fg": 2447 },
- { "id": "raw_fur", "fg": 2451 },
- { "id": "raw_leather", "fg": 2452 },
- { "id": "tanning_hide", "fg": 2457 },
- { "id": "tanning_pelt", "fg": 2458 },
- { "id": "analytical_set_basic", "fg": 2459 },
- { "id": "balance_small", "fg": 2460 },
- { "id": "beaker", "fg": 2461 },
- { "id": "flask_glass", "fg": 2462 },
- { "id": "gradcylinder", "fg": 2463 },
- { "id": "ph_meter", "fg": 2464 },
- { "id": "spectrophotometer", "fg": 2465 },
- { "id": "test_tube", "fg": 2466 },
- { "id": "voltmeter", "fg": 2467 },
- { "id": "acidchitin_piece", "fg": 2472 },
- { "id": "chitin_piece", "fg": 2473 },
- { "id": "alexandrite_gold_earring", "fg": 2492 },
- { "id": "alexandrite_platinum_earring", "fg": 2493 },
- { "id": "alexandrite_silver_earring", "fg": 2494 },
- { "id": "amethyst_gold_earring", "fg": 2495 },
- { "id": "amethyst_platinum_earring", "fg": 2496 },
- { "id": "amethyst_silver_earring", "fg": 2497 },
- { "id": "aquamarine_gold_earring", "fg": 2498 },
- { "id": "aquamarine_platinum_earring", "fg": 2499 },
- { "id": "aquamarine_silver_earring", "fg": 2500 },
- { "id": "bead_ear", "fg": 2501 },
- { "id": "blue_topaz_gold_earring", "fg": 2502 },
- { "id": "blue_topaz_platinum_earring", "fg": 2503 },
- { "id": "blue_topaz_silver_earring", "fg": 2504 },
- { "id": "citrine_gold_earring", "fg": 2505 },
- { "id": "citrine_platinum_earring", "fg": 2506 },
- { "id": "citrine_silver_earring", "fg": 2507 },
- { "id": "copper_ear", "fg": 2508 },
- { "id": "diamond_gold_earring", "fg": 2509 },
- { "id": "diamond_platinum_earring", "fg": 2510 },
- { "id": "diamond_silver_earring", "fg": 2511 },
- { "id": "emerald_gold_earring", "fg": 2512 },
- { "id": "emerald_platinum_earring", "fg": 2513 },
- { "id": "emerald_silver_earring", "fg": 2514 },
- { "id": "garnet_gold_earring", "fg": 2515 },
- { "id": "garnet_platinum_earring", "fg": 2516 },
- { "id": "garnet_silver_earring", "fg": 2517 },
- { "id": "gold_ear", "fg": 2518 },
- { "id": "opal_gold_earring", "fg": 2519 },
- { "id": "opal_platinum_earring", "fg": 2520 },
- { "id": "opal_silver_earring", "fg": 2521 },
- { "id": "pearl_gold_earring", "fg": 2522 },
- { "id": "pearl_platinum_earring", "fg": 2523 },
- { "id": "pearl_silver_earring", "fg": 2524 },
- { "id": "peridot_gold_earring", "fg": 2525 },
- { "id": "peridot_platinum_earring", "fg": 2526 },
- { "id": "peridot_silver_earring", "fg": 2527 },
- { "id": "platinum_ear", "fg": 2528 },
- { "id": "ruby_gold_earring", "fg": 2529 },
- { "id": "ruby_platinum_earring", "fg": 2530 },
- { "id": "ruby_silver_earring", "fg": 2531 },
- { "id": "sapphire_gold_earring", "fg": 2532 },
- { "id": "sapphire_platinum_earring", "fg": 2533 },
- { "id": "sapphire_silver_earring", "fg": 2534 },
- { "id": "silver_ear", "fg": 2535 },
- { "id": "tourmaline_gold_earring", "fg": 2536 },
- { "id": "tourmaline_platinum_earring", "fg": 2537 },
- { "id": "tourmaline_silver_earring", "fg": 2538 },
- { "id": "flaregun", "fg": 2539 },
- { "id": "signal_flare", "fg": 2540 },
- { "id": "bread", "fg": 2541 },
- { "id": "brioche", "fg": 2542 },
- { "id": "brown_bread", "fg": 2543 },
- { "id": "brownie", "fg": 2544 },
- { "id": "cornbread", "fg": 2547 },
- { "id": "jihelucake", "fg": 2548 },
- { "id": "pancakes", "fg": 2549 },
- { "id": "sourdough_bread", "fg": 2551 },
- { "id": "sponge_cake", "fg": 2552 },
- { "id": "tortilla_corn", "fg": 2553 },
- { "id": "wastebread", "fg": 2555 },
- { "id": "airhorn", "fg": 2556 },
- { "id": "aluminum_foil", "fg": 2557 },
- { "id": "bowling_pin", "fg": 2558 },
- { "id": "boxing_gloves", "fg": 2559 },
- { "id": "chopsticks", "fg": 2560 },
- { "id": "comb_pocket", "fg": 2561 },
- { "id": "copper", "fg": 2562 },
- { "id": "eclipse_glasses", "fg": 2563 },
- { "id": "fish", "fg": 2564 },
- { "id": "licorice", "fg": 2565 },
- { "id": "metal_tank", "fg": 2566 },
- { "id": "metal_tank_little", "fg": 2567 },
- { "id": "nanomaterial", "fg": 2568 },
- { "id": "plut_cell", "fg": 2569 },
- { "id": "rebreather_filter", "fg": 2570 },
- { "id": "rock_sock", "fg": 2571 },
- { "id": "rollerskates", "fg": 2572 },
- { "id": "sandpaper", "fg": 2573 },
- { "id": "throwing_stick", "fg": 2574 },
- { "id": "waterproof_gunmod", "fg": 2575 },
- { "id": "circsaw_blade", "fg": 2576 },
- { "id": "mirror", "fg": 2577 },
- { "id": "glass_bowl", "fg": 2578 },
- { "id": "plastic_bowl_kids", "fg": 2579 },
- { "id": "blue_pen", "fg": 2580 },
- { "id": "green_pen", "fg": 2581 },
- { "id": "pen", "fg": 2582 },
- { "id": "red_pen", "fg": 2583 },
- { "id": "soldering_iron", "fg": 2584 },
- { "id": "superglue", "fg": 2585 },
- { "id": "grenade", "fg": 2586 },
- { "id": "grenade_act", "fg": 2587 },
- { "id": "grenade_emp", "fg": 2588 },
- { "id": "grenade_emp_act", "fg": 2589 },
- { "id": "grenade_inc", "fg": 2590 },
- { "id": "grenade_inc_act", "fg": 2591 },
- { "id": "pipebomb", "fg": 2592 },
- { "id": "pipebomb_act", "fg": 2593 },
- { "id": "scrambler", "fg": 2594 },
- { "id": "scrambler_act", "fg": 2595 },
- { "id": "smokebomb", "fg": 2596 },
- { "id": "smokebomb_act", "fg": 2597 },
- { "id": "boxcutter", "fg": 2601 },
- { "id": "copper_knife", "fg": 2602 },
- { "id": "diveknife", "fg": 2603 },
- { "id": "knife_bread", "fg": 2604 },
- { "id": "knife_butcher", "fg": 2605 },
- { "id": "knife_carving", "fg": 2606 },
- { "id": "knife_chef", "fg": 2607 },
- { "id": "knife_combat", "fg": 2608 },
- { "id": "knife_folding", "fg": 2609 },
- { "id": "knife_hunting", "fg": 2610 },
- { "id": "knife_paring", "fg": 2611 },
- { "id": "knife_rambo", "fg": 2612 },
- { "id": "knife_rm42", "fg": 2613 },
- { "id": "knife_steak", "fg": 2614 },
- { "id": "knife_swissarmy", "fg": 2615 },
- { "id": "knife_trench", "fg": 2616 },
- { "id": "makeshift_knife", "fg": 2617 },
- { "id": "pockknife", "fg": 2618 },
- { "id": "primitive_knife", "fg": 2619 },
- { "id": "throwing_knife", "fg": 2620 },
- { "id": "baseball", "fg": 2642 },
- { "id": "basketball", "fg": 2643 },
- { "id": "battery_car", "fg": 2644 },
- { "id": "beach_volleyball", "fg": 2645 },
- { "id": "bowling_ball", "fg": 2646 },
- { "id": "cell_phone", "fg": 2647 },
- { "id": "cell_phone_flashlight", "fg": 2648 },
- { "id": "cigar", "fg": 2649 },
- { "id": "cigar_butt", "fg": 2650 },
- { "id": "cigar_lit", "fg": 2651 },
- { "id": "ear_plugs", "fg": 2653 },
- { "id": "fiddlehead_boiled", "fg": 2654 },
- { "id": "fiddlehead_raw", "fg": 2655 },
- { "id": "fiddlehead_sauteed", "fg": 2656 },
- { "id": "flask_hip", "fg": 2657 },
- { "id": "football", "fg": 2658 },
- { "id": "golf_ball", "fg": 2659 },
- { "id": "holo_sight", "fg": 2660 },
- { "id": "indoor_volleyball", "fg": 2661 },
- { "id": "misc_repairkit", "fg": 2662 },
- { "id": "mre_beef_box", "fg": 2663 },
- { "id": "peephole", "fg": 2664 },
- { "id": "portable_game", "fg": 2665 },
- { "id": "puck", "fg": 2666 },
- { "id": "purse", "fg": 2667 },
- { "id": "suppressor", "fg": 2668 },
- { "id": "tourniquet_upper", "fg": 2669 },
- { "id": "two_way_radio", "fg": 2670 },
- { "id": "wristwatch", "fg": 2671 },
- { "id": "mushroom", "fg": 2672 },
- { "id": "rad_badge", "fg": 2713 },
- { "id": "alexandrite_gold_ring", "fg": 2715 },
- { "id": "alexandrite_platinum_ring", "fg": 2716 },
- { "id": "alexandrite_silver_ring", "fg": 2717 },
- { "id": "amethyst_gold_ring", "fg": 2718 },
- { "id": "amethyst_platinum_ring", "fg": 2719 },
- { "id": "amethyst_silver_ring", "fg": 2720 },
- { "id": "aquamarine_gold_ring", "fg": 2721 },
- { "id": "aquamarine_platinum_ring", "fg": 2722 },
- { "id": "aquamarine_silver_ring", "fg": 2723 },
- { "id": "blue_topaz_gold_ring", "fg": 2724 },
- { "id": "blue_topaz_platinum_ring", "fg": 2725 },
- { "id": "blue_topaz_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": "garnet_gold_ring", "fg": 2736 },
- { "id": "garnet_platinum_ring", "fg": 2737 },
- { "id": "garnet_silver_ring", "fg": 2738 },
- { "id": "gold_ring", "fg": 2739 },
- { "id": "opal_gold_ring", "fg": 2740 },
- { "id": "opal_platinum_ring", "fg": 2741 },
- { "id": "opal_silver_ring", "fg": 2742 },
- { "id": "pearl_gold_ring", "fg": 2743 },
- { "id": "pearl_platinum_ring", "fg": 2744 },
- { "id": "pearl_silver_ring", "fg": 2745 },
- { "id": "peridot_gold_ring", "fg": 2746 },
- { "id": "peridot_platinum_ring", "fg": 2747 },
- { "id": "peridot_silver_ring", "fg": 2748 },
- { "id": "ring_engagement", "fg": 2749 },
- { "id": "ruby_gold_ring", "fg": 2750 },
- { "id": "ruby_platinum_ring", "fg": 2751 },
- { "id": "ruby_silver_ring", "fg": 2752 },
- { "id": "sapphire_gold_ring", "fg": 2753 },
- { "id": "sapphire_platinum_ring", "fg": 2754 },
- { "id": "sapphire_silver_ring", "fg": 2755 },
- { "id": "tourmaline_gold_ring", "fg": 2756 },
- { "id": "tourmaline_platinum_ring", "fg": 2757 },
- { "id": "tourmaline_silver_ring", "fg": 2758 },
- { "id": "pebble", "fg": 2759 },
- { "id": "pebble_clay", "fg": 2760 },
- { "id": "rock", "fg": 2761 },
- { "id": "rock_flaking", "fg": 2762 },
- { "id": "rock_large", "fg": 2763 },
- { "id": "slime_scrap", "fg": 2772 },
- { "id": "clay_teapot", "fg": 2776 },
- { "id": "crucible", "fg": 2779 },
- { "id": "tire_iron", "fg": 2792 },
- { "id": "towel", "fg": 2807 },
- { "id": "towel_soiled", "fg": 2808 },
- { "id": "towel_wet", "fg": 2809 },
- { "id": "battery_charger", "fg": 2810 },
- { "id": "recharge_station", "fg": 2811 }
+ "fg": [ { "weight": 1, "sprite": 2872 }, { "weight": 1, "sprite": 2871 }, { "weight": 1, "sprite": 2873 } ]
+ },
+ { "id": "makeshift_crowbar", "fg": 2874 },
+ { "id": "esbit_stove", "fg": 2866 },
+ { "id": "usb_drive", "fg": 2878 },
+ { "id": "cash_card", "fg": 2882 },
+ { "id": "file", "fg": 2883 },
+ { "id": "fp_loyalty_card", "fg": 2884 },
+ { "id": "id_industrial", "fg": 2885 },
+ { "id": "id_military", "fg": 2886 },
+ { "id": "id_science", "fg": 2887 },
+ { "id": "bowl_plastic", "fg": 2888 },
+ { "id": "cup_plastic", "fg": 2889 },
+ { "id": "fork", "fg": 2890 },
+ { "id": "knife_butter", "fg": 2891 },
+ { "id": "washboard", "fg": 2898 },
+ { "id": "wash_kit", "fg": 2897 },
+ { "id": "helmet_army", "fg": 2903 },
+ { "id": "foodperson_mask", "fg": 2901 },
+ { "id": "foodperson_mask_on", "fg": 2902 },
+ { "id": "ballistic_vest_esapi", "fg": 2900 },
+ { "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_tin", "fg": 2011 },
+ { "id": "meth", "fg": 2012 },
+ { "id": "morphine", "fg": 2013 },
+ { "id": "mortar_pestle", "fg": 2014 },
+ { "id": "motor_tiny", "fg": 2015 },
+ { "id": "mouthpiece", "fg": 2016 },
+ { "id": "office_holepunch", "fg": 2017 },
+ { "id": "omnicamera", "fg": 2018 },
+ { "id": "p_paint", "fg": 2019 },
+ { "id": "paint_brush", "fg": 2020 },
+ { "id": "pan", "fg": 2021 },
+ { "id": "paper", "fg": 2022 },
+ { "id": "peeler", "fg": 2023 },
+ { "id": "pipe_fittings", "fg": 2024 },
+ { "id": "plastic_pot_flower", "fg": 2025 },
+ { "id": "pliers", "fg": 2026 },
+ { "id": "plums", "fg": 2027 },
+ { "id": "pot", "fg": 2028 },
+ { "id": "pot_canning", "fg": 2029 },
+ { "id": "pot_copper", "fg": 2030 },
+ { "id": "pot_helmet", "fg": 2031 },
+ { "id": "pot_makeshift", "fg": 2032 },
+ { "id": "pot_makeshift_copper", "fg": 2033 },
+ { "id": "potato_masher", "fg": 2034 },
+ { "id": "r_paint", "fg": 2035 },
+ { "id": "reading_light", "fg": 2036 },
+ { "id": "reading_light_on", "fg": 2037 },
+ { "id": "receiver", "fg": 2038 },
+ { "id": "reinforced_glass_pane", "fg": 2039 },
+ { "id": "rolling_pin", "fg": 2040 },
+ { "id": "scrap_bronze", "fg": 2041 },
+ { "id": "scrap_felt", "fg": 2042 },
+ { "id": "sheet_felt", "fg": 2043 },
+ { "id": "sheet_felt_patchwork", "fg": 2044 },
+ { "id": "shocktonfa_off", "fg": 2045 },
+ { "id": "shocktonfa_on", "fg": 2046 },
+ { "id": "slingpack", "fg": 2047 },
+ { "id": "smart_phone", "fg": 2048 },
+ { "id": "soap", "fg": 2049 },
+ { "id": "solder_wire", "fg": 2050 },
+ { "id": "spatula", "fg": 2051 },
+ { "id": "spider_egg", "fg": 2052 },
+ { "id": "spike", "fg": 2053 },
+ { "id": "steel_armor", "fg": 2054 },
+ { "id": "steel_pan", "fg": 2055 },
+ { "id": "stethoscope", "fg": 2056 },
+ { "id": "stock_pot", "fg": 2057 },
+ { "id": "swage", "fg": 2059 },
+ { "id": "tazer", "fg": 2060 },
+ { "id": "teleumbrella", "fg": 2061 },
+ { "id": "tinder", "fg": 2062 },
+ { "id": "tinderbox", "fg": 2063 },
+ { "id": "tinfoil_hat", "fg": 2064 },
+ { "id": "tonfa", "fg": 2065 },
+ { "id": "tonfa_wood", "fg": 2066 },
+ { "id": "tongs", "fg": 2067 },
+ { "id": "unfinished_charcoal", "fg": 2068 },
+ { "id": "w_paint", "fg": 2069 },
+ { "id": "water_purifier", "fg": 2070 },
+ { "id": "wheel", "fg": 2071 },
+ { "id": "wheel_10", "fg": 2072 },
+ { "id": "wheel_barrow", "fg": 2073 },
+ { "id": "wheel_bicycle", "fg": 2074 },
+ { "id": "wheel_bicycle_or", "fg": 2075 },
+ { "id": "wheel_motorbike", "fg": 2076 },
+ { "id": "wheel_motorbike_or", "fg": 2077 },
+ { "id": "wheel_skate", "fg": 2078 },
+ { "id": "wheel_slick", "fg": 2079 },
+ { "id": "wheel_small", "fg": 2080 },
+ { "id": "wheel_tricycle", "fg": 2081 },
+ { "id": "wheel_wheelchair", "fg": 2082 },
+ { "id": "whisk", "fg": 2083 },
+ { "id": "wine_glass", "fg": 2084 },
+ { "id": "wire_barbed", "fg": 2085 },
+ { "id": "y_paint", "fg": 2086 },
+ { "id": "halligan", "fg": 2087 },
+ { "id": "cig", "fg": 2113 },
+ { "id": "cig_lit", "fg": 2114 },
+ { "id": "copper_ring", "fg": 2115 },
+ { "id": "g_shovel", "fg": 2116 },
+ { "id": "lsd", "fg": 2117 },
+ { "id": "silver_ring", "fg": 2118 },
+ { "id": "thermal_mask", "fg": 2119 },
+ { "id": "thermal_socks", "fg": 2120 },
+ { "id": "tie_clipon", "fg": 2121 },
+ { "id": "whistle", "fg": 2122 },
+ { "id": "2_shot_special", "fg": 2123 },
+ { "id": "LAW_Packed", "fg": 2125 },
+ { "id": "af2011a1_38super", "fg": 2127 },
+ { "id": "ar_pistol", "fg": 2128 },
+ { "id": "ashot", "fg": 2129 },
+ { "id": "bfr", "fg": 2130 },
+ { "id": "bigun", "fg": 2131 },
+ { "id": "bond_410", "fg": 2132 },
+ { "id": "bt_apc9k", "fg": 2133 },
+ { "id": "colt_army", "fg": 2134 },
+ { "id": "colt_navy", "fg": 2135 },
+ { "id": "colt_saa", "fg": 2136 },
+ { "id": "cop_38", "fg": 2137 },
+ { "id": "cz75", "fg": 2138 },
+ { "id": "deagle_44", "fg": 2139 },
+ { "id": "draco", "fg": 2140 },
+ { "id": "flamethrower_crude", "fg": 2141 },
+ { "id": "flamethrower_simple", "fg": 2142 },
+ { "id": "fn1910", "fg": 2143 },
+ { "id": "fn57", "fg": 2144 },
+ { "id": "fn_p90", "fg": 2145 },
+ { "id": "glock_17", "fg": 2146 },
+ { "id": "glock_18c", "fg": 2147 },
+ { "id": "glock_19", "fg": 2148 },
+ { "id": "glock_20", "fg": 2149 },
+ { "id": "glock_20_var_glock_40", "fg": 2150 },
+ { "id": "glock_21", "fg": 2151 },
+ { "id": "glock_22", "fg": 2152 },
+ { "id": "glock_29", "fg": 2153 },
+ { "id": "glock_31", "fg": 2154 },
+ { "id": "hi_power_40", "fg": 2155 },
+ { "id": "hi_power_9mm", "fg": 2156 },
+ { "id": "hk_mp5_semi_pistol", "fg": 2158 },
+ { "id": "hk_mp7", "fg": 2159 },
+ { "id": "hk_ump45", "fg": 2160 },
+ { "id": "hptc9", "fg": 2161 },
+ { "id": "hptcf380", "fg": 2162 },
+ { "id": "kp32", "fg": 2164 },
+ { "id": "kp3at", "fg": 2165 },
+ { "id": "kpf9", "fg": 2166 },
+ { "id": "l_bak_223", "fg": 2167 },
+ { "id": "launcher_simple", "fg": 2168 },
+ { "id": "lemat_revolver", "fg": 2169 },
+ { "id": "m11", "fg": 2170 },
+ { "id": "m17", "fg": 2171 },
+ { "id": "m18", "fg": 2172 },
+ { "id": "m1911-460", "fg": 2173 },
+ { "id": "m1911_10", "fg": 2175 },
+ { "id": "m1911_var_m1911_MEU", "fg": 2176 },
+ { "id": "m320", "fg": 2177 },
+ { "id": "m4_carbine_var_m4_cqbr", "fg": 2178 },
+ { "id": "m9", "fg": 2179 },
+ { "id": "mac_10", "fg": 2180 },
+ { "id": "mac_11", "fg": 2181 },
+ { "id": "makarov", "fg": 2182 },
+ { "id": "mauser_c96", "fg": 2183 },
+ { "id": "mauser_m714", "fg": 2184 },
+ { "id": "mgl", "fg": 2185 },
+ { "id": "minispeargun", "fg": 2186 },
+ { "id": "model_10_revolver", "fg": 2187 },
+ { "id": "moss_brownie", "fg": 2188 },
+ { "id": "nailgun", "fg": 2189 },
+ { "id": "nailrifle", "fg": 2190 },
+ { "id": "needlepistol", "fg": 2191 },
+ { "id": "oa93", "fg": 2192 },
+ { "id": "p08", "fg": 2193 },
+ { "id": "p220_10", "fg": 2194 },
+ { "id": "p226_357sig", "fg": 2195 },
+ { "id": "p226_9mm", "fg": 2196 },
+ { "id": "p320_357sig", "fg": 2197 },
+ { "id": "paintballgun", "fg": 2198 },
+ { "id": "pipe_double_shotgun", "fg": 2199 },
+ { "id": "pistol_flintlock", "fg": 2200 },
+ { "id": "px4", "fg": 2201 },
+ { "id": "px4_40", "fg": 2202 },
+ { "id": "raging_bull", "fg": 2203 },
+ { "id": "raging_judge", "fg": 2204 },
+ { "id": "revolver_shotgun", "fg": 2205 },
+ { "id": "rm103a_pistol", "fg": 2206 },
+ { "id": "rm2000_smg", "fg": 2207 },
+ { "id": "rm228", "fg": 2208 },
+ { "id": "ruger_lcr_22", "fg": 2209 },
+ { "id": "ruger_lcr_38", "fg": 2210 },
+ { "id": "ruger_redhawk", "fg": 2211 },
+ { "id": "rugerlcp", "fg": 2212 },
+ { "id": "sig_40", "fg": 2213 },
+ { "id": "sig_mosquito", "fg": 2214 },
+ { "id": "sig_p230", "fg": 2215 },
+ { "id": "skorpion_61", "fg": 2216 },
+ { "id": "smg_40", "fg": 2217 },
+ { "id": "smg_45", "fg": 2218 },
+ { "id": "sp2022", "fg": 2219 },
+ { "id": "streetsweeper", "fg": 2220 },
+ { "id": "surv_hand_cannon", "fg": 2221 },
+ { "id": "surv_six_shooter", "fg": 2222 },
+ { "id": "sw629", "fg": 2223 },
+ { "id": "sw_22", "fg": 2224 },
+ { "id": "sw_500", "fg": 2225 },
+ { "id": "sw_610", "fg": 2226 },
+ { "id": "sw_619", "fg": 2227 },
+ { "id": "taurus_spectrum", "fg": 2228 },
+ { "id": "tec9", "fg": 2229 },
+ { "id": "tokarev", "fg": 2230 },
+ { "id": "triple_launcher_simple", "fg": 2231 },
+ { "id": "unbio_blaster_gun", "fg": 2232 },
+ { "id": "usp_45", "fg": 2233 },
+ { "id": "usp_45_var_mk23", "fg": 2234 },
+ { "id": "usp_9mm", "fg": 2235 },
+ { "id": "uzi", "fg": 2236 },
+ { "id": "v29", "fg": 2237 },
+ { "id": "v29_cheap", "fg": 2238 },
+ { "id": "walther_ccp", "fg": 2239 },
+ { "id": "walther_p22", "fg": 2240 },
+ { "id": "walther_p38", "fg": 2241 },
+ { "id": "walther_ppq_40", "fg": 2242 },
+ { "id": "walther_ppq_45", "fg": 2243 },
+ { "id": "walther_ppq_9mm", "fg": 2244 },
+ { "id": "witness_10", "fg": 2245 },
+ { "id": "xd_10", "fg": 2246 },
+ { "id": "button_plastic", "fg": 2299 },
+ { "id": "button_steel", "fg": 2300 },
+ { "id": "button_wood", "fg": 2301 },
+ { "id": "antenna", "fg": 2302 },
+ { "id": "badge_deputy", "fg": 2303 },
+ { "id": "coconut", "fg": 2304 },
+ { "id": "directional_antenna", "fg": 2305 },
+ { "id": "halter_top", "fg": 2306 },
+ { "id": "hand_crank_charger", "fg": 2307 },
+ { "id": "hops", "fg": 2308 },
+ { "id": "kidney", "fg": 2309 },
+ { "id": "lettuce", "fg": 2310 },
+ { "id": "lily_flower", "fg": 2311 },
+ { "id": "scorecard", "fg": 2312 },
+ { "id": "spinach", "fg": 2313 },
+ { "id": "altered_comb", "fg": 2314 },
+ { "id": "gasdiscount_gold", "fg": 2315 },
+ { "id": "gasdiscount_platinum", "fg": 2316 },
+ { "id": "gasdiscount_silver", "fg": 2317 },
+ { "id": "gold_hairpin", "fg": 2318 },
+ { "id": "nanoskirt", "fg": 2319 },
+ { "id": "pearl", "fg": 2320 },
+ { "id": "platinum_ring", "fg": 2321 },
+ { "id": "skirt_grass", "fg": 2322 },
+ { "id": "skirt_leather", "fg": 2323 },
+ { "id": "wallet_leather", "fg": 2324 },
+ { "id": "copper_necklace", "fg": 2325 },
+ { "id": "pearl_collar", "fg": 2326 },
+ { "id": "alexandrite_gold_pendant_necklace", "fg": 2327 },
+ { "id": "amethyst_gold_pendant_necklace", "fg": 2328 },
+ { "id": "aquamarine_gold_pendant_necklace", "fg": 2329 },
+ { "id": "blue_topaz_gold_pendant_necklace", "fg": 2330 },
+ { "id": "citrine_gold_pendant_necklace", "fg": 2331 },
+ { "id": "diamond_gold_pendant_necklace", "fg": 2332 },
+ { "id": "emerald_gold_pendant_necklace", "fg": 2333 },
+ { "id": "garnet_gold_pendant_necklace", "fg": 2334 },
+ { "id": "gold_necklace", "fg": 2335 },
+ { "id": "opal_gold_pendant_necklace", "fg": 2336 },
+ { "id": "pearl_gold_pendant_necklace", "fg": 2337 },
+ { "id": "peridot_gold_pendant_necklace", "fg": 2338 },
+ { "id": "ruby_gold_pendant_necklace", "fg": 2339 },
+ { "id": "sapphire_gold_pendant_necklace", "fg": 2340 },
+ { "id": "tourmaline_gold_pendant_necklace", "fg": 2341 },
+ { "id": "alexandrite_platinum_pendant_necklace", "fg": 2342 },
+ { "id": "amethyst_platinum_pendant_necklace", "fg": 2343 },
+ { "id": "aquamarine_platinum_pendant_necklace", "fg": 2344 },
+ { "id": "blue_topaz_platinum_pendant_necklace", "fg": 2345 },
+ { "id": "citrine_platinum_pendant_necklace", "fg": 2346 },
+ { "id": "diamond_platinum_pendant_necklace", "fg": 2347 },
+ { "id": "emerald_platinum_pendant_necklace", "fg": 2348 },
+ { "id": "garnet_platinum_pendant_necklace", "fg": 2349 },
+ { "id": "opal_platinum_pendant_necklace", "fg": 2350 },
+ { "id": "pearl_platinum_pendant_necklace", "fg": 2351 },
+ { "id": "peridot_platinum_pendant_necklace", "fg": 2352 },
+ { "id": "platinum_necklace", "fg": 2353 },
+ { "id": "ruby_platinum_pendant_necklace", "fg": 2354 },
+ { "id": "sapphire_platinum_pendant_necklace", "fg": 2355 },
+ { "id": "tourmaline_platinum_pendant_necklace", "fg": 2356 },
+ { "id": "alexandrite_silver_pendant_necklace", "fg": 2357 },
+ { "id": "amethyst_silver_pendant_necklace", "fg": 2358 },
+ { "id": "aquamarine_silver_pendant_necklace", "fg": 2359 },
+ { "id": "blue_topaz_silver_pendant_necklace", "fg": 2360 },
+ { "id": "citrine_silver_pendant_necklace", "fg": 2361 },
+ { "id": "diamond_silver_pendant_necklace", "fg": 2362 },
+ { "id": "emerald_silver_pendant_necklace", "fg": 2363 },
+ { "id": "garnet_silver_pendant_necklace", "fg": 2364 },
+ { "id": "opal_silver_pendant_necklace", "fg": 2365 },
+ { "id": "pearl_silver_pendant_necklace", "fg": 2366 },
+ { "id": "peridot_silver_pendant_necklace", "fg": 2367 },
+ { "id": "ruby_silver_pendant_necklace", "fg": 2368 },
+ { "id": "sapphire_silver_pendant_necklace", "fg": 2369 },
+ { "id": "silver_necklace", "fg": 2370 },
+ { "id": "tourmaline_silver_pendant_necklace", "fg": 2371 },
+ { "id": "alder_bark", "fg": 2372 },
+ { "id": "barrette", "fg": 2373 },
+ { "id": "birchbark", "fg": 2374 },
+ { "id": "caff_gum", "fg": 2375 },
+ { "id": "cattail_stalk", "fg": 2376 },
+ { "id": "golf_tee", "fg": 2377 },
+ { "id": "gum", "fg": 2378 },
+ { "id": "hand_pump", "fg": 2379 },
+ { "id": "ifak_pouch", "fg": 2380 },
+ { "id": "knitting_needles", "fg": 2381 },
+ { "id": "lasagne", "fg": 2382 },
+ { "id": "magnifying_glass", "fg": 2383 },
+ { "id": "mininuke", "fg": 2384 },
+ { "id": "mininuke_act", "fg": 2385 },
+ { "id": "net", "fg": 2386 },
+ { "id": "rolling_paper", "fg": 2387 },
+ { "id": "tanbark", "fg": 2388 },
+ { "id": "willowbark", "fg": 2391 },
+ { "id": "deck_of_cards", "fg": 2392 },
+ { "id": "hairpin", "fg": 2393 },
+ { "id": "weed", "fg": 2394 },
+ { "id": "ceramic_bowl", "fg": 2395 },
+ { "id": "chestrig", "fg": 2396 },
+ { "id": "radio_car", "fg": 2397 },
+ { "id": "radio_car_box", "fg": 2398 },
+ { "id": "radio_car_on", "fg": 2399 },
+ { "id": "radio_car_wheel", "fg": 2400 },
+ { "id": "radiocontrol", "fg": 2401 },
+ { "id": "rc_car_box", "fg": 2402 },
+ { "id": "toaster", "fg": 2403 },
+ { "id": "xl_chestrig", "fg": 2404 },
+ { "id": "alternator_truck", "fg": 2406 },
+ { "id": "ammolink", "fg": 2407 },
+ { "id": "angle_grinder", "fg": 2408 },
+ { "id": "atomic_lamp", "fg": 2409 },
+ { "id": "atomic_lamp_off", "fg": 2410 },
+ { "id": "barometer", "fg": 2411 },
+ { "id": "birdfood", "fg": 2412 },
+ { "id": "bismuth", "fg": 2413 },
+ { "id": "brick_kiln", "fg": 2414 },
+ { "id": "caffeine", "fg": 2415 },
+ { "id": "camera", "fg": 2416 },
+ { "id": "chem_citric_acid", "fg": 2417 },
+ { "id": "chem_sulphur", "fg": 2418 },
+ { "id": "chunk_sulfur", "fg": 2419 },
+ { "id": "circsaw_off", "fg": 2420 },
+ { "id": "circsaw_on", "fg": 2421 },
+ { "id": "coal_lump", "fg": 2422 },
+ { "id": "con_mix", "fg": 2423 },
+ { "id": "disc_golf", "fg": 2424 },
+ { "id": "drivebelt", "fg": 2425 },
+ { "id": "eink_tablet_pc", "fg": 2426 },
+ { "id": "flatbread", "fg": 2427 },
+ { "id": "gelbox", "fg": 2429 },
+ { "id": "generator_7500w", "fg": 2430 },
+ { "id": "glowstick", "fg": 2431 },
+ { "id": "glowstick_dead", "fg": 2432 },
+ { "id": "glowstick_lit", "fg": 2433 },
+ { "id": "gold_small", "fg": 2434 },
+ { "id": "golf_club", "fg": 2435 },
+ { "id": "handflare", "fg": 2436 },
+ { "id": "heatpack", "fg": 2437 },
+ { "id": "heatpack_used", "fg": 2438 },
+ { "id": "hoe", "fg": 2439 },
+ { "id": "homeopathic_pills", "fg": 2440 },
+ { "id": "horn_bicycle", "fg": 2441 },
+ { "id": "jumper_cable", "fg": 2442 },
+ { "id": "kiln", "fg": 2443 },
+ { "id": "lead", "fg": 2444 },
+ { "id": "leather", "fg": 2445 },
+ { "id": "lightstrip", "fg": 2446 },
+ { "id": "material_aluminium_ingot", "fg": 2447 },
+ { "id": "material_limestone", "fg": 2448 },
+ { "id": "material_rhodonite", "fg": 2449 },
+ { "id": "material_rocksalt", "fg": 2450 },
+ { "id": "material_zincite", "fg": 2451 },
+ { "id": "metal_smoother", "fg": 2452 },
+ { "id": "multitool", "fg": 2454 },
+ { "id": "nic_gum", "fg": 2455 },
+ { "id": "pencil", "fg": 2456 },
+ { "id": "pipe_cleaner", "fg": 2457 },
+ { "id": "pipe_glass", "fg": 2458 },
+ { "id": "platinum_small", "fg": 2460 },
+ { "id": "polisher", "fg": 2461 },
+ { "id": "press", "fg": 2462 },
+ { "id": "puller", "fg": 2463 },
+ { "id": "rake", "fg": 2464 },
+ { "id": "razorclaw_roe", "fg": 2465 },
+ { "id": "sickle", "fg": 2466 },
+ { "id": "silver_small", "fg": 2467 },
+ { "id": "small_repairkit", "fg": 2468 },
+ { "id": "tanned_hide", "fg": 2469 },
+ { "id": "tanned_pelt", "fg": 2470 },
+ { "id": "tourist_table", "fg": 2471 },
+ { "id": "zinc_metal", "fg": 2472 },
+ { "id": "beartrap", "fg": 2473 },
+ { "id": "tr_beartrap", "fg": 2474 },
+ { "id": "wire_mesh", "fg": 2475 },
+ { "id": "cannabis", "fg": 2476 },
+ { "id": "dnd_handbook", "fg": 2478 },
+ { "id": "holybook_bible1", "fg": 2479 },
+ { "id": "holybook_bible3", "fg": 2480 },
+ { "id": "l-stick", "fg": 2481 },
+ { "id": "l-stick_on", "fg": 2482 },
+ { "id": "makarovmag", "fg": 2483 },
+ { "id": "manual_brawl", "fg": 2484 },
+ { "id": "manual_carpentry", "fg": 2485 },
+ { "id": "manual_dodge_kid", "fg": 2486 },
+ { "id": "manual_driving", "fg": 2487 },
+ { "id": "manual_melee", "fg": 2488 },
+ { "id": "philosophy_book", "fg": 2489 },
+ { "id": "phonebook", "fg": 2490 },
+ { "id": "photo_album", "fg": 2491 },
+ { "id": "plastic_bucket", "fg": 2492 },
+ { "id": "record_weather", "fg": 2493 },
+ { "id": "straw_fedora", "fg": 2494 },
+ { "id": "textbook_computer", "fg": 2495 },
+ { "id": "textbook_fabrication", "fg": 2496 },
+ { "id": "textbook_survival", "fg": 2497 },
+ { "id": "water_faucet", "fg": 2498 },
+ { "id": "can_food", "fg": 2499 },
+ { "id": "can_food_big", "fg": 2500 },
+ { "id": "can_food_big_unsealed", "fg": 2501 },
+ { "id": "can_food_unsealed", "fg": 2502 },
+ { "id": "can_medium", "fg": 2503 },
+ { "id": "can_medium_unsealed", "fg": 2504 },
+ { "id": "clamp", "fg": 2505 },
+ { "id": "crude_picklock", "fg": 2506 },
+ { "id": "cured_hide", "fg": 2507 },
+ { "id": "cured_pelt", "fg": 2508 },
+ { "id": "demihuman_fat", "fg": 2509 },
+ { "id": "fat", "fg": 2510 },
+ { "id": "fat_tainted", "fg": 2511 },
+ { "id": "headscarf", "fg": 2512 },
+ { "id": "human_fat", "fg": 2514 },
+ { "id": "marloss_scarf", "fg": 2519 },
+ { "id": "meat", "fg": 2520 },
+ { "id": "meat_tainted", "fg": 2521 },
+ { "id": "mutant_fat", "fg": 2522 },
+ { "id": "mutant_human_fat", "fg": 2523 },
+ { "id": "mutant_human_flesh", "fg": 2524 },
+ { "id": "mutant_meat", "fg": 2525 },
+ { "id": "pipe_tobacco", "fg": 2527 },
+ { "id": "raw_fur", "fg": 2530 },
+ { "id": "raw_leather", "fg": 2531 },
+ { "id": "tanning_hide", "fg": 2537 },
+ { "id": "tanning_pelt", "fg": 2538 },
+ { "id": "analytical_set_basic", "fg": 2540 },
+ { "id": "balance_small", "fg": 2541 },
+ { "id": "beaker", "fg": 2542 },
+ { "id": "flask_glass", "fg": 2543 },
+ { "id": "gradcylinder", "fg": 2544 },
+ { "id": "ph_meter", "fg": 2545 },
+ { "id": "spectrophotometer", "fg": 2546 },
+ { "id": "test_tube", "fg": 2547 },
+ { "id": "voltmeter", "fg": 2548 },
+ { "id": "acidchitin_piece", "fg": 2553 },
+ { "id": "chitin_piece", "fg": 2554 },
+ { "id": "alexandrite_gold_earring", "fg": 2573 },
+ { "id": "alexandrite_platinum_earring", "fg": 2574 },
+ { "id": "alexandrite_silver_earring", "fg": 2575 },
+ { "id": "amethyst_gold_earring", "fg": 2576 },
+ { "id": "amethyst_platinum_earring", "fg": 2577 },
+ { "id": "amethyst_silver_earring", "fg": 2578 },
+ { "id": "aquamarine_gold_earring", "fg": 2579 },
+ { "id": "aquamarine_platinum_earring", "fg": 2580 },
+ { "id": "aquamarine_silver_earring", "fg": 2581 },
+ { "id": "bead_ear", "fg": 2582 },
+ { "id": "blue_topaz_gold_earring", "fg": 2583 },
+ { "id": "blue_topaz_platinum_earring", "fg": 2584 },
+ { "id": "blue_topaz_silver_earring", "fg": 2585 },
+ { "id": "citrine_gold_earring", "fg": 2586 },
+ { "id": "citrine_platinum_earring", "fg": 2587 },
+ { "id": "citrine_silver_earring", "fg": 2588 },
+ { "id": "copper_ear", "fg": 2589 },
+ { "id": "diamond_gold_earring", "fg": 2590 },
+ { "id": "diamond_platinum_earring", "fg": 2591 },
+ { "id": "diamond_silver_earring", "fg": 2592 },
+ { "id": "emerald_gold_earring", "fg": 2593 },
+ { "id": "emerald_platinum_earring", "fg": 2594 },
+ { "id": "emerald_silver_earring", "fg": 2595 },
+ { "id": "garnet_gold_earring", "fg": 2596 },
+ { "id": "garnet_platinum_earring", "fg": 2597 },
+ { "id": "garnet_silver_earring", "fg": 2598 },
+ { "id": "gold_ear", "fg": 2599 },
+ { "id": "opal_gold_earring", "fg": 2600 },
+ { "id": "opal_platinum_earring", "fg": 2601 },
+ { "id": "opal_silver_earring", "fg": 2602 },
+ { "id": "pearl_gold_earring", "fg": 2603 },
+ { "id": "pearl_platinum_earring", "fg": 2604 },
+ { "id": "pearl_silver_earring", "fg": 2605 },
+ { "id": "peridot_gold_earring", "fg": 2606 },
+ { "id": "peridot_platinum_earring", "fg": 2607 },
+ { "id": "peridot_silver_earring", "fg": 2608 },
+ { "id": "platinum_ear", "fg": 2609 },
+ { "id": "ruby_gold_earring", "fg": 2610 },
+ { "id": "ruby_platinum_earring", "fg": 2611 },
+ { "id": "ruby_silver_earring", "fg": 2612 },
+ { "id": "sapphire_gold_earring", "fg": 2613 },
+ { "id": "sapphire_platinum_earring", "fg": 2614 },
+ { "id": "sapphire_silver_earring", "fg": 2615 },
+ { "id": "silver_ear", "fg": 2616 },
+ { "id": "tourmaline_gold_earring", "fg": 2617 },
+ { "id": "tourmaline_platinum_earring", "fg": 2618 },
+ { "id": "tourmaline_silver_earring", "fg": 2619 },
+ { "id": "flaregun", "fg": 2620 },
+ { "id": "signal_flare", "fg": 2621 },
+ { "id": "bread", "fg": 2622 },
+ { "id": "brioche", "fg": 2623 },
+ { "id": "brown_bread", "fg": 2624 },
+ { "id": "brownie", "fg": 2625 },
+ { "id": "cornbread", "fg": 2628 },
+ { "id": "jihelucake", "fg": 2629 },
+ { "id": "pancakes", "fg": 2630 },
+ { "id": "sourdough_bread", "fg": 2632 },
+ { "id": "sponge_cake", "fg": 2633 },
+ { "id": "tortilla_corn", "fg": 2634 },
+ { "id": "wastebread", "fg": 2636 },
+ { "id": "airhorn", "fg": 2637 },
+ { "id": "aluminum_foil", "fg": 2638 },
+ { "id": "bowling_pin", "fg": 2639 },
+ { "id": "boxing_gloves", "fg": 2640 },
+ { "id": "chopsticks", "fg": 2641 },
+ { "id": "comb_pocket", "fg": 2642 },
+ { "id": "copper", "fg": 2643 },
+ { "id": "eclipse_glasses", "fg": 2644 },
+ { "id": "fish", "fg": 2645 },
+ { "id": "licorice", "fg": 2646 },
+ { "id": "metal_tank", "fg": 2647 },
+ { "id": "metal_tank_little", "fg": 2648 },
+ { "id": "nanomaterial", "fg": 2649 },
+ { "id": "plut_cell", "fg": 2650 },
+ { "id": "rebreather_filter", "fg": 2651 },
+ { "id": "rock_sock", "fg": 2652 },
+ { "id": "rollerskates", "fg": 2653 },
+ { "id": "sandpaper", "fg": 2654 },
+ { "id": "throwing_stick", "fg": 2655 },
+ { "id": "waterproof_gunmod", "fg": 2656 },
+ { "id": "circsaw_blade", "fg": 2657 },
+ { "id": "mirror", "fg": 2658 },
+ { "id": "glass_bowl", "fg": 2659 },
+ { "id": "plastic_bowl_kids", "fg": 2660 },
+ { "id": "blue_pen", "fg": 2661 },
+ { "id": "green_pen", "fg": 2662 },
+ { "id": "pen", "fg": 2663 },
+ { "id": "red_pen", "fg": 2664 },
+ { "id": "soldering_iron", "fg": 2665 },
+ { "id": "superglue", "fg": 2666 },
+ { "id": "grenade", "fg": 2667 },
+ { "id": "grenade_act", "fg": 2668 },
+ { "id": "grenade_emp", "fg": 2669 },
+ { "id": "grenade_emp_act", "fg": 2670 },
+ { "id": "grenade_inc", "fg": 2671 },
+ { "id": "grenade_inc_act", "fg": 2672 },
+ { "id": "pipebomb", "fg": 2673 },
+ { "id": "pipebomb_act", "fg": 2674 },
+ { "id": "scrambler", "fg": 2675 },
+ { "id": "scrambler_act", "fg": 2676 },
+ { "id": "smokebomb", "fg": 2677 },
+ { "id": "smokebomb_act", "fg": 2678 },
+ { "id": "boxcutter", "fg": 2682 },
+ { "id": "copper_knife", "fg": 2683 },
+ { "id": "diveknife", "fg": 2684 },
+ { "id": "knife_bread", "fg": 2685 },
+ { "id": "knife_butcher", "fg": 2686 },
+ { "id": "knife_carving", "fg": 2687 },
+ { "id": "knife_chef", "fg": 2688 },
+ { "id": "knife_combat", "fg": 2689 },
+ { "id": "knife_folding", "fg": 2690 },
+ { "id": "knife_hunting", "fg": 2691 },
+ { "id": "knife_paring", "fg": 2692 },
+ { "id": "knife_rambo", "fg": 2693 },
+ { "id": "knife_rm42", "fg": 2694 },
+ { "id": "knife_steak", "fg": 2695 },
+ { "id": "knife_swissarmy", "fg": 2696 },
+ { "id": "knife_trench", "fg": 2697 },
+ { "id": "makeshift_knife", "fg": 2698 },
+ { "id": "pockknife", "fg": 2699 },
+ { "id": "primitive_knife", "fg": 2700 },
+ { "id": "throwing_knife", "fg": 2701 },
+ { "id": "baseball", "fg": 2723 },
+ { "id": "basketball", "fg": 2724 },
+ { "id": "battery_car", "fg": 2725 },
+ { "id": "beach_volleyball", "fg": 2726 },
+ { "id": "bowling_ball", "fg": 2727 },
+ { "id": "cell_phone", "fg": 2728 },
+ { "id": "cell_phone_flashlight", "fg": 2729 },
+ { "id": "cigar", "fg": 2730 },
+ { "id": "cigar_butt", "fg": 2731 },
+ { "id": "cigar_lit", "fg": 2732 },
+ { "id": "ear_plugs", "fg": 2734 },
+ { "id": "fiddlehead_boiled", "fg": 2735 },
+ { "id": "fiddlehead_raw", "fg": 2736 },
+ { "id": "fiddlehead_sauteed", "fg": 2737 },
+ { "id": "flask_hip", "fg": 2738 },
+ { "id": "football", "fg": 2739 },
+ { "id": "golf_ball", "fg": 2740 },
+ { "id": "holo_sight", "fg": 2741 },
+ { "id": "indoor_volleyball", "fg": 2742 },
+ { "id": "misc_repairkit", "fg": 2743 },
+ { "id": "mre_beef_box", "fg": 2744 },
+ { "id": "peephole", "fg": 2745 },
+ { "id": "portable_game", "fg": 2746 },
+ { "id": "puck", "fg": 2747 },
+ { "id": "purse", "fg": 2748 },
+ { "id": "suppressor", "fg": 2749 },
+ { "id": "tourniquet_upper", "fg": 2750 },
+ { "id": "two_way_radio", "fg": 2751 },
+ { "id": "wristwatch", "fg": 2752 },
+ { "id": "mushroom", "fg": 2753 },
+ { "id": "cable_speaker", "fg": 2754 },
+ { "id": "headphones_circumaural", "fg": 2755 },
+ { "id": "microphone_xlr_generic", "fg": 2756 },
+ { "id": "popcan_stove", "fg": 2797 },
+ { "id": "rad_badge", "fg": 2798 },
+ { "id": "alexandrite_gold_ring", "fg": 2800 },
+ { "id": "alexandrite_platinum_ring", "fg": 2801 },
+ { "id": "alexandrite_silver_ring", "fg": 2802 },
+ { "id": "amethyst_gold_ring", "fg": 2803 },
+ { "id": "amethyst_platinum_ring", "fg": 2804 },
+ { "id": "amethyst_silver_ring", "fg": 2805 },
+ { "id": "aquamarine_gold_ring", "fg": 2806 },
+ { "id": "aquamarine_platinum_ring", "fg": 2807 },
+ { "id": "aquamarine_silver_ring", "fg": 2808 },
+ { "id": "blue_topaz_gold_ring", "fg": 2809 },
+ { "id": "blue_topaz_platinum_ring", "fg": 2810 },
+ { "id": "blue_topaz_silver_ring", "fg": 2811 },
+ { "id": "citrine_gold_ring", "fg": 2812 },
+ { "id": "citrine_platinum_ring", "fg": 2813 },
+ { "id": "citrine_silver_ring", "fg": 2814 },
+ { "id": "diamond_platinum_ring", "fg": 2815 },
+ { "id": "diamond_ring", "fg": 2816 },
+ { "id": "diamond_silver_ring", "fg": 2817 },
+ { "id": "emerald_gold_ring", "fg": 2818 },
+ { "id": "emerald_platinum_ring", "fg": 2819 },
+ { "id": "emerald_silver_ring", "fg": 2820 },
+ { "id": "garnet_gold_ring", "fg": 2821 },
+ { "id": "garnet_platinum_ring", "fg": 2822 },
+ { "id": "garnet_silver_ring", "fg": 2823 },
+ { "id": "gold_ring", "fg": 2824 },
+ { "id": "opal_gold_ring", "fg": 2825 },
+ { "id": "opal_platinum_ring", "fg": 2826 },
+ { "id": "opal_silver_ring", "fg": 2827 },
+ { "id": "pearl_gold_ring", "fg": 2828 },
+ { "id": "pearl_platinum_ring", "fg": 2829 },
+ { "id": "pearl_silver_ring", "fg": 2830 },
+ { "id": "peridot_gold_ring", "fg": 2831 },
+ { "id": "peridot_platinum_ring", "fg": 2832 },
+ { "id": "peridot_silver_ring", "fg": 2833 },
+ { "id": "ring_engagement", "fg": 2834 },
+ { "id": "ruby_gold_ring", "fg": 2835 },
+ { "id": "ruby_platinum_ring", "fg": 2836 },
+ { "id": "ruby_silver_ring", "fg": 2837 },
+ { "id": "sapphire_gold_ring", "fg": 2838 },
+ { "id": "sapphire_platinum_ring", "fg": 2839 },
+ { "id": "sapphire_silver_ring", "fg": 2840 },
+ { "id": "tourmaline_gold_ring", "fg": 2841 },
+ { "id": "tourmaline_platinum_ring", "fg": 2842 },
+ { "id": "tourmaline_silver_ring", "fg": 2843 },
+ { "id": "pebble", "fg": 2844 },
+ { "id": "pebble_clay", "fg": 2845 },
+ { "id": "rock", "fg": 2846 },
+ { "id": "rock_flaking", "fg": 2847 },
+ { "id": "rock_large", "fg": 2848 },
+ { "id": "slime_scrap", "fg": 2857 },
+ { "id": "clay_teapot", "fg": 2861 },
+ { "id": "crucible", "fg": 2864 },
+ { "id": "tire_iron", "fg": 2877 },
+ { "id": "towel", "fg": 2892 },
+ { "id": "towel_soiled", "fg": 2893 },
+ { "id": "towel_wet", "fg": 2894 },
+ { "id": "battery_charger", "fg": 2895 },
+ { "id": "recharge_station", "fg": 2896 },
+ { "id": "wax", "fg": 2899 }
]
},
{
"file": "normal.png",
- "//": "range 2832 to 5871",
+ "//": "range 2912 to 6047",
"tiles": [
{
"id": "fd_acid",
- "fg": 2850,
+ "fg": 2930,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"animated": true,
"fg": [
- { "weight": 8, "sprite": 2835 },
- { "weight": 8, "sprite": 2851 },
- { "weight": 8, "sprite": 2867 },
- { "weight": 8, "sprite": 2883 },
- { "weight": 8, "sprite": 2899 },
{ "weight": 8, "sprite": 2915 },
{ "weight": 8, "sprite": 2931 },
- { "weight": 8, "sprite": 2947 }
+ { "weight": 8, "sprite": 2947 },
+ { "weight": 8, "sprite": 2963 },
+ { "weight": 8, "sprite": 2979 },
+ { "weight": 8, "sprite": 2995 },
+ { "weight": 8, "sprite": 3011 },
+ { "weight": 8, "sprite": 3027 }
]
},
{
"id": "corner",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 2837, 2839, 2838, 2836 ] },
- { "weight": 8, "sprite": [ 2853, 2855, 2854, 2852 ] },
- { "weight": 8, "sprite": [ 2869, 2871, 2870, 2868 ] },
- { "weight": 8, "sprite": [ 2885, 2887, 2886, 2884 ] },
- { "weight": 8, "sprite": [ 2901, 2903, 2902, 2900 ] },
{ "weight": 8, "sprite": [ 2917, 2919, 2918, 2916 ] },
{ "weight": 8, "sprite": [ 2933, 2935, 2934, 2932 ] },
- { "weight": 8, "sprite": [ 2949, 2951, 2950, 2948 ] }
+ { "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 ] }
]
},
{
"id": "t_connection",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 2847, 2849, 2848, 2846 ] },
- { "weight": 8, "sprite": [ 2863, 2865, 2864, 2862 ] },
- { "weight": 8, "sprite": [ 2879, 2881, 2880, 2878 ] },
- { "weight": 8, "sprite": [ 2895, 2897, 2896, 2894 ] },
- { "weight": 8, "sprite": [ 2911, 2913, 2912, 2910 ] },
{ "weight": 8, "sprite": [ 2927, 2929, 2928, 2926 ] },
{ "weight": 8, "sprite": [ 2943, 2945, 2944, 2942 ] },
- { "weight": 8, "sprite": [ 2959, 2961, 2960, 2958 ] }
+ { "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 ] }
]
},
{
"id": "edge",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 2841, 2840 ] },
- { "weight": 8, "sprite": [ 2857, 2856 ] },
- { "weight": 8, "sprite": [ 2873, 2872 ] },
- { "weight": 8, "sprite": [ 2889, 2888 ] },
- { "weight": 8, "sprite": [ 2905, 2904 ] },
{ "weight": 8, "sprite": [ 2921, 2920 ] },
{ "weight": 8, "sprite": [ 2937, 2936 ] },
- { "weight": 8, "sprite": [ 2953, 2952 ] }
+ { "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 ] }
]
},
{
"id": "end_piece",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 2843, 2845, 2844, 2842 ] },
- { "weight": 8, "sprite": [ 2859, 2861, 2860, 2858 ] },
- { "weight": 8, "sprite": [ 2875, 2877, 2876, 2874 ] },
- { "weight": 8, "sprite": [ 2891, 2893, 2892, 2890 ] },
- { "weight": 8, "sprite": [ 2907, 2909, 2908, 2906 ] },
{ "weight": 8, "sprite": [ 2923, 2925, 2924, 2922 ] },
{ "weight": 8, "sprite": [ 2939, 2941, 2940, 2938 ] },
- { "weight": 8, "sprite": [ 2955, 2957, 2956, 2954 ] }
+ { "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 ] }
]
},
{
"id": "unconnected",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 2850, 2850 ] },
- { "weight": 8, "sprite": [ 2866, 2866 ] },
- { "weight": 8, "sprite": [ 2882, 2882 ] },
- { "weight": 8, "sprite": [ 2898, 2898 ] },
- { "weight": 8, "sprite": [ 2914, 2914 ] },
{ "weight": 8, "sprite": [ 2930, 2930 ] },
{ "weight": 8, "sprite": [ 2946, 2946 ] },
- { "weight": 8, "sprite": [ 2962, 2962 ] }
+ { "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 ] }
]
}
]
},
{
"id": "fd_bile",
- "fg": 2978,
+ "fg": 3058,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2963 },
- { "id": "corner", "fg": [ 2965, 2967, 2966, 2964 ] },
- { "id": "t_connection", "fg": [ 2975, 2977, 2976, 2974 ] },
- { "id": "edge", "fg": [ 2969, 2968 ] },
- { "id": "end_piece", "fg": [ 2971, 2973, 2972, 2970 ] },
- { "id": "unconnected", "fg": [ 2978, 2978 ] }
+ { "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": "fd_sludge",
- "fg": 2994,
+ "fg": 3106,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2979 },
- { "id": "corner", "fg": [ 2981, 2983, 2982, 2980 ] },
- { "id": "t_connection", "fg": [ 2991, 2993, 2992, 2990 ] },
- { "id": "edge", "fg": [ 2985, 2984 ] },
- { "id": "end_piece", "fg": [ 2987, 2989, 2988, 2986 ] },
- { "id": "unconnected", "fg": [ 2994, 2994 ] }
+ {
+ "id": "center",
+ "fg": [ { "weight": 1, "sprite": 3059 }, { "weight": 1, "sprite": 3075 }, { "weight": 1, "sprite": 3091 } ]
+ },
+ {
+ "id": "corner",
+ "fg": [
+ { "weight": 1, "sprite": [ 3061, 3063, 3062, 3060 ] },
+ { "weight": 1, "sprite": [ 3077, 3079, 3078, 3076 ] },
+ { "weight": 1, "sprite": [ 3093, 3095, 3094, 3092 ] }
+ ]
+ },
+ {
+ "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 ] }
+ ]
+ },
+ {
+ "id": "edge",
+ "fg": [
+ { "weight": 1, "sprite": [ 3065, 3064 ] },
+ { "weight": 1, "sprite": [ 3081, 3080 ] },
+ { "weight": 1, "sprite": [ 3097, 3096 ] }
+ ]
+ },
+ {
+ "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 ] }
+ ]
+ },
+ {
+ "id": "unconnected",
+ "fg": [
+ { "weight": 1, "sprite": [ 3074, 3074 ] },
+ { "weight": 1, "sprite": [ 3090, 3090 ] },
+ { "weight": 1, "sprite": [ 3106, 3106 ] }
+ ]
+ }
]
},
- { "id": "f_plant_seed", "fg": 3004, "rotates": false },
- { "id": "f_plant_seedling", "fg": 3005, "rotates": false },
- { "id": "f_plant_mature", "fg": 3003, "rotates": false },
- { "id": "f_plant_harvest", "fg": 3002, "rotates": false },
- { "id": "tr_rollmat", "fg": 3007 },
- { "id": "tr_fur_rollmat", "fg": 3006 },
- { "id": "f_air_conditioner", "fg": 3008 },
- { "id": "f_armchair", "rotates": true, "fg": [ 3011, 3012, 3010, 3009 ] },
- { "id": "f_ash", "fg": 3013 },
- { "id": "f_barricade_road", "fg": 3014 },
+ { "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": 3120 },
+ { "id": "f_armchair", "rotates": true, "fg": [ 3123, 3124, 3122, 3121 ] },
+ { "id": "f_ash", "fg": 3125 },
+ { "id": "f_barricade_road", "fg": 3126 },
{
"id": "f_bathtub",
"multitile": true,
- "fg": 3030,
+ "fg": 3142,
"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, 3030 ] }
+ { "id": "center", "fg": 3127 },
+ { "id": "corner", "fg": [ 3129, 3131, 3130, 3128 ] },
+ { "id": "t_connection", "fg": [ 3139, 3141, 3140, 3138 ] },
+ { "id": "edge", "fg": [ 3133, 3132 ] },
+ { "id": "end_piece", "fg": [ 3135, 3137, 3136, 3134 ] },
+ { "id": "unconnected", "fg": [ 3142, 3142 ] }
]
},
{
"id": "f_bed",
"multitile": true,
- "fg": 3048,
+ "fg": 3160,
"additional_tiles": [
- { "id": "center", "fg": 3033 },
- { "id": "corner", "fg": [ 3035, 3037, 3036, 3034 ] },
- { "id": "t_connection", "fg": [ 3045, 3047, 3046, 3044 ] },
- { "id": "edge", "fg": [ 3039, 3038 ] },
- { "id": "end_piece", "fg": [ 3041, 3043, 3042, 3040 ] },
- { "id": "unconnected", "fg": [ 3048, 3048 ] }
+ { "id": "center", "fg": 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": "f_bench",
"multitile": true,
- "fg": 3064,
+ "fg": 3176,
"additional_tiles": [
- { "id": "center", "fg": 3049 },
- { "id": "corner", "fg": [ 3051, 3053, 3052, 3050 ] },
- { "id": "t_connection", "fg": [ 3061, 3063, 3062, 3060 ] },
- { "id": "edge", "fg": [ 3055, 3054 ] },
- { "id": "end_piece", "fg": [ 3057, 3059, 3058, 3056 ] },
- { "id": "unconnected", "fg": [ 3064, 3064 ] }
+ { "id": "center", "fg": 3161 },
+ { "id": "corner", "fg": [ 3163, 3165, 3164, 3162 ] },
+ { "id": "t_connection", "fg": [ 3173, 3175, 3174, 3172 ] },
+ { "id": "edge", "fg": [ 3167, 3166 ] },
+ { "id": "end_piece", "fg": [ 3169, 3171, 3170, 3168 ] },
+ { "id": "unconnected", "fg": [ 3176, 3176 ] }
]
},
- { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 3066 }, { "weight": 2, "sprite": 3067 } ] },
- { "id": "f_boulder_medium", "fg": 3068 },
- { "id": "f_boulder_small", "fg": 3069 },
- { "id": "f_generator_broken", "fg": 3070 },
- { "id": "t_generator_broken", "fg": 3070, "bg": 4546 },
- { "id": "f_bulletin", "fg": 3071 },
- { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 3072 },
- { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 3073 },
+ { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 3178 }, { "weight": 2, "sprite": 3179 } ] },
+ { "id": "f_boulder_medium", "fg": 3180 },
+ { "id": "f_boulder_small", "fg": 3181 },
+ { "id": "f_generator_broken", "fg": 3182 },
+ { "id": "t_generator_broken", "fg": 3182, "bg": 4709 },
+ { "id": "f_bulletin", "fg": 3183 },
+ { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 3184 },
+ { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 3185 },
{
"id": [ "f_canvas_wall", "f_large_canvas_wall" ],
"multitile": true,
- "fg": 3089,
+ "fg": 3201,
"additional_tiles": [
- { "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": "center", "fg": 3186 },
+ { "id": "corner", "fg": [ 3188, 3190, 3189, 3187 ] },
+ { "id": "t_connection", "fg": [ 3198, 3200, 3199, 3197 ] },
+ { "id": "edge", "fg": [ 3192, 3191 ] },
+ { "id": "end_piece", "fg": [ 3194, 3196, 3195, 3193 ] },
+ { "id": "unconnected", "fg": 3201 }
]
},
- { "id": "f_cardboard_box", "fg": 3090 },
- { "id": "f_centrifuge", "fg": 3091 },
- { "id": "t_centrifuge", "fg": 3091, "bg": 4791 },
- { "id": "f_chair", "rotates": true, "fg": [ 3094, 3095, 3093, 3092 ] },
- { "id": "f_chamomile", "fg": 3096 },
- { "id": "f_compact_ASRG_containment", "fg": 3098 },
+ { "id": "f_cardboard_box", "fg": 3202 },
+ { "id": "f_centrifuge", "fg": 3203 },
+ { "id": "t_centrifuge", "fg": 3203, "bg": 4954 },
+ { "id": "f_chair", "rotates": true, "fg": [ 3206, 3207, 3205, 3204 ] },
+ { "id": "f_chamomile", "fg": 3208 },
+ { "id": "f_compact_ASRG_containment", "fg": 3210 },
{
"id": "f_counter",
"multitile": true,
- "fg": 3114,
+ "fg": 3226,
"additional_tiles": [
- { "id": "center", "fg": 3099 },
- { "id": "corner", "fg": [ 3101, 3103, 3102, 3100 ] },
- { "id": "t_connection", "fg": [ 3111, 3113, 3112, 3110 ] },
- { "id": "edge", "fg": [ 3105, 3104 ] },
- { "id": "end_piece", "fg": [ 3107, 3109, 3108, 3106 ] },
- { "id": "unconnected", "fg": [ 3114, 3114 ] }
+ { "id": "center", "fg": 3211 },
+ { "id": "corner", "fg": [ 3213, 3215, 3214, 3212 ] },
+ { "id": "t_connection", "fg": [ 3223, 3225, 3224, 3222 ] },
+ { "id": "edge", "fg": [ 3217, 3216 ] },
+ { "id": "end_piece", "fg": [ 3219, 3221, 3220, 3218 ] },
+ { "id": "unconnected", "fg": [ 3226, 3226 ] }
]
},
{
"id": "f_cupboard",
"multitile": true,
- "fg": 3130,
+ "fg": 3242,
"additional_tiles": [
- { "id": "center", "fg": 3115 },
- { "id": "corner", "fg": [ 3117, 3119, 3118, 3116 ] },
- { "id": "t_connection", "fg": [ 3127, 3129, 3128, 3126 ] },
- { "id": "edge", "fg": [ 3121, 3120 ] },
- { "id": "end_piece", "fg": [ 3123, 3125, 3124, 3122 ] },
- { "id": "unconnected", "fg": [ 3130, 3130 ] }
+ { "id": "center", "fg": 3227 },
+ { "id": "corner", "fg": [ 3229, 3231, 3230, 3228 ] },
+ { "id": "t_connection", "fg": [ 3239, 3241, 3240, 3238 ] },
+ { "id": "edge", "fg": [ 3233, 3232 ] },
+ { "id": "end_piece", "fg": [ 3235, 3237, 3236, 3234 ] },
+ { "id": "unconnected", "fg": [ 3242, 3242 ] }
]
},
- { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 3133 }, { "weight": 2, "sprite": 3134 } ] },
- { "id": "f_dandelion_season_spring", "fg": 3135 },
- { "id": "f_dandelion_season_summer", "fg": 3137 },
- { "id": "f_dandelion_season_autumn", "fg": 3136 },
- { "id": "f_dandelion_season_winter", "fg": 3138 },
- { "id": "f_datura", "fg": 3139 },
+ { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 3245 }, { "weight": 2, "sprite": 3246 } ] },
+ { "id": "f_dandelion_season_spring", "fg": 3247 },
+ { "id": "f_dandelion_season_summer", "fg": 3249 },
+ { "id": "f_dandelion_season_autumn", "fg": 3248 },
+ { "id": "f_dandelion_season_winter", "fg": 3250 },
+ { "id": "f_datura", "fg": 3251 },
{
"id": "f_desk",
"multitile": true,
- "fg": 3155,
+ "fg": 3267,
"additional_tiles": [
- { "id": "center", "fg": 3140 },
- { "id": "corner", "fg": [ 3142, 3144, 3143, 3141 ] },
- { "id": "t_connection", "fg": [ 3152, 3154, 3153, 3151 ] },
- { "id": "edge", "fg": [ 3146, 3145 ] },
- { "id": "end_piece", "fg": [ 3148, 3150, 3149, 3147 ] },
- { "id": "unconnected", "fg": [ 3155, 3155 ] }
+ { "id": "center", "fg": 3252 },
+ { "id": "corner", "fg": [ 3254, 3256, 3255, 3253 ] },
+ { "id": "t_connection", "fg": [ 3264, 3266, 3265, 3263 ] },
+ { "id": "edge", "fg": [ 3258, 3257 ] },
+ { "id": "end_piece", "fg": [ 3260, 3262, 3261, 3259 ] },
+ { "id": "unconnected", "fg": [ 3267, 3267 ] }
]
},
- { "id": "f_displaycase", "fg": 3156 },
- { "id": "f_entertainment_center", "fg": 3157 },
- { "id": "f_filing_cabinet", "fg": 3158 },
- { "id": "f_firering", "fg": 3159 },
- { "id": "f_flower_spurge", "fg": 3160 },
- { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 3161 }, { "weight": 2, "sprite": 3162 } ] },
+ { "id": "f_displaycase", "fg": 3268 },
+ { "id": "f_entertainment_center", "fg": 3269 },
+ { "id": "f_filing_cabinet", "fg": 3270 },
+ { "id": "f_firering", "fg": 3271 },
+ { "id": "f_flower_spurge", "fg": 3272 },
+ { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 3273 }, { "weight": 2, "sprite": 3274 } ] },
{
"id": [ "f_grave_stone", "f_grave_head" ],
- "fg": [ { "weight": 1, "sprite": 3163 }, { "weight": 1, "sprite": 3164 } ]
- },
- { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 3165 }, { "weight": 1, "sprite": 3166 } ] },
- { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 3167 },
- { "id": "f_gunsafe_ml", "fg": 3170 },
- { "id": "f_gunsafe_mj", "fg": 3169 },
- { "id": "f_gun_safe_el", "fg": 3168 },
- { "id": "f_hay", "fg": 3171 },
- { "id": "f_indoor_plant", "fg": 3172 },
- { "id": "f_indoor_plant_y", "fg": 3173 },
- { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 3174 },
- { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 3175 },
- { "id": "f_leather_tarp", "fg": 3176 },
- { "id": "f_mailbox", "fg": 3178 },
- { "id": "f_metal_crate_r", "fg": 3181 },
- { "id": "f_metal_crate_c", "fg": 3179 },
- { "id": "f_metal_crate_o", "fg": 3180 },
+ "fg": [ { "weight": 1, "sprite": 3275 }, { "weight": 1, "sprite": 3276 } ]
+ },
+ { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 3277 }, { "weight": 1, "sprite": 3278 } ] },
+ { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 3279 },
+ { "id": "f_gunsafe_ml", "fg": 3282 },
+ { "id": "f_gunsafe_mj", "fg": 3281 },
+ { "id": "f_gun_safe_el", "fg": 3280 },
+ { "id": "f_hay", "fg": 3283 },
+ { "id": "f_indoor_plant", "fg": 3284 },
+ { "id": "f_indoor_plant_y", "fg": 3285 },
+ { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 3286 },
+ { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 3287 },
+ { "id": "f_leather_tarp", "fg": 3288 },
+ { "id": "f_mailbox", "fg": 3290 },
+ { "id": "f_metal_crate_r", "fg": 3293 },
+ { "id": "f_metal_crate_c", "fg": 3291 },
+ { "id": "f_metal_crate_o", "fg": 3292 },
{
"id": "f_metal_table",
"multitile": true,
- "fg": 3197,
+ "fg": 3309,
"additional_tiles": [
- { "id": "center", "fg": 3182 },
- { "id": "corner", "fg": [ 3184, 3186, 3185, 3183 ] },
- { "id": "t_connection", "fg": [ 3194, 3196, 3195, 3193 ] },
- { "id": "edge", "fg": [ 3188, 3187 ] },
- { "id": "end_piece", "fg": [ 3190, 3192, 3191, 3189 ] },
- { "id": "unconnected", "fg": [ 3197, 3197 ] }
+ { "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, 3309 ] }
]
},
- { "id": "f_alien_anemone", "fg": 3198 },
- { "id": "f_alien_table", "fg": 3199 },
- { "id": "f_mustard_season_spring", "fg": 3201, "rotates": false },
- { "id": "f_mustard_season_summer", "fg": 3202, "rotates": false },
- { "id": "f_mustard_season_autumn", "fg": 3200, "rotates": false },
- { "id": "f_mustard_season_winter", "fg": 3203, "rotates": false },
- { "id": "f_mutpoppy", "fg": 3204 },
+ { "id": "f_alien_anemone", "fg": 3310 },
+ { "id": "f_alien_table", "fg": 3311 },
+ { "id": "f_mustard_season_spring", "fg": 3313, "rotates": false },
+ { "id": "f_mustard_season_summer", "fg": 3314, "rotates": false },
+ { "id": "f_mustard_season_autumn", "fg": 3312, "rotates": false },
+ { "id": "f_mustard_season_winter", "fg": 3315, "rotates": false },
+ { "id": "f_mutpoppy", "fg": 3316 },
{
"id": "f_planter",
"multitile": true,
- "fg": 3220,
+ "fg": 3332,
"additional_tiles": [
- { "id": "center", "fg": 3205 },
- { "id": "corner", "fg": [ 3207, 3209, 3208, 3206 ] },
- { "id": "t_connection", "fg": [ 3217, 3219, 3218, 3216 ] },
- { "id": "edge", "fg": [ 3211, 3210 ] },
- { "id": "end_piece", "fg": [ 3213, 3215, 3214, 3212 ] },
- { "id": "unconnected", "fg": [ 3220, 3220 ] }
+ { "id": "center", "fg": 3317 },
+ { "id": "corner", "fg": [ 3319, 3321, 3320, 3318 ] },
+ { "id": "t_connection", "fg": [ 3329, 3331, 3330, 3328 ] },
+ { "id": "edge", "fg": [ 3323, 3322 ] },
+ { "id": "end_piece", "fg": [ 3325, 3327, 3326, 3324 ] },
+ { "id": "unconnected", "fg": [ 3332, 3332 ] }
]
},
{
"id": "f_planter_harvest",
"multitile": true,
- "fg": 3236,
+ "fg": 3348,
"additional_tiles": [
- { "id": "center", "fg": 3221 },
- { "id": "corner", "fg": [ 3223, 3225, 3224, 3222 ] },
- { "id": "t_connection", "fg": [ 3233, 3235, 3234, 3232 ] },
- { "id": "edge", "fg": [ 3227, 3226 ] },
- { "id": "end_piece", "fg": [ 3229, 3231, 3230, 3228 ] },
- { "id": "unconnected", "fg": [ 3236, 3236 ] }
+ { "id": "center", "fg": 3333 },
+ { "id": "corner", "fg": [ 3335, 3337, 3336, 3334 ] },
+ { "id": "t_connection", "fg": [ 3345, 3347, 3346, 3344 ] },
+ { "id": "edge", "fg": [ 3339, 3338 ] },
+ { "id": "end_piece", "fg": [ 3341, 3343, 3342, 3340 ] },
+ { "id": "unconnected", "fg": [ 3348, 3348 ] }
]
},
{
"id": "f_planter_mature",
"multitile": true,
- "fg": 3252,
+ "fg": 3364,
"additional_tiles": [
- { "id": "center", "fg": 3237 },
- { "id": "corner", "fg": [ 3239, 3241, 3240, 3238 ] },
- { "id": "t_connection", "fg": [ 3249, 3251, 3250, 3248 ] },
- { "id": "edge", "fg": [ 3243, 3242 ] },
- { "id": "end_piece", "fg": [ 3245, 3247, 3246, 3244 ] },
- { "id": "unconnected", "fg": [ 3252, 3252 ] }
+ { "id": "center", "fg": 3349 },
+ { "id": "corner", "fg": [ 3351, 3353, 3352, 3350 ] },
+ { "id": "t_connection", "fg": [ 3361, 3363, 3362, 3360 ] },
+ { "id": "edge", "fg": [ 3355, 3354 ] },
+ { "id": "end_piece", "fg": [ 3357, 3359, 3358, 3356 ] },
+ { "id": "unconnected", "fg": [ 3364, 3364 ] }
]
},
{
"id": "f_planter_seedling",
"multitile": true,
- "fg": 3268,
+ "fg": 3380,
"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": 3365 },
+ { "id": "corner", "fg": [ 3367, 3369, 3368, 3366 ] },
+ { "id": "t_connection", "fg": [ 3377, 3379, 3378, 3376 ] },
+ { "id": "edge", "fg": [ 3371, 3370 ] },
+ { "id": "end_piece", "fg": [ 3373, 3375, 3374, 3372 ] },
+ { "id": "unconnected", "fg": [ 3380, 3380 ] }
]
},
- { "id": "f_plastic_groundsheet", "fg": 3269 },
+ { "id": "f_plastic_groundsheet", "fg": 3381 },
{
"id": "f_pool_table",
"multitile": true,
- "fg": 3285,
+ "fg": 3397,
"additional_tiles": [
- { "id": "center", "fg": 3270 },
- { "id": "corner", "fg": [ 3272, 3274, 3273, 3271 ] },
- { "id": "t_connection", "fg": [ 3282, 3284, 3283, 3281 ] },
- { "id": "edge", "fg": [ 3276, 3275 ] },
- { "id": "end_piece", "fg": [ 3278, 3280, 3279, 3277 ] },
- { "id": "unconnected", "fg": 3285 }
+ { "id": "center", "fg": 3382 },
+ { "id": "corner", "fg": [ 3384, 3386, 3385, 3383 ] },
+ { "id": "t_connection", "fg": [ 3394, 3396, 3395, 3393 ] },
+ { "id": "edge", "fg": [ 3388, 3387 ] },
+ { "id": "end_piece", "fg": [ 3390, 3392, 3391, 3389 ] },
+ { "id": "unconnected", "fg": 3397 }
]
},
- { "id": "f_rack", "fg": 3286 },
- { "id": "f_rack_wood", "fg": 3287 },
- { "id": "f_recycle_bin", "fg": 3288 },
- { "id": "f_rubble", "fg": 3289 },
- { "id": "f_rubble_rock", "fg": 3290 },
- { "id": "f_sign", "fg": 3291 },
- { "id": "f_skin_door", "fg": 3292 },
- { "id": "f_skin_door_o", "fg": 3293 },
+ { "id": "f_rack", "fg": 3398 },
+ { "id": "f_rack_wood", "fg": 3399 },
+ { "id": "f_recycle_bin", "fg": 3400 },
+ { "id": "f_rubble", "fg": 3401 },
+ { "id": "f_rubble_rock", "fg": 3402 },
+ { "id": "f_sign", "fg": 3403 },
+ { "id": "f_skin_door", "fg": 3404 },
+ { "id": "f_skin_door_o", "fg": 3405 },
{
"id": "f_skin_wall",
- "fg": 3310,
+ "fg": 3422,
"multitile": true,
"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 }
+ { "id": "center", "fg": 3407 },
+ { "id": "corner", "fg": [ 3409, 3411, 3410, 3408 ] },
+ { "id": "t_connection", "fg": [ 3419, 3421, 3420, 3418 ] },
+ { "id": "edge", "fg": [ 3413, 3412 ] },
+ { "id": "end_piece", "fg": [ 3415, 3417, 3416, 3414 ] },
+ { "id": "unconnected", "fg": 3422 }
]
},
{
"id": "f_sofa",
"multitile": true,
- "fg": 3326,
+ "fg": 3438,
"additional_tiles": [
- { "id": "center", "fg": 3311 },
- { "id": "corner", "fg": [ 3313, 3315, 3314, 3312 ] },
- { "id": "t_connection", "fg": [ 3323, 3325, 3324, 3322 ] },
- { "id": "edge", "fg": [ 3317, 3316 ] },
- { "id": "end_piece", "fg": [ 3319, 3321, 3320, 3318 ] },
- { "id": "unconnected", "fg": [ 3326, 3326 ] }
+ { "id": "center", "fg": 3423 },
+ { "id": "corner", "fg": [ 3425, 3427, 3426, 3424 ] },
+ { "id": "t_connection", "fg": [ 3435, 3437, 3436, 3434 ] },
+ { "id": "edge", "fg": [ 3429, 3428 ] },
+ { "id": "end_piece", "fg": [ 3431, 3433, 3432, 3430 ] },
+ { "id": "unconnected", "fg": [ 3438, 3438 ] }
]
},
- { "id": "f_stool", "fg": 3327 },
- { "id": "f_sunflower_season_spring", "fg": 3328 },
- { "id": "f_sunflower_season_winter", "fg": 3329 },
+ { "id": "f_stool", "fg": 3439 },
+ { "id": "f_sunflower_season_spring", "fg": 3440 },
+ { "id": "f_sunflower_season_winter", "fg": 3441 },
{
"id": "f_table",
"multitile": true,
- "fg": 3345,
+ "fg": 3457,
"additional_tiles": [
- { "id": "center", "fg": 3330 },
- { "id": "corner", "fg": [ 3332, 3334, 3333, 3331 ] },
- { "id": "t_connection", "fg": [ 3342, 3344, 3343, 3341 ] },
- { "id": "edge", "fg": [ 3336, 3335 ] },
- { "id": "end_piece", "fg": [ 3338, 3340, 3339, 3337 ] },
- { "id": "unconnected", "fg": [ 3345, 3345 ] }
+ { "id": "center", "fg": 3442 },
+ { "id": "corner", "fg": [ 3444, 3446, 3445, 3443 ] },
+ { "id": "t_connection", "fg": [ 3454, 3456, 3455, 3453 ] },
+ { "id": "edge", "fg": [ 3448, 3447 ] },
+ { "id": "end_piece", "fg": [ 3450, 3452, 3451, 3449 ] },
+ { "id": "unconnected", "fg": [ 3457, 3457 ] }
]
},
- { "id": "f_toilet", "fg": 3346 },
- { "id": "f_trashcan", "fg": 3347 },
- { "id": "f_wreckage", "fg": 3348 },
- { "id": "f_lilypad", "fg": 3349 },
- { "id": "f_small_satelitte_dish", "fg": 3353 },
- { "id": "f_TV_antenna", "fg": 3350 },
- { "id": "f_cellphone_booster", "fg": 3351 },
- { "id": "f_vent_pipe", "fg": 3354 },
- { "id": "f_roof_turbine_vent", "fg": 3352 },
+ { "id": "f_toilet", "fg": 3458 },
+ { "id": "f_trashcan", "fg": 3459 },
+ { "id": "f_wreckage", "fg": 3460 },
+ { "id": "f_lilypad", "fg": 3461 },
+ { "id": "f_small_satelitte_dish", "fg": 3465 },
+ { "id": "f_TV_antenna", "fg": 3462 },
+ { "id": "f_cellphone_booster", "fg": 3463 },
+ { "id": "f_vent_pipe", "fg": 3466 },
+ { "id": "f_roof_turbine_vent", "fg": 3464 },
{
"id": "f_sandbag_half",
"multitile": true,
- "fg": 3370,
- "additional_tiles": [
- { "id": "center", "fg": 3355 },
- { "id": "corner", "fg": [ 3357, 3359, 3358, 3356 ] },
- { "id": "t_connection", "fg": [ 3367, 3369, 3368, 3366 ] },
- { "id": "edge", "fg": [ 3361, 3360 ] },
- { "id": "end_piece", "fg": [ 3363, 3365, 3364, 3362 ] },
- { "id": "unconnected", "fg": [ 3370, 3370 ] }
- ]
- },
- { "id": "1st_aid", "fg": 3371 },
- { "id": "2x4", "fg": 3372 },
- { "id": "halberd", "fg": 3393 },
- { "id": "halberd_fake", "fg": 3393 },
- { "id": "nodachi", "fg": 3401 },
- { "id": "nodachi_fake", "fg": 3401 },
- { "id": "nodachi_inferior", "fg": 3401 },
- { "id": "arming_sword", "fg": 3537 },
- { "id": "art_sphere", "fg": 3552 },
- { "id": "art_rod", "fg": 3550 },
- { "id": "art_teardrop", "fg": 3554 },
- { "id": "art_lamp", "fg": 3546 },
- { "id": "art_snake", "fg": 3551 },
- { "id": "art_disc", "fg": 3543 },
- { "id": "art_beads", "fg": 3540 },
- { "id": "art_napkin", "fg": 3547 },
- { "id": "art_urchin", "fg": 3556 },
- { "id": "art_jelly", "fg": 3544 },
- { "id": "art_spiral", "fg": 3553 },
- { "id": "art_pin", "fg": 3548 },
- { "id": "art_tube", "fg": 3555 },
- { "id": "art_pyramid", "fg": 3549 },
- { "id": "art_crystal", "fg": 3542 },
- { "id": "art_knot", "fg": 3545 },
- { "id": "art_crescent", "fg": 3541 },
- { "id": "altered_teapot", "fg": 3538 },
- { "id": "architect_cube", "fg": 3539 },
- { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 3614 },
- { "id": [ "ak47", "aksemi" ], "fg": 3564 },
- { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 3578 },
- { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 3615 },
- { "id": [ "m249", "m249_semi" ], "fg": 3622 },
- { "id": [ "m60", "m60_semi" ], "fg": 3632 },
- { "id": [ "mp40", "mp40semi" ], "fg": 3648 },
- { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 3687 },
- { "id": "fire_ax", "fg": 3703 },
- { "id": "ax", "fg": 3706 },
- { "id": "hatchet", "fg": 3704 },
- { "id": "backpack", "fg": 3707 },
- { "id": "duffelbag", "fg": 3708 },
- { "id": "molle_pack", "fg": 3709 },
- { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 3712 },
- { "id": "bag_canvas", "fg": 3715 },
- { "id": "bat", "fg": 3716 },
- { "id": "bat_metal", "fg": 3717 },
- { "id": "blanket", "fg": 3718 },
- { "id": "down_blanket", "fg": 3719 },
- { "id": "electric_blanket", "fg": 3720 },
- { "id": "board_trap", "fg": 3721 },
- { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 3722 },
- { "id": "box_large", "fg": 3733 },
- { "id": "box_medium", "fg": 3734 },
- { "id": "broom", "fg": 3735 },
- { "id": "bwirebat", "fg": 3736 },
- { "id": "cattlefodder", "fg": 3755 },
- { "id": "chainsaw_off", "fg": 3756 },
- { "id": "axe_ring", "fg": 3763 },
- { "id": "balclava", "fg": 3764 },
- { "id": "beret", "fg": 3765 },
- { "id": "boots", "fg": 3766 },
- { "id": "boxer_briefs", "fg": 3767 },
- { "id": "boxer_shorts", "fg": 3768 },
- { "id": "boy_shorts", "fg": 3769 },
- { "id": "bra", "fg": 3770 },
- { "id": "briefs", "fg": 3771 },
- { "id": "bscabbard", "fg": 3772 },
- { "id": "corset", "fg": 3775 },
- { "id": "cowboy_hat", "fg": 3776 },
- { "id": "dress_shoes", "fg": 3777 },
- { "id": "hat_ball", "fg": 3778 },
- { "id": "hat_cotton", "fg": 3779 },
- { "id": "hat_fur", "fg": 3780 },
- { "id": "hat_knit", "fg": 3782 },
- { "id": "hat_noise_cancelling", "fg": 3783 },
- { "id": "helmet_barbute", "fg": 3784 },
- { "id": "helmet_chitin", "fg": 3785 },
- { "id": "helmet_kabuto", "fg": 3786 },
- { "id": "holster", "fg": 3787 },
- { "id": "hoodie", "fg": 3788 },
- { "id": "jeans", "fg": 3791 },
- { "id": "leather_belt", "fg": 3792 },
- { "id": "longshirt", "fg": 3793 },
- { "id": "maid_dress", "fg": 3794 },
- { "id": "maid_hat", "fg": 3795 },
- { "id": "mask_dust", "fg": 3796 },
- { "id": "panties", "fg": 3797 },
- { "id": "pants", "fg": 3798 },
- { "id": "pants_cargo", "fg": 3799 },
- { "id": "polo_shirt", "fg": 3800 },
- { "id": "ragpouch", "fg": 3801 },
- { "id": "scabbard", "fg": 3802 },
- { "id": "sneakers", "fg": 3804 },
- { "id": "socks", "fg": 3805 },
- { "id": "spearsling", "fg": 3806 },
- { "id": "stockings", "fg": 3808 },
- { "id": "sweater", "fg": 3811 },
- { "id": "sweatshirt", "fg": 3812 },
- { "id": "tank_top", "fg": 3813 },
- { "id": "tool_belt", "fg": 3814 },
- { "id": "tshirt", "fg": 3815 },
- { "id": "turban", "fg": 3816 },
- { "id": "undershirt", "fg": 3817 },
- { "id": "coat_lab", "fg": 3773 },
- { "id": "coat_rain", "fg": 3774 },
- { "id": "sports_bra", "fg": 3807 },
- { "id": "skirt", "fg": 3803 },
- { "id": "jacket_light", "fg": 3790 },
- { "id": "jacket_army", "fg": 3789 },
- { "id": "hat_hard", "fg": 3781 },
- { "id": "striped_pants", "fg": 3809 },
- { "id": "striped_shirt", "fg": 3810 },
- { "id": "cloak", "fg": 3818 },
- { "id": "cloak_wool", "fg": 3821 },
- { "id": "cloak_leather", "fg": 3820 },
- { "id": "cloak_fur", "fg": 3819 },
- { "id": "coffeemaker", "fg": 3822 },
- { "id": "contacts", "fg": 3823 },
- { "id": "corpse", "fg": 3824 },
- { "id": "corpse_generic_human", "fg": 3825 },
- { "id": "crowbar", "fg": 3833 },
- { "id": "filter_air", "fg": 3834 },
- { "id": "fish_bait", "fg": 3835 },
+ "fg": 3482,
+ "additional_tiles": [
+ { "id": "center", "fg": 3467 },
+ { "id": "corner", "fg": [ 3469, 3471, 3470, 3468 ] },
+ { "id": "t_connection", "fg": [ 3479, 3481, 3480, 3478 ] },
+ { "id": "edge", "fg": [ 3473, 3472 ] },
+ { "id": "end_piece", "fg": [ 3475, 3477, 3476, 3474 ] },
+ { "id": "unconnected", "fg": [ 3482, 3482 ] }
+ ]
+ },
+ { "id": "1st_aid", "fg": 3483 },
+ { "id": "2x4", "fg": 3484 },
+ { "id": "halberd", "fg": 3505 },
+ { "id": "halberd_fake", "fg": 3505 },
+ { "id": "nodachi", "fg": 3513 },
+ { "id": "nodachi_fake", "fg": 3513 },
+ { "id": "nodachi_inferior", "fg": 3513 },
+ { "id": "arming_sword", "fg": 3649 },
+ { "id": "art_sphere", "fg": 3664 },
+ { "id": "art_rod", "fg": 3662 },
+ { "id": "art_teardrop", "fg": 3666 },
+ { "id": "art_lamp", "fg": 3658 },
+ { "id": "art_snake", "fg": 3663 },
+ { "id": "art_disc", "fg": 3655 },
+ { "id": "art_beads", "fg": 3652 },
+ { "id": "art_napkin", "fg": 3659 },
+ { "id": "art_urchin", "fg": 3668 },
+ { "id": "art_jelly", "fg": 3656 },
+ { "id": "art_spiral", "fg": 3665 },
+ { "id": "art_pin", "fg": 3660 },
+ { "id": "art_tube", "fg": 3667 },
+ { "id": "art_pyramid", "fg": 3661 },
+ { "id": "art_crystal", "fg": 3654 },
+ { "id": "art_knot", "fg": 3657 },
+ { "id": "art_crescent", "fg": 3653 },
+ { "id": "altered_teapot", "fg": 3650 },
+ { "id": "architect_cube", "fg": 3651 },
+ { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 3726 },
+ { "id": [ "ak47", "aksemi" ], "fg": 3676 },
+ { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 3690 },
+ { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 3727 },
+ { "id": [ "m249", "m249_semi" ], "fg": 3735 },
+ { "id": [ "m60", "m60_semi" ], "fg": 3745 },
+ { "id": [ "mp40", "mp40semi" ], "fg": 3761 },
+ { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 3800 },
+ { "id": "fire_ax", "fg": 3816 },
+ { "id": "ax", "fg": 3819 },
+ { "id": "hatchet", "fg": 3817 },
+ { "id": "backpack", "fg": 3820 },
+ { "id": "duffelbag", "fg": 3821 },
+ { "id": "molle_pack", "fg": 3822 },
+ { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 3825 },
+ { "id": "bag_canvas", "fg": 3828 },
+ { "id": "bat", "fg": 3829 },
+ { "id": "bat_metal", "fg": 3830 },
+ { "id": "blanket", "fg": 3831 },
+ { "id": "down_blanket", "fg": 3832 },
+ { "id": "electric_blanket", "fg": 3833 },
+ { "id": "board_trap", "fg": 3834 },
+ { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 3835 },
+ { "id": "box_large", "fg": 3846 },
+ { "id": "box_medium", "fg": 3847 },
+ { "id": "broom", "fg": 3848 },
+ { "id": "bwirebat", "fg": 3849 },
+ { "id": "cattlefodder", "fg": 3868 },
+ { "id": "chainsaw_off", "fg": 3869 },
+ { "id": "axe_ring", "fg": 3876 },
+ { "id": "balclava", "fg": 3877 },
+ { "id": "beret", "fg": 3878 },
+ { "id": "boots", "fg": 3879 },
+ { "id": "boxer_briefs", "fg": 3880 },
+ { "id": "boxer_shorts", "fg": 3881 },
+ { "id": "boy_shorts", "fg": 3882 },
+ { "id": "bra", "fg": 3883 },
+ { "id": "briefs", "fg": 3884 },
+ { "id": "bscabbard", "fg": 3885 },
+ { "id": "corset", "fg": 3888 },
+ { "id": "cowboy_hat", "fg": 3889 },
+ { "id": "dress_shoes", "fg": 3890 },
+ { "id": "hat_ball", "fg": 3891 },
+ { "id": "hat_cotton", "fg": 3892 },
+ { "id": "hat_fur", "fg": 3893 },
+ { "id": "hat_knit", "fg": 3895 },
+ { "id": "hat_noise_cancelling", "fg": 3896 },
+ { "id": "helmet_barbute", "fg": 3897 },
+ { "id": "helmet_chitin", "fg": 3898 },
+ { "id": "helmet_kabuto", "fg": 3899 },
+ { "id": "holster", "fg": 3900 },
+ { "id": "hoodie", "fg": 3901 },
+ { "id": "jeans", "fg": 3904 },
+ { "id": "leather_belt", "fg": 3905 },
+ { "id": "longshirt", "fg": 3906 },
+ { "id": "maid_dress", "fg": 3907 },
+ { "id": "maid_hat", "fg": 3908 },
+ { "id": "mask_dust", "fg": 3909 },
+ { "id": "panties", "fg": 3910 },
+ { "id": "pants", "fg": 3911 },
+ { "id": "pants_cargo", "fg": 3912 },
+ { "id": "polo_shirt", "fg": 3913 },
+ { "id": "ragpouch", "fg": 3914 },
+ { "id": "scabbard", "fg": 3915 },
+ { "id": "sneakers", "fg": 3917 },
+ { "id": "socks", "fg": 3918 },
+ { "id": "spearsling", "fg": 3919 },
+ { "id": "stockings", "fg": 3921 },
+ { "id": "sweater", "fg": 3924 },
+ { "id": "sweatshirt", "fg": 3925 },
+ { "id": "tank_top", "fg": 3926 },
+ { "id": "tool_belt", "fg": 3927 },
+ { "id": "tshirt", "fg": 3928 },
+ { "id": "turban", "fg": 3929 },
+ { "id": "undershirt", "fg": 3930 },
+ { "id": "coat_lab", "fg": 3886 },
+ { "id": "coat_rain", "fg": 3887 },
+ { "id": "sports_bra", "fg": 3920 },
+ { "id": "skirt", "fg": 3916 },
+ { "id": "jacket_light", "fg": 3903 },
+ { "id": "jacket_army", "fg": 3902 },
+ { "id": "hat_hard", "fg": 3894 },
+ { "id": "striped_pants", "fg": 3922 },
+ { "id": "striped_shirt", "fg": 3923 },
+ { "id": "cloak", "fg": 3931 },
+ { "id": "cloak_wool", "fg": 3934 },
+ { "id": "cloak_leather", "fg": 3933 },
+ { "id": "cloak_fur", "fg": 3932 },
+ { "id": "coffeemaker", "fg": 3935 },
+ { "id": "contacts", "fg": 3936 },
+ { "id": "corpse", "fg": 3937 },
+ { "id": "corpse_generic_human", "fg": 3938 },
+ { "id": "crowbar", "fg": 3946 },
+ { "id": "filter_air", "fg": 3947 },
+ { "id": "fish_bait", "fg": 3948 },
{
"id": [
"corpse_mon_fish_brook_trout",
@@ -4471,231 +4607,253 @@
"corpse_mon_fish_white_sucker",
"corpse_mon_fish_fallfish"
],
- "fg": 3838
- },
- { "id": "fish_trap", "fg": 3840 },
- { "id": "fishing_rod_basic", "fg": 3841 },
- { "id": "fishing_rod_professional", "fg": 3842 },
- { "id": "forge", "fg": 3844 },
- { "id": "char_forge", "fg": 3843 },
- { "id": "glass_shard", "fg": 3868 },
- { "id": "hoboreel", "fg": 3869 },
- { "id": "hydrogen_tank", "fg": 3870 },
- { "id": "leather_tarp", "fg": 3871 },
- { "id": "water", "fg": 3882 },
- { "id": "water_clean", "fg": 3883 },
- { "id": "gasoline", "fg": 3877 },
- { "id": "diesel", "fg": 3875 },
- { "id": "biodiesel", "fg": 3873 },
- { "id": "flamethrower_fuel", "fg": 3876 },
- { "id": "avgas", "fg": 3872 },
- { "id": "lamp_oil", "fg": 3879 },
- { "id": "motor_oil", "fg": 3880 },
- { "id": "napalm", "fg": 3881 },
- { "id": "gelled_gasoline", "fg": 3878 },
- { "id": "blood", "fg": 3874 },
- { "id": "log", "fg": 3884 },
- { "id": "lucern_hammer", "fg": 3885 },
- { "id": "marble", "fg": 3886 },
- { "id": "microwave", "fg": 3887 },
- { "id": "mjolnir", "fg": 3888 },
- { "id": "mop", "fg": 3889 },
- { "id": "mp5mag", "fg": 3890 },
- { "id": "nail", "fg": 3895 },
- { "id": "nailbat", "fg": 3896 },
- { "id": "nailboard", "fg": 3897 },
- { "id": "needle_bone", "fg": 3898 },
- { "id": "needle_curved", "fg": 3899 },
- { "id": "needle_wood", "fg": 3900 },
- { "id": "many_years_old_newspaper", "fg": 3901 },
- { "id": "years_old_newspaper", "fg": 3906 },
- { "id": "months_old_newspaper", "fg": 3902 },
- { "id": "newest_newspaper", "fg": 3903 },
- { "id": "one_year_old_newspaper", "fg": 3904 },
- { "id": "weeks_old_newspaper", "fg": 3905 },
- { "id": "2h_flail_wood", "fg": 3907 },
- { "id": "pillow", "fg": 3909 },
- { "id": "down_pillow", "fg": 3908 },
- { "id": "pine_bough", "fg": 3910 },
- { "id": "pinecone", "fg": 3911 },
+ "fg": 3951
+ },
+ { "id": "fish_trap", "fg": 3953 },
+ { "id": "fishing_rod_basic", "fg": 3954 },
+ { "id": "fishing_rod_professional", "fg": 3955 },
+ { "id": "forge", "fg": 3957 },
+ { "id": "char_forge", "fg": 3956 },
+ { "id": "glass_shard", "fg": 3981 },
+ { "id": "hoboreel", "fg": 3982 },
+ { "id": "hydrogen_tank", "fg": 3983 },
+ { "id": "leather_tarp", "fg": 3984 },
+ { "id": "water", "fg": 3995 },
+ { "id": "water_clean", "fg": 3996 },
+ { "id": "gasoline", "fg": 3990 },
+ { "id": "diesel", "fg": 3988 },
+ { "id": "biodiesel", "fg": 3986 },
+ { "id": "flamethrower_fuel", "fg": 3989 },
+ { "id": "avgas", "fg": 3985 },
+ { "id": "lamp_oil", "fg": 3992 },
+ { "id": "motor_oil", "fg": 3993 },
+ { "id": "napalm", "fg": 3994 },
+ { "id": "gelled_gasoline", "fg": 3991 },
+ { "id": "blood", "fg": 3987 },
+ { "id": "log", "fg": 3997 },
+ { "id": "lucern_hammer", "fg": 3998 },
+ { "id": "marble", "fg": 4000 },
+ { "id": "microwave", "fg": 4001 },
+ { "id": "mjolnir", "fg": 4002 },
+ { "id": "mop", "fg": 4003 },
+ { "id": "mp5mag", "fg": 4004 },
+ { "id": "nail", "fg": 4012 },
+ { "id": "nailbat", "fg": 4013 },
+ { "id": "nailboard", "fg": 4014 },
+ { "id": "needle_bone", "fg": 4015 },
+ { "id": "needle_curved", "fg": 4016 },
+ { "id": "needle_wood", "fg": 4017 },
+ { "id": "many_years_old_newspaper", "fg": 4018 },
+ { "id": "years_old_newspaper", "fg": 4023 },
+ { "id": "months_old_newspaper", "fg": 4019 },
+ { "id": "newest_newspaper", "fg": 4020 },
+ { "id": "one_year_old_newspaper", "fg": 4021 },
+ { "id": "weeks_old_newspaper", "fg": 4022 },
+ { "id": "2h_flail_wood", "fg": 4024 },
+ { "id": "pillow", "fg": 4026 },
+ { "id": "down_pillow", "fg": 4025 },
+ { "id": "pine_bough", "fg": 4027 },
+ { "id": "pinecone", "fg": 4028 },
{
"id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ],
- "fg": 3912
- },
- { "id": "plastic_sheet", "fg": 3914 },
- { "id": "plastic_shopping_bag", "fg": 3915 },
- { "id": "pneumatic_shotgun", "fg": 3916 },
- { "id": "pool_ball", "fg": 3917 },
- { "id": "powder_candy", "fg": 3919 },
- { "id": "rag", "fg": 3920 },
- { "id": "rebar", "fg": 3921 },
- { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 3922 },
- { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 3923 },
- { "id": "scissors", "fg": 3924 },
- { "id": "screwdriver", "fg": 3925 },
- { "id": "sewing_kit", "fg": 3926 },
- { "id": "sharp_rock", "fg": 3927 },
- { "id": "sheet_metal", "fg": 3928 },
- { "id": "sheet_metal_small", "fg": 3929 },
- { "id": "shovel", "fg": 3930 },
- { "id": "slingshot", "fg": 3931 },
- { "id": "solar_panel", "fg": 3933 },
- { "id": "solar_cell", "fg": 3932 },
- { "id": "pointy_stick", "fg": 3934 },
- { "id": "spear_wood", "fg": 3942 },
- { "id": "spear_spike", "fg": 3940 },
- { "id": "spear_knife", "fg": 3936 },
- { "id": "spear_knife_superior", "fg": 3937 },
- { "id": "spear_pipe", "fg": 3938 },
- { "id": "spear_rebar", "fg": 3939 },
- { "id": "spear_steel", "fg": 3941 },
- { "id": "spear_copper", "fg": 3935 },
- { "id": "splinter", "fg": 3943 },
- { "id": "sponge", "fg": 3944 },
- { "id": "spoon", "fg": 3945 },
- { "id": "stick", "fg": 3946 },
- { "id": "stick_long", "fg": 3947 },
- { "id": "primitive_hammer", "fg": 3948 },
- { "id": "string_36", "fg": 3949 },
- { "id": "string_6", "fg": 3950 },
- { "id": "tailors_kit", "fg": 3952 },
- { "id": "tarp", "fg": 3953 },
- { "id": "television", "fg": 3954 },
- { "id": "thermos", "fg": 3955 },
- { "id": "thread", "fg": 3956 },
- { "id": "2h_flail_steel", "fg": 3961 },
- { "id": "welder", "fg": 3962 },
- { "id": "welder_crude", "fg": 3963 },
- { "id": "wood_panel", "fg": 3964 },
- { "id": "wood_sheet", "fg": 3965 },
- { "id": "corpse_mon_troll", "fg": 3966 },
- { "id": "mon_robin", "fg": 3973, "bg": 1325 },
+ "fg": 4029
+ },
+ { "id": "plastic_sheet", "fg": 4031 },
+ { "id": "plastic_shopping_bag", "fg": 4032 },
+ { "id": "pneumatic_shotgun", "fg": 4033 },
+ { "id": "pool_ball", "fg": 4034 },
+ { "id": "powder_candy", "fg": 4036 },
+ { "id": "rag", "fg": 4037 },
+ { "id": "rebar", "fg": 4038 },
+ { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 4039 },
+ { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 4040 },
+ { "id": "scissors", "fg": 4041 },
+ { "id": "screwdriver", "fg": 4042 },
+ { "id": "sewing_kit", "fg": 4043 },
+ { "id": "sharp_rock", "fg": 4044 },
+ { "id": "sheet_metal", "fg": 4045 },
+ { "id": "sheet_metal_small", "fg": 4046 },
+ { "id": "shovel", "fg": 4047 },
+ { "id": "slingshot", "fg": 4048 },
+ { "id": "solar_panel", "fg": 4050 },
+ { "id": "solar_cell", "fg": 4049 },
+ { "id": "pointy_stick", "fg": 4051 },
+ { "id": "spear_wood", "fg": 4059 },
+ { "id": "spear_spike", "fg": 4057 },
+ { "id": "spear_knife", "fg": 4053 },
+ { "id": "spear_knife_superior", "fg": 4054 },
+ { "id": "spear_pipe", "fg": 4055 },
+ { "id": "spear_rebar", "fg": 4056 },
+ { "id": "spear_steel", "fg": 4058 },
+ { "id": "spear_copper", "fg": 4052 },
+ { "id": "splinter", "fg": 4060 },
+ { "id": "sponge", "fg": 4061 },
+ { "id": "spoon", "fg": 4062 },
+ { "id": "stick", "fg": 4063 },
+ { "id": "stick_long", "fg": 4064 },
+ { "id": "primitive_hammer", "fg": 4065 },
+ { "id": "string_36", "fg": 4066 },
+ { "id": "string_6", "fg": 4067 },
+ { "id": "tailors_kit", "fg": 4069 },
+ { "id": "tarp", "fg": 4070 },
+ { "id": "television", "fg": 4071 },
+ { "id": "thermos", "fg": 4072 },
+ { "id": "thread", "fg": 4073 },
+ { "id": "2h_flail_steel", "fg": 4078 },
+ { "id": "welder", "fg": 4079 },
+ { "id": "welder_crude", "fg": 4080 },
+ { "id": "wood_panel", "fg": 4081 },
+ { "id": "wood_sheet", "fg": 4082 },
+ { "id": "corpse_mon_troll", "fg": 4083 },
+ { "id": "mon_robin", "fg": 4090, "bg": 1325 },
{
"id": "mon_cat_bengal",
- "fg": [ { "weight": 1, "sprite": 3980 }, { "weight": 1, "sprite": 3979 } ],
+ "fg": [ { "weight": 1, "sprite": 4097 }, { "weight": 1, "sprite": 4096 } ],
"bg": 1325
},
{
"id": "mon_cat_calico",
- "fg": [ { "weight": 1, "sprite": 3983 }, { "weight": 1, "sprite": 3982 } ],
+ "fg": [ { "weight": 1, "sprite": 4100 }, { "weight": 1, "sprite": 4099 } ],
"bg": 1325
},
{
"id": "mon_cat_chonker",
- "fg": [ { "weight": 1, "sprite": 3986 }, { "weight": 1, "sprite": 3985 } ],
+ "fg": [ { "weight": 1, "sprite": 4103 }, { "weight": 1, "sprite": 4102 } ],
"bg": 1325
},
{
"id": "mon_cat_devon_rex",
- "fg": [ { "weight": 1, "sprite": 3989 }, { "weight": 1, "sprite": 3988 } ],
+ "fg": [ { "weight": 1, "sprite": 4106 }, { "weight": 1, "sprite": 4105 } ],
"bg": 1325
},
{
"id": "mon_cat_longhair",
- "fg": [ { "weight": 1, "sprite": 3992 }, { "weight": 1, "sprite": 3991 } ],
+ "fg": [ { "weight": 1, "sprite": 4109 }, { "weight": 1, "sprite": 4108 } ],
"bg": 1325
},
{
"id": "mon_cat_maine_coon",
- "fg": [ { "weight": 1, "sprite": 3995 }, { "weight": 1, "sprite": 3994 } ],
+ "fg": [ { "weight": 1, "sprite": 4112 }, { "weight": 1, "sprite": 4111 } ],
"bg": 1325
},
{
"id": "mon_cat_persian",
- "fg": [ { "weight": 1, "sprite": 3998 }, { "weight": 1, "sprite": 3997 } ],
+ "fg": [ { "weight": 1, "sprite": 4115 }, { "weight": 1, "sprite": 4114 } ],
"bg": 1325
},
{
"id": "mon_cat_siamese",
- "fg": [ { "weight": 1, "sprite": 4004 }, { "weight": 1, "sprite": 4003 } ],
+ "fg": [ { "weight": 1, "sprite": 4121 }, { "weight": 1, "sprite": 4120 } ],
"bg": 1325
},
{
"id": "mon_cat_sphynx",
- "fg": [ { "weight": 1, "sprite": 4007 }, { "weight": 1, "sprite": 4006 } ],
+ "fg": [ { "weight": 1, "sprite": 4124 }, { "weight": 1, "sprite": 4123 } ],
"bg": 1325
},
{
"id": "mon_cat_tabby",
- "fg": [ { "weight": 1, "sprite": 4010 }, { "weight": 1, "sprite": 4009 } ],
+ "fg": [ { "weight": 1, "sprite": 4127 }, { "weight": 1, "sprite": 4126 } ],
"bg": 1325
},
- { "id": "mon_cat_kitten", "fg": 3999, "bg": 1325 },
- { "id": "mon_cat_bengal_kitten", "fg": 3978, "bg": 1325 },
- { "id": "mon_cat_calico_kitten", "fg": 3981, "bg": 1325 },
- { "id": "mon_cat_chonker_kitten", "fg": 3984, "bg": 1325 },
- { "id": "mon_cat_devon_rex_kitten", "fg": 3987, "bg": 1325 },
- { "id": "mon_cat_longhair_kitten", "fg": 3990, "bg": 1325 },
- { "id": "mon_cat_maine_coon_kitten", "fg": 3993, "bg": 1325 },
- { "id": "mon_cat_persian_kitten", "fg": 3996, "bg": 1325 },
- { "id": "mon_cat_siamese_kitten", "fg": 4002, "bg": 1325 },
- { "id": "mon_cat_sphynx_kitten", "fg": 4005, "bg": 1325 },
- { "id": "mon_cat_tabby_kitten", "fg": 4008, "bg": 1325 },
- { "id": "mon_dog_beagle", "fg": 4017, "bg": 1325 },
- { "id": "mon_dog_gshepherd", "fg": 4028, "bg": 1324 },
- { "id": "mon_dog_boxer", "fg": 4019, "bg": 1324 },
- { "id": "mon_dog_dachshund", "fg": 4024, "bg": 1324 },
- { "id": "mon_dog_auscattle", "fg": 4013, "bg": 1324 },
- { "id": "mon_dog_bcollie", "fg": 4015, "bg": 1324 },
- { "id": "mon_dog_chihuahua", "fg": 4022, "bg": 1325 },
- { "id": "mon_dog_gpyrenees", "fg": 4026, "bg": 1324 },
- { "id": "mon_dog_pitbullmix", "fg": 4030, "bg": 1324 },
- { "id": "mon_dog_samoyed", "fg": 4034, "bg": 1324 },
- { "id": "mon_dog_auscattle_pup", "fg": 4014, "bg": 1325 },
- { "id": "mon_dog_bcollie_pup", "fg": 4016, "bg": 1325 },
- { "id": "mon_dog_beagle_pup", "fg": 4018, "bg": 1325 },
- { "id": "mon_dog_boxer_pup", "fg": 4020, "bg": 1325 },
- { "id": "mon_dog_bull_pup", "fg": 4021, "bg": 1325 },
- { "id": "mon_dog_chihuahua_pup", "fg": 4023, "bg": 1325 },
- { "id": "mon_dog_dachshund_pup", "fg": 4025, "bg": 1325 },
- { "id": "mon_dog_gpyrenees_pup", "fg": 4027, "bg": 1325 },
- { "id": "mon_dog_gshepherd_pup", "fg": 4029, "bg": 1325 },
- { "id": "mon_dog_pitbullmix_pup", "fg": 4031, "bg": 1325 },
- { "id": "mon_dog_pup", "fg": 4032, "bg": 1325 },
- { "id": "mon_dog_rottweiler_pup", "fg": 4033, "bg": 1325 },
- { "id": "mon_dog_samoyed_pup", "fg": 4035, "bg": 1325 },
- { "id": "mon_fish_tiny", "fg": 4042 },
- { "id": "mon_fish_small", "fg": 4041 },
- { "id": "mon_fish_medium", "fg": 4040 },
- { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 4039 },
- { "id": "mon_duck_chick", "fg": 4048, "bg": 1325 },
- { "id": "mon_goose_canadian_chick", "fg": 4049, "bg": 1325 },
- { "id": "mon_cockatrice_chick", "fg": 4051, "bg": 1325 },
- { "id": "mon_cockatrice", "fg": 4050, "bg": 1325 },
- { "id": "mon_opossum", "fg": 4065, "bg": 1325 },
- { "id": "mon_dragonfly", "fg": 4071, "bg": 1325 },
- { "id": "mon_locust", "fg": 4072, "bg": 1324 },
- { "id": "mon_locust_nymph", "fg": 4073, "bg": 1325 },
- { "id": "corpse_mon_ant", "fg": 4075 },
- { "id": "corpse_mon_ant_acid", "fg": 4076 },
- { "id": "corpse_mon_ant_larva", "fg": 4078 },
- { "id": "corpse_mon_ant_acid_larva", "fg": 4077 },
- { "id": "mon_plague_nymph", "fg": 4087, "bg": 1325 },
- { "id": "mon_plague_vector", "fg": 4088, "bg": 1324 },
- { "id": "mon_skittering_plague", "fg": 4090, "bg": 1324 },
- { "id": "mon_chicken_chick", "fg": 4099, "bg": 1325 },
- { "id": "mon_spawn_raptor", "fg": 4103, "bg": 1324 },
- { "id": "mon_tazer_hack", "fg": 4107, "bg": 1325 },
- { "id": "mon_crow_mutant_small", "fg": 4109, "bg": 1324 },
- { "id": "lighting_lowlight_dark", "fg": 4130 },
- { "id": "lighting_boomered_dark", "fg": 4125 },
+ { "id": "mon_cat_kitten", "fg": 4116, "bg": 1325 },
+ { "id": "mon_cat_bengal_kitten", "fg": 4095, "bg": 1325 },
+ { "id": "mon_cat_calico_kitten", "fg": 4098, "bg": 1325 },
+ { "id": "mon_cat_chonker_kitten", "fg": 4101, "bg": 1325 },
+ { "id": "mon_cat_devon_rex_kitten", "fg": 4104, "bg": 1325 },
+ { "id": "mon_cat_longhair_kitten", "fg": 4107, "bg": 1325 },
+ { "id": "mon_cat_maine_coon_kitten", "fg": 4110, "bg": 1325 },
+ { "id": "mon_cat_persian_kitten", "fg": 4113, "bg": 1325 },
+ { "id": "mon_cat_siamese_kitten", "fg": 4119, "bg": 1325 },
+ { "id": "mon_cat_sphynx_kitten", "fg": 4122, "bg": 1325 },
+ { "id": "mon_cat_tabby_kitten", "fg": 4125, "bg": 1325 },
+ { "id": "mon_dog_beagle", "fg": 4134, "bg": 1325 },
+ { "id": "mon_dog_gshepherd", "fg": 4145, "bg": 1324 },
+ { "id": "mon_dog_boxer", "fg": 4136, "bg": 1324 },
+ { "id": "mon_dog_dachshund", "fg": 4141, "bg": 1324 },
+ { "id": "mon_dog_auscattle", "fg": 4130, "bg": 1324 },
+ { "id": "mon_dog_bcollie", "fg": 4132, "bg": 1324 },
+ { "id": "mon_dog_chihuahua", "fg": 4139, "bg": 1325 },
+ { "id": "mon_dog_gpyrenees", "fg": 4143, "bg": 1324 },
+ { "id": "mon_dog_pitbullmix", "fg": 4147, "bg": 1324 },
+ { "id": "mon_dog_samoyed", "fg": 4151, "bg": 1324 },
+ { "id": "mon_dog_auscattle_pup", "fg": 4131, "bg": 1325 },
+ { "id": "mon_dog_bcollie_pup", "fg": 4133, "bg": 1325 },
+ { "id": "mon_dog_beagle_pup", "fg": 4135, "bg": 1325 },
+ { "id": "mon_dog_boxer_pup", "fg": 4137, "bg": 1325 },
+ { "id": "mon_dog_bull_pup", "fg": 4138, "bg": 1325 },
+ { "id": "mon_dog_chihuahua_pup", "fg": 4140, "bg": 1325 },
+ { "id": "mon_dog_dachshund_pup", "fg": 4142, "bg": 1325 },
+ { "id": "mon_dog_gpyrenees_pup", "fg": 4144, "bg": 1325 },
+ { "id": "mon_dog_gshepherd_pup", "fg": 4146, "bg": 1325 },
+ { "id": "mon_dog_pitbullmix_pup", "fg": 4148, "bg": 1325 },
+ { "id": "mon_dog_pup", "fg": 4149, "bg": 1325 },
+ { "id": "mon_dog_rottweiler_pup", "fg": 4150, "bg": 1325 },
+ { "id": "mon_dog_samoyed_pup", "fg": 4152, "bg": 1325 },
+ { "id": "mon_fish_tiny", "fg": 4159 },
+ { "id": "mon_fish_small", "fg": 4158 },
+ { "id": "mon_fish_medium", "fg": 4157 },
+ { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 4156 },
+ { "id": "mon_crow_chick", "fg": 4165, "bg": 1325 },
+ { "id": "mon_duck_chick", "fg": 4166, "bg": 1325 },
+ { "id": "mon_goose_canadian_chick", "fg": 4167, "bg": 1325 },
+ { "id": "mon_cockatrice_chick", "fg": 4169, "bg": 1325 },
+ { "id": "mon_cockatrice", "fg": 4168, "bg": 1325 },
+ { "id": "mon_opossum", "fg": 4183, "bg": 1325 },
+ { "id": "mon_locust", "fg": 4190, "bg": 1324 },
+ { "id": "mon_locust_nymph", "fg": 4191, "bg": 1325 },
+ { "id": "corpse_mon_ant", "fg": 4193 },
+ { "id": "corpse_mon_ant_acid", "fg": 4194 },
+ { "id": "corpse_mon_ant_larva", "fg": 4196 },
+ { "id": "corpse_mon_ant_acid_larva", "fg": 4195 },
+ { "id": "mon_plague_nymph", "fg": 4206, "bg": 1325 },
+ { "id": "mon_plague_vector", "fg": 4207, "bg": 1324 },
+ { "id": "mon_skittering_plague", "fg": 4209, "bg": 1324 },
+ { "id": "mon_chicken_chick", "fg": 4221, "bg": 1325 },
+ { "id": "mon_grasshopper_small", "fg": 4225, "bg": 1325 },
+ {
+ "id": [ "mon_hound_tindalos", "mon_hound_tindalos_afterimage" ],
+ "fg": [
+ { "weight": 1, "sprite": 4227 },
+ { "weight": 1, "sprite": 4228 },
+ { "weight": 1, "sprite": 4229 },
+ { "weight": 1, "sprite": 4230 },
+ { "weight": 1, "sprite": 4231 },
+ { "weight": 1, "sprite": 4232 },
+ { "weight": 1, "sprite": 4233 },
+ { "weight": 1, "sprite": 4234 },
+ { "weight": 1, "sprite": 4235 }
+ ]
+ },
+ { "id": "mon_spawn_raptor", "fg": 4237, "bg": 1324 },
+ { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 4246, "bg": 1324 },
+ { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 4247, "bg": 1324 },
+ { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 4248, "bg": 1324 },
+ { "id": "corpse_mon_zombie_rot", "fg": 4249 },
+ { "id": "mon_crow_mutant_small", "fg": 4251, "bg": 1324 },
+ { "id": "mon_spider_cellar_small", "fg": 4256, "bg": 1325 },
+ { "id": "mon_spider_trapdoor_small", "fg": 4258, "bg": 1325 },
+ { "id": "mon_spider_web_small", "fg": 4260, "bg": 1325 },
+ { "id": "mon_zpider_mass", "fg": 4264, "bg": 1325 },
+ { "id": "lighting_lowlight_dark", "fg": 4283 },
+ { "id": "lighting_boomered_dark", "fg": 4278 },
{
"id": "lighting_hidden",
"fg": [
- { "weight": 100, "sprite": 4126 },
- { "weight": 100, "sprite": 4127 },
- { "weight": 100, "sprite": 4128 },
- { "weight": 100, "sprite": 4129 }
+ { "weight": 100, "sprite": 4279 },
+ { "weight": 100, "sprite": 4280 },
+ { "weight": 100, "sprite": 4281 },
+ { "weight": 100, "sprite": 4282 }
]
},
- { "id": "animation_hit", "fg": 4148 },
- { "id": "cursor", "fg": 4150 },
- { "id": "highlight", "fg": 4152 },
- { "id": "highlight_item", "fg": 4153 },
- { "id": "line_target", "fg": 4151 },
- { "id": "line_trail", "fg": 4154 },
- { "id": "animation_line", "fg": 4149 },
- { "id": "generic_city_building", "fg": 4166, "bg": 4163 },
+ { "id": "animation_hit", "fg": 4301 },
+ { "id": "cursor", "fg": 4303 },
+ { "id": "highlight", "fg": 4305 },
+ { "id": "highlight_item", "fg": 4306 },
+ { "id": "line_target", "fg": 4304 },
+ { "id": "line_trail", "fg": 4307 },
+ { "id": "animation_line", "fg": 4302 },
+ { "id": "generic_city_building", "fg": 4327, "bg": 4324 },
{
"id": [
"abstorefront_1",
@@ -4724,25 +4882,25 @@
"s_sports",
"veterinarian"
],
- "fg": 4166,
- "bg": 4163
+ "fg": 4327,
+ "bg": 4324
},
- { "id": "forest_water", "fg": 4171 },
- { "id": [ "forest", "special_forest" ], "fg": 4164, "bg": 4163 },
- { "id": [ "field", "special_field" ], "fg": 4163 },
- { "id": "open_air", "fg": 4165 },
+ { "id": "forest_water", "fg": 4332 },
+ { "id": [ "forest", "special_forest" ], "fg": 4325, "bg": 4324 },
+ { "id": [ "field", "special_field" ], "fg": 4324 },
+ { "id": "open_air", "fg": 4326 },
{
"id": "railroad",
- "fg": 5188,
- "bg": 5165,
+ "fg": 5354,
+ "bg": 5331,
"multitile": true,
"additional_tiles": [
- { "id": "center", "bg": 5165, "fg": 5182 },
- { "id": "corner", "bg": 5165, "fg": [ 5184, 5186, 5185, 5183 ] },
- { "id": "t_connection", "bg": 5165, "fg": [ 5190, 5192, 5191, 5189 ] },
- { "id": "edge", "bg": 5165, "fg": [ 5188, 5187 ] },
- { "id": "end_piece", "bg": 5165, "fg": [ 5188, 5187, 5188, 5187 ] },
- { "id": "unconnected", "bg": 5165, "fg": [ 5188, 5187 ] }
+ { "id": "center", "bg": 5331, "fg": 5348 },
+ { "id": "corner", "bg": 5331, "fg": [ 5350, 5352, 5351, 5349 ] },
+ { "id": "t_connection", "bg": 5331, "fg": [ 5356, 5358, 5357, 5355 ] },
+ { "id": "edge", "bg": 5331, "fg": [ 5354, 5353 ] },
+ { "id": "end_piece", "bg": 5331, "fg": [ 5354, 5353, 5354, 5353 ] },
+ { "id": "unconnected", "bg": 5331, "fg": [ 5354, 5353 ] }
]
},
{
@@ -4965,19 +5123,19 @@
"urban_13_11",
"urban_13_12"
],
- "fg": [ 4168, 4167, 4169, 4170 ],
- "bg": 4163,
+ "fg": [ 4329, 4328, 4330, 4331 ],
+ "bg": 4324,
"rotates": true
},
- { "id": "anthill", "fg": 4173, "bg": 4163, "rotates": false },
- { "id": "acid_anthill", "fg": 4172, "bg": 4163, "rotates": false },
+ { "id": "anthill", "fg": 4334, "bg": 4324, "rotates": false },
+ { "id": "acid_anthill", "fg": 4333, "bg": 4324, "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": [ 4175, 4174, 4175, 4174 ],
- "bg": 4163,
+ "fg": [ 4336, 4335, 4336, 4335 ],
+ "bg": 4324,
"rotates": true
},
- { "id": [ "desolatebarn", "barn_aban1" ], "fg": 4176, "bg": 4163 },
+ { "id": [ "desolatebarn", "barn_aban1" ], "fg": 4337, "bg": 4324 },
{
"id": [
"2farm_loft_3",
@@ -4990,8 +5148,8 @@
"ranch_camp_66_roof",
"dairy_farm_SE_roof"
],
- "fg": [ 4175, 4174, 4175, 4174 ],
- "bg": 4165,
+ "fg": [ 4336, 4335, 4336, 4335 ],
+ "bg": 4326,
"rotates": true
},
{
@@ -5013,8 +5171,8 @@
"cabin_strange_b",
"riverside_dwelling"
],
- "fg": [ 4178, 4177, 4179, 4180 ],
- "bg": 4163,
+ "fg": [ 4339, 4338, 4340, 4341 ],
+ "bg": 4324,
"rotates": true
},
{
@@ -5032,8 +5190,8 @@
"cabin_lake_roof",
"lake_cabin_boathouse_roof"
],
- "fg": [ 4178, 4177, 4179, 4180 ],
- "bg": 4165,
+ "fg": [ 4339, 4338, 4340, 4341 ],
+ "bg": 4326,
"rotates": true
},
{
@@ -5049,12 +5207,12 @@
"ws_survivor_camp",
"homelesscamp"
],
- "fg": 4181,
- "bg": 4163
+ "fg": 4342,
+ "bg": 4324
},
- { "id": "cave", "fg": 4182, "bg": 4163 },
- { "id": "cave_underground", "fg": 4182 },
- { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 4184, "rotates": false },
+ { "id": "cave", "fg": 4343, "bg": 4324 },
+ { "id": "cave_underground", "fg": 4343 },
+ { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 4345, "rotates": false },
{
"id": [
"airliner_1a",
@@ -5087,26 +5245,26 @@
"airliner_2j",
"airliner_3j"
],
- "fg": 4185
+ "fg": 4346
},
- { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 4165 },
- { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 4192, 4191 ], "rotates": true },
- { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 4198, 4197, 4199, 4200 ], "rotates": true },
- { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 4187, 4189, 4190, 4188 ], "rotates": true },
- { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 4188, 4187, 4189, 4190 ], "rotates": true },
+ { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 4326 },
+ { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 4353, 4352 ], "rotates": true },
+ { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 4359, 4358, 4360, 4361 ], "rotates": true },
+ { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 4348, 4350, 4351, 4349 ], "rotates": true },
+ { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 4349, 4348, 4350, 4351 ], "rotates": true },
{
"id": [ "shelter", "shelter_1", "shelter_2", "shelter_vandal", "shelter_1_vandal", "shelter_2_vandal" ],
- "fg": [ 4203, 4202, 4204, 4205 ],
- "bg": 4163,
+ "fg": [ 4364, 4363, 4365, 4366 ],
+ "bg": 4324,
"rotates": true
},
{
"id": [ "shelter_roof", "shelter_roof_1", "shelter_roof_2" ],
- "fg": [ 4203, 4202, 4204, 4205 ],
- "bg": 4165,
+ "fg": [ 4364, 4363, 4365, 4366 ],
+ "bg": 4326,
"rotates": true
},
- { "id": "shelter_under", "fg": [ 4203, 4202, 4204, 4205 ], "rotates": true },
+ { "id": "shelter_under", "fg": [ 4364, 4363, 4365, 4366 ], "rotates": true },
{
"id": [
"2farm_1",
@@ -5175,19 +5333,19 @@
"horse_farm_isherwood_2",
"yard"
],
- "fg": 4206
+ "fg": 4367
},
{
"id": "forest_trail",
- "fg": 4222,
+ "fg": 4383,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4207 },
- { "id": "corner", "fg": [ 4209, 4211, 4210, 4208 ] },
- { "id": "t_connection", "fg": [ 4219, 4221, 4220, 4218 ] },
- { "id": "edge", "fg": [ 4213, 4212 ] },
- { "id": "end_piece", "fg": [ 4215, 4217, 4216, 4214 ] },
- { "id": "unconnected", "fg": [ 4222, 4222 ] }
+ { "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 ] }
]
},
{
@@ -5204,47 +5362,46 @@
"garage_gas_roof_2",
"garage_gas_roof_3"
],
- "fg": [ 4224, 4223, 4225, 4226 ],
- "bg": 4163
- },
- { "id": "2farm_7", "fg": 4207 },
- { "id": "crater", "fg": 5116, "bg": 4163 },
- { "id": "ranch_camp_17", "fg": 5808, "bg": 4254 },
- { "id": "ranch_camp_76", "fg": 4207 },
- { "id": "ranch_camp_77", "fg": [ 4308, 4307, 4309, 4310 ], "bg": 4163, "rotates": true },
- { "id": [ "slimepit_down", "slimepit" ], "fg": 5436 },
- { "id": "lighthouse_z2", "fg": 4234, "bg": 4165 },
- { "id": "lighthouse_z3", "fg": 4235, "bg": 4165 },
- { "id": "lighthouse_z4", "fg": 4236, "bg": 4165 },
- { "id": "lighthouse_z5", "fg": 4237, "bg": 4165 },
- { "id": "lighthouse_roof", "fg": 4233, "bg": 4165 },
- { "id": "note_!_black", "fg": 4238 },
- { "id": "note_!_red", "fg": 4251 },
- { "id": "note_!_green", "fg": 4243 },
- { "id": "note_!_brown", "fg": 4240 },
- { "id": "note_!_blue", "fg": 4239 },
- { "id": "note_!_magenta", "fg": 4249 },
- { "id": "note_!_cyan", "fg": 4241 },
- { "id": "note_!_light_gray", "fg": 4246 },
- { "id": "note_!_dark_gray", "fg": 4242 },
- { "id": "note_!_light_red", "fg": 4248 },
- { "id": "note_!_light_green", "fg": 4247 },
- { "id": "note_!_yellow", "fg": 4253 },
- { "id": "note_!_light_blue", "fg": 4244 },
- { "id": "note_!_pink", "fg": 4250 },
- { "id": "note_!_light_cyan", "fg": 4245 },
- { "id": "note_!_white", "fg": 4252 },
- { "id": "2farm_4", "fg": [ 4262, 4261, 4263, 4264 ], "rotates": true },
- { "id": "2farm_8", "fg": [ 4263, 4264, 4262, 4261 ], "rotates": true },
- { "id": "dairy_farm_NW", "fg": [ 4264, 4262, 4261, 4263 ], "rotates": true },
- { "id": "dairy_farm_NE", "fg": [ 4261, 4263, 4264, 4262 ], "rotates": true },
- { "id": "ranch_camp_1", "fg": [ 4258, 4257, 4259, 4260 ], "rotates": true },
+ "fg": [ 4385, 4384, 4386, 4387 ],
+ "bg": 4324
+ },
+ { "id": "2farm_7", "fg": 4368 },
+ { "id": "crater", "fg": 5282, "bg": 4324 },
+ { "id": "ranch_camp_17", "fg": 5990, "bg": 4415 },
+ { "id": "ranch_camp_76", "fg": 4368 },
+ { "id": "ranch_camp_77", "fg": [ 4469, 4468, 4470, 4471 ], "bg": 4324, "rotates": true },
+ { "id": "lighthouse_z2", "fg": 4395, "bg": 4326 },
+ { "id": "lighthouse_z3", "fg": 4396, "bg": 4326 },
+ { "id": "lighthouse_z4", "fg": 4397, "bg": 4326 },
+ { "id": "lighthouse_z5", "fg": 4398, "bg": 4326 },
+ { "id": "lighthouse_roof", "fg": 4394, "bg": 4326 },
+ { "id": "note_!_black", "fg": 4399 },
+ { "id": "note_!_red", "fg": 4412 },
+ { "id": "note_!_green", "fg": 4404 },
+ { "id": "note_!_brown", "fg": 4401 },
+ { "id": "note_!_blue", "fg": 4400 },
+ { "id": "note_!_magenta", "fg": 4410 },
+ { "id": "note_!_cyan", "fg": 4402 },
+ { "id": "note_!_light_gray", "fg": 4407 },
+ { "id": "note_!_dark_gray", "fg": 4403 },
+ { "id": "note_!_light_red", "fg": 4409 },
+ { "id": "note_!_light_green", "fg": 4408 },
+ { "id": "note_!_yellow", "fg": 4414 },
+ { "id": "note_!_light_blue", "fg": 4405 },
+ { "id": "note_!_pink", "fg": 4411 },
+ { "id": "note_!_light_cyan", "fg": 4406 },
+ { "id": "note_!_white", "fg": 4413 },
+ { "id": "2farm_4", "fg": [ 4423, 4422, 4424, 4425 ], "rotates": true },
+ { "id": "2farm_8", "fg": [ 4424, 4425, 4423, 4422 ], "rotates": true },
+ { "id": "dairy_farm_NW", "fg": [ 4425, 4423, 4422, 4424 ], "rotates": true },
+ { "id": "dairy_farm_NE", "fg": [ 4422, 4424, 4425, 4423 ], "rotates": true },
+ { "id": "ranch_camp_1", "fg": [ 4419, 4418, 4420, 4421 ], "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": [ 4266, 4265, 4267, 4268 ],
+ "fg": [ 4427, 4426, 4428, 4429 ],
"rotates": true
},
- { "id": "ranch_camp_9", "fg": [ 4257, 4259, 4260, 4258 ], "rotates": true },
+ { "id": "ranch_camp_9", "fg": [ 4418, 4420, 4421, 4419 ], "rotates": true },
{
"id": [
"ranch_camp_10",
@@ -5255,7 +5412,7 @@
"ranch_camp_55",
"ranch_camp_64"
],
- "fg": [ 4268, 4266, 4265, 4267 ],
+ "fg": [ 4429, 4427, 4426, 4428 ],
"rotates": true
},
{
@@ -5305,7 +5462,7 @@
"ranch_camp_70",
"ranch_camp_71"
],
- "fg": 4254,
+ "fg": 4415,
"rotates": true
},
{
@@ -5318,741 +5475,744 @@
"ranch_camp_63",
"ranch_camp_72"
],
- "fg": [ 4265, 4267, 4268, 4266 ],
+ "fg": [ 4426, 4428, 4429, 4427 ],
"rotates": true
},
- { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 4260, 4258, 4257, 4259 ], "rotates": true },
+ { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 4421, 4419, 4418, 4420 ], "rotates": true },
{
"id": [ "ranch_camp_74", "ranch_camp_79", "ranch_camp_80" ],
- "fg": [ 4267, 4268, 4266, 4265 ],
+ "fg": [ 4428, 4429, 4427, 4426 ],
"rotates": true
},
- { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 4259, 4260, 4258, 4257 ], "rotates": true },
- { "id": "pond_field", "fg": 4271, "bg": 4163, "rotates": false },
- { "id": "pond_forest", "fg": 4272, "bg": 4163, "rotates": false },
- { "id": "pond_swamp", "fg": 4273, "bg": 4163, "rotates": false },
- { "id": "hot_springs", "fg": 4270, "bg": 4163, "rotates": false },
+ { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 4420, 4421, 4419, 4418 ], "rotates": true },
+ { "id": "pond_field", "fg": 4432, "bg": 4324, "rotates": false },
+ { "id": "pond_forest", "fg": 4433, "bg": 4324, "rotates": false },
+ { "id": "pond_swamp", "fg": 4434, "bg": 4324, "rotates": false },
+ { "id": "hot_springs", "fg": 4431, "bg": 4324, "rotates": false },
{
"id": [ "pool", "pool_1", "pool_2", "pool_3", "pool_4" ],
- "fg": [ 4275, 4274, 4276, 4277 ],
- "bg": 4163,
+ "fg": [ 4436, 4435, 4437, 4438 ],
+ "bg": 4324,
"rotates": true
},
- { "id": [ "pool_5", "pool_6" ], "fg": [ 4279, 4278, 4280, 4281 ], "bg": 4163, "rotates": true },
+ { "id": [ "pool_5", "pool_6" ], "fg": [ 4440, 4439, 4441, 4442 ], "bg": 4324, "rotates": true },
{
"id": [ "pool_roof", "pool_roof_1", "pool_roof_2", "pool_roof_3", "pool_roof_4" ],
- "fg": [ 4275, 4274, 4276, 4277 ],
- "bg": 4165,
+ "fg": [ 4436, 4435, 4437, 4438 ],
+ "bg": 4326,
"rotates": true
},
- { "id": "publicgarden", "fg": 4282 },
- { "id": "PublicPond_1a", "fg": [ 4286, 4284, 4283, 4285 ], "rotates": true },
- { "id": "PublicPond_1b", "fg": [ 4283, 4285, 4286, 4284 ], "rotates": true },
- { "id": "river_nw", "fg": 4295, "bg": 4163, "rotates": false },
- { "id": "river_sw", "fg": 4298, "bg": 4163, "rotates": false },
- { "id": "river_se", "fg": 4296, "bg": 4163, "rotates": false },
- { "id": "river_ne", "fg": 4293, "bg": 4163, "rotates": false },
- { "id": "river_north", "fg": 4294, "bg": 4163, "rotates": false },
- { "id": "river_west", "fg": 4299, "bg": 4163, "rotates": false },
- { "id": "river_east", "fg": 4292, "bg": 4163, "rotates": false },
- { "id": "river_south", "fg": 4297, "bg": 4163, "rotates": false },
- { "id": "river_center", "fg": 4291, "bg": 4163, "rotates": false },
- { "id": "river", "fg": [ 4294, 4292, 4297, 4299 ], "bg": 4163, "rotates": true },
- { "id": "river_c_not_nw", "fg": 4288, "bg": 4163, "rotates": false },
- { "id": "river_c_not_ne", "fg": 4287, "bg": 4163, "rotates": false },
- { "id": "river_c_not_sw", "fg": 4290, "bg": 4163, "rotates": false },
- { "id": "river_c_not_se", "fg": 4289, "bg": 4163, "rotates": false },
+ { "id": "publicgarden", "fg": 4443 },
+ { "id": "PublicPond_1a", "fg": [ 4447, 4445, 4444, 4446 ], "rotates": true },
+ { "id": "PublicPond_1b", "fg": [ 4444, 4446, 4447, 4445 ], "rotates": true },
+ { "id": "river_nw", "fg": 4456, "bg": 4324, "rotates": false },
+ { "id": "river_sw", "fg": 4459, "bg": 4324, "rotates": false },
+ { "id": "river_se", "fg": 4457, "bg": 4324, "rotates": false },
+ { "id": "river_ne", "fg": 4454, "bg": 4324, "rotates": false },
+ { "id": "river_north", "fg": 4455, "bg": 4324, "rotates": false },
+ { "id": "river_west", "fg": 4460, "bg": 4324, "rotates": false },
+ { "id": "river_east", "fg": 4453, "bg": 4324, "rotates": false },
+ { "id": "river_south", "fg": 4458, "bg": 4324, "rotates": false },
+ { "id": "river_center", "fg": 4452, "bg": 4324, "rotates": false },
+ { "id": "river", "fg": [ 4455, 4453, 4458, 4460 ], "bg": 4324, "rotates": true },
+ { "id": "river_c_not_nw", "fg": 4449, "bg": 4324, "rotates": false },
+ { "id": "river_c_not_ne", "fg": 4448, "bg": 4324, "rotates": false },
+ { "id": "river_c_not_sw", "fg": 4451, "bg": 4324, "rotates": false },
+ { "id": "river_c_not_se", "fg": 4450, "bg": 4324, "rotates": false },
{
"id": "road",
- "fg": 4315,
+ "fg": 4476,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4300 },
- { "id": "corner", "fg": [ 4302, 4304, 4303, 4301 ] },
- { "id": "t_connection", "fg": [ 4312, 4314, 4313, 4311 ] },
- { "id": "edge", "fg": [ 4306, 4305 ] },
- { "id": "end_piece", "fg": [ 4308, 4310, 4309, 4307 ] },
- { "id": "unconnected", "fg": [ 4315, 4315 ] }
+ { "id": "center", "fg": 4461 },
+ { "id": "corner", "fg": [ 4463, 4465, 4464, 4462 ], "bg": 4324 },
+ { "id": "t_connection", "fg": [ 4473, 4475, 4474, 4472 ] },
+ { "id": "edge", "fg": [ 4467, 4466 ] },
+ { "id": "end_piece", "fg": [ 4469, 4471, 4470, 4468 ] },
+ { "id": "unconnected", "fg": [ 4476, 4476 ], "bg": 4324 }
]
},
+ { "id": "road_nesw_manhole", "fg": 4477, "bg": 4461 },
{
"id": [ "house_farm", "farm_2", "farm_isherwood_2", "2farm_11" ],
- "fg": [ 4317, 4316, 4318, 4319 ],
- "bg": 4163,
+ "fg": [ 4479, 4478, 4480, 4481 ],
+ "bg": 4324,
"rotates": true
},
- { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 4318, 4319, 4317, 4316 ], "bg": 4163, "rotates": true },
+ { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 4480, 4481, 4479, 4478 ], "bg": 4324, "rotates": true },
{
"id": [ "house_farm_roof", "farm_2_roof", "farm_isherwood_2_roof", "2farm_roof_11" ],
- "fg": [ 4317, 4316, 4318, 4319 ],
- "bg": 4165,
+ "fg": [ 4479, 4478, 4480, 4481 ],
+ "bg": 4326,
"rotates": true
},
{
"id": [ "dairy_farm_SW_roof", "ranch_camp_68_roof" ],
- "fg": [ 4318, 4319, 4317, 4316 ],
- "bg": 4165,
+ "fg": [ 4480, 4481, 4479, 4478 ],
+ "bg": 4326,
"rotates": true
},
- { "id": "farm_isherwood_2_cellar", "fg": [ 4317, 4316, 4318, 4319 ], "rotates": true },
- { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 4321, 4320, 4321, 4320 ], "bg": 4163, "rotates": true },
+ { "id": "farm_isherwood_2_cellar", "fg": [ 4479, 4478, 4480, 4481 ], "rotates": true },
+ { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 4483, 4482, 4483, 4482 ], "bg": 4324, "rotates": true },
{
"id": [ "2silos_1", "2silos_2", "2silos_roof" ],
- "fg": [ 4321, 4320, 4321, 4320 ],
- "bg": 4165,
+ "fg": [ 4483, 4482, 4483, 4482 ],
+ "bg": 4326,
"rotates": true
},
- { "id": "hunter_shack", "fg": [ 4327, 4326, 4328, 4329 ], "bg": 4163, "rotates": true },
- { "id": "hunter_shack_1", "fg": [ 4324, 4322, 4323, 4325 ], "bg": 4163, "rotates": true },
- { "id": "hunter_shack_roof", "fg": [ 4327, 4326, 4328, 4329 ], "bg": 4165, "rotates": true },
- { "id": "hunter_shack_roof_1", "fg": [ 4324, 4322, 4323, 4325 ], "bg": 4165, "rotates": true },
- { "id": "ws_fire_lookout_tower_base", "fg": 4330, "bg": 4163, "rotates": false },
- { "id": "ws_fire_lookout_tower_f1", "fg": 4330, "bg": 4165 },
- { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 4331, "bg": 4165 },
- { "id": "t_reb_cage", "fg": 4333, "bg": 5245 },
+ { "id": "slimepit_top", "fg": 4484, "bg": 4324 },
+ { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 5602 },
+ { "id": "hunter_shack", "fg": [ 4490, 4489, 4491, 4492 ], "bg": 4324, "rotates": true },
+ { "id": "hunter_shack_1", "fg": [ 4487, 4485, 4486, 4488 ], "bg": 4324, "rotates": true },
+ { "id": "hunter_shack_roof", "fg": [ 4490, 4489, 4491, 4492 ], "bg": 4326, "rotates": true },
+ { "id": "hunter_shack_roof_1", "fg": [ 4487, 4485, 4486, 4488 ], "bg": 4326, "rotates": true },
+ { "id": "ws_fire_lookout_tower_base", "fg": 4493, "bg": 4324, "rotates": false },
+ { "id": "ws_fire_lookout_tower_f1", "fg": 4493, "bg": 4326 },
+ { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 4494, "bg": 4326 },
+ { "id": "t_reb_cage", "fg": 4496, "bg": 5411 },
{
"id": "f_earthbag_half",
"multitile": true,
- "fg": 4349,
- "bg": 4894,
+ "fg": 4512,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "fg": 4334 },
- { "id": "corner", "fg": [ 4336, 4338, 4337, 4335 ] },
- { "id": "t_connection", "fg": [ 4346, 4348, 4347, 4345 ] },
- { "id": "edge", "fg": [ 4340, 4339 ] },
- { "id": "end_piece", "fg": [ 4342, 4344, 4343, 4341 ] },
- { "id": "unconnected", "fg": [ 4349, 4349 ] }
+ { "id": "center", "fg": 4497 },
+ { "id": "corner", "fg": [ 4499, 4501, 4500, 4498 ] },
+ { "id": "t_connection", "fg": [ 4509, 4511, 4510, 4508 ] },
+ { "id": "edge", "fg": [ 4503, 4502 ] },
+ { "id": "end_piece", "fg": [ 4505, 4507, 4506, 4504 ] },
+ { "id": "unconnected", "fg": [ 4512, 4512 ] }
]
},
- { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 5096 },
- { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 5420 },
+ { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 5262 },
+ { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 5586 },
{
"id": "t_splitrail_fence",
"multitile": true,
- "fg": 4392,
- "bg": 4894,
+ "fg": 4555,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 4377 },
- { "id": "corner", "bg": 4894, "fg": [ 4379, 4381, 4380, 4378 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 4389, 4391, 4390, 4388 ] },
- { "id": "edge", "bg": 4894, "fg": [ 4383, 4382 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 4385, 4387, 4386, 4384 ] },
- { "bg": 4894, "id": "unconnected", "fg": [ 4392, 4392 ] }
+ { "id": "center", "bg": 5057, "fg": 4540 },
+ { "id": "corner", "bg": 5057, "fg": [ 4542, 4544, 4543, 4541 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 4552, 4554, 4553, 4551 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 4546, 4545 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 4548, 4550, 4549, 4547 ] },
+ { "bg": 5057, "id": "unconnected", "fg": [ 4555, 4555 ] }
]
},
{
"id": "t_splitrail_fence_season_summer",
"multitile": true,
- "fg": 4392,
- "bg": 4904,
+ "fg": 4555,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": 4377 },
- { "id": "corner", "bg": 4904, "fg": [ 4379, 4381, 4380, 4378 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 4389, 4391, 4390, 4388 ] },
- { "id": "edge", "bg": 4904, "fg": [ 4383, 4382 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 4385, 4387, 4386, 4384 ] },
- { "bg": 4904, "id": "unconnected", "fg": [ 4392, 4392 ] }
+ { "id": "center", "bg": 5067, "fg": 4540 },
+ { "id": "corner", "bg": 5067, "fg": [ 4542, 4544, 4543, 4541 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 4552, 4554, 4553, 4551 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 4546, 4545 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 4548, 4550, 4549, 4547 ] },
+ { "bg": 5067, "id": "unconnected", "fg": [ 4555, 4555 ] }
]
},
{
"id": "t_splitrail_fence_season_autumn",
"multitile": true,
- "fg": 4392,
- "bg": 4899,
+ "fg": 4555,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": 4377 },
- { "id": "corner", "bg": 4899, "fg": [ 4379, 4381, 4380, 4378 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 4389, 4391, 4390, 4388 ] },
- { "id": "edge", "bg": 4899, "fg": [ 4383, 4382 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 4385, 4387, 4386, 4384 ] },
- { "bg": 4899, "id": "unconnected", "fg": [ 4392, 4392 ] }
+ { "id": "center", "bg": 5062, "fg": 4540 },
+ { "id": "corner", "bg": 5062, "fg": [ 4542, 4544, 4543, 4541 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 4552, 4554, 4553, 4551 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 4546, 4545 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 4548, 4550, 4549, 4547 ] },
+ { "bg": 5062, "id": "unconnected", "fg": [ 4555, 4555 ] }
]
},
{
"id": "t_splitrail_fence_season_winter",
"multitile": true,
- "fg": 4392,
- "bg": 4358,
+ "fg": 4555,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": 4377 },
- { "id": "corner", "bg": 4358, "fg": [ 4379, 4381, 4380, 4378 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4389, 4391, 4390, 4388 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4383, 4382 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4385, 4387, 4386, 4384 ] },
- { "bg": 4358, "id": "unconnected", "fg": [ 4392, 4392 ] }
+ { "id": "center", "bg": 4521, "fg": 4540 },
+ { "id": "corner", "bg": 4521, "fg": [ 4542, 4544, 4543, 4541 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4552, 4554, 4553, 4551 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4546, 4545 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4548, 4550, 4549, 4547 ] },
+ { "bg": 4521, "id": "unconnected", "fg": [ 4555, 4555 ] }
]
},
- { "id": "t_stairs_down", "fg": 4393 },
- { "id": "t_wood_stairs_down", "fg": 4394 },
+ { "id": "t_stairs_down", "fg": 4556 },
+ { "id": "t_wood_stairs_down", "fg": 4557 },
{
"id": "t_adobe_brick_wall",
"multitile": true,
- "fg": 4410,
+ "fg": 4573,
"additional_tiles": [
- { "id": "center", "fg": 4395 },
- { "id": "corner", "fg": [ 4397, 4399, 4398, 4396 ] },
- { "id": "t_connection", "fg": [ 4407, 4409, 4408, 4406 ] },
- { "id": "edge", "fg": [ 4401, 4400 ] },
- { "id": "end_piece", "fg": [ 4403, 4405, 4404, 4402 ] },
- { "id": "unconnected", "fg": [ 4410, 4410 ] }
+ { "id": "center", "fg": 4558 },
+ { "id": "corner", "fg": [ 4560, 4562, 4561, 4559 ] },
+ { "id": "t_connection", "fg": [ 4570, 4572, 4571, 4569 ] },
+ { "id": "edge", "fg": [ 4564, 4563 ] },
+ { "id": "end_piece", "fg": [ 4566, 4568, 4567, 4565 ] },
+ { "id": "unconnected", "fg": [ 4573, 4573 ] }
]
},
- { "id": "t_bars", "fg": 4411 },
+ { "id": "t_bars", "fg": 4574 },
{
"id": "t_brick_wall",
"multitile": true,
- "fg": 4427,
+ "fg": 4590,
"additional_tiles": [
- { "id": "center", "fg": 4412 },
- { "id": "corner", "fg": [ 4414, 4416, 4415, 4413 ] },
- { "id": "t_connection", "fg": [ 4424, 4426, 4425, 4423 ] },
- { "id": "edge", "fg": [ 4418, 4417 ] },
- { "id": "end_piece", "fg": [ 4420, 4422, 4421, 4419 ] },
- { "id": "unconnected", "fg": 4427 }
+ { "id": "center", "fg": 4575 },
+ { "id": "corner", "fg": [ 4577, 4579, 4578, 4576 ] },
+ { "id": "t_connection", "fg": [ 4587, 4589, 4588, 4586 ] },
+ { "id": "edge", "fg": [ 4581, 4580 ] },
+ { "id": "end_piece", "fg": [ 4583, 4585, 4584, 4582 ] },
+ { "id": "unconnected", "fg": 4590 }
]
},
{
"id": "t_bridge",
"multitile": true,
- "fg": 4443,
+ "fg": 4606,
"additional_tiles": [
- { "id": "center", "fg": 4428 },
- { "id": "corner", "fg": [ 4430, 4432, 4431, 4429 ] },
- { "id": "t_connection", "fg": [ 4440, 4442, 4441, 4439 ] },
- { "id": "edge", "fg": [ 4434, 4433 ] },
- { "id": "end_piece", "fg": [ 4436, 4438, 4437, 4435 ] },
- { "id": "unconnected", "fg": [ 4443, 4443 ] }
+ { "id": "center", "fg": 4591 },
+ { "id": "corner", "fg": [ 4593, 4595, 4594, 4592 ] },
+ { "id": "t_connection", "fg": [ 4603, 4605, 4604, 4602 ] },
+ { "id": "edge", "fg": [ 4597, 4596 ] },
+ { "id": "end_piece", "fg": [ 4599, 4601, 4600, 4598 ] },
+ { "id": "unconnected", "fg": [ 4606, 4606 ] }
]
},
{
"id": "t_carpet_green",
"multitile": true,
- "fg": 4462,
+ "fg": 4625,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 4444 },
- { "weight": 1, "sprite": 4445 },
- { "weight": 1, "sprite": 4446 },
- { "weight": 1, "sprite": 4447 }
+ { "weight": 1, "sprite": 4607 },
+ { "weight": 1, "sprite": 4608 },
+ { "weight": 1, "sprite": 4609 },
+ { "weight": 1, "sprite": 4610 }
]
},
- { "id": "corner", "fg": [ 4449, 4451, 4450, 4448 ] },
- { "id": "t_connection", "fg": [ 4459, 4461, 4460, 4458 ] },
- { "id": "edge", "fg": [ 4453, 4452 ] },
- { "id": "end_piece", "fg": [ 4455, 4457, 4456, 4454 ] },
- { "id": "unconnected", "fg": 4462 }
+ { "id": "corner", "fg": [ 4612, 4614, 4613, 4611 ] },
+ { "id": "t_connection", "fg": [ 4622, 4624, 4623, 4621 ] },
+ { "id": "edge", "fg": [ 4616, 4615 ] },
+ { "id": "end_piece", "fg": [ 4618, 4620, 4619, 4617 ] },
+ { "id": "unconnected", "fg": 4625 }
]
},
{
"id": "t_carpet_purple",
"multitile": true,
- "fg": 4481,
+ "fg": 4644,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 4463 },
- { "weight": 1, "sprite": 4464 },
- { "weight": 1, "sprite": 4465 },
- { "weight": 1, "sprite": 4466 }
+ { "weight": 1, "sprite": 4626 },
+ { "weight": 1, "sprite": 4627 },
+ { "weight": 1, "sprite": 4628 },
+ { "weight": 1, "sprite": 4629 }
]
},
- { "id": "corner", "fg": [ 4468, 4470, 4469, 4467 ] },
- { "id": "t_connection", "fg": [ 4478, 4480, 4479, 4477 ] },
- { "id": "edge", "fg": [ 4472, 4471 ] },
- { "id": "end_piece", "fg": [ 4474, 4476, 4475, 4473 ] },
- { "id": "unconnected", "fg": 4481 }
+ { "id": "corner", "fg": [ 4631, 4633, 4632, 4630 ] },
+ { "id": "t_connection", "fg": [ 4641, 4643, 4642, 4640 ] },
+ { "id": "edge", "fg": [ 4635, 4634 ] },
+ { "id": "end_piece", "fg": [ 4637, 4639, 4638, 4636 ] },
+ { "id": "unconnected", "fg": 4644 }
]
},
{
"id": "t_carpet_red",
"multitile": true,
- "fg": 4497,
+ "fg": 4660,
"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 }
+ { "id": "center", "fg": 4645 },
+ { "id": "corner", "fg": [ 4647, 4649, 4648, 4646 ] },
+ { "id": "t_connection", "fg": [ 4657, 4659, 4658, 4656 ] },
+ { "id": "edge", "fg": [ 4651, 4650 ] },
+ { "id": "end_piece", "fg": [ 4653, 4655, 4654, 4652 ] },
+ { "id": "unconnected", "fg": 4660 }
]
},
{
"id": "t_carpet_yellow",
"multitile": true,
- "fg": 4513,
+ "fg": 4676,
"additional_tiles": [
- { "id": "center", "fg": 4498 },
- { "id": "corner", "fg": [ 4500, 4502, 4501, 4499 ] },
- { "id": "t_connection", "fg": [ 4510, 4512, 4511, 4509 ] },
- { "id": "edge", "fg": [ 4504, 4503 ] },
- { "id": "end_piece", "fg": [ 4506, 4508, 4507, 4505 ] },
- { "id": "unconnected", "fg": 4513 }
+ { "id": "center", "fg": 4661 },
+ { "id": "corner", "fg": [ 4663, 4665, 4664, 4662 ] },
+ { "id": "t_connection", "fg": [ 4673, 4675, 4674, 4672 ] },
+ { "id": "edge", "fg": [ 4667, 4666 ] },
+ { "id": "end_piece", "fg": [ 4669, 4671, 4670, 4668 ] },
+ { "id": "unconnected", "fg": 4676 }
]
},
{
"id": "t_chainfence",
- "fg": 4529,
+ "fg": 4692,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4514, "bg": 5096 },
- { "id": "corner", "fg": [ 4516, 4518, 4517, 4515 ], "bg": 5096 },
- { "id": "t_connection", "fg": [ 4526, 4528, 4527, 4525 ], "bg": 5096 },
- { "id": "edge", "fg": [ 4520, 4519 ], "bg": 5096 },
- { "id": "end_piece", "fg": [ 4522, 4524, 4523, 4521 ], "bg": 5096 },
- { "id": "unconnected", "fg": [ 4529, 4529 ], "bg": 5096 }
+ { "id": "center", "fg": 4677, "bg": 5262 },
+ { "id": "corner", "fg": [ 4679, 4681, 4680, 4678 ], "bg": 5262 },
+ { "id": "t_connection", "fg": [ 4689, 4691, 4690, 4688 ], "bg": 5262 },
+ { "id": "edge", "fg": [ 4683, 4682 ], "bg": 5262 },
+ { "id": "end_piece", "fg": [ 4685, 4687, 4686, 4684 ], "bg": 5262 },
+ { "id": "unconnected", "fg": [ 4692, 4692 ], "bg": 5262 }
],
- "bg": 5096
+ "bg": 5262
},
{
"id": "t_chainfence_season_winter",
- "fg": 4529,
+ "fg": 4692,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4514, "bg": 4358 },
- { "id": "corner", "fg": [ 4516, 4518, 4517, 4515 ], "bg": 4358 },
- { "id": "t_connection", "fg": [ 4526, 4528, 4527, 4525 ], "bg": 4358 },
- { "id": "edge", "fg": [ 4520, 4519 ], "bg": 4358 },
- { "id": "end_piece", "fg": [ 4522, 4524, 4523, 4521 ], "bg": 4358 },
- { "id": "unconnected", "fg": [ 4529, 4529 ], "bg": 4358 }
+ { "id": "center", "fg": 4677, "bg": 4521 },
+ { "id": "corner", "fg": [ 4679, 4681, 4680, 4678 ], "bg": 4521 },
+ { "id": "t_connection", "fg": [ 4689, 4691, 4690, 4688 ], "bg": 4521 },
+ { "id": "edge", "fg": [ 4683, 4682 ], "bg": 4521 },
+ { "id": "end_piece", "fg": [ 4685, 4687, 4686, 4684 ], "bg": 4521 },
+ { "id": "unconnected", "fg": [ 4692, 4692 ], "bg": 4521 }
],
- "bg": 4358
+ "bg": 4521
},
{
"id": "t_clay",
"multitile": true,
- "fg": 4545,
- "bg": 4894,
+ "fg": 4708,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 4530 },
- { "id": "corner", "bg": 4894, "fg": [ 4532, 4534, 4533, 4531 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 4542, 4544, 4543, 4541 ] },
- { "id": "edge", "bg": 4894, "fg": [ 4536, 4535 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 4538, 4540, 4539, 4537 ] },
- { "bg": 4894, "id": "unconnected", "fg": 4545 }
+ { "id": "center", "bg": 5057, "fg": 4693 },
+ { "id": "corner", "bg": 5057, "fg": [ 4695, 4697, 4696, 4694 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 4705, 4707, 4706, 4704 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 4699, 4698 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 4701, 4703, 4702, 4700 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 4708 }
]
},
{
"id": "t_clay_season_summer",
"multitile": true,
- "fg": 4545,
- "bg": 4904,
+ "fg": 4708,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": 4530 },
- { "id": "corner", "bg": 4904, "fg": [ 4532, 4534, 4533, 4531 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 4542, 4544, 4543, 4541 ] },
- { "id": "edge", "bg": 4904, "fg": [ 4536, 4535 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 4538, 4540, 4539, 4537 ] },
- { "bg": 4904, "id": "unconnected", "fg": 4545 }
+ { "id": "center", "bg": 5067, "fg": 4693 },
+ { "id": "corner", "bg": 5067, "fg": [ 4695, 4697, 4696, 4694 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 4705, 4707, 4706, 4704 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 4699, 4698 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 4701, 4703, 4702, 4700 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 4708 }
]
},
{
"id": "t_clay_season_autumn",
"multitile": true,
- "fg": 4545,
- "bg": 4899,
+ "fg": 4708,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": 4530 },
- { "id": "corner", "bg": 4899, "fg": [ 4532, 4534, 4533, 4531 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 4542, 4544, 4543, 4541 ] },
- { "id": "edge", "bg": 4899, "fg": [ 4536, 4535 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 4538, 4540, 4539, 4537 ] },
- { "bg": 4899, "id": "unconnected", "fg": 4545 }
+ { "id": "center", "bg": 5062, "fg": 4693 },
+ { "id": "corner", "bg": 5062, "fg": [ 4695, 4697, 4696, 4694 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 4705, 4707, 4706, 4704 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 4699, 4698 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 4701, 4703, 4702, 4700 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 4708 }
]
},
{
"id": "t_clay_season_winter",
"multitile": true,
- "fg": 4545,
- "bg": 4358,
+ "fg": 4708,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": 4530 },
- { "id": "corner", "bg": 4358, "fg": [ 4532, 4534, 4533, 4531 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4542, 4544, 4543, 4541 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4536, 4535 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4538, 4540, 4539, 4537 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4545 }
+ { "id": "center", "bg": 4521, "fg": 4693 },
+ { "id": "corner", "bg": 4521, "fg": [ 4695, 4697, 4696, 4694 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4705, 4707, 4706, 4704 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4699, 4698 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4701, 4703, 4702, 4700 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 4708 }
]
},
{
"id": "t_concrete",
"multitile": true,
- "fg": 4561,
+ "fg": 4724,
"additional_tiles": [
- { "id": "center", "fg": 4546 },
- { "id": "corner", "fg": [ 4548, 4550, 4549, 4547 ] },
- { "id": "t_connection", "fg": [ 4558, 4560, 4559, 4557 ] },
- { "id": "edge", "fg": [ 4552, 4551 ] },
- { "id": "end_piece", "fg": [ 4554, 4556, 4555, 4553 ] },
- { "id": "unconnected", "fg": 4561 }
+ { "id": "center", "fg": 4709 },
+ { "id": "corner", "fg": [ 4711, 4713, 4712, 4710 ] },
+ { "id": "t_connection", "fg": [ 4721, 4723, 4722, 4720 ] },
+ { "id": "edge", "fg": [ 4715, 4714 ] },
+ { "id": "end_piece", "fg": [ 4717, 4719, 4718, 4716 ] },
+ { "id": "unconnected", "fg": 4724 }
]
},
- { "id": "t_concrete_season_winter", "fg": 4358 },
+ { "id": "t_concrete_season_winter", "fg": 4521 },
{
"id": "t_concrete_wall",
"multitile": true,
- "fg": 4577,
+ "fg": 4740,
"additional_tiles": [
- { "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 }
+ { "id": "center", "fg": 4725 },
+ { "id": "corner", "fg": [ 4727, 4729, 4728, 4726 ] },
+ { "id": "t_connection", "fg": [ 4737, 4739, 4738, 4736 ] },
+ { "id": "edge", "fg": [ 4731, 4730 ] },
+ { "id": "end_piece", "fg": [ 4733, 4735, 4734, 4732 ] },
+ { "id": "unconnected", "fg": 4740 }
]
},
{
"id": "t_concrete_wall_flesh",
- "fg": 4593,
+ "fg": 4756,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4578 },
- { "id": "corner", "fg": [ 4580, 4582, 4581, 4579 ] },
- { "id": "t_connection", "fg": [ 4590, 4592, 4591, 4589 ] },
- { "id": "edge", "fg": [ 4584, 4583 ] },
- { "id": "end_piece", "fg": [ 4586, 4588, 4587, 4585 ] },
- { "id": "unconnected", "fg": [ 4593, 4593 ] }
+ { "id": "center", "fg": 4741 },
+ { "id": "corner", "fg": [ 4743, 4745, 4744, 4742 ] },
+ { "id": "t_connection", "fg": [ 4753, 4755, 4754, 4752 ] },
+ { "id": "edge", "fg": [ 4747, 4746 ] },
+ { "id": "end_piece", "fg": [ 4749, 4751, 4750, 4748 ] },
+ { "id": "unconnected", "fg": [ 4756, 4756 ] }
]
},
{
"id": "t_concrete_y",
"multitile": true,
- "fg": 4609,
+ "fg": 4772,
"additional_tiles": [
- { "id": "center", "fg": 4594 },
- { "id": "corner", "fg": [ 4596, 4598, 4597, 4595 ] },
- { "id": "t_connection", "fg": [ 4606, 4608, 4607, 4605 ] },
- { "id": "edge", "fg": [ 4600, 4599 ] },
- { "id": "end_piece", "fg": [ 4602, 4604, 4603, 4601 ] },
- { "id": "unconnected", "fg": 4609 }
+ { "id": "center", "fg": 4757 },
+ { "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_concrete_y_season_winter", "fg": 4358 },
+ { "id": "t_concrete_y_season_winter", "fg": 4521 },
{
"id": "t_conveyor",
"multitile": true,
- "fg": 4625,
- "bg": 5474,
+ "fg": 4788,
+ "bg": 5640,
"additional_tiles": [
- { "id": "center", "bg": 5474, "fg": 4610 },
- { "id": "corner", "bg": 5474, "fg": [ 4612, 4614, 4613, 4611 ] },
- { "id": "t_connection", "bg": 5474, "fg": [ 4622, 4624, 4623, 4621 ] },
- { "id": "edge", "bg": 5474, "fg": [ 4616, 4615 ] },
- { "id": "end_piece", "bg": 5474, "fg": [ 4618, 4620, 4619, 4617 ] },
- { "bg": 5474, "id": "unconnected", "fg": [ 4625, 4625 ] }
+ { "id": "center", "bg": 5640, "fg": 4773 },
+ { "id": "corner", "bg": 5640, "fg": [ 4775, 4777, 4776, 4774 ] },
+ { "id": "t_connection", "bg": 5640, "fg": [ 4785, 4787, 4786, 4784 ] },
+ { "id": "edge", "bg": 5640, "fg": [ 4779, 4778 ] },
+ { "id": "end_piece", "bg": 5640, "fg": [ 4781, 4783, 4782, 4780 ] },
+ { "bg": 5640, "id": "unconnected", "fg": [ 4788, 4788 ] }
]
},
- { "id": "t_curtains", "fg": 4626 },
+ { "id": "t_curtains", "fg": 4789 },
{
"id": "t_dirt",
- "fg": 4645,
+ "fg": 4808,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 100, "sprite": 4627 },
- { "weight": 100, "sprite": 4628 },
- { "weight": 100, "sprite": 4629 },
- { "weight": 100, "sprite": 4630 }
+ { "weight": 100, "sprite": 4790 },
+ { "weight": 100, "sprite": 4791 },
+ { "weight": 100, "sprite": 4792 },
+ { "weight": 100, "sprite": 4793 }
]
},
- { "id": "corner", "fg": [ 4632, 4634, 4633, 4631 ] },
- { "id": "t_connection", "fg": [ 4642, 4644, 4643, 4641 ] },
- { "id": "edge", "fg": [ 4636, 4635 ] },
- { "id": "end_piece", "fg": [ 4638, 4640, 4639, 4637 ] },
- { "id": "unconnected", "fg": [ 4645, 4645 ] }
+ { "id": "corner", "fg": [ 4795, 4797, 4796, 4794 ] },
+ { "id": "t_connection", "fg": [ 4805, 4807, 4806, 4804 ] },
+ { "id": "edge", "fg": [ 4799, 4798 ] },
+ { "id": "end_piece", "fg": [ 4801, 4803, 4802, 4800 ] },
+ { "id": "unconnected", "fg": [ 4808, 4808 ] }
]
},
{
"id": "t_dirt_season_autumn",
- "fg": 4664,
+ "fg": 4827,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": [ 4646, 4647, 4648, 4649 ] },
- { "id": "corner", "fg": [ 4651, 4653, 4652, 4650 ] },
- { "id": "t_connection", "fg": [ 4661, 4663, 4662, 4660 ] },
- { "id": "edge", "fg": [ 4655, 4654 ] },
- { "id": "end_piece", "fg": [ 4657, 4659, 4658, 4656 ] },
- { "id": "unconnected", "fg": [ 4664, 4664 ] }
+ { "id": "center", "fg": [ 4809, 4810, 4811, 4812 ] },
+ { "id": "corner", "fg": [ 4814, 4816, 4815, 4813 ] },
+ { "id": "t_connection", "fg": [ 4824, 4826, 4825, 4823 ] },
+ { "id": "edge", "fg": [ 4818, 4817 ] },
+ { "id": "end_piece", "fg": [ 4820, 4822, 4821, 4819 ] },
+ { "id": "unconnected", "fg": [ 4827, 4827 ] }
]
},
{
"id": "t_dirt_season_summer",
- "fg": 4683,
+ "fg": 4846,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": [ 4665, 4666, 4667, 4668 ] },
- { "id": "corner", "fg": [ 4670, 4672, 4671, 4669 ] },
- { "id": "t_connection", "fg": [ 4680, 4682, 4681, 4679 ] },
- { "id": "edge", "fg": [ 4674, 4673 ] },
- { "id": "end_piece", "fg": [ 4676, 4678, 4677, 4675 ] },
- { "id": "unconnected", "fg": [ 4683, 4683 ] }
+ { "id": "center", "fg": [ 4828, 4829, 4830, 4831 ] },
+ { "id": "corner", "fg": [ 4833, 4835, 4834, 4832 ] },
+ { "id": "t_connection", "fg": [ 4843, 4845, 4844, 4842 ] },
+ { "id": "edge", "fg": [ 4837, 4836 ] },
+ { "id": "end_piece", "fg": [ 4839, 4841, 4840, 4838 ] },
+ { "id": "unconnected", "fg": [ 4846, 4846 ] }
]
},
{
"id": "t_dirt_season_winter",
"fg": [
- { "weight": 100, "sprite": 4684 },
- { "weight": 100, "sprite": 4685 },
- { "weight": 100, "sprite": 4686 },
- { "weight": 100, "sprite": 4687 }
+ { "weight": 100, "sprite": 4847 },
+ { "weight": 100, "sprite": 4848 },
+ { "weight": 100, "sprite": 4849 },
+ { "weight": 100, "sprite": 4850 }
]
},
{
"id": "t_dirtfloor",
"multitile": true,
- "fg": 4703,
- "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 }
- ]
- },
- { "id": "t_door_c", "fg": 4705 },
- { "id": "t_door_locked", "fg": 4706 },
- { "id": "t_door_o", "fg": 4707 },
- { "id": "t_door_b", "fg": 4704 },
- { "id": "t_door_boarded", "fg": 4708 },
- { "id": "t_door_boarded_damaged", "fg": 4709 },
- { "id": "t_door_glass_c", "fg": 4710 },
- { "id": "t_door_glass_o", "fg": 4711 },
- { "id": "t_door_lab_c", "fg": 4712 },
- { "id": "t_door_lab_o", "fg": 4713 },
- { "id": "t_door_metal_c_peep", "fg": 4714 },
- { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 4715 },
- { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 4722 }, { "weight": 100, "sprite": 4723 } ] },
+ "fg": 4866,
+ "additional_tiles": [
+ { "id": "center", "fg": 4851 },
+ { "id": "corner", "fg": [ 4853, 4855, 4854, 4852 ] },
+ { "id": "t_connection", "fg": [ 4863, 4865, 4864, 4862 ] },
+ { "id": "edge", "fg": [ 4857, 4856 ] },
+ { "id": "end_piece", "fg": [ 4859, 4861, 4860, 4858 ] },
+ { "id": "unconnected", "fg": 4866 }
+ ]
+ },
+ { "id": "t_door_c", "fg": 4868 },
+ { "id": "t_door_locked", "fg": 4869 },
+ { "id": "t_door_o", "fg": 4870 },
+ { "id": "t_door_b", "fg": 4867 },
+ { "id": "t_door_boarded", "fg": 4871 },
+ { "id": "t_door_boarded_damaged", "fg": 4872 },
+ { "id": "t_door_glass_c", "fg": 4873 },
+ { "id": "t_door_glass_o", "fg": 4874 },
+ { "id": "t_door_lab_c", "fg": 4875 },
+ { "id": "t_door_lab_o", "fg": 4876 },
+ { "id": "t_door_metal_c_peep", "fg": 4877 },
+ { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 4878 },
+ { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 4885 }, { "weight": 100, "sprite": 4886 } ] },
{
"id": "t_fence_season_spring",
"multitile": true,
- "fg": 4739,
- "bg": 4894,
+ "fg": 4902,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 4724 },
- { "id": "corner", "bg": 4894, "fg": [ 4726, 4728, 4727, 4725 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 4736, 4738, 4737, 4735 ] },
- { "id": "edge", "bg": 4894, "fg": [ 4730, 4729 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 4732, 4734, 4733, 4731 ] },
- { "bg": 4894, "id": "unconnected", "fg": 4739 }
+ { "id": "center", "bg": 5057, "fg": 4887 },
+ { "id": "corner", "bg": 5057, "fg": [ 4889, 4891, 4890, 4888 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 4899, 4901, 4900, 4898 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 4893, 4892 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 4895, 4897, 4896, 4894 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 4902 }
]
},
{
"id": "t_fence_season_summer",
"multitile": true,
- "fg": 4739,
- "bg": 4904,
+ "fg": 4902,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": 4724 },
- { "id": "corner", "bg": 4904, "fg": [ 4726, 4728, 4727, 4725 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 4736, 4738, 4737, 4735 ] },
- { "id": "edge", "bg": 4904, "fg": [ 4730, 4729 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 4732, 4734, 4733, 4731 ] },
- { "bg": 4904, "id": "unconnected", "fg": 4739 }
+ { "id": "center", "bg": 5067, "fg": 4887 },
+ { "id": "corner", "bg": 5067, "fg": [ 4889, 4891, 4890, 4888 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 4899, 4901, 4900, 4898 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 4893, 4892 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 4895, 4897, 4896, 4894 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 4902 }
]
},
{
"id": "t_fence_season_autumn",
"multitile": true,
- "fg": 4739,
- "bg": 4899,
+ "fg": 4902,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": 4724 },
- { "id": "corner", "bg": 4899, "fg": [ 4726, 4728, 4727, 4725 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 4736, 4738, 4737, 4735 ] },
- { "id": "edge", "bg": 4899, "fg": [ 4730, 4729 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 4732, 4734, 4733, 4731 ] },
- { "bg": 4899, "id": "unconnected", "fg": 4739 }
+ { "id": "center", "bg": 5062, "fg": 4887 },
+ { "id": "corner", "bg": 5062, "fg": [ 4889, 4891, 4890, 4888 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 4899, 4901, 4900, 4898 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 4893, 4892 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 4895, 4897, 4896, 4894 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 4902 }
]
},
{
"id": "t_fence_season_winter",
"multitile": true,
- "fg": 4739,
- "bg": 4358,
- "additional_tiles": [
- { "id": "center", "bg": 4358, "fg": 4724 },
- { "id": "corner", "bg": 4358, "fg": [ 4726, 4728, 4727, 4725 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4736, 4738, 4737, 4735 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4730, 4729 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4732, 4734, 4733, 4731 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4739 }
- ]
- },
- { "id": "t_fencegate_c_season_spring", "fg": 4740, "bg": 4894 },
- { "id": "t_fencegate_c_season_summer", "fg": 4740, "bg": 4904 },
- { "id": "t_fencegate_c_season_autumn", "fg": 4740, "bg": 4899 },
- { "id": "t_fencegate_c_season_winter", "fg": 4740, "bg": 4358 },
- { "id": "t_fencegate_o_season_spring", "fg": 4741, "bg": 4894 },
- { "id": "t_fencegate_o_season_summer", "fg": 4741, "bg": 4904 },
- { "id": "t_fencegate_o_season_autumn", "fg": 4741, "bg": 4899 },
- { "id": "t_fencegate_o_season_winter", "fg": 4741, "bg": 4358 },
- { "id": "t_fence_post_season_spring", "fg": 4739, "bg": 4894 },
- { "id": "t_fence_post_season_summer", "fg": 4739, "bg": 4904 },
- { "id": "t_fence_post_season_autumn", "fg": 4739, "bg": 4899 },
- { "id": "t_fence_post_season_winter", "fg": 4739, "bg": 4358 },
+ "fg": 4902,
+ "bg": 4521,
+ "additional_tiles": [
+ { "id": "center", "bg": 4521, "fg": 4887 },
+ { "id": "corner", "bg": 4521, "fg": [ 4889, 4891, 4890, 4888 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4899, 4901, 4900, 4898 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4893, 4892 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4895, 4897, 4896, 4894 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 4902 }
+ ]
+ },
+ { "id": "t_fencegate_c_season_spring", "fg": 4903, "bg": 5057 },
+ { "id": "t_fencegate_c_season_summer", "fg": 4903, "bg": 5067 },
+ { "id": "t_fencegate_c_season_autumn", "fg": 4903, "bg": 5062 },
+ { "id": "t_fencegate_c_season_winter", "fg": 4903, "bg": 4521 },
+ { "id": "t_fencegate_o_season_spring", "fg": 4904, "bg": 5057 },
+ { "id": "t_fencegate_o_season_summer", "fg": 4904, "bg": 5067 },
+ { "id": "t_fencegate_o_season_autumn", "fg": 4904, "bg": 5062 },
+ { "id": "t_fencegate_o_season_winter", "fg": 4904, "bg": 4521 },
+ { "id": "t_fence_post_season_spring", "fg": 4902, "bg": 5057 },
+ { "id": "t_fence_post_season_summer", "fg": 4902, "bg": 5067 },
+ { "id": "t_fence_post_season_autumn", "fg": 4902, "bg": 5062 },
+ { "id": "t_fence_post_season_winter", "fg": 4902, "bg": 4521 },
{
"id": "t_fence_barbed_season_spring",
"multitile": true,
- "fg": 4757,
- "bg": 4894,
+ "fg": 4920,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 4742 },
- { "id": "corner", "bg": 4894, "fg": [ 4744, 4746, 4745, 4743 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 4754, 4756, 4755, 4753 ] },
- { "id": "edge", "bg": 4894, "fg": [ 4748, 4747 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 4750, 4752, 4751, 4749 ] },
- { "bg": 4894, "id": "unconnected", "fg": 4757 }
+ { "id": "center", "bg": 5057, "fg": 4905 },
+ { "id": "corner", "bg": 5057, "fg": [ 4907, 4909, 4908, 4906 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 4917, 4919, 4918, 4916 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 4911, 4910 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 4913, 4915, 4914, 4912 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 4920 }
]
},
{
"id": "t_fence_barbed_season_summer",
"multitile": true,
- "fg": 4757,
- "bg": 4904,
+ "fg": 4920,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": 4742 },
- { "id": "corner", "bg": 4904, "fg": [ 4744, 4746, 4745, 4743 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 4754, 4756, 4755, 4753 ] },
- { "id": "edge", "bg": 4904, "fg": [ 4748, 4747 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 4750, 4752, 4751, 4749 ] },
- { "bg": 4904, "id": "unconnected", "fg": 4757 }
+ { "id": "center", "bg": 5067, "fg": 4905 },
+ { "id": "corner", "bg": 5067, "fg": [ 4907, 4909, 4908, 4906 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 4917, 4919, 4918, 4916 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 4911, 4910 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 4913, 4915, 4914, 4912 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 4920 }
]
},
{
"id": "t_fence_barbed_season_autumn",
"multitile": true,
- "fg": 4757,
- "bg": 4899,
+ "fg": 4920,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": 4742 },
- { "id": "corner", "bg": 4899, "fg": [ 4744, 4746, 4745, 4743 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 4754, 4756, 4755, 4753 ] },
- { "id": "edge", "bg": 4899, "fg": [ 4748, 4747 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 4750, 4752, 4751, 4749 ] },
- { "bg": 4899, "id": "unconnected", "fg": 4757 }
+ { "id": "center", "bg": 5062, "fg": 4905 },
+ { "id": "corner", "bg": 5062, "fg": [ 4907, 4909, 4908, 4906 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 4917, 4919, 4918, 4916 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 4911, 4910 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 4913, 4915, 4914, 4912 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 4920 }
]
},
{
"id": "t_fence_barbed_season_winter",
"multitile": true,
- "fg": 4757,
- "bg": 4358,
+ "fg": 4920,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": 4742 },
- { "id": "corner", "bg": 4358, "fg": [ 4744, 4746, 4745, 4743 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4754, 4756, 4755, 4753 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4748, 4747 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4750, 4752, 4751, 4749 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4757 }
+ { "id": "center", "bg": 4521, "fg": 4905 },
+ { "id": "corner", "bg": 4521, "fg": [ 4907, 4909, 4908, 4906 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4917, 4919, 4918, 4916 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4911, 4910 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4913, 4915, 4914, 4912 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 4920 }
]
},
{
"id": "t_fence_rope_season_spring",
- "fg": 4774,
+ "fg": 4937,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4759, "bg": 4627 },
- { "id": "corner", "fg": [ 4761, 4763, 4762, 4760 ], "bg": [ 4632, 4634, 4633, 4631 ] },
- { "id": "t_connection", "fg": [ 4771, 4773, 4772, 4770 ], "bg": [ 4642, 4644, 4643, 4641 ] },
- { "id": "edge", "fg": [ 4765, 4764 ], "bg": [ 4636, 4635 ] },
- { "id": "end_piece", "fg": [ 4767, 4769, 4768, 4766 ], "bg": [ 4638, 4640, 4639, 4637 ] },
- { "id": "unconnected", "fg": [ 4774, 4774 ], "bg": [ 4645, 4645 ] }
+ { "id": "center", "fg": 4922, "bg": 4790 },
+ { "id": "corner", "fg": [ 4924, 4926, 4925, 4923 ], "bg": [ 4795, 4797, 4796, 4794 ] },
+ { "id": "t_connection", "fg": [ 4934, 4936, 4935, 4933 ], "bg": [ 4805, 4807, 4806, 4804 ] },
+ { "id": "edge", "fg": [ 4928, 4927 ], "bg": [ 4799, 4798 ] },
+ { "id": "end_piece", "fg": [ 4930, 4932, 4931, 4929 ], "bg": [ 4801, 4803, 4802, 4800 ] },
+ { "id": "unconnected", "fg": [ 4937, 4937 ], "bg": [ 4808, 4808 ] }
]
},
{
"id": "t_fence_rope_season_summer",
- "fg": 4774,
+ "fg": 4937,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4759, "bg": 4665 },
- { "id": "corner", "fg": [ 4761, 4763, 4762, 4760 ], "bg": [ 4670, 4672, 4671, 4669 ] },
- { "id": "t_connection", "fg": [ 4771, 4773, 4772, 4770 ], "bg": [ 4680, 4682, 4681, 4679 ] },
- { "id": "edge", "fg": [ 4765, 4764 ], "bg": [ 4674, 4673 ] },
- { "id": "end_piece", "fg": [ 4767, 4769, 4768, 4766 ], "bg": [ 4676, 4678, 4677, 4675 ] },
- { "id": "unconnected", "fg": [ 4774, 4774 ], "bg": [ 4683, 4683 ] }
+ { "id": "center", "fg": 4922, "bg": 4828 },
+ { "id": "corner", "fg": [ 4924, 4926, 4925, 4923 ], "bg": [ 4833, 4835, 4834, 4832 ] },
+ { "id": "t_connection", "fg": [ 4934, 4936, 4935, 4933 ], "bg": [ 4843, 4845, 4844, 4842 ] },
+ { "id": "edge", "fg": [ 4928, 4927 ], "bg": [ 4837, 4836 ] },
+ { "id": "end_piece", "fg": [ 4930, 4932, 4931, 4929 ], "bg": [ 4839, 4841, 4840, 4838 ] },
+ { "id": "unconnected", "fg": [ 4937, 4937 ], "bg": [ 4846, 4846 ] }
]
},
{
"id": "t_fence_rope_season_autumn",
- "fg": 4774,
+ "fg": 4937,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4759, "bg": 4646 },
- { "id": "corner", "fg": [ 4761, 4763, 4762, 4760 ], "bg": [ 4651, 4653, 4652, 4650 ] },
- { "id": "t_connection", "fg": [ 4771, 4773, 4772, 4770 ], "bg": [ 4661, 4663, 4662, 4660 ] },
- { "id": "edge", "fg": [ 4765, 4764 ], "bg": [ 4655, 4654 ] },
- { "id": "end_piece", "fg": [ 4767, 4769, 4768, 4766 ], "bg": [ 4657, 4659, 4658, 4656 ] },
- { "id": "unconnected", "fg": [ 4774, 4774 ], "bg": [ 4664, 4664 ] }
+ { "id": "center", "fg": 4922, "bg": 4809 },
+ { "id": "corner", "fg": [ 4924, 4926, 4925, 4923 ], "bg": [ 4814, 4816, 4815, 4813 ] },
+ { "id": "t_connection", "fg": [ 4934, 4936, 4935, 4933 ], "bg": [ 4824, 4826, 4825, 4823 ] },
+ { "id": "edge", "fg": [ 4928, 4927 ], "bg": [ 4818, 4817 ] },
+ { "id": "end_piece", "fg": [ 4930, 4932, 4931, 4929 ], "bg": [ 4820, 4822, 4821, 4819 ] },
+ { "id": "unconnected", "fg": [ 4937, 4937 ], "bg": [ 4827, 4827 ] }
]
},
{
"id": "t_fence_rope_season_winter",
- "fg": 4774,
+ "fg": 4937,
"multitile": true,
"additional_tiles": [
{
"id": "center",
- "fg": 4759,
+ "fg": 4922,
"bg": [
- { "weight": 100, "sprite": 4684 },
- { "weight": 100, "sprite": 4685 },
- { "weight": 100, "sprite": 4686 },
- { "weight": 100, "sprite": 4687 }
+ { "weight": 100, "sprite": 4847 },
+ { "weight": 100, "sprite": 4848 },
+ { "weight": 100, "sprite": 4849 },
+ { "weight": 100, "sprite": 4850 }
]
},
{
"id": "corner",
- "fg": [ 4761, 4763, 4762, 4760 ],
+ "fg": [ 4924, 4926, 4925, 4923 ],
"bg": [
- { "weight": 100, "sprite": 4684 },
- { "weight": 100, "sprite": 4685 },
- { "weight": 100, "sprite": 4686 },
- { "weight": 100, "sprite": 4687 }
+ { "weight": 100, "sprite": 4847 },
+ { "weight": 100, "sprite": 4848 },
+ { "weight": 100, "sprite": 4849 },
+ { "weight": 100, "sprite": 4850 }
]
},
{
"id": "t_connection",
- "fg": [ 4771, 4773, 4772, 4770 ],
+ "fg": [ 4934, 4936, 4935, 4933 ],
"bg": [
- { "weight": 100, "sprite": 4684 },
- { "weight": 100, "sprite": 4685 },
- { "weight": 100, "sprite": 4686 },
- { "weight": 100, "sprite": 4687 }
+ { "weight": 100, "sprite": 4847 },
+ { "weight": 100, "sprite": 4848 },
+ { "weight": 100, "sprite": 4849 },
+ { "weight": 100, "sprite": 4850 }
]
},
{
"id": "edge",
- "fg": [ 4765, 4764 ],
+ "fg": [ 4928, 4927 ],
"bg": [
- { "weight": 100, "sprite": 4684 },
- { "weight": 100, "sprite": 4685 },
- { "weight": 100, "sprite": 4686 },
- { "weight": 100, "sprite": 4687 }
+ { "weight": 100, "sprite": 4847 },
+ { "weight": 100, "sprite": 4848 },
+ { "weight": 100, "sprite": 4849 },
+ { "weight": 100, "sprite": 4850 }
]
},
{
"id": "end_piece",
- "fg": [ 4767, 4769, 4768, 4766 ],
+ "fg": [ 4930, 4932, 4931, 4929 ],
"bg": [
- { "weight": 100, "sprite": 4684 },
- { "weight": 100, "sprite": 4685 },
- { "weight": 100, "sprite": 4686 },
- { "weight": 100, "sprite": 4687 }
+ { "weight": 100, "sprite": 4847 },
+ { "weight": 100, "sprite": 4848 },
+ { "weight": 100, "sprite": 4849 },
+ { "weight": 100, "sprite": 4850 }
]
},
{
"id": "unconnected",
- "fg": [ 4774, 4774 ],
+ "fg": [ 4937, 4937 ],
"bg": [
- { "weight": 100, "sprite": 4684 },
- { "weight": 100, "sprite": 4685 },
- { "weight": 100, "sprite": 4686 },
- { "weight": 100, "sprite": 4687 }
+ { "weight": 100, "sprite": 4847 },
+ { "weight": 100, "sprite": 4848 },
+ { "weight": 100, "sprite": 4849 },
+ { "weight": 100, "sprite": 4850 }
]
}
]
@@ -6060,2207 +6220,2236 @@
{
"id": "t_fence_wire_season_spring",
"multitile": true,
- "fg": 4790,
- "bg": 4894,
+ "fg": 4953,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 4775 },
- { "id": "corner", "bg": 4894, "fg": [ 4777, 4779, 4778, 4776 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 4787, 4789, 4788, 4786 ] },
- { "id": "edge", "bg": 4894, "fg": [ 4781, 4780 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 4783, 4785, 4784, 4782 ] },
- { "bg": 4894, "id": "unconnected", "fg": 4790 }
+ { "id": "center", "bg": 5057, "fg": 4938 },
+ { "id": "corner", "bg": 5057, "fg": [ 4940, 4942, 4941, 4939 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 4950, 4952, 4951, 4949 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 4944, 4943 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 4946, 4948, 4947, 4945 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 4953 }
]
},
{
"id": "t_fence_wire_season_summer",
"multitile": true,
- "fg": 4790,
- "bg": 4904,
+ "fg": 4953,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": 4775 },
- { "id": "corner", "bg": 4904, "fg": [ 4777, 4779, 4778, 4776 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 4787, 4789, 4788, 4786 ] },
- { "id": "edge", "bg": 4904, "fg": [ 4781, 4780 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 4783, 4785, 4784, 4782 ] },
- { "bg": 4904, "id": "unconnected", "fg": 4790 }
+ { "id": "center", "bg": 5067, "fg": 4938 },
+ { "id": "corner", "bg": 5067, "fg": [ 4940, 4942, 4941, 4939 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 4950, 4952, 4951, 4949 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 4944, 4943 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 4946, 4948, 4947, 4945 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 4953 }
]
},
{
"id": "t_fence_wire_season_autumn",
"multitile": true,
- "fg": 4790,
- "bg": 4899,
+ "fg": 4953,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": 4775 },
- { "id": "corner", "bg": 4899, "fg": [ 4777, 4779, 4778, 4776 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 4787, 4789, 4788, 4786 ] },
- { "id": "edge", "bg": 4899, "fg": [ 4781, 4780 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 4783, 4785, 4784, 4782 ] },
- { "bg": 4899, "id": "unconnected", "fg": 4790 }
+ { "id": "center", "bg": 5062, "fg": 4938 },
+ { "id": "corner", "bg": 5062, "fg": [ 4940, 4942, 4941, 4939 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 4950, 4952, 4951, 4949 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 4944, 4943 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 4946, 4948, 4947, 4945 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 4953 }
]
},
{
"id": "t_fence_wire_season_winter",
"multitile": true,
- "fg": 4790,
- "bg": 4358,
+ "fg": 4953,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": 4775 },
- { "id": "corner", "bg": 4358, "fg": [ 4777, 4779, 4778, 4776 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4787, 4789, 4788, 4786 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4781, 4780 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4783, 4785, 4784, 4782 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4790 }
+ { "id": "center", "bg": 4521, "fg": 4938 },
+ { "id": "corner", "bg": 4521, "fg": [ 4940, 4942, 4941, 4939 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4950, 4952, 4951, 4949 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4944, 4943 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4946, 4948, 4947, 4945 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 4953 }
]
},
{
"id": "t_floor",
"multitile": true,
- "fg": 4808,
+ "fg": 4971,
"additional_tiles": [
{
"id": "center",
- "fg": [ { "weight": 1, "sprite": 4791 }, { "weight": 1, "sprite": 4792 }, { "weight": 1, "sprite": 4793 } ]
+ "fg": [ { "weight": 1, "sprite": 4954 }, { "weight": 1, "sprite": 4955 }, { "weight": 1, "sprite": 4956 } ]
},
- { "id": "corner", "fg": [ 4795, 4797, 4796, 4794 ] },
- { "id": "t_connection", "fg": [ 4805, 4807, 4806, 4804 ] },
- { "id": "edge", "fg": [ 4799, 4798 ] },
- { "id": "end_piece", "fg": [ 4801, 4803, 4802, 4800 ] },
- { "id": "unconnected", "fg": 4808 }
+ { "id": "corner", "fg": [ 4958, 4960, 4959, 4957 ] },
+ { "id": "t_connection", "fg": [ 4968, 4970, 4969, 4967 ] },
+ { "id": "edge", "fg": [ 4962, 4961 ] },
+ { "id": "end_piece", "fg": [ 4964, 4966, 4965, 4963 ] },
+ { "id": "unconnected", "fg": 4971 }
]
},
{
"id": "t_floor_resin",
"multitile": true,
- "fg": 4824,
+ "fg": 4987,
"additional_tiles": [
- { "id": "center", "fg": 4809 },
- { "id": "corner", "fg": [ 4811, 4813, 4812, 4810 ] },
- { "id": "t_connection", "fg": [ 4821, 4823, 4822, 4820 ] },
- { "id": "edge", "fg": [ 4815, 4814 ] },
- { "id": "end_piece", "fg": [ 4817, 4819, 4818, 4816 ] },
- { "id": "unconnected", "fg": 4824 }
+ { "id": "center", "fg": 4972 },
+ { "id": "corner", "fg": [ 4974, 4976, 4975, 4973 ] },
+ { "id": "t_connection", "fg": [ 4984, 4986, 4985, 4983 ] },
+ { "id": "edge", "fg": [ 4978, 4977 ] },
+ { "id": "end_piece", "fg": [ 4980, 4982, 4981, 4979 ] },
+ { "id": "unconnected", "fg": 4987 }
]
},
{
"id": "t_floor_wax",
"multitile": true,
- "fg": 4840,
+ "fg": 5003,
"additional_tiles": [
- { "id": "center", "fg": 4825 },
- { "id": "corner", "fg": [ 4827, 4829, 4828, 4826 ] },
- { "id": "t_connection", "fg": [ 4837, 4839, 4838, 4836 ] },
- { "id": "edge", "fg": [ 4831, 4830 ] },
- { "id": "end_piece", "fg": [ 4833, 4835, 4834, 4832 ] },
- { "id": "unconnected", "fg": 4840 }
+ { "id": "center", "fg": 4988 },
+ { "id": "corner", "fg": [ 4990, 4992, 4991, 4989 ] },
+ { "id": "t_connection", "fg": [ 5000, 5002, 5001, 4999 ] },
+ { "id": "edge", "fg": [ 4994, 4993 ] },
+ { "id": "end_piece", "fg": [ 4996, 4998, 4997, 4995 ] },
+ { "id": "unconnected", "fg": 5003 }
]
},
{
"id": "t_floor_waxed",
"multitile": true,
- "fg": 4856,
+ "fg": 5019,
"additional_tiles": [
- { "id": "center", "fg": 4841 },
- { "id": "corner", "fg": [ 4843, 4845, 4844, 4842 ] },
- { "id": "t_connection", "fg": [ 4853, 4855, 4854, 4852 ] },
- { "id": "edge", "fg": [ 4847, 4846 ] },
- { "id": "end_piece", "fg": [ 4849, 4851, 4850, 4848 ] },
- { "id": "unconnected", "fg": 4856 }
+ { "id": "center", "fg": 5004 },
+ { "id": "corner", "fg": [ 5006, 5008, 5007, 5005 ] },
+ { "id": "t_connection", "fg": [ 5016, 5018, 5017, 5015 ] },
+ { "id": "edge", "fg": [ 5010, 5009 ] },
+ { "id": "end_piece", "fg": [ 5012, 5014, 5013, 5011 ] },
+ { "id": "unconnected", "fg": 5019 }
]
},
{
"id": "t_floor_waxed_y",
"multitile": true,
- "fg": 4872,
+ "fg": 5035,
"additional_tiles": [
- { "id": "center", "fg": 4857 },
- { "id": "corner", "fg": [ 4859, 4861, 4860, 4858 ] },
- { "id": "t_connection", "fg": [ 4869, 4871, 4870, 4868 ] },
- { "id": "edge", "fg": [ 4863, 4862 ] },
- { "id": "end_piece", "fg": [ 4865, 4867, 4866, 4864 ] },
- { "id": "unconnected", "fg": 4872 }
+ { "id": "center", "fg": 5020 },
+ { "id": "corner", "fg": [ 5022, 5024, 5023, 5021 ] },
+ { "id": "t_connection", "fg": [ 5032, 5034, 5033, 5031 ] },
+ { "id": "edge", "fg": [ 5026, 5025 ] },
+ { "id": "end_piece", "fg": [ 5028, 5030, 5029, 5027 ] },
+ { "id": "unconnected", "fg": 5035 }
]
},
{
"id": [ "t_fungus", "t_fungus_floor_out" ],
"multitile": true,
- "fg": 4888,
- "bg": 4894,
+ "fg": 5051,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 4873 },
- { "id": "corner", "bg": 4894, "fg": [ 4875, 4877, 4876, 4874 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 4885, 4887, 4886, 4884 ] },
- { "id": "edge", "bg": 4894, "fg": [ 4879, 4878 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 4881, 4883, 4882, 4880 ] },
- { "bg": 4894, "id": "unconnected", "fg": 4888 }
+ { "id": "center", "bg": 5057, "fg": 5036 },
+ { "id": "corner", "bg": 5057, "fg": [ 5038, 5040, 5039, 5037 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5048, 5050, 5049, 5047 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5042, 5041 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5044, 5046, 5045, 5043 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5051 }
]
},
{
"id": "t_fungus_season_summer",
"multitile": true,
- "fg": 4888,
- "bg": 4904,
+ "fg": 5051,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": 4873 },
- { "id": "corner", "bg": 4904, "fg": [ 4875, 4877, 4876, 4874 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 4885, 4887, 4886, 4884 ] },
- { "id": "edge", "bg": 4904, "fg": [ 4879, 4878 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 4881, 4883, 4882, 4880 ] },
- { "bg": 4904, "id": "unconnected", "fg": 4888 }
+ { "id": "center", "bg": 5067, "fg": 5036 },
+ { "id": "corner", "bg": 5067, "fg": [ 5038, 5040, 5039, 5037 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5048, 5050, 5049, 5047 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5042, 5041 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5044, 5046, 5045, 5043 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5051 }
]
},
{
"id": "t_fungus_season_autumn",
"multitile": true,
- "fg": 4888,
- "bg": 4899,
+ "fg": 5051,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": 4873 },
- { "id": "corner", "bg": 4899, "fg": [ 4875, 4877, 4876, 4874 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 4885, 4887, 4886, 4884 ] },
- { "id": "edge", "bg": 4899, "fg": [ 4879, 4878 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 4881, 4883, 4882, 4880 ] },
- { "bg": 4899, "id": "unconnected", "fg": 4888 }
+ { "id": "center", "bg": 5062, "fg": 5036 },
+ { "id": "corner", "bg": 5062, "fg": [ 5038, 5040, 5039, 5037 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5048, 5050, 5049, 5047 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5042, 5041 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5044, 5046, 5045, 5043 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5051 }
]
},
{
"id": "t_fungus_season_winter",
"multitile": true,
- "fg": 4888,
- "bg": 4358,
+ "fg": 5051,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": 4873 },
- { "id": "corner", "bg": 4358, "fg": [ 4875, 4877, 4876, 4874 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4885, 4887, 4886, 4884 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4879, 4878 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4881, 4883, 4882, 4880 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4888 }
+ { "id": "center", "bg": 4521, "fg": 5036 },
+ { "id": "corner", "bg": 4521, "fg": [ 5038, 5040, 5039, 5037 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5048, 5050, 5049, 5047 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5042, 5041 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5044, 5046, 5045, 5043 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 5051 }
]
},
{
"id": [ "t_fungus_floor_in", "t_fungus_floor_sup" ],
"multitile": true,
- "fg": 4888,
- "bg": 5474,
- "additional_tiles": [
- { "id": "center", "bg": 5474, "fg": 4873 },
- { "id": "corner", "bg": 5474, "fg": [ 4875, 4877, 4876, 4874 ] },
- { "id": "t_connection", "bg": 5474, "fg": [ 4885, 4887, 4886, 4884 ] },
- { "id": "edge", "bg": 5474, "fg": [ 4879, 4878 ] },
- { "id": "end_piece", "bg": 5474, "fg": [ 4881, 4883, 4882, 4880 ] },
- { "bg": 5474, "id": "unconnected", "fg": [ 4888, 4888 ] }
- ]
- },
- { "id": "t_shrub_fungal", "fg": 5379, "bg": 4873 },
- { "id": "t_gates_mech_control", "fg": 4889, "bg": 5474 },
- { "id": "t_gates_mech_control_lab", "fg": 4890, "bg": 5474 },
- { "id": "t_gates_control_concrete", "fg": 4891, "bg": 4577 },
- { "id": "t_gates_control_concrete_lab", "fg": 4890, "bg": 6876 },
- { "id": "t_gates_control_brick", "fg": 4891, "bg": 4427 },
- { "id": "t_gates_control_brick_lab", "fg": 4890, "bg": 4427 },
- { "id": "t_gates_control_metal", "fg": 4891, "bg": 5578 },
- { "id": "t_gates_control_metal_lab", "fg": 4890, "bg": 5578 },
- { "id": "t_elevator_control", "fg": 4892, "bg": 5474 },
- { "id": "t_elevator_control_off", "fg": 4893, "bg": 5474 },
+ "fg": 5051,
+ "bg": 5640,
+ "additional_tiles": [
+ { "id": "center", "bg": 5640, "fg": 5036 },
+ { "id": "corner", "bg": 5640, "fg": [ 5038, 5040, 5039, 5037 ] },
+ { "id": "t_connection", "bg": 5640, "fg": [ 5048, 5050, 5049, 5047 ] },
+ { "id": "edge", "bg": 5640, "fg": [ 5042, 5041 ] },
+ { "id": "end_piece", "bg": 5640, "fg": [ 5044, 5046, 5045, 5043 ] },
+ { "bg": 5640, "id": "unconnected", "fg": [ 5051, 5051 ] }
+ ]
+ },
+ { "id": "t_shrub_fungal", "fg": 5545, "bg": 5036 },
+ { "id": "t_gates_mech_control", "fg": 5052, "bg": 5640 },
+ { "id": "t_gates_mech_control_lab", "fg": 5053, "bg": 5640 },
+ { "id": "t_gates_control_concrete", "fg": 5054, "bg": 4740 },
+ { "id": "t_gates_control_concrete_lab", "fg": 5053, "bg": 7019 },
+ { "id": "t_gates_control_brick", "fg": 5054, "bg": 4590 },
+ { "id": "t_gates_control_brick_lab", "fg": 5053, "bg": 4590 },
+ { "id": "t_gates_control_metal", "fg": 5054, "bg": 5744 },
+ { "id": "t_gates_control_metal_lab", "fg": 5053, "bg": 5744 },
+ { "id": "t_elevator_control", "fg": 5055, "bg": 5640 },
+ { "id": "t_elevator_control_off", "fg": 5056, "bg": 5640 },
{
"id": "t_grass",
"fg": [
- { "weight": 1, "sprite": 4895 },
- { "weight": 1, "sprite": 4896 },
- { "weight": 1, "sprite": 4897 },
- { "weight": 1, "sprite": 4898 }
+ { "weight": 1, "sprite": 5058 },
+ { "weight": 1, "sprite": 5059 },
+ { "weight": 1, "sprite": 5060 },
+ { "weight": 1, "sprite": 5061 }
]
},
{
"id": "t_grass_season_summer",
"fg": [
- { "weight": 1, "sprite": 4905 },
- { "weight": 1, "sprite": 4906 },
- { "weight": 1, "sprite": 4907 },
- { "weight": 1, "sprite": 4908 }
+ { "weight": 1, "sprite": 5068 },
+ { "weight": 1, "sprite": 5069 },
+ { "weight": 1, "sprite": 5070 },
+ { "weight": 1, "sprite": 5071 }
]
},
{
"id": "t_grass_season_autumn",
"fg": [
- { "weight": 1, "sprite": 4900 },
- { "weight": 1, "sprite": 4901 },
- { "weight": 1, "sprite": 4902 },
- { "weight": 1, "sprite": 4903 }
+ { "weight": 1, "sprite": 5063 },
+ { "weight": 1, "sprite": 5064 },
+ { "weight": 1, "sprite": 5065 },
+ { "weight": 1, "sprite": 5066 }
]
},
{
"id": "t_grass_season_winter",
- "fg": 4376,
- "bg": 4358,
+ "fg": 4539,
+ "bg": 4521,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 4358 },
- { "weight": 1, "sprite": 4359 },
- { "weight": 1, "sprite": 4360 },
- { "weight": 1, "sprite": 4361 }
+ { "weight": 1, "sprite": 4521 },
+ { "weight": 1, "sprite": 4522 },
+ { "weight": 1, "sprite": 4523 },
+ { "weight": 1, "sprite": 4524 }
]
},
- { "id": "corner", "bg": 4358, "fg": [ 4363, 4365, 4364, 4362 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4373, 4375, 4374, 4372 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4367, 4366 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4369, 4371, 4370, 4368 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4376 }
+ { "id": "corner", "bg": 4521, "fg": [ 4526, 4528, 4527, 4525 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4536, 4538, 4537, 4535 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4530, 4529 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4532, 4534, 4533, 4531 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 4539 }
]
},
{
"id": "t_grass_dead",
"multitile": true,
- "fg": 4924,
- "bg": 4894,
+ "fg": 5087,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 4909 },
- { "id": "corner", "bg": 4894, "fg": [ 4911, 4913, 4912, 4910 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 4921, 4923, 4922, 4920 ] },
- { "id": "edge", "bg": 4894, "fg": [ 4915, 4914 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 4917, 4919, 4918, 4916 ] },
- { "bg": 4894, "id": "unconnected", "fg": 4924 }
+ { "id": "center", "bg": 5057, "fg": 5072 },
+ { "id": "corner", "bg": 5057, "fg": [ 5074, 5076, 5075, 5073 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5084, 5086, 5085, 5083 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5078, 5077 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5080, 5082, 5081, 5079 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5087 }
]
},
{
"id": "t_grass_dead_season_summer",
"multitile": true,
- "fg": 4956,
- "bg": 4904,
+ "fg": 5119,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": 4941 },
- { "id": "corner", "bg": 4904, "fg": [ 4943, 4945, 4944, 4942 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 4953, 4955, 4954, 4952 ] },
- { "id": "edge", "bg": 4904, "fg": [ 4947, 4946 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 4949, 4951, 4950, 4948 ] },
- { "bg": 4904, "id": "unconnected", "fg": 4956 }
+ { "id": "center", "bg": 5067, "fg": 5104 },
+ { "id": "corner", "bg": 5067, "fg": [ 5106, 5108, 5107, 5105 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5116, 5118, 5117, 5115 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5110, 5109 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5112, 5114, 5113, 5111 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5119 }
]
},
{
"id": "t_grass_dead_season_autumn",
"multitile": true,
- "fg": 4940,
- "bg": 4899,
+ "fg": 5103,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": 4925 },
- { "id": "corner", "bg": 4899, "fg": [ 4927, 4929, 4928, 4926 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 4937, 4939, 4938, 4936 ] },
- { "id": "edge", "bg": 4899, "fg": [ 4931, 4930 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 4933, 4935, 4934, 4932 ] },
- { "bg": 4899, "id": "unconnected", "fg": 4940 }
+ { "id": "center", "bg": 5062, "fg": 5088 },
+ { "id": "corner", "bg": 5062, "fg": [ 5090, 5092, 5091, 5089 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5100, 5102, 5101, 5099 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5094, 5093 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5096, 5098, 5097, 5095 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5103 }
]
},
{
"id": "t_grass_dead_season_winter",
"multitile": true,
- "fg": 4376,
- "bg": 4358,
+ "fg": 4539,
+ "bg": 4521,
"additional_tiles": [
{
"id": "center",
- "bg": 4358,
+ "bg": 4521,
"fg": [
- { "weight": 1, "sprite": 4358 },
- { "weight": 1, "sprite": 4359 },
- { "weight": 1, "sprite": 4360 },
- { "weight": 1, "sprite": 4361 }
+ { "weight": 1, "sprite": 4521 },
+ { "weight": 1, "sprite": 4522 },
+ { "weight": 1, "sprite": 4523 },
+ { "weight": 1, "sprite": 4524 }
]
},
- { "id": "corner", "bg": 4358, "fg": [ 4363, 4365, 4364, 4362 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4373, 4375, 4374, 4372 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4367, 4366 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4369, 4371, 4370, 4368 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4376 }
+ { "id": "corner", "bg": 4521, "fg": [ 4526, 4528, 4527, 4525 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4536, 4538, 4537, 4535 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4530, 4529 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4532, 4534, 4533, 4531 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 4539 }
]
},
{
"id": "t_grate",
"multitile": true,
- "fg": 4972,
+ "fg": 5135,
"additional_tiles": [
- { "id": "center", "fg": 4957 },
- { "id": "corner", "fg": [ 4959, 4961, 4960, 4958 ] },
- { "id": "t_connection", "fg": [ 4969, 4971, 4970, 4968 ] },
- { "id": "edge", "fg": [ 4963, 4962 ] },
- { "id": "end_piece", "fg": [ 4965, 4967, 4966, 4964 ] },
- { "id": "unconnected", "fg": [ 4972, 4972 ] }
+ { "id": "center", "fg": 5120 },
+ { "id": "corner", "fg": [ 5122, 5124, 5123, 5121 ] },
+ { "id": "t_connection", "fg": [ 5132, 5134, 5133, 5131 ] },
+ { "id": "edge", "fg": [ 5126, 5125 ] },
+ { "id": "end_piece", "fg": [ 5128, 5130, 5129, 5127 ] },
+ { "id": "unconnected", "fg": [ 5135, 5135 ] }
]
},
{
"id": [ "t_guardrail", "t_guardrail_bg_dp", "t_guardrail_hw_air" ],
"multitile": true,
- "fg": 4979,
- "bg": 5420,
+ "fg": 5142,
+ "bg": 5586,
"additional_tiles": [
- { "id": "edge", "bg": 5420, "fg": [ 4974, 4973 ] },
- { "id": "end_piece", "bg": 5420, "fg": [ 4976, 4978, 4977, 4975 ] },
- { "bg": 5420, "id": "unconnected", "fg": 4979 }
+ { "id": "edge", "bg": 5586, "fg": [ 5137, 5136 ] },
+ { "id": "end_piece", "bg": 5586, "fg": [ 5139, 5141, 5140, 5138 ] },
+ { "bg": 5586, "id": "unconnected", "fg": 5142 }
]
},
- { "id": "t_ladder_down", "fg": 4980 },
{
"id": "t_lava",
- "fg": 4996,
- "bg": 5228,
+ "fg": 5159,
+ "bg": 5394,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4981, "bg": 5228 },
- { "id": "corner", "fg": [ 4983, 4985, 4984, 4982 ], "bg": 5228 },
- { "id": "t_connection", "fg": [ 4993, 4995, 4994, 4992 ], "bg": 5228 },
- { "id": "edge", "fg": [ 4987, 4986 ], "bg": 5228 },
- { "id": "end_piece", "fg": [ 4989, 4991, 4990, 4988 ], "bg": 5228 },
- { "id": "unconnected", "fg": [ 4996, 4996 ], "bg": 5228 }
+ { "id": "center", "fg": 5144, "bg": 5394 },
+ { "id": "corner", "fg": [ 5146, 5148, 5147, 5145 ], "bg": 5394 },
+ { "id": "t_connection", "fg": [ 5156, 5158, 5157, 5155 ], "bg": 5394 },
+ { "id": "edge", "fg": [ 5150, 5149 ], "bg": 5394 },
+ { "id": "end_piece", "fg": [ 5152, 5154, 5153, 5151 ], "bg": 5394 },
+ { "id": "unconnected", "fg": [ 5159, 5159 ], "bg": 5394 }
]
},
{
"id": [ "t_linoleum_gray", "t_linoleum_gray_no_roof" ],
"multitile": true,
- "fg": 5012,
+ "fg": 5175,
"additional_tiles": [
- { "id": "center", "fg": 4997 },
- { "id": "corner", "fg": [ 4999, 5001, 5000, 4998 ] },
- { "id": "t_connection", "fg": [ 5009, 5011, 5010, 5008 ] },
- { "id": "edge", "fg": [ 5003, 5002 ] },
- { "id": "end_piece", "fg": [ 5005, 5007, 5006, 5004 ] },
- { "id": "unconnected", "fg": 5012 }
+ { "id": "center", "fg": 5160 },
+ { "id": "corner", "fg": [ 5162, 5164, 5163, 5161 ] },
+ { "id": "t_connection", "fg": [ 5172, 5174, 5173, 5171 ] },
+ { "id": "edge", "fg": [ 5166, 5165 ] },
+ { "id": "end_piece", "fg": [ 5168, 5170, 5169, 5167 ] },
+ { "id": "unconnected", "fg": 5175 }
]
},
{
"id": [ "t_linoleum_white", "t_linoleum_white_no_roof" ],
"multitile": true,
- "fg": 5028,
+ "fg": 5191,
"additional_tiles": [
- { "id": "center", "fg": 5013 },
- { "id": "corner", "fg": [ 5015, 5017, 5016, 5014 ] },
- { "id": "t_connection", "fg": [ 5025, 5027, 5026, 5024 ] },
- { "id": "edge", "fg": [ 5019, 5018 ] },
- { "id": "end_piece", "fg": [ 5021, 5023, 5022, 5020 ] },
- { "id": "unconnected", "fg": 5028 }
+ { "id": "center", "fg": 5176 },
+ { "id": "corner", "fg": [ 5178, 5180, 5179, 5177 ] },
+ { "id": "t_connection", "fg": [ 5188, 5190, 5189, 5187 ] },
+ { "id": "edge", "fg": [ 5182, 5181 ] },
+ { "id": "end_piece", "fg": [ 5184, 5186, 5185, 5183 ] },
+ { "id": "unconnected", "fg": 5191 }
]
},
+ { "id": "t_manhole", "fg": 5192, "bg": 5262 },
+ { "id": "t_manhole_cover", "fg": 5193, "bg": 5262 },
{
"id": "t_metal_floor",
"multitile": true,
- "fg": 5044,
+ "fg": 5209,
"additional_tiles": [
- { "id": "center", "fg": 5029 },
- { "id": "corner", "fg": [ 5031, 5033, 5032, 5030 ] },
- { "id": "t_connection", "fg": [ 5041, 5043, 5042, 5040 ] },
- { "id": "edge", "fg": [ 5035, 5034 ] },
- { "id": "end_piece", "fg": [ 5037, 5039, 5038, 5036 ] },
- { "id": "unconnected", "fg": 5044 }
+ { "id": "center", "fg": 5194 },
+ { "id": "corner", "fg": [ 5196, 5198, 5197, 5195 ] },
+ { "id": "t_connection", "fg": [ 5206, 5208, 5207, 5205 ] },
+ { "id": "edge", "fg": [ 5200, 5199 ] },
+ { "id": "end_piece", "fg": [ 5202, 5204, 5203, 5201 ] },
+ { "id": "unconnected", "fg": 5209 }
]
},
{
"id": "t_moss",
"multitile": true,
- "fg": 5061,
- "bg": 4895,
+ "fg": 5226,
+ "bg": 5058,
"additional_tiles": [
- { "id": "center", "bg": 4895, "fg": [ { "weight": 1, "sprite": 5045 }, { "weight": 1, "sprite": 5046 } ] },
- { "id": "corner", "bg": 4895, "fg": [ 5048, 5050, 5049, 5047 ] },
- { "id": "t_connection", "bg": 4895, "fg": [ 5058, 5060, 5059, 5057 ] },
- { "id": "edge", "bg": 4895, "fg": [ 5052, 5051 ] },
- { "id": "end_piece", "bg": 4895, "fg": [ 5054, 5056, 5055, 5053 ] },
- { "bg": 4895, "id": "unconnected", "fg": 5061 }
+ { "id": "center", "bg": 5058, "fg": [ { "weight": 1, "sprite": 5210 }, { "weight": 1, "sprite": 5211 } ] },
+ { "id": "corner", "bg": 5058, "fg": [ 5213, 5215, 5214, 5212 ] },
+ { "id": "t_connection", "bg": 5058, "fg": [ 5223, 5225, 5224, 5222 ] },
+ { "id": "edge", "bg": 5058, "fg": [ 5217, 5216 ] },
+ { "id": "end_piece", "bg": 5058, "fg": [ 5219, 5221, 5220, 5218 ] },
+ { "bg": 5058, "id": "unconnected", "fg": 5226 }
]
},
{
"id": "t_moss_season_summer",
"multitile": true,
- "fg": 5095,
- "bg": 4905,
+ "fg": 5260,
+ "bg": 5068,
"additional_tiles": [
- { "id": "center", "bg": 4905, "fg": [ { "weight": 1, "sprite": 5079 }, { "weight": 1, "sprite": 5080 } ] },
- { "id": "corner", "bg": 4905, "fg": [ 5082, 5084, 5083, 5081 ] },
- { "id": "t_connection", "bg": 4905, "fg": [ 5092, 5094, 5093, 5091 ] },
- { "id": "edge", "bg": 4905, "fg": [ 5086, 5085 ] },
- { "id": "end_piece", "bg": 4905, "fg": [ 5088, 5090, 5089, 5087 ] },
- { "bg": 4905, "id": "unconnected", "fg": 5095 }
+ { "id": "center", "bg": 5068, "fg": [ { "weight": 1, "sprite": 5244 }, { "weight": 1, "sprite": 5245 } ] },
+ { "id": "corner", "bg": 5068, "fg": [ 5247, 5249, 5248, 5246 ] },
+ { "id": "t_connection", "bg": 5068, "fg": [ 5257, 5259, 5258, 5256 ] },
+ { "id": "edge", "bg": 5068, "fg": [ 5251, 5250 ] },
+ { "id": "end_piece", "bg": 5068, "fg": [ 5253, 5255, 5254, 5252 ] },
+ { "bg": 5068, "id": "unconnected", "fg": 5260 }
]
},
{
"id": "t_moss_season_autumn",
"multitile": true,
- "fg": 5078,
- "bg": 4900,
+ "fg": 5243,
+ "bg": 5063,
"additional_tiles": [
- { "id": "center", "bg": 4900, "fg": [ { "weight": 1, "sprite": 5062 }, { "weight": 1, "sprite": 5063 } ] },
- { "id": "corner", "bg": 4900, "fg": [ 5065, 5067, 5066, 5064 ] },
- { "id": "t_connection", "bg": 4900, "fg": [ 5075, 5077, 5076, 5074 ] },
- { "id": "edge", "bg": 4900, "fg": [ 5069, 5068 ] },
- { "id": "end_piece", "bg": 4900, "fg": [ 5071, 5073, 5072, 5070 ] },
- { "bg": 4900, "id": "unconnected", "fg": 5078 }
+ { "id": "center", "bg": 5063, "fg": [ { "weight": 1, "sprite": 5227 }, { "weight": 1, "sprite": 5228 } ] },
+ { "id": "corner", "bg": 5063, "fg": [ 5230, 5232, 5231, 5229 ] },
+ { "id": "t_connection", "bg": 5063, "fg": [ 5240, 5242, 5241, 5239 ] },
+ { "id": "edge", "bg": 5063, "fg": [ 5234, 5233 ] },
+ { "id": "end_piece", "bg": 5063, "fg": [ 5236, 5238, 5237, 5235 ] },
+ { "bg": 5063, "id": "unconnected", "fg": 5243 }
]
},
{
"id": "t_moss_season_winter",
"multitile": true,
- "fg": 4376,
- "bg": 4358,
+ "fg": 4539,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": [ { "weight": 1, "sprite": 4358 }, { "weight": 1, "sprite": 4359 } ] },
- { "id": "corner", "bg": 4358, "fg": [ 4363, 4365, 4364, 4362 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 4373, 4375, 4374, 4372 ] },
- { "id": "edge", "bg": 4358, "fg": [ 4367, 4366 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 4369, 4371, 4370, 4368 ] },
- { "bg": 4358, "id": "unconnected", "fg": 4376 }
+ { "id": "center", "bg": 4521, "fg": [ { "weight": 1, "sprite": 4521 }, { "weight": 1, "sprite": 4522 } ] },
+ { "id": "corner", "bg": 4521, "fg": [ 4526, 4528, 4527, 4525 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 4536, 4538, 4537, 4535 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 4530, 4529 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 4532, 4534, 4533, 4531 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 4539 }
]
},
{
"id": "t_pavement",
"multitile": true,
- "fg": 5096,
+ "fg": 5262,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 5096 },
- { "weight": 1, "sprite": 5097 },
- { "weight": 1, "sprite": 5098 },
- { "weight": 1, "sprite": 5099 }
+ { "weight": 1, "sprite": 5262 },
+ { "weight": 1, "sprite": 5263 },
+ { "weight": 1, "sprite": 5264 },
+ { "weight": 1, "sprite": 5265 }
]
},
- { "id": "corner", "bg": 4894, "fg": [ 5108, 5111, 5110, 5107 ] },
- { "id": "t_connection", "fg": [ 5106, 5114, 5109, 5100 ] },
- { "id": "edge", "fg": [ 5113, 5105 ] },
- { "id": "end_piece", "fg": [ 5102, 5104, 5103, 5101 ] },
- { "id": "unconnected", "fg": 5112 }
+ { "id": "corner", "bg": 5057, "fg": [ 5274, 5277, 5276, 5273 ] },
+ { "id": "t_connection", "fg": [ 5272, 5280, 5275, 5266 ] },
+ { "id": "edge", "fg": [ 5279, 5271 ] },
+ { "id": "end_piece", "fg": [ 5268, 5270, 5269, 5267 ] },
+ { "id": "unconnected", "fg": 5278 }
]
},
{
"id": "t_pavement_season_summer",
"multitile": true,
- "fg": 5096,
+ "fg": 5262,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 5096 },
- { "weight": 1, "sprite": 5097 },
- { "weight": 1, "sprite": 5098 },
- { "weight": 1, "sprite": 5099 }
+ { "weight": 1, "sprite": 5262 },
+ { "weight": 1, "sprite": 5263 },
+ { "weight": 1, "sprite": 5264 },
+ { "weight": 1, "sprite": 5265 }
]
},
- { "id": "corner", "bg": 4904, "fg": [ 5108, 5111, 5110, 5107 ] },
- { "id": "t_connection", "fg": [ 5106, 5114, 5109, 5100 ] },
- { "id": "edge", "fg": [ 5113, 5105 ] },
- { "id": "end_piece", "fg": [ 5102, 5104, 5103, 5101 ] },
- { "id": "unconnected", "fg": 5112 }
+ { "id": "corner", "bg": 5067, "fg": [ 5274, 5277, 5276, 5273 ] },
+ { "id": "t_connection", "fg": [ 5272, 5280, 5275, 5266 ] },
+ { "id": "edge", "fg": [ 5279, 5271 ] },
+ { "id": "end_piece", "fg": [ 5268, 5270, 5269, 5267 ] },
+ { "id": "unconnected", "fg": 5278 }
]
},
{
"id": "t_pavement_season_autumn",
"multitile": true,
- "fg": 5096,
+ "fg": 5262,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 5096 },
- { "weight": 1, "sprite": 5097 },
- { "weight": 1, "sprite": 5098 },
- { "weight": 1, "sprite": 5099 }
+ { "weight": 1, "sprite": 5262 },
+ { "weight": 1, "sprite": 5263 },
+ { "weight": 1, "sprite": 5264 },
+ { "weight": 1, "sprite": 5265 }
]
},
- { "id": "corner", "bg": 4899, "fg": [ 5108, 5111, 5110, 5107 ] },
- { "id": "t_connection", "fg": [ 5106, 5114, 5109, 5100 ] },
- { "id": "edge", "fg": [ 5113, 5105 ] },
- { "id": "end_piece", "fg": [ 5102, 5104, 5103, 5101 ] },
- { "id": "unconnected", "fg": 5112 }
+ { "id": "corner", "bg": 5062, "fg": [ 5274, 5277, 5276, 5273 ] },
+ { "id": "t_connection", "fg": [ 5272, 5280, 5275, 5266 ] },
+ { "id": "edge", "fg": [ 5279, 5271 ] },
+ { "id": "end_piece", "fg": [ 5268, 5270, 5269, 5267 ] },
+ { "id": "unconnected", "fg": 5278 }
]
},
- { "id": "t_pavement_season_winter", "fg": 4357 },
- { "id": "t_pavement_y", "fg": 5115 },
- { "id": "t_pavement_y_season_winter", "fg": 4357 },
- { "id": "t_pit", "fg": 5116, "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ] },
+ { "id": "t_pavement_season_winter", "fg": 4520 },
+ { "id": "t_pavement_y", "fg": 5281 },
+ { "id": "t_pavement_y_season_winter", "fg": 4520 },
+ { "id": "t_pit", "fg": 5282, "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ] },
{
"id": "t_pit_season_summer",
- "fg": 5116,
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": 5282,
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
},
{
"id": "t_pit_season_autumn",
- "fg": 5116,
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": 5282,
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
},
- { "id": "t_pit_season_winter", "fg": 5116, "bg": 4358 },
+ { "id": "t_pit_season_winter", "fg": 5282, "bg": 4521 },
{
"id": "t_pit_shallow",
- "fg": 5132,
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ],
+ "fg": 5298,
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5117, "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ] },
+ { "id": "center", "fg": 5283, "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ] },
{
"id": "corner",
- "fg": [ 5119, 5121, 5120, 5118 ],
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ]
+ "fg": [ 5285, 5287, 5286, 5284 ],
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ]
},
{
"id": "t_connection",
- "fg": [ 5129, 5131, 5130, 5128 ],
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ]
+ "fg": [ 5295, 5297, 5296, 5294 ],
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ]
},
{
"id": "edge",
- "fg": [ 5123, 5122 ],
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ]
+ "fg": [ 5289, 5288 ],
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ]
},
{
"id": "end_piece",
- "fg": [ 5125, 5127, 5126, 5124 ],
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ]
+ "fg": [ 5291, 5293, 5292, 5290 ],
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ]
},
{
"id": "unconnected",
- "fg": [ 5132, 5132 ],
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ]
+ "fg": [ 5298, 5298 ],
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ]
}
]
},
{
"id": "t_pit_shallow_season_summer",
- "fg": 5132,
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ],
+ "fg": 5298,
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5117, "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ] },
+ { "id": "center", "fg": 5283, "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ] },
{
"id": "corner",
- "fg": [ 5119, 5121, 5120, 5118 ],
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": [ 5285, 5287, 5286, 5284 ],
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
},
{
"id": "t_connection",
- "fg": [ 5129, 5131, 5130, 5128 ],
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": [ 5295, 5297, 5296, 5294 ],
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
},
{
"id": "edge",
- "fg": [ 5123, 5122 ],
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": [ 5289, 5288 ],
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
},
{
"id": "end_piece",
- "fg": [ 5125, 5127, 5126, 5124 ],
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": [ 5291, 5293, 5292, 5290 ],
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
},
{
"id": "unconnected",
- "fg": [ 5132, 5132 ],
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": [ 5298, 5298 ],
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
}
]
},
{
"id": "t_pit_shallow_season_autumn",
- "fg": 5132,
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ],
+ "fg": 5298,
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5117, "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ] },
+ { "id": "center", "fg": 5283, "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ] },
{
"id": "corner",
- "fg": [ 5119, 5121, 5120, 5118 ],
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": [ 5285, 5287, 5286, 5284 ],
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
},
{
"id": "t_connection",
- "fg": [ 5129, 5131, 5130, 5128 ],
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": [ 5295, 5297, 5296, 5294 ],
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
},
{
"id": "edge",
- "fg": [ 5123, 5122 ],
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": [ 5289, 5288 ],
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
},
{
"id": "end_piece",
- "fg": [ 5125, 5127, 5126, 5124 ],
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": [ 5291, 5293, 5292, 5290 ],
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
},
{
"id": "unconnected",
- "fg": [ 5132, 5132 ],
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": [ 5298, 5298 ],
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
}
]
},
{
"id": "t_pit_shallow_season_winter",
- "fg": 5132,
- "bg": [ { "weight": 100, "sprite": 4358 }, { "weight": 100, "sprite": 4359 } ],
+ "fg": 5298,
+ "bg": [ { "weight": 100, "sprite": 4521 }, { "weight": 100, "sprite": 4522 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5117, "bg": [ { "weight": 100, "sprite": 4358 }, { "weight": 100, "sprite": 4359 } ] },
+ { "id": "center", "fg": 5283, "bg": [ { "weight": 100, "sprite": 4521 }, { "weight": 100, "sprite": 4522 } ] },
{
"id": "corner",
- "fg": [ 5119, 5121, 5120, 5118 ],
- "bg": [ { "weight": 100, "sprite": 4358 }, { "weight": 100, "sprite": 4359 } ]
+ "fg": [ 5285, 5287, 5286, 5284 ],
+ "bg": [ { "weight": 100, "sprite": 4521 }, { "weight": 100, "sprite": 4522 } ]
},
{
"id": "t_connection",
- "fg": [ 5129, 5131, 5130, 5128 ],
- "bg": [ { "weight": 100, "sprite": 4358 }, { "weight": 100, "sprite": 4359 } ]
+ "fg": [ 5295, 5297, 5296, 5294 ],
+ "bg": [ { "weight": 100, "sprite": 4521 }, { "weight": 100, "sprite": 4522 } ]
},
{
"id": "edge",
- "fg": [ 5123, 5122 ],
- "bg": [ { "weight": 100, "sprite": 4358 }, { "weight": 100, "sprite": 4359 } ]
+ "fg": [ 5289, 5288 ],
+ "bg": [ { "weight": 100, "sprite": 4521 }, { "weight": 100, "sprite": 4522 } ]
},
{
"id": "end_piece",
- "fg": [ 5125, 5127, 5126, 5124 ],
- "bg": [ { "weight": 100, "sprite": 4358 }, { "weight": 100, "sprite": 4359 } ]
+ "fg": [ 5291, 5293, 5292, 5290 ],
+ "bg": [ { "weight": 100, "sprite": 4521 }, { "weight": 100, "sprite": 4522 } ]
},
{
"id": "unconnected",
- "fg": [ 5132, 5132 ],
- "bg": [ { "weight": 100, "sprite": 4358 }, { "weight": 100, "sprite": 4359 } ]
+ "fg": [ 5298, 5298 ],
+ "bg": [ { "weight": 100, "sprite": 4521 }, { "weight": 100, "sprite": 4522 } ]
}
]
},
{
"id": "t_privacy_fence",
"multitile": true,
- "fg": 5148,
- "bg": 4894,
+ "fg": 5314,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": 5133 },
- { "id": "corner", "bg": 4894, "fg": [ 5135, 5137, 5136, 5134 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 5145, 5147, 5146, 5144 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5139, 5138 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5141, 5143, 5142, 5140 ] },
- { "bg": 4894, "id": "unconnected", "fg": [ 5148, 5148 ] }
+ { "id": "center", "bg": 5057, "fg": 5299 },
+ { "id": "corner", "bg": 5057, "fg": [ 5301, 5303, 5302, 5300 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5311, 5313, 5312, 5310 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5305, 5304 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5307, 5309, 5308, 5306 ] },
+ { "bg": 5057, "id": "unconnected", "fg": [ 5314, 5314 ] }
]
},
{
"id": "t_privacy_fence_season_winter",
"multitile": true,
- "fg": 5148,
- "bg": 4358,
+ "fg": 5314,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": 5133 },
- { "id": "corner", "bg": 4358, "fg": [ 5135, 5137, 5136, 5134 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 5145, 5147, 5146, 5144 ] },
- { "id": "edge", "bg": 4358, "fg": [ 5139, 5138 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 5141, 5143, 5142, 5140 ] },
- { "bg": 4358, "id": "unconnected", "fg": [ 5148, 5148 ] }
+ { "id": "center", "bg": 4521, "fg": 5299 },
+ { "id": "corner", "bg": 4521, "fg": [ 5301, 5303, 5302, 5300 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5311, 5313, 5312, 5310 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5305, 5304 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5307, 5309, 5308, 5306 ] },
+ { "bg": 4521, "id": "unconnected", "fg": [ 5314, 5314 ] }
]
},
{
"id": "t_railing",
"multitile": true,
- "fg": 5164,
- "bg": 4561,
+ "fg": 5330,
+ "bg": 4724,
"additional_tiles": [
- { "id": "center", "bg": 4561, "fg": 5149 },
- { "id": "corner", "bg": 4561, "fg": [ 5151, 5153, 5152, 5150 ] },
- { "id": "t_connection", "bg": 4561, "fg": [ 5161, 5163, 5162, 5160 ] },
- { "id": "edge", "bg": 4561, "fg": [ 5155, 5154 ] },
- { "id": "end_piece", "bg": 4561, "fg": [ 5157, 5159, 5158, 5156 ] },
- { "bg": 4561, "id": "unconnected", "fg": [ 5164, 5164 ] }
+ { "id": "center", "bg": 4724, "fg": 5315 },
+ { "id": "corner", "bg": 4724, "fg": [ 5317, 5319, 5318, 5316 ] },
+ { "id": "t_connection", "bg": 4724, "fg": [ 5327, 5329, 5328, 5326 ] },
+ { "id": "edge", "bg": 4724, "fg": [ 5321, 5320 ] },
+ { "id": "end_piece", "bg": 4724, "fg": [ 5323, 5325, 5324, 5322 ] },
+ { "bg": 4724, "id": "unconnected", "fg": [ 5330, 5330 ] }
]
},
{
"id": "t_railroad_rubble",
"multitile": true,
- "fg": 5181,
- "bg": 4894,
+ "fg": 5347,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": [ { "weight": 1, "sprite": 5165 }, { "weight": 1, "sprite": 5166 } ] },
- { "id": "corner", "bg": 4894, "fg": [ 5168, 5170, 5169, 5167 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 5178, 5180, 5179, 5177 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5172, 5171 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5174, 5176, 5175, 5173 ] },
- { "bg": 4894, "id": "unconnected", "fg": 5181 }
+ { "id": "center", "bg": 5057, "fg": [ { "weight": 1, "sprite": 5331 }, { "weight": 1, "sprite": 5332 } ] },
+ { "id": "corner", "bg": 5057, "fg": [ 5334, 5336, 5335, 5333 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5344, 5346, 5345, 5343 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5338, 5337 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5340, 5342, 5341, 5339 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5347 }
]
},
{
"id": "t_railroad_rubble_season_summer",
"multitile": true,
- "fg": 5181,
- "bg": 4904,
+ "fg": 5347,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": [ { "weight": 1, "sprite": 5165 }, { "weight": 1, "sprite": 5166 } ] },
- { "id": "corner", "bg": 4904, "fg": [ 5168, 5170, 5169, 5167 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 5178, 5180, 5179, 5177 ] },
- { "id": "edge", "bg": 4904, "fg": [ 5172, 5171 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 5174, 5176, 5175, 5173 ] },
- { "bg": 4904, "id": "unconnected", "fg": 5181 }
+ { "id": "center", "bg": 5067, "fg": [ { "weight": 1, "sprite": 5331 }, { "weight": 1, "sprite": 5332 } ] },
+ { "id": "corner", "bg": 5067, "fg": [ 5334, 5336, 5335, 5333 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5344, 5346, 5345, 5343 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5338, 5337 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5340, 5342, 5341, 5339 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5347 }
]
},
{
"id": "t_railroad_rubble_season_autumn",
"multitile": true,
- "fg": 5181,
- "bg": 4899,
+ "fg": 5347,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": [ { "weight": 1, "sprite": 5165 }, { "weight": 1, "sprite": 5166 } ] },
- { "id": "corner", "bg": 4899, "fg": [ 5168, 5170, 5169, 5167 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 5178, 5180, 5179, 5177 ] },
- { "id": "edge", "bg": 4899, "fg": [ 5172, 5171 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 5174, 5176, 5175, 5173 ] },
- { "bg": 4899, "id": "unconnected", "fg": 5181 }
+ { "id": "center", "bg": 5062, "fg": [ { "weight": 1, "sprite": 5331 }, { "weight": 1, "sprite": 5332 } ] },
+ { "id": "corner", "bg": 5062, "fg": [ 5334, 5336, 5335, 5333 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5344, 5346, 5345, 5343 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5338, 5337 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5340, 5342, 5341, 5339 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5347 }
]
},
{
"id": "t_railroad_rubble_season_winter",
"multitile": true,
- "fg": 5181,
- "bg": 4358,
+ "fg": 5347,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": [ { "weight": 1, "sprite": 5165 }, { "weight": 1, "sprite": 5166 } ] },
- { "id": "corner", "bg": 4358, "fg": [ 5168, 5170, 5169, 5167 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 5178, 5180, 5179, 5177 ] },
- { "id": "edge", "bg": 4358, "fg": [ 5172, 5171 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 5174, 5176, 5175, 5173 ] },
- { "bg": 4358, "id": "unconnected", "fg": 5181 }
+ { "id": "center", "bg": 4521, "fg": [ { "weight": 1, "sprite": 5331 }, { "weight": 1, "sprite": 5332 } ] },
+ { "id": "corner", "bg": 4521, "fg": [ 5334, 5336, 5335, 5333 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5344, 5346, 5345, 5343 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5338, 5337 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5340, 5342, 5341, 5339 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 5347 }
]
},
{
"id": "t_railroad_track_small",
- "fg": 5188,
- "bg": 5165,
+ "fg": 5354,
+ "bg": 5331,
"multitile": true,
"additional_tiles": [
- { "id": "center", "bg": 5165, "fg": 5182 },
- { "id": "corner", "bg": 5165, "fg": [ 5184, 5186, 5185, 5183 ] },
- { "id": "t_connection", "bg": 5165, "fg": [ 5190, 5192, 5191, 5189 ] },
- { "id": "edge", "bg": 5165, "fg": [ 5188, 5187 ] },
- { "id": "end_piece", "bg": 5165, "fg": [ 5188, 5187, 5188, 5187 ] },
- { "id": "unconnected", "bg": 5165, "fg": [ 5188, 5187 ] }
+ { "id": "center", "bg": 5331, "fg": 5348 },
+ { "id": "corner", "bg": 5331, "fg": [ 5350, 5352, 5351, 5349 ] },
+ { "id": "t_connection", "bg": 5331, "fg": [ 5356, 5358, 5357, 5355 ] },
+ { "id": "edge", "bg": 5331, "fg": [ 5354, 5353 ] },
+ { "id": "end_piece", "bg": 5331, "fg": [ 5354, 5353, 5354, 5353 ] },
+ { "id": "unconnected", "bg": 5331, "fg": [ 5354, 5353 ] }
]
},
- { "id": "t_rdoor_c", "fg": 5194 },
- { "id": "t_rdoor_o", "fg": 5195 },
- { "id": "t_rdoor_b", "fg": 5193 },
+ { "id": "t_rdoor_c", "fg": 5360 },
+ { "id": "t_rdoor_o", "fg": 5361 },
+ { "id": "t_rdoor_b", "fg": 5359 },
{
"id": "t_reinforced_glass",
"multitile": true,
- "fg": 5211,
+ "fg": 5377,
"additional_tiles": [
- { "id": "center", "fg": 5196 },
- { "id": "corner", "fg": [ 5198, 5200, 5199, 5197 ] },
- { "id": "t_connection", "fg": [ 5208, 5210, 5209, 5207 ] },
- { "id": "edge", "fg": [ 5202, 5201 ] },
- { "id": "end_piece", "fg": [ 5204, 5206, 5205, 5203 ] },
- { "id": "unconnected", "fg": 5211 }
+ { "id": "center", "fg": 5362 },
+ { "id": "corner", "fg": [ 5364, 5366, 5365, 5363 ] },
+ { "id": "t_connection", "fg": [ 5374, 5376, 5375, 5373 ] },
+ { "id": "edge", "fg": [ 5368, 5367 ] },
+ { "id": "end_piece", "fg": [ 5370, 5372, 5371, 5369 ] },
+ { "id": "unconnected", "fg": 5377 }
]
},
{
"id": "t_rock",
"multitile": true,
- "fg": 5227,
+ "fg": 5393,
"additional_tiles": [
- { "id": "center", "fg": 5212 },
- { "id": "corner", "fg": [ 5214, 5216, 5215, 5213 ] },
- { "id": "t_connection", "fg": [ 5224, 5226, 5225, 5223 ] },
- { "id": "edge", "fg": [ 5218, 5217 ] },
- { "id": "end_piece", "fg": [ 5220, 5222, 5221, 5219 ] },
- { "id": "unconnected", "fg": 5227 }
+ { "id": "center", "fg": 5378 },
+ { "id": "corner", "fg": [ 5380, 5382, 5381, 5379 ] },
+ { "id": "t_connection", "fg": [ 5390, 5392, 5391, 5389 ] },
+ { "id": "edge", "fg": [ 5384, 5383 ] },
+ { "id": "end_piece", "fg": [ 5386, 5388, 5387, 5385 ] },
+ { "id": "unconnected", "fg": 5393 }
]
},
{
"id": "t_rock_floor",
"multitile": true,
- "fg": 5245,
+ "fg": 5411,
"additional_tiles": [
{
"id": "center",
- "fg": [ { "weight": 1, "sprite": 5228 }, { "weight": 1, "sprite": 5229 }, { "weight": 1, "sprite": 5230 } ]
+ "fg": [ { "weight": 1, "sprite": 5394 }, { "weight": 1, "sprite": 5395 }, { "weight": 1, "sprite": 5396 } ]
},
- { "id": "corner", "fg": [ 5232, 5234, 5233, 5231 ] },
- { "id": "t_connection", "fg": [ 5242, 5244, 5243, 5241 ] },
- { "id": "edge", "fg": [ 5236, 5235 ] },
- { "id": "end_piece", "fg": [ 5238, 5240, 5239, 5237 ] },
- { "id": "unconnected", "fg": 5245 }
+ { "id": "corner", "fg": [ 5398, 5400, 5399, 5397 ] },
+ { "id": "t_connection", "fg": [ 5408, 5410, 5409, 5407 ] },
+ { "id": "edge", "fg": [ 5402, 5401 ] },
+ { "id": "end_piece", "fg": [ 5404, 5406, 5405, 5403 ] },
+ { "id": "unconnected", "fg": 5411 }
]
},
{
"id": "t_rock_wall",
"multitile": true,
- "fg": 5261,
+ "fg": 5427,
"additional_tiles": [
- { "id": "center", "fg": 5246 },
- { "id": "corner", "fg": [ 5248, 5250, 5249, 5247 ] },
- { "id": "t_connection", "fg": [ 5258, 5260, 5259, 5257 ] },
- { "id": "edge", "fg": [ 5252, 5251 ] },
- { "id": "end_piece", "fg": [ 5254, 5256, 5255, 5253 ] },
- { "id": "unconnected", "fg": 5261 }
+ { "id": "center", "fg": 5412 },
+ { "id": "corner", "fg": [ 5414, 5416, 5415, 5413 ] },
+ { "id": "t_connection", "fg": [ 5424, 5426, 5425, 5423 ] },
+ { "id": "edge", "fg": [ 5418, 5417 ] },
+ { "id": "end_piece", "fg": [ 5420, 5422, 5421, 5419 ] },
+ { "id": "unconnected", "fg": 5427 }
]
},
{
"id": "t_sand",
"multitile": true,
- "fg": 5280,
- "bg": 4894,
+ "fg": 5446,
+ "bg": 5057,
"additional_tiles": [
{
"id": "center",
- "bg": 4894,
+ "bg": 5057,
"fg": [
- { "weight": 1, "sprite": 5262 },
- { "weight": 1, "sprite": 5263 },
- { "weight": 1, "sprite": 5264 },
- { "weight": 1, "sprite": 5265 }
+ { "weight": 1, "sprite": 5428 },
+ { "weight": 1, "sprite": 5429 },
+ { "weight": 1, "sprite": 5430 },
+ { "weight": 1, "sprite": 5431 }
]
},
- { "id": "corner", "bg": 4894, "fg": [ 5267, 5269, 5268, 5266 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 5277, 5279, 5278, 5276 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5271, 5270 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5273, 5275, 5274, 5272 ] },
- { "bg": 4894, "id": "unconnected", "fg": 5280 }
+ { "id": "corner", "bg": 5057, "fg": [ 5433, 5435, 5434, 5432 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5443, 5445, 5444, 5442 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5437, 5436 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5439, 5441, 5440, 5438 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5446 }
]
},
{
"id": "t_sand_season_summer",
"multitile": true,
- "fg": 5280,
- "bg": 4904,
+ "fg": 5446,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": [ { "weight": 1, "sprite": 5262 }, { "weight": 1, "sprite": 5263 } ] },
- { "id": "corner", "bg": 4904, "fg": [ 5267, 5269, 5268, 5266 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 5277, 5279, 5278, 5276 ] },
- { "id": "edge", "bg": 4904, "fg": [ 5271, 5270 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 5273, 5275, 5274, 5272 ] },
- { "bg": 4904, "id": "unconnected", "fg": 5280 }
+ { "id": "center", "bg": 5067, "fg": [ { "weight": 1, "sprite": 5428 }, { "weight": 1, "sprite": 5429 } ] },
+ { "id": "corner", "bg": 5067, "fg": [ 5433, 5435, 5434, 5432 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5443, 5445, 5444, 5442 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5437, 5436 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5439, 5441, 5440, 5438 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5446 }
]
},
{
"id": "t_sand_season_autumn",
"multitile": true,
- "fg": 5280,
- "bg": 4899,
+ "fg": 5446,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": [ { "weight": 1, "sprite": 5262 }, { "weight": 1, "sprite": 5263 } ] },
- { "id": "corner", "bg": 4899, "fg": [ 5267, 5269, 5268, 5266 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 5277, 5279, 5278, 5276 ] },
- { "id": "edge", "bg": 4899, "fg": [ 5271, 5270 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 5273, 5275, 5274, 5272 ] },
- { "bg": 4899, "id": "unconnected", "fg": 5280 }
+ { "id": "center", "bg": 5062, "fg": [ { "weight": 1, "sprite": 5428 }, { "weight": 1, "sprite": 5429 } ] },
+ { "id": "corner", "bg": 5062, "fg": [ 5433, 5435, 5434, 5432 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5443, 5445, 5444, 5442 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5437, 5436 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5439, 5441, 5440, 5438 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5446 }
]
},
{
"id": "t_sand_season_winter",
"multitile": true,
- "fg": 5280,
- "bg": 4358,
+ "fg": 5446,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": [ { "weight": 1, "sprite": 5262 }, { "weight": 1, "sprite": 5263 } ] },
- { "id": "corner", "bg": 4358, "fg": [ 5267, 5269, 5268, 5266 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 5277, 5279, 5278, 5276 ] },
- { "id": "edge", "bg": 4358, "fg": [ 5271, 5270 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 5273, 5275, 5274, 5272 ] },
- { "bg": 4358, "id": "unconnected", "fg": 5280 }
+ { "id": "center", "bg": 4521, "fg": [ { "weight": 1, "sprite": 5428 }, { "weight": 1, "sprite": 5429 } ] },
+ { "id": "corner", "bg": 4521, "fg": [ 5433, 5435, 5434, 5432 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5443, 5445, 5444, 5442 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5437, 5436 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5439, 5441, 5440, 5438 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 5446 }
]
},
{
"id": [ "t_sandmound_season_spring", "t_sandmound_season_summer", "t_sandmound_season_autumn" ],
- "fg": 5281
+ "fg": 5447
},
- { "id": "t_sandmound_season_winter", "fg": 6814 },
+ { "id": "t_sandmound_season_winter", "fg": 6957 },
{
"id": "t_scrap_floor",
"multitile": true,
- "fg": 5297,
+ "fg": 5463,
"additional_tiles": [
- { "id": "center", "fg": 5282 },
- { "id": "corner", "fg": [ 5284, 5286, 5285, 5283 ] },
- { "id": "t_connection", "fg": [ 5294, 5296, 5295, 5293 ] },
- { "id": "edge", "fg": [ 5288, 5287 ] },
- { "id": "end_piece", "fg": [ 5290, 5292, 5291, 5289 ] },
- { "id": "unconnected", "fg": 5297 }
+ { "id": "center", "fg": 5448 },
+ { "id": "corner", "fg": [ 5450, 5452, 5451, 5449 ] },
+ { "id": "t_connection", "fg": [ 5460, 5462, 5461, 5459 ] },
+ { "id": "edge", "fg": [ 5454, 5453 ] },
+ { "id": "end_piece", "fg": [ 5456, 5458, 5457, 5455 ] },
+ { "id": "unconnected", "fg": 5463 }
]
},
{
"id": "t_scrap_wall",
"multitile": true,
- "fg": 5313,
+ "fg": 5479,
"additional_tiles": [
- { "id": "center", "fg": 5298 },
- { "id": "corner", "fg": [ 5300, 5302, 5301, 5299 ] },
- { "id": "t_connection", "fg": [ 5310, 5312, 5311, 5309 ] },
- { "id": "edge", "fg": [ 5304, 5303 ] },
- { "id": "end_piece", "fg": [ 5306, 5308, 5307, 5305 ] },
- { "id": "unconnected", "fg": 5313 }
+ { "id": "center", "fg": 5464 },
+ { "id": "corner", "fg": [ 5466, 5468, 5467, 5465 ] },
+ { "id": "t_connection", "fg": [ 5476, 5478, 5477, 5475 ] },
+ { "id": "edge", "fg": [ 5470, 5469 ] },
+ { "id": "end_piece", "fg": [ 5472, 5474, 5473, 5471 ] },
+ { "id": "unconnected", "fg": 5479 }
]
},
{
"id": "t_screened_porch_wall",
"multitile": true,
- "fg": 5329,
- "bg": 4791,
+ "fg": 5495,
+ "bg": 4954,
"additional_tiles": [
- { "id": "center", "bg": 4791, "fg": 5314 },
- { "id": "corner", "bg": 4791, "fg": [ 5316, 5318, 5317, 5315 ] },
- { "id": "t_connection", "bg": 4791, "fg": [ 5326, 5328, 5327, 5325 ] },
- { "id": "edge", "bg": 4791, "fg": [ 5320, 5319 ] },
- { "id": "end_piece", "bg": 4791, "fg": [ 5322, 5324, 5323, 5321 ] },
- { "bg": 4791, "id": "unconnected", "fg": [ 5329, 5329 ] }
+ { "id": "center", "bg": 4954, "fg": 5480 },
+ { "id": "corner", "bg": 4954, "fg": [ 5482, 5484, 5483, 5481 ] },
+ { "id": "t_connection", "bg": 4954, "fg": [ 5492, 5494, 5493, 5491 ] },
+ { "id": "edge", "bg": 4954, "fg": [ 5486, 5485 ] },
+ { "id": "end_piece", "bg": 4954, "fg": [ 5488, 5490, 5489, 5487 ] },
+ { "bg": 4954, "id": "unconnected", "fg": [ 5495, 5495 ] }
]
},
{
"id": "t_sewage",
"multitile": true,
- "fg": 5345,
+ "fg": 5511,
"additional_tiles": [
- { "id": "center", "fg": 5330 },
- { "id": "corner", "fg": [ 5332, 5334, 5333, 5331 ] },
- { "id": "t_connection", "fg": [ 5342, 5344, 5343, 5341 ] },
- { "id": "edge", "fg": [ 5336, 5335 ] },
- { "id": "end_piece", "fg": [ 5338, 5340, 5339, 5337 ] },
- { "id": "unconnected", "fg": [ 5345, 5345 ] }
+ { "id": "center", "fg": 5496 },
+ { "id": "corner", "fg": [ 5498, 5500, 5499, 5497 ] },
+ { "id": "t_connection", "fg": [ 5508, 5510, 5509, 5507 ] },
+ { "id": "edge", "fg": [ 5502, 5501 ] },
+ { "id": "end_piece", "fg": [ 5504, 5506, 5505, 5503 ] },
+ { "id": "unconnected", "fg": [ 5511, 5511 ] }
]
},
{
"id": "t_sewage_pipe",
"multitile": true,
- "fg": 5361,
+ "fg": 5527,
"additional_tiles": [
- { "id": "center", "fg": 5346 },
- { "id": "corner", "fg": [ 5348, 5350, 5349, 5347 ] },
- { "id": "t_connection", "fg": [ 5358, 5360, 5359, 5357 ] },
- { "id": "edge", "fg": [ 5352, 5351 ] },
- { "id": "end_piece", "fg": [ 5354, 5356, 5355, 5353 ] },
- { "id": "unconnected", "fg": [ 5361, 5361 ] }
+ { "id": "center", "fg": 5512 },
+ { "id": "corner", "fg": [ 5514, 5516, 5515, 5513 ] },
+ { "id": "t_connection", "fg": [ 5524, 5526, 5525, 5523 ] },
+ { "id": "edge", "fg": [ 5518, 5517 ] },
+ { "id": "end_piece", "fg": [ 5520, 5522, 5521, 5519 ] },
+ { "id": "unconnected", "fg": [ 5527, 5527 ] }
]
},
{
"id": "t_shingle_flat_roof",
"multitile": true,
- "fg": 5377,
+ "fg": 5543,
+ "additional_tiles": [
+ { "id": "center", "fg": 5528 },
+ { "id": "corner", "fg": [ 5530, 5532, 5531, 5529 ] },
+ { "id": "t_connection", "fg": [ 5540, 5542, 5541, 5539 ] },
+ { "id": "edge", "fg": [ 5534, 5533 ] },
+ { "id": "end_piece", "fg": [ 5536, 5538, 5537, 5535 ] },
+ { "id": "unconnected", "fg": 5543 }
+ ]
+ },
+ { "id": "t_shrub", "fg": 5544, "bg": 5057 },
+ { "id": "t_shrub_season_summer", "fg": 5544, "bg": 5067 },
+ { "id": "t_shrub_season_autumn", "fg": 5544, "bg": 5062 },
+ { "id": "t_shrub_season_winter", "fg": 5546, "bg": 4519 },
+ { "id": "t_shrub_blackberry", "fg": 5547, "bg": 5057 },
+ { "id": "t_shrub_blackberry_harvested", "fg": 5548, "bg": 5067 },
+ { "id": "t_shrub_blackberry_season_summer", "fg": 5549, "bg": 5067 },
+ { "id": "t_shrub_blackberry_season_autumn", "fg": 5547, "bg": 5062 },
+ { "id": "t_shrub_blackberry_season_winter", "fg": 5550, "bg": 4519 },
+ { "id": "t_shrub_blueberry", "fg": 5551, "bg": 5057 },
+ { "id": "t_shrub_blueberry_harvested", "fg": 5552, "bg": 5067 },
+ { "id": "t_shrub_blueberry_season_summer", "fg": 5553, "bg": 5067 },
+ { "id": "t_shrub_blueberry_season_autumn", "fg": 5551, "bg": 5062 },
+ { "id": "t_shrub_blueberry_season_winter", "fg": 5554, "bg": 4519 },
+ { "id": "t_shrub_grape", "fg": 5555, "bg": 5057 },
+ { "id": "t_shrub_grape_harvested", "fg": 5556, "bg": 5067 },
+ { "id": "t_shrub_grape_season_summer", "fg": 5557, "bg": 5067 },
+ { "id": "t_shrub_grape_season_autumn", "fg": 5555, "bg": 5062 },
+ { "id": "t_shrub_grape_season_winter", "fg": 5558, "bg": 4519 },
+ { "id": "t_shrub_huckleberry", "fg": 5559, "bg": 5057 },
+ { "id": "t_shrub_huckleberry_harvested", "fg": 5560, "bg": 5067 },
+ { "id": "t_shrub_huckleberry_season_summer", "fg": 5561, "bg": 5067 },
+ { "id": "t_shrub_huckleberry_season_autumn", "fg": 5559, "bg": 5062 },
+ { "id": "t_shrub_huckleberry_season_winter", "fg": 5562, "bg": 4519 },
+ { "id": "t_shrub_hydrangea", "fg": 5564, "bg": 5057 },
+ { "id": "t_shrub_hydrangea_harvested", "fg": 5563, "bg": 5057 },
+ { "id": "t_shrub_hydrangea_season_summer", "fg": 5565, "bg": 5067 },
+ { "id": "t_shrub_hydrangea_season_autumn", "fg": 5564, "bg": 5062 },
+ { "id": "t_shrub_hydrangea_season_winter", "fg": 5566, "bg": 4519 },
+ { "id": "t_shrub_lilac", "fg": 5568, "bg": 5057 },
+ { "id": "t_shrub_lilac_harvested", "fg": 5567, "bg": 5057 },
+ { "id": "t_shrub_lilac_season_summer", "fg": 5569, "bg": 5067 },
+ { "id": "t_shrub_lilac_season_autumn", "fg": 5567, "bg": 5062 },
+ { "id": "t_shrub_lilac_season_winter", "fg": 5570, "bg": 4519 },
+ { "id": "t_shrub_peanut", "fg": 5571, "bg": 5057 },
+ { "id": "t_shrub_peanut_harvested", "fg": 5573, "bg": 5062 },
+ { "id": "t_shrub_peanut_season_summer", "fg": 5571, "bg": 5067 },
+ { "id": "t_shrub_peanut_season_autumn", "fg": 5572, "bg": 5062 },
+ { "id": "t_shrub_peanut_season_winter", "fg": 5574, "bg": 4519 },
+ { "id": "t_shrub_raspberry", "fg": 5575, "bg": 5057 },
+ { "id": "t_shrub_raspberry_harvested", "fg": 5576, "bg": 5067 },
+ { "id": "t_shrub_raspberry_season_summer", "fg": 5577, "bg": 5067 },
+ { "id": "t_shrub_raspberry_season_autumn", "fg": 5575, "bg": 5062 },
+ { "id": "t_shrub_raspberry_season_winter", "fg": 5578, "bg": 4519 },
+ { "id": "t_shrub_rose", "fg": 5580, "bg": 5057 },
+ { "id": "t_shrub_rose_season_summer", "fg": 5580, "bg": 5067 },
+ { "id": "t_shrub_rose_harvested", "fg": 5580, "bg": 5062 },
+ { "id": "t_shrub_rose_season_autumn", "fg": 5579, "bg": 5062 },
+ { "id": "t_shrub_rose_season_winter", "fg": 5581, "bg": 4519 },
+ { "id": "t_shrub_strawberry", "fg": 5582, "bg": 5057 },
+ { "id": "t_shrub_strawberry_harvested", "fg": 5583, "bg": 5067 },
+ { "id": "t_shrub_strawberry_season_summer", "fg": 5584, "bg": 5067 },
+ { "id": "t_shrub_strawberry_season_autumn", "fg": 5582, "bg": 5062 },
+ { "id": "t_shrub_strawberry_season_winter", "fg": 5585, "bg": 4519 },
+ {
+ "id": [ "t_sidewalk", "t_sidewalk_bg_dp" ],
+ "multitile": true,
+ "fg": 5601,
"additional_tiles": [
- { "id": "center", "fg": 5362 },
- { "id": "corner", "fg": [ 5364, 5366, 5365, 5363 ] },
- { "id": "t_connection", "fg": [ 5374, 5376, 5375, 5373 ] },
- { "id": "edge", "fg": [ 5368, 5367 ] },
- { "id": "end_piece", "fg": [ 5370, 5372, 5371, 5369 ] },
- { "id": "unconnected", "fg": 5377 }
+ { "id": "center", "fg": 5586 },
+ { "id": "corner", "fg": [ 5588, 5590, 5589, 5587 ] },
+ { "id": "t_connection", "fg": [ 5598, 5600, 5599, 5597 ] },
+ { "id": "edge", "fg": [ 5592, 5591 ] },
+ { "id": "end_piece", "fg": [ 5594, 5596, 5595, 5593 ] },
+ { "id": "unconnected", "fg": 5601 }
]
},
- { "id": "t_shrub", "fg": 5378, "bg": 4894 },
- { "id": "t_shrub_season_summer", "fg": 5378, "bg": 4904 },
- { "id": "t_shrub_season_autumn", "fg": 5378, "bg": 4899 },
- { "id": "t_shrub_season_winter", "fg": 5380, "bg": 4356 },
- { "id": "t_shrub_blackberry", "fg": 5381, "bg": 4894 },
- { "id": "t_shrub_blackberry_harvested", "fg": 5382, "bg": 4904 },
- { "id": "t_shrub_blackberry_season_summer", "fg": 5383, "bg": 4904 },
- { "id": "t_shrub_blackberry_season_autumn", "fg": 5381, "bg": 4899 },
- { "id": "t_shrub_blackberry_season_winter", "fg": 5384, "bg": 4356 },
- { "id": "t_shrub_blueberry", "fg": 5385, "bg": 4894 },
- { "id": "t_shrub_blueberry_harvested", "fg": 5386, "bg": 4904 },
- { "id": "t_shrub_blueberry_season_summer", "fg": 5387, "bg": 4904 },
- { "id": "t_shrub_blueberry_season_autumn", "fg": 5385, "bg": 4899 },
- { "id": "t_shrub_blueberry_season_winter", "fg": 5388, "bg": 4356 },
- { "id": "t_shrub_grape", "fg": 5389, "bg": 4894 },
- { "id": "t_shrub_grape_harvested", "fg": 5390, "bg": 4904 },
- { "id": "t_shrub_grape_season_summer", "fg": 5391, "bg": 4904 },
- { "id": "t_shrub_grape_season_autumn", "fg": 5389, "bg": 4899 },
- { "id": "t_shrub_grape_season_winter", "fg": 5392, "bg": 4356 },
- { "id": "t_shrub_huckleberry", "fg": 5393, "bg": 4894 },
- { "id": "t_shrub_huckleberry_harvested", "fg": 5394, "bg": 4904 },
- { "id": "t_shrub_huckleberry_season_summer", "fg": 5395, "bg": 4904 },
- { "id": "t_shrub_huckleberry_season_autumn", "fg": 5393, "bg": 4899 },
- { "id": "t_shrub_huckleberry_season_winter", "fg": 5396, "bg": 4356 },
- { "id": "t_shrub_hydrangea", "fg": 5398, "bg": 4894 },
- { "id": "t_shrub_hydrangea_harvested", "fg": 5397, "bg": 4894 },
- { "id": "t_shrub_hydrangea_season_summer", "fg": 5399, "bg": 4904 },
- { "id": "t_shrub_hydrangea_season_autumn", "fg": 5398, "bg": 4899 },
- { "id": "t_shrub_hydrangea_season_winter", "fg": 5400, "bg": 4356 },
- { "id": "t_shrub_lilac", "fg": 5402, "bg": 4894 },
- { "id": "t_shrub_lilac_harvested", "fg": 5401, "bg": 4894 },
- { "id": "t_shrub_lilac_season_summer", "fg": 5403, "bg": 4904 },
- { "id": "t_shrub_lilac_season_autumn", "fg": 5401, "bg": 4899 },
- { "id": "t_shrub_lilac_season_winter", "fg": 5404, "bg": 4356 },
- { "id": "t_shrub_peanut", "fg": 5405, "bg": 4894 },
- { "id": "t_shrub_peanut_harvested", "fg": 5407, "bg": 4899 },
- { "id": "t_shrub_peanut_season_summer", "fg": 5405, "bg": 4904 },
- { "id": "t_shrub_peanut_season_autumn", "fg": 5406, "bg": 4899 },
- { "id": "t_shrub_peanut_season_winter", "fg": 5408, "bg": 4356 },
- { "id": "t_shrub_raspberry", "fg": 5409, "bg": 4894 },
- { "id": "t_shrub_raspberry_harvested", "fg": 5410, "bg": 4904 },
- { "id": "t_shrub_raspberry_season_summer", "fg": 5411, "bg": 4904 },
- { "id": "t_shrub_raspberry_season_autumn", "fg": 5409, "bg": 4899 },
- { "id": "t_shrub_raspberry_season_winter", "fg": 5412, "bg": 4356 },
- { "id": "t_shrub_rose", "fg": 5414, "bg": 4894 },
- { "id": "t_shrub_rose_season_summer", "fg": 5414, "bg": 4904 },
- { "id": "t_shrub_rose_harvested", "fg": 5414, "bg": 4899 },
- { "id": "t_shrub_rose_season_autumn", "fg": 5413, "bg": 4899 },
- { "id": "t_shrub_rose_season_winter", "fg": 5415, "bg": 4356 },
- { "id": "t_shrub_strawberry", "fg": 5416, "bg": 4894 },
- { "id": "t_shrub_strawberry_harvested", "fg": 5417, "bg": 4904 },
- { "id": "t_shrub_strawberry_season_summer", "fg": 5418, "bg": 4904 },
- { "id": "t_shrub_strawberry_season_autumn", "fg": 5416, "bg": 4899 },
- { "id": "t_shrub_strawberry_season_winter", "fg": 5419, "bg": 4356 },
- {
- "id": [ "t_sidewalk", "t_sidewalk_bg_dp" ],
- "multitile": true,
- "fg": 5435,
- "additional_tiles": [
- { "id": "center", "fg": 5420 },
- { "id": "corner", "fg": [ 5422, 5424, 5423, 5421 ] },
- { "id": "t_connection", "fg": [ 5432, 5434, 5433, 5431 ] },
- { "id": "edge", "fg": [ 5426, 5425 ] },
- { "id": "end_piece", "fg": [ 5428, 5430, 5429, 5427 ] },
- { "id": "unconnected", "fg": 5435 }
- ]
- },
- { "id": "t_sidewalk_season_winter", "fg": 4358 },
- { "id": "t_slime", "fg": 5436 },
+ { "id": "t_sidewalk_season_winter", "fg": 4521 },
+ { "id": "t_slime", "fg": 5602 },
{
"id": "t_soil",
- "fg": 5452,
+ "fg": 5618,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5437 },
- { "id": "corner", "fg": [ 5439, 5441, 5440, 5438 ] },
- { "id": "t_connection", "fg": [ 5449, 5451, 5450, 5448 ] },
- { "id": "edge", "fg": [ 5443, 5442 ] },
- { "id": "end_piece", "fg": [ 5445, 5447, 5446, 5444 ] },
- { "id": "unconnected", "fg": [ 5452, 5452 ] }
+ { "id": "center", "fg": 5603 },
+ { "id": "corner", "fg": [ 5605, 5607, 5606, 5604 ] },
+ { "id": "t_connection", "fg": [ 5615, 5617, 5616, 5614 ] },
+ { "id": "edge", "fg": [ 5609, 5608 ] },
+ { "id": "end_piece", "fg": [ 5611, 5613, 5612, 5610 ] },
+ { "id": "unconnected", "fg": [ 5618, 5618 ] }
]
},
- { "id": "t_splitrail_fencegate_c", "fg": 5453, "bg": 4894 },
- { "id": "t_splitrail_fencegate_o", "fg": 5454, "bg": 4894 },
- { "id": "t_splitrail_fencegate_c_season_summer", "fg": 5453, "bg": 4904 },
- { "id": "t_splitrail_fencegate_o_season_summer", "fg": 5454, "bg": 4904 },
- { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 5453, "bg": 4899 },
- { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 5454, "bg": 4899 },
- { "id": "t_splitrail_fencegate_c_season_winter", "fg": 5453, "bg": 4358 },
- { "id": "t_splitrail_fencegate_o_season_winter", "fg": 5454, "bg": 4358 },
+ { "id": "t_splitrail_fencegate_c", "fg": 5619, "bg": 5057 },
+ { "id": "t_splitrail_fencegate_o", "fg": 5620, "bg": 5057 },
+ { "id": "t_splitrail_fencegate_c_season_summer", "fg": 5619, "bg": 5067 },
+ { "id": "t_splitrail_fencegate_o_season_summer", "fg": 5620, "bg": 5067 },
+ { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 5619, "bg": 5062 },
+ { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 5620, "bg": 5062 },
+ { "id": "t_splitrail_fencegate_c_season_winter", "fg": 5619, "bg": 4521 },
+ { "id": "t_splitrail_fencegate_o_season_winter", "fg": 5620, "bg": 4521 },
{
"id": "t_strconc_floor",
"multitile": true,
- "fg": 5470,
+ "fg": 5636,
"additional_tiles": [
- { "id": "center", "fg": 5455 },
- { "id": "corner", "fg": [ 5457, 5459, 5458, 5456 ] },
- { "id": "t_connection", "fg": [ 5467, 5469, 5468, 5466 ] },
- { "id": "edge", "fg": [ 5461, 5460 ] },
- { "id": "end_piece", "fg": [ 5463, 5465, 5464, 5462 ] },
- { "id": "unconnected", "fg": 5470 }
+ { "id": "center", "fg": 5621 },
+ { "id": "corner", "fg": [ 5623, 5625, 5624, 5622 ] },
+ { "id": "t_connection", "fg": [ 5633, 5635, 5634, 5632 ] },
+ { "id": "edge", "fg": [ 5627, 5626 ] },
+ { "id": "end_piece", "fg": [ 5629, 5631, 5630, 5628 ] },
+ { "id": "unconnected", "fg": 5636 }
]
},
- { "id": "t_stump", "fg": 5471, "bg": 4894 },
- { "id": "t_stump_season_summer", "fg": 5471, "bg": 4904 },
- { "id": "t_stump_season_autumn", "fg": 5471, "bg": 4899 },
- { "id": "t_stump_season_winter", "fg": 5471, "bg": 4356 },
- { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 5472 }, { "weight": 100, "sprite": 5473 } ] },
+ { "id": "t_stump", "fg": 5637, "bg": 5057 },
+ { "id": "t_stump_season_summer", "fg": 5637, "bg": 5067 },
+ { "id": "t_stump_season_autumn", "fg": 5637, "bg": 5062 },
+ { "id": "t_stump_season_winter", "fg": 5637, "bg": 4519 },
+ { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 5638 }, { "weight": 100, "sprite": 5639 } ] },
{
"id": "t_thconc_floor",
"multitile": true,
- "fg": 5489,
+ "fg": 5655,
"additional_tiles": [
- { "id": "center", "fg": 5474 },
- { "id": "corner", "fg": [ 5476, 5478, 5477, 5475 ] },
- { "id": "t_connection", "fg": [ 5486, 5488, 5487, 5485 ] },
- { "id": "edge", "fg": [ 5480, 5479 ] },
- { "id": "end_piece", "fg": [ 5482, 5484, 5483, 5481 ] },
- { "id": "unconnected", "fg": 5489 }
+ { "id": "center", "fg": 5640 },
+ { "id": "corner", "fg": [ 5642, 5644, 5643, 5641 ] },
+ { "id": "t_connection", "fg": [ 5652, 5654, 5653, 5651 ] },
+ { "id": "edge", "fg": [ 5646, 5645 ] },
+ { "id": "end_piece", "fg": [ 5648, 5650, 5649, 5647 ] },
+ { "id": "unconnected", "fg": 5655 }
]
},
- { "id": "t_underbrush", "fg": 5491, "bg": 4894 },
- { "id": "t_underbrush_harvested_spring", "fg": 5492, "bg": 4894 },
- { "id": "t_underbrush_season_summer", "fg": 5491, "bg": 4904 },
- { "id": "t_underbrush_harvested_summer", "fg": 5492, "bg": 4904 },
- { "id": "t_underbrush_season_autumn", "fg": 5491, "bg": 4899 },
- { "id": "t_underbrush_harvested_autumn", "fg": 5492, "bg": 4899 },
- { "id": "t_underbrush_harvested_winter", "fg": 5492, "bg": 4356 },
- { "id": "t_underbrush_season_winter", "fg": 5491, "bg": 4356 },
+ { "id": "t_underbrush", "fg": 5657, "bg": 5057 },
+ { "id": "t_underbrush_harvested_spring", "fg": 5658, "bg": 5057 },
+ { "id": "t_underbrush_season_summer", "fg": 5657, "bg": 5067 },
+ { "id": "t_underbrush_harvested_summer", "fg": 5658, "bg": 5067 },
+ { "id": "t_underbrush_season_autumn", "fg": 5657, "bg": 5062 },
+ { "id": "t_underbrush_harvested_autumn", "fg": 5658, "bg": 5062 },
+ { "id": "t_underbrush_harvested_winter", "fg": 5658, "bg": 4519 },
+ { "id": "t_underbrush_season_winter", "fg": 5657, "bg": 4519 },
{
"id": "t_wall",
"multitile": true,
- "fg": 5508,
+ "fg": 5674,
"additional_tiles": [
- { "id": "center", "fg": 5493 },
- { "id": "corner", "fg": [ 5495, 5497, 5496, 5494 ] },
- { "id": "t_connection", "fg": [ 5505, 5507, 5506, 5504 ] },
- { "id": "edge", "fg": [ 5499, 5498 ] },
- { "id": "end_piece", "fg": [ 5501, 5503, 5502, 5500 ] },
- { "id": "unconnected", "fg": 5508 }
+ { "id": "center", "fg": 5659 },
+ { "id": "corner", "fg": [ 5661, 5663, 5662, 5660 ] },
+ { "id": "t_connection", "fg": [ 5671, 5673, 5672, 5670 ] },
+ { "id": "edge", "fg": [ 5665, 5664 ] },
+ { "id": "end_piece", "fg": [ 5667, 5669, 5668, 5666 ] },
+ { "id": "unconnected", "fg": 5674 }
]
},
{
"id": "t_wall_b",
"multitile": true,
- "fg": 5524,
+ "fg": 5690,
"additional_tiles": [
- { "id": "center", "fg": 5509 },
- { "id": "corner", "fg": [ 5511, 5513, 5512, 5510 ] },
- { "id": "t_connection", "fg": [ 5521, 5523, 5522, 5520 ] },
- { "id": "edge", "fg": [ 5515, 5514 ] },
- { "id": "end_piece", "fg": [ 5517, 5519, 5518, 5516 ] },
- { "id": "unconnected", "fg": 5524 }
+ { "id": "center", "fg": 5675 },
+ { "id": "corner", "fg": [ 5677, 5679, 5678, 5676 ] },
+ { "id": "t_connection", "fg": [ 5687, 5689, 5688, 5686 ] },
+ { "id": "edge", "fg": [ 5681, 5680 ] },
+ { "id": "end_piece", "fg": [ 5683, 5685, 5684, 5682 ] },
+ { "id": "unconnected", "fg": 5690 }
]
},
{
"id": "t_wall_g",
"multitile": true,
- "fg": 5540,
+ "fg": 5706,
"additional_tiles": [
- { "id": "center", "fg": 5525 },
- { "id": "corner", "fg": [ 5527, 5529, 5528, 5526 ] },
- { "id": "t_connection", "fg": [ 5537, 5539, 5538, 5536 ] },
- { "id": "edge", "fg": [ 5531, 5530 ] },
- { "id": "end_piece", "fg": [ 5533, 5535, 5534, 5532 ] },
- { "id": "unconnected", "fg": 5540 }
+ { "id": "center", "fg": 5691 },
+ { "id": "corner", "fg": [ 5693, 5695, 5694, 5692 ] },
+ { "id": "t_connection", "fg": [ 5703, 5705, 5704, 5702 ] },
+ { "id": "edge", "fg": [ 5697, 5696 ] },
+ { "id": "end_piece", "fg": [ 5699, 5701, 5700, 5698 ] },
+ { "id": "unconnected", "fg": 5706 }
]
},
{
"id": [ "t_wall_glass", "t_wall_glass_alarm" ],
"multitile": true,
- "fg": 5556,
+ "fg": 5722,
"additional_tiles": [
- { "id": "center", "fg": 5541 },
- { "id": "corner", "fg": [ 5543, 5545, 5544, 5542 ] },
- { "id": "t_connection", "fg": [ 5553, 5555, 5554, 5552 ] },
- { "id": "edge", "fg": [ 5547, 5546 ] },
- { "id": "end_piece", "fg": [ 5549, 5551, 5550, 5548 ] },
- { "id": "unconnected", "fg": 5556 }
+ { "id": "center", "fg": 5707 },
+ { "id": "corner", "fg": [ 5709, 5711, 5710, 5708 ] },
+ { "id": "t_connection", "fg": [ 5719, 5721, 5720, 5718 ] },
+ { "id": "edge", "fg": [ 5713, 5712 ] },
+ { "id": "end_piece", "fg": [ 5715, 5717, 5716, 5714 ] },
+ { "id": "unconnected", "fg": 5722 }
]
},
{
"id": "t_wall_log",
"multitile": true,
- "fg": 5572,
- "bg": 4894,
+ "fg": 5738,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "fg": 5557 },
- { "id": "corner", "fg": [ 5559, 5561, 5560, 5558 ] },
- { "id": "t_connection", "fg": [ 5569, 5571, 5570, 5568 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5563, 5562 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5565, 5567, 5566, 5564 ] },
- { "bg": 4894, "id": "unconnected", "fg": 5572 }
+ { "id": "center", "fg": 5723 },
+ { "id": "corner", "fg": [ 5725, 5727, 5726, 5724 ] },
+ { "id": "t_connection", "fg": [ 5735, 5737, 5736, 5734 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5729, 5728 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5731, 5733, 5732, 5730 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5738 }
]
},
{
"id": "t_wall_metal",
- "fg": 5588,
+ "fg": 5754,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5573 },
- { "id": "corner", "fg": [ 5575, 5577, 5576, 5574 ] },
- { "id": "t_connection", "fg": [ 5585, 5587, 5586, 5584 ] },
- { "id": "edge", "fg": [ 5579, 5578 ] },
- { "id": "end_piece", "fg": [ 5581, 5583, 5582, 5580 ] },
- { "id": "unconnected", "fg": [ 5588, 5588 ] }
+ { "id": "center", "fg": 5739 },
+ { "id": "corner", "fg": [ 5741, 5743, 5742, 5740 ] },
+ { "id": "t_connection", "fg": [ 5751, 5753, 5752, 5750 ] },
+ { "id": "edge", "fg": [ 5745, 5744 ] },
+ { "id": "end_piece", "fg": [ 5747, 5749, 5748, 5746 ] },
+ { "id": "unconnected", "fg": [ 5754, 5754 ] }
]
},
{
"id": "t_wall_metal_corrugated",
- "fg": 5604,
+ "fg": 5770,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5589 },
- { "id": "corner", "fg": [ 5591, 5593, 5592, 5590 ] },
- { "id": "t_connection", "fg": [ 5601, 5603, 5602, 5600 ] },
- { "id": "edge", "fg": [ 5595, 5594 ] },
- { "id": "end_piece", "fg": [ 5597, 5599, 5598, 5596 ] },
- { "id": "unconnected", "fg": [ 5604, 5604 ] }
+ { "id": "center", "fg": 5755 },
+ { "id": "corner", "fg": [ 5757, 5759, 5758, 5756 ] },
+ { "id": "t_connection", "fg": [ 5767, 5769, 5768, 5766 ] },
+ { "id": "edge", "fg": [ 5761, 5760 ] },
+ { "id": "end_piece", "fg": [ 5763, 5765, 5764, 5762 ] },
+ { "id": "unconnected", "fg": [ 5770, 5770 ] }
]
},
{
"id": "t_wall_p",
"multitile": true,
- "fg": 5620,
+ "fg": 5786,
"additional_tiles": [
- { "id": "center", "fg": 5605 },
- { "id": "corner", "fg": [ 5607, 5609, 5608, 5606 ] },
- { "id": "t_connection", "fg": [ 5617, 5619, 5618, 5616 ] },
- { "id": "edge", "fg": [ 5611, 5610 ] },
- { "id": "end_piece", "fg": [ 5613, 5615, 5614, 5612 ] },
- { "id": "unconnected", "fg": 5620 }
+ { "id": "center", "fg": 5771 },
+ { "id": "corner", "fg": [ 5773, 5775, 5774, 5772 ] },
+ { "id": "t_connection", "fg": [ 5783, 5785, 5784, 5782 ] },
+ { "id": "edge", "fg": [ 5777, 5776 ] },
+ { "id": "end_piece", "fg": [ 5779, 5781, 5780, 5778 ] },
+ { "id": "unconnected", "fg": 5786 }
]
},
{
"id": "t_wall_r",
"multitile": true,
- "fg": 5636,
+ "fg": 5802,
"additional_tiles": [
- { "id": "center", "fg": 5621 },
- { "id": "corner", "fg": [ 5623, 5625, 5624, 5622 ] },
- { "id": "t_connection", "fg": [ 5633, 5635, 5634, 5632 ] },
- { "id": "edge", "fg": [ 5627, 5626 ] },
- { "id": "end_piece", "fg": [ 5629, 5631, 5630, 5628 ] },
- { "id": "unconnected", "fg": 5636 }
+ { "id": "center", "fg": 5787 },
+ { "id": "corner", "fg": [ 5789, 5791, 5790, 5788 ] },
+ { "id": "t_connection", "fg": [ 5799, 5801, 5800, 5798 ] },
+ { "id": "edge", "fg": [ 5793, 5792 ] },
+ { "id": "end_piece", "fg": [ 5795, 5797, 5796, 5794 ] },
+ { "id": "unconnected", "fg": 5802 }
+ ]
+ },
+ {
+ "id": "t_wall_rammed_earth",
+ "fg": 5818,
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "center", "fg": 5803 },
+ { "id": "corner", "fg": [ 5805, 5807, 5806, 5804 ] },
+ { "id": "t_connection", "fg": [ 5815, 5817, 5816, 5814 ] },
+ { "id": "edge", "fg": [ 5809, 5808 ] },
+ { "id": "end_piece", "fg": [ 5811, 5813, 5812, 5810 ] },
+ { "id": "unconnected", "fg": [ 5818, 5818 ] }
]
},
{
"id": "t_wall_resin",
"multitile": true,
- "fg": 5654,
+ "fg": 5836,
"additional_tiles": [
- { "id": "center", "fg": 5639 },
- { "id": "corner", "fg": [ 5641, 5643, 5642, 5640 ] },
- { "id": "t_connection", "fg": [ 5651, 5653, 5652, 5650 ] },
- { "id": "edge", "fg": [ 5645, 5644 ] },
- { "id": "end_piece", "fg": [ 5647, 5649, 5648, 5646 ] },
- { "id": "unconnected", "fg": 5654 }
+ { "id": "center", "fg": 5821 },
+ { "id": "corner", "fg": [ 5823, 5825, 5824, 5822 ] },
+ { "id": "t_connection", "fg": [ 5833, 5835, 5834, 5832 ] },
+ { "id": "edge", "fg": [ 5827, 5826 ] },
+ { "id": "end_piece", "fg": [ 5829, 5831, 5830, 5828 ] },
+ { "id": "unconnected", "fg": 5836 }
]
},
- { "id": "t_resin_hole_c", "fg": 5637 },
- { "id": "t_resin_hole_o", "fg": 5638 },
+ { "id": "t_resin_hole_c", "fg": 5819 },
+ { "id": "t_resin_hole_o", "fg": 5820 },
{
"id": "t_wall_w",
"multitile": true,
- "fg": 5671,
+ "fg": 5853,
"additional_tiles": [
- { "id": "center", "fg": 5656 },
- { "id": "corner", "fg": [ 5658, 5660, 5659, 5657 ] },
- { "id": "t_connection", "fg": [ 5668, 5670, 5669, 5667 ] },
- { "id": "edge", "fg": [ 5662, 5661 ] },
- { "id": "end_piece", "fg": [ 5664, 5666, 5665, 5663 ] },
- { "id": "unconnected", "fg": 5671 }
+ { "id": "center", "fg": 5838 },
+ { "id": "corner", "fg": [ 5840, 5842, 5841, 5839 ] },
+ { "id": "t_connection", "fg": [ 5850, 5852, 5851, 5849 ] },
+ { "id": "edge", "fg": [ 5844, 5843 ] },
+ { "id": "end_piece", "fg": [ 5846, 5848, 5847, 5845 ] },
+ { "id": "unconnected", "fg": 5853 }
]
},
{
"id": [ "t_wall_wood", "t_wall_wood_chipped", "t_wall_wood_broken" ],
"multitile": true,
- "fg": 5687,
+ "fg": 5869,
"additional_tiles": [
- { "id": "center", "fg": 5672 },
- { "id": "corner", "fg": [ 5674, 5676, 5675, 5673 ] },
- { "id": "t_connection", "fg": [ 5684, 5686, 5685, 5683 ] },
- { "id": "edge", "fg": [ 5678, 5677 ] },
- { "id": "end_piece", "fg": [ 5680, 5682, 5681, 5679 ] },
- { "id": "unconnected", "fg": 5687 }
+ { "id": "center", "fg": 5854 },
+ { "id": "corner", "fg": [ 5856, 5858, 5857, 5855 ] },
+ { "id": "t_connection", "fg": [ 5866, 5868, 5867, 5865 ] },
+ { "id": "edge", "fg": [ 5860, 5859 ] },
+ { "id": "end_piece", "fg": [ 5862, 5864, 5863, 5861 ] },
+ { "id": "unconnected", "fg": 5869 }
]
},
{
"id": "t_wall_y",
"multitile": true,
- "fg": 5703,
+ "fg": 5885,
"additional_tiles": [
- { "id": "center", "fg": 5688 },
- { "id": "corner", "fg": [ 5690, 5692, 5691, 5689 ] },
- { "id": "t_connection", "fg": [ 5700, 5702, 5701, 5699 ] },
- { "id": "edge", "fg": [ 5694, 5693 ] },
- { "id": "end_piece", "fg": [ 5696, 5698, 5697, 5695 ] },
- { "id": "unconnected", "fg": 5703 }
+ { "id": "center", "fg": 5870 },
+ { "id": "corner", "fg": [ 5872, 5874, 5873, 5871 ] },
+ { "id": "t_connection", "fg": [ 5882, 5884, 5883, 5881 ] },
+ { "id": "edge", "fg": [ 5876, 5875 ] },
+ { "id": "end_piece", "fg": [ 5878, 5880, 5879, 5877 ] },
+ { "id": "unconnected", "fg": 5885 }
]
},
{
"id": [ "t_water_dp", "t_swater_dp" ],
"multitile": true,
- "fg": 5722,
- "bg": 4894,
+ "fg": 5904,
+ "bg": 5057,
"additional_tiles": [
{
"id": "center",
- "bg": 4894,
+ "bg": 5057,
"fg": [
- { "weight": 1, "sprite": 5704 },
- { "weight": 1, "sprite": 5705 },
- { "weight": 1, "sprite": 5706 },
- { "weight": 1, "sprite": 5707 }
+ { "weight": 1, "sprite": 5886 },
+ { "weight": 1, "sprite": 5887 },
+ { "weight": 1, "sprite": 5888 },
+ { "weight": 1, "sprite": 5889 }
]
},
- { "id": "corner", "bg": 4894, "fg": [ 5709, 5711, 5710, 5708 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 5719, 5721, 5720, 5718 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5713, 5712 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5715, 5717, 5716, 5714 ] },
- { "bg": 4894, "id": "unconnected", "fg": 5722 }
+ { "id": "corner", "bg": 5057, "fg": [ 5891, 5893, 5892, 5890 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5901, 5903, 5902, 5900 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5895, 5894 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5897, 5899, 5898, 5896 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5904 }
]
},
{
"id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ],
"multitile": true,
- "fg": 5722,
- "bg": 4904,
+ "fg": 5904,
+ "bg": 5067,
"additional_tiles": [
{
"id": "center",
- "bg": 4904,
- "fg": [ { "weight": 1, "sprite": 5704 }, { "weight": 1, "sprite": 5705 }, { "weight": 1, "sprite": 5706 } ]
+ "bg": 5067,
+ "fg": [ { "weight": 1, "sprite": 5886 }, { "weight": 1, "sprite": 5887 }, { "weight": 1, "sprite": 5888 } ]
},
- { "id": "corner", "bg": 4904, "fg": [ 5709, 5711, 5710, 5708 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 5719, 5721, 5720, 5718 ] },
- { "id": "edge", "bg": 4904, "fg": [ 5713, 5712 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 5715, 5717, 5716, 5714 ] },
- { "bg": 4904, "id": "unconnected", "fg": 5722 }
+ { "id": "corner", "bg": 5067, "fg": [ 5891, 5893, 5892, 5890 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5901, 5903, 5902, 5900 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5895, 5894 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5897, 5899, 5898, 5896 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5904 }
]
},
{
"id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ],
"multitile": true,
- "fg": 5722,
- "bg": 4899,
+ "fg": 5904,
+ "bg": 5062,
"additional_tiles": [
{
"id": "center",
- "bg": 4899,
- "fg": [ { "weight": 1, "sprite": 5704 }, { "weight": 1, "sprite": 5705 }, { "weight": 1, "sprite": 5706 } ]
+ "bg": 5062,
+ "fg": [ { "weight": 1, "sprite": 5886 }, { "weight": 1, "sprite": 5887 }, { "weight": 1, "sprite": 5888 } ]
},
- { "id": "corner", "bg": 4899, "fg": [ 5709, 5711, 5710, 5708 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 5719, 5721, 5720, 5718 ] },
- { "id": "edge", "bg": 4899, "fg": [ 5713, 5712 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 5715, 5717, 5716, 5714 ] },
- { "bg": 4899, "id": "unconnected", "fg": 5722 }
+ { "id": "corner", "bg": 5062, "fg": [ 5891, 5893, 5892, 5890 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5901, 5903, 5902, 5900 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5895, 5894 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5897, 5899, 5898, 5896 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5904 }
]
},
{
"id": [ "t_water_dp_season_winter", "t_swater_dp_season_winter" ],
"multitile": true,
- "fg": 5722,
- "bg": 4358,
+ "fg": 5904,
+ "bg": 4521,
"additional_tiles": [
{
"id": "center",
- "bg": 4358,
- "fg": [ { "weight": 1, "sprite": 5704 }, { "weight": 1, "sprite": 5705 }, { "weight": 1, "sprite": 5706 } ]
+ "bg": 4521,
+ "fg": [ { "weight": 1, "sprite": 5886 }, { "weight": 1, "sprite": 5887 }, { "weight": 1, "sprite": 5888 } ]
},
- { "id": "corner", "bg": 4358, "fg": [ 5709, 5711, 5710, 5708 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 5719, 5721, 5720, 5718 ] },
- { "id": "edge", "bg": 4358, "fg": [ 5713, 5712 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 5715, 5717, 5716, 5714 ] },
- { "bg": 4358, "id": "unconnected", "fg": 5722 }
+ { "id": "corner", "bg": 4521, "fg": [ 5891, 5893, 5892, 5890 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5901, 5903, 5902, 5900 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5895, 5894 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5897, 5899, 5898, 5896 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 5904 }
]
},
{
"id": "t_water_hot",
- "fg": 5738,
- "bg": 4894,
+ "fg": 5920,
+ "bg": 5057,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5723, "bg": 4894 },
- { "id": "corner", "fg": [ 5725, 5727, 5726, 5724 ], "bg": 4894 },
- { "id": "t_connection", "fg": [ 5735, 5737, 5736, 5734 ], "bg": 4894 },
- { "id": "edge", "fg": [ 5729, 5728 ], "bg": 4894 },
- { "id": "end_piece", "fg": [ 5731, 5733, 5732, 5730 ], "bg": 4894 },
- { "id": "unconnected", "fg": [ 5738, 5738 ], "bg": 4894 }
+ { "id": "center", "fg": 5905, "bg": 5057 },
+ { "id": "corner", "fg": [ 5907, 5909, 5908, 5906 ], "bg": 5057 },
+ { "id": "t_connection", "fg": [ 5917, 5919, 5918, 5916 ], "bg": 5057 },
+ { "id": "edge", "fg": [ 5911, 5910 ], "bg": 5057 },
+ { "id": "end_piece", "fg": [ 5913, 5915, 5914, 5912 ], "bg": 5057 },
+ { "id": "unconnected", "fg": [ 5920, 5920 ], "bg": 5057 }
]
},
{
"id": "t_water_hot_season_summer",
- "fg": 5738,
- "bg": 4904,
+ "fg": 5920,
+ "bg": 5067,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5723, "bg": 4904 },
- { "id": "corner", "fg": [ 5725, 5727, 5726, 5724 ], "bg": 4904 },
- { "id": "t_connection", "fg": [ 5735, 5737, 5736, 5734 ], "bg": 4904 },
- { "id": "edge", "fg": [ 5729, 5728 ], "bg": 4904 },
- { "id": "end_piece", "fg": [ 5731, 5733, 5732, 5730 ], "bg": 4904 },
- { "id": "unconnected", "fg": [ 5738, 5738 ], "bg": 4904 }
+ { "id": "center", "fg": 5905, "bg": 5067 },
+ { "id": "corner", "fg": [ 5907, 5909, 5908, 5906 ], "bg": 5067 },
+ { "id": "t_connection", "fg": [ 5917, 5919, 5918, 5916 ], "bg": 5067 },
+ { "id": "edge", "fg": [ 5911, 5910 ], "bg": 5067 },
+ { "id": "end_piece", "fg": [ 5913, 5915, 5914, 5912 ], "bg": 5067 },
+ { "id": "unconnected", "fg": [ 5920, 5920 ], "bg": 5067 }
]
},
{
"id": "t_water_hot_season_autumn",
- "fg": 5738,
- "bg": 4899,
+ "fg": 5920,
+ "bg": 5062,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5723, "bg": 4899 },
- { "id": "corner", "fg": [ 5725, 5727, 5726, 5724 ], "bg": 4899 },
- { "id": "t_connection", "fg": [ 5735, 5737, 5736, 5734 ], "bg": 4899 },
- { "id": "edge", "fg": [ 5729, 5728 ], "bg": 4899 },
- { "id": "end_piece", "fg": [ 5731, 5733, 5732, 5730 ], "bg": 4899 },
- { "id": "unconnected", "fg": [ 5738, 5738 ], "bg": 4899 }
+ { "id": "center", "fg": 5905, "bg": 5062 },
+ { "id": "corner", "fg": [ 5907, 5909, 5908, 5906 ], "bg": 5062 },
+ { "id": "t_connection", "fg": [ 5917, 5919, 5918, 5916 ], "bg": 5062 },
+ { "id": "edge", "fg": [ 5911, 5910 ], "bg": 5062 },
+ { "id": "end_piece", "fg": [ 5913, 5915, 5914, 5912 ], "bg": 5062 },
+ { "id": "unconnected", "fg": [ 5920, 5920 ], "bg": 5062 }
]
},
{
"id": "t_water_hot_season_winter",
- "fg": 5738,
- "bg": 4358,
+ "fg": 5920,
+ "bg": 4521,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5723, "bg": 4358 },
- { "id": "corner", "fg": [ 5725, 5727, 5726, 5724 ], "bg": 4358 },
- { "id": "t_connection", "fg": [ 5735, 5737, 5736, 5734 ], "bg": 4358 },
- { "id": "edge", "fg": [ 5729, 5728 ], "bg": 4358 },
- { "id": "end_piece", "fg": [ 5731, 5733, 5732, 5730 ], "bg": 4358 },
- { "id": "unconnected", "fg": [ 5738, 5738 ], "bg": 4358 }
+ { "id": "center", "fg": 5905, "bg": 4521 },
+ { "id": "corner", "fg": [ 5907, 5909, 5908, 5906 ], "bg": 4521 },
+ { "id": "t_connection", "fg": [ 5917, 5919, 5918, 5916 ], "bg": 4521 },
+ { "id": "edge", "fg": [ 5911, 5910 ], "bg": 4521 },
+ { "id": "end_piece", "fg": [ 5913, 5915, 5914, 5912 ], "bg": 4521 },
+ { "id": "unconnected", "fg": [ 5920, 5920 ], "bg": 4521 }
]
},
{
"id": [ "t_water_moving_dp", "t_swater_moving_dp" ],
"multitile": true,
- "fg": 5755,
- "bg": 4894,
+ "fg": 5937,
+ "bg": 5057,
"additional_tiles": [
- { "id": "center", "bg": 4894, "fg": [ { "weight": 1, "sprite": 5739 }, { "weight": 1, "sprite": 5740 } ] },
- { "id": "corner", "bg": 4894, "fg": [ 5742, 5744, 5743, 5741 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 5752, 5754, 5753, 5751 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5746, 5745 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5748, 5750, 5749, 5747 ] },
- { "bg": 4894, "id": "unconnected", "fg": 5755 }
+ { "id": "center", "bg": 5057, "fg": [ { "weight": 1, "sprite": 5921 }, { "weight": 1, "sprite": 5922 } ] },
+ { "id": "corner", "bg": 5057, "fg": [ 5924, 5926, 5925, 5923 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5934, 5936, 5935, 5933 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5928, 5927 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5930, 5932, 5931, 5929 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5937 }
]
},
{
"id": [ "t_water_moving_dp_season_summer", "t_swater_moving_dp_season_summer" ],
"multitile": true,
- "fg": 5755,
- "bg": 4904,
+ "fg": 5937,
+ "bg": 5067,
"additional_tiles": [
- { "id": "center", "bg": 4904, "fg": [ { "weight": 1, "sprite": 5739 }, { "weight": 1, "sprite": 5740 } ] },
- { "id": "corner", "bg": 4904, "fg": [ 5742, 5744, 5743, 5741 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 5752, 5754, 5753, 5751 ] },
- { "id": "edge", "bg": 4904, "fg": [ 5746, 5745 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 5748, 5750, 5749, 5747 ] },
- { "bg": 4904, "id": "unconnected", "fg": 5755 }
+ { "id": "center", "bg": 5067, "fg": [ { "weight": 1, "sprite": 5921 }, { "weight": 1, "sprite": 5922 } ] },
+ { "id": "corner", "bg": 5067, "fg": [ 5924, 5926, 5925, 5923 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5934, 5936, 5935, 5933 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5928, 5927 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5930, 5932, 5931, 5929 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5937 }
]
},
{
"id": [ "t_water_moving_dp_season_autumn", "t_swater_moving_dp_season_autumn" ],
"multitile": true,
- "fg": 5755,
- "bg": 4899,
+ "fg": 5937,
+ "bg": 5062,
"additional_tiles": [
- { "id": "center", "bg": 4899, "fg": [ { "weight": 1, "sprite": 5739 }, { "weight": 1, "sprite": 5740 } ] },
- { "id": "corner", "bg": 4899, "fg": [ 5742, 5744, 5743, 5741 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 5752, 5754, 5753, 5751 ] },
- { "id": "edge", "bg": 4899, "fg": [ 5746, 5745 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 5748, 5750, 5749, 5747 ] },
- { "bg": 4899, "id": "unconnected", "fg": 5755 }
+ { "id": "center", "bg": 5062, "fg": [ { "weight": 1, "sprite": 5921 }, { "weight": 1, "sprite": 5922 } ] },
+ { "id": "corner", "bg": 5062, "fg": [ 5924, 5926, 5925, 5923 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5934, 5936, 5935, 5933 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5928, 5927 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5930, 5932, 5931, 5929 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5937 }
]
},
{
"id": [ "t_water_moving_dp_season_winter", "t_swater_moving_dp_season_winter" ],
"multitile": true,
- "fg": 5755,
- "bg": 4358,
+ "fg": 5937,
+ "bg": 4521,
"additional_tiles": [
- { "id": "center", "bg": 4358, "fg": [ { "weight": 1, "sprite": 5739 }, { "weight": 1, "sprite": 5740 } ] },
- { "id": "corner", "bg": 4358, "fg": [ 5742, 5744, 5743, 5741 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 5752, 5754, 5753, 5751 ] },
- { "id": "edge", "bg": 4358, "fg": [ 5746, 5745 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 5748, 5750, 5749, 5747 ] },
- { "bg": 4358, "id": "unconnected", "fg": 5755 }
+ { "id": "center", "bg": 4521, "fg": [ { "weight": 1, "sprite": 5921 }, { "weight": 1, "sprite": 5922 } ] },
+ { "id": "corner", "bg": 4521, "fg": [ 5924, 5926, 5925, 5923 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5934, 5936, 5935, 5933 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5928, 5927 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5930, 5932, 5931, 5929 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 5937 }
]
},
{
"id": [ "t_water_moving_sh", "t_swater_moving_sh" ],
"multitile": true,
- "fg": 5774,
- "bg": 4894,
+ "fg": 5956,
+ "bg": 5057,
"additional_tiles": [
{
"id": "center",
- "bg": 4894,
+ "bg": 5057,
"fg": [
- { "weight": 1, "sprite": 5756 },
- { "weight": 1, "sprite": 5757 },
- { "weight": 1, "sprite": 5758 },
- { "weight": 1, "sprite": 5759 }
+ { "weight": 1, "sprite": 5938 },
+ { "weight": 1, "sprite": 5939 },
+ { "weight": 1, "sprite": 5940 },
+ { "weight": 1, "sprite": 5941 }
]
},
- { "id": "corner", "bg": 4894, "fg": [ 5761, 5763, 5762, 5760 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 5771, 5773, 5772, 5770 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5765, 5764 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5767, 5769, 5768, 5766 ] },
- { "bg": 4894, "id": "unconnected", "fg": 5774 }
+ { "id": "corner", "bg": 5057, "fg": [ 5943, 5945, 5944, 5942 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5953, 5955, 5954, 5952 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5947, 5946 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5949, 5951, 5950, 5948 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5956 }
]
},
{
"id": [ "t_water_moving_sh_season_summer", "t_swater_moving_sh_season_summer" ],
"multitile": true,
- "fg": 5774,
- "bg": 4904,
+ "fg": 5956,
+ "bg": 5067,
"additional_tiles": [
{
"id": "center",
- "bg": 4904,
+ "bg": 5067,
"fg": [
- { "weight": 1, "sprite": 5756 },
- { "weight": 1, "sprite": 5757 },
- { "weight": 1, "sprite": 5758 },
- { "weight": 1, "sprite": 5759 }
+ { "weight": 1, "sprite": 5938 },
+ { "weight": 1, "sprite": 5939 },
+ { "weight": 1, "sprite": 5940 },
+ { "weight": 1, "sprite": 5941 }
]
},
- { "id": "corner", "bg": 4904, "fg": [ 5761, 5763, 5762, 5760 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 5771, 5773, 5772, 5770 ] },
- { "id": "edge", "bg": 4904, "fg": [ 5765, 5764 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 5767, 5769, 5768, 5766 ] },
- { "bg": 4904, "id": "unconnected", "fg": 5774 }
+ { "id": "corner", "bg": 5067, "fg": [ 5943, 5945, 5944, 5942 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5953, 5955, 5954, 5952 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5947, 5946 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5949, 5951, 5950, 5948 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5956 }
]
},
{
"id": [ "t_water_moving_sh_season_autumn", "t_swater_moving_sh_season_autumn" ],
"multitile": true,
- "fg": 5774,
- "bg": 4899,
+ "fg": 5956,
+ "bg": 5062,
"additional_tiles": [
{
"id": "center",
- "bg": 4899,
+ "bg": 5062,
"fg": [
- { "weight": 1, "sprite": 5756 },
- { "weight": 1, "sprite": 5757 },
- { "weight": 1, "sprite": 5758 },
- { "weight": 1, "sprite": 5759 }
+ { "weight": 1, "sprite": 5938 },
+ { "weight": 1, "sprite": 5939 },
+ { "weight": 1, "sprite": 5940 },
+ { "weight": 1, "sprite": 5941 }
]
},
- { "id": "corner", "bg": 4899, "fg": [ 5761, 5763, 5762, 5760 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 5771, 5773, 5772, 5770 ] },
- { "id": "edge", "bg": 4899, "fg": [ 5765, 5764 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 5767, 5769, 5768, 5766 ] },
- { "bg": 4899, "id": "unconnected", "fg": 5774 }
+ { "id": "corner", "bg": 5062, "fg": [ 5943, 5945, 5944, 5942 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5953, 5955, 5954, 5952 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5947, 5946 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5949, 5951, 5950, 5948 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5956 }
]
},
{
"id": [ "t_water_moving_sh_season_winter", "t_swater_moving_sh_season_winter" ],
"multitile": true,
- "fg": 5774,
- "bg": 4358,
+ "fg": 5956,
+ "bg": 4521,
"additional_tiles": [
{
"id": "center",
- "bg": 4358,
+ "bg": 4521,
"fg": [
- { "weight": 1, "sprite": 5756 },
- { "weight": 1, "sprite": 5757 },
- { "weight": 1, "sprite": 5758 },
- { "weight": 1, "sprite": 5759 }
+ { "weight": 1, "sprite": 5938 },
+ { "weight": 1, "sprite": 5939 },
+ { "weight": 1, "sprite": 5940 },
+ { "weight": 1, "sprite": 5941 }
]
},
- { "id": "corner", "bg": 4358, "fg": [ 5761, 5763, 5762, 5760 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 5771, 5773, 5772, 5770 ] },
- { "id": "edge", "bg": 4358, "fg": [ 5765, 5764 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 5767, 5769, 5768, 5766 ] },
- { "bg": 4358, "id": "unconnected", "fg": 5774 }
+ { "id": "corner", "bg": 4521, "fg": [ 5943, 5945, 5944, 5942 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5953, 5955, 5954, 5952 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5947, 5946 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5949, 5951, 5950, 5948 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 5956 }
]
},
{
"id": [ "t_water_pool", "t_water_pool_shallow" ],
"multitile": true,
- "fg": 5789,
+ "fg": 5971,
"additional_tiles": [
{
"id": "center",
- "fg": [ { "weight": 1, "sprite": 5790 }, { "weight": 1, "sprite": 5791 }, { "weight": 1, "sprite": 5792 } ]
+ "fg": [ { "weight": 1, "sprite": 5972 }, { "weight": 1, "sprite": 5973 }, { "weight": 1, "sprite": 5974 } ]
},
- { "id": "corner", "fg": [ 5776, 5778, 5777, 5775 ] },
- { "id": "t_connection", "fg": [ 5786, 5788, 5787, 5785 ] },
- { "id": "edge", "fg": [ 5780, 5779 ] },
- { "id": "end_piece", "fg": [ 5782, 5784, 5783, 5781 ] },
- { "id": "unconnected", "fg": [ 5789, 5789 ] }
+ { "id": "corner", "fg": [ 5958, 5960, 5959, 5957 ] },
+ { "id": "t_connection", "fg": [ 5968, 5970, 5969, 5967 ] },
+ { "id": "edge", "fg": [ 5962, 5961 ] },
+ { "id": "end_piece", "fg": [ 5964, 5966, 5965, 5963 ] },
+ { "id": "unconnected", "fg": [ 5971, 5971 ] }
]
},
{
"id": [ "t_water_sh", "t_swater_sh" ],
"multitile": true,
- "fg": 5808,
- "bg": 4894,
+ "fg": 5990,
+ "bg": 5057,
"additional_tiles": [
{
"id": "center",
- "bg": 4894,
+ "bg": 5057,
"fg": [
- { "weight": 1, "sprite": 5790 },
- { "weight": 1, "sprite": 5791 },
- { "weight": 1, "sprite": 5792 },
- { "weight": 1, "sprite": 5793 }
+ { "weight": 1, "sprite": 5972 },
+ { "weight": 1, "sprite": 5973 },
+ { "weight": 1, "sprite": 5974 },
+ { "weight": 1, "sprite": 5975 }
]
},
- { "id": "corner", "bg": 4894, "fg": [ 5795, 5797, 5796, 5794 ] },
- { "id": "t_connection", "bg": 4894, "fg": [ 5805, 5807, 5806, 5804 ] },
- { "id": "edge", "bg": 4894, "fg": [ 5799, 5798 ] },
- { "id": "end_piece", "bg": 4894, "fg": [ 5801, 5803, 5802, 5800 ] },
- { "bg": 4894, "id": "unconnected", "fg": 5808 }
+ { "id": "corner", "bg": 5057, "fg": [ 5977, 5979, 5978, 5976 ] },
+ { "id": "t_connection", "bg": 5057, "fg": [ 5987, 5989, 5988, 5986 ] },
+ { "id": "edge", "bg": 5057, "fg": [ 5981, 5980 ] },
+ { "id": "end_piece", "bg": 5057, "fg": [ 5983, 5985, 5984, 5982 ] },
+ { "bg": 5057, "id": "unconnected", "fg": 5990 }
]
},
{
"id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ],
"multitile": true,
- "fg": 5808,
- "bg": 4904,
+ "fg": 5990,
+ "bg": 5067,
"additional_tiles": [
{
"id": "center",
- "bg": 4904,
- "fg": [ { "weight": 1, "sprite": 5790 }, { "weight": 1, "sprite": 5791 }, { "weight": 1, "sprite": 5792 } ]
+ "bg": 5067,
+ "fg": [ { "weight": 1, "sprite": 5972 }, { "weight": 1, "sprite": 5973 }, { "weight": 1, "sprite": 5974 } ]
},
- { "id": "corner", "bg": 4904, "fg": [ 5795, 5797, 5796, 5794 ] },
- { "id": "t_connection", "bg": 4904, "fg": [ 5805, 5807, 5806, 5804 ] },
- { "id": "edge", "bg": 4904, "fg": [ 5799, 5798 ] },
- { "id": "end_piece", "bg": 4904, "fg": [ 5801, 5803, 5802, 5800 ] },
- { "bg": 4904, "id": "unconnected", "fg": 5808 }
+ { "id": "corner", "bg": 5067, "fg": [ 5977, 5979, 5978, 5976 ] },
+ { "id": "t_connection", "bg": 5067, "fg": [ 5987, 5989, 5988, 5986 ] },
+ { "id": "edge", "bg": 5067, "fg": [ 5981, 5980 ] },
+ { "id": "end_piece", "bg": 5067, "fg": [ 5983, 5985, 5984, 5982 ] },
+ { "bg": 5067, "id": "unconnected", "fg": 5990 }
]
},
{
"id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ],
"multitile": true,
- "fg": 5808,
- "bg": 4899,
+ "fg": 5990,
+ "bg": 5062,
"additional_tiles": [
{
"id": "center",
- "bg": 4899,
- "fg": [ { "weight": 1, "sprite": 5790 }, { "weight": 1, "sprite": 5791 }, { "weight": 1, "sprite": 5792 } ]
+ "bg": 5062,
+ "fg": [ { "weight": 1, "sprite": 5972 }, { "weight": 1, "sprite": 5973 }, { "weight": 1, "sprite": 5974 } ]
},
- { "id": "corner", "bg": 4899, "fg": [ 5795, 5797, 5796, 5794 ] },
- { "id": "t_connection", "bg": 4899, "fg": [ 5805, 5807, 5806, 5804 ] },
- { "id": "edge", "bg": 4899, "fg": [ 5799, 5798 ] },
- { "id": "end_piece", "bg": 4899, "fg": [ 5801, 5803, 5802, 5800 ] },
- { "bg": 4899, "id": "unconnected", "fg": 5808 }
+ { "id": "corner", "bg": 5062, "fg": [ 5977, 5979, 5978, 5976 ] },
+ { "id": "t_connection", "bg": 5062, "fg": [ 5987, 5989, 5988, 5986 ] },
+ { "id": "edge", "bg": 5062, "fg": [ 5981, 5980 ] },
+ { "id": "end_piece", "bg": 5062, "fg": [ 5983, 5985, 5984, 5982 ] },
+ { "bg": 5062, "id": "unconnected", "fg": 5990 }
]
},
{
"id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ],
"multitile": true,
- "fg": 5808,
- "bg": 4358,
+ "fg": 5990,
+ "bg": 4521,
"additional_tiles": [
{
"id": "center",
- "bg": 4358,
- "fg": [ { "weight": 1, "sprite": 5790 }, { "weight": 1, "sprite": 5791 }, { "weight": 1, "sprite": 5792 } ]
+ "bg": 4521,
+ "fg": [ { "weight": 1, "sprite": 5972 }, { "weight": 1, "sprite": 5973 }, { "weight": 1, "sprite": 5974 } ]
},
- { "id": "corner", "bg": 4358, "fg": [ 5795, 5797, 5796, 5794 ] },
- { "id": "t_connection", "bg": 4358, "fg": [ 5805, 5807, 5806, 5804 ] },
- { "id": "edge", "bg": 4358, "fg": [ 5799, 5798 ] },
- { "id": "end_piece", "bg": 4358, "fg": [ 5801, 5803, 5802, 5800 ] },
- { "bg": 4358, "id": "unconnected", "fg": 5808 }
- ]
- },
- { "id": [ "t_window", "t_window_alarm" ], "fg": 5809 },
- { "id": "t_window_empty", "fg": 5812 },
- { "id": "t_window_domestic", "fg": 5810 },
- { "id": "t_window_open", "fg": 5816 },
- { "id": "t_window_no_curtains", "fg": 5813 },
- { "id": "t_window_no_curtains_open", "fg": 5814 },
- { "id": "t_woodchips", "fg": 5818 },
- { "id": "t_woodchips_season_winter", "fg": 4358 },
+ { "id": "corner", "bg": 4521, "fg": [ 5977, 5979, 5978, 5976 ] },
+ { "id": "t_connection", "bg": 4521, "fg": [ 5987, 5989, 5988, 5986 ] },
+ { "id": "edge", "bg": 4521, "fg": [ 5981, 5980 ] },
+ { "id": "end_piece", "bg": 4521, "fg": [ 5983, 5985, 5984, 5982 ] },
+ { "bg": 4521, "id": "unconnected", "fg": 5990 }
+ ]
+ },
+ { "id": [ "t_window", "t_window_alarm" ], "fg": 5991 },
+ { "id": "t_window_empty", "fg": 5994 },
+ { "id": "t_window_domestic", "fg": 5992 },
+ { "id": "t_window_open", "fg": 5998 },
+ { "id": "t_window_no_curtains", "fg": 5995 },
+ { "id": "t_window_no_curtains_open", "fg": 5996 },
+ { "id": "t_woodchips", "fg": 6000 },
+ { "id": "t_woodchips_season_winter", "fg": 4521 },
{
"id": [ "tr_downspout_funnel", "tr_pit", "tr_lava", "tr_ledge", "tr_glass_pit", "tr_spike_pit" ],
- "fg": 2832
+ "fg": 2912
},
- { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 5823 }, { "weight": 1, "sprite": 5824 } ] },
- { "id": "tr_nailboard", "fg": 5819, "bg": 3721 },
- { "id": "tr_portal", "fg": 5827 },
- { "id": "tr_tripwire", "fg": 5829 },
+ { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 6005 }, { "weight": 1, "sprite": 6006 } ] },
+ { "id": "tr_nailboard", "fg": 6001, "bg": 3834 },
+ { "id": "tr_portal", "fg": 6009 },
+ { "id": "tr_tripwire", "fg": 6011 },
{
"id": [ "vp_forklift_fork" ],
- "fg": [ 5832, 5834, 5833, 5831 ],
+ "fg": [ 6014, 6016, 6015, 6013 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 5832, 5834, 5833, 5831 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6014, 6016, 6015, 6013 ] } ]
},
{
"id": [ "vp_forklift_fork_horizontal_front" ],
- "fg": [ 5833, 5831, 5832, 5834 ],
+ "fg": [ 6015, 6013, 6014, 6016 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 5833, 5831, 5832, 5834 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6015, 6013, 6014, 6016 ] } ]
},
{
"id": "vp_saddle_motor",
- "fg": [ 5836, 5838, 5837, 5835 ],
+ "fg": [ 6018, 6020, 6019, 6017 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 5836, 5838, 5837, 5835 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6018, 6020, 6019, 6017 ] } ]
},
{
"id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ],
- "fg": [ 5844, 5846, 5845, 5843 ],
+ "fg": [ 6026, 6028, 6027, 6025 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 5844, 5846, 5845, 5843 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6026, 6028, 6027, 6025 ] } ]
},
{
"id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ],
- "fg": [ 5840, 5842, 5841, 5839 ],
+ "fg": [ 6022, 6024, 6023, 6021 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 5840, 5842, 5841, 5839 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6022, 6024, 6023, 6021 ] } ]
},
{
"id": [ "vp_wheel_small_scooter", "vp_wheel_small_scooter_steerable" ],
- "fg": [ 5852, 5854, 5853, 5851 ],
+ "fg": [ 6034, 6036, 6035, 6033 ],
"rotates": true
},
- { "id": "vp_wheel_small_scooter_rear", "fg": [ 5848, 5850, 5849, 5847 ], "rotates": true },
+ { "id": "vp_wheel_small_scooter_rear", "fg": [ 6030, 6032, 6031, 6029 ], "rotates": true },
{
"id": "vp_battery_charger",
- "fg": 5855,
- "bg": 7055,
+ "fg": [ 6037, 6037, 6037, 6037 ],
+ "bg": 7198,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 5855 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6037, 6037, 6037, 6037 ] } ]
},
{
"id": "vp_recharge_station",
- "fg": 5856,
- "bg": 7055,
+ "fg": [ 6038, 6038, 6038, 6038 ],
+ "bg": 7198,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 5856 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6038, 6038, 6038, 6038 ] } ]
},
{
"id": "vp_spike_wood",
- "fg": 5857,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 5857 } ]
- },
- { "id": "fd_fire", "fg": 2833 },
- { "id": "fd_hot_air_sauna", "fg": 2834 },
- { "id": "f_target", "fg": 2995 },
- { "id": "f_chest", "fg": 2996 },
- { "id": "f_dive_block", "fg": 2997 },
- { "id": "f_foot_locker", "fg": 2998 },
- { "id": "f_sand_castle", "fg": 2999 },
- { "id": "f_shredder", "fg": 3000 },
- { "id": "f_tourist_table", "fg": 3001 },
- { "id": "f_beaded_door", "fg": 3031 },
- { "id": "f_beaded_door_o", "fg": 3032 },
- { "id": "f_black_eyed_susan", "fg": 3065 },
- { "id": "f_chimney", "fg": 3097 },
- { "id": "f_curtain", "fg": 3131 },
- { "id": "f_curtain_open", "fg": 3132 },
- { "id": "f_lily", "fg": 3177 },
- { "id": "f_skin_groundsheet", "fg": 3294 },
- { "id": "acidchitin_plate", "fg": 3373 },
- { "id": "acoustic_guitar", "fg": 3374 },
- { "id": "alloy_plate", "fg": 3375 },
- { "id": "armor_lorica", "fg": 3376 },
- { "id": "banjo", "fg": 3377 },
- { "id": "bionic_general", "fg": 3378 },
- { "id": "bodypillow", "fg": 3379 },
- { "id": "bookplate", "fg": 3380 },
- { "id": "bot_copbot", "fg": 3381 },
- { "id": "bot_riotbot", "fg": 3382 },
- { "id": "broken_copbot", "fg": 3383 },
- { "id": "broken_riotbot", "fg": 3384 },
- { "id": "chainmail_hauberk", "fg": 3385 },
- { "id": "char_smoker", "fg": 3386 },
- { "id": "dehydrator", "fg": 3387 },
- { "id": "folding_poncho_on", "fg": 3388 },
- { "id": "gambeson", "fg": 3389 },
- { "id": "glass_sheet", "fg": 3390 },
- { "id": "gown", "fg": 3391 },
- { "id": "guitar_electric", "fg": 3392 },
- { "id": "hand_paddles", "fg": 3394 },
- { "id": "i4_combustion", "fg": 3395 },
- { "id": "inflatable_boat", "fg": 3396 },
- { "id": "inflatable_section", "fg": 3397 },
- { "id": "lawnmower", "fg": 3398 },
- { "id": "mattress", "fg": 3399 },
- { "id": "mil_plate", "fg": 3400 },
- { "id": "rake_plastic", "fg": 3402 },
- { "id": "reinforced_glass_sheet", "fg": 3403 },
- { "id": "robe", "fg": 3404 },
- { "id": "rock_quern", "fg": 3405 },
- { "id": "saxophone", "fg": 3406 },
- { "id": "sheet", "fg": 3407 },
- { "id": "steel_plate", "fg": 3408 },
- { "id": "telepad", "fg": 3409 },
- { "id": "trumpet", "fg": 3410 },
- { "id": "tuba", "fg": 3411 },
- { "id": "tunic", "fg": 3412 },
- { "id": "tunic_rag", "fg": 3413 },
- { "id": "umbrella", "fg": 3414 },
- { "id": "wheel_armor", "fg": 3415 },
- { "id": "wheel_wide", "fg": 3416 },
- { "id": "wheel_wide_or", "fg": 3417 },
- { "id": "10mm_fmj", "fg": 3418 },
- { "id": "120mm_HEAT", "fg": 3419 },
- { "id": "123ln", "fg": 3420 },
- { "id": "12mm", "fg": 3421 },
- { "id": "20x66_beanbag", "fg": 3422 },
- { "id": "20x66_flare", "fg": 3423 },
- { "id": "20x66_flechette", "fg": 3424 },
- { "id": "20x66_frag", "fg": 3425 },
- { "id": "20x66_inc", "fg": 3426 },
- { "id": "20x66_shot", "fg": 3427 },
- { "id": "20x66_slug", "fg": 3428 },
- { "id": "223", "fg": 3429 },
- { "id": "22_cb", "fg": 3430 },
- { "id": "22_fmj", "fg": 3431 },
- { "id": "22_lr", "fg": 3432 },
- { "id": "22_ratshot", "fg": 3433 },
- { "id": "270win_jsp", "fg": 3434 },
- { "id": "3006", "fg": 3435 },
- { "id": "3006_incendiary", "fg": 3436 },
- { "id": "3006fmj", "fg": 3437 },
- { "id": "300_winmag", "fg": 3438 },
- { "id": "300blk", "fg": 3439 },
- { "id": "300blk_ss", "fg": 3440 },
- { "id": "308", "fg": 3441 },
- { "id": "32_acp", "fg": 3442 },
- { "id": "357mag_fmj", "fg": 3443 },
- { "id": "357mag_jhp", "fg": 3444 },
- { "id": "357sig_fmj", "fg": 3445 },
- { "id": "357sig_jhp", "fg": 3446 },
- { "id": "380_FMJ", "fg": 3447 },
- { "id": "380_JHP", "fg": 3448 },
- { "id": "380_p", "fg": 3449 },
- { "id": "38_fmj", "fg": 3450 },
- { "id": "38_special", "fg": 3451 },
- { "id": "38_super", "fg": 3452 },
- { "id": "38super_fmj", "fg": 3453 },
- { "id": "40fmj", "fg": 3454 },
- { "id": "40mm_flashbang", "fg": 3455 },
- { "id": "40mm_incendiary", "fg": 3456 },
- { "id": "40mm_slug", "fg": 3457 },
- { "id": "40sw", "fg": 3458 },
- { "id": "40x46mm_grenade", "fg": 3459 },
- { "id": "40x46mm_m1006", "fg": 3460 },
- { "id": "40x46mm_m433", "fg": 3461 },
- { "id": "40x46mm_m576", "fg": 3462 },
- { "id": "40x46mm_m651", "fg": 3463 },
- { "id": "40x53mm_buckshot_m169", "fg": 3464 },
- { "id": "40x53mm_flechette_m169", "fg": 3465 },
- { "id": "40x53mm_grenade", "fg": 3466 },
- { "id": "40x53mm_m1001", "fg": 3467 },
- { "id": "40x53mm_m430a1", "fg": 3468 },
- { "id": "40x53mm_slug_m169", "fg": 3469 },
- { "id": "410shot_000", "fg": 3470 },
- { "id": "44fmj", "fg": 3471 },
- { "id": "44magnum", "fg": 3472 },
- { "id": "454_Casull", "fg": 3473 },
- { "id": "4570_low", "fg": 3474 },
- { "id": "4570_pen", "fg": 3475 },
- { "id": "4570_sp", "fg": 3476 },
- { "id": "45_acp", "fg": 3477 },
- { "id": "45_jhp", "fg": 3478 },
- { "id": "45_super", "fg": 3479 },
- { "id": "45colt_jhp", "fg": 3480 },
- { "id": "460_fmj", "fg": 3481 },
- { "id": "460_rowland", "fg": 3482 },
- { "id": "46mm", "fg": 3483 },
- { "id": "500_Magnum", "fg": 3484 },
- { "id": "50_incendiary", "fg": 3485 },
- { "id": "50_mk211", "fg": 3486 },
- { "id": "50bmg", "fg": 3487 },
- { "id": "50match", "fg": 3488 },
- { "id": "50ss", "fg": 3489 },
- { "id": "545", "fg": 3490 },
- { "id": "545_ap", "fg": 3491 },
- { "id": "556", "fg": 3492 },
- { "id": "556_incendiary", "fg": 3493 },
- { "id": "57mm", "fg": 3494 },
- { "id": "5x50dart", "fg": 3495 },
- { "id": "5x50heavy", "fg": 3496 },
- { "id": "66mm_HEAT", "fg": 3497 },
- { "id": "700nx", "fg": 3498 },
- { "id": "762_25", "fg": 3499 },
- { "id": "762_25hot", "fg": 3500 },
- { "id": "762_25typeP", "fg": 3501 },
- { "id": "762_51", "fg": 3502 },
- { "id": "762_51_incendiary", "fg": 3503 },
- { "id": "762_54R", "fg": 3504 },
- { "id": "762_m43", "fg": 3505 },
- { "id": "762_m87", "fg": 3506 },
- { "id": "84x246mm_he", "fg": 3507 },
- { "id": "84x246mm_hedp", "fg": 3508 },
- { "id": "84x246mm_smoke", "fg": 3509 },
- { "id": "8mm_bootleg", "fg": 3510 },
- { "id": "8mm_caseless", "fg": 3511 },
- { "id": "8mm_civilian", "fg": 3512 },
- { "id": "8mm_fmj", "fg": 3513 },
- { "id": "8mm_hvp", "fg": 3514 },
- { "id": "8mm_inc", "fg": 3515 },
- { "id": "8mm_jhp", "fg": 3516 },
- { "id": "9mm", "fg": 3517 },
- { "id": "9mmP", "fg": 3518 },
- { "id": "9mmfmj", "fg": 3519 },
- { "id": "9x18mm", "fg": 3520 },
- { "id": "9x18mmP2", "fg": 3521 },
- { "id": "9x18mmfmj", "fg": 3522 },
- { "id": "RPG-7_ammo", "fg": 3523 },
- { "id": "RPG-7_og7v", "fg": 3524 },
- { "id": "RPG-7_pg7vr", "fg": 3525 },
- { "id": "RPG-7_tbg7v", "fg": 3526 },
- { "id": "atgm_heat", "fg": 3527 },
- { "id": "m235tpa", "fg": 3528 },
- { "id": "shot_00", "fg": 3529 },
- { "id": "shot_beanbag", "fg": 3530 },
- { "id": "shot_bird", "fg": 3531 },
- { "id": "shot_dragon", "fg": 3532 },
- { "id": "shot_flechette", "fg": 3533 },
- { "id": "shot_he", "fg": 3534 },
- { "id": "shot_scrap", "fg": 3535 },
- { "id": "shot_slug", "fg": 3536 },
- { "id": "1895sbl", "fg": 3557 },
- { "id": "AT4", "fg": 3558 },
- { "id": "LAW", "fg": 3559 },
- { "id": "M24", "fg": 3560 },
- { "id": "RPG", "fg": 3561 },
- { "id": "USAS_12", "fg": 3562 },
- { "id": "airspeargun", "fg": 3563 },
- { "id": "ak74", "fg": 3565 },
- { "id": "american_180", "fg": 3566 },
- { "id": "an94", "fg": 3567 },
- { "id": "ar10", "fg": 3568 },
- { "id": "ar15", "fg": 3569 },
- { "id": "arx160", "fg": 3570 },
- { "id": "as50", "fg": 3571 },
- { "id": "atgm_launcher", "fg": 3572 },
- { "id": "bbgun", "fg": 3573 },
- { "id": "bfg50", "fg": 3574 },
- { "id": "bh_m89", "fg": 3575 },
- { "id": "blunderbuss", "fg": 3576 },
- { "id": "browning_blr", "fg": 3577 },
- { "id": "chemical_thrower", "fg": 3579 },
- { "id": "coilgun", "fg": 3580 },
- { "id": "colt_lightning", "fg": 3581 },
- { "id": "colt_ro635", "fg": 3582 },
- { "id": "combination_gun", "fg": 3583 },
- { "id": "cx4", "fg": 3584 },
- { "id": "doublespeargun", "fg": 3585 },
- { "id": "emp_gun", "fg": 3586 },
- { "id": "famas", "fg": 3587 },
- { "id": "flamethrower", "fg": 3588 },
- { "id": "fn_fal", "fg": 3589 },
- { "id": "fs2000", "fg": 3590 },
- { "id": "ftk93", "fg": 3591 },
- { "id": "garand", "fg": 3592 },
- { "id": "heavy_rail_rifle", "fg": 3593 },
- { "id": "helsing", "fg": 3594 },
- { "id": "henry_big_boy", "fg": 3595 },
- { "id": "hk417_13", "fg": 3596 },
- { "id": "hk_g3", "fg": 3597 },
- { "id": "hk_g36", "fg": 3598 },
- { "id": "hk_g80", "fg": 3599 },
- { "id": "hk_mp5k", "fg": 3600 },
- { "id": "hk_mp5sd", "fg": 3601 },
- { "id": "iwi_tavor_x95_300blk", "fg": 3602 },
- { "id": "ksg-25", "fg": 3603 },
- { "id": "ksg", "fg": 3604 },
- { "id": "ksub2000", "fg": 3605 },
- { "id": "laser_cannon", "fg": 3606 },
- { "id": "laser_rifle", "fg": 3607 },
- { "id": "lever_shotgun", "fg": 3608 },
- { "id": "longrifle_flintlock", "fg": 3609 },
- { "id": "m107a1", "fg": 3610 },
- { "id": "m110a1", "fg": 3611 },
- { "id": "m134", "fg": 3612 },
- { "id": "m14ebr", "fg": 3613 },
- { "id": "m1903", "fg": 3616 },
- { "id": "m1918", "fg": 3617 },
- { "id": "m1a", "fg": 3618 },
- { "id": "m2010", "fg": 3619 },
- { "id": "m231pfw", "fg": 3620 },
- { "id": "m240", "fg": 3621 },
- { "id": "m27_assault_rifle_var_h&k416a5", "fg": 3623 },
- { "id": "m27_assault_rifle_var_m27iar", "fg": 3624 },
- { "id": "m27_assault_rifle_var_m38dmr", "fg": 3625 },
- { "id": "m27_assault_rifle_var_scar_l", "fg": 3626 },
- { "id": "m2browning", "fg": 3627 },
- { "id": "m2browning_sawn", "fg": 3628 },
- { "id": "m3_carlgustav", "fg": 3629 },
- { "id": "m4_carbine_var_m4a1", "fg": 3630 },
- { "id": "m4_carlgustav", "fg": 3631 },
- { "id": "m79", "fg": 3633 },
- { "id": "mark19", "fg": 3634 },
- { "id": "marlin_9a", "fg": 3635 },
- { "id": "mininuke_launcher", "fg": 3636 },
- { "id": "mosin44", "fg": 3637 },
- { "id": "mosin44_ebr", "fg": 3638 },
- { "id": "mosin91_30", "fg": 3639 },
- { "id": "mosin91_30_ebr", "fg": 3640 },
- { "id": "mossberg_500", "fg": 3641 },
- { "id": "mossberg_500_var_mossberg_500_security", "fg": 3642 },
- { "id": "mossberg_590", "fg": 3643 },
- { "id": "mossberg_590_var_SPAS_12", "fg": 3644 },
- { "id": "mossberg_930", "fg": 3645 },
- { "id": "mossberg_930_var_m1014", "fg": 3646 },
- { "id": "mp18", "fg": 3647 },
- { "id": "needlegun", "fg": 3649 },
- { "id": "pamd68", "fg": 3650 },
- { "id": "pamd71z", "fg": 3651 },
- { "id": "pipe_combination_gun", "fg": 3652 },
- { "id": "plasma_gun", "fg": 3653 },
- { "id": "plasma_rifle", "fg": 3654 },
- { "id": "ppsh", "fg": 3655 },
- { "id": "rebar_rifle", "fg": 3656 },
- { "id": "remington700_270", "fg": 3657 },
- { "id": "remington_700", "fg": 3658 },
- { "id": "remington_870", "fg": 3659 },
- { "id": "remington_870_breacher", "fg": 3660 },
- { "id": "remington_870_express", "fg": 3661 },
- { "id": "remington_870_var_browning_a5", "fg": 3662 },
- { "id": "remington_870_var_remington_1100", "fg": 3663 },
- { "id": "rifle_flintlock", "fg": 3664 },
- { "id": "rm120c", "fg": 3665 },
- { "id": "rm20", "fg": 3666 },
- { "id": "rm298", "fg": 3667 },
- { "id": "rm451_flamethrower", "fg": 3668 },
- { "id": "rm51_assault_rifle", "fg": 3669 },
- { "id": "rm614_lmg", "fg": 3670 },
- { "id": "rm802", "fg": 3671 },
- { "id": "rm88_battle_rifle", "fg": 3672 },
- { "id": "ruger_1022", "fg": 3673 },
- { "id": "ruger_mini", "fg": 3674 },
- { "id": "saiga_12", "fg": 3675 },
- { "id": "saiga_410", "fg": 3676 },
- { "id": "savage_111f", "fg": 3677 },
- { "id": "scar_h", "fg": 3678 },
- { "id": "sharps", "fg": 3679 },
- { "id": "shotgun_410", "fg": 3680 },
- { "id": "shotgun_d", "fg": 3681 },
- { "id": "shotgun_s", "fg": 3682 },
- { "id": "sig552", "fg": 3683 },
- { "id": "sig_mcx_rattler_sbr", "fg": 3684 },
- { "id": "skorpion_82", "fg": 3685 },
- { "id": "sks", "fg": 3686 },
- { "id": "smg_9mm", "fg": 3688 },
- { "id": "speargun", "fg": 3689 },
- { "id": "sten", "fg": 3690 },
- { "id": "steyr_aug", "fg": 3691 },
- { "id": "surv_rocket_launcher", "fg": 3692 },
- { "id": "survivor_special_700", "fg": 3693 },
- { "id": "tac50", "fg": 3694 },
- { "id": "tavor_12", "fg": 3695 },
- { "id": "tihar", "fg": 3696 },
- { "id": "tommygun", "fg": 3697 },
- { "id": "trex_gun", "fg": 3698 },
- { "id": "weatherby_5", "fg": 3699 },
- { "id": "win70", "fg": 3700 },
- { "id": "winchester_1887", "fg": 3701 },
- { "id": "winchester_1897", "fg": 3702 },
- { "id": "iceaxe", "fg": 3705 },
- { "id": "rifle_case_soft", "fg": 3710 },
- { "id": "rifle_case_soft_2", "fg": 3711 },
- { "id": "rifle_case_soft_leather_2", "fg": 3713 },
- { "id": "rucksack", "fg": 3714 },
- { "id": "compgreatbow", "fg": 3723 },
- { "id": "compositebow", "fg": 3724 },
- { "id": "hybridbow", "fg": 3725 },
- { "id": "longbow", "fg": 3726 },
- { "id": "recurbow", "fg": 3727 },
- { "id": "reflexbow", "fg": 3728 },
- { "id": "reflexrecurvebow", "fg": 3729 },
- { "id": "selfbow", "fg": 3730 },
- { "id": "shortbow", "fg": 3731 },
- { "id": "woodgreatbow", "fg": 3732 },
- { "id": "oxygen_cylinder", "fg": 3737 },
- { "id": "oxygen_tank", "fg": 3738 },
- { "id": "tinyweldtank", "fg": 3739 },
- { "id": "weldtank", "fg": 3740 },
- { "id": "cot", "fg": 3741 },
- { "id": "armguard_soft", "fg": 3742 },
- { "id": "chestwrap_leather", "fg": 3743 },
- { "id": "trenchcoat_leather", "fg": 3744 },
- { "id": "bat_nerf", "fg": 3745 },
- { "id": "golf_bag", "fg": 3746 },
- { "id": "polycarbonate_sheet", "fg": 3747 },
- { "id": "screen_mesh", "fg": 3748 },
- { "id": "bagpipes", "fg": 3749 },
- { "id": "caltrops", "fg": 3750 },
- { "id": "jumper_cable_heavy", "fg": 3751 },
- { "id": "scythe", "fg": 3752 },
- { "id": "motorbike_armor", "fg": 3753 },
- { "id": "rack_test_tube", "fg": 3754 },
- { "id": "bowl_clay", "fg": 3757 },
- { "id": "clay_hydria", "fg": 3758 },
- { "id": "clay_pot", "fg": 3759 },
- { "id": "clay_quern", "fg": 3760 },
- { "id": "clay_watercont", "fg": 3761 },
- { "id": "jug_clay", "fg": 3762 },
- { "id": "bullet_crossbow", "fg": 3826 },
- { "id": "compcrossbow", "fg": 3827 },
- { "id": "compositecrossbow", "fg": 3828 },
- { "id": "crossbow", "fg": 3829 },
- { "id": "hand_crossbow", "fg": 3830 },
- { "id": "huge_crossbow", "fg": 3831 },
- { "id": "rep_crossbow", "fg": 3832 },
- { "id": "amplifier_head", "fg": 3845 },
- { "id": "bindle", "fg": 3846 },
- { "id": "broken_dimensional_anchor", "fg": 3847 },
- { "id": "chainmail_vest", "fg": 3848 },
- { "id": "concrete", "fg": 3849 },
- { "id": "cs_lajatang_off", "fg": 3850 },
- { "id": "dimensional_anchor", "fg": 3851 },
- { "id": "dimensional_anchor_on", "fg": 3852 },
- { "id": "dnd", "fg": 3853 },
- { "id": "g_carpet", "fg": 3854 },
- { "id": "grapnel", "fg": 3855 },
- { "id": "optical_cloak", "fg": 3856 },
- { "id": "p_carpet", "fg": 3857 },
- { "id": "r_carpet", "fg": 3858 },
- { "id": "trimmer_off", "fg": 3859 },
- { "id": "trimmer_on", "fg": 3860 },
- { "id": "tux", "fg": 3861 },
- { "id": "v_scoop_item", "fg": 3862 },
- { "id": "wool_suit", "fg": 3863 },
- { "id": "y_carpet", "fg": 3864 },
- { "id": "multi_cooker", "fg": 3865 },
- { "id": "multi_cooker_filled", "fg": 3866 },
- { "id": "pet_carrier", "fg": 3867 },
- { "id": "PR24-extended", "fg": 3891 },
- { "id": "PR24-retracted", "fg": 3892 },
- { "id": "baton-extended", "fg": 3893 },
- { "id": "baton", "fg": 3894 },
- { "id": "pipe_shotgun", "fg": 3913 },
- { "id": "pool_cue", "fg": 3918 },
- { "id": "bokken", "fg": 3951 },
- { "id": "UPS_off", "fg": 3957 },
- { "id": "hose", "fg": 3958 },
- { "id": "oxy_torch", "fg": 3959 },
- { "id": "picklocks", "fg": 3960 },
- { "id": "f_magic_circle", "fg": 3967 },
- { "id": "mon_dragonfly_naiad", "fg": 4092 },
- { "id": "mon_spawn_raptor_electric", "fg": 4104 },
- { "id": "mon_spawn_raptor_shady", "fg": 4105 },
- { "id": "mon_spawn_raptor_unstable", "fg": 4106 },
- { "id": "footstep", "fg": 4131 },
- { "id": "footstep_above", "fg": 4132 },
- { "id": "footstep_below", "fg": 4133 },
- { "id": "unknown_field", "fg": 4134 },
- { "id": "unknown_furniture", "fg": 4135 },
- { "id": "unknown_item", "fg": 4136 },
- { "id": "unknown_item_AMMO", "fg": 4137 },
- { "id": "unknown_item_ARMOR", "fg": 4138 },
- { "id": "unknown_item_BIONIC", "fg": 4139 },
- { "id": "unknown_item_BOOK", "fg": 4140 },
- { "id": "unknown_item_FOOD", "fg": 4141 },
- { "id": "unknown_item_GUN", "fg": 4142 },
- { "id": "unknown_item_TOOL", "fg": 4143 },
- { "id": "unknown_item_misc", "fg": 4144 },
- { "id": "unknown_terrain", "fg": 4145 },
- { "id": "unknown_trap", "fg": 4146 },
- { "id": "unknown_vehicle_part", "fg": 4147 },
- { "id": "overlay_friendly_sees_player", "fg": 4158 },
- { "id": "overlay_hostile_sees_player", "fg": 4159 },
- { "id": "overlay_neutral_sees_player", "fg": 4160 },
- { "id": "overlay_other_sees_player", "fg": 4161 },
- { "id": "zombie_revival_indicator", "fg": 4162 },
- { "id": "cemetery_small", "fg": 4183 },
- { "id": "dirt_road_center", "fg": 4186 },
- { "id": "dirt_road_end_piece_e", "fg": 4193 },
- { "id": "dirt_road_end_piece_n", "fg": 4194 },
- { "id": "dirt_road_end_piece_s", "fg": 4195 },
- { "id": "dirt_road_end_piece_w", "fg": 4196 },
- { "id": "dirt_road_unconnected", "fg": 4201 },
- { "id": "hunting_blind", "fg": 4227 },
- { "id": "overmap_horde_3", "fg": 4228 },
- { "id": "overmap_horde_4", "fg": 4229 },
- { "id": "overmap_horde_5", "fg": 4230 },
- { "id": "overmap_horde_6", "fg": 4231 },
- { "id": "overmap_remembered_vehicle", "fg": 4232 },
- { "id": "pasture_connection_ew", "fg": 4255 },
- { "id": "pasture_connection_ns", "fg": 4256 },
- { "id": "pasture_unconnected", "fg": 4269 },
- { "id": "t_metal_ventilation_shutter", "fg": 4332 },
- { "id": "t_ramp_down_high", "fg": 4350 },
- { "id": "t_ramp_up_high", "fg": 4351 },
- { "id": "t_sidewalk_ramp_down_high", "fg": 4352 },
- { "id": "t_sidewalk_ramp_up_high", "fg": 4353 },
- { "id": "t_slope_down", "fg": 4354 },
- { "id": "t_slope_up", "fg": 4355 },
- { "id": "t_door_b_peep", "fg": 4716 },
- { "id": "t_door_boarded_damaged_peep", "fg": 4717 },
- { "id": "t_door_boarded_peep", "fg": 4718 },
- { "id": "t_door_c_peep", "fg": 4719 },
- { "id": "t_door_locked_peep", "fg": 4720 },
- { "id": "t_door_o_peep", "fg": 4721 },
- { "id": "t_fence_post", "fg": 4758 },
- { "id": "t_thconc_floor_flesh", "fg": 5490 },
- { "id": "t_wall_resin_cage", "fg": 5655 },
- { "id": "t_window_domestic_taped", "fg": 5811 },
- { "id": "t_window_no_curtains_taped", "fg": 5815 },
- { "id": "t_window_taped", "fg": 5817 },
- { "id": "tr_cot", "fg": 5820 },
- { "id": "tr_caltrops", "fg": 5821 },
- { "id": "tr_telepad", "fg": 5822 },
- { "id": "tr_landmine", "fg": 5825 },
- { "id": "tr_landmine_buried", "fg": 5826 },
- { "id": "tr_practice_target", "fg": 5828 },
- { "id": "metal_boat_hull", "fg": 5830 }
+ "fg": 6039,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 6039 } ]
+ },
+ { "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_beaded_door", "fg": 3143 },
+ { "id": "f_beaded_door_o", "fg": 3144 },
+ { "id": "f_black_eyed_susan", "fg": 3177 },
+ { "id": "f_chimney", "fg": 3209 },
+ { "id": "f_curtain", "fg": 3243 },
+ { "id": "f_curtain_open", "fg": 3244 },
+ { "id": "f_lily", "fg": 3289 },
+ { "id": "f_skin_groundsheet", "fg": 3406 },
+ { "id": "acidchitin_plate", "fg": 3485 },
+ { "id": "acoustic_guitar", "fg": 3486 },
+ { "id": "alloy_plate", "fg": 3487 },
+ { "id": "armor_lorica", "fg": 3488 },
+ { "id": "banjo", "fg": 3489 },
+ { "id": "bionic_general", "fg": 3490 },
+ { "id": "bodypillow", "fg": 3491 },
+ { "id": "bookplate", "fg": 3492 },
+ { "id": "bot_copbot", "fg": 3493 },
+ { "id": "bot_riotbot", "fg": 3494 },
+ { "id": "broken_copbot", "fg": 3495 },
+ { "id": "broken_riotbot", "fg": 3496 },
+ { "id": "chainmail_hauberk", "fg": 3497 },
+ { "id": "char_smoker", "fg": 3498 },
+ { "id": "dehydrator", "fg": 3499 },
+ { "id": "folding_poncho_on", "fg": 3500 },
+ { "id": "gambeson", "fg": 3501 },
+ { "id": "glass_sheet", "fg": 3502 },
+ { "id": "gown", "fg": 3503 },
+ { "id": "guitar_electric", "fg": 3504 },
+ { "id": "hand_paddles", "fg": 3506 },
+ { "id": "i4_combustion", "fg": 3507 },
+ { "id": "inflatable_boat", "fg": 3508 },
+ { "id": "inflatable_section", "fg": 3509 },
+ { "id": "lawnmower", "fg": 3510 },
+ { "id": "mattress", "fg": 3511 },
+ { "id": "mil_plate", "fg": 3512 },
+ { "id": "rake_plastic", "fg": 3514 },
+ { "id": "reinforced_glass_sheet", "fg": 3515 },
+ { "id": "robe", "fg": 3516 },
+ { "id": "rock_quern", "fg": 3517 },
+ { "id": "saxophone", "fg": 3518 },
+ { "id": "sheet", "fg": 3519 },
+ { "id": "steel_plate", "fg": 3520 },
+ { "id": "telepad", "fg": 3521 },
+ { "id": "trumpet", "fg": 3522 },
+ { "id": "tuba", "fg": 3523 },
+ { "id": "tunic", "fg": 3524 },
+ { "id": "tunic_rag", "fg": 3525 },
+ { "id": "umbrella", "fg": 3526 },
+ { "id": "wheel_armor", "fg": 3527 },
+ { "id": "wheel_wide", "fg": 3528 },
+ { "id": "wheel_wide_or", "fg": 3529 },
+ { "id": "10mm_fmj", "fg": 3530 },
+ { "id": "120mm_HEAT", "fg": 3531 },
+ { "id": "123ln", "fg": 3532 },
+ { "id": "12mm", "fg": 3533 },
+ { "id": "20x66_beanbag", "fg": 3534 },
+ { "id": "20x66_flare", "fg": 3535 },
+ { "id": "20x66_flechette", "fg": 3536 },
+ { "id": "20x66_frag", "fg": 3537 },
+ { "id": "20x66_inc", "fg": 3538 },
+ { "id": "20x66_shot", "fg": 3539 },
+ { "id": "20x66_slug", "fg": 3540 },
+ { "id": "223", "fg": 3541 },
+ { "id": "22_cb", "fg": 3542 },
+ { "id": "22_fmj", "fg": 3543 },
+ { "id": "22_lr", "fg": 3544 },
+ { "id": "22_ratshot", "fg": 3545 },
+ { "id": "270win_jsp", "fg": 3546 },
+ { "id": "3006", "fg": 3547 },
+ { "id": "3006_incendiary", "fg": 3548 },
+ { "id": "3006fmj", "fg": 3549 },
+ { "id": "300_winmag", "fg": 3550 },
+ { "id": "300blk", "fg": 3551 },
+ { "id": "300blk_ss", "fg": 3552 },
+ { "id": "308", "fg": 3553 },
+ { "id": "32_acp", "fg": 3554 },
+ { "id": "357mag_fmj", "fg": 3555 },
+ { "id": "357mag_jhp", "fg": 3556 },
+ { "id": "357sig_fmj", "fg": 3557 },
+ { "id": "357sig_jhp", "fg": 3558 },
+ { "id": "380_FMJ", "fg": 3559 },
+ { "id": "380_JHP", "fg": 3560 },
+ { "id": "380_p", "fg": 3561 },
+ { "id": "38_fmj", "fg": 3562 },
+ { "id": "38_special", "fg": 3563 },
+ { "id": "38_super", "fg": 3564 },
+ { "id": "38super_fmj", "fg": 3565 },
+ { "id": "40fmj", "fg": 3566 },
+ { "id": "40mm_flashbang", "fg": 3567 },
+ { "id": "40mm_incendiary", "fg": 3568 },
+ { "id": "40mm_slug", "fg": 3569 },
+ { "id": "40sw", "fg": 3570 },
+ { "id": "40x46mm_grenade", "fg": 3571 },
+ { "id": "40x46mm_m1006", "fg": 3572 },
+ { "id": "40x46mm_m433", "fg": 3573 },
+ { "id": "40x46mm_m576", "fg": 3574 },
+ { "id": "40x46mm_m651", "fg": 3575 },
+ { "id": "40x53mm_buckshot_m169", "fg": 3576 },
+ { "id": "40x53mm_flechette_m169", "fg": 3577 },
+ { "id": "40x53mm_grenade", "fg": 3578 },
+ { "id": "40x53mm_m1001", "fg": 3579 },
+ { "id": "40x53mm_m430a1", "fg": 3580 },
+ { "id": "40x53mm_slug_m169", "fg": 3581 },
+ { "id": "410shot_000", "fg": 3582 },
+ { "id": "44fmj", "fg": 3583 },
+ { "id": "44magnum", "fg": 3584 },
+ { "id": "454_Casull", "fg": 3585 },
+ { "id": "4570_low", "fg": 3586 },
+ { "id": "4570_pen", "fg": 3587 },
+ { "id": "4570_sp", "fg": 3588 },
+ { "id": "45_acp", "fg": 3589 },
+ { "id": "45_jhp", "fg": 3590 },
+ { "id": "45_super", "fg": 3591 },
+ { "id": "45colt_jhp", "fg": 3592 },
+ { "id": "460_fmj", "fg": 3593 },
+ { "id": "460_rowland", "fg": 3594 },
+ { "id": "46mm", "fg": 3595 },
+ { "id": "500_Magnum", "fg": 3596 },
+ { "id": "50_incendiary", "fg": 3597 },
+ { "id": "50_mk211", "fg": 3598 },
+ { "id": "50bmg", "fg": 3599 },
+ { "id": "50match", "fg": 3600 },
+ { "id": "50ss", "fg": 3601 },
+ { "id": "545", "fg": 3602 },
+ { "id": "545_ap", "fg": 3603 },
+ { "id": "556", "fg": 3604 },
+ { "id": "556_incendiary", "fg": 3605 },
+ { "id": "57mm", "fg": 3606 },
+ { "id": "5x50dart", "fg": 3607 },
+ { "id": "5x50heavy", "fg": 3608 },
+ { "id": "66mm_HEAT", "fg": 3609 },
+ { "id": "700nx", "fg": 3610 },
+ { "id": "762_25", "fg": 3611 },
+ { "id": "762_25hot", "fg": 3612 },
+ { "id": "762_25typeP", "fg": 3613 },
+ { "id": "762_51", "fg": 3614 },
+ { "id": "762_51_incendiary", "fg": 3615 },
+ { "id": "762_54R", "fg": 3616 },
+ { "id": "762_m43", "fg": 3617 },
+ { "id": "762_m87", "fg": 3618 },
+ { "id": "84x246mm_he", "fg": 3619 },
+ { "id": "84x246mm_hedp", "fg": 3620 },
+ { "id": "84x246mm_smoke", "fg": 3621 },
+ { "id": "8mm_bootleg", "fg": 3622 },
+ { "id": "8mm_caseless", "fg": 3623 },
+ { "id": "8mm_civilian", "fg": 3624 },
+ { "id": "8mm_fmj", "fg": 3625 },
+ { "id": "8mm_hvp", "fg": 3626 },
+ { "id": "8mm_inc", "fg": 3627 },
+ { "id": "8mm_jhp", "fg": 3628 },
+ { "id": "9mm", "fg": 3629 },
+ { "id": "9mmP", "fg": 3630 },
+ { "id": "9mmfmj", "fg": 3631 },
+ { "id": "9x18mm", "fg": 3632 },
+ { "id": "9x18mmP2", "fg": 3633 },
+ { "id": "9x18mmfmj", "fg": 3634 },
+ { "id": "RPG-7_ammo", "fg": 3635 },
+ { "id": "RPG-7_og7v", "fg": 3636 },
+ { "id": "RPG-7_pg7vr", "fg": 3637 },
+ { "id": "RPG-7_tbg7v", "fg": 3638 },
+ { "id": "atgm_heat", "fg": 3639 },
+ { "id": "m235tpa", "fg": 3640 },
+ { "id": "shot_00", "fg": 3641 },
+ { "id": "shot_beanbag", "fg": 3642 },
+ { "id": "shot_bird", "fg": 3643 },
+ { "id": "shot_dragon", "fg": 3644 },
+ { "id": "shot_flechette", "fg": 3645 },
+ { "id": "shot_he", "fg": 3646 },
+ { "id": "shot_scrap", "fg": 3647 },
+ { "id": "shot_slug", "fg": 3648 },
+ { "id": "1895sbl", "fg": 3669 },
+ { "id": "AT4", "fg": 3670 },
+ { "id": "LAW", "fg": 3671 },
+ { "id": "M24", "fg": 3672 },
+ { "id": "RPG", "fg": 3673 },
+ { "id": "USAS_12", "fg": 3674 },
+ { "id": "airspeargun", "fg": 3675 },
+ { "id": "ak74", "fg": 3677 },
+ { "id": "american_180", "fg": 3678 },
+ { "id": "an94", "fg": 3679 },
+ { "id": "ar10", "fg": 3680 },
+ { "id": "ar15", "fg": 3681 },
+ { "id": "arx160", "fg": 3682 },
+ { "id": "as50", "fg": 3683 },
+ { "id": "atgm_launcher", "fg": 3684 },
+ { "id": "bbgun", "fg": 3685 },
+ { "id": "bfg50", "fg": 3686 },
+ { "id": "bh_m89", "fg": 3687 },
+ { "id": "blunderbuss", "fg": 3688 },
+ { "id": "browning_blr", "fg": 3689 },
+ { "id": "chemical_thrower", "fg": 3691 },
+ { "id": "coilgun", "fg": 3692 },
+ { "id": "colt_lightning", "fg": 3693 },
+ { "id": "colt_ro635", "fg": 3694 },
+ { "id": "combination_gun", "fg": 3695 },
+ { "id": "cx4", "fg": 3696 },
+ { "id": "doublespeargun", "fg": 3697 },
+ { "id": "emp_gun", "fg": 3698 },
+ { "id": "famas", "fg": 3699 },
+ { "id": "flamethrower", "fg": 3700 },
+ { "id": "fn_fal", "fg": 3701 },
+ { "id": "fs2000", "fg": 3702 },
+ { "id": "ftk93", "fg": 3703 },
+ { "id": "garand", "fg": 3704 },
+ { "id": "heavy_rail_rifle", "fg": 3705 },
+ { "id": "helsing", "fg": 3706 },
+ { "id": "henry_big_boy", "fg": 3707 },
+ { "id": "hk417_13", "fg": 3708 },
+ { "id": "hk_g3", "fg": 3709 },
+ { "id": "hk_g36", "fg": 3710 },
+ { "id": "hk_g80", "fg": 3711 },
+ { "id": "hk_mp5k", "fg": 3712 },
+ { "id": "hk_mp5sd", "fg": 3713 },
+ { "id": "iwi_tavor_x95_300blk", "fg": 3714 },
+ { "id": "ksg-25", "fg": 3715 },
+ { "id": "ksg", "fg": 3716 },
+ { "id": "ksub2000", "fg": 3717 },
+ { "id": "laser_cannon", "fg": 3718 },
+ { "id": "laser_rifle", "fg": 3719 },
+ { "id": "lever_shotgun", "fg": 3720 },
+ { "id": "longrifle_flintlock", "fg": 3721 },
+ { "id": "m107a1", "fg": 3722 },
+ { "id": "m110a1", "fg": 3723 },
+ { "id": "m134", "fg": 3724 },
+ { "id": "m14ebr", "fg": 3725 },
+ { "id": "m1903", "fg": 3728 },
+ { "id": "m1918", "fg": 3729 },
+ { "id": "m1a", "fg": 3730 },
+ { "id": "m2010", "fg": 3731 },
+ { "id": "m202_flash", "fg": 3732 },
+ { "id": "m231pfw", "fg": 3733 },
+ { "id": "m240", "fg": 3734 },
+ { "id": "m27_assault_rifle_var_h&k416a5", "fg": 3736 },
+ { "id": "m27_assault_rifle_var_m27iar", "fg": 3737 },
+ { "id": "m27_assault_rifle_var_m38dmr", "fg": 3738 },
+ { "id": "m27_assault_rifle_var_scar_l", "fg": 3739 },
+ { "id": "m2browning", "fg": 3740 },
+ { "id": "m2browning_sawn", "fg": 3741 },
+ { "id": "m3_carlgustav", "fg": 3742 },
+ { "id": "m4_carbine_var_m4a1", "fg": 3743 },
+ { "id": "m4_carlgustav", "fg": 3744 },
+ { "id": "m79", "fg": 3746 },
+ { "id": "mark19", "fg": 3747 },
+ { "id": "marlin_9a", "fg": 3748 },
+ { "id": "mininuke_launcher", "fg": 3749 },
+ { "id": "mosin44", "fg": 3750 },
+ { "id": "mosin44_ebr", "fg": 3751 },
+ { "id": "mosin91_30", "fg": 3752 },
+ { "id": "mosin91_30_ebr", "fg": 3753 },
+ { "id": "mossberg_500", "fg": 3754 },
+ { "id": "mossberg_500_var_mossberg_500_security", "fg": 3755 },
+ { "id": "mossberg_590", "fg": 3756 },
+ { "id": "mossberg_590_var_SPAS_12", "fg": 3757 },
+ { "id": "mossberg_930", "fg": 3758 },
+ { "id": "mossberg_930_var_m1014", "fg": 3759 },
+ { "id": "mp18", "fg": 3760 },
+ { "id": "needlegun", "fg": 3762 },
+ { "id": "pamd68", "fg": 3763 },
+ { "id": "pamd71z", "fg": 3764 },
+ { "id": "pipe_combination_gun", "fg": 3765 },
+ { "id": "plasma_gun", "fg": 3766 },
+ { "id": "plasma_rifle", "fg": 3767 },
+ { "id": "ppsh", "fg": 3768 },
+ { "id": "rebar_rifle", "fg": 3769 },
+ { "id": "remington700_270", "fg": 3770 },
+ { "id": "remington_700", "fg": 3771 },
+ { "id": "remington_870", "fg": 3772 },
+ { "id": "remington_870_breacher", "fg": 3773 },
+ { "id": "remington_870_express", "fg": 3774 },
+ { "id": "remington_870_var_browning_a5", "fg": 3775 },
+ { "id": "remington_870_var_remington_1100", "fg": 3776 },
+ { "id": "rifle_flintlock", "fg": 3777 },
+ { "id": "rm120c", "fg": 3778 },
+ { "id": "rm20", "fg": 3779 },
+ { "id": "rm298", "fg": 3780 },
+ { "id": "rm451_flamethrower", "fg": 3781 },
+ { "id": "rm51_assault_rifle", "fg": 3782 },
+ { "id": "rm614_lmg", "fg": 3783 },
+ { "id": "rm802", "fg": 3784 },
+ { "id": "rm88_battle_rifle", "fg": 3785 },
+ { "id": "ruger_1022", "fg": 3786 },
+ { "id": "ruger_mini", "fg": 3787 },
+ { "id": "saiga_12", "fg": 3788 },
+ { "id": "saiga_410", "fg": 3789 },
+ { "id": "savage_111f", "fg": 3790 },
+ { "id": "scar_h", "fg": 3791 },
+ { "id": "sharps", "fg": 3792 },
+ { "id": "shotgun_410", "fg": 3793 },
+ { "id": "shotgun_d", "fg": 3794 },
+ { "id": "shotgun_s", "fg": 3795 },
+ { "id": "sig552", "fg": 3796 },
+ { "id": "sig_mcx_rattler_sbr", "fg": 3797 },
+ { "id": "skorpion_82", "fg": 3798 },
+ { "id": "sks", "fg": 3799 },
+ { "id": "smg_9mm", "fg": 3801 },
+ { "id": "speargun", "fg": 3802 },
+ { "id": "sten", "fg": 3803 },
+ { "id": "steyr_aug", "fg": 3804 },
+ { "id": "surv_rocket_launcher", "fg": 3805 },
+ { "id": "survivor_special_700", "fg": 3806 },
+ { "id": "tac50", "fg": 3807 },
+ { "id": "tavor_12", "fg": 3808 },
+ { "id": "tihar", "fg": 3809 },
+ { "id": "tommygun", "fg": 3810 },
+ { "id": "trex_gun", "fg": 3811 },
+ { "id": "weatherby_5", "fg": 3812 },
+ { "id": "win70", "fg": 3813 },
+ { "id": "winchester_1887", "fg": 3814 },
+ { "id": "winchester_1897", "fg": 3815 },
+ { "id": "iceaxe", "fg": 3818 },
+ { "id": "rifle_case_soft", "fg": 3823 },
+ { "id": "rifle_case_soft_2", "fg": 3824 },
+ { "id": "rifle_case_soft_leather_2", "fg": 3826 },
+ { "id": "rucksack", "fg": 3827 },
+ { "id": "compgreatbow", "fg": 3836 },
+ { "id": "compositebow", "fg": 3837 },
+ { "id": "hybridbow", "fg": 3838 },
+ { "id": "longbow", "fg": 3839 },
+ { "id": "recurbow", "fg": 3840 },
+ { "id": "reflexbow", "fg": 3841 },
+ { "id": "reflexrecurvebow", "fg": 3842 },
+ { "id": "selfbow", "fg": 3843 },
+ { "id": "shortbow", "fg": 3844 },
+ { "id": "woodgreatbow", "fg": 3845 },
+ { "id": "oxygen_cylinder", "fg": 3850 },
+ { "id": "oxygen_tank", "fg": 3851 },
+ { "id": "tinyweldtank", "fg": 3852 },
+ { "id": "weldtank", "fg": 3853 },
+ { "id": "cot", "fg": 3854 },
+ { "id": "armguard_soft", "fg": 3855 },
+ { "id": "chestwrap_leather", "fg": 3856 },
+ { "id": "trenchcoat_leather", "fg": 3857 },
+ { "id": "bat_nerf", "fg": 3858 },
+ { "id": "golf_bag", "fg": 3859 },
+ { "id": "polycarbonate_sheet", "fg": 3860 },
+ { "id": "screen_mesh", "fg": 3861 },
+ { "id": "bagpipes", "fg": 3862 },
+ { "id": "caltrops", "fg": 3863 },
+ { "id": "jumper_cable_heavy", "fg": 3864 },
+ { "id": "scythe", "fg": 3865 },
+ { "id": "motorbike_armor", "fg": 3866 },
+ { "id": "rack_test_tube", "fg": 3867 },
+ { "id": "bowl_clay", "fg": 3870 },
+ { "id": "clay_hydria", "fg": 3871 },
+ { "id": "clay_pot", "fg": 3872 },
+ { "id": "clay_quern", "fg": 3873 },
+ { "id": "clay_watercont", "fg": 3874 },
+ { "id": "jug_clay", "fg": 3875 },
+ { "id": "bullet_crossbow", "fg": 3939 },
+ { "id": "compcrossbow", "fg": 3940 },
+ { "id": "compositecrossbow", "fg": 3941 },
+ { "id": "crossbow", "fg": 3942 },
+ { "id": "hand_crossbow", "fg": 3943 },
+ { "id": "huge_crossbow", "fg": 3944 },
+ { "id": "rep_crossbow", "fg": 3945 },
+ { "id": "amplifier_head", "fg": 3958 },
+ { "id": "bindle", "fg": 3959 },
+ { "id": "broken_dimensional_anchor", "fg": 3960 },
+ { "id": "chainmail_vest", "fg": 3961 },
+ { "id": "concrete", "fg": 3962 },
+ { "id": "cs_lajatang_off", "fg": 3963 },
+ { "id": "dimensional_anchor", "fg": 3964 },
+ { "id": "dimensional_anchor_on", "fg": 3965 },
+ { "id": "dnd", "fg": 3966 },
+ { "id": "g_carpet", "fg": 3967 },
+ { "id": "grapnel", "fg": 3968 },
+ { "id": "optical_cloak", "fg": 3969 },
+ { "id": "p_carpet", "fg": 3970 },
+ { "id": "r_carpet", "fg": 3971 },
+ { "id": "trimmer_off", "fg": 3972 },
+ { "id": "trimmer_on", "fg": 3973 },
+ { "id": "tux", "fg": 3974 },
+ { "id": "v_scoop_item", "fg": 3975 },
+ { "id": "wool_suit", "fg": 3976 },
+ { "id": "y_carpet", "fg": 3977 },
+ { "id": "multi_cooker", "fg": 3978 },
+ { "id": "multi_cooker_filled", "fg": 3979 },
+ { "id": "pet_carrier", "fg": 3980 },
+ { "id": "manhole_cover", "fg": 3999 },
+ { "id": "PR24-extended", "fg": 4005 },
+ { "id": "PR24-retracted", "fg": 4006 },
+ { "id": "baton-extended", "fg": 4007 },
+ { "id": "baton", "fg": 4008 },
+ { "id": "guitar_stand", "fg": 4009 },
+ { "id": "mic_stand_tall", "fg": 4010 },
+ { "id": "mixer_music", "fg": 4011 },
+ { "id": "pipe_shotgun", "fg": 4030 },
+ { "id": "pool_cue", "fg": 4035 },
+ { "id": "bokken", "fg": 4068 },
+ { "id": "UPS_off", "fg": 4074 },
+ { "id": "hose", "fg": 4075 },
+ { "id": "oxy_torch", "fg": 4076 },
+ { "id": "picklocks", "fg": 4077 },
+ { "id": "f_magic_circle", "fg": 4084 },
+ { "id": "mon_dragonfly_naiad", "fg": 4211 },
+ { "id": "mon_spawn_raptor_electric", "fg": 4238 },
+ { "id": "mon_spawn_raptor_shady", "fg": 4239 },
+ { "id": "mon_spawn_raptor_unstable", "fg": 4240 },
+ { "id": "mon_turret_riot", "fg": 4242 },
+ { "id": "footstep", "fg": 4284 },
+ { "id": "footstep_above", "fg": 4285 },
+ { "id": "footstep_below", "fg": 4286 },
+ { "id": "unknown_field", "fg": 4287 },
+ { "id": "unknown_furniture", "fg": 4288 },
+ { "id": "unknown_item", "fg": 4289 },
+ { "id": "unknown_item_AMMO", "fg": 4290 },
+ { "id": "unknown_item_ARMOR", "fg": 4291 },
+ { "id": "unknown_item_BIONIC", "fg": 4292 },
+ { "id": "unknown_item_BOOK", "fg": 4293 },
+ { "id": "unknown_item_FOOD", "fg": 4294 },
+ { "id": "unknown_item_GUN", "fg": 4295 },
+ { "id": "unknown_item_TOOL", "fg": 4296 },
+ { "id": "unknown_item_misc", "fg": 4297 },
+ { "id": "unknown_terrain", "fg": 4298 },
+ { "id": "unknown_trap", "fg": 4299 },
+ { "id": "unknown_vehicle_part", "fg": 4300 },
+ { "id": "overlay_effect_slimed", "fg": 4311 },
+ { "id": "overlay_effect_wet", "fg": 4312 },
+ { "id": "overlay_friendly_sees_player", "fg": 4313 },
+ { "id": "overlay_hostile_sees_player", "fg": 4314 },
+ { "id": "overlay_neutral_sees_player", "fg": 4315 },
+ { "id": "overlay_other_sees_player", "fg": 4316 },
+ { "id": "zombie_revival_indicator", "fg": 4317 },
+ { "id": "overlay_female_mutation_HOOVES", "fg": 4318 },
+ { "id": "overlay_male_mutation_HOOVES", "fg": 4319 },
+ { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 4320 },
+ { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 4321 },
+ { "id": "overlay_wielded_bfg50", "fg": 4322 },
+ { "id": "cemetery_small", "fg": 4344 },
+ { "id": "dirt_road_center", "fg": 4347 },
+ { "id": "dirt_road_end_piece_e", "fg": 4354 },
+ { "id": "dirt_road_end_piece_n", "fg": 4355 },
+ { "id": "dirt_road_end_piece_s", "fg": 4356 },
+ { "id": "dirt_road_end_piece_w", "fg": 4357 },
+ { "id": "dirt_road_unconnected", "fg": 4362 },
+ { "id": "hunting_blind", "fg": 4388 },
+ { "id": "overmap_horde_3", "fg": 4389 },
+ { "id": "overmap_horde_4", "fg": 4390 },
+ { "id": "overmap_horde_5", "fg": 4391 },
+ { "id": "overmap_horde_6", "fg": 4392 },
+ { "id": "overmap_remembered_vehicle", "fg": 4393 },
+ { "id": "pasture_connection_ew", "fg": 4416 },
+ { "id": "pasture_connection_ns", "fg": 4417 },
+ { "id": "pasture_unconnected", "fg": 4430 },
+ { "id": "t_metal_ventilation_shutter", "fg": 4495 },
+ { "id": "t_ramp_down_high", "fg": 4513 },
+ { "id": "t_ramp_up_high", "fg": 4514 },
+ { "id": "t_sidewalk_ramp_down_high", "fg": 4515 },
+ { "id": "t_sidewalk_ramp_up_high", "fg": 4516 },
+ { "id": "t_slope_down", "fg": 4517 },
+ { "id": "t_slope_up", "fg": 4518 },
+ { "id": "t_door_b_peep", "fg": 4879 },
+ { "id": "t_door_boarded_damaged_peep", "fg": 4880 },
+ { "id": "t_door_boarded_peep", "fg": 4881 },
+ { "id": "t_door_c_peep", "fg": 4882 },
+ { "id": "t_door_locked_peep", "fg": 4883 },
+ { "id": "t_door_o_peep", "fg": 4884 },
+ { "id": "t_fence_post", "fg": 4921 },
+ { "id": "t_ladder_down", "fg": 5143 },
+ { "id": "t_mud", "fg": 5261 },
+ { "id": "t_thconc_floor_flesh", "fg": 5656 },
+ { "id": "t_wall_resin_cage", "fg": 5837 },
+ { "id": "t_window_domestic_taped", "fg": 5993 },
+ { "id": "t_window_no_curtains_taped", "fg": 5997 },
+ { "id": "t_window_taped", "fg": 5999 },
+ { "id": "tr_cot", "fg": 6002 },
+ { "id": "tr_caltrops", "fg": 6003 },
+ { "id": "tr_telepad", "fg": 6004 },
+ { "id": "tr_landmine", "fg": 6007 },
+ { "id": "tr_landmine_buried", "fg": 6008 },
+ { "id": "tr_practice_target", "fg": 6010 },
+ { "id": "metal_boat_hull", "fg": 6012 }
]
},
{
"file": "tallfurniture.png",
- "//": "range 5872 to 5999",
+ "//": "range 6048 to 6191",
"sprite_width": 32,
"sprite_height": 64,
"sprite_offset_x": 0,
@@ -8268,314 +8457,221 @@
"tiles": [
{
"id": "f_deckchair",
- "fg": [ { "weight": 1, "sprite": 5872 }, { "weight": 1, "sprite": 5873 }, { "weight": 1, "sprite": 5874 } ]
+ "fg": [ { "weight": 1, "sprite": 6048 }, { "weight": 1, "sprite": 6049 }, { "weight": 1, "sprite": 6050 } ]
},
- { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 5876 },
- { "id": "f_punching_bag", "fg": 5880 },
- { "id": "f_exercise", "fg": 5879 },
- { "id": "f_ergometer", "fg": 5878 },
- { "id": "f_IV_pole", "fg": 5882 },
- { "id": "f_arcade_machine", "fg": 5883 },
- { "id": "f_autodoc_couch", "fg": 5884 },
- { "id": "f_birdbath", "fg": 5887 },
+ { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 6052 },
+ { "id": "f_punching_bag", "fg": 6056 },
+ { "id": "f_exercise", "fg": 6055 },
+ { "id": "f_ergometer", "fg": 6054 },
+ { "id": "f_IV_pole", "fg": 6058 },
+ { "id": "f_arcade_machine", "fg": 6059 },
+ { "id": "f_autodoc_couch", "fg": 6060 },
+ { "id": "f_birdbath", "fg": 6063 },
{
"id": "f_bookcase",
"multitile": true,
"rotates": false,
- "fg": 5888,
+ "fg": 6064,
"additional_tiles": [
- { "id": "center", "fg": 5888 },
- { "id": "corner", "fg": [ 5890, 5891, 5891, 5890 ] },
- { "id": "t_connection", "fg": [ 5888, 5889, 5888, 5889 ] },
- { "id": "edge", "fg": [ 5889, 5888 ] },
- { "id": "end_piece", "fg": [ 5890, 5888, 5891, 5888 ] },
- { "id": "unconnected", "fg": [ 5888, 5888 ] }
+ { "id": "center", "fg": 6064 },
+ { "id": "corner", "fg": [ 6066, 6067, 6067, 6066 ] },
+ { "id": "t_connection", "fg": [ 6064, 6065, 6064, 6065 ] },
+ { "id": "edge", "fg": [ 6065, 6064 ] },
+ { "id": "end_piece", "fg": [ 6066, 6064, 6067, 6064 ] },
+ { "id": "unconnected", "fg": [ 6064, 6064 ] }
]
},
- { "id": "f_boulder_large", "fg": 5892 },
- { "id": "f_cattails_season_spring", "fg": 5894, "rotates": false },
- { "id": "f_cattails_season_summer", "fg": 5895, "rotates": false },
- { "id": "f_cattails_season_autumn", "fg": 5893, "rotates": false },
- { "id": "f_cattails_season_winter", "fg": 5896, "rotates": false },
+ { "id": "f_boulder_large", "fg": 6068 },
+ { "id": "f_cattails_season_spring", "fg": 6071, "rotates": false },
+ { "id": "f_cattails_season_summer", "fg": 6072, "rotates": false },
+ { "id": "f_cattails_season_autumn", "fg": 6070, "rotates": false },
+ { "id": "f_cattails_season_winter", "fg": 6073, "rotates": false },
{
"id": "f_console",
"multitile": true,
- "fg": 5930,
+ "fg": 6107,
"additional_tiles": [
- { "id": "center", "fg": 5915 },
- { "id": "corner", "fg": [ 5917, 5919, 5918, 5916 ] },
- { "id": "t_connection", "fg": [ 5927, 5929, 5928, 5926 ] },
- { "id": "edge", "fg": [ 5921, 5920 ] },
- { "id": "end_piece", "fg": [ 5923, 5925, 5924, 5922 ] },
- { "id": "unconnected", "fg": [ 5930, 5932, 5930, 5931 ] }
+ { "id": "center", "fg": 6092 },
+ { "id": "corner", "fg": [ 6094, 6096, 6095, 6093 ] },
+ { "id": "t_connection", "fg": [ 6104, 6106, 6105, 6103 ] },
+ { "id": "edge", "fg": [ 6098, 6097 ] },
+ { "id": "end_piece", "fg": [ 6100, 6102, 6101, 6099 ] },
+ { "id": "unconnected", "fg": [ 6107, 6109, 6107, 6108 ] }
]
},
{
"id": "f_console_broken",
"multitile": true,
- "fg": 5913,
+ "fg": 6090,
"additional_tiles": [
- { "id": "center", "fg": 5897 },
- { "id": "corner", "fg": [ 5899, 5901, 5900, 5898 ] },
- { "id": "t_connection", "fg": [ 5909, 5911, 5910, 5908 ] },
- { "id": "edge", "fg": [ 5903, 5902 ] },
- { "id": "end_piece", "fg": [ 5905, 5907, 5906, 5904 ] },
- { "id": "unconnected", "fg": [ 5913, 5914, 5913, 5912 ] }
+ { "id": "center", "fg": 6074 },
+ { "id": "corner", "fg": [ 6076, 6078, 6077, 6075 ] },
+ { "id": "t_connection", "fg": [ 6086, 6088, 6087, 6085 ] },
+ { "id": "edge", "fg": [ 6080, 6079 ] },
+ { "id": "end_piece", "fg": [ 6082, 6084, 6083, 6081 ] },
+ { "id": "unconnected", "fg": [ 6090, 6091, 6090, 6089 ] }
]
},
- { "id": "f_crate_c", "fg": 5933 },
- { "id": "f_crate_o", "fg": 5934 },
- { "id": "f_dialysis", "fg": 5935 },
- { "id": "f_dresser", "rotates": true, "fg": [ 5938, 5939, 5937, 5936 ] },
- { "id": "f_dryer", "fg": 5940 },
+ { "id": "f_crate_c", "fg": 6110 },
+ { "id": "f_crate_o", "fg": 6111 },
+ { "id": "f_dialysis", "fg": 6112 },
+ { "id": "f_dresser", "rotates": true, "fg": [ 6115, 6116, 6114, 6113 ] },
+ { "id": "f_dryer", "fg": 6117 },
{
"id": "f_dumpster",
- "fg": 5947,
- "multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 5941 },
- { "id": "corner", "fg": [ 5946, 5946, 5943, 5943 ] },
- { "id": "t_connection", "fg": [ 5941, 5946, 5941, 5943 ] },
- { "id": "edge", "fg": [ 5942, 5941 ] },
- { "id": "end_piece", "fg": [ 5944, 5946, 5945, 5943 ] },
- { "id": "unconnected", "fg": [ 5947, 5947 ] }
- ]
- },
- { "id": "f_fireplace", "fg": 5948 },
- { "id": "f_floor_lamp", "fg": 5949 },
- { "id": "f_fridge", "rotates": true, "fg": [ 5952, 5953, 5951, 5950 ] },
- { "id": "t_gas_pump", "fg": 5954, "bg": 6151 },
- { "id": "f_gas_pump", "fg": 5954 },
- { "id": "f_glass_cabinet", "fg": 5955 },
- { "id": "f_glass_fridge", "fg": 5956 },
- { "id": "f_home_furnace", "fg": 5957 },
- { "id": "f_locker", "fg": 5959 },
- { "id": "f_machinery_old", "fg": 5966 },
- { "id": "t_machinery_old", "fg": 5966, "bg": 6147 },
- { "id": "f_machinery_electronic", "fg": 5960 },
- { "id": "t_machinery_electronic", "fg": 5960, "bg": 6147 },
+ "fg": 6124,
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "center", "fg": 6118 },
+ { "id": "corner", "fg": [ 6123, 6123, 6120, 6120 ] },
+ { "id": "t_connection", "fg": [ 6118, 6123, 6118, 6120 ] },
+ { "id": "edge", "fg": [ 6119, 6118 ] },
+ { "id": "end_piece", "fg": [ 6121, 6123, 6122, 6120 ] },
+ { "id": "unconnected", "fg": [ 6124, 6124 ] }
+ ]
+ },
+ { "id": "f_fireplace", "fg": 6125 },
+ { "id": "f_floor_lamp", "fg": 6126 },
+ { "id": "f_fridge", "rotates": true, "fg": [ 6129, 6130, 6128, 6127 ] },
+ { "id": "t_gas_pump", "fg": 6131, "bg": 6231 },
+ { "id": "f_gas_pump", "fg": 6131 },
+ { "id": "f_glass_cabinet", "fg": 6132 },
+ { "id": "f_glass_fridge", "fg": 6133 },
+ { "id": "f_home_furnace", "fg": 6134 },
+ { "id": "f_locker", "fg": 6136 },
+ { "id": "f_machinery_old", "fg": 6143 },
+ { "id": "t_machinery_old", "fg": 6143, "bg": 6227 },
+ { "id": "f_machinery_electronic", "fg": 6137 },
+ { "id": "t_machinery_electronic", "fg": 6137, "bg": 6227 },
{
"id": "f_machinery_heavy",
- "fg": [ { "weight": 20, "sprite": 5961 }, { "weight": 150, "sprite": 5962 }, { "weight": 100, "sprite": 5963 } ]
+ "fg": [ { "weight": 20, "sprite": 6138 }, { "weight": 150, "sprite": 6139 }, { "weight": 100, "sprite": 6140 } ]
},
{
"id": "t_machinery_heavy",
- "fg": [ { "weight": 20, "sprite": 5961 }, { "weight": 150, "sprite": 5962 }, { "weight": 100, "sprite": 5963 } ],
- "bg": 6147
+ "fg": [ { "weight": 20, "sprite": 6138 }, { "weight": 150, "sprite": 6139 }, { "weight": 100, "sprite": 6140 } ],
+ "bg": 6227
},
- { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 5965 }, { "weight": 100, "sprite": 5964 } ] },
+ { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 6142 }, { "weight": 100, "sprite": 6141 } ] },
{
"id": "t_machinery_light",
- "fg": [ { "weight": 100, "sprite": 5965 }, { "weight": 100, "sprite": 5964 } ],
- "bg": 6147
- },
- { "id": "f_mannequin", "fg": 5967 },
- { "id": "f_alien_tendril", "fg": 5971 },
- { "id": "f_alien_zapper", "fg": 5972 },
- { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 5969 },
- { "id": "f_alien_pod_resin", "fg": 5970 },
- { "id": "f_oven", "rotates": true, "fg": [ 5975, 5976, 5974, 5973 ] },
- { "id": "f_rack_coat", "fg": 5977 },
- { "id": "f_scan_bed", "fg": 5978 },
+ "fg": [ { "weight": 100, "sprite": 6142 }, { "weight": 100, "sprite": 6141 } ],
+ "bg": 6227
+ },
+ { "id": "f_mannequin", "fg": 6144 },
+ { "id": "f_alien_tendril", "fg": 6148 },
+ { "id": "f_alien_zapper", "fg": 6149 },
+ { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 6146 },
+ { "id": "f_alien_pod_resin", "fg": 6147 },
+ { "id": "f_oven", "rotates": true, "fg": [ 6152, 6153, 6151, 6150 ] },
+ { "id": "f_rack_coat", "fg": 6154 },
+ { "id": "f_scan_bed", "fg": 6155 },
{
"id": "f_scrap_antenna",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 5979 },
- { "weight": 15, "sprite": 5980 },
- { "weight": 15, "sprite": 5981 },
- { "weight": 15, "sprite": 5982 },
- { "weight": 15, "sprite": 5983 },
- { "weight": 15, "sprite": 5984 }
+ { "weight": 15, "sprite": 6156 },
+ { "weight": 15, "sprite": 6157 },
+ { "weight": 15, "sprite": 6158 },
+ { "weight": 15, "sprite": 6159 },
+ { "weight": 15, "sprite": 6160 },
+ { "weight": 15, "sprite": 6161 }
],
"rotates": false
},
- { "id": "f_shower", "fg": 5985 },
- { "id": "f_standing_tank", "fg": 5986 },
- { "id": "f_statue", "fg": 5987 },
- { "id": "f_sunflower_season_summer", "fg": 5989 },
- { "id": "f_sunflower_season_autumn", "fg": 5988 },
- { "id": "f_vending_c", "fg": 5990 },
- { "id": "f_vending_reinforced", "fg": 5992 },
- { "id": "f_vending_o", "fg": 5991 },
- { "id": "f_ventilator", "fg": 5993 },
- { "id": "f_washer", "fg": 5994 },
- { "id": "f_water_heater", "fg": 5995 },
- { "id": "f_water_pump", "fg": 5996 },
- { "id": "t_water_pump", "fg": 5996, "bg": 6147 },
- { "id": "f_wind_mill", "fg": 5997 },
- { "id": "f_woodstove", "fg": 5998 },
- { "id": "f_workbench", "fg": 5999 },
- { "id": "f_dishwasher", "fg": 5875 },
- { "id": "f_wardrobe", "fg": 5877 },
- { "id": "f_treadmill", "fg": 5881 },
- { "id": "f_bigmirror", "fg": 5885 },
- { "id": "f_bigmirror_b", "fg": 5886 },
- { "id": "f_ladder", "fg": 5958 },
- { "id": "f_alien_gasper", "fg": 5968 }
+ { "id": "f_shower", "fg": 6162 },
+ { "id": "f_standing_tank", "fg": 6163 },
+ { "id": "f_statue", "fg": 6164 },
+ { "id": "f_sunflower_season_summer", "fg": 6166 },
+ { "id": "f_sunflower_season_autumn", "fg": 6165 },
+ { "id": "f_vending_c", "fg": 6167 },
+ { "id": "f_vending_reinforced", "fg": 6169 },
+ { "id": "f_vending_o", "fg": 6168 },
+ { "id": "f_ventilator", "fg": 6170 },
+ { "id": "f_washer", "fg": 6171 },
+ { "id": "f_water_heater", "fg": 6172 },
+ { "id": "f_water_pump", "fg": 6173 },
+ { "id": "t_water_pump", "fg": 6173, "bg": 6227 },
+ { "id": "f_wind_mill", "fg": 6174 },
+ { "id": "f_woodstove", "fg": 6175 },
+ { "id": "f_workbench", "fg": 6176 },
+ { "id": "f_dishwasher", "fg": 6051 },
+ { "id": "f_wardrobe", "fg": 6053 },
+ { "id": "f_treadmill", "fg": 6057 },
+ { "id": "f_bigmirror", "fg": 6061 },
+ { "id": "f_bigmirror_b", "fg": 6062 },
+ { "id": "f_canvas_floor", "fg": 6069 },
+ { "id": "f_ladder", "fg": 6135 },
+ { "id": "f_alien_gasper", "fg": 6145 },
+ { "id": "f_street_light", "fg": 6177 },
+ { "id": "f_traffic_light", "fg": 6178 }
]
},
{
"file": "tallmonsters.png",
- "//": "range 6000 to 6127",
+ "//": "range 6192 to 6223",
"sprite_width": 32,
"sprite_height": 64,
"sprite_offset_x": 0,
"sprite_offset_y": -32,
"tiles": [
- { "id": "mon_zombie_phase_skulker", "fg": 6001, "bg": 6128 },
- { "id": "mon_zombie_phase_shrike", "fg": 6000, "bg": 6128 },
- {
- "id": "mon_zombie_reenactor",
- "fg": [ { "weight": 2, "sprite": 6010 }, { "weight": 2, "sprite": 6009 }, { "weight": 1, "sprite": 6011 } ],
- "bg": 6128
- },
- { "id": "mon_zombie_prisoner_tough", "fg": 6008, "bg": 6128 },
- { "id": "mon_zombie_prisoner_fat", "fg": 6007, "bg": 6128 },
- { "id": "mon_zombie_prisoner_brute", "fg": 6006, "bg": 6128 },
{
"id": "mon_exodii_worker",
"fg": [
- { "weight": 15, "sprite": 6012 },
- { "weight": 15, "sprite": 6013 },
- { "weight": 10, "sprite": 6014 },
- { "weight": 10, "sprite": 6015 }
+ { "weight": 15, "sprite": 6194 },
+ { "weight": 15, "sprite": 6195 },
+ { "weight": 10, "sprite": 6196 },
+ { "weight": 10, "sprite": 6197 }
],
- "bg": 6128
- },
- { "id": "mon_feral_labsecurity_9mm", "fg": 6020, "bg": 6128 },
- { "id": "mon_feral_labsecurity_flashlight", "fg": 6021, "bg": 6128 },
- { "id": "mon_feral_scientist_scalpel", "fg": 6024, "bg": 6128 },
- { "id": "mon_dispatch", "fg": 6031, "bg": 6128 },
- { "id": "mon_dispatch_military", "fg": 6032, "bg": 6128 },
- {
- "id": "mon_hunting_horror",
- "fg": [ { "weight": 1, "sprite": 6038 }, { "weight": 1, "sprite": 6039 }, { "weight": 1, "sprite": 6040 } ],
- "bg": 6128
- },
- { "id": "mon_mutant_experimental", "fg": 6042, "bg": 6128 },
- { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 6069 },
- { "id": "mon_turret_rifle", "fg": 6046, "bg": 6128 },
- { "id": "mon_turret_riot", "fg": 6047, "bg": 6128 },
- { "id": "mon_zombie_bio_op2", "fg": 6051, "bg": 6128 },
- { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 6063 },
- { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 6066, "bg": 6128 },
- { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 6067, "bg": 6128 },
- { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 6068, "bg": 6128 },
- { "id": "corpse_mon_zombie_rot", "fg": 6069 },
- { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 6072 },
- {
- "id": [
- "corpse_mon_zombie",
- "corpse_mon_zombie_grappler",
- "corpse_mon_zombie_biter",
- "corpse_mon_zombie_hunter",
- "corpse_mon_zombie_predator",
- "corpse_mon_zombie_thorny",
- "corpse_mon_zombie_smoker",
- "corpse_mon_zombie_shady",
- "corpse_mon_zombie_acidic",
- "corpse_mon_zombie_fat",
- "corpse_mon_zombie_corrosive",
- "corpse_mon_zombie_screecher",
- "corpse_mon_zombie_runner",
- "corpse_mon_zombie_child",
- "corpse_mon_zombie_electric",
- "corpse_mon_zombie_fungus",
- "corpse_mon_zombie_child_fungus",
- "corpse_mon_zombie_swimmer",
- "corpse_mon_zombie_mancroc",
- "corpse_mon_zombie_skull",
- "corpse_mon_zombie_survivor",
- "corpse_mon_zombie_soldier_acid_1",
- "corpse_mon_zombie_soldier_acid_2",
- "corpse_mon_zombie_shriekling",
- "corpse_mon_zombie_ears",
- "corpse_mon_zombie_nullfield",
- "corpse_mon_zombie_waif",
- "corpse_mon_zombie_sproglodyte",
- "corpse_mon_zombie_creepy",
- "corpse_mon_zombie_anklebiter",
- "corpse_mon_zombie_bio_op",
- "corpse_mon_zombie_prisoner",
- "corpse_mon_zombie_winged"
- ],
- "fg": 6080
- },
- { "id": "corpse_mon_zombie_scientist", "fg": 6082 },
- { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 6083 },
- { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 6081 },
- {
- "id": [
- "corpse_mon_zombie_tough",
- "corpse_mon_zombie_brute",
- "corpse_mon_zombie_hulk",
- "corpse_mon_zombie_brute_grappler",
- "corpse_mon_zombie_brute_ninja",
- "corpse_mon_zombie_kevlar_2",
- "corpse_mon_zombie_kevlar_1",
- "corpse_mon_zombie_armored",
- "corpse_mon_zombie_brute_shocker",
- "corpse_mon_zombie_brute_winged",
- "corpse_mon_zombie_soldier_blackops_2",
- "corpse_mon_zombie_soldier_blackops_1"
- ],
- "fg": 6084
- },
- { "id": "mon_zombie_winged", "fg": 6099, "bg": 6128 },
- { "id": "mon_zombie_swat", "fg": 6104, "bg": 6128 },
- { "id": "mon_zombie_flamer", "fg": 6109, "bg": 6128 },
- { "id": "corpse_mon_zombie_brainless", "fg": 6055 }
+ "bg": 6193
+ },
+ { "id": "mon_dispatch", "fg": 6199, "bg": 6193 },
+ { "id": "mon_dispatch_military", "fg": 6200, "bg": 6193 },
+ { "id": "mon_robofac_laserturret_mk1", "fg": 6205, "bg": 6193 },
+ { "id": "mon_turret", "fg": 6206, "bg": 6193 },
+ { "id": "mon_zombie_gasbag_fungus", "fg": 6208, "bg": 6193 },
+ { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 6209 }
]
},
- {
- "file": "tallshadows.png",
- "//": "range 6128 to 6143",
- "sprite_width": 32,
- "sprite_height": 64,
- "sprite_offset_x": 0,
- "sprite_offset_y": -32,
- "tiles": [ ]
- },
{
"file": "tallterrain.png",
- "//": "range 6144 to 6303",
+ "//": "range 6224 to 6383",
"sprite_width": 32,
"sprite_height": 64,
"sprite_offset_x": 0,
"sprite_offset_y": -32,
"tiles": [
- { "id": "t_atm", "fg": 6152, "bg": 6147 },
- { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 6153, "bg": 6144 },
- { "id": "t_column", "fg": 6154, "bg": 6147 },
+ { "id": "t_atm", "fg": 6234, "bg": 6227 },
+ { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 6235, "bg": 6224 },
+ { "id": "t_column", "fg": 6236, "bg": 6227 },
{
"id": "t_grass_long",
"multitile": true,
- "fg": 6173,
- "bg": 6150,
+ "fg": 6255,
+ "bg": 6230,
"additional_tiles": [
{
"id": "center",
- "bg": 6150,
+ "bg": 6230,
"fg": [
- { "weight": 100, "sprite": 6155 },
- { "weight": 100, "sprite": 6156 },
- { "weight": 100, "sprite": 6157 },
- { "weight": 100, "sprite": 6158 }
+ { "weight": 100, "sprite": 6237 },
+ { "weight": 100, "sprite": 6238 },
+ { "weight": 100, "sprite": 6239 },
+ { "weight": 100, "sprite": 6240 }
]
},
- { "id": "corner", "bg": 6150, "fg": [ 6160, 6162, 6161, 6159 ] },
- { "id": "t_connection", "bg": 6150, "fg": [ 6170, 6172, 6171, 6169 ] },
- { "id": "edge", "bg": 6150, "fg": [ 6164, 6163 ] },
- { "id": "end_piece", "bg": 6150, "fg": [ 6166, 6168, 6167, 6165 ] },
+ { "id": "corner", "bg": 6230, "fg": [ 6242, 6244, 6243, 6241 ] },
+ { "id": "t_connection", "bg": 6230, "fg": [ 6252, 6254, 6253, 6251 ] },
+ { "id": "edge", "bg": 6230, "fg": [ 6246, 6245 ] },
+ { "id": "end_piece", "bg": 6230, "fg": [ 6248, 6250, 6249, 6247 ] },
{
"id": "unconnected",
- "bg": 6150,
+ "bg": 6230,
"fg": [
- { "weight": 100, "sprite": 6173 },
- { "weight": 100, "sprite": 6174 },
- { "weight": 100, "sprite": 6175 },
- { "weight": 100, "sprite": 6176 }
+ { "weight": 100, "sprite": 6255 },
+ { "weight": 100, "sprite": 6256 },
+ { "weight": 100, "sprite": 6257 },
+ { "weight": 100, "sprite": 6258 }
]
}
]
@@ -8583,31 +8679,31 @@
{
"id": "t_grass_long_season_summer",
"multitile": true,
- "fg": 6217,
- "bg": 6149,
+ "fg": 6299,
+ "bg": 6229,
"additional_tiles": [
{
"id": "center",
- "bg": 6149,
+ "bg": 6229,
"fg": [
- { "weight": 100, "sprite": 6199 },
- { "weight": 100, "sprite": 6200 },
- { "weight": 100, "sprite": 6201 },
- { "weight": 100, "sprite": 6202 }
+ { "weight": 100, "sprite": 6281 },
+ { "weight": 100, "sprite": 6282 },
+ { "weight": 100, "sprite": 6283 },
+ { "weight": 100, "sprite": 6284 }
]
},
- { "id": "corner", "bg": 6149, "fg": [ 6204, 6206, 6205, 6203 ] },
- { "id": "t_connection", "bg": 6149, "fg": [ 6214, 6216, 6215, 6213 ] },
- { "id": "edge", "bg": 6149, "fg": [ 6208, 6207 ] },
- { "id": "end_piece", "bg": 6149, "fg": [ 6210, 6212, 6211, 6209 ] },
+ { "id": "corner", "bg": 6229, "fg": [ 6286, 6288, 6287, 6285 ] },
+ { "id": "t_connection", "bg": 6229, "fg": [ 6296, 6298, 6297, 6295 ] },
+ { "id": "edge", "bg": 6229, "fg": [ 6290, 6289 ] },
+ { "id": "end_piece", "bg": 6229, "fg": [ 6292, 6294, 6293, 6291 ] },
{
"id": "unconnected",
- "bg": 6149,
+ "bg": 6229,
"fg": [
- { "weight": 100, "sprite": 6217 },
- { "weight": 100, "sprite": 6218 },
- { "weight": 100, "sprite": 6219 },
- { "weight": 100, "sprite": 6220 }
+ { "weight": 100, "sprite": 6299 },
+ { "weight": 100, "sprite": 6300 },
+ { "weight": 100, "sprite": 6301 },
+ { "weight": 100, "sprite": 6302 }
]
}
]
@@ -8615,64 +8711,64 @@
{
"id": "t_grass_long_season_autumn",
"multitile": true,
- "fg": 6195,
- "bg": 6148,
+ "fg": 6277,
+ "bg": 6228,
"additional_tiles": [
{
"id": "center",
- "bg": 6148,
+ "bg": 6228,
"fg": [
- { "weight": 100, "sprite": 6177 },
- { "weight": 100, "sprite": 6178 },
- { "weight": 100, "sprite": 6179 },
- { "weight": 100, "sprite": 6180 }
+ { "weight": 100, "sprite": 6259 },
+ { "weight": 100, "sprite": 6260 },
+ { "weight": 100, "sprite": 6261 },
+ { "weight": 100, "sprite": 6262 }
]
},
- { "id": "corner", "bg": 6148, "fg": [ 6182, 6184, 6183, 6181 ] },
- { "id": "t_connection", "bg": 6148, "fg": [ 6192, 6194, 6193, 6191 ] },
- { "id": "edge", "bg": 6148, "fg": [ 6186, 6185 ] },
- { "id": "end_piece", "bg": 6148, "fg": [ 6188, 6190, 6189, 6187 ] },
+ { "id": "corner", "bg": 6228, "fg": [ 6264, 6266, 6265, 6263 ] },
+ { "id": "t_connection", "bg": 6228, "fg": [ 6274, 6276, 6275, 6273 ] },
+ { "id": "edge", "bg": 6228, "fg": [ 6268, 6267 ] },
+ { "id": "end_piece", "bg": 6228, "fg": [ 6270, 6272, 6271, 6269 ] },
{
"id": "unconnected",
- "bg": 6148,
+ "bg": 6228,
"fg": [
- { "weight": 100, "sprite": 6195 },
- { "weight": 100, "sprite": 6196 },
- { "weight": 100, "sprite": 6197 },
- { "weight": 100, "sprite": 6198 }
+ { "weight": 100, "sprite": 6277 },
+ { "weight": 100, "sprite": 6278 },
+ { "weight": 100, "sprite": 6279 },
+ { "weight": 100, "sprite": 6280 }
]
}
]
},
- { "id": "t_grass_long_season_winter", "fg": 6145 },
+ { "id": "t_grass_long_season_winter", "fg": 6225 },
{
"id": "t_grass_tall",
"multitile": true,
- "fg": 6239,
- "bg": 6150,
+ "fg": 6321,
+ "bg": 6230,
"additional_tiles": [
{
"id": "center",
- "bg": 6150,
+ "bg": 6230,
"fg": [
- { "weight": 100, "sprite": 6221 },
- { "weight": 100, "sprite": 6222 },
- { "weight": 100, "sprite": 6223 },
- { "weight": 100, "sprite": 6224 }
+ { "weight": 100, "sprite": 6303 },
+ { "weight": 100, "sprite": 6304 },
+ { "weight": 100, "sprite": 6305 },
+ { "weight": 100, "sprite": 6306 }
]
},
- { "id": "corner", "bg": 6150, "fg": [ 6226, 6228, 6227, 6225 ] },
- { "id": "t_connection", "bg": 6150, "fg": [ 6236, 6238, 6237, 6235 ] },
- { "id": "edge", "bg": 6150, "fg": [ 6230, 6229 ] },
- { "id": "end_piece", "bg": 6150, "fg": [ 6232, 6234, 6233, 6231 ] },
+ { "id": "corner", "bg": 6230, "fg": [ 6308, 6310, 6309, 6307 ] },
+ { "id": "t_connection", "bg": 6230, "fg": [ 6318, 6320, 6319, 6317 ] },
+ { "id": "edge", "bg": 6230, "fg": [ 6312, 6311 ] },
+ { "id": "end_piece", "bg": 6230, "fg": [ 6314, 6316, 6315, 6313 ] },
{
"id": "unconnected",
- "bg": 6150,
+ "bg": 6230,
"fg": [
- { "weight": 100, "sprite": 6239 },
- { "weight": 100, "sprite": 6240 },
- { "weight": 100, "sprite": 6241 },
- { "weight": 100, "sprite": 6242 }
+ { "weight": 100, "sprite": 6321 },
+ { "weight": 100, "sprite": 6322 },
+ { "weight": 100, "sprite": 6323 },
+ { "weight": 100, "sprite": 6324 }
]
}
]
@@ -8680,31 +8776,31 @@
{
"id": "t_grass_tall_season_summer",
"multitile": true,
- "fg": 6283,
- "bg": 6149,
+ "fg": 6365,
+ "bg": 6229,
"additional_tiles": [
{
"id": "center",
- "bg": 6149,
+ "bg": 6229,
"fg": [
- { "weight": 100, "sprite": 6265 },
- { "weight": 100, "sprite": 6266 },
- { "weight": 100, "sprite": 6267 },
- { "weight": 100, "sprite": 6268 }
+ { "weight": 100, "sprite": 6347 },
+ { "weight": 100, "sprite": 6348 },
+ { "weight": 100, "sprite": 6349 },
+ { "weight": 100, "sprite": 6350 }
]
},
- { "id": "corner", "bg": 6149, "fg": [ 6270, 6272, 6271, 6269 ] },
- { "id": "t_connection", "bg": 6149, "fg": [ 6280, 6282, 6281, 6279 ] },
- { "id": "edge", "bg": 6149, "fg": [ 6274, 6273 ] },
- { "id": "end_piece", "bg": 6149, "fg": [ 6276, 6278, 6277, 6275 ] },
+ { "id": "corner", "bg": 6229, "fg": [ 6352, 6354, 6353, 6351 ] },
+ { "id": "t_connection", "bg": 6229, "fg": [ 6362, 6364, 6363, 6361 ] },
+ { "id": "edge", "bg": 6229, "fg": [ 6356, 6355 ] },
+ { "id": "end_piece", "bg": 6229, "fg": [ 6358, 6360, 6359, 6357 ] },
{
"id": "unconnected",
- "bg": 6149,
+ "bg": 6229,
"fg": [
- { "weight": 100, "sprite": 6283 },
- { "weight": 100, "sprite": 6284 },
- { "weight": 100, "sprite": 6285 },
- { "weight": 100, "sprite": 6286 }
+ { "weight": 100, "sprite": 6365 },
+ { "weight": 100, "sprite": 6366 },
+ { "weight": 100, "sprite": 6367 },
+ { "weight": 100, "sprite": 6368 }
]
}
]
@@ -8712,54 +8808,55 @@
{
"id": "t_grass_tall_season_autumn",
"multitile": true,
- "fg": 6261,
- "bg": 6148,
+ "fg": 6343,
+ "bg": 6228,
"additional_tiles": [
{
"id": "center",
- "bg": 6148,
+ "bg": 6228,
"fg": [
- { "weight": 100, "sprite": 6243 },
- { "weight": 100, "sprite": 6244 },
- { "weight": 100, "sprite": 6245 },
- { "weight": 100, "sprite": 6246 }
+ { "weight": 100, "sprite": 6325 },
+ { "weight": 100, "sprite": 6326 },
+ { "weight": 100, "sprite": 6327 },
+ { "weight": 100, "sprite": 6328 }
]
},
- { "id": "corner", "bg": 6148, "fg": [ 6248, 6250, 6249, 6247 ] },
- { "id": "t_connection", "bg": 6148, "fg": [ 6258, 6260, 6259, 6257 ] },
- { "id": "edge", "bg": 6148, "fg": [ 6252, 6251 ] },
- { "id": "end_piece", "bg": 6148, "fg": [ 6254, 6256, 6255, 6253 ] },
+ { "id": "corner", "bg": 6228, "fg": [ 6330, 6332, 6331, 6329 ] },
+ { "id": "t_connection", "bg": 6228, "fg": [ 6340, 6342, 6341, 6339 ] },
+ { "id": "edge", "bg": 6228, "fg": [ 6334, 6333 ] },
+ { "id": "end_piece", "bg": 6228, "fg": [ 6336, 6338, 6337, 6335 ] },
{
"id": "unconnected",
- "bg": 6148,
+ "bg": 6228,
"fg": [
- { "weight": 100, "sprite": 6261 },
- { "weight": 100, "sprite": 6262 },
- { "weight": 100, "sprite": 6263 },
- { "weight": 100, "sprite": 6264 }
+ { "weight": 100, "sprite": 6343 },
+ { "weight": 100, "sprite": 6344 },
+ { "weight": 100, "sprite": 6345 },
+ { "weight": 100, "sprite": 6346 }
]
}
]
},
- { "id": "t_grass_tall_season_winter", "fg": 6145 },
- { "id": "t_gutter_downspout", "fg": 6287, "bg": 6150 },
- { "id": "t_gutter_downspout_season_autumn", "fg": 6287, "bg": 6148 },
- { "id": "t_gutter_downspout_season_summer", "fg": 6287, "bg": 6149 },
- { "id": "t_gutter_downspout_season_winter", "fg": 6287, "bg": 6146 },
- { "id": "t_ladder_up", "fg": 6288 },
- { "id": "t_little_column", "fg": 6289, "bg": 6147 },
- { "id": "t_stairs_up", "fg": 6291 },
- { "id": "t_wood_stairs_up", "fg": 6292 },
- { "id": "t_utility_light", "fg": 6293 },
- { "id": "t_radio_tower", "fg": 6290 },
- { "id": "t_window_stained_blue", "fg": 6294 },
- { "id": "t_window_stained_green", "fg": 6295 },
- { "id": "t_window_stained_red", "fg": 6296 }
+ { "id": "t_grass_tall_season_winter", "fg": 6225 },
+ { "id": "t_gutter_downspout", "fg": 6369, "bg": 6230 },
+ { "id": "t_gutter_downspout_season_autumn", "fg": 6369, "bg": 6228 },
+ { "id": "t_gutter_downspout_season_summer", "fg": 6369, "bg": 6229 },
+ { "id": "t_gutter_downspout_season_winter", "fg": 6369, "bg": 6226 },
+ { "id": "t_little_column", "fg": 6370, "bg": 6227 },
+ { "id": "t_stairs_up", "fg": 6372 },
+ { "id": "t_wood_stairs_up", "fg": 6373 },
+ { "id": "t_utility_light", "fg": 6374 },
+ { "id": "t_ladder_up", "fg": 6232 },
+ { "id": "t_ladder_up_down", "fg": 6233 },
+ { "id": "t_radio_tower", "fg": 6371 },
+ { "id": "t_window_stained_blue", "fg": 6375 },
+ { "id": "t_window_stained_green", "fg": 6376 },
+ { "id": "t_window_stained_red", "fg": 6377 }
]
},
{
"file": "tallvehicle.png",
- "//": "range 6304 to 6319",
+ "//": "range 6384 to 6447",
"sprite_width": 32,
"sprite_height": 64,
"sprite_offset_x": 0,
@@ -8767,331 +8864,441 @@
"tiles": [
{
"id": "vp_frame_handle",
- "fg": [ 6305, 6307, 6306, 6304 ],
+ "fg": [ 6389, 6391, 6390, 6388 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6389, 6391, 6390, 6388 ] } ]
+ },
+ {
+ "id": "vp_stowboard_ne",
+ "fg": [ 6397, 6400, 6399, 6398 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6397, 6400, 6399, 6398 ] } ]
+ },
+ {
+ "id": "vp_stowboard_nw",
+ "fg": [ 6401, 6404, 6403, 6402 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6401, 6404, 6403, 6402 ] } ]
+ },
+ {
+ "id": "vp_stowboard_se",
+ "fg": [ 6405, 6407, 6401, 6406 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6405, 6407, 6401, 6406 ] } ]
+ },
+ {
+ "id": "vp_stowboard_sw",
+ "fg": [ 6408, 6410, 6397, 6409 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6408, 6410, 6397, 6409 ] } ]
+ },
+ {
+ "id": "vp_stowboard_vertical_left",
+ "fg": [ 6411, 6413, 6414, 6412 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6411, 6413, 6414, 6412 ] } ]
+ },
+ {
+ "id": "vp_stowboard_vertical_right",
+ "fg": [ 6414, 6412, 6411, 6413 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6414, 6412, 6411, 6413 ] } ]
+ },
+ {
+ "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ],
+ "fg": [ 6392, 6415, 6392, 6415 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6392, 6415, 6392, 6415 ] } ]
+ },
+ {
+ "id": "vp_stowboard_horizontal_front",
+ "fg": [ 6392, 6395, 6394, 6393 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6392, 6395, 6394, 6393 ] } ]
+ },
+ {
+ "id": "vp_stowboard_horizontal_rear",
+ "fg": [ 6396, 6393, 6392, 6395 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6396, 6393, 6392, 6395 ] } ]
+ },
+ {
+ "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ],
+ "fg": [ 6415, 6392, 6415, 6392 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6305, 6307, 6306, 6304 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6415, 6392, 6415, 6392 ] } ]
},
- { "id": "vp_saddle_scooter", "fg": [ 6309, 6311, 6310, 6308 ], "rotates": true }
+ {
+ "id": "vp_stowboard_wheel_left",
+ "fg": [ 6395, 6416, 6393, 6412 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6395, 6416, 6393, 6412 ] } ]
+ },
+ {
+ "id": "vp_stowboard_wheel_right",
+ "fg": [ 6393, 6412, 6395, 6416 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 6393, 6412, 6395, 6416 ] } ]
+ },
+ {
+ "id": "vp_door_trunk",
+ "fg": [ 6417, 6424, 6423, 6422 ],
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6418, 6421, 6420, 6419 ] },
+ { "id": "broken", "fg": [ 6387, 6387, 6387, 6387 ], "bg": [ 6418, 6421, 6420, 6419 ] }
+ ]
+ },
+ {
+ "id": "vp_door_trunk_horizontal_2",
+ "fg": [ 6425, 6432, 6431, 6430 ],
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6426, 6429, 6428, 6427 ] },
+ { "id": "broken", "fg": [ 6387, 6387, 6387, 6387 ], "bg": [ 6426, 6429, 6428, 6427 ] }
+ ]
+ },
+ { "id": "crack_glass_center_tall", "fg": 6384 },
+ { "id": "crack_glass_left_tall", "fg": 6385 },
+ { "id": "crack_glass_right_tall", "fg": 6386 },
+ { "id": "vp_travois", "fg": 6433 }
]
},
{
"file": "huge.png",
- "//": "range 6320 to 6335",
+ "//": "range 6448 to 6479",
"sprite_width": 64,
"sprite_height": 96,
"sprite_offset_x": -16,
"sprite_offset_y": -64,
"tiles": [
- { "id": "mon_ frog_mother", "fg": 6327 },
- { "id": "mon_mutant_evolved", "fg": 6328 },
- { "id": "corpse_mon_nakedmolerat_giant", "fg": 6329 }
+ { "id": "mon_zombie_nemesis", "fg": 6454, "bg": 6448 },
+ { "id": "mon_ frog_mother", "fg": 6457 },
+ { "id": "mon_mutant_evolved", "fg": 6458 },
+ { "id": "mon_mutant_mollusk", "fg": 6459 },
+ { "id": "corpse_mon_nakedmolerat_giant", "fg": 6460 }
]
},
{
"file": "centered.png",
- "//": "range 6336 to 6351",
+ "//": "range 6480 to 6495",
"sprite_width": 64,
"sprite_height": 64,
"sprite_offset_x": -16,
"sprite_offset_y": -16,
"tiles": [
- { "id": "vp_wing_mirror", "fg": [ 6345, 6347, 6346, 6344 ], "rotates": true },
- { "id": "vp_wing_mirror_left", "fg": [ 6337, 6339, 6338, 6336 ], "rotates": true },
- { "id": "vp_wing_mirror_right", "fg": [ 6341, 6343, 6342, 6340 ], "rotates": true }
+ { "id": "vp_wing_mirror", "fg": [ 6489, 6491, 6490, 6488 ], "rotates": true },
+ { "id": "vp_wing_mirror_left", "fg": [ 6481, 6483, 6482, 6480 ], "rotates": true },
+ { "id": "vp_wing_mirror_right", "fg": [ 6485, 6487, 6486, 6484 ], "rotates": true }
]
},
{
"file": "large.png",
- "//": "range 6352 to 6495",
+ "//": "range 6496 to 6639",
"sprite_width": 64,
"sprite_height": 64,
"sprite_offset_x": -16,
"sprite_offset_y": -32,
"tiles": [
- { "id": "f_CTscan", "fg": 6353 },
- { "id": "f_MRI", "fg": 6354 },
- { "id": "f_rotary_clothesline", "fg": 6355 },
- { "id": "mon_troll", "fg": 6357, "bg": 6471 },
- { "id": "mon_smoker_brute", "fg": 6360, "bg": 6472 },
+ { "id": "f_CTscan", "fg": 6497 },
+ { "id": "f_MRI", "fg": 6498 },
+ { "id": "f_rotary_clothesline", "fg": 6499 },
+ { "id": "mon_troll", "fg": 6501, "bg": 6506 },
+ { "id": "mon_smoker_brute", "fg": 6504, "bg": 6507 },
{
"id": "mon_exodii_quad",
"fg": [
- { "weight": 15, "sprite": 6362 },
- { "weight": 10, "sprite": 6363 },
- { "weight": 15, "sprite": 6364 },
- { "weight": 15, "sprite": 6365 }
+ { "weight": 15, "sprite": 6509 },
+ { "weight": 10, "sprite": 6510 },
+ { "weight": 15, "sprite": 6511 },
+ { "weight": 15, "sprite": 6512 }
],
- "bg": 6471
+ "bg": 6506
},
{
"id": "mon_exodii_turret",
"fg": [
- { "weight": 15, "sprite": 6366 },
- { "weight": 5, "sprite": 6367 },
- { "weight": 15, "sprite": 6368 },
- { "weight": 15, "sprite": 6369 }
+ { "weight": 15, "sprite": 6513 },
+ { "weight": 5, "sprite": 6514 },
+ { "weight": 15, "sprite": 6515 },
+ { "weight": 15, "sprite": 6516 }
],
- "bg": 6472
- },
- { "id": "mon_giant_crayfish", "fg": 6371, "bg": 6473 },
- { "id": "mon_slug_giant", "fg": 6372, "bg": 6471 },
- { "id": "corpse_mon_spider_web", "fg": 6373 },
- { "id": "mon_dog_zombie_hulk", "fg": 6375, "bg": 6472 },
- { "id": "corpse_mon_ant_soldier", "fg": 6380 },
- { "id": "corpse_mon_ant_acid_soldier", "fg": 6378 },
- { "id": "corpse_mon_ant_queen", "fg": 6379 },
- { "id": "corpse_mon_ant_acid_queen", "fg": 6377 },
- { "id": "mon_dog_zombie_brute", "fg": 6396, "bg": 6472 },
+ "bg": 6507
+ },
+ { "id": "mon_giant_crayfish", "fg": 6518, "bg": 6508 },
+ { "id": "mon_slug_giant", "fg": 6519, "bg": 6506 },
+ { "id": "mon_dog_zombie_hulk", "fg": 6520, "bg": 6507 },
+ { "id": "corpse_mon_ant_soldier", "fg": 6525 },
+ { "id": "corpse_mon_ant_acid_soldier", "fg": 6523 },
+ { "id": "corpse_mon_ant_queen", "fg": 6524 },
+ { "id": "corpse_mon_ant_acid_queen", "fg": 6522 },
+ { "id": "mon_dog_zombie_brute", "fg": 6540, "bg": 6507 },
{
"id": "mon_flying_polyp",
- "fg": [ { "weight": 1, "sprite": 6397 }, { "weight": 1, "sprite": 6398 }, { "weight": 1, "sprite": 6399 } ]
+ "fg": [ { "weight": 1, "sprite": 6541 }, { "weight": 1, "sprite": 6542 }, { "weight": 1, "sprite": 6543 } ]
},
{
"id": "mon_lady_bug_giant",
"fg": [
- { "weight": 90, "sprite": 6405 },
- { "weight": 60, "sprite": 6406 },
- { "weight": 50, "sprite": 6407 },
- { "weight": 20, "sprite": 6408 },
- { "weight": 1, "sprite": 6409 }
+ { "weight": 90, "sprite": 6550 },
+ { "weight": 60, "sprite": 6551 },
+ { "weight": 50, "sprite": 6552 },
+ { "weight": 20, "sprite": 6553 },
+ { "weight": 1, "sprite": 6554 }
],
- "bg": 6472
- },
- { "id": "mon_mi_go_scout", "fg": 6411, "bg": 6472 },
- { "id": "mon_zombear_skeleton", "fg": 6417, "bg": 6472 },
- { "id": "mon_zombie_brute_winged", "fg": 6423, "bg": 6471 },
- { "id": "mon_nursebot_defective", "fg": 6436, "bg": 6473 },
- { "id": "corpse_mon_spider_jumping_giant", "fg": 6439 },
- { "id": "corpse_mon_spider_wolf_giant", "fg": 6440 },
- { "id": "mon_thing", "fg": 6445, "bg": 6471 },
+ "bg": 6507
+ },
+ { "id": "mon_mantis_small", "fg": 6555, "bg": 6507 },
+ { "id": "mon_mi_go_scout", "fg": 6557, "bg": 6507 },
+ { "id": "mon_spider_fungus", "fg": 6561, "bg": 6508 },
+ { "id": "mon_zombear_skeleton", "fg": 6565, "bg": 6507 },
+ { "id": "mon_zombie_brute_winged", "fg": 6571, "bg": 6506 },
+ { "id": "mon_zombie_dog_brute_acidic", "fg": 6572, "bg": 6507 },
+ { "id": "mon_zombie_smoker_fungus", "fg": 6578, "bg": 6508 },
+ { "id": "mon_zombull", "fg": 6579, "bg": 6507 },
+ { "id": "mon_nursebot_defective", "fg": 6581, "bg": 6508 },
+ { "id": "corpse_mon_spider_web", "fg": 6584 },
+ { "id": "corpse_mon_spider_wolf_giant", "fg": 6585 },
+ { "id": "mon_dermatik_incubator_spider", "fg": 6586, "bg": 6508 },
+ { "id": "corpse_mon_dermatik_incubator_spider", "fg": 6584 },
+ { "id": "mon_spider_cellar_mega", "fg": 6588, "bg": 6507 },
+ { "id": "mon_spider_jumping_mega", "fg": 6590, "bg": 6507 },
+ { "id": "mon_spider_trapdoor_mega", "fg": 6592, "bg": 6506 },
+ { "id": "mon_spider_widow_mega", "fg": 6596, "bg": 6506 },
+ { "id": "mon_spider_wolf_mega", "fg": 6598, "bg": 6506 },
+ { "id": "mon_thing", "fg": 6601, "bg": 6506 },
+ { "id": "mon_crows_m240", "fg": 6603, "bg": 6507 },
+ { "id": "mon_turret_bmg", "fg": 6604, "bg": 6507 },
+ { "id": "mon_turret_rifle", "fg": 6605, "bg": 6507 },
{
"id": [ "forest_thick", "special_forest_thick" ],
- "fg": [ { "weight": 4, "sprite": 6457 }, { "weight": 1, "sprite": 6458 } ],
- "bg": 6456,
+ "fg": [ { "weight": 4, "sprite": 6614 }, { "weight": 1, "sprite": 6615 } ],
+ "bg": 6626,
"rotates": false
},
- { "id": "bridgehead_ground", "fg": [ 6462, 6461, 6463, 6464 ], "bg": 6470, "rotates": true },
- { "id": "bridge", "fg": [ 6460, 6459, 6460, 6459 ], "bg": 6469, "rotates": true },
- { "id": "bridgehead_ramp", "fg": [ 6466, 6465, 6467, 6468 ], "rotates": true },
- { "id": "bridge_road", "fg": [ 6460, 6459, 6460, 6459 ], "rotates": true },
- { "id": "t_tree_young", "fg": 6479, "bg": 6476 },
- { "id": "t_tree_young_season_summer", "fg": 6478, "bg": 6477, "rotates": false },
+ { "id": "bridgehead_ground", "fg": [ 6619, 6618, 6620, 6621 ], "bg": 6628, "rotates": true },
+ { "id": "bridge", "fg": [ 6617, 6616, 6617, 6616 ], "bg": 6627, "rotates": true },
+ { "id": "bridgehead_ramp", "fg": [ 6623, 6622, 6624, 6625 ], "rotates": true },
+ { "id": "bridge_road", "fg": [ 6617, 6616, 6617, 6616 ], "rotates": true },
+ { "id": "t_tree_young", "fg": 6635, "bg": 6631 },
+ { "id": "t_tree_young_season_summer", "fg": 6634, "bg": 6632, "rotates": false },
{
"id": "t_tree_young_season_autumn",
- "fg": [ { "weight": 100, "sprite": 6480 }, { "weight": 100, "sprite": 6481 } ],
- "bg": 6475,
+ "fg": [ { "weight": 100, "sprite": 6636 }, { "weight": 100, "sprite": 6637 } ],
+ "bg": 6630,
"rotates": false
},
- { "id": "t_tree_young_season_winter", "fg": 6482, "bg": 6474, "rotates": false },
- { "id": "corpse_mon_zombie_spitter", "fg": 6352 },
- { "id": "f_magiclysm_translocator_gate", "fg": 6356 },
- { "id": "overlay_wielded_as50", "fg": 6450 },
- { "id": "overlay_wielded_bfg50", "fg": 6451 }
+ { "id": "t_tree_young_season_winter", "fg": 6638, "bg": 6629, "rotates": false },
+ { "id": "t_vat", "fg": 6639, "bg": 6633 },
+ { "id": "corpse_mon_zombie_spitter", "fg": 6496 },
+ { "id": "f_magiclysm_translocator_gate", "fg": 6500 },
+ { "id": "mon_mutant_arthropod", "fg": 6560 },
+ { "id": "overlay_wielded_as50", "fg": 6609 }
]
},
{
"file": "giant.png",
- "//": "range 6496 to 6543",
+ "//": "range 6640 to 6687",
"sprite_width": 96,
"sprite_height": 96,
"sprite_offset_x": -32,
"sprite_offset_y": -64,
"tiles": [
- { "id": "t_tree", "fg": 6506, "bg": 6499 },
- { "id": "t_tree_season_summer", "fg": 6501, "bg": 6500 },
+ { "id": "t_tree", "fg": 6650, "bg": 6643 },
+ { "id": "t_tree_season_summer", "fg": 6645, "bg": 6644 },
{
"id": "t_tree_season_autumn",
"fg": [
- { "weight": 100, "sprite": 6502 },
- { "weight": 100, "sprite": 6503 },
- { "weight": 100, "sprite": 6504 },
- { "weight": 100, "sprite": 6505 }
+ { "weight": 100, "sprite": 6646 },
+ { "weight": 100, "sprite": 6647 },
+ { "weight": 100, "sprite": 6648 },
+ { "weight": 100, "sprite": 6649 }
],
- "bg": 6498
+ "bg": 6642
},
- { "id": "t_tree_season_winter", "fg": 6530, "bg": 6497 },
- { "id": "t_tree_apple", "fg": 6507, "bg": 6499 },
- { "id": "t_tree_apple_season_summer", "fg": 6507, "bg": 6500 },
- { "id": "t_tree_apple_season_winter", "fg": 6512, "bg": 6497 },
+ { "id": "t_tree_season_winter", "fg": 6674, "bg": 6641 },
+ { "id": "t_tree_apple", "fg": 6651, "bg": 6643 },
+ { "id": "t_tree_apple_season_summer", "fg": 6651, "bg": 6644 },
+ { "id": "t_tree_apple_season_winter", "fg": 6656, "bg": 6641 },
{
"id": "t_tree_apple_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6508 }, { "weight": 1, "sprite": 6509 } ],
- "bg": 6498
+ "fg": [ { "weight": 1, "sprite": 6652 }, { "weight": 1, "sprite": 6653 } ],
+ "bg": 6642
},
{
"id": "t_tree_apple_harvested",
- "fg": [ { "weight": 1, "sprite": 6510 }, { "weight": 1, "sprite": 6511 } ],
- "bg": 6498
+ "fg": [ { "weight": 1, "sprite": 6654 }, { "weight": 1, "sprite": 6655 } ],
+ "bg": 6642
},
- { "id": "t_tree_beech", "fg": 6514, "bg": 6499 },
- { "id": "t_tree_beech_season_summer", "fg": 6515, "bg": 6500 },
- { "id": "t_tree_beech_season_autumn", "fg": 6513, "bg": 6498 },
- { "id": "t_tree_beech_season_winter", "fg": 6516, "bg": 6497 },
- { "id": "t_tree_birch", "fg": 6517, "bg": 6499 },
- { "id": "t_tree_birch_season_summer", "fg": 6517, "bg": 6500 },
- { "id": "t_tree_birch_season_winter", "fg": 6520, "bg": 6497 },
+ { "id": "t_tree_beech", "fg": 6658, "bg": 6643 },
+ { "id": "t_tree_beech_season_summer", "fg": 6659, "bg": 6644 },
+ { "id": "t_tree_beech_season_autumn", "fg": 6657, "bg": 6642 },
+ { "id": "t_tree_beech_season_winter", "fg": 6660, "bg": 6641 },
+ { "id": "t_tree_birch", "fg": 6661, "bg": 6643 },
+ { "id": "t_tree_birch_season_summer", "fg": 6661, "bg": 6644 },
+ { "id": "t_tree_birch_season_winter", "fg": 6664, "bg": 6641 },
{
"id": "t_tree_birch_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6518 }, { "weight": 1, "sprite": 6519 } ],
- "bg": 6498
+ "fg": [ { "weight": 1, "sprite": 6662 }, { "weight": 1, "sprite": 6663 } ],
+ "bg": 6642
},
- { "id": "t_tree_cherry", "fg": 6521, "bg": 6499 },
- { "id": "t_tree_cherry_season_summer", "fg": 6525, "bg": 6500 },
- { "id": "t_tree_cherry_harvested", "fg": 6524, "bg": 6500 },
- { "id": "t_tree_cherry_season_winter", "fg": 6526, "bg": 6497 },
+ { "id": "t_tree_cherry", "fg": 6665, "bg": 6643 },
+ { "id": "t_tree_cherry_season_summer", "fg": 6669, "bg": 6644 },
+ { "id": "t_tree_cherry_harvested", "fg": 6668, "bg": 6644 },
+ { "id": "t_tree_cherry_season_winter", "fg": 6670, "bg": 6641 },
{
"id": "t_tree_cherry_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6522 }, { "weight": 1, "sprite": 6523 } ],
- "bg": 6498
+ "fg": [ { "weight": 1, "sprite": 6666 }, { "weight": 1, "sprite": 6667 } ],
+ "bg": 6642
},
- { "id": "t_tree_cottonwood_season_spring", "fg": 6528, "bg": 6499 },
- { "id": "t_tree_cottonwood_season_summer", "fg": 6529, "bg": 6500 },
- { "id": "t_tree_cottonwood_season_autumn", "fg": 6527, "bg": 6498 },
- { "id": "t_tree_cottonwood_season_winter", "fg": 6530, "bg": 6497 },
+ { "id": "t_tree_cottonwood_season_spring", "fg": 6672, "bg": 6643 },
+ { "id": "t_tree_cottonwood_season_summer", "fg": 6673, "bg": 6644 },
+ { "id": "t_tree_cottonwood_season_autumn", "fg": 6671, "bg": 6642 },
+ { "id": "t_tree_cottonwood_season_winter", "fg": 6674, "bg": 6641 },
{
"id": "t_tree_dead",
- "fg": [ { "weight": 100, "sprite": 6530 }, { "weight": 100, "sprite": 7908 } ],
- "bg": 6499
+ "fg": [ { "weight": 100, "sprite": 6674 }, { "weight": 100, "sprite": 8116 } ],
+ "bg": 6643
},
{
"id": "t_tree_dead_season_summer",
- "fg": [ { "weight": 100, "sprite": 6530 }, { "weight": 100, "sprite": 7908 } ],
- "bg": 6500
+ "fg": [ { "weight": 100, "sprite": 6674 }, { "weight": 100, "sprite": 8116 } ],
+ "bg": 6644
},
{
"id": "t_tree_dead_season_autumn",
- "fg": [ { "weight": 100, "sprite": 6530 }, { "weight": 100, "sprite": 7908 } ],
- "bg": 6498
+ "fg": [ { "weight": 100, "sprite": 6674 }, { "weight": 100, "sprite": 8116 } ],
+ "bg": 6642
},
{
"id": "t_tree_dead_season_winter",
- "fg": [ { "weight": 100, "sprite": 6530 }, { "weight": 100, "sprite": 7908 } ],
- "bg": 6497
- },
- { "id": "t_tree_elm_season_spring", "fg": 6532, "bg": 6499 },
- { "id": "t_tree_elm_season_summer", "fg": 6533, "bg": 6500 },
- { "id": "t_tree_elm_season_autumn", "fg": 6531, "bg": 6498 },
- { "id": "t_tree_elm_season_winter", "fg": 6534, "bg": 6497 },
- { "id": "t_tree_maple", "fg": 6536, "bg": 6499 },
- { "id": "t_tree_maple_season_summer", "fg": 6537, "bg": 6500 },
- { "id": "t_tree_maple_season_autumn", "fg": 6535, "bg": 6498 },
- { "id": "t_tree_maple_season_winter", "fg": 6538, "bg": 6497 },
- { "id": "t_tree_peach_season_spring", "fg": 6539, "bg": 6499 },
- { "id": "t_tree_peach_season_summer", "fg": 6542, "bg": 6500 },
- { "id": "t_tree_peach_harvested", "fg": 6539, "bg": 6500 },
- { "id": "t_tree_peach_season_winter", "fg": 6543, "bg": 6497 },
+ "fg": [ { "weight": 100, "sprite": 6674 }, { "weight": 100, "sprite": 8116 } ],
+ "bg": 6641
+ },
+ { "id": "t_tree_elm_season_spring", "fg": 6676, "bg": 6643 },
+ { "id": "t_tree_elm_season_summer", "fg": 6677, "bg": 6644 },
+ { "id": "t_tree_elm_season_autumn", "fg": 6675, "bg": 6642 },
+ { "id": "t_tree_elm_season_winter", "fg": 6678, "bg": 6641 },
+ { "id": "t_tree_maple", "fg": 6680, "bg": 6643 },
+ { "id": "t_tree_maple_season_summer", "fg": 6681, "bg": 6644 },
+ { "id": "t_tree_maple_season_autumn", "fg": 6679, "bg": 6642 },
+ { "id": "t_tree_maple_season_winter", "fg": 6682, "bg": 6641 },
+ { "id": "t_tree_peach_season_spring", "fg": 6683, "bg": 6643 },
+ { "id": "t_tree_peach_season_summer", "fg": 6686, "bg": 6644 },
+ { "id": "t_tree_peach_harvested", "fg": 6683, "bg": 6644 },
+ { "id": "t_tree_peach_season_winter", "fg": 6687, "bg": 6641 },
{
"id": "t_tree_peach_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6540 }, { "weight": 1, "sprite": 6541 } ],
- "bg": 6498
+ "fg": [ { "weight": 1, "sprite": 6684 }, { "weight": 1, "sprite": 6685 } ],
+ "bg": 6642
}
]
},
{
"file": "incomplete.png",
- "//": "range 6544 to 7343",
+ "//": "range 6688 to 7487",
"tiles": [
- { "id": "unknown", "fg": 6544 },
+ { "id": "unknown", "fg": 6688 },
{
"id": "fd_blood",
- "fg": 6576,
+ "fg": 6720,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 6545 },
- { "id": "corner", "fg": [ 6547, 6549, 6548, 6546 ] },
- { "id": "t_connection", "fg": [ 6573, 6575, 6574, 6572 ] },
- { "id": "edge", "fg": [ 6551, 6550 ] },
- { "id": "end_piece", "fg": [ 6553, 6555, 6554, 6552 ] },
- { "id": "unconnected", "fg": [ 6576, 6576 ] }
+ { "id": "center", "fg": 6689 },
+ { "id": "corner", "fg": [ 6691, 6693, 6692, 6690 ] },
+ { "id": "t_connection", "fg": [ 6717, 6719, 6718, 6716 ] },
+ { "id": "edge", "fg": [ 6695, 6694 ] },
+ { "id": "end_piece", "fg": [ 6697, 6699, 6698, 6696 ] },
+ { "id": "unconnected", "fg": [ 6720, 6720 ] }
]
},
{
"id": [ "fd_blood_insect", "fd_blood_invertebrate" ],
- "fg": 6571,
+ "fg": 6715,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 6556 },
- { "id": "corner", "fg": [ 6558, 6560, 6559, 6557 ] },
- { "id": "t_connection", "fg": [ 6568, 6570, 6569, 6567 ] },
- { "id": "edge", "fg": [ 6562, 6561 ] },
- { "id": "end_piece", "fg": [ 6564, 6566, 6565, 6563 ] },
- { "id": "unconnected", "fg": [ 6571, 6571 ] }
+ { "id": "center", "fg": 6700 },
+ { "id": "corner", "fg": [ 6702, 6704, 6703, 6701 ] },
+ { "id": "t_connection", "fg": [ 6712, 6714, 6713, 6711 ] },
+ { "id": "edge", "fg": [ 6706, 6705 ] },
+ { "id": "end_piece", "fg": [ 6708, 6710, 6709, 6707 ] },
+ { "id": "unconnected", "fg": [ 6715, 6715 ] }
]
},
- { "id": "fd_electricity", "fg": [ { "weight": 100, "sprite": 6577 }, { "weight": 100, "sprite": 6578 } ] },
+ { "id": "fd_electricity", "fg": [ { "weight": 100, "sprite": 6721 }, { "weight": 100, "sprite": 6722 } ] },
{
"id": "fd_web",
"fg": [
- { "weight": 100, "sprite": 6579 },
- { "weight": 100, "sprite": 6580 },
- { "weight": 25, "sprite": 6581 },
- { "weight": 25, "sprite": 6582 }
- ]
- },
- { "id": "fd_smoke", "fg": 6585 },
- { "id": "fd_fungal_haze", "fg": 6584 },
- { "id": "fd_nuke_gas", "fg": 6583 },
- { "id": "fd_spotlight", "fg": 6586 },
- { "id": "f_makeshift_bed", "fg": 6589 },
- { "id": "f_straw_bed", "fg": 6590 },
- { "id": "f_bed_frame", "fg": 6587 },
- { "id": "f_camp_chair", "fg": 6594 },
- { "id": "f_lane", "fg": 6595 },
- { "id": "f_piano", "fg": 6596 },
- { "id": "f_pinball_machine", "fg": 6597 },
- { "id": "f_seat_airplane", "fg": 6598 },
+ { "weight": 100, "sprite": 6723 },
+ { "weight": 100, "sprite": 6724 },
+ { "weight": 25, "sprite": 6725 },
+ { "weight": 25, "sprite": 6726 }
+ ]
+ },
+ { "id": "fd_smoke", "fg": 6729 },
+ { "id": "fd_fungal_haze", "fg": 6728 },
+ { "id": "fd_nuke_gas", "fg": 6727 },
+ { "id": "fd_spotlight", "fg": 6730 },
+ { "id": "f_makeshift_bed", "fg": 6733 },
+ { "id": "f_straw_bed", "fg": 6734 },
+ { "id": "f_bed_frame", "fg": 6731 },
+ { "id": "f_camp_chair", "fg": 6738 },
+ { "id": "f_lane", "fg": 6739 },
+ { "id": "f_piano", "fg": 6740 },
+ { "id": "f_pinball_machine", "fg": 6741 },
+ { "id": "f_seat_airplane", "fg": 6742 },
{
"id": "f_sink",
"multitile": true,
- "fg": 6614,
- "additional_tiles": [
- { "id": "center", "fg": 6599 },
- { "id": "corner", "fg": [ 6601, 6603, 6602, 6600 ] },
- { "id": "t_connection", "fg": [ 6611, 6613, 6612, 6610 ] },
- { "id": "edge", "fg": [ 6605, 6604 ] },
- { "id": "end_piece", "fg": [ 6607, 6609, 6608, 6606 ] },
- { "id": "unconnected", "fg": 6614 }
- ]
- },
- { "id": "f_solar_unit", "fg": 6615 },
- { "id": "f_speaker_cabinet", "fg": 6616 },
- { "id": "f_water_mill", "fg": 6617 },
- { "id": "water_mill", "fg": 6618 },
- { "id": "f_water_purifier", "fg": 6619 },
- { "id": "f_wood_keg", "fg": 6757 },
- { "id": "30gal_barrel", "fg": 6620 },
- { "id": "30gal_drum", "fg": 6621 },
- { "id": "alarmclock", "fg": 6622 },
- { "id": "clock", "fg": 6622 },
- { "id": "anvil", "fg": 6626 },
- { "id": [ "autoclave", "vh_autoclave" ], "fg": 6627 },
- { "id": "bag_canvas_small", "fg": 6629 },
- { "id": "bathroom_scale", "fg": 6630 },
- { "id": "bead_necklace", "fg": 6631 },
- { "id": "bubblewrap", "fg": 6633 },
- { "id": "bucket", "fg": 6634 },
- { "id": "camera_pro", "fg": 6640 },
- { "id": "condom", "fg": 6641 },
- { "id": "craft", "fg": 6642 },
- { "id": "pomegranate", "fg": 6653 },
- { "id": "peach", "fg": 6651 },
- { "id": "strawberries", "fg": 6654 },
- { "id": "cabbage", "fg": 6643 },
- { "id": "mango", "fg": 6649 },
- { "id": "kiwi", "fg": 6648 },
- { "id": "papaya", "fg": 6650 },
- { "id": "grapefruit", "fg": 6647 },
- { "id": "pineapple", "fg": 6652 },
- { "id": "celery", "fg": 6645 },
- { "id": "chili_pepper", "fg": 6646 },
- { "id": "carrot", "fg": 6644 },
- { "id": "zucchini", "fg": 6655 },
- { "id": "akmag30", "fg": 6656 },
- { "id": "duct_tape", "fg": 6657 },
- { "id": "electric_lantern", "fg": 6658 },
- { "id": "extinguisher", "fg": 6659 },
- { "id": "sm_extinguisher", "fg": 6660 },
- { "id": "fan", "fg": 6661 },
+ "fg": 6758,
+ "additional_tiles": [
+ { "id": "center", "fg": 6743 },
+ { "id": "corner", "fg": [ 6745, 6747, 6746, 6744 ] },
+ { "id": "t_connection", "fg": [ 6755, 6757, 6756, 6754 ] },
+ { "id": "edge", "fg": [ 6749, 6748 ] },
+ { "id": "end_piece", "fg": [ 6751, 6753, 6752, 6750 ] },
+ { "id": "unconnected", "fg": 6758 }
+ ]
+ },
+ { "id": "f_solar_unit", "fg": 6759 },
+ { "id": "f_speaker_cabinet", "fg": 6760 },
+ { "id": "f_water_mill", "fg": 6761 },
+ { "id": "water_mill", "fg": 6762 },
+ { "id": "f_water_purifier", "fg": 6763 },
+ { "id": "f_wood_keg", "fg": 6901 },
+ { "id": "30gal_barrel", "fg": 6764 },
+ { "id": "30gal_drum", "fg": 6765 },
+ { "id": "alarmclock", "fg": 6766 },
+ { "id": "clock", "fg": 6766 },
+ { "id": "anvil", "fg": 6770 },
+ { "id": [ "autoclave", "vh_autoclave" ], "fg": 6771 },
+ { "id": "bag_canvas_small", "fg": 6773 },
+ { "id": "bathroom_scale", "fg": 6774 },
+ { "id": "bead_necklace", "fg": 6775 },
+ { "id": "bubblewrap", "fg": 6777 },
+ { "id": "bucket", "fg": 6778 },
+ { "id": "camera_pro", "fg": 6784 },
+ { "id": "condom", "fg": 6785 },
+ { "id": "craft", "fg": 6786 },
+ { "id": "pomegranate", "fg": 6797 },
+ { "id": "peach", "fg": 6795 },
+ { "id": "strawberries", "fg": 6798 },
+ { "id": "cabbage", "fg": 6787 },
+ { "id": "mango", "fg": 6793 },
+ { "id": "kiwi", "fg": 6792 },
+ { "id": "papaya", "fg": 6794 },
+ { "id": "grapefruit", "fg": 6791 },
+ { "id": "pineapple", "fg": 6796 },
+ { "id": "celery", "fg": 6789 },
+ { "id": "chili_pepper", "fg": 6790 },
+ { "id": "carrot", "fg": 6788 },
+ { "id": "zucchini", "fg": 6799 },
+ { "id": "akmag30", "fg": 6800 },
+ { "id": "duct_tape", "fg": 6801 },
+ { "id": "electric_lantern", "fg": 6802 },
+ { "id": "extinguisher", "fg": 6803 },
+ { "id": "sm_extinguisher", "fg": 6804 },
+ { "id": "fan", "fg": 6805 },
{
"id": [
"family_photo",
@@ -9106,19 +9313,19 @@
"battleship",
"clue"
],
- "fg": 6662
- },
- { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 6663 },
- { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 6665 },
- { "id": "glock17_17", "fg": 6667 },
- { "id": "holy_symbol", "fg": 6668 },
- { "id": "holy_symbol_wood", "fg": 6669 },
- { "id": "hotplate", "fg": 6670 },
- { "id": "jerrycan", "fg": 6671 },
- { "id": "jerrycan_big", "fg": 6672 },
- { "id": "keg", "fg": 6673 },
- { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 6687 },
- { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 6680 },
+ "fg": 6806
+ },
+ { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 6807 },
+ { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 6809 },
+ { "id": "glock17_17", "fg": 6811 },
+ { "id": "holy_symbol", "fg": 6812 },
+ { "id": "holy_symbol_wood", "fg": 6813 },
+ { "id": "hotplate", "fg": 6814 },
+ { "id": "jerrycan", "fg": 6815 },
+ { "id": "jerrycan_big", "fg": 6816 },
+ { "id": "keg", "fg": 6817 },
+ { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 6831 },
+ { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 6824 },
{
"id": [
"nyquil",
@@ -9270,7 +9477,7 @@
"wine_chardonnay",
"drink_martini"
],
- "fg": 6690
+ "fg": 6834
},
{
"id": [
@@ -9311,7 +9518,7 @@
"soup_tomato",
"young_yeast"
],
- "fg": 6692
+ "fg": 6836
},
{
"id": [
@@ -9333,57 +9540,57 @@
"hi_q_distillate_tails",
"hi_q_distillate"
],
- "fg": 6691
- },
- { "id": "longsword", "fg": 6693 },
- { "id": "longsword_inferior", "fg": 6695 },
- { "id": "longsword_fake", "fg": 6694 },
- { "id": "mask_gas", "fg": 6696 },
- { "id": "plastic_chunk", "fg": 6697 },
- { "id": "scrap_copper", "fg": 6698 },
- { "id": "oil_lamp", "fg": 6699 },
- { "id": "pickaxe", "fg": 6700 },
- { "id": "pitchfork", "fg": 6701 },
- { "id": "plunger_futuristic", "fg": 6702 },
- { "id": "plunger_toilet", "fg": 6703 },
- { "id": "pocketwatch", "fg": 6704 },
- { "id": "bacon", "fg": 6705 },
- { "id": "porkbelly", "fg": 6706 },
- { "id": "raw_cured_fatty_meat", "fg": 6707 },
- { "id": "raw_curing_fatty_meat", "fg": 6708 },
- { "id": "material_sand", "fg": 6735 },
- { "id": "material_soil", "fg": 6737 },
- { "id": "chem_aluminium_powder", "fg": 6709 },
- { "id": "chem_aluminium_sulphate", "fg": 6710 },
- { "id": "chem_ammonium_nitrate", "fg": 6711 },
- { "id": "chem_black_powder", "fg": 6712 },
- { "id": "cac2powder", "fg": 6713 },
- { "id": "chilly-p", "fg": 6714 },
- { "id": "meal_chitin_piece", "fg": 6715 },
- { "id": "chem_chromium_oxide", "fg": 6716 },
- { "id": "coffee_raw", "fg": 6717 },
- { "id": "curry_powder", "fg": 6718 },
- { "id": "powder_eggs", "fg": 6719 },
- { "id": "fungicide", "fg": 6720 },
- { "id": "insecticide", "fg": 6722 },
- { "id": "chem_hmtd", "fg": 6721 },
- { "id": "lemonade_powder", "fg": 6723 },
- { "id": "lye_powder", "fg": 6724 },
- { "id": "magnesium", "fg": 6725 },
- { "id": "chem_manganese_dioxide", "fg": 6726 },
- { "id": "chem_match_head_powder", "fg": 6727 },
- { "id": "mustard_powder", "fg": 6728 },
- { "id": "oxy_powder", "fg": 6729 },
- { "id": "chem_peptone_broth", "fg": 6730 },
- { "id": "protein_powder", "fg": 6731 },
- { "id": "material_quicklime", "fg": 6732 },
- { "id": "chem_rocket_fuel", "fg": 6733 },
- { "id": "chem_saltpetre", "fg": 6734 },
- { "id": "gunpowder", "fg": 6736 },
- { "id": "chem_thermite", "fg": 6738 },
- { "id": "tin", "fg": 6739 },
- { "id": "yeast", "fg": 6741 },
- { "id": "chem_zinc_powder", "fg": 6742 },
+ "fg": 6835
+ },
+ { "id": "longsword", "fg": 6837 },
+ { "id": "longsword_inferior", "fg": 6839 },
+ { "id": "longsword_fake", "fg": 6838 },
+ { "id": "mask_gas", "fg": 6840 },
+ { "id": "plastic_chunk", "fg": 6841 },
+ { "id": "scrap_copper", "fg": 6842 },
+ { "id": "oil_lamp", "fg": 6843 },
+ { "id": "pickaxe", "fg": 6844 },
+ { "id": "pitchfork", "fg": 6845 },
+ { "id": "plunger_futuristic", "fg": 6846 },
+ { "id": "plunger_toilet", "fg": 6847 },
+ { "id": "pocketwatch", "fg": 6848 },
+ { "id": "bacon", "fg": 6849 },
+ { "id": "porkbelly", "fg": 6850 },
+ { "id": "raw_cured_fatty_meat", "fg": 6851 },
+ { "id": "raw_curing_fatty_meat", "fg": 6852 },
+ { "id": "material_sand", "fg": 6879 },
+ { "id": "material_soil", "fg": 6881 },
+ { "id": "chem_aluminium_powder", "fg": 6853 },
+ { "id": "chem_aluminium_sulphate", "fg": 6854 },
+ { "id": "chem_ammonium_nitrate", "fg": 6855 },
+ { "id": "chem_black_powder", "fg": 6856 },
+ { "id": "cac2powder", "fg": 6857 },
+ { "id": "chilly-p", "fg": 6858 },
+ { "id": "meal_chitin_piece", "fg": 6859 },
+ { "id": "chem_chromium_oxide", "fg": 6860 },
+ { "id": "coffee_raw", "fg": 6861 },
+ { "id": "curry_powder", "fg": 6862 },
+ { "id": "powder_eggs", "fg": 6863 },
+ { "id": "fungicide", "fg": 6864 },
+ { "id": "insecticide", "fg": 6866 },
+ { "id": "chem_hmtd", "fg": 6865 },
+ { "id": "lemonade_powder", "fg": 6867 },
+ { "id": "lye_powder", "fg": 6868 },
+ { "id": "magnesium", "fg": 6869 },
+ { "id": "chem_manganese_dioxide", "fg": 6870 },
+ { "id": "chem_match_head_powder", "fg": 6871 },
+ { "id": "mustard_powder", "fg": 6872 },
+ { "id": "oxy_powder", "fg": 6873 },
+ { "id": "chem_peptone_broth", "fg": 6874 },
+ { "id": "protein_powder", "fg": 6875 },
+ { "id": "material_quicklime", "fg": 6876 },
+ { "id": "chem_rocket_fuel", "fg": 6877 },
+ { "id": "chem_saltpetre", "fg": 6878 },
+ { "id": "gunpowder", "fg": 6880 },
+ { "id": "chem_thermite", "fg": 6882 },
+ { "id": "tin", "fg": 6883 },
+ { "id": "yeast", "fg": 6885 },
+ { "id": "chem_zinc_powder", "fg": 6886 },
{
"id": [
"sugar",
@@ -9396,150 +9603,150 @@
"quikclot",
"chem_acrylamide"
],
- "fg": 6740
- },
- { "id": "radio", "fg": 6743 },
- { "id": "ref_lighter", "fg": 6744 },
- { "id": "rhubarb", "fg": 6745 },
- { "id": "rope_6", "fg": 6746 },
- { "id": "spray_can", "fg": 6747 },
- { "id": "stanag30", "fg": 6748 },
- { "id": "stepladder", "fg": 6749 },
- { "id": "stereo", "fg": 6750 },
- { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 6751 },
- { "id": "waffleiron", "fg": 6752 },
- { "id": "warhammer", "fg": 6753 },
- { "id": "welding_mask", "fg": 6754 },
- { "id": "wind_mill", "fg": 6755 },
- { "id": "wood_beam", "fg": 6756 },
- { "id": "wooden_barrel", "fg": 6757 },
- { "id": "zweihander", "fg": 6758 },
- { "id": "zweihander_inferior", "fg": 6760 },
- { "id": "zweihander_fake", "fg": 6759 },
- { "id": "bot_grenade_hack", "fg": 6763 },
- { "id": "bot_mininuke_hack", "fg": 6764 },
- { "id": "infrared_creature", "fg": 6776 },
+ "fg": 6884
+ },
+ { "id": "radio", "fg": 6887 },
+ { "id": "ref_lighter", "fg": 6888 },
+ { "id": "rhubarb", "fg": 6889 },
+ { "id": "rope_6", "fg": 6890 },
+ { "id": "spray_can", "fg": 6891 },
+ { "id": "stanag30", "fg": 6892 },
+ { "id": "stepladder", "fg": 6893 },
+ { "id": "stereo", "fg": 6894 },
+ { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 6895 },
+ { "id": "waffleiron", "fg": 6896 },
+ { "id": "warhammer", "fg": 6897 },
+ { "id": "welding_mask", "fg": 6898 },
+ { "id": "wind_mill", "fg": 6899 },
+ { "id": "wood_beam", "fg": 6900 },
+ { "id": "wooden_barrel", "fg": 6901 },
+ { "id": "zweihander", "fg": 6902 },
+ { "id": "zweihander_inferior", "fg": 6904 },
+ { "id": "zweihander_fake", "fg": 6903 },
+ { "id": "bot_grenade_hack", "fg": 6907 },
+ { "id": "bot_mininuke_hack", "fg": 6908 },
+ { "id": "infrared_creature", "fg": 6919 },
{
"id": "weather_rain_drop",
"fg": [
- { "weight": 100, "sprite": 6778 },
- { "weight": 100, "sprite": 6780 },
- { "weight": 100, "sprite": 6781 },
- { "weight": 100, "sprite": 6782 },
- { "weight": 100, "sprite": 6783 },
- { "weight": 100, "sprite": 6784 },
- { "weight": 100, "sprite": 6785 },
- { "weight": 100, "sprite": 6786 },
- { "weight": 100, "sprite": 6787 },
- { "weight": 100, "sprite": 6779 }
- ]
- },
- { "id": "weather_snowflake", "fg": 6788 },
- { "id": "weather_acid_drop", "fg": 6777 },
- { "id": [ "t_card_science", "t_card_robofac" ], "fg": 6794 },
- { "id": "t_card_reader_broken", "fg": 6793 },
- { "id": "t_card_military", "fg": 6792 },
- { "id": "t_card_industrial", "fg": 6791 },
- { "id": "t_card_fp", "fg": 6790 },
- { "id": "t_floor_red", "fg": 6797 },
- { "id": "t_floor_green", "fg": 6796 },
- { "id": "t_floor_blue", "fg": 6795 },
- { "id": [ "t_searth_test", "t_searth" ], "fg": 6798 },
- { "id": "t_current_trans", "fg": 6799, "bg": 5420 },
- { "id": "t_potential_trans", "fg": 6800, "bg": 5420 },
- { "id": "graffiti", "fg": 6801 },
- { "id": "t_floor_olight", "fg": 6802, "bg": 4791 },
- { "id": "t_thconc_floor_olight", "fg": 6802, "bg": 5474 },
- { "id": "t_metal_floor_olight", "fg": 6802, "bg": 5029 },
- { "id": "t_pedestal_wyrm", "fg": 6804, "bg": 5228 },
+ { "weight": 100, "sprite": 6921 },
+ { "weight": 100, "sprite": 6923 },
+ { "weight": 100, "sprite": 6924 },
+ { "weight": 100, "sprite": 6925 },
+ { "weight": 100, "sprite": 6926 },
+ { "weight": 100, "sprite": 6927 },
+ { "weight": 100, "sprite": 6928 },
+ { "weight": 100, "sprite": 6929 },
+ { "weight": 100, "sprite": 6930 },
+ { "weight": 100, "sprite": 6922 }
+ ]
+ },
+ { "id": "weather_snowflake", "fg": 6931 },
+ { "id": "weather_acid_drop", "fg": 6920 },
+ { "id": [ "t_card_science", "t_card_robofac" ], "fg": 6937 },
+ { "id": "t_card_reader_broken", "fg": 6936 },
+ { "id": "t_card_military", "fg": 6935 },
+ { "id": "t_card_industrial", "fg": 6934 },
+ { "id": "t_card_fp", "fg": 6933 },
+ { "id": "t_floor_red", "fg": 6940 },
+ { "id": "t_floor_green", "fg": 6939 },
+ { "id": "t_floor_blue", "fg": 6938 },
+ { "id": [ "t_searth_test", "t_searth" ], "fg": 6941 },
+ { "id": "t_current_trans", "fg": 6942, "bg": 5586 },
+ { "id": "t_potential_trans", "fg": 6943, "bg": 5586 },
+ { "id": "graffiti", "fg": 6944 },
+ { "id": "t_floor_olight", "fg": 6945, "bg": 4954 },
+ { "id": "t_thconc_floor_olight", "fg": 6945, "bg": 5640 },
+ { "id": "t_metal_floor_olight", "fg": 6945, "bg": 5194 },
+ { "id": "t_pedestal_wyrm", "fg": 6947, "bg": 5394 },
{
"id": "t_pedestal_temple",
- "fg": [ { "weight": 100, "sprite": 6805 }, { "weight": 100, "sprite": 6803 } ],
- "bg": 4703
+ "fg": [ { "weight": 100, "sprite": 6948 }, { "weight": 100, "sprite": 6946 } ],
+ "bg": 4866
},
{
"id": "t_pedestal_temple_season_winter",
- "fg": [ { "weight": 100, "sprite": 6805 }, { "weight": 100, "sprite": 6803 } ],
- "bg": 4358
+ "fg": [ { "weight": 100, "sprite": 6948 }, { "weight": 100, "sprite": 6946 } ],
+ "bg": 4521
},
- { "id": "t_zebra", "fg": 6806 },
- { "id": "t_zebra_season_winter", "fg": 4357 },
+ { "id": "t_zebra", "fg": 6949 },
+ { "id": "t_zebra_season_winter", "fg": 4520 },
{
"id": [ "t_metal_railing", "t_concrete_railing", "t_glass_railing" ],
"multitile": true,
- "fg": 5164,
- "bg": 4561,
- "additional_tiles": [
- { "id": "center", "bg": 4561, "fg": 5149 },
- { "id": "corner", "bg": 4561, "fg": [ 5151, 5153, 5152, 5150 ] },
- { "id": "t_connection", "bg": 4561, "fg": [ 5161, 5163, 5162, 5160 ] },
- { "id": "edge", "bg": 4561, "fg": [ 5155, 5154 ] },
- { "id": "end_piece", "bg": 4561, "fg": [ 5157, 5159, 5158, 5156 ] },
- { "bg": 4561, "id": "unconnected", "fg": [ 5164, 5164 ] }
- ]
- },
- { "id": "t_chaingate_c", "fg": 6808, "bg": 5096 },
- { "id": "t_chaingate_l", "fg": 6809, "bg": 5096 },
- { "id": "t_chaingate_o", "fg": 6810, "bg": 5096 },
- { "id": "t_chainfence_posts", "fg": 6807, "bg": 5096 },
- { "id": "t_chaingate_c_season_winter", "fg": 6808, "bg": 4358 },
- { "id": "t_chaingate_l_season_winter", "fg": 6809, "bg": 4358 },
- { "id": "t_chaingate_o_season_winter", "fg": 6810, "bg": 4358 },
- { "id": "t_chainfence_posts_season_winter", "fg": 6807, "bg": 4358 },
- { "id": "t_console", "fg": 6811 },
- { "id": "t_console_broken", "fg": 6812 },
- { "id": "t_dirtmound", "fg": 6813, "bg": 4894 },
- { "id": "t_dirtmound_season_summer", "fg": 6813, "bg": 4904 },
- { "id": "t_dirtmound_season_autumn", "fg": 6813, "bg": 4899 },
- { "id": "t_dirtmound_season_winter", "fg": 6814 },
- { "id": "t_door_metal_c", "fg": 6815 },
- { "id": "t_door_metal_o", "fg": 6816 },
- { "id": "t_fern", "fg": 6817, "bg": 4894 },
- { "id": "t_fern_harvested", "fg": 6818, "bg": 4894 },
- { "id": "t_fern_season_summer", "fg": 6817, "bg": 4904 },
- { "id": "t_fern_harvested_season_summer", "fg": 6818, "bg": 4904 },
- { "id": "t_fern_season_autumn", "fg": 6817, "bg": 4899 },
- { "id": "t_fern_harvested_season_autumn", "fg": 6818, "bg": 4899 },
- { "id": "t_fern_season_winter", "fg": 6817, "bg": 4356 },
- { "id": "t_fern_harvested_season_winter", "fg": 6818, "bg": 4356 },
+ "fg": 5330,
+ "bg": 4724,
+ "additional_tiles": [
+ { "id": "center", "bg": 4724, "fg": 5315 },
+ { "id": "corner", "bg": 4724, "fg": [ 5317, 5319, 5318, 5316 ] },
+ { "id": "t_connection", "bg": 4724, "fg": [ 5327, 5329, 5328, 5326 ] },
+ { "id": "edge", "bg": 4724, "fg": [ 5321, 5320 ] },
+ { "id": "end_piece", "bg": 4724, "fg": [ 5323, 5325, 5324, 5322 ] },
+ { "bg": 4724, "id": "unconnected", "fg": [ 5330, 5330 ] }
+ ]
+ },
+ { "id": "t_chaingate_c", "fg": 6951, "bg": 5262 },
+ { "id": "t_chaingate_l", "fg": 6952, "bg": 5262 },
+ { "id": "t_chaingate_o", "fg": 6953, "bg": 5262 },
+ { "id": "t_chainfence_posts", "fg": 6950, "bg": 5262 },
+ { "id": "t_chaingate_c_season_winter", "fg": 6951, "bg": 4521 },
+ { "id": "t_chaingate_l_season_winter", "fg": 6952, "bg": 4521 },
+ { "id": "t_chaingate_o_season_winter", "fg": 6953, "bg": 4521 },
+ { "id": "t_chainfence_posts_season_winter", "fg": 6950, "bg": 4521 },
+ { "id": "t_console", "fg": 6954 },
+ { "id": "t_console_broken", "fg": 6955 },
+ { "id": "t_dirtmound", "fg": 6956, "bg": 5057 },
+ { "id": "t_dirtmound_season_summer", "fg": 6956, "bg": 5067 },
+ { "id": "t_dirtmound_season_autumn", "fg": 6956, "bg": 5062 },
+ { "id": "t_dirtmound_season_winter", "fg": 6957 },
+ { "id": "t_door_metal_c", "fg": 6958 },
+ { "id": "t_door_metal_o", "fg": 6959 },
+ { "id": "t_fern", "fg": 6960, "bg": 5057 },
+ { "id": "t_fern_harvested", "fg": 6961, "bg": 5057 },
+ { "id": "t_fern_season_summer", "fg": 6960, "bg": 5067 },
+ { "id": "t_fern_harvested_season_summer", "fg": 6961, "bg": 5067 },
+ { "id": "t_fern_season_autumn", "fg": 6960, "bg": 5062 },
+ { "id": "t_fern_harvested_season_autumn", "fg": 6961, "bg": 5062 },
+ { "id": "t_fern_season_winter", "fg": 6960, "bg": 4519 },
+ { "id": "t_fern_harvested_season_winter", "fg": 6961, "bg": 4519 },
{
"id": [ "t_junk_palisade", "t_junk_wall" ],
"fg": [
- { "weight": 100, "sprite": 6819 },
- { "weight": 100, "sprite": 6820 },
- { "weight": 100, "sprite": 6821 },
- { "weight": 100, "sprite": 6822 }
+ { "weight": 100, "sprite": 6962 },
+ { "weight": 100, "sprite": 6963 },
+ { "weight": 100, "sprite": 6964 },
+ { "weight": 100, "sprite": 6965 }
]
},
{
"id": "t_paper",
- "fg": 6838,
+ "fg": 6981,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 6823 },
- { "id": "corner", "fg": [ 6825, 6827, 6826, 6824 ] },
- { "id": "t_connection", "fg": [ 6835, 6837, 6836, 6834 ] },
- { "id": "edge", "fg": [ 6829, 6828 ] },
- { "id": "end_piece", "fg": [ 6831, 6833, 6832, 6830 ] },
- { "id": "unconnected", "fg": [ 6838, 6838 ] }
+ { "id": "center", "fg": 6966 },
+ { "id": "corner", "fg": [ 6968, 6970, 6969, 6967 ] },
+ { "id": "t_connection", "fg": [ 6978, 6980, 6979, 6977 ] },
+ { "id": "edge", "fg": [ 6972, 6971 ] },
+ { "id": "end_piece", "fg": [ 6974, 6976, 6975, 6973 ] },
+ { "id": "unconnected", "fg": [ 6981, 6981 ] }
]
},
{
"id": "t_pit_covered",
- "fg": 6840,
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ]
+ "fg": 6983,
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ]
},
{
"id": "t_pit_covered_season_summer",
- "fg": 6840,
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": 6983,
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
},
{
"id": "t_pit_covered_season_autumn",
- "fg": 6840,
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": 6983,
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
},
- { "id": "t_pit_covered_season_winter", "fg": 6840, "bg": 4358 },
+ { "id": "t_pit_covered_season_winter", "fg": 6983, "bg": 4521 },
{
"id": [
"t_railroad_track",
@@ -9557,447 +9764,447 @@
"t_railroad_track_v_on_tie",
"t_railroad_track_d_on_tie"
],
- "fg": 6856,
+ "fg": 6999,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 6841, "bg": 5165 },
- { "id": "corner", "fg": [ 6843, 6845, 6844, 6842 ], "bg": 5165 },
- { "id": "t_connection", "fg": [ 6853, 6855, 6854, 6852 ], "bg": 5165 },
- { "id": "edge", "fg": [ 6847, 6846 ], "bg": 5165 },
- { "id": "end_piece", "fg": [ 6849, 6851, 6850, 6848 ], "bg": 5165 },
- { "id": "unconnected", "fg": [ 6856, 6856 ], "bg": 5165 }
+ { "id": "center", "fg": 6984, "bg": 5331 },
+ { "id": "corner", "fg": [ 6986, 6988, 6987, 6985 ], "bg": 5331 },
+ { "id": "t_connection", "fg": [ 6996, 6998, 6997, 6995 ], "bg": 5331 },
+ { "id": "edge", "fg": [ 6990, 6989 ], "bg": 5331 },
+ { "id": "end_piece", "fg": [ 6992, 6994, 6993, 6991 ], "bg": 5331 },
+ { "id": "unconnected", "fg": [ 6999, 6999 ], "bg": 5331 }
],
- "bg": 5165
+ "bg": 5331
},
- { "id": "t_reinforced_glass_shutter", "fg": 6857 },
- { "id": "t_reinforced_glass_shutter_open", "fg": 6858 },
+ { "id": "t_reinforced_glass_shutter", "fg": 7000 },
+ { "id": "t_reinforced_glass_shutter_open", "fg": 7001 },
{
"id": "t_sandbox",
- "fg": 6874,
+ "fg": 7017,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 6859 },
- { "id": "corner", "fg": [ 6861, 6863, 6862, 6860 ] },
- { "id": "t_connection", "fg": [ 6871, 6873, 6872, 6870 ] },
- { "id": "edge", "fg": [ 6865, 6864 ] },
- { "id": "end_piece", "fg": [ 6867, 6869, 6868, 6866 ] },
- { "id": "unconnected", "fg": [ 6874, 6874 ] }
+ { "id": "center", "fg": 7002 },
+ { "id": "corner", "fg": [ 7004, 7006, 7005, 7003 ] },
+ { "id": "t_connection", "fg": [ 7014, 7016, 7015, 7013 ] },
+ { "id": "edge", "fg": [ 7008, 7007 ] },
+ { "id": "end_piece", "fg": [ 7010, 7012, 7011, 7009 ] },
+ { "id": "unconnected", "fg": [ 7017, 7017 ] }
]
},
- { "id": "t_slot_machine", "fg": 6875, "bg": 4791 },
- { "id": "t_strconc_wall", "fg": 6876 },
+ { "id": "t_slot_machine", "fg": 7018, "bg": 4954 },
+ { "id": "t_strconc_wall", "fg": 7019 },
{
"id": "t_trunk",
"multitile": true,
- "fg": [ 6878, 6877 ],
- "bg": [ { "weight": 100, "sprite": 4894 }, { "weight": 100, "sprite": 4896 } ]
+ "fg": [ 7021, 7020 ],
+ "bg": [ { "weight": 100, "sprite": 5057 }, { "weight": 100, "sprite": 5059 } ]
},
{
"id": "t_trunk_season_summer",
"multitile": true,
- "fg": [ 6878, 6877 ],
- "bg": [ { "weight": 100, "sprite": 4904 }, { "weight": 100, "sprite": 4906 } ]
+ "fg": [ 7021, 7020 ],
+ "bg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5069 } ]
},
{
"id": "t_trunk_season_autumn",
"multitile": true,
- "fg": [ 6878, 6877 ],
- "bg": [ { "weight": 100, "sprite": 4899 }, { "weight": 100, "sprite": 4901 } ]
+ "fg": [ 7021, 7020 ],
+ "bg": [ { "weight": 100, "sprite": 5062 }, { "weight": 100, "sprite": 5064 } ]
},
- { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 6878, 6877 ], "bg": 4358 },
- { "id": "t_wall_half", "fg": 6879, "bg": 4791 },
+ { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7021, 7020 ], "bg": 4521 },
+ { "id": "t_wall_half", "fg": 7022, "bg": 4954 },
{
"id": "t_wax",
- "fg": 6895,
+ "fg": 7038,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 6880 },
- { "id": "corner", "fg": [ 6882, 6884, 6883, 6881 ] },
- { "id": "t_connection", "fg": [ 6892, 6894, 6893, 6891 ] },
- { "id": "edge", "fg": [ 6886, 6885 ] },
- { "id": "end_piece", "fg": [ 6888, 6890, 6889, 6887 ] },
- { "id": "unconnected", "fg": [ 6895, 6895 ] }
+ { "id": "center", "fg": 7023 },
+ { "id": "corner", "fg": [ 7025, 7027, 7026, 7024 ] },
+ { "id": "t_connection", "fg": [ 7035, 7037, 7036, 7034 ] },
+ { "id": "edge", "fg": [ 7029, 7028 ] },
+ { "id": "end_piece", "fg": [ 7031, 7033, 7032, 7030 ] },
+ { "id": "unconnected", "fg": [ 7038, 7038 ] }
]
},
- { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 6896, "bg": 5809 },
- { "id": "t_window_frame", "fg": 6897 },
- { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 6898, "bg": 5809 },
- { "id": "t_pit_glass", "fg": 3868, "bg": 5116 },
- { "id": "t_pit_spiked", "fg": 3934, "bg": 5116 },
- { "id": "tr_firewood_source", "fg": 6899 },
- { "id": "tr_unfinished_construction", "fg": 6900 },
+ { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7039, "bg": 5991 },
+ { "id": "t_window_frame", "fg": 7040 },
+ { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7041, "bg": 5991 },
+ { "id": "t_pit_glass", "fg": 3981, "bg": 5282 },
+ { "id": "t_pit_spiked", "fg": 4051, "bg": 5282 },
+ { "id": "tr_firewood_source", "fg": 7042 },
+ { "id": "tr_unfinished_construction", "fg": 7043 },
{
"id": "vp_hdboard_ne",
- "fg": [ 6927, 6930, 6929, 6928 ],
+ "fg": [ 7070, 7073, 7072, 7071 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6927, 6930, 6929, 6928 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7070, 7073, 7072, 7071 ] } ]
},
{
"id": "vp_hdboard_nw",
- "fg": [ 6931, 6934, 6933, 6932 ],
+ "fg": [ 7074, 7077, 7076, 7075 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6931, 6934, 6933, 6932 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7074, 7077, 7076, 7075 ] } ]
},
{
"id": "vp_hdboard_se",
- "fg": [ 6935, 6937, 6931, 6936 ],
+ "fg": [ 7078, 7080, 7074, 7079 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6935, 6937, 6931, 6936 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7078, 7080, 7074, 7079 ] } ]
},
{
"id": "vp_hdboard_sw",
- "fg": [ 6938, 6940, 6927, 6939 ],
+ "fg": [ 7081, 7083, 7070, 7082 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6938, 6940, 6927, 6939 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7081, 7083, 7070, 7082 ] } ]
},
{
"id": "vp_hdboard_vertical_left",
- "fg": [ 6941, 6943, 6944, 6942 ],
+ "fg": [ 7084, 7086, 7087, 7085 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6941, 6943, 6944, 6942 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7084, 7086, 7087, 7085 ] } ]
},
{
"id": "vp_hdboard_vertical_right",
- "fg": [ 6944, 6946, 6941, 6945 ],
+ "fg": [ 7087, 7089, 7084, 7088 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6944, 6946, 6941, 6945 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7087, 7089, 7084, 7088 ] } ]
},
{
"id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ],
- "fg": 6923,
+ "fg": 7066,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6923 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7066 } ]
},
{
"id": "vp_hdboard_horizontal_front",
- "fg": [ 6923, 6925, 6923, 6924 ],
+ "fg": [ 7066, 7068, 7066, 7067 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6923, 6925, 6923, 6924 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7066, 7068, 7066, 7067 ] } ]
},
{
"id": "vp_hdboard_horizontal_rear",
- "fg": [ 6926, 6924, 6923, 6925 ],
+ "fg": [ 7069, 7067, 7066, 7068 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6926, 6924, 6923, 6925 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7069, 7067, 7066, 7068 ] } ]
},
{
"id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ],
- "fg": 6941,
+ "fg": 7084,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6941 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7084 } ]
},
{
"id": "vp_hdhalfboard_ne",
- "fg": [ 6961, 6964, 6963, 6962 ],
+ "fg": [ 7104, 7107, 7106, 7105 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6961, 6964, 6963, 6962 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7104, 7107, 7106, 7105 ] } ]
},
{
"id": "vp_hdhalfboard_nw",
- "fg": [ 6965, 6968, 6967, 6966 ],
+ "fg": [ 7108, 7111, 7110, 7109 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6965, 6968, 6967, 6966 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7108, 7111, 7110, 7109 ] } ]
},
{
"id": "vp_hdhalfboard_se",
- "fg": [ 6969, 6972, 6971, 6970 ],
+ "fg": [ 7112, 7115, 7114, 7113 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6969, 6972, 6971, 6970 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7112, 7115, 7114, 7113 ] } ]
},
{
"id": "vp_hdhalfboard_sw",
- "fg": [ 6973, 6976, 6975, 6974 ],
+ "fg": [ 7116, 7119, 7118, 7117 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6973, 6976, 6975, 6974 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7116, 7119, 7118, 7117 ] } ]
},
{
"id": "vp_hdhalfboard_vertical_left",
- "fg": [ 6981, 6984, 6983, 6982 ],
+ "fg": [ 7124, 7127, 7126, 7125 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6981, 6984, 6983, 6982 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7124, 7127, 7126, 7125 ] } ]
},
{
"id": "vp_hdhalfboard_vertical_right",
- "fg": [ 6985, 6988, 6987, 6986 ],
+ "fg": [ 7128, 7131, 7130, 7129 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6985, 6988, 6987, 6986 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7128, 7131, 7130, 7129 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal",
- "fg": [ 6956, 6959, 6958, 6957 ],
+ "fg": [ 7099, 7102, 7101, 7100 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6956, 6959, 6958, 6957 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7099, 7102, 7101, 7100 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal_2",
- "fg": 6951,
+ "fg": 7094,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6951 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7094 } ]
},
{
"id": "vp_hdhalfboard_horizontal_front",
- "fg": [ 6956, 6959, 6958, 6957 ],
+ "fg": [ 7099, 7102, 7101, 7100 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6956, 6959, 6958, 6957 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7099, 7102, 7101, 7100 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal_2_front",
- "fg": [ 6951, 6954, 6953, 6952 ],
+ "fg": [ 7094, 7097, 7096, 7095 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6951, 6954, 6953, 6952 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7094, 7097, 7096, 7095 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal_rear",
- "fg": [ 6960, 6957, 6956, 6959 ],
+ "fg": [ 7103, 7100, 7099, 7102 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6960, 6957, 6956, 6959 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7103, 7100, 7099, 7102 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal_2_rear",
- "fg": [ 6955, 6952, 6951, 6954 ],
+ "fg": [ 7098, 7095, 7094, 7097 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6955, 6952, 6951, 6954 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7098, 7095, 7094, 7097 ] } ]
},
{
"id": "vp_hdhalfboard_vertical",
- "fg": 6977,
+ "fg": 7120,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6977 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7120 } ]
},
{
"id": "vp_hdhalfboard_vertical_2",
- "fg": 6978,
+ "fg": 7121,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6978 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7121 } ]
},
{
"id": "vp_hdhalfboard_vertical_2_left",
- "fg": [ 6979, 6984, 6983, 6982 ],
+ "fg": [ 7122, 7127, 7126, 7125 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6979, 6984, 6983, 6982 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7122, 7127, 7126, 7125 ] } ]
},
{
"id": "vp_hdhalfboard_vertical_2_right",
- "fg": [ 6980, 6988, 6987, 6986 ],
+ "fg": [ 7123, 7131, 7130, 7129 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6980, 6988, 6987, 6986 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7123, 7131, 7130, 7129 ] } ]
},
{
"id": "vp_hdhalfboard_cover",
- "fg": [ 6947, 6950, 6949, 6948 ],
+ "fg": [ 7090, 7093, 7092, 7091 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6947, 6950, 6949, 6948 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7090, 7093, 7092, 7091 ] } ]
},
{
"id": "vp_xlhalfboard_ne",
- "fg": [ 6910, 6913, 6912, 6911 ],
+ "fg": [ 7053, 7056, 7055, 7054 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6910, 6913, 6912, 6911 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7053, 7056, 7055, 7054 ] } ]
},
{
"id": "vp_xlhalfboard_nw",
- "fg": [ 6914, 6917, 6916, 6915 ],
+ "fg": [ 7057, 7060, 7059, 7058 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6914, 6917, 6916, 6915 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7057, 7060, 7059, 7058 ] } ]
},
{
"id": "vp_xlhalfboard_se",
- "fg": 6918,
+ "fg": 7061,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6918 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7061 } ]
},
{
"id": "vp_xlhalfboard_sw",
- "fg": 6919,
+ "fg": 7062,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6919 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7062 } ]
},
{
"id": "vp_xlhalfboard_vertical_left",
- "fg": 6921,
+ "fg": 7064,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6921 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7064 } ]
},
{
"id": "vp_xlhalfboard_vertical_right",
- "fg": 6922,
+ "fg": 7065,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6922 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7065 } ]
},
{
"id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ],
- "fg": 6905,
+ "fg": 7048,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6905 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7048 } ]
},
{
"id": "vp_xlhalfboard_horizontal_front",
- "fg": [ 6905, 6908, 6907, 6906 ],
+ "fg": [ 7048, 7051, 7050, 7049 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6905, 6908, 6907, 6906 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7048, 7051, 7050, 7049 ] } ]
},
{
"id": "vp_xlhalfboard_horizontal_rear",
- "fg": 6909,
+ "fg": 7052,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6909 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7052 } ]
},
{
"id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ],
- "fg": 6920,
+ "fg": 7063,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6920 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7063 } ]
},
{
"id": "vp_xlhalfboard_cover",
- "fg": [ 6901, 6904, 6903, 6902 ],
+ "fg": [ 7044, 7047, 7046, 7045 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6901, 6904, 6903, 6902 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7044, 7047, 7046, 7045 ] } ]
},
{
"id": "vp_hdstowboard_ne",
- "fg": [ 6994, 6997, 6996, 6995 ],
+ "fg": [ 7137, 7140, 7139, 7138 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6994, 6997, 6996, 6995 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7137, 7140, 7139, 7138 ] } ]
},
{
"id": "vp_hdstowboard_nw",
- "fg": [ 6998, 7001, 7000, 6999 ],
+ "fg": [ 7141, 7144, 7143, 7142 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6998, 7001, 7000, 6999 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7141, 7144, 7143, 7142 ] } ]
},
{
"id": "vp_hdstowboard_se",
- "fg": [ 7002, 7004, 6998, 7003 ],
+ "fg": [ 7145, 7147, 7141, 7146 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7002, 7004, 6998, 7003 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7145, 7147, 7141, 7146 ] } ]
},
{
"id": "vp_hdstowboard_sw",
- "fg": [ 7005, 7007, 6994, 7006 ],
+ "fg": [ 7148, 7150, 7137, 7149 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7005, 7007, 6994, 7006 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7148, 7150, 7137, 7149 ] } ]
},
{
"id": "vp_hdstowboard_vertical_left",
- "fg": [ 7008, 7010, 7011, 7009 ],
+ "fg": [ 7151, 7153, 7154, 7152 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7008, 7010, 7011, 7009 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7151, 7153, 7154, 7152 ] } ]
},
{
"id": "vp_hdstowboard_vertical_right",
- "fg": [ 7011, 7009, 7008, 7010 ],
+ "fg": [ 7154, 7152, 7151, 7153 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7011, 7009, 7008, 7010 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7154, 7152, 7151, 7153 ] } ]
},
{
"id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ],
- "fg": 6989,
+ "fg": 7132,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 6989 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7132 } ]
},
{
"id": "vp_hdstowboard_horizontal_front",
- "fg": [ 6989, 6992, 6991, 6990 ],
+ "fg": [ 7132, 7135, 7134, 7133 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6989, 6992, 6991, 6990 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7132, 7135, 7134, 7133 ] } ]
},
{
"id": "vp_hdstowboard_horizontal_rear",
- "fg": [ 6993, 6990, 6989, 6992 ],
+ "fg": [ 7136, 7133, 7132, 7135 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 6993, 6990, 6989, 6992 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7136, 7133, 7132, 7135 ] } ]
},
{
"id": "vp_hdstowboard_vertical",
- "fg": 7009,
+ "fg": 7152,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7009 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7152 } ]
},
{
"id": "vp_woodboard_ne",
- "fg": [ 7016, 7017, 7022, 7023 ],
+ "fg": [ 7159, 7160, 7165, 7166 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7016, 7017, 7022, 7023 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7159, 7160, 7165, 7166 ] } ]
},
{
"id": "vp_woodboard_nw",
- "fg": [ 7018, 7019, 7020, 7021 ],
+ "fg": [ 7161, 7162, 7163, 7164 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7018, 7019, 7020, 7021 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7161, 7162, 7163, 7164 ] } ]
},
{
"id": "vp_woodboard_se",
- "fg": [ 7020, 7021, 7018, 7019 ],
+ "fg": [ 7163, 7164, 7161, 7162 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7020, 7021, 7018, 7019 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7163, 7164, 7161, 7162 ] } ]
},
{
"id": "vp_woodboard_sw",
- "fg": [ 7022, 7023, 7016, 7017 ],
+ "fg": [ 7165, 7166, 7159, 7160 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7022, 7023, 7016, 7017 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7165, 7166, 7159, 7160 ] } ]
},
{
"id": "vp_woodboard_vertical_left",
- "fg": [ 7024, 7014, 7025, 7012 ],
+ "fg": [ 7167, 7157, 7168, 7155 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7024, 7014, 7025, 7012 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7167, 7157, 7168, 7155 ] } ]
},
{
"id": "vp_woodboard_vertical_right",
- "fg": [ 7025, 7012, 7024, 7014 ],
+ "fg": [ 7168, 7155, 7167, 7157 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7025, 7012, 7024, 7014 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7168, 7155, 7167, 7157 ] } ]
},
{
"id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ],
- "fg": [ 7012, 7013, 7014, 7015 ],
+ "fg": [ 7155, 7156, 7157, 7158 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7012, 7013, 7014, 7015 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7155, 7156, 7157, 7158 ] } ]
},
{
"id": "vp_woodboard_horizontal_rear",
- "fg": [ 7014, 7015, 7012, 7013 ],
+ "fg": [ 7157, 7158, 7155, 7156 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7014, 7015, 7012, 7013 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7157, 7158, 7155, 7156 ] } ]
},
{
"id": [ "vp_woodhalfboard_ne" ],
- "fg": 7030,
+ "fg": 7173,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7030 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7173 } ]
},
{
"id": "vp_woodhalfboard_nw",
- "fg": 7029,
+ "fg": 7172,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7029 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7172 } ]
},
{
"id": "vp_woodhalfboard_se",
- "fg": 7034,
+ "fg": 7177,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7034 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7177 } ]
},
{
"id": "vp_woodhalfboard_sw",
- "fg": 7033,
+ "fg": 7176,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7033 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7176 } ]
},
{
"id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ],
- "fg": 7031,
+ "fg": 7174,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7031 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7174 } ]
},
{
"id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ],
- "fg": 7035,
+ "fg": 7178,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7035 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7178 } ]
},
{
"id": [
@@ -10006,925 +10213,925 @@
"vp_woodhalfboard_horizontal_front",
"vp_woodhalfboard_horizontal_2_front"
],
- "fg": 7028,
+ "fg": 7171,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7028 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7171 } ]
},
{
"id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ],
- "fg": 7032,
+ "fg": 7175,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7032 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7175 } ]
},
{
"id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ],
- "fg": 7027,
+ "fg": 7170,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7027 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7170 } ]
},
{
"id": [ "vp_woodhalfboard_cover" ],
- "fg": 7026,
+ "fg": 7169,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7026 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7169 } ]
},
{
"id": [ "vp_basketsm", "vp_basketsm_external" ],
- "fg": [ 7047, 7046 ],
+ "fg": [ 7190, 7189 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7047, 7046 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7190, 7189 ] } ]
},
{
"id": "vp_basketsm_bike_rear",
- "fg": [ 7043, 7045, 7044, 7042 ],
+ "fg": [ 7186, 7188, 7187, 7185 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7043, 7045, 7044, 7042 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7186, 7188, 7187, 7185 ] } ]
},
{
"id": [ "vp_basketlg", "vp_basketlg_external" ],
- "fg": [ 7041, 7040 ],
+ "fg": [ 7184, 7183 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7041, 7040 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7184, 7183 ] } ]
},
{
"id": "vp_basketlg_cart",
- "fg": [ 7037, 7039, 7038, 7036 ],
+ "fg": [ 7180, 7182, 7181, 7179 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7037, 7039, 7038, 7036 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7180, 7182, 7181, 7179 ] } ]
},
{
"id": "vp_box",
- "fg": [ 7048, 7049 ],
+ "fg": [ 7191, 7192 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7048, 7049 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7191, 7192 ] } ]
},
{
"id": "vp_wood box",
- "fg": [ 7058, 7057 ],
+ "fg": [ 7201, 7200 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7058, 7057 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7201, 7200 ] } ]
},
{
"id": "vp_box_wheelbarrow",
- "fg": [ 7051, 7053, 7052, 7050 ],
+ "fg": [ 7194, 7196, 7195, 7193 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7051, 7053, 7052, 7050 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7194, 7196, 7195, 7193 ] } ]
},
{
"id": "vp_trunk",
- "fg": 7055,
+ "fg": 7198,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7055 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7198 } ]
},
{
"id": "vp_trunk_rear_edge",
- "fg": 7056,
+ "fg": 7199,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7056 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7199 } ]
},
{
"id": [ "vp_cargo_space", "animal_compartment" ],
- "fg": 7054,
+ "fg": 7197,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7054 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7197 } ]
},
{
"id": [ "vp_hddoor_trunk", "vp_hdhatch", "vp_hdhatch_opaque" ],
- "fg": [ 7082, 7088, 7087, 7086 ],
+ "fg": [ 7225, 7231, 7230, 7229 ],
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7083, 7085, 7083, 7084 ] }, { "id": "broken", "fg": 7062, "bg": [ 7083, 7085, 7083, 7084 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7226, 7228, 7226, 7227 ] }, { "id": "broken", "fg": 7205, "bg": [ 7226, 7228, 7226, 7227 ] } ]
},
{
"id": [ "vp_hddoor", "vp_hddoor_front" ],
- "fg": [ 7070, 7071, 7070, 7069 ],
+ "fg": [ 7213, 7214, 7213, 7212 ],
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7064, 7065, 7064, 7063 ] }, { "id": "broken", "fg": 7062, "bg": [ 7064, 7065, 7064, 7063 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7207, 7208, 7207, 7206 ] }, { "id": "broken", "fg": 7205, "bg": [ 7207, 7208, 7207, 7206 ] } ]
},
{
"id": "vp_hddoor_rear",
- "fg": [ 7079, 7081, 7080, 7078 ],
+ "fg": [ 7222, 7224, 7223, 7221 ],
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7067, 7068, 7067, 7066 ] }, { "id": "broken", "fg": 7062, "bg": [ 7067, 7068, 7067, 7066 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7210, 7211, 7210, 7209 ] }, { "id": "broken", "fg": 7205, "bg": [ 7210, 7211, 7210, 7209 ] } ]
},
{
"id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ],
- "fg": [ 7073, 7074, 7073, 7072 ],
+ "fg": [ 7216, 7217, 7216, 7215 ],
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7064, 7065, 7064, 7063 ] }, { "id": "broken", "fg": 7062, "bg": [ 7064, 7065, 7064, 7063 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7207, 7208, 7207, 7206 ] }, { "id": "broken", "fg": 7205, "bg": [ 7207, 7208, 7207, 7206 ] } ]
},
{
"id": "vp_hddoor_opaque_rear",
- "fg": [ 7076, 7077, 7076, 7075 ],
+ "fg": [ 7219, 7220, 7219, 7218 ],
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7067, 7068, 7067, 7066 ] }, { "id": "broken", "fg": 7062, "bg": [ 7067, 7068, 7067, 7066 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7210, 7211, 7210, 7209 ] }, { "id": "broken", "fg": 7205, "bg": [ 7210, 7211, 7210, 7209 ] } ]
},
{
"id": "vp_ram_spiked",
- "fg": 7090,
+ "fg": 7233,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7090 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7233 } ]
},
{
"id": "vp_ram_steel",
- "fg": 7091,
+ "fg": 7234,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7090 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7233 } ]
},
{
"id": "vp_spike",
- "fg": 7092,
+ "fg": 7235,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7092 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7235 } ]
},
{
"id": "vp_frame_cover",
- "fg": 7094,
+ "fg": 7237,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7094 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7237 } ]
},
{
"id": "vp_frame_cross",
- "fg": 7095,
+ "fg": 7238,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7095 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7238 } ]
},
{
"id": "vp_frame_cross_unconnected",
- "fg": 7096,
+ "fg": 7239,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7096 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7239 } ]
},
{
"id": "vp_frame_ne",
- "fg": 7109,
+ "fg": 7252,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7109 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7252 } ]
},
{
"id": "vp_frame_nw",
- "fg": 7110,
+ "fg": 7253,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7110 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7253 } ]
},
{
"id": "vp_frame_se",
- "fg": 7111,
+ "fg": 7254,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7111 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7254 } ]
},
{
"id": "vp_frame_sw",
- "fg": 7112,
+ "fg": 7255,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7112 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7255 } ]
},
{
"id": "vp_frame_vertical_unconnected",
- "fg": 7120,
+ "fg": 7263,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7120 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7263 } ]
},
{
"id": "vp_frame_vertical_2_unconnected",
- "fg": 7117,
+ "fg": 7260,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7117 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7260 } ]
},
{
"id": "vp_frame_vertical_left",
- "fg": 7118,
+ "fg": 7261,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7118 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7261 } ]
},
{
"id": "vp_frame_vertical_2_left",
- "fg": 7115,
+ "fg": 7258,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7115 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7258 } ]
},
{
"id": "vp_frame_vertical_right",
- "fg": 7119,
+ "fg": 7262,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7119 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7262 } ]
},
{
"id": "vp_frame_vertical_2_right",
- "fg": 7116,
+ "fg": 7259,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7116 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7259 } ]
},
{
"id": "vp_frame_horizontal",
- "fg": 7097,
+ "fg": 7240,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7097 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7240 } ]
},
{
"id": "vp_frame_horizontal_2",
- "fg": 7098,
+ "fg": 7241,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7098 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7241 } ]
},
{
"id": "vp_frame_horizontal_unconnected",
- "fg": 7108,
+ "fg": 7251,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7108 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7251 } ]
},
{
"id": "vp_frame_horizontal_2_unconnected",
- "fg": 7101,
+ "fg": 7244,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7101 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7244 } ]
},
{
"id": "vp_frame_horizontal_front",
- "fg": 7104,
+ "fg": 7247,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7104 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7247 } ]
},
{
"id": "vp_frame_horizontal_2_front",
- "fg": 7099,
+ "fg": 7242,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7099 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7242 } ]
},
{
"id": "vp_frame_horizontal_rear",
- "fg": 7106,
+ "fg": 7249,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7106 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7249 } ]
},
{
"id": "vp_frame_horizontal_2_rear",
- "fg": 7100,
+ "fg": 7243,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7100 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7243 } ]
},
{
"id": [ "vp_frame_horizontal_left", "vp_frame_vertical_T_left" ],
- "fg": 7105,
+ "fg": 7248,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7105 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7248 } ]
},
{
"id": "vp_frame_horizontal_2_left",
- "fg": 7102,
+ "fg": 7245,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7102 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7245 } ]
},
{
"id": [ "vp_frame_horizontal_right", "vp_frame_vertical_T_right" ],
- "fg": 7107,
+ "fg": 7250,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7107 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7250 } ]
},
{
"id": "vp_frame_horizontal_2_right",
- "fg": 7103,
+ "fg": 7246,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7103 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7246 } ]
},
{
"id": "vp_frame_vertical",
- "fg": 7113,
+ "fg": 7256,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7113 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7256 } ]
},
{
"id": "vp_frame_vertical_2",
- "fg": 7114,
+ "fg": 7257,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7114 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7257 } ]
},
{
"id": "vp_hdframe_cover",
- "fg": 7121,
+ "fg": 7264,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7121 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7264 } ]
},
{
"id": "vp_hdframe_cross",
- "fg": 7122,
+ "fg": 7265,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7122 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7265 } ]
},
{
"id": "vp_hdframe_cross_unconnected",
- "fg": 7123,
+ "fg": 7266,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7123 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7266 } ]
},
{
"id": "vp_hdframe_ne",
- "fg": 7136,
+ "fg": 7279,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7136 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7279 } ]
},
{
"id": "vp_hdframe_nw",
- "fg": 7137,
+ "fg": 7280,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7137 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7280 } ]
},
{
"id": "vp_hdframe_se",
- "fg": 7138,
+ "fg": 7281,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7138 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7281 } ]
},
{
"id": "vp_hdframe_sw",
- "fg": 7139,
+ "fg": 7282,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7139 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7282 } ]
},
{
"id": "vp_hdframe_vertical_unconnected",
- "fg": 7147,
+ "fg": 7290,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7147 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7290 } ]
},
{
"id": "vp_hdframe_vertical_2_unconnected",
- "fg": 7144,
+ "fg": 7287,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7144 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7287 } ]
},
{
"id": "vp_hdframe_vertical_left",
- "fg": 7145,
+ "fg": 7288,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7145 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7288 } ]
},
{
"id": "vp_hdframe_vertical_2_left",
- "fg": 7142,
+ "fg": 7285,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7142 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7285 } ]
},
{
"id": "vp_hdframe_vertical_right",
- "fg": 7146,
+ "fg": 7289,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7146 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7289 } ]
},
{
"id": "vp_hdframe_vertical_2_right",
- "fg": 7143,
+ "fg": 7286,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7143 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7286 } ]
},
{
"id": "vp_hdframe_horizontal",
- "fg": 7124,
+ "fg": 7267,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7124 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7267 } ]
},
{
"id": "vp_hdframe_horizontal_2",
- "fg": 7125,
+ "fg": 7268,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7125 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7268 } ]
},
{
"id": "vp_hdframe_horizontal_unconnected",
- "fg": 7135,
+ "fg": 7278,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7135 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7278 } ]
},
{
"id": "vp_hdframe_horizontal_2_unconnected",
- "fg": 7128,
+ "fg": 7271,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7128 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7271 } ]
},
{
"id": "vp_hdframe_horizontal_front",
- "fg": 7131,
+ "fg": 7274,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7131 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7274 } ]
},
{
"id": "vp_hdframe_horizontal_2_front",
- "fg": 7126,
+ "fg": 7269,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7126 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7269 } ]
},
{
"id": "vp_hdframe_horizontal_rear",
- "fg": 7133,
+ "fg": 7276,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7133 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7276 } ]
},
{
"id": "vp_hdframe_horizontal_2_rear",
- "fg": 7127,
+ "fg": 7270,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7127 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7270 } ]
},
{
"id": [ "vp_hdframe_horizontal_left", "vp_hdframe_vertical_T_left" ],
- "fg": 7132,
+ "fg": 7275,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7132 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7275 } ]
},
{
"id": "vp_hdframe_horizontal_2_left",
- "fg": 7129,
+ "fg": 7272,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7129 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7272 } ]
},
{
"id": [ "vp_hdframe_horizontal_right", "vp_hdframe_vertical_T_right" ],
- "fg": 7134,
+ "fg": 7277,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7134 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7277 } ]
},
{
"id": "vp_hdframe_horizontal_2_right",
- "fg": 7130,
+ "fg": 7273,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7130 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7273 } ]
},
{
"id": "vp_hdframe_vertical",
- "fg": 7140,
+ "fg": 7283,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7140 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7283 } ]
},
{
"id": "vp_hdframe_vertical_2",
- "fg": 7141,
+ "fg": 7284,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7141 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7284 } ]
},
{
"id": "vp_xlframe_cover",
- "fg": 7148,
+ "fg": 7291,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7148 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7291 } ]
},
{
"id": "vp_xlframe_cross",
- "fg": 7149,
+ "fg": 7292,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7149 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7292 } ]
},
{
"id": "vp_xlframe_cross_unconnected",
- "fg": 7150,
+ "fg": 7293,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7150 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7293 } ]
},
{
"id": "vp_xlframe_ne",
- "fg": 7163,
+ "fg": 7306,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7163 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7306 } ]
},
{
"id": "vp_xlframe_nw",
- "fg": 7164,
+ "fg": 7307,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7164 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7307 } ]
},
{
"id": "vp_xlframe_se",
- "fg": 7165,
+ "fg": 7308,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7165 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7308 } ]
},
{
"id": "vp_xlframe_sw",
- "fg": 7166,
+ "fg": 7309,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7166 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7309 } ]
},
{
"id": "vp_xlframe_vertical_unconnected",
- "fg": 7174,
+ "fg": 7317,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7174 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7317 } ]
},
{
"id": "vp_xlframe_vertical_2_unconnected",
- "fg": 7171,
+ "fg": 7314,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7171 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7314 } ]
},
{
"id": "vp_xlframe_vertical_left",
- "fg": 7172,
+ "fg": 7315,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7172 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7315 } ]
},
{
"id": "vp_xlframe_vertical_2_left",
- "fg": 7169,
+ "fg": 7312,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7169 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7312 } ]
},
{
"id": "vp_xlframe_vertical_right",
- "fg": 7173,
+ "fg": 7316,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7173 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7316 } ]
},
{
"id": "vp_xlframe_vertical_2_right",
- "fg": 7170,
+ "fg": 7313,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7170 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7313 } ]
},
{
"id": "vp_xlframe_horizontal",
- "fg": 7151,
+ "fg": 7294,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7151 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7294 } ]
},
{
"id": "vp_xlframe_horizontal_2",
- "fg": 7152,
+ "fg": 7295,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7152 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7295 } ]
},
{
"id": "vp_xlframe_horizontal_unconnected",
- "fg": 7162,
+ "fg": 7305,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7162 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7305 } ]
},
{
"id": "vp_xlframe_horizontal_2_unconnected",
- "fg": 7155,
+ "fg": 7298,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7155 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7298 } ]
},
{
"id": "vp_xlframe_horizontal_front",
- "fg": 7158,
+ "fg": 7301,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7158 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7301 } ]
},
{
"id": "vp_xlframe_horizontal_2_front",
- "fg": 7153,
+ "fg": 7296,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7153 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7296 } ]
},
{
"id": "vp_xlframe_horizontal_rear",
- "fg": 7160,
+ "fg": 7303,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7160 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7303 } ]
},
{
"id": "vp_xlframe_horizontal_2_rear",
- "fg": 7154,
+ "fg": 7297,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7154 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7297 } ]
},
{
"id": [ "vp_xlframe_horizontal_left", "vp_xlframe_vertical_T_left" ],
- "fg": 7159,
+ "fg": 7302,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7159 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7302 } ]
},
{
"id": "vp_xlframe_horizontal_2_left",
- "fg": 7156,
+ "fg": 7299,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7156 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7299 } ]
},
{
"id": [ "vp_xlframe_horizontal_right", "vp_xlframe_vertical_T_right" ],
- "fg": 7161,
+ "fg": 7304,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7161 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7304 } ]
},
{
"id": "vp_xlframe_horizontal_2_right",
- "fg": 7157,
+ "fg": 7300,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7157 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7300 } ]
},
{
"id": "vp_xlframe_vertical",
- "fg": 7167,
+ "fg": 7310,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7167 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7310 } ]
},
{
"id": "vp_xlframe_vertical_2",
- "fg": 7168,
+ "fg": 7311,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7168 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7311 } ]
},
{
"id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ],
- "fg": 7176
+ "fg": 7319
},
{
"id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ],
- "fg": 7175
+ "fg": 7318
},
{
"id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ],
- "fg": 7176
+ "fg": 7319
},
{
"id": "vp_light_blue",
- "fg": [ 7190, 7191 ],
+ "fg": [ 7333, 7334 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7190, 7191 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7333, 7334 ] } ]
},
{
"id": "vp_light_red",
- "fg": [ 7192, 7193 ],
+ "fg": [ 7335, 7336 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7192, 7193 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7335, 7336 ] } ]
},
{
"id": [ "vp_floodlight", "vp_directed_floodlight" ],
- "fg": [ 7184, 7186, 7185, 7183 ],
+ "fg": [ 7327, 7329, 7328, 7326 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7184, 7186, 7185, 7183 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7327, 7329, 7328, 7326 ] } ]
},
{
"id": "vp_omnicam",
- "fg": 7199,
+ "fg": 7342,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7199 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7342 } ]
},
{
"id": [ "vp_veh_table", "vp_veh_table_wood" ],
- "fg": [ 7177, 7177 ],
- "bg": [ 7205, 7204 ],
+ "fg": [ 7320, 7320 ],
+ "bg": [ 7348, 7347 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7178, "bg": [ 7205, 7204 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7321, "bg": [ 7348, 7347 ] } ]
},
{
"id": "vp_workbench",
- "fg": [ 7206, 7206 ],
- "bg": 5044,
+ "fg": [ 7349, 7349 ],
+ "bg": 5209,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7206, 7206 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7349, 7349 ] } ]
},
{
"id": "vp_minifridge",
- "fg": [ 7197, 7197 ],
+ "fg": [ 7340, 7340 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7197, 7197 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7340, 7340 ] } ]
},
{
"id": "vp_minifreezer",
- "fg": [ 7196, 7196 ],
+ "fg": [ 7339, 7339 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7196, 7196 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7339, 7339 ] } ]
},
{
"id": "vp_kitchen_unit",
- "fg": [ 7189, 7189 ],
+ "fg": [ 7332, 7332 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7189, 7189 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7332, 7332 ] } ]
},
{
"id": "vp_welding_rig",
- "fg": [ 7203, 7203 ],
+ "fg": [ 7346, 7346 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7203, 7203 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7346, 7346 ] } ]
},
{
"id": "vp_craft_rig",
- "fg": [ 7182, 7182 ],
+ "fg": [ 7325, 7325 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7182, 7182 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7325, 7325 ] } ]
},
{
"id": "vp_washing_machine",
- "fg": [ 7202, 7202 ],
+ "fg": [ 7345, 7345 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7202, 7202 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7345, 7345 ] } ]
},
{
"id": "vp_veh_forge",
- "fg": [ 7187, 7187 ],
+ "fg": [ 7330, 7330 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7187, 7187 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7330, 7330 ] } ]
},
{
"id": "vp_veh_kiln",
- "fg": [ 7188, 7188 ],
+ "fg": [ 7331, 7331 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7188, 7188 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7331, 7331 ] } ]
},
{
"id": "vp_chemlab",
- "fg": [ 7181, 7181 ],
+ "fg": [ 7324, 7324 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7181, 7181 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7324, 7324 ] } ]
},
{
"id": "vp_aisle_vertical",
- "fg": 7180,
+ "fg": 7323,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7180 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7323 } ]
},
{
"id": "vp_aisle_horizontal",
- "fg": 7179,
+ "fg": 7322,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7179 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7322 } ]
},
- { "id": "vp_trunk_floor", "fg": 7200, "bg": 7180 },
+ { "id": "vp_trunk_floor", "fg": 7343, "bg": 7323 },
{
"id": "vp_wooden_aisle_vertical",
- "fg": [ 7205, 7204 ],
+ "fg": [ 7348, 7347 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7205, 7204 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7348, 7347 ] } ]
},
{
"id": "vp_wooden_aisle_horizontal",
- "fg": [ 7204, 7205 ],
+ "fg": [ 7347, 7348 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7204, 7205 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7347, 7348 ] } ]
},
{
"id": "vp_lit_aisle_vertical",
- "fg": 7195,
+ "fg": 7338,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7195 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7338 } ]
},
{
"id": "vp_lit_aisle_horizontal",
- "fg": 7194,
+ "fg": 7337,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7194 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7337 } ]
},
{
"id": "vp_mounted_spare_tire",
- "fg": 7198,
+ "fg": 7341,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7198 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7341 } ]
},
{
"id": [ "vp_saddle", "vp_saddle_pedal" ],
- "fg": [ 7208, 7210, 7209, 7207 ],
+ "fg": [ 7351, 7353, 7352, 7350 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7208, 7210, 7209, 7207 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7351, 7353, 7352, 7350 ] } ]
},
{
"id": [ "vp_seat_wood", "seat_wood_bench" ],
- "fg": [ 7215, 7215, 7216, 7216 ],
- "bg": [ 7205, 7204 ],
+ "fg": [ 7358, 7358, 7359, 7359 ],
+ "bg": [ 7348, 7347 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7215, 7215, 7216, 7216 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7358, 7358, 7359, 7359 ] } ]
},
{
"id": "vp_seat_wood_flimsy",
- "fg": [ 7213, 7213, 7214, 7214 ],
- "bg": [ 7205, 7204 ],
+ "fg": [ 7356, 7356, 7357, 7357 ],
+ "bg": [ 7348, 7347 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7213, 7213, 7214, 7214 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7356, 7356, 7357, 7357 ] } ]
},
{
"id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ],
- "fg": [ 7248, 7246, 7241, 7247 ],
+ "fg": [ 7391, 7389, 7384, 7390 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7248, 7246, 7241, 7247 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7391, 7389, 7384, 7390 ] } ]
},
{
"id": "vp_seat_back",
- "fg": [ 7217, 7240, 7239, 7238 ],
+ "fg": [ 7360, 7383, 7382, 7381 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7217, 7240, 7239, 7238 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7360, 7383, 7382, 7381 ] } ]
},
{
"id": "vp_seat_back_left",
- "fg": [ 7230, 7233, 7232, 7231 ],
+ "fg": [ 7373, 7376, 7375, 7374 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7230, 7233, 7232, 7231 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7373, 7376, 7375, 7374 ] } ]
},
{
"id": "vp_seat_back_right",
- "fg": [ 7234, 7237, 7236, 7235 ],
+ "fg": [ 7377, 7380, 7379, 7378 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7234, 7237, 7236, 7235 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7377, 7380, 7379, 7378 ] } ]
},
{
"id": "vp_seat_back_vertical",
- "fg": [ 7238, 7217, 7240, 7239 ],
+ "fg": [ 7381, 7360, 7383, 7382 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7238, 7217, 7240, 7239 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7381, 7360, 7383, 7382 ] } ]
},
{
"id": "vp_seat_back_vertical_left",
- "fg": [ 7231, 7230, 7233, 7232 ],
+ "fg": [ 7374, 7373, 7376, 7375 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7231, 7230, 7233, 7232 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7374, 7373, 7376, 7375 ] } ]
},
{
"id": "vp_seat_back_vertical_right",
- "fg": [ 7235, 7234, 7237, 7236 ],
+ "fg": [ 7378, 7377, 7380, 7379 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7235, 7234, 7237, 7236 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7378, 7377, 7380, 7379 ] } ]
},
{
"id": [ "vp_seat_leather", "vp_reclining_seat_leather" ],
- "fg": [ 7245, 7243, 7242, 7244 ],
+ "fg": [ 7388, 7386, 7385, 7387 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7245, 7243, 7242, 7244 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7388, 7386, 7385, 7387 ] } ]
},
{
"id": "vp_seat_back_leather",
- "fg": [ 7218, 7229, 7228, 7227 ],
+ "fg": [ 7361, 7372, 7371, 7370 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7218, 7229, 7228, 7227 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7361, 7372, 7371, 7370 ] } ]
},
{
"id": "vp_seat_back_leather_left",
- "fg": [ 7219, 7222, 7221, 7220 ],
+ "fg": [ 7362, 7365, 7364, 7363 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7219, 7222, 7221, 7220 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7362, 7365, 7364, 7363 ] } ]
},
{
"id": "vp_seat_back_leather_right",
- "fg": [ 7223, 7226, 7225, 7224 ],
+ "fg": [ 7366, 7369, 7368, 7367 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7223, 7226, 7225, 7224 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7366, 7369, 7368, 7367 ] } ]
},
{
"id": "vp_seat_back_leather_vertical",
- "fg": [ 7227, 7218, 7229, 7228 ],
+ "fg": [ 7370, 7361, 7372, 7371 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7227, 7218, 7229, 7228 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7370, 7361, 7372, 7371 ] } ]
},
{
"id": "vp_seat_back_leather_vertical_left",
- "fg": [ 7220, 7219, 7222, 7221 ],
+ "fg": [ 7363, 7362, 7365, 7364 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7220, 7219, 7222, 7221 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7363, 7362, 7365, 7364 ] } ]
},
{
"id": "vp_seat_back_leather_vertical_right",
- "fg": [ 7224, 7223, 7226, 7225 ],
+ "fg": [ 7367, 7366, 7369, 7368 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7224, 7223, 7226, 7225 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7367, 7366, 7369, 7368 ] } ]
},
{
"id": "vp_seat_rear",
- "fg": [ 7241, 7247, 7248, 7246 ],
+ "fg": [ 7384, 7390, 7391, 7389 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7241, 7247, 7248, 7246 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7384, 7390, 7391, 7389 ] } ]
},
{
"id": "vp_seat_leather_rear",
- "fg": [ 7242, 7244, 7245, 7243 ],
+ "fg": [ 7385, 7387, 7388, 7386 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7242, 7244, 7245, 7243 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7385, 7387, 7388, 7386 ] } ]
},
{
"id": [ "vp_seed_drill" ],
- "fg": [ 7250, 7252, 7251, 7249 ],
+ "fg": [ 7393, 7395, 7394, 7392 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7841, "bg": [ 7250, 7252, 7251, 7249 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 8047, "bg": [ 7393, 7395, 7394, 7392 ] } ]
},
{
"id": "vp_solar_panel",
- "fg": 7253,
+ "fg": 7396,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7253 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7396 } ]
},
{
"id": "vp_reinforced_solar_panel",
- "fg": 7256,
- "bg": 7253,
+ "fg": 7399,
+ "bg": 7396,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7253 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7396 } ]
},
{
"id": "vp_solar_panel_v2",
- "fg": 7254,
+ "fg": 7397,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7254 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7397 } ]
},
{
"id": "vp_reinforced_solar_panel_v2",
- "fg": 7256,
- "bg": 7254,
+ "fg": 7399,
+ "bg": 7397,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7254 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7397 } ]
},
{
"id": "vp_solar_panel_v3",
- "fg": 7255,
+ "fg": 7398,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7255 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7398 } ]
},
{
"id": [
@@ -10941,80 +11148,80 @@
"vp_mounted_m60_semi"
],
"//": "rifles and machineguns",
- "fg": 7259,
- "bg": 7257,
+ "fg": 7402,
+ "bg": 7400,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7259 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7402 } ]
},
{
"id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ],
"//": "energy weapons",
- "fg": 7258,
- "bg": 7257,
+ "fg": 7401,
+ "bg": 7400,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7258 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7401 } ]
},
{
"id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ],
"//": "railguns",
- "fg": 7260,
- "bg": 7257,
+ "fg": 7403,
+ "bg": 7400,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7260 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7403 } ]
},
{
"id": [ "vp_mounted_bigun", "vp_mounted_m134" ],
"//": "multibarrel weapons",
- "fg": 7259,
- "bg": 7257,
+ "fg": 7402,
+ "bg": 7400,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7259 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7402 } ]
},
{
"id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ],
"//": "liquid sprayers",
- "fg": 7259,
- "bg": 7257,
+ "fg": 7402,
+ "bg": 7400,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7259 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7402 } ]
},
{
"id": "vp_tow_launcher",
"//": "rocket tubes",
- "fg": 7259,
- "bg": 7257,
+ "fg": 7402,
+ "bg": 7400,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7259 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7402 } ]
},
{
"id": "vp_animal_compartment",
- "fg": [ 7261, 7261, 7261, 7261 ],
+ "fg": [ 7404, 7404, 7404, 7404 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7261, 7261, 7261, 7261 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7404, 7404, 7404, 7404 ] } ]
},
{
"id": "vp_basketsm_wheelchair",
- "fg": [ 7263, 7265, 7264, 7262 ],
+ "fg": [ 7406, 7408, 7407, 7405 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7263, 7265, 7264, 7262 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7406, 7408, 7407, 7405 ] } ]
},
{
"id": [ "vp_wheel", "vp_wheel_steerable" ],
- "fg": 7266,
+ "fg": 7409,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7266 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7409 } ]
},
{
"id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable", "vp_wheel_bicycle_or", "vp_wheel_bicycle_or_steerable" ],
- "fg": [ 7268, 7270, 7269, 7267 ],
+ "fg": [ 7411, 7413, 7412, 7410 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7268, 7270, 7269, 7267 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7411, 7413, 7412, 7410 ] } ]
},
{
"id": [ "vp_wheel_bicycle_rear", "vp_wheel_bicycle_or_rear" ],
- "fg": [ 7269, 7267, 7268, 7270 ],
+ "fg": [ 7412, 7410, 7411, 7413 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7269, 7267, 7268, 7270 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7412, 7410, 7411, 7413 ] } ]
},
{
"id": [
@@ -11023,544 +11230,618 @@
"vp_reinforced_windshield_horizontal_front",
"vp_reinforced_windshield_front_edge"
],
- "fg": [ 7271, 7274, 7273, 7272 ],
+ "fg": [ 7414, 7417, 7416, 7415 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7271, 7274, 7273, 7272 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7414, 7417, 7416, 7415 ] } ]
},
{
"id": "vp_reinforced_windshield_horizontal_rear",
- "fg": 7275,
+ "fg": 7418,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7275 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7418 } ]
},
{
"id": "vp_reinforced_windshield_horizontal_rear_edge",
- "fg": 7276,
+ "fg": 7419,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7276 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7419 } ]
},
{
"id": "vp_reinforced_windshield_nw",
- "fg": [ 7281, 7284, 7283, 7282 ],
+ "fg": [ 7424, 7427, 7426, 7425 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7281, 7284, 7283, 7282 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7424, 7427, 7426, 7425 ] } ]
},
{
"id": "vp_reinforced_windshield_ne",
- "fg": [ 7277, 7280, 7279, 7278 ],
+ "fg": [ 7420, 7423, 7422, 7421 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7277, 7280, 7279, 7278 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7420, 7423, 7422, 7421 ] } ]
},
{
"id": "vp_reinforced_windshield_sw",
- "fg": 7290,
+ "fg": 7433,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7290 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7433 } ]
},
{
"id": "vp_reinforced_windshield_se",
- "fg": 7285,
+ "fg": 7428,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": 7285 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": 7428 } ]
},
{
"id": "vp_reinforced_windshield_sw_edge",
- "fg": [ 7291, 7294, 7293, 7292 ],
+ "fg": [ 7434, 7437, 7436, 7435 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7291, 7294, 7293, 7292 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7434, 7437, 7436, 7435 ] } ]
},
{
"id": "vp_reinforced_windshield_se_edge",
- "fg": [ 7286, 7289, 7288, 7287 ],
+ "fg": [ 7429, 7432, 7431, 7430 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7286, 7289, 7288, 7287 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7429, 7432, 7431, 7430 ] } ]
},
{
"id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ],
- "fg": [ 7295, 7298, 7297, 7296 ],
+ "fg": [ 7438, 7441, 7440, 7439 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7295, 7298, 7297, 7296 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7438, 7441, 7440, 7439 ] } ]
},
{
"id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ],
- "fg": [ 7299, 7302, 7301, 7300 ],
+ "fg": [ 7442, 7445, 7444, 7443 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7299, 7302, 7301, 7300 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7442, 7445, 7444, 7443 ] } ]
},
{
"id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ],
- "fg": [ 7295, 7298, 7297, 7296 ],
+ "fg": [ 7438, 7441, 7440, 7439 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7295, 7298, 7297, 7296 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7438, 7441, 7440, 7439 ] } ]
},
{
"id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ],
- "fg": [ 7299, 7302, 7301, 7300 ],
+ "fg": [ 7442, 7445, 7444, 7443 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7059, "bg": [ 7299, 7302, 7301, 7300 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7202, "bg": [ 7442, 7445, 7444, 7443 ] } ]
},
{
"id": "vp_frame_wood_vertical_2",
- "fg": 7323,
+ "fg": 7466,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7323 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7466 } ]
},
{
"id": "vp_frame_wood_vertical_2_unconnected",
- "fg": 7326,
+ "fg": 7469,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7326 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7469 } ]
},
{
"id": "vp_frame_wood_vertical_2_right",
- "fg": 7325,
+ "fg": 7468,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7325 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7468 } ]
},
{
"id": "vp_frame_wood_vertical_2_left",
- "fg": 7324,
+ "fg": 7467,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7324 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7467 } ]
},
{
"id": "vp_frame_wood_vertical",
- "fg": 7322,
+ "fg": 7465,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7322 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7465 } ]
},
{
"id": "vp_frame_wood_vertical_unconnected",
- "fg": 7329,
+ "fg": 7472,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7329 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7472 } ]
},
{
"id": "vp_frame_wood_vertical_right",
- "fg": 7328,
+ "fg": 7471,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7328 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7471 } ]
},
{
"id": "vp_frame_wood_vertical_left",
- "fg": 7327,
+ "fg": 7470,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7327 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7470 } ]
},
{
"id": "vp_frame_wood_sw",
- "fg": 7321,
+ "fg": 7464,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7321 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7464 } ]
},
{
"id": "vp_frame_wood_se",
- "fg": 7320,
+ "fg": 7463,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7320 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7463 } ]
},
{
"id": "vp_frame_wood_nw",
- "fg": 7319,
+ "fg": 7462,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7319 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7462 } ]
},
{
"id": "vp_frame_wood_ne",
- "fg": 7318,
+ "fg": 7461,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7318 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7461 } ]
},
{
"id": "vp_frame_wood_horizontal_2",
- "fg": 7307,
+ "fg": 7450,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7307 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7450 } ]
},
{
"id": "vp_frame_wood_horizontal_2_unconnected",
- "fg": 7312,
+ "fg": 7455,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7312 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7455 } ]
},
{
"id": "vp_frame_wood_horizontal_2_right",
- "fg": 7311,
+ "fg": 7454,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7311 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7454 } ]
},
{
"id": "vp_frame_wood_horizontal_2_rear",
- "fg": 7310,
+ "fg": 7453,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7310 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7453 } ]
},
{
"id": "vp_frame_wood_horizontal_2_left",
- "fg": 7309,
+ "fg": 7452,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7309 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7452 } ]
},
{
"id": "vp_frame_wood_horizontal_2_front",
- "fg": 7308,
+ "fg": 7451,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7308 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7451 } ]
},
{
"id": "vp_frame_wood_horizontal",
- "fg": 7306,
+ "fg": 7449,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7306 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7449 } ]
},
{
"id": "vp_frame_wood_horizontal_unconnected",
- "fg": 7317,
+ "fg": 7460,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7317 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7460 } ]
},
{
"id": "vp_frame_wood_horizontal_right",
- "fg": 7316,
+ "fg": 7459,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7316 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7459 } ]
},
{
"id": "vp_frame_wood_horizontal_rear",
- "fg": 7315,
+ "fg": 7458,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7315 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7458 } ]
},
{
"id": "vp_frame_wood_horizontal_left",
- "fg": 7314,
+ "fg": 7457,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7314 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7457 } ]
},
{
"id": "vp_frame_wood_horizontal_front",
- "fg": 7313,
+ "fg": 7456,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7313 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7456 } ]
},
{
"id": "vp_frame_wood_cross",
- "fg": 7304,
+ "fg": 7447,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7304 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7447 } ]
},
{
"id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ],
- "fg": 7305,
+ "fg": 7448,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7305 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7448 } ]
},
{
"id": "vp_frame_wood_cover",
- "fg": 7303,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7303 } ]
- },
- { "id": "f_floor_mattress", "fg": 6588 },
- { "id": "f_fungal_mass", "fg": 6591 },
- { "id": "f_fungal_tangle", "fg": 6592 },
- { "id": "f_brazier", "fg": 6593 },
- { "id": "emer_blanket", "fg": 6623 },
- { "id": "emer_blanket_on", "fg": 6624 },
- { "id": "jacket_evac", "fg": 6625 },
- { "id": "f_autoclave", "fg": 6628 },
- { "id": "jeans_red", "fg": 6635 },
- { "id": "tights", "fg": 6636 },
- { "id": "blade", "fg": 6637 },
- { "id": "rm13_armor", "fg": 6638 },
- { "id": "55gal_drum", "fg": 6639 },
- { "id": "leather_funnel", "fg": 6664 },
- { "id": "tr_leather_funnel", "fg": 6666 },
- { "id": "brush", "fg": 6674 },
- { "id": "casserole", "fg": 6675 },
- { "id": "curling_iron", "fg": 6676 },
- { "id": "cutting_board", "fg": 6677 },
- { "id": "elec_hairtrimmer", "fg": 6678 },
- { "id": "hairbrush", "fg": 6679 },
- { "id": "metal_file", "fg": 6681 },
- { "id": "mobile_memory_card", "fg": 6682 },
- { "id": "plastic_straw", "fg": 6683 },
- { "id": "razor_blade", "fg": 6684 },
- { "id": "razor_shaving", "fg": 6685 },
- { "id": "string_floss", "fg": 6686 },
- { "id": "tumbler_plastic", "fg": 6688 },
- { "id": "xacto", "fg": 6689 },
- { "id": "f_rubble_landfill", "fg": 6789 },
- { "id": "t_roof_paper", "fg": 6839 },
- { "id": "crack_glass_left", "fg": 7060 },
- { "id": "vp_ram_mattress", "fg": 7089 },
- { "id": "vp_tearer", "fg": 7093 },
- { "id": "vp_vehicle_scoop", "fg": 7201 },
- { "id": "seat", "fg": 7211 },
- { "id": "seat_leather", "fg": 7212 }
+ "fg": 7446,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 7446 } ]
+ },
+ { "id": "f_floor_mattress", "fg": 6732 },
+ { "id": "f_fungal_mass", "fg": 6735 },
+ { "id": "f_fungal_tangle", "fg": 6736 },
+ { "id": "f_brazier", "fg": 6737 },
+ { "id": "emer_blanket", "fg": 6767 },
+ { "id": "emer_blanket_on", "fg": 6768 },
+ { "id": "jacket_evac", "fg": 6769 },
+ { "id": "f_autoclave", "fg": 6772 },
+ { "id": "jeans_red", "fg": 6779 },
+ { "id": "tights", "fg": 6780 },
+ { "id": "blade", "fg": 6781 },
+ { "id": "rm13_armor", "fg": 6782 },
+ { "id": "55gal_drum", "fg": 6783 },
+ { "id": "leather_funnel", "fg": 6808 },
+ { "id": "tr_leather_funnel", "fg": 6810 },
+ { "id": "brush", "fg": 6818 },
+ { "id": "casserole", "fg": 6819 },
+ { "id": "curling_iron", "fg": 6820 },
+ { "id": "cutting_board", "fg": 6821 },
+ { "id": "elec_hairtrimmer", "fg": 6822 },
+ { "id": "hairbrush", "fg": 6823 },
+ { "id": "metal_file", "fg": 6825 },
+ { "id": "mobile_memory_card", "fg": 6826 },
+ { "id": "plastic_straw", "fg": 6827 },
+ { "id": "razor_blade", "fg": 6828 },
+ { "id": "razor_shaving", "fg": 6829 },
+ { "id": "string_floss", "fg": 6830 },
+ { "id": "tumbler_plastic", "fg": 6832 },
+ { "id": "xacto", "fg": 6833 },
+ { "id": "f_rubble_landfill", "fg": 6932 },
+ { "id": "t_roof_paper", "fg": 6982 },
+ { "id": "crack_glass_left", "fg": 7203 },
+ { "id": "vp_ram_mattress", "fg": 7232 },
+ { "id": "vp_tearer", "fg": 7236 },
+ { "id": "vp_vehicle_scoop", "fg": 7344 },
+ { "id": "seat", "fg": 7354 },
+ { "id": "seat_leather", "fg": 7355 }
]
},
{
- "file": "incomplete_tall.png",
- "//": "range 7344 to 7775",
- "sprite_width": 32,
+ "file": "incomplete_large.png",
+ "//": "range 7488 to 7535",
+ "sprite_width": 64,
"sprite_height": 64,
- "sprite_offset_x": 0,
+ "sprite_offset_x": -16,
"sprite_offset_y": -32,
"tiles": [
- { "id": "overlay_female_worn_helmet_riot_raised", "fg": 7345 },
- { "id": "overlay_male_worn_helmet_riot_raised", "fg": 7346 },
- {
- "id": "vp_board_ne",
- "fg": [ 7356, 7359, 7358, 7357 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7356, 7359, 7358, 7357 ] } ]
- },
+ { "id": "mon_science_bot", "fg": 7491, "bg": 6508 },
{
- "id": "vp_board_nw",
- "fg": [ 7360, 7363, 7362, 7361 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7360, 7363, 7362, 7361 ] } ]
- },
- {
- "id": "vp_board_se",
- "fg": [ 7364, 7366, 7360, 7365 ],
+ "id": "vp_halfboard_hatch_wheel_left",
+ "fg": [ 7494, 7497, 7496, 7495 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7364, 7366, 7360, 7365 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7493, 7493, 7493, 7493 ], "bg": [ 7494, 7497, 7496, 7495 ] } ]
},
{
- "id": "vp_board_sw",
- "fg": [ 7367, 7369, 7356, 7368 ],
+ "id": "vp_halfboard_hatch_wheel_right",
+ "fg": [ 7498, 7501, 7500, 7499 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7367, 7369, 7356, 7368 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7493, 7493, 7493, 7493 ], "bg": [ 7498, 7501, 7500, 7499 ] } ]
},
{
- "id": "vp_board_vertical_left",
- "fg": [ 7353, 7370, 7355, 7354 ],
+ "id": "vp_halfboard_horizontal_2_rear",
+ "fg": [ 7502, 7505, 7504, 7503 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7353, 7370, 7355, 7354 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7493, 7493, 7493, 7493 ], "bg": [ 7502, 7505, 7504, 7503 ] } ]
},
{
- "id": "vp_board_vertical_right",
- "fg": [ 7355, 7354, 7353, 7370 ],
+ "id": "vp_hatch",
+ "fg": [ 7506, 7521, 7520, 7519 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7355, 7354, 7353, 7370 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 7515, 7518, 7517, 7516 ] },
+ { "id": "broken", "fg": [ 7493, 7493, 7493, 7493 ], "bg": [ 7515, 7518, 7517, 7516 ] }
+ ]
},
{
- "id": "vp_board_wheel_left",
- "fg": [ 7353, 7372, 7355, 7354 ],
+ "id": "vp_hatch_opaque",
+ "fg": [ 7507, 7514, 7513, 7512 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7353, 7372, 7355, 7354 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 7508, 7511, 7510, 7509 ] },
+ { "id": "broken", "fg": [ 7493, 7493, 7493, 7493 ], "bg": [ 7508, 7511, 7510, 7509 ] }
+ ]
},
{
- "id": "vp_board_wheel_right",
- "fg": [ 7355, 7354, 7353, 7372 ],
+ "id": "vp_door_trunk_hatch_wheel_left",
+ "fg": [ 7522, 7529, 7528, 7527 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7355, 7354, 7353, 7372 ] } ]
- },
+ "additional_tiles": [
+ { "id": "open", "fg": [ 7523, 7526, 7525, 7524 ] },
+ { "id": "broken", "fg": [ 7493, 7493, 7493, 7493 ], "bg": [ 7523, 7526, 7525, 7524 ] }
+ ]
+ }
+ ]
+ },
+ {
+ "file": "widemonsters.png",
+ "//": "range 7536 to 7631",
+ "sprite_width": 32,
+ "sprite_height": 48,
+ "sprite_offset_x": 0,
+ "sprite_offset_y": -16,
+ "tiles": [
+ { "id": "mon_zombie_phase_skulker", "fg": 7537, "bg": 7548 },
+ { "id": "mon_zombie_phase_shrike", "fg": 7536, "bg": 7548 },
{
- "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ],
- "fg": [ 7354, 7371, 7354, 7371 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7354, 7371, 7354, 7371 ] } ]
+ "id": "mon_zombie_reenactor",
+ "fg": [ { "weight": 2, "sprite": 7546 }, { "weight": 2, "sprite": 7545 }, { "weight": 1, "sprite": 7547 } ],
+ "bg": 7548
},
+ { "id": "mon_zombie_prisoner_tough", "fg": 7544, "bg": 7548 },
+ { "id": "mon_zombie_prisoner_fat", "fg": 7543, "bg": 7548 },
+ { "id": "mon_zombie_prisoner_brute", "fg": 7542, "bg": 7548 },
+ { "id": "mon_dragonfly_mega", "fg": 7563, "bg": 7548 },
{
- "id": "vp_board_horizontal_front",
- "fg": [ 7354, 7351, 7350, 7349 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7354, 7351, 7350, 7349 ] } ]
+ "id": "mon_hunting_horror",
+ "fg": [ { "weight": 1, "sprite": 7566 }, { "weight": 1, "sprite": 7567 }, { "weight": 1, "sprite": 7568 } ],
+ "bg": 7548
},
+ { "id": "mon_mutant_experimental", "fg": 7569, "bg": 7548 },
+ { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 4249 },
+ { "id": "mon_zombie_bio_op2", "fg": 7575, "bg": 7548 },
+ { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 7592 },
{
- "id": "vp_board_horizontal_rear",
- "fg": [ 7352, 7355, 7354, 7353 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7352, 7355, 7354, 7353 ] } ]
+ "id": [
+ "corpse_mon_zombie",
+ "corpse_mon_zombie_grappler",
+ "corpse_mon_zombie_biter",
+ "corpse_mon_zombie_hunter",
+ "corpse_mon_zombie_predator",
+ "corpse_mon_zombie_thorny",
+ "corpse_mon_zombie_smoker",
+ "corpse_mon_zombie_shady",
+ "corpse_mon_zombie_acidic",
+ "corpse_mon_zombie_fat",
+ "corpse_mon_zombie_corrosive",
+ "corpse_mon_zombie_screecher",
+ "corpse_mon_zombie_runner",
+ "corpse_mon_zombie_child",
+ "corpse_mon_zombie_electric",
+ "corpse_mon_zombie_fungus",
+ "corpse_mon_zombie_child_fungus",
+ "corpse_mon_zombie_swimmer",
+ "corpse_mon_zombie_mancroc",
+ "corpse_mon_zombie_skull",
+ "corpse_mon_zombie_survivor",
+ "corpse_mon_zombie_soldier_acid_1",
+ "corpse_mon_zombie_soldier_acid_2",
+ "corpse_mon_zombie_shriekling",
+ "corpse_mon_zombie_ears",
+ "corpse_mon_zombie_nullfield",
+ "corpse_mon_zombie_waif",
+ "corpse_mon_zombie_sproglodyte",
+ "corpse_mon_zombie_creepy",
+ "corpse_mon_zombie_anklebiter",
+ "corpse_mon_zombie_bio_op",
+ "corpse_mon_zombie_prisoner",
+ "corpse_mon_zombie_winged"
+ ],
+ "fg": 7600
},
+ { "id": "corpse_mon_zombie_scientist", "fg": 7602 },
+ { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 7603 },
+ { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 7601 },
{
- "id": [ "vp_board_vertical", "vp_board_vertical_2" ],
- "fg": [ 7371, 7354, 7371, 7354 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7371, 7354, 7371, 7354 ] } ]
+ "id": [
+ "corpse_mon_zombie_tough",
+ "corpse_mon_zombie_brute",
+ "corpse_mon_zombie_hulk",
+ "corpse_mon_zombie_brute_grappler",
+ "corpse_mon_zombie_brute_ninja",
+ "corpse_mon_zombie_kevlar_2",
+ "corpse_mon_zombie_kevlar_1",
+ "corpse_mon_zombie_armored",
+ "corpse_mon_zombie_brute_shocker",
+ "corpse_mon_zombie_brute_winged",
+ "corpse_mon_zombie_soldier_blackops_2",
+ "corpse_mon_zombie_soldier_blackops_1"
+ ],
+ "fg": 7604
},
+ { "id": "mon_zombie_winged", "fg": 7619, "bg": 7548 },
+ { "id": "mon_zombie_swat", "fg": 7624, "bg": 7548 },
+ { "id": "mon_zombie_flamer", "fg": 7625, "bg": 7548 },
+ { "id": "corpse_mon_zombie_brainless", "fg": 7582 }
+ ]
+ },
+ {
+ "file": "widevehicle.png",
+ "//": "range 7632 to 8031",
+ "sprite_width": 32,
+ "sprite_height": 48,
+ "sprite_offset_x": 0,
+ "sprite_offset_y": -16,
+ "tiles": [
{
- "id": "vp_board_ne_edge",
- "fg": [ 7356, 7374, 7358, 7373 ],
+ "id": "vp_board_ne",
+ "fg": [ 7639, 7642, 7641, 7640 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7356, 7374, 7358, 7373 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7639, 7642, 7641, 7640 ] } ]
},
{
- "id": "vp_board_nw_edge",
- "fg": [ 7360, 7376, 7362, 7375 ],
+ "id": "vp_board_nw",
+ "fg": [ 7643, 7646, 7645, 7644 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7360, 7376, 7362, 7375 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7643, 7646, 7645, 7644 ] } ]
},
{
- "id": "vp_stowboard_ne",
- "fg": [ 7382, 7385, 7384, 7383 ],
+ "id": "vp_board_se",
+ "fg": [ 7647, 7649, 7643, 7648 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7382, 7385, 7384, 7383 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7647, 7649, 7643, 7648 ] } ]
},
{
- "id": "vp_stowboard_nw",
- "fg": [ 7386, 7389, 7388, 7387 ],
+ "id": "vp_board_sw",
+ "fg": [ 7650, 7652, 7639, 7651 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7386, 7389, 7388, 7387 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7650, 7652, 7639, 7651 ] } ]
},
{
- "id": "vp_stowboard_se",
- "fg": [ 7390, 7392, 7386, 7391 ],
+ "id": "vp_board_vertical_left",
+ "fg": [ 7636, 7653, 7638, 7637 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7390, 7392, 7386, 7391 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7636, 7653, 7638, 7637 ] } ]
},
{
- "id": "vp_stowboard_sw",
- "fg": [ 7393, 7395, 7382, 7394 ],
+ "id": "vp_board_vertical_right",
+ "fg": [ 7638, 7637, 7636, 7653 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7393, 7395, 7382, 7394 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7638, 7637, 7636, 7653 ] } ]
},
{
- "id": "vp_stowboard_vertical_left",
- "fg": [ 7396, 7398, 7399, 7397 ],
+ "id": "vp_board_wheel_left",
+ "fg": [ 7636, 7655, 7638, 7637 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7396, 7398, 7399, 7397 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7636, 7655, 7638, 7637 ] } ]
},
{
- "id": "vp_stowboard_vertical_right",
- "fg": [ 7399, 7397, 7396, 7398 ],
+ "id": "vp_board_wheel_right",
+ "fg": [ 7638, 7637, 7636, 7655 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7399, 7397, 7396, 7398 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7638, 7637, 7636, 7655 ] } ]
},
{
- "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ],
- "fg": [ 7377, 7400, 7377, 7400 ],
+ "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ],
+ "fg": [ 7637, 7654, 7637, 7654 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7377, 7400, 7377, 7400 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7637, 7654, 7637, 7654 ] } ]
},
{
- "id": "vp_stowboard_horizontal_front",
- "fg": [ 7377, 7380, 7379, 7378 ],
+ "id": "vp_board_horizontal_front",
+ "fg": [ 7637, 7634, 7633, 7632 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7377, 7380, 7379, 7378 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7637, 7634, 7633, 7632 ] } ]
},
{
- "id": "vp_stowboard_horizontal_rear",
- "fg": [ 7381, 7378, 7377, 7380 ],
+ "id": "vp_board_horizontal_rear",
+ "fg": [ 7635, 7638, 7637, 7636 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7381, 7378, 7377, 7380 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7635, 7638, 7637, 7636 ] } ]
},
{
- "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ],
- "fg": [ 7400, 7377, 7400, 7377 ],
+ "id": [ "vp_board_vertical", "vp_board_vertical_2" ],
+ "fg": [ 7654, 7637, 7654, 7637 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7400, 7377, 7400, 7377 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7654, 7637, 7654, 7637 ] } ]
},
{
- "id": "vp_stowboard_wheel_left",
- "fg": [ 7380, 7401, 7378, 7397 ],
+ "id": "vp_board_ne_edge",
+ "fg": [ 7639, 7657, 7641, 7656 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7380, 7401, 7378, 7397 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7639, 7657, 7641, 7656 ] } ]
},
{
- "id": "vp_stowboard_wheel_right",
- "fg": [ 7378, 7397, 7380, 7401 ],
+ "id": "vp_board_nw_edge",
+ "fg": [ 7643, 7659, 7645, 7658 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7378, 7397, 7380, 7401 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7643, 7659, 7645, 7658 ] } ]
},
{
"id": "vp_clothboard_ne",
- "fg": [ 7407, 7410, 7409, 7408 ],
+ "fg": [ 7665, 7668, 7667, 7666 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7407, 7410, 7409, 7408 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7665, 7668, 7667, 7666 ] } ]
},
{
"id": "vp_clothboard_nw",
- "fg": [ 7410, 7412, 7411, 7407 ],
+ "fg": [ 7668, 7670, 7669, 7665 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7410, 7412, 7411, 7407 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7668, 7670, 7669, 7665 ] } ]
},
{
"id": "vp_clothboard_se",
- "fg": [ 7413, 7415, 7410, 7414 ],
+ "fg": [ 7671, 7673, 7668, 7672 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7413, 7415, 7410, 7414 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7671, 7673, 7668, 7672 ] } ]
},
{
"id": "vp_clothboard_sw",
- "fg": [ 7416, 7418, 7407, 7417 ],
+ "fg": [ 7674, 7676, 7665, 7675 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7416, 7418, 7407, 7417 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7674, 7676, 7665, 7675 ] } ]
},
{
"id": "vp_clothboard_vertical_left",
- "fg": [ 7404, 7419, 7402, 7406 ],
+ "fg": [ 7662, 7677, 7660, 7664 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7404, 7419, 7402, 7406 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7662, 7677, 7660, 7664 ] } ]
},
{
"id": "vp_clothboard_vertical_right",
- "fg": [ 7402, 7406, 7404, 7419 ],
+ "fg": [ 7660, 7664, 7662, 7677 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7402, 7406, 7404, 7419 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7660, 7664, 7662, 7677 ] } ]
},
{
"id": "vp_clothboard_wheel_left",
- "fg": [ 7404, 7421, 7402, 7406 ],
+ "fg": [ 7662, 7679, 7660, 7664 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7404, 7421, 7402, 7406 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7662, 7679, 7660, 7664 ] } ]
},
{
"id": "vp_clothboard_wheel_right",
- "fg": [ 7402, 7406, 7404, 7421 ],
+ "fg": [ 7660, 7664, 7662, 7679 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7402, 7406, 7404, 7421 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7660, 7664, 7662, 7679 ] } ]
},
{
"id": [ "vp_clothboard", "vp_clothboard_horizontal", "vp_clothboard_horizontal_2" ],
- "fg": [ 7406, 7420, 7406, 7420 ],
+ "fg": [ 7664, 7678, 7664, 7678 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7406, 7420, 7406, 7420 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7664, 7678, 7664, 7678 ] } ]
},
{
"id": "vp_clothboard_horizontal_front",
- "fg": [ 7406, 7404, 7403, 7402 ],
+ "fg": [ 7664, 7662, 7661, 7660 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7406, 7404, 7403, 7402 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7664, 7662, 7661, 7660 ] } ]
},
{
"id": "vp_clothboard_horizontal_rear",
- "fg": [ 7405, 7402, 7406, 7404 ],
+ "fg": [ 7663, 7660, 7664, 7662 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7405, 7402, 7406, 7404 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7663, 7660, 7664, 7662 ] } ]
},
{
"id": [ "vp_clothboard_vertical", "vp_clothboard_vertical_2" ],
- "fg": [ 7420, 7406, 7420, 7406 ],
+ "fg": [ 7678, 7664, 7678, 7664 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7420, 7406, 7420, 7406 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7678, 7664, 7678, 7664 ] } ]
},
{
"id": "vp_clothboard_ne_edge",
- "fg": [ 7407, 7423, 7409, 7422 ],
+ "fg": [ 7665, 7681, 7667, 7680 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7407, 7423, 7409, 7422 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7665, 7681, 7667, 7680 ] } ]
},
{
"id": "vp_clothboard_nw_edge",
- "fg": [ 7410, 7425, 7411, 7424 ],
+ "fg": [ 7668, 7683, 7669, 7682 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7410, 7425, 7411, 7424 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7668, 7683, 7669, 7682 ] } ]
},
{
"id": "vp_clothboard_se_edge",
- "fg": [ 7413, 7427, 7410, 7426 ],
+ "fg": [ 7671, 7685, 7668, 7684 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7413, 7427, 7410, 7426 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7671, 7685, 7668, 7684 ] } ]
},
{
"id": "vp_clothboard_sw_edge",
- "fg": [ 7416, 7429, 7407, 7428 ],
+ "fg": [ 7674, 7687, 7665, 7686 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7416, 7429, 7407, 7428 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7674, 7687, 7665, 7686 ] } ]
},
{
"id": [
@@ -11571,11 +11852,11 @@
"vp_door_full_sw",
"vp_door_full_rear_left"
],
- "fg": [ 7498, 7505, 7504, 7503 ],
+ "fg": [ 7756, 7763, 7762, 7761 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7499, 7502, 7501, 7500 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7499, 7502, 7501, 7500 ] }
+ { "id": "open", "fg": [ 7757, 7760, 7759, 7758 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7757, 7760, 7759, 7758 ] }
]
},
{
@@ -11587,341 +11868,341 @@
"vp_door_full_se",
"vp_door_full_rear_right"
],
- "fg": [ 7524, 7523, 7522, 7507 ],
+ "fg": [ 7782, 7781, 7780, 7765 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7521, 7520, 7519, 7506 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7521, 7520, 7519, 7506 ] }
+ { "id": "open", "fg": [ 7779, 7778, 7777, 7764 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7779, 7778, 7777, 7764 ] }
]
},
{
"id": "vp_door_opaque_full_left",
- "fg": [ 7508, 7511, 7510, 7509 ],
+ "fg": [ 7766, 7769, 7768, 7767 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7499, 7502, 7501, 7500 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7499, 7502, 7501, 7500 ] }
+ { "id": "open", "fg": [ 7757, 7760, 7759, 7758 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7757, 7760, 7759, 7758 ] }
]
},
{
"id": "vp_door_opaque_full_right",
- "fg": [ 7516, 7515, 7514, 7512 ],
+ "fg": [ 7774, 7773, 7772, 7770 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7521, 7520, 7519, 7506 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7521, 7520, 7519, 7506 ] }
+ { "id": "open", "fg": [ 7779, 7778, 7777, 7764 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7779, 7778, 7777, 7764 ] }
]
},
{
"id": [ "vp_door_left", "vp_door_vertical_left" ],
- "fg": [ 7434, 7437, 7436, 7435 ],
+ "fg": [ 7692, 7695, 7694, 7693 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7443, 7445, 7444, 7442 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7443, 7445, 7444, 7442 ] }
+ { "id": "open", "fg": [ 7701, 7703, 7702, 7700 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7701, 7703, 7702, 7700 ] }
]
},
{
"id": "vp_door_nw",
- "fg": [ 7454, 7461, 7460, 7459 ],
+ "fg": [ 7712, 7719, 7718, 7717 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7455, 7458, 7457, 7456 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7443, 7445, 7444, 7442 ] }
+ { "id": "open", "fg": [ 7713, 7716, 7715, 7714 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7701, 7703, 7702, 7700 ] }
]
},
{
"id": "vp_door_front_left",
- "fg": [ 7545, 7552, 7551, 7550 ],
+ "fg": [ 7803, 7810, 7809, 7808 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7546, 7549, 7548, 7547 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7546, 7549, 7548, 7547 ] }
+ { "id": "open", "fg": [ 7804, 7807, 7806, 7805 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7804, 7807, 7806, 7805 ] }
]
},
{
"id": [ "vp_door_sw", "vp_door_rear_left" ],
- "fg": [ 7490, 7497, 7496, 7495 ],
+ "fg": [ 7748, 7755, 7754, 7753 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7491, 7494, 7493, 7492 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7443, 7445, 7444, 7442 ] }
+ { "id": "open", "fg": [ 7749, 7752, 7751, 7750 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7701, 7703, 7702, 7700 ] }
]
},
{
"id": [ "vp_door_right", "vp_door_vertical_right" ],
- "fg": [ 7438, 7441, 7440, 7439 ],
+ "fg": [ 7696, 7699, 7698, 7697 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7479, 7481, 7480, 7478 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7479, 7481, 7480, 7478 ] }
+ { "id": "open", "fg": [ 7737, 7739, 7738, 7736 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7737, 7739, 7738, 7736 ] }
]
},
{
"id": "vp_door_ne",
- "fg": [ 7446, 7453, 7452, 7451 ],
+ "fg": [ 7704, 7711, 7710, 7709 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7447, 7450, 7449, 7448 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7479, 7481, 7480, 7478 ] }
+ { "id": "open", "fg": [ 7705, 7708, 7707, 7706 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7737, 7739, 7738, 7736 ] }
]
},
{
"id": "vp_door_front_right",
- "fg": [ 7537, 7544, 7543, 7542 ],
+ "fg": [ 7795, 7802, 7801, 7800 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7538, 7541, 7540, 7539 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7538, 7541, 7540, 7539 ] }
+ { "id": "open", "fg": [ 7796, 7799, 7798, 7797 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7796, 7799, 7798, 7797 ] }
]
},
{
"id": [ "vp_door_se", "vp_door_rear_right" ],
- "fg": [ 7482, 7489, 7488, 7487 ],
+ "fg": [ 7740, 7747, 7746, 7745 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7483, 7486, 7485, 7484 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7479, 7481, 7480, 7478 ] }
+ { "id": "open", "fg": [ 7741, 7744, 7743, 7742 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7737, 7739, 7738, 7736 ] }
]
},
{
"id": "vp_door_opaque_left",
- "fg": [ 7467, 7469, 7468, 7466 ],
+ "fg": [ 7725, 7727, 7726, 7724 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7463, 7465, 7464, 7462 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7463, 7465, 7464, 7462 ] }
+ { "id": "open", "fg": [ 7721, 7723, 7722, 7720 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7721, 7723, 7722, 7720 ] }
]
},
{
"id": "vp_door_opaque_right",
- "fg": [ 7475, 7477, 7476, 7474 ],
+ "fg": [ 7733, 7735, 7734, 7732 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7471, 7473, 7472, 7470 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7471, 7473, 7472, 7470 ] }
+ { "id": "open", "fg": [ 7729, 7731, 7730, 7728 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7729, 7731, 7730, 7728 ] }
]
},
{
"id": [ "vp_door_rear", "vp_door_horizontal_rear" ],
- "fg": [ 7517, 7524, 7523, 7522 ],
+ "fg": [ 7775, 7782, 7781, 7780 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7518, 7521, 7520, 7519 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7518, 7521, 7520, 7519 ] }
+ { "id": "open", "fg": [ 7776, 7779, 7778, 7777 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7776, 7779, 7778, 7777 ] }
]
},
{
"id": [ "vp_door_front", "vp_door_horizontal_front" ],
- "fg": [ 7523, 7522, 7517, 7524 ],
+ "fg": [ 7781, 7780, 7775, 7782 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7520, 7519, 7518, 7521 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7520, 7519, 7518, 7521 ] }
+ { "id": "open", "fg": [ 7778, 7777, 7776, 7779 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7778, 7777, 7776, 7779 ] }
]
},
{
"id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ],
- "fg": [ 7513, 7516, 7515, 7514 ],
+ "fg": [ 7771, 7774, 7773, 7772 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7518, 7521, 7520, 7519 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7518, 7521, 7520, 7519 ] }
+ { "id": "open", "fg": [ 7776, 7779, 7778, 7777 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7776, 7779, 7778, 7777 ] }
]
},
{
"id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ],
- "fg": [ 7515, 7514, 7513, 7516 ],
+ "fg": [ 7773, 7772, 7771, 7774 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7520, 7519, 7518, 7521 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7520, 7519, 7518, 7521 ] }
+ { "id": "open", "fg": [ 7778, 7777, 7776, 7779 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7778, 7777, 7776, 7779 ] }
]
},
{
"id": "vp_door_sliding",
- "fg": [ 7516, 7515, 7514, 7512 ],
+ "fg": [ 7774, 7773, 7772, 7770 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7563, 7564, 7565, 7566 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7563, 7564, 7565, 7566 ] }
+ { "id": "open", "fg": [ 7821, 7822, 7823, 7824 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7821, 7822, 7823, 7824 ] }
]
},
{
"id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ],
- "fg": [ 7533, 7532, 7535, 7532 ],
+ "fg": [ 7791, 7790, 7793, 7790 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7534, 7531, 7536, 7531 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7534, 7531, 7536, 7531 ] }
+ { "id": "open", "fg": [ 7792, 7789, 7794, 7789 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7792, 7789, 7794, 7789 ] }
]
},
{
"id": "vp_door_internal_front",
- "fg": [ 7515, 7530, 7529, 7528 ],
+ "fg": [ 7773, 7788, 7787, 7786 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7520, 7527, 7526, 7525 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7520, 7527, 7526, 7525 ] }
+ { "id": "open", "fg": [ 7778, 7785, 7784, 7783 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7778, 7785, 7784, 7783 ] }
]
},
{
"id": "vp_door_shutter",
- "fg": [ 7555, 7553, 7554, 7556 ],
+ "fg": [ 7813, 7811, 7812, 7814 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7560, 7558, 7559, 7561 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7560, 7558, 7559, 7561 ] }
+ { "id": "open", "fg": [ 7818, 7816, 7817, 7819 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7818, 7816, 7817, 7819 ] }
]
},
{
"id": "vp_door_shutter_left",
- "fg": [ 7556, 7557, 7553, 7554 ],
+ "fg": [ 7814, 7815, 7811, 7812 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7561, 7562, 7558, 7559 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7561, 7562, 7558, 7559 ] }
+ { "id": "open", "fg": [ 7819, 7820, 7816, 7817 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7819, 7820, 7816, 7817 ] }
]
},
{
"id": "vp_door_shutter_right",
- "fg": [ 7553, 7554, 7556, 7557 ],
+ "fg": [ 7811, 7812, 7814, 7815 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7558, 7559, 7561, 7562 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7558, 7559, 7561, 7562 ] }
+ { "id": "open", "fg": [ 7816, 7817, 7819, 7820 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7816, 7817, 7819, 7820 ] }
]
},
{
"id": "vp_halfboard_ne",
- "fg": [ 7587, 7590, 7589, 7588 ],
+ "fg": [ 7845, 7848, 7847, 7846 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7587, 7590, 7589, 7588 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7845, 7848, 7847, 7846 ] } ]
},
{
"id": "vp_halfboard_nw",
- "fg": [ 7591, 7594, 7593, 7592 ],
+ "fg": [ 7849, 7852, 7851, 7850 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7591, 7594, 7593, 7592 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7849, 7852, 7851, 7850 ] } ]
},
{
"id": "vp_halfboard_se",
- "fg": [ 7595, 7598, 7597, 7596 ],
+ "fg": [ 7853, 7856, 7855, 7854 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7595, 7598, 7597, 7596 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7853, 7856, 7855, 7854 ] } ]
},
{
"id": "vp_halfboard_sw",
- "fg": [ 7599, 7602, 7601, 7600 ],
+ "fg": [ 7857, 7860, 7859, 7858 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7599, 7602, 7601, 7600 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7857, 7860, 7859, 7858 ] } ]
},
{
"id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ],
- "fg": [ 7603, 7605, 7606, 7604 ],
+ "fg": [ 7861, 7863, 7864, 7862 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7603, 7605, 7606, 7604 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7861, 7863, 7864, 7862 ] } ]
},
{
"id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ],
- "fg": [ 7606, 7604, 7603, 7605 ],
+ "fg": [ 7864, 7862, 7861, 7863 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7606, 7604, 7603, 7605 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7864, 7862, 7861, 7863 ] } ]
},
{
"id": "vp_halfboard_vertical_t_left",
- "fg": [ 7610, 7612, 7611, 7609 ],
+ "fg": [ 7868, 7870, 7869, 7867 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7610, 7612, 7611, 7609 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7868, 7870, 7869, 7867 ] } ]
},
{
"id": "vp_halfboard_vertical_t_right",
- "fg": [ 7614, 7616, 7615, 7613 ],
+ "fg": [ 7872, 7874, 7873, 7871 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7614, 7616, 7615, 7613 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7872, 7874, 7873, 7871 ] } ]
},
{
"id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ],
- "fg": [ 7584, 7586, 7585, 7583 ],
+ "fg": [ 7842, 7844, 7843, 7841 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7584, 7586, 7585, 7583 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7842, 7844, 7843, 7841 ] } ]
},
{
"id": [ "vp_halfboard_horizontal_front", "vp_halfboard_horizontal_2_front", "vp_halfboard_cover" ],
- "fg": [ 7575, 7578, 7577, 7576 ],
+ "fg": [ 7833, 7836, 7835, 7834 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7575, 7578, 7577, 7576 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7833, 7836, 7835, 7834 ] } ]
},
{
"id": "vp_halfboard_horizontal_rear",
- "fg": [ 7579, 7582, 7581, 7580 ],
+ "fg": [ 7837, 7840, 7839, 7838 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7579, 7582, 7581, 7580 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7837, 7840, 7839, 7838 ] } ]
},
{
"id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ],
- "fg": [ 7608, 7607, 7608, 7607 ],
+ "fg": [ 7866, 7865, 7866, 7865 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7608, 7607, 7608, 7607 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7866, 7865, 7866, 7865 ] } ]
},
{
"id": "vp_halfboard_cover_left",
- "fg": [ 7567, 7570, 7569, 7568 ],
+ "fg": [ 7825, 7828, 7827, 7826 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7567, 7570, 7569, 7568 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7825, 7828, 7827, 7826 ] } ]
},
{
"id": "vp_halfboard_cover_right",
- "fg": [ 7571, 7574, 7573, 7572 ],
+ "fg": [ 7829, 7832, 7831, 7830 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7571, 7574, 7573, 7572 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7829, 7832, 7831, 7830 ] } ]
},
{
"id": "vp_halfboard_wheel_left",
- "fg": [ 7617, 7620, 7619, 7618 ],
+ "fg": [ 7875, 7878, 7877, 7876 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7617, 7620, 7619, 7618 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7875, 7878, 7877, 7876 ] } ]
},
{
"id": "vp_halfboard_wheel_right",
- "fg": [ 7621, 7624, 7623, 7622 ],
+ "fg": [ 7879, 7882, 7881, 7880 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7621, 7624, 7623, 7622 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7879, 7882, 7881, 7880 ] } ]
},
{
"id": "vp_hddoor_left",
- "fg": [ 7626, 7628, 7627, 7625 ],
+ "fg": [ 7884, 7886, 7885, 7883 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7634, 7636, 7635, 7633 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7634, 7636, 7635, 7633 ] }
+ { "id": "open", "fg": [ 7892, 7894, 7893, 7891 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7892, 7894, 7893, 7891 ] }
]
},
{
"id": "vp_hddoor_right",
- "fg": [ 7630, 7632, 7631, 7629 ],
+ "fg": [ 7888, 7890, 7889, 7887 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7654, 7656, 7655, 7653 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7654, 7656, 7655, 7653 ] }
+ { "id": "open", "fg": [ 7912, 7914, 7913, 7911 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7912, 7914, 7913, 7911 ] }
]
},
{
"id": "vp_hddoor_opaque_left",
- "fg": [ 7642, 7644, 7643, 7641 ],
+ "fg": [ 7900, 7902, 7901, 7899 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7638, 7640, 7639, 7637 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7638, 7640, 7639, 7637 ] }
+ { "id": "open", "fg": [ 7896, 7898, 7897, 7895 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7896, 7898, 7897, 7895 ] }
]
},
{
"id": "vp_hddoor_opaque_right",
- "fg": [ 7650, 7652, 7651, 7649 ],
+ "fg": [ 7908, 7910, 7909, 7907 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7646, 7648, 7647, 7645 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7646, 7648, 7647, 7645 ] }
+ { "id": "open", "fg": [ 7904, 7906, 7905, 7903 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7904, 7906, 7905, 7903 ] }
]
},
{
@@ -11933,11 +12214,11 @@
"vp_hddoor_full_sw",
"vp_hddoor_full_rear_left"
],
- "fg": [ 7626, 7628, 7627, 7625 ],
+ "fg": [ 7884, 7886, 7885, 7883 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7634, 7636, 7635, 7633 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7634, 7636, 7635, 7633 ] }
+ { "id": "open", "fg": [ 7892, 7894, 7893, 7891 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7892, 7894, 7893, 7891 ] }
]
},
{
@@ -11949,722 +12230,644 @@
"vp_hddoor_full_se",
"vp_hddoor_full_rear_right"
],
- "fg": [ 7630, 7632, 7631, 7629 ],
+ "fg": [ 7888, 7890, 7889, 7887 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7654, 7656, 7655, 7653 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7654, 7656, 7655, 7653 ] }
+ { "id": "open", "fg": [ 7912, 7914, 7913, 7911 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7912, 7914, 7913, 7911 ] }
]
},
{
"id": "vp_hddoor_opaque_full_left",
- "fg": [ 7642, 7644, 7643, 7641 ],
+ "fg": [ 7900, 7902, 7901, 7899 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7638, 7640, 7639, 7637 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7638, 7640, 7639, 7637 ] }
+ { "id": "open", "fg": [ 7896, 7898, 7897, 7895 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7896, 7898, 7897, 7895 ] }
]
},
{
"id": "vp_hddoor_opaque_full_right",
- "fg": [ 7650, 7652, 7651, 7649 ],
+ "fg": [ 7908, 7910, 7909, 7907 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7646, 7648, 7647, 7645 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7646, 7648, 7647, 7645 ] }
+ { "id": "open", "fg": [ 7904, 7906, 7905, 7903 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7904, 7906, 7905, 7903 ] }
]
},
+ { "id": "vp_saddle_scooter", "fg": [ 7916, 7918, 7917, 7915 ], "rotates": true },
{
"id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ],
- "fg": [ 7658, 7660, 7659, 7657 ],
+ "fg": [ 7920, 7922, 7921, 7919 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7658, 7660, 7659, 7657 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7920, 7922, 7921, 7919 ] } ]
},
{
"id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ],
- "fg": [ 7662, 7664, 7663, 7661 ],
+ "fg": [ 7924, 7926, 7925, 7923 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7662, 7664, 7663, 7661 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7924, 7926, 7925, 7923 ] } ]
},
{
"id": "vp_bed",
- "fg": [ 7666, 7668, 7667, 7665 ],
+ "fg": [ 7928, 7930, 7929, 7927 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7666, 7668, 7667, 7665 ] } ]
- },
- {
- "id": "vp_door_trunk",
- "fg": [ 7669, 7676, 7675, 7674 ],
- "multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7670, 7673, 7672, 7671 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7670, 7673, 7672, 7671 ] }
- ]
- },
- {
- "id": "vp_door_trunk_horizontal_2",
- "fg": [ 7677, 7684, 7683, 7682 ],
- "multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7678, 7681, 7680, 7679 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7678, 7681, 7680, 7679 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7928, 7930, 7929, 7927 ] } ]
},
{
"id": "vp_hatch_left",
- "fg": [ 7687, 7694, 7693, 7692 ],
+ "fg": [ 7933, 7940, 7939, 7938 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7688, 7691, 7690, 7689 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7688, 7691, 7690, 7689 ] }
+ { "id": "open", "fg": [ 7934, 7937, 7936, 7935 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7934, 7937, 7936, 7935 ] }
]
},
{
"id": "vp_hatch_right",
- "fg": [ 7693, 7692, 7687, 7694 ],
+ "fg": [ 7939, 7938, 7933, 7940 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7690, 7689, 7688, 7691 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7690, 7689, 7688, 7691 ] }
+ { "id": "open", "fg": [ 7936, 7935, 7934, 7937 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7936, 7935, 7934, 7937 ] }
]
},
{
"id": "vp_hatch_wheel_left",
- "fg": [ 7687, 7708, 7693, 7692 ],
+ "fg": [ 7933, 7954, 7939, 7938 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7688, 7707, 7690, 7689 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7688, 7691, 7690, 7689 ] }
+ { "id": "open", "fg": [ 7934, 7953, 7936, 7935 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7934, 7937, 7936, 7935 ] }
]
},
{
"id": "vp_hatch_wheel_right",
- "fg": [ 7693, 7692, 7687, 7708 ],
+ "fg": [ 7939, 7938, 7933, 7954 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7690, 7689, 7688, 7707 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7690, 7689, 7688, 7707 ] }
+ { "id": "open", "fg": [ 7936, 7935, 7934, 7953 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7936, 7935, 7934, 7953 ] }
]
},
{
"id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ],
- "fg": [ 7685, 7693, 7692, 7687 ],
+ "fg": [ 7931, 7939, 7938, 7933 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7686, 7690, 7689, 7688 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7686, 7690, 7689, 7688 ] }
+ { "id": "open", "fg": [ 7932, 7936, 7935, 7934 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7932, 7936, 7935, 7934 ] }
]
},
{
"id": "vp_hatch_horizontal_front",
- "fg": [ 7692, 7687, 7685, 7693 ],
+ "fg": [ 7938, 7933, 7931, 7939 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7689, 7688, 7686, 7690 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7689, 7688, 7686, 7690 ] }
+ { "id": "open", "fg": [ 7935, 7934, 7932, 7936 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7935, 7934, 7932, 7936 ] }
]
},
{
"id": "vp_hatch_opaque_left",
- "fg": [ 7697, 7704, 7703, 7702 ],
+ "fg": [ 7943, 7950, 7949, 7948 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7698, 7701, 7700, 7699 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7698, 7701, 7700, 7699 ] }
+ { "id": "open", "fg": [ 7944, 7947, 7946, 7945 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7944, 7947, 7946, 7945 ] }
]
},
{
"id": "vp_hatch_opaque_right",
- "fg": [ 7703, 7702, 7697, 7704 ],
+ "fg": [ 7949, 7948, 7943, 7950 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7700, 7699, 7698, 7701 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7700, 7699, 7698, 7701 ] }
+ { "id": "open", "fg": [ 7946, 7945, 7944, 7947 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7946, 7945, 7944, 7947 ] }
]
},
{
"id": "vp_hatch_opaque_wheel_left",
- "fg": [ 7697, 7706, 7703, 7702 ],
+ "fg": [ 7943, 7952, 7949, 7948 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7698, 7705, 7700, 7699 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7698, 7705, 7700, 7699 ] }
+ { "id": "open", "fg": [ 7944, 7951, 7946, 7945 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7944, 7951, 7946, 7945 ] }
]
},
{
"id": "vp_hatch_opaque_wheel_right",
- "fg": [ 7703, 7702, 7697, 7706 ],
+ "fg": [ 7949, 7948, 7943, 7952 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7700, 7699, 7698, 7705 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7700, 7699, 7698, 7705 ] }
+ { "id": "open", "fg": [ 7946, 7945, 7944, 7951 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7946, 7945, 7944, 7951 ] }
]
},
{
"id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ],
- "fg": [ 7695, 7703, 7702, 7697 ],
+ "fg": [ 7941, 7949, 7948, 7943 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7696, 7700, 7699, 7698 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7696, 7700, 7699, 7698 ] }
+ { "id": "open", "fg": [ 7942, 7946, 7945, 7944 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7942, 7946, 7945, 7944 ] }
]
},
{
"id": "vp_hatch_opaque_horizontal_front",
- "fg": [ 7702, 7697, 7695, 7703 ],
+ "fg": [ 7948, 7943, 7941, 7949 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7699, 7698, 7696, 7700 ] },
- { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7699, 7698, 7696, 7700 ] }
+ { "id": "open", "fg": [ 7945, 7944, 7942, 7946 ] },
+ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7945, 7944, 7942, 7946 ] }
]
},
{
"id": [ "vp_wheel_wide", "vp_wheel_wide_steerable", "vp_wheel_wide_or", "vp_wheel_wide_or_steerable" ],
- "fg": [ 7710, 7709, 7710, 7709 ],
+ "fg": [ 7956, 7955, 7956, 7955 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": [ 7710, 7709, 7710, 7709 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": [ 7956, 7955, 7956, 7955 ] } ]
},
{
"id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ],
- "fg": [ 7719, 7722, 7721, 7720 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7719, 7722, 7721, 7720 ] } ],
+ "fg": [ 7965, 7968, 7967, 7966 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 7965, 7968, 7967, 7966 ] } ],
"multitile": true
},
{
"id": "vp_windshield_horizontal_rear",
- "fg": [ 7736, 7737, 7736, 7735 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7736, 7737, 7736, 7735 ] } ],
+ "fg": [ 7982, 7983, 7982, 7981 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 7982, 7983, 7982, 7981 ] } ],
"multitile": true
},
{
"id": "vp_windshield_nw",
- "fg": [ 7731, 7734, 7733, 7732 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7432, 7432, 7432, 7432 ], "bg": [ 7731, 7734, 7733, 7732 ] } ],
+ "fg": [ 7977, 7980, 7979, 7978 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7690, 7690, 7690, 7690 ], "bg": [ 7977, 7980, 7979, 7978 ] } ],
"multitile": true
},
{
"id": "vp_windshield_ne",
- "fg": [ 7727, 7730, 7729, 7728 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7431, 7431, 7431, 7431 ], "bg": [ 7727, 7730, 7729, 7728 ] } ],
+ "fg": [ 7973, 7976, 7975, 7974 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7689, 7689, 7689, 7689 ], "bg": [ 7973, 7976, 7975, 7974 ] } ],
"multitile": true
},
{
"id": "vp_windshield_sw",
- "fg": [ 7723, 7726, 7738, 7724 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7432, 7432, 7432, 7432 ], "bg": [ 7723, 7726, 7738, 7724 ] } ],
+ "fg": [ 7969, 7972, 7984, 7970 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7690, 7690, 7690, 7690 ], "bg": [ 7969, 7972, 7984, 7970 ] } ],
"multitile": true
},
{
"id": "vp_windshield_se",
- "fg": [ 7725, 7741, 7723, 7739 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7431, 7431, 7431, 7431 ], "bg": [ 7725, 7741, 7723, 7739 ] } ],
+ "fg": [ 7971, 7987, 7969, 7985 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7689, 7689, 7689, 7689 ], "bg": [ 7971, 7987, 7969, 7985 ] } ],
"multitile": true
},
{
"id": [ "vp_windshield_vertical_left", "vp_windshield_left" ],
- "fg": [ 7723, 7726, 7725, 7724 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7431, 7431, 7431, 7431 ], "bg": [ 7723, 7726, 7725, 7724 ] } ],
+ "fg": [ 7969, 7972, 7971, 7970 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7689, 7689, 7689, 7689 ], "bg": [ 7969, 7972, 7971, 7970 ] } ],
"multitile": true
},
{
"id": [ "vp_windshield_vertical_right", "vp_windshield_right" ],
- "fg": [ 7738, 7741, 7740, 7739 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7432, 7432, 7432, 7432 ], "bg": [ 7738, 7741, 7740, 7739 ] } ],
+ "fg": [ 7984, 7987, 7986, 7985 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7690, 7690, 7690, 7690 ], "bg": [ 7984, 7987, 7986, 7985 ] } ],
"multitile": true
},
{
"id": "vp_windshield_cover_left",
- "fg": [ 7711, 7714, 7713, 7712 ],
+ "fg": [ 7957, 7960, 7959, 7958 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7711, 7714, 7713, 7712 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7957, 7960, 7959, 7958 ] } ]
},
{
"id": "vp_windshield_cover_right",
- "fg": [ 7715, 7718, 7717, 7716 ],
+ "fg": [ 7961, 7964, 7963, 7962 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7715, 7718, 7717, 7716 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7961, 7964, 7963, 7962 ] } ]
},
{
"id": "vp_windshield_wheel_left",
- "fg": [ 7743, 7746, 7745, 7744 ],
+ "fg": [ 7989, 7992, 7991, 7990 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7743, 7746, 7745, 7744 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7989, 7992, 7991, 7990 ] } ]
},
{
"id": "vp_windshield_wheel_right",
- "fg": [ 7747, 7750, 7749, 7748 ],
+ "fg": [ 7993, 7996, 7995, 7994 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7433, 7433, 7433, 7433 ], "bg": [ 7747, 7750, 7749, 7748 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7691, 7691, 7691, 7691 ], "bg": [ 7993, 7996, 7995, 7994 ] } ]
},
{
"id": "vp_windshield_vertical_2_left",
- "fg": [ 7723, 7742, 7725, 7724 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7431, 7431, 7431, 7431 ], "bg": [ 7723, 7742, 7725, 7724 ] } ],
+ "fg": [ 7969, 7988, 7971, 7970 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7689, 7689, 7689, 7689 ], "bg": [ 7969, 7988, 7971, 7970 ] } ],
"multitile": true
},
{
"id": "vp_windshield_vertical_2_right",
- "fg": [ 7738, 7741, 7740, 7742 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7432, 7432, 7432, 7432 ], "bg": [ 7738, 7741, 7740, 7742 ] } ],
+ "fg": [ 7984, 7987, 7986, 7988 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7690, 7690, 7690, 7690 ], "bg": [ 7984, 7987, 7986, 7988 ] } ],
"multitile": true
},
{
"id": [ "vp_windshield_full", "vp_windshield_full_horizontal_rear" ],
- "fg": [ 7753, 7751, 7752, 7754 ],
- "additional_tiles": [ { "id": "broken", "fg": 7061, "bg": [ 7753, 7751, 7752, 7754 ] } ],
+ "fg": [ 7999, 7997, 7998, 8000 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7204, "bg": [ 7999, 7997, 7998, 8000 ] } ],
"multitile": true
},
{
"id": "vp_windshield_full_horizontal_front",
- "fg": [ 7752, 7754, 7753, 7751 ],
- "additional_tiles": [ { "id": "broken", "fg": 7061, "bg": [ 7752, 7754, 7753, 7751 ] } ],
+ "fg": [ 7998, 8000, 7999, 7997 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7204, "bg": [ 7998, 8000, 7999, 7997 ] } ],
"multitile": true
},
{
"id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ],
- "fg": [ 7754, 7755, 7751, 7752 ],
- "additional_tiles": [ { "id": "broken", "fg": 7061, "bg": [ 7754, 7755, 7751, 7752 ] } ],
+ "fg": [ 8000, 8001, 7997, 7998 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7204, "bg": [ 8000, 8001, 7997, 7998 ] } ],
"multitile": true
},
{
"id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ],
- "fg": [ 7751, 7752, 7754, 7755 ],
- "additional_tiles": [ { "id": "broken", "fg": 7061, "bg": [ 7751, 7752, 7754, 7755 ] } ],
+ "fg": [ 7997, 7998, 8000, 8001 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7204, "bg": [ 7997, 7998, 8000, 8001 ] } ],
"multitile": true
},
{
"id": "vp_windshield_full_wheel_left",
- "fg": [ 7754, 7756, 7751, 7752 ],
- "additional_tiles": [ { "id": "broken", "fg": 7061, "bg": [ 7754, 7756, 7751, 7752 ] } ],
+ "fg": [ 8000, 8002, 7997, 7998 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7204, "bg": [ 8000, 8002, 7997, 7998 ] } ],
"multitile": true
},
{
"id": "vp_windshield_full_wheel_right",
- "fg": [ 7751, 7752, 7754, 7756 ],
- "additional_tiles": [ { "id": "broken", "fg": 7061, "bg": [ 7751, 7752, 7754, 7756 ] } ],
+ "fg": [ 7997, 7998, 8000, 8002 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7204, "bg": [ 7997, 7998, 8000, 8002 ] } ],
"multitile": true
},
{
"id": "vp_windshield_horizontal_front_edge",
- "fg": [ 7758, 7760, 7759, 7757 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7758, 7760, 7759, 7757 ] } ],
+ "fg": [ 8004, 8006, 8005, 8003 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 8004, 8006, 8005, 8003 ] } ],
"multitile": true
},
{
"id": "vp_windshield_horizontal_rear_edge",
- "fg": [ 7769, 7772, 7771, 7770 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7769, 7772, 7771, 7770 ] } ],
+ "fg": [ 8015, 8018, 8017, 8016 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 8015, 8018, 8017, 8016 ] } ],
"multitile": true
},
{
"id": "vp_windshield_nw_edge",
- "fg": [ 7766, 7768, 7767, 7765 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7766, 7768, 7767, 7765 ] } ],
+ "fg": [ 8012, 8014, 8013, 8011 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 8012, 8014, 8013, 8011 ] } ],
"multitile": true
},
{
"id": "vp_windshield_ne_edge",
- "fg": [ 7762, 7764, 7763, 7761 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7762, 7764, 7763, 7761 ] } ],
+ "fg": [ 8008, 8010, 8009, 8007 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 8008, 8010, 8009, 8007 ] } ],
"multitile": true
},
{
"id": "vp_windshield_sw_edge",
- "fg": [ 7599, 7602, 7601, 7600 ],
+ "fg": [ 7857, 7860, 7859, 7858 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7599, 7602, 7601, 7600 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 7857, 7860, 7859, 7858 ] } ]
},
{
"id": "vp_windshield_se_edge",
- "fg": [ 7595, 7598, 7597, 7596 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7430, 7430, 7430, 7430 ], "bg": [ 7595, 7598, 7597, 7596 ] } ]
- },
- { "id": "f_street_light", "fg": 7347 },
- { "id": "f_traffic_light", "fg": 7348 }
- ]
- },
- {
- "file": "incomplete_large.png",
- "//": "range 7776 to 7823",
- "sprite_width": 64,
- "sprite_height": 64,
- "sprite_offset_x": -16,
- "sprite_offset_y": -32,
- "tiles": [
- { "id": "mon_science_bot", "fg": 7779, "bg": 6473 },
- {
- "id": "vp_halfboard_hatch_wheel_left",
- "fg": [ 7782, 7785, 7784, 7783 ],
+ "fg": [ 7853, 7856, 7855, 7854 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7781, 7781, 7781, 7781 ], "bg": [ 7782, 7785, 7784, 7783 ] } ]
- },
- {
- "id": "vp_halfboard_hatch_wheel_right",
- "fg": [ 7786, 7789, 7788, 7787 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7781, 7781, 7781, 7781 ], "bg": [ 7786, 7789, 7788, 7787 ] } ]
- },
- {
- "id": "vp_halfboard_horizontal_2_rear",
- "fg": [ 7790, 7793, 7792, 7791 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7781, 7781, 7781, 7781 ], "bg": [ 7790, 7793, 7792, 7791 ] } ]
- },
- {
- "id": "vp_hatch",
- "fg": [ 7794, 7809, 7808, 7807 ],
- "multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7803, 7806, 7805, 7804 ] },
- { "id": "broken", "fg": [ 7781, 7781, 7781, 7781 ], "bg": [ 7803, 7806, 7805, 7804 ] }
- ]
- },
- {
- "id": "vp_hatch_opaque",
- "fg": [ 7795, 7802, 7801, 7800 ],
- "multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7796, 7799, 7798, 7797 ] },
- { "id": "broken", "fg": [ 7781, 7781, 7781, 7781 ], "bg": [ 7796, 7799, 7798, 7797 ] }
- ]
- },
- {
- "id": "vp_door_trunk_hatch_wheel_left",
- "fg": [ 7810, 7817, 7816, 7815 ],
- "multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7811, 7814, 7813, 7812 ] },
- { "id": "broken", "fg": [ 7781, 7781, 7781, 7781 ], "bg": [ 7811, 7814, 7813, 7812 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7688, 7688, 7688, 7688 ], "bg": [ 7853, 7856, 7855, 7854 ] } ]
}
]
},
{
"file": "fillerhoder.png",
- "//": "range 7824 to 7903",
+ "//": "range 8032 to 8111",
"tiles": [
{
"id": "f_sandbag_wall",
- "fg": 7824,
+ "fg": 8032,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 7824 },
- { "id": "center", "fg": 7825 },
- { "id": "corner", "fg": 7826 },
- { "id": "edge", "fg": 7827 },
- { "id": "end_piece", "fg": 7828 },
- { "id": "t_connection", "fg": 7829 }
+ { "id": "unconnected", "fg": 8032 },
+ { "id": "center", "fg": 8033 },
+ { "id": "corner", "fg": 8034 },
+ { "id": "edge", "fg": 8035 },
+ { "id": "end_piece", "fg": 8036 },
+ { "id": "t_connection", "fg": 8037 }
]
},
- { "id": "f_slab", "fg": 7830 },
- { "id": "animation_bullet_flame", "fg": 7831, "rotates": false },
- { "id": "animation_bullet_normal", "fg": 7832, "rotates": false },
- { "id": "animation_bullet_shrapnel", "fg": 7833 },
+ { "id": "f_slab", "fg": 8038 },
+ { "id": "animation_bullet_flame", "fg": 8039, "rotates": false },
+ { "id": "animation_bullet_normal", "fg": 8040, "rotates": false },
+ { "id": "animation_bullet_shrapnel", "fg": 8041 },
{
"id": "explosion",
- "fg": 7834,
+ "fg": 8042,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 7834 }, { "id": "edge", "fg": 7835 } ]
+ "additional_tiles": [ { "id": "corner", "fg": 8042 }, { "id": "edge", "fg": 8043 } ]
},
{
"id": "explosion_medium",
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 7834 }, { "id": "edge", "fg": 7835 } ],
- "fg": 7834
+ "additional_tiles": [ { "id": "corner", "fg": 8042 }, { "id": "edge", "fg": 8043 } ],
+ "fg": 8042
},
{
"id": "explosion_weak",
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 7834 }, { "id": "edge", "fg": 7835 } ],
- "fg": 7834
+ "additional_tiles": [ { "id": "corner", "fg": 8042 }, { "id": "edge", "fg": 8043 } ],
+ "fg": 8042
},
{
"id": "vp_chimes",
- "fg": 7836,
+ "fg": 8044,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7836 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8044 } ]
},
{
"id": "vp_robot_controls",
- "fg": 7837,
+ "fg": 8045,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7837 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8045 } ]
},
- { "id": "t_manhole", "fg": 7838, "bg": 5096, "rotates": false },
- { "id": "t_manhole_cover", "fg": 7839, "bg": 5096 },
- { "id": "manhole_cover", "fg": 7839 },
- { "id": "t_pit_corpsed", "fg": 7840, "bg": 4627 },
- { "id": "t_pit_corpsed_season_winter", "fg": 7840, "bg": 4358 },
+ { "id": "t_pit_corpsed", "fg": 8046, "bg": 4790 },
+ { "id": "t_pit_corpsed_season_winter", "fg": 8046, "bg": 4521 },
{
"id": [ "vp_external_tank", "vp_external_tank_small" ],
- "fg": 7842,
+ "fg": 8048,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7842 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8048 } ]
},
- { "id": "vp_ram_wood", "fg": [ 7855, 7857, 7856, 7858 ], "rotates": true },
- { "id": "vp_ram_military", "fg": [ 7851, 7853, 7852, 7854 ], "rotates": true },
- { "id": "vp_ram_hardsteel", "fg": [ 7847, 7849, 7848, 7850 ], "rotates": true },
- { "id": "vp_ram_alloy", "fg": [ 7843, 7845, 7844, 7846 ], "rotates": true },
+ { "id": "vp_ram_wood", "fg": [ 8061, 8063, 8062, 8064 ], "rotates": true },
+ { "id": "vp_ram_military", "fg": [ 8057, 8059, 8058, 8060 ], "rotates": true },
+ { "id": "vp_ram_hardsteel", "fg": [ 8053, 8055, 8054, 8056 ], "rotates": true },
+ { "id": "vp_ram_alloy", "fg": [ 8049, 8051, 8050, 8052 ], "rotates": true },
{
"id": "vp_roller_drum",
- "fg": 7859,
+ "fg": 8065,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7841, "bg": 7859 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 8047, "bg": 8065 } ]
},
{
"id": "vp_battery_motorbike",
- "fg": 7871,
+ "fg": 8077,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7871 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8077 } ]
},
{
"id": "vp_blade_horizontal",
- "fg": 7880,
+ "fg": 8086,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7880 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8086 } ]
},
{
"id": "vp_blade_vertical",
- "fg": 7881,
+ "fg": 8087,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7881 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8087 } ]
},
{
"id": "vp_controls",
- "fg": 7875,
+ "fg": 8081,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7875 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8081 } ]
},
{
"id": "vp_engine_1cyl",
- "fg": 7864,
+ "fg": 8070,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7864 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8070 } ]
},
{
"id": "vp_engine_electric",
- "fg": 7868,
+ "fg": 8074,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7868 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8074 } ]
},
{
"id": "vp_engine_electric_large",
- "fg": 7869,
+ "fg": 8075,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7869 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8075 } ]
},
- { "id": "vp_engine_v12", "fg": 7866, "bg": 7867 },
+ { "id": "vp_engine_v12", "fg": 8072, "bg": 8073 },
{
"id": "vp_engine_v6",
- "fg": 7866,
+ "fg": 8072,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7866 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8072 } ]
},
{
"id": "vp_engine_v8",
- "fg": 7867,
+ "fg": 8073,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7867 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8073 } ]
},
{
"id": "vp_engine_vtwin",
- "fg": 7865,
+ "fg": 8071,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7865 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8071 } ]
},
{
"id": "vp_foot_pedals",
- "fg": 7870,
+ "fg": 8076,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7870 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8076 } ]
},
{
"id": "vp_fusion_gun",
- "fg": 7883,
+ "fg": 8089,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7883 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8089 } ]
},
{
"id": "vp_hdroof",
- "fg": 7885,
+ "fg": 8091,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7885 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8091 } ]
},
{
"id": "vp_hydrogen_tank",
- "fg": 7873,
+ "fg": 8079,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7873 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8079 } ]
},
{
"id": "vp_minireactor",
- "fg": 7872,
+ "fg": 8078,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7872 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8078 } ]
},
{
"id": "vp_muffler",
- "fg": 7874,
+ "fg": 8080,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7874 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8080 } ]
},
{
"id": "vp_plating_hard",
- "fg": 7879,
+ "fg": 8085,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7879 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8085 } ]
},
{
"id": "vp_plating_military",
- "fg": 7876,
+ "fg": 8082,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7876 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8082 } ]
},
{
"id": "vp_plating_spiked",
- "fg": 7878,
+ "fg": 8084,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7878 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8084 } ]
},
{
"id": "vp_plating_steel",
- "fg": 7876,
+ "fg": 8082,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7876 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8082 } ]
},
{
"id": "vp_plating_superalloy",
- "fg": 7877,
+ "fg": 8083,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7877 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8083 } ]
},
{
"id": "vp_plating_wood",
- "fg": 7888,
+ "fg": 8094,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8094 } ]
},
{
"id": "vp_roof",
- "fg": 7886,
+ "fg": 8092,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7886 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8092 } ]
},
{
"id": "vp_roof_cloth",
- "fg": 7887,
+ "fg": 8093,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7887 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8093 } ]
},
{
"id": "vp_seatbelt",
- "fg": 7863,
+ "fg": 8069,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7863 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8069 } ]
},
{
"id": "vp_seatbelt_heavyduty",
- "fg": 7863,
+ "fg": 8069,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7863 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8069 } ]
},
{
"id": "vp_small_storage_battery",
- "fg": 7871,
+ "fg": 8077,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7871 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8077 } ]
},
{
"id": "vp_storage_battery",
- "fg": 7871,
+ "fg": 8077,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7871 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8077 } ]
},
{
"id": "vp_v_curtain",
- "fg": 7889,
+ "fg": 8095,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7889 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8095 } ]
},
{
"id": "vp_wheel_armor",
- "fg": 7860,
+ "fg": 8066,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7860 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8066 } ]
},
{
"id": "vp_wheel_armor_steerable",
- "fg": 7860,
+ "fg": 8066,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7860 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8066 } ]
},
{
"id": "vp_wheel_caster",
- "fg": 7884,
+ "fg": 8090,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7884 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8090 } ]
},
{
"id": "vp_wheel_small",
- "fg": 7862,
+ "fg": 8068,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7862 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8068 } ]
},
{
"id": "vp_wheel_small_steerable",
- "fg": 7862,
+ "fg": 8068,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7862 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8068 } ]
},
{
"id": "vp_wheel_wheelchair",
- "fg": 7861,
+ "fg": 8067,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7861 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8067 } ]
},
{
"id": "vp_wheel_wood",
- "fg": 7891,
+ "fg": 8097,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7891 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8097 } ]
},
{
"id": [ "wheel_wood", "wheel_wood_b" ],
- "fg": 7891,
+ "fg": 8097,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7891 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8097 } ]
},
{
"id": "vp_wheel_wood_b",
- "fg": 7891,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7062, "bg": 7891 } ]
- },
- { "id": "foot_crank", "fg": 7870 },
- { "id": "frame", "fg": 7890 },
- { "id": "hard_plate", "fg": 7879 },
- { "id": "kitchen_unit", "fg": 7882 },
- { "id": "motor", "fg": 7868 },
- { "id": "motor_large", "fg": 7869 },
- { "id": "muffler", "fg": 7874 },
- { "id": "spiked_plate", "fg": 7878 },
- { "id": "storage_battery", "fg": 7871 },
- { "id": "vehicle_controls", "fg": 7875 },
- { "id": "1cyl_combustion", "fg": 7864 },
- { "id": "v2_combustion", "fg": 7865 },
- { "id": [ "v6_combustion", "v6_diesel" ], "fg": 7866 },
- { "id": "v8_combustion", "fg": 7867 }
+ "fg": 8097,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7205, "bg": 8097 } ]
+ },
+ { "id": "foot_crank", "fg": 8076 },
+ { "id": "frame", "fg": 8096 },
+ { "id": "hard_plate", "fg": 8085 },
+ { "id": "kitchen_unit", "fg": 8088 },
+ { "id": "motor", "fg": 8074 },
+ { "id": "motor_large", "fg": 8075 },
+ { "id": "muffler", "fg": 8080 },
+ { "id": "spiked_plate", "fg": 8084 },
+ { "id": "storage_battery", "fg": 8077 },
+ { "id": "vehicle_controls", "fg": 8081 },
+ { "id": "1cyl_combustion", "fg": 8070 },
+ { "id": "v2_combustion", "fg": 8071 },
+ { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8072 },
+ { "id": "v8_combustion", "fg": 8073 }
]
},
{
"file": "fillergiant.png",
- "//": "range 7904 to 7919",
+ "//": "range 8112 to 8127",
"sprite_width": 96,
"sprite_height": 96,
"sprite_offset_x": -32,
@@ -12677,18 +12880,18 @@
"t_tree_pear_season_spring",
"t_tree_plum_season_spring"
],
- "fg": 6506,
- "bg": 6499
+ "fg": 6650,
+ "bg": 6643
},
- { "id": "t_tree_apricot_season_summer", "fg": 7904, "bg": 6500 },
- { "id": "t_tree_mulberry_season_summer", "fg": 7905, "bg": 6500 },
- { "id": "t_tree_elderberry_season_summer", "fg": 7905, "bg": 6500 },
- { "id": "t_tree_pear_season_autumn", "fg": 7906, "bg": 6500 },
- { "id": "t_tree_plum_season_summer", "fg": 7907, "bg": 6500 },
+ { "id": "t_tree_apricot_season_summer", "fg": 8112, "bg": 6644 },
+ { "id": "t_tree_mulberry_season_summer", "fg": 8113, "bg": 6644 },
+ { "id": "t_tree_elderberry_season_summer", "fg": 8113, "bg": 6644 },
+ { "id": "t_tree_pear_season_autumn", "fg": 8114, "bg": 6644 },
+ { "id": "t_tree_plum_season_summer", "fg": 8115, "bg": 6644 },
{
"id": [ "t_tree_apricot_harvested", "t_tree_mulberry_harvested", "t_tree_plum_harvested", "t_tree_pear_season_summer" ],
- "fg": 6501,
- "bg": 6500
+ "fg": 6645,
+ "bg": 6644
},
{
"id": [
@@ -12698,12 +12901,12 @@
"t_tree_pear_harvested"
],
"fg": [
- { "weight": 100, "sprite": 6502 },
- { "weight": 100, "sprite": 6503 },
- { "weight": 100, "sprite": 6504 },
- { "weight": 100, "sprite": 6505 }
+ { "weight": 100, "sprite": 6646 },
+ { "weight": 100, "sprite": 6647 },
+ { "weight": 100, "sprite": 6648 },
+ { "weight": 100, "sprite": 6649 }
],
- "bg": 6498
+ "bg": 6642
},
{
"id": [
@@ -12712,29 +12915,29 @@
"t_tree_pear_season_winter",
"t_tree_plum_season_winter"
],
- "fg": 6530,
- "bg": 6497
- },
- { "id": "t_tree_chestnut", "fg": 7909, "bg": 6499 },
- { "id": "t_tree_chestnut_season_summer", "fg": 7908, "bg": 6500 },
- { "id": "t_tree_chestnut_season_autumn", "fg": 7908, "bg": 6498 },
- { "id": "t_tree_chestnut_season_winter", "fg": 7908, "bg": 6497 },
- { "id": "t_tree_pine", "fg": 7913, "bg": 6499 },
- { "id": "t_tree_pine_season_summer", "fg": 7913, "bg": 6500 },
- { "id": "t_tree_pine_season_autumn", "fg": 7913, "bg": 6498 },
- { "id": "t_tree_pine_season_winter", "fg": 7913, "bg": 6497 },
- { "id": "t_tree_deadpine", "fg": 7910, "bg": 6499 },
- { "id": "t_tree_deadpine_season_summer", "fg": 7910, "bg": 6500 },
- { "id": "t_tree_deadpine_season_autumn", "fg": 7910, "bg": 6498 },
- { "id": "t_tree_deadpine_season_winter", "fg": 7910, "bg": 6497 },
- { "id": "t_tree_hickory", "fg": 7912, "bg": 6499 },
- { "id": "t_tree_hickory_season_summer", "fg": 7912, "bg": 6500 },
- { "id": "t_tree_hickory_season_autumn", "fg": 7912, "bg": 6498 },
- { "id": "t_tree_hickory_season_winter", "fg": 7911, "bg": 6497 },
- { "id": "t_tree_hickory_dead", "fg": 7911, "bg": 6499 },
- { "id": "t_tree_hickory_dead_season_summer", "fg": 7911, "bg": 6500 },
- { "id": "t_tree_hickory_dead_season_autumn", "fg": 7911, "bg": 6498 },
- { "id": "t_tree_hickory_dead_season_winter", "fg": 7911, "bg": 6497 }
+ "fg": 6674,
+ "bg": 6641
+ },
+ { "id": "t_tree_chestnut", "fg": 8117, "bg": 6643 },
+ { "id": "t_tree_chestnut_season_summer", "fg": 8116, "bg": 6644 },
+ { "id": "t_tree_chestnut_season_autumn", "fg": 8116, "bg": 6642 },
+ { "id": "t_tree_chestnut_season_winter", "fg": 8116, "bg": 6641 },
+ { "id": "t_tree_pine", "fg": 8121, "bg": 6643 },
+ { "id": "t_tree_pine_season_summer", "fg": 8121, "bg": 6644 },
+ { "id": "t_tree_pine_season_autumn", "fg": 8121, "bg": 6642 },
+ { "id": "t_tree_pine_season_winter", "fg": 8121, "bg": 6641 },
+ { "id": "t_tree_deadpine", "fg": 8118, "bg": 6643 },
+ { "id": "t_tree_deadpine_season_summer", "fg": 8118, "bg": 6644 },
+ { "id": "t_tree_deadpine_season_autumn", "fg": 8118, "bg": 6642 },
+ { "id": "t_tree_deadpine_season_winter", "fg": 8118, "bg": 6641 },
+ { "id": "t_tree_hickory", "fg": 8120, "bg": 6643 },
+ { "id": "t_tree_hickory_season_summer", "fg": 8120, "bg": 6644 },
+ { "id": "t_tree_hickory_season_autumn", "fg": 8120, "bg": 6642 },
+ { "id": "t_tree_hickory_season_winter", "fg": 8119, "bg": 6641 },
+ { "id": "t_tree_hickory_dead", "fg": 8119, "bg": 6643 },
+ { "id": "t_tree_hickory_dead_season_summer", "fg": 8119, "bg": 6644 },
+ { "id": "t_tree_hickory_dead_season_autumn", "fg": 8119, "bg": 6642 },
+ { "id": "t_tree_hickory_dead_season_winter", "fg": 8119, "bg": 6641 }
]
},
{
diff --git a/gfx/ChibiUltica/widemonsters.png b/gfx/ChibiUltica/widemonsters.png
new file mode 100644
index 0000000000000..2346c181ce932
Binary files /dev/null and b/gfx/ChibiUltica/widemonsters.png differ
diff --git a/gfx/ChibiUltica/widevehicle.png b/gfx/ChibiUltica/widevehicle.png
new file mode 100644
index 0000000000000..bb53c8637742d
Binary files /dev/null and b/gfx/ChibiUltica/widevehicle.png differ
diff --git a/gfx/MshockXotto+/overmap.png b/gfx/MshockXotto+/overmap.png
index 7161db1c8c287..a2df1cc1fe403 100644
Binary files a/gfx/MshockXotto+/overmap.png and b/gfx/MshockXotto+/overmap.png differ
diff --git a/gfx/MshockXotto+/small.png b/gfx/MshockXotto+/small.png
index 8d55ef6cc5784..8673df3265654 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 d6da58c2d92ab..ca80a24c7889f 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 7c0d9f1adff7f..ca36d4faa2469 100644
--- a/gfx/MshockXotto+/tile_config.json
+++ b/gfx/MshockXotto+/tile_config.json
@@ -5,10 +5,10 @@
"tiles-new": [
{
"file": "tiles.png",
- "//": "range 1 to 5471",
+ "//": "range 1 to 5519",
"tiles": [
- { "id": [ "player_female", "npc_female" ], "fg": 1, "rotates": false, "bg": 3145 },
- { "id": [ "player_male", "npc_male" ], "fg": 2, "rotates": false, "bg": 3145 },
+ { "id": [ "player_female", "npc_female" ], "fg": 1, "rotates": false, "bg": 3156 },
+ { "id": [ "player_male", "npc_male" ], "fg": 2, "rotates": false, "bg": 3156 },
{ "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 },
@@ -344,8 +344,8 @@
{ "id": "overlay_wielded_arx160", "fg": 370, "rotates": false },
{ "id": "overlay_wielded_ashot", "fg": 371, "rotates": false },
{ "id": "overlay_wielded_ax", "fg": 449, "rotates": false },
- { "id": "overlay_wielded_bag_canvas", "fg": 842, "rotates": false },
- { "id": "overlay_wielded_bag_canvas_small", "fg": 842, "rotates": false },
+ { "id": "overlay_wielded_bag_canvas", "fg": 843, "rotates": false },
+ { "id": "overlay_wielded_bag_canvas_small", "fg": 843, "rotates": false },
{ "id": "overlay_wielded_bagh_nakha", "fg": 320, "rotates": false },
{ "id": "overlay_wielded_bagpipes", "fg": 502, "rotates": false },
{ "id": "overlay_wielded_banjo", "fg": 450, "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": 1676, "rotates": false },
+ { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 1685, "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 },
@@ -769,7 +769,7 @@
{ "id": "overlay_wielded_sten", "fg": 439, "rotates": false },
{ "id": "overlay_wielded_steyr_aug", "fg": 440, "rotates": false },
{ "id": "overlay_wielded_stick", "fg": 337, "rotates": false },
- { "id": "overlay_wielded_stock_pot", "fg": 509, "rotates": false },
+ { "id": "overlay_wielded_stock_pot", "fg": 510, "rotates": false },
{ "id": "overlay_wielded_stormbringer", "fg": 454, "rotates": false },
{ "id": "overlay_wielded_stormbringer_on", "fg": 491, "rotates": false },
{ "id": "overlay_wielded_surv_carbine_223", "fg": 382, "rotates": false },
@@ -845,1480 +845,1480 @@
{ "id": "overlay_wielded_zweihander", "fg": 499, "rotates": false },
{ "id": "overlay_wielded_zweihander_fake", "fg": 499, "rotates": false },
{ "id": "overlay_wielded_zweihander_inferior", "fg": 499, "rotates": false },
- { "id": "overlay_female_worn_dress_shirt", "fg": 551, "rotates": false },
- { "id": "overlay_female_worn_jumpsuit", "fg": 552, "rotates": false },
- { "id": "overlay_female_worn_jumpsuit_xl", "fg": 552, "rotates": false },
- { "id": "overlay_female_worn_linuxtshirt", "fg": 556, "rotates": false },
- { "id": "overlay_female_worn_long_underpants", "fg": 553, "rotates": false },
- { "id": "overlay_female_worn_long_undertop", "fg": 554, "rotates": false },
- { "id": "overlay_female_worn_longshirt", "fg": 555, "rotates": false },
- { "id": "overlay_female_worn_polo_shirt", "fg": 556, "rotates": false },
- { "id": "overlay_female_worn_postman_shirt", "fg": 551, "rotates": false },
- { "id": "overlay_female_worn_sheriffshirt", "fg": 555, "rotates": false },
- { "id": "overlay_female_worn_thermal_outfit", "fg": 511, "rotates": false },
- { "id": "overlay_female_worn_thermal_outfit_on", "fg": 511, "rotates": false },
- { "id": "overlay_female_worn_thermal_suit", "fg": 512, "rotates": false },
- { "id": "overlay_female_worn_thermal_suit_on", "fg": 512, "rotates": false },
- { "id": "overlay_female_worn_towel", "fg": 513, "rotates": false },
- { "id": "overlay_female_worn_towel_soiled", "fg": 566, "rotates": false },
- { "id": "overlay_female_worn_towel_wet", "fg": 513, "rotates": false },
- { "id": "overlay_female_worn_tshirt", "fg": 556, "rotates": false },
- { "id": "overlay_female_worn_tshirt_text", "fg": 556, "rotates": false },
- { "id": "overlay_female_worn_under_armor", "fg": 557, "rotates": false },
- { "id": "overlay_female_worn_union_suit", "fg": 558, "rotates": false },
- { "id": "overlay_male_worn_dress_shirt", "fg": 559, "rotates": false },
- { "id": "overlay_male_worn_jumpsuit", "fg": 560, "rotates": false },
- { "id": "overlay_male_worn_jumpsuit_xl", "fg": 560, "rotates": false },
- { "id": "overlay_male_worn_linuxtshirt", "fg": 565, "rotates": false },
- { "id": "overlay_male_worn_long_underpants", "fg": 561, "rotates": false },
- { "id": "overlay_male_worn_long_undertop", "fg": 562, "rotates": false },
- { "id": "overlay_male_worn_longshirt", "fg": 563, "rotates": false },
- { "id": "overlay_male_worn_polo_shirt", "fg": 565, "rotates": false },
- { "id": "overlay_male_worn_postman_shirt", "fg": 559, "rotates": false },
- { "id": "overlay_male_worn_sheriffshirt", "fg": 563, "rotates": false },
- { "id": "overlay_male_worn_thermal_outfit", "fg": 514, "rotates": false },
- { "id": "overlay_male_worn_thermal_outfit_on", "fg": 514, "rotates": false },
- { "id": "overlay_male_worn_thermal_suit", "fg": 515, "rotates": false },
- { "id": "overlay_male_worn_thermal_suit_on", "fg": 515, "rotates": false },
- { "id": "overlay_male_worn_towel", "fg": 516, "rotates": false },
- { "id": "overlay_male_worn_towel_soiled", "fg": 567, "rotates": false },
- { "id": "overlay_male_worn_towel_wet", "fg": 516, "rotates": false },
- { "id": "overlay_male_worn_tshirt", "fg": 565, "rotates": false },
- { "id": "overlay_male_worn_tshirt_text", "fg": 565, "rotates": false },
- { "id": "overlay_male_worn_under_armor", "fg": 569, "rotates": false },
- { "id": "overlay_male_worn_union_suit", "fg": 571, "rotates": false },
- { "id": "overlay_worn_2byarm_guard", "fg": 582, "rotates": false },
- { "id": "overlay_worn_2byshin_guard", "fg": 739, "rotates": false },
- { "id": "overlay_worn_XL_holster", "fg": 806, "rotates": false },
- { "id": "overlay_worn_aep_suit", "fg": 574, "rotates": false },
- { "id": "overlay_worn_american_flag", "fg": 578, "rotates": false },
- { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 705, "rotates": false },
- { "id": "overlay_worn_anbc_suit", "fg": 580, "rotates": false },
- { "id": "overlay_worn_apron_leather", "fg": 859, "rotates": false },
- { "id": "overlay_worn_arm_splint", "fg": 591, "rotates": false },
- { "id": "overlay_worn_arm_warmers", "fg": 592, "rotates": false },
- { "id": "overlay_worn_armguard_acidchitin", "fg": 579, "rotates": false },
- { "id": "overlay_worn_armguard_chitin", "fg": 581, "rotates": false },
- { "id": "overlay_worn_armguard_hard", "fg": 582, "rotates": false },
- { "id": "overlay_worn_armguard_larmor", "fg": 581, "rotates": false },
- { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 909, "rotates": false },
- { "id": "overlay_worn_armguard_paper", "fg": 583, "rotates": false },
- { "id": "overlay_worn_armguard_soft", "fg": 582, "rotates": false },
- { "id": "overlay_worn_armor_acidchitin", "fg": 577, "rotates": false },
- { "id": "overlay_worn_armor_blarmor", "fg": 585, "rotates": false },
- { "id": "overlay_worn_armor_chitin", "fg": 584, "rotates": false },
- { "id": "overlay_worn_armor_cuirass", "fg": 635, "rotates": false },
- { "id": "overlay_worn_armor_farmor", "fg": 585, "rotates": false },
- { "id": "overlay_worn_armor_lamellar", "fg": 585, "rotates": false },
- { "id": "overlay_worn_armor_larmor", "fg": 585, "rotates": false },
- { "id": "overlay_worn_armor_lightplate", "fg": 587, "rotates": false },
- { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 635, "rotates": false },
- { "id": "overlay_worn_armor_nomad", "fg": 876, "rotates": false },
- { "id": "overlay_worn_armor_plarmor", "fg": 586, "rotates": false },
- { "id": "overlay_worn_armor_plate", "fg": 587, "rotates": false },
- { "id": "overlay_worn_armor_samurai", "fg": 588, "rotates": false },
- { "id": "overlay_worn_armor_scavenger", "fg": 877, "rotates": false },
- { "id": "overlay_worn_armor_scrapsuit", "fg": 589, "rotates": false },
- { "id": "overlay_worn_armor_wyrm", "fg": 517, "rotates": false },
- { "id": "overlay_worn_army_top", "fg": 590, "rotates": false },
- { "id": "overlay_worn_b_shorts", "fg": 628, "rotates": false },
- { "id": "overlay_worn_back_holster", "fg": 594, "rotates": false },
- { "id": "overlay_worn_backpack", "fg": 593, "rotates": false },
- { "id": "overlay_worn_backpack_leather", "fg": 593, "rotates": false },
- { "id": "overlay_worn_badge_doctor", "fg": 878, "rotates": false },
- { "id": "overlay_worn_badge_foodkid", "fg": 879, "rotates": false },
- { "id": "overlay_worn_balclava", "fg": 595, "rotates": false },
- { "id": "overlay_worn_baldric", "fg": 806, "rotates": false },
- { "id": "overlay_worn_bandana", "fg": 596, "rotates": false },
- { "id": "overlay_worn_bastsandals", "fg": 597, "rotates": false },
- { "id": "overlay_worn_bead_bracelet", "fg": 880, "rotates": false },
- { "id": "overlay_worn_bead_ear", "fg": 881, "rotates": false },
- { "id": "overlay_worn_beekeeping_gloves", "fg": 671, "rotates": false },
- { "id": "overlay_worn_beekeeping_hood", "fg": 882, "rotates": false },
- { "id": "overlay_worn_beekeeping_suit", "fg": 598, "rotates": false },
- { "id": "overlay_worn_beret", "fg": 599, "rotates": false },
- { "id": "overlay_worn_beret_wool", "fg": 599, "rotates": false },
- { "id": "overlay_worn_bikini_bottom", "fg": 600, "rotates": false },
- { "id": "overlay_worn_bikini_top", "fg": 601, "rotates": false },
- { "id": "overlay_worn_bikini_top_fur", "fg": 637, "rotates": false },
- { "id": "overlay_worn_bikini_top_leather", "fg": 637, "rotates": false },
- { "id": "overlay_worn_bindle", "fg": 602, "rotates": false },
- { "id": "overlay_worn_blanket", "fg": 603, "rotates": false },
- { "id": "overlay_worn_blazer", "fg": 604, "rotates": false },
- { "id": "overlay_worn_blindfold", "fg": 605, "rotates": false },
- { "id": "overlay_worn_bondage_mask", "fg": 606, "rotates": false },
- { "id": "overlay_worn_bondage_suit", "fg": 607, "rotates": false },
- { "id": "overlay_worn_boots", "fg": 608, "rotates": false },
- { "id": "overlay_worn_boots_acidchitin", "fg": 572, "rotates": false },
- { "id": "overlay_worn_boots_bunker", "fg": 615, "rotates": false },
- { "id": "overlay_worn_boots_chitin", "fg": 611, "rotates": false },
- { "id": "overlay_worn_boots_combat", "fg": 612, "rotates": false },
- { "id": "overlay_worn_boots_fsurvivor", "fg": 615, "rotates": false },
- { "id": "overlay_worn_boots_fur", "fg": 614, "rotates": false },
- { "id": "overlay_worn_boots_h20survivor", "fg": 867, "rotates": false },
- { "id": "overlay_worn_boots_hiking", "fg": 608, "rotates": false },
- { "id": "overlay_worn_boots_hsurvivor", "fg": 613, "rotates": false },
- { "id": "overlay_worn_boots_larmor", "fg": 614, "rotates": false },
- { "id": "overlay_worn_boots_lsurvivor", "fg": 614, "rotates": false },
- { "id": "overlay_worn_boots_plate", "fg": 614, "rotates": false },
- { "id": "overlay_worn_boots_steel", "fg": 616, "rotates": false },
- { "id": "overlay_worn_boots_survivor", "fg": 614, "rotates": false },
- { "id": "overlay_worn_boots_western", "fg": 617, "rotates": false },
- { "id": "overlay_worn_boots_winter", "fg": 618, "rotates": false },
- { "id": "overlay_worn_boots_wsurvivor", "fg": 618, "rotates": false },
- { "id": "overlay_worn_boots_xlsurvivor", "fg": 618, "rotates": false },
- { "id": "overlay_worn_bootsheath", "fg": 609, "rotates": false },
- { "id": "overlay_worn_bootstrap", "fg": 610, "rotates": false },
- { "id": "overlay_worn_boxer_briefs", "fg": 619, "rotates": false },
- { "id": "overlay_worn_boxer_shorts", "fg": 619, "rotates": false },
- { "id": "overlay_worn_boxing_gloves", "fg": 620, "rotates": false },
- { "id": "overlay_worn_boy_shorts", "fg": 621, "rotates": false },
- { "id": "overlay_worn_bra", "fg": 622, "rotates": false },
- { "id": "overlay_worn_breeches", "fg": 784, "rotates": false },
- { "id": "overlay_worn_briefcase", "fg": 623, "rotates": false },
- { "id": "overlay_worn_briefs", "fg": 624, "rotates": false },
- { "id": "overlay_worn_bronze_medal", "fg": 885, "rotates": false },
- { "id": "overlay_worn_bscabbard", "fg": 625, "rotates": false },
- { "id": "overlay_worn_bunker_coat", "fg": 626, "rotates": false },
- { "id": "overlay_worn_bunker_pants", "fg": 627, "rotates": false },
- { "id": "overlay_worn_camisole", "fg": 629, "rotates": false },
- { "id": "overlay_worn_case_violin", "fg": 576, "rotates": false },
- { "id": "overlay_worn_cassock", "fg": 630, "rotates": false },
- { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 903, "rotates": false },
- { "id": "overlay_worn_chainmail_arms", "fg": 631, "rotates": false },
- { "id": "overlay_worn_chainmail_hauberk", "fg": 635, "rotates": false },
- { "id": "overlay_worn_chainmail_hood", "fg": 632, "rotates": false },
- { "id": "overlay_worn_chainmail_legs", "fg": 633, "rotates": false },
- { "id": "overlay_worn_chainmail_suit", "fg": 634, "rotates": false },
- { "id": "overlay_worn_chainmail_vest", "fg": 635, "rotates": false },
- { "id": "overlay_worn_chaps_leather", "fg": 636, "rotates": false },
- { "id": "overlay_worn_chestrig", "fg": 863, "rotates": false },
- { "id": "overlay_worn_chestwrap", "fg": 637, "rotates": false },
- { "id": "overlay_worn_chestwrap_fur", "fg": 637, "rotates": false },
- { "id": "overlay_worn_chestwrap_leather", "fg": 637, "rotates": false },
- { "id": "overlay_worn_chestwrap_wool", "fg": 637, "rotates": false },
- { "id": "overlay_worn_cleansuit", "fg": 638, "rotates": false },
- { "id": "overlay_worn_cleats", "fg": 822, "rotates": false },
- { "id": "overlay_worn_cloak", "fg": 639, "rotates": false },
- { "id": "overlay_worn_cloak_bless", "fg": 644, "rotates": false },
- { "id": "overlay_worn_cloak_fur", "fg": 802, "rotates": false },
- { "id": "overlay_worn_cloak_leather", "fg": 802, "rotates": false },
- { "id": "overlay_worn_cloak_wool", "fg": 778, "rotates": false },
- { "id": "overlay_worn_clogs", "fg": 640, "rotates": false },
- { "id": "overlay_worn_clown_suit", "fg": 642, "rotates": false },
- { "id": "overlay_worn_clownshoes", "fg": 641, "rotates": false },
- { "id": "overlay_worn_coat_fur", "fg": 643, "rotates": false },
- { "id": "overlay_worn_coat_fur_sf", "fg": 643, "rotates": false },
- { "id": "overlay_worn_coat_lab", "fg": 644, "rotates": false },
- { "id": "overlay_worn_coat_rain", "fg": 645, "rotates": false },
- { "id": "overlay_worn_coat_winter", "fg": 646, "rotates": false },
- { "id": "overlay_worn_copper_locket", "fg": 886, "rotates": false },
- { "id": "overlay_worn_copper_necklace", "fg": 887, "rotates": false },
- { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 888, "rotates": false },
- { "id": "overlay_worn_corset", "fg": 647, "rotates": false },
- { "id": "overlay_worn_cowboy_hat", "fg": 648, "rotates": false },
- { "id": "overlay_worn_cowl_wool", "fg": 710, "rotates": false },
- { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 575, "rotates": false },
- { "id": "overlay_worn_dance_shoes", "fg": 686, "rotates": false },
- { "id": "overlay_worn_depowered_armor", "fg": 793, "rotates": false },
- { "id": "overlay_worn_depowered_helmet", "fg": 649, "rotates": false },
- { "id": "overlay_worn_dinosuit", "fg": 650, "rotates": false },
- { "id": "overlay_worn_dive_bag", "fg": 651, "rotates": false },
- { "id": "overlay_worn_diving_watch", "fg": 893, "rotates": false },
- { "id": "overlay_worn_down_blanket", "fg": 603, "rotates": false },
- { "id": "overlay_worn_dragonskin", "fg": 894, "rotates": false },
- { "id": "overlay_worn_dress", "fg": 652, "rotates": false },
- { "id": "overlay_worn_dress_bless", "fg": 653, "rotates": false },
- { "id": "overlay_worn_dress_shoes", "fg": 809, "rotates": false },
- { "id": "overlay_worn_dress_shoes_air", "fg": 686, "rotates": false },
- { "id": "overlay_worn_dress_skirt", "fg": 815, "rotates": false },
- { "id": "overlay_worn_dress_wedding", "fg": 653, "rotates": false },
- { "id": "overlay_worn_duffelbag", "fg": 836, "rotates": false },
- { "id": "overlay_worn_duster", "fg": 654, "rotates": false },
- { "id": "overlay_worn_duster_fur", "fg": 654, "rotates": false },
- { "id": "overlay_worn_duster_leather", "fg": 654, "rotates": false },
- { "id": "overlay_worn_duster_survivor", "fg": 655, "rotates": false },
+ { "id": "overlay_female_worn_dress_shirt", "fg": 552, "rotates": false },
+ { "id": "overlay_female_worn_jumpsuit", "fg": 553, "rotates": false },
+ { "id": "overlay_female_worn_jumpsuit_xl", "fg": 553, "rotates": false },
+ { "id": "overlay_female_worn_linuxtshirt", "fg": 557, "rotates": false },
+ { "id": "overlay_female_worn_long_underpants", "fg": 554, "rotates": false },
+ { "id": "overlay_female_worn_long_undertop", "fg": 555, "rotates": false },
+ { "id": "overlay_female_worn_longshirt", "fg": 556, "rotates": false },
+ { "id": "overlay_female_worn_polo_shirt", "fg": 557, "rotates": false },
+ { "id": "overlay_female_worn_postman_shirt", "fg": 552, "rotates": false },
+ { "id": "overlay_female_worn_sheriffshirt", "fg": 556, "rotates": false },
+ { "id": "overlay_female_worn_thermal_outfit", "fg": 512, "rotates": false },
+ { "id": "overlay_female_worn_thermal_outfit_on", "fg": 512, "rotates": false },
+ { "id": "overlay_female_worn_thermal_suit", "fg": 513, "rotates": false },
+ { "id": "overlay_female_worn_thermal_suit_on", "fg": 513, "rotates": false },
+ { "id": "overlay_female_worn_towel", "fg": 514, "rotates": false },
+ { "id": "overlay_female_worn_towel_soiled", "fg": 567, "rotates": false },
+ { "id": "overlay_female_worn_towel_wet", "fg": 514, "rotates": false },
+ { "id": "overlay_female_worn_tshirt", "fg": 557, "rotates": false },
+ { "id": "overlay_female_worn_tshirt_text", "fg": 557, "rotates": false },
+ { "id": "overlay_female_worn_under_armor", "fg": 558, "rotates": false },
+ { "id": "overlay_female_worn_union_suit", "fg": 559, "rotates": false },
+ { "id": "overlay_male_worn_dress_shirt", "fg": 560, "rotates": false },
+ { "id": "overlay_male_worn_jumpsuit", "fg": 561, "rotates": false },
+ { "id": "overlay_male_worn_jumpsuit_xl", "fg": 561, "rotates": false },
+ { "id": "overlay_male_worn_linuxtshirt", "fg": 566, "rotates": false },
+ { "id": "overlay_male_worn_long_underpants", "fg": 562, "rotates": false },
+ { "id": "overlay_male_worn_long_undertop", "fg": 563, "rotates": false },
+ { "id": "overlay_male_worn_longshirt", "fg": 564, "rotates": false },
+ { "id": "overlay_male_worn_polo_shirt", "fg": 566, "rotates": false },
+ { "id": "overlay_male_worn_postman_shirt", "fg": 560, "rotates": false },
+ { "id": "overlay_male_worn_sheriffshirt", "fg": 564, "rotates": false },
+ { "id": "overlay_male_worn_thermal_outfit", "fg": 515, "rotates": false },
+ { "id": "overlay_male_worn_thermal_outfit_on", "fg": 515, "rotates": false },
+ { "id": "overlay_male_worn_thermal_suit", "fg": 516, "rotates": false },
+ { "id": "overlay_male_worn_thermal_suit_on", "fg": 516, "rotates": false },
+ { "id": "overlay_male_worn_towel", "fg": 517, "rotates": false },
+ { "id": "overlay_male_worn_towel_soiled", "fg": 568, "rotates": false },
+ { "id": "overlay_male_worn_towel_wet", "fg": 517, "rotates": false },
+ { "id": "overlay_male_worn_tshirt", "fg": 566, "rotates": false },
+ { "id": "overlay_male_worn_tshirt_text", "fg": 566, "rotates": false },
+ { "id": "overlay_male_worn_under_armor", "fg": 570, "rotates": false },
+ { "id": "overlay_male_worn_union_suit", "fg": 572, "rotates": false },
+ { "id": "overlay_worn_2byarm_guard", "fg": 583, "rotates": false },
+ { "id": "overlay_worn_2byshin_guard", "fg": 740, "rotates": false },
+ { "id": "overlay_worn_XL_holster", "fg": 807, "rotates": false },
+ { "id": "overlay_worn_aep_suit", "fg": 575, "rotates": false },
+ { "id": "overlay_worn_american_flag", "fg": 579, "rotates": false },
+ { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 706, "rotates": false },
+ { "id": "overlay_worn_anbc_suit", "fg": 581, "rotates": false },
+ { "id": "overlay_worn_apron_leather", "fg": 860, "rotates": false },
+ { "id": "overlay_worn_arm_splint", "fg": 592, "rotates": false },
+ { "id": "overlay_worn_arm_warmers", "fg": 593, "rotates": false },
+ { "id": "overlay_worn_armguard_acidchitin", "fg": 580, "rotates": false },
+ { "id": "overlay_worn_armguard_chitin", "fg": 582, "rotates": false },
+ { "id": "overlay_worn_armguard_hard", "fg": 583, "rotates": false },
+ { "id": "overlay_worn_armguard_larmor", "fg": 582, "rotates": false },
+ { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 910, "rotates": false },
+ { "id": "overlay_worn_armguard_paper", "fg": 584, "rotates": false },
+ { "id": "overlay_worn_armguard_soft", "fg": 583, "rotates": false },
+ { "id": "overlay_worn_armor_acidchitin", "fg": 578, "rotates": false },
+ { "id": "overlay_worn_armor_blarmor", "fg": 586, "rotates": false },
+ { "id": "overlay_worn_armor_chitin", "fg": 585, "rotates": false },
+ { "id": "overlay_worn_armor_cuirass", "fg": 636, "rotates": false },
+ { "id": "overlay_worn_armor_farmor", "fg": 586, "rotates": false },
+ { "id": "overlay_worn_armor_lamellar", "fg": 586, "rotates": false },
+ { "id": "overlay_worn_armor_larmor", "fg": 586, "rotates": false },
+ { "id": "overlay_worn_armor_lightplate", "fg": 588, "rotates": false },
+ { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 636, "rotates": false },
+ { "id": "overlay_worn_armor_nomad", "fg": 877, "rotates": false },
+ { "id": "overlay_worn_armor_plarmor", "fg": 587, "rotates": false },
+ { "id": "overlay_worn_armor_plate", "fg": 588, "rotates": false },
+ { "id": "overlay_worn_armor_samurai", "fg": 589, "rotates": false },
+ { "id": "overlay_worn_armor_scavenger", "fg": 878, "rotates": false },
+ { "id": "overlay_worn_armor_scrapsuit", "fg": 590, "rotates": false },
+ { "id": "overlay_worn_armor_wyrm", "fg": 518, "rotates": false },
+ { "id": "overlay_worn_army_top", "fg": 591, "rotates": false },
+ { "id": "overlay_worn_b_shorts", "fg": 629, "rotates": false },
+ { "id": "overlay_worn_back_holster", "fg": 595, "rotates": false },
+ { "id": "overlay_worn_backpack", "fg": 594, "rotates": false },
+ { "id": "overlay_worn_backpack_leather", "fg": 594, "rotates": false },
+ { "id": "overlay_worn_badge_doctor", "fg": 879, "rotates": false },
+ { "id": "overlay_worn_badge_foodkid", "fg": 880, "rotates": false },
+ { "id": "overlay_worn_balclava", "fg": 596, "rotates": false },
+ { "id": "overlay_worn_baldric", "fg": 807, "rotates": false },
+ { "id": "overlay_worn_bandana", "fg": 597, "rotates": false },
+ { "id": "overlay_worn_bastsandals", "fg": 598, "rotates": false },
+ { "id": "overlay_worn_bead_bracelet", "fg": 881, "rotates": false },
+ { "id": "overlay_worn_bead_ear", "fg": 882, "rotates": false },
+ { "id": "overlay_worn_beekeeping_gloves", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_beekeeping_hood", "fg": 883, "rotates": false },
+ { "id": "overlay_worn_beekeeping_suit", "fg": 599, "rotates": false },
+ { "id": "overlay_worn_beret", "fg": 600, "rotates": false },
+ { "id": "overlay_worn_beret_wool", "fg": 600, "rotates": false },
+ { "id": "overlay_worn_bikini_bottom", "fg": 601, "rotates": false },
+ { "id": "overlay_worn_bikini_top", "fg": 602, "rotates": false },
+ { "id": "overlay_worn_bikini_top_fur", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_bikini_top_leather", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_bindle", "fg": 603, "rotates": false },
+ { "id": "overlay_worn_blanket", "fg": 604, "rotates": false },
+ { "id": "overlay_worn_blazer", "fg": 605, "rotates": false },
+ { "id": "overlay_worn_blindfold", "fg": 606, "rotates": false },
+ { "id": "overlay_worn_bondage_mask", "fg": 607, "rotates": false },
+ { "id": "overlay_worn_bondage_suit", "fg": 608, "rotates": false },
+ { "id": "overlay_worn_boots", "fg": 609, "rotates": false },
+ { "id": "overlay_worn_boots_acidchitin", "fg": 573, "rotates": false },
+ { "id": "overlay_worn_boots_bunker", "fg": 616, "rotates": false },
+ { "id": "overlay_worn_boots_chitin", "fg": 612, "rotates": false },
+ { "id": "overlay_worn_boots_combat", "fg": 613, "rotates": false },
+ { "id": "overlay_worn_boots_fsurvivor", "fg": 616, "rotates": false },
+ { "id": "overlay_worn_boots_fur", "fg": 615, "rotates": false },
+ { "id": "overlay_worn_boots_h20survivor", "fg": 868, "rotates": false },
+ { "id": "overlay_worn_boots_hiking", "fg": 609, "rotates": false },
+ { "id": "overlay_worn_boots_hsurvivor", "fg": 614, "rotates": false },
+ { "id": "overlay_worn_boots_larmor", "fg": 615, "rotates": false },
+ { "id": "overlay_worn_boots_lsurvivor", "fg": 615, "rotates": false },
+ { "id": "overlay_worn_boots_plate", "fg": 615, "rotates": false },
+ { "id": "overlay_worn_boots_steel", "fg": 617, "rotates": false },
+ { "id": "overlay_worn_boots_survivor", "fg": 615, "rotates": false },
+ { "id": "overlay_worn_boots_western", "fg": 618, "rotates": false },
+ { "id": "overlay_worn_boots_winter", "fg": 619, "rotates": false },
+ { "id": "overlay_worn_boots_wsurvivor", "fg": 619, "rotates": false },
+ { "id": "overlay_worn_boots_xlsurvivor", "fg": 619, "rotates": false },
+ { "id": "overlay_worn_bootsheath", "fg": 610, "rotates": false },
+ { "id": "overlay_worn_bootstrap", "fg": 611, "rotates": false },
+ { "id": "overlay_worn_boxer_briefs", "fg": 620, "rotates": false },
+ { "id": "overlay_worn_boxer_shorts", "fg": 620, "rotates": false },
+ { "id": "overlay_worn_boxing_gloves", "fg": 621, "rotates": false },
+ { "id": "overlay_worn_boy_shorts", "fg": 622, "rotates": false },
+ { "id": "overlay_worn_bra", "fg": 623, "rotates": false },
+ { "id": "overlay_worn_breeches", "fg": 785, "rotates": false },
+ { "id": "overlay_worn_briefcase", "fg": 624, "rotates": false },
+ { "id": "overlay_worn_briefs", "fg": 625, "rotates": false },
+ { "id": "overlay_worn_bronze_medal", "fg": 886, "rotates": false },
+ { "id": "overlay_worn_bscabbard", "fg": 626, "rotates": false },
+ { "id": "overlay_worn_bunker_coat", "fg": 627, "rotates": false },
+ { "id": "overlay_worn_bunker_pants", "fg": 628, "rotates": false },
+ { "id": "overlay_worn_camisole", "fg": 630, "rotates": false },
+ { "id": "overlay_worn_case_violin", "fg": 577, "rotates": false },
+ { "id": "overlay_worn_cassock", "fg": 631, "rotates": false },
+ { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 904, "rotates": false },
+ { "id": "overlay_worn_chainmail_arms", "fg": 632, "rotates": false },
+ { "id": "overlay_worn_chainmail_hauberk", "fg": 636, "rotates": false },
+ { "id": "overlay_worn_chainmail_hood", "fg": 633, "rotates": false },
+ { "id": "overlay_worn_chainmail_legs", "fg": 634, "rotates": false },
+ { "id": "overlay_worn_chainmail_suit", "fg": 635, "rotates": false },
+ { "id": "overlay_worn_chainmail_vest", "fg": 636, "rotates": false },
+ { "id": "overlay_worn_chaps_leather", "fg": 637, "rotates": false },
+ { "id": "overlay_worn_chestrig", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_chestwrap", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_chestwrap_fur", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_chestwrap_leather", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_chestwrap_wool", "fg": 638, "rotates": false },
+ { "id": "overlay_worn_cleansuit", "fg": 639, "rotates": false },
+ { "id": "overlay_worn_cleats", "fg": 823, "rotates": false },
+ { "id": "overlay_worn_cloak", "fg": 640, "rotates": false },
+ { "id": "overlay_worn_cloak_bless", "fg": 645, "rotates": false },
+ { "id": "overlay_worn_cloak_fur", "fg": 803, "rotates": false },
+ { "id": "overlay_worn_cloak_leather", "fg": 803, "rotates": false },
+ { "id": "overlay_worn_cloak_wool", "fg": 779, "rotates": false },
+ { "id": "overlay_worn_clogs", "fg": 641, "rotates": false },
+ { "id": "overlay_worn_clown_suit", "fg": 643, "rotates": false },
+ { "id": "overlay_worn_clownshoes", "fg": 642, "rotates": false },
+ { "id": "overlay_worn_coat_fur", "fg": 644, "rotates": false },
+ { "id": "overlay_worn_coat_fur_sf", "fg": 644, "rotates": false },
+ { "id": "overlay_worn_coat_lab", "fg": 645, "rotates": false },
+ { "id": "overlay_worn_coat_rain", "fg": 646, "rotates": false },
+ { "id": "overlay_worn_coat_winter", "fg": 647, "rotates": false },
+ { "id": "overlay_worn_copper_locket", "fg": 887, "rotates": false },
+ { "id": "overlay_worn_copper_necklace", "fg": 888, "rotates": false },
+ { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 889, "rotates": false },
+ { "id": "overlay_worn_corset", "fg": 648, "rotates": false },
+ { "id": "overlay_worn_cowboy_hat", "fg": 649, "rotates": false },
+ { "id": "overlay_worn_cowl_wool", "fg": 711, "rotates": false },
+ { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 576, "rotates": false },
+ { "id": "overlay_worn_dance_shoes", "fg": 687, "rotates": false },
+ { "id": "overlay_worn_depowered_armor", "fg": 794, "rotates": false },
+ { "id": "overlay_worn_depowered_helmet", "fg": 650, "rotates": false },
+ { "id": "overlay_worn_dinosuit", "fg": 651, "rotates": false },
+ { "id": "overlay_worn_dive_bag", "fg": 652, "rotates": false },
+ { "id": "overlay_worn_diving_watch", "fg": 894, "rotates": false },
+ { "id": "overlay_worn_down_blanket", "fg": 604, "rotates": false },
+ { "id": "overlay_worn_dragonskin", "fg": 895, "rotates": false },
+ { "id": "overlay_worn_dress", "fg": 653, "rotates": false },
+ { "id": "overlay_worn_dress_bless", "fg": 654, "rotates": false },
+ { "id": "overlay_worn_dress_shoes", "fg": 810, "rotates": false },
+ { "id": "overlay_worn_dress_shoes_air", "fg": 687, "rotates": false },
+ { "id": "overlay_worn_dress_skirt", "fg": 816, "rotates": false },
+ { "id": "overlay_worn_dress_wedding", "fg": 654, "rotates": false },
+ { "id": "overlay_worn_duffelbag", "fg": 837, "rotates": false },
+ { "id": "overlay_worn_duster", "fg": 655, "rotates": false },
+ { "id": "overlay_worn_duster_fur", "fg": 655, "rotates": false },
+ { "id": "overlay_worn_duster_leather", "fg": 655, "rotates": false },
+ { "id": "overlay_worn_duster_survivor", "fg": 656, "rotates": false },
{ "id": "overlay_worn_e_handcuffs", "fg": 464, "rotates": false },
{
"id": [ "overlay_worn_silver_ear", "overlay_worn_platinum_ear", "overlay_worn_pearl_ear" ],
- "fg": 919,
+ "fg": 920,
"rotates": false
},
- { "id": "overlay_worn_elbow_pads", "fg": 656, "rotates": false },
- { "id": "overlay_worn_emer_blanket", "fg": 603, "rotates": false },
- { "id": "overlay_worn_emer_blanket_on", "fg": 603, "rotates": false },
- { "id": "overlay_worn_entry_suit", "fg": 896, "rotates": false },
- { "id": "overlay_worn_fancy_bra", "fg": 622, "rotates": false },
- { "id": "overlay_worn_fancy_sunglasses", "fg": 833, "rotates": false },
- { "id": "overlay_worn_fencing_jacket", "fg": 901, "rotates": false },
- { "id": "overlay_worn_fencing_mask", "fg": 902, "rotates": false },
- { "id": "overlay_worn_fencing_pants", "fg": 657, "rotates": false },
- { "id": "overlay_worn_fire_gauntlets", "fg": 668, "rotates": false },
- { "id": "overlay_worn_fireman_belt", "fg": 835, "rotates": false },
- { "id": "overlay_worn_fishing_waders", "fg": 658, "rotates": false },
- { "id": "overlay_worn_fitover_sunglasses", "fg": 833, "rotates": false },
- { "id": "overlay_worn_flag_shirt", "fg": 659, "rotates": false },
- { "id": "overlay_worn_flip_flops", "fg": 660, "rotates": false },
- { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 721, "rotates": false },
- { "id": "overlay_worn_folding_poncho_on", "fg": 518, "rotates": false },
- { "id": "overlay_worn_football_armor", "fg": 661, "rotates": false },
- { "id": "overlay_worn_footrags", "fg": 662, "rotates": false },
- { "id": "overlay_worn_footrags_fur", "fg": 823, "rotates": false },
- { "id": "overlay_worn_footrags_leather", "fg": 776, "rotates": false },
- { "id": "overlay_worn_footrags_wool", "fg": 823, "rotates": false },
- { "id": "overlay_worn_fsurvivor_suit", "fg": 777, "rotates": false },
- { "id": "overlay_worn_fur_blanket", "fg": 603, "rotates": false },
+ { "id": "overlay_worn_elbow_pads", "fg": 657, "rotates": false },
+ { "id": "overlay_worn_emer_blanket", "fg": 604, "rotates": false },
+ { "id": "overlay_worn_emer_blanket_on", "fg": 604, "rotates": false },
+ { "id": "overlay_worn_entry_suit", "fg": 897, "rotates": false },
+ { "id": "overlay_worn_fancy_bra", "fg": 623, "rotates": false },
+ { "id": "overlay_worn_fancy_sunglasses", "fg": 834, "rotates": false },
+ { "id": "overlay_worn_fencing_jacket", "fg": 902, "rotates": false },
+ { "id": "overlay_worn_fencing_mask", "fg": 903, "rotates": false },
+ { "id": "overlay_worn_fencing_pants", "fg": 658, "rotates": false },
+ { "id": "overlay_worn_fire_gauntlets", "fg": 669, "rotates": false },
+ { "id": "overlay_worn_fireman_belt", "fg": 836, "rotates": false },
+ { "id": "overlay_worn_fishing_waders", "fg": 659, "rotates": false },
+ { "id": "overlay_worn_fitover_sunglasses", "fg": 834, "rotates": false },
+ { "id": "overlay_worn_flag_shirt", "fg": 660, "rotates": false },
+ { "id": "overlay_worn_flip_flops", "fg": 661, "rotates": false },
+ { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 722, "rotates": false },
+ { "id": "overlay_worn_folding_poncho_on", "fg": 519, "rotates": false },
+ { "id": "overlay_worn_football_armor", "fg": 662, "rotates": false },
+ { "id": "overlay_worn_footrags", "fg": 663, "rotates": false },
+ { "id": "overlay_worn_footrags_fur", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_footrags_leather", "fg": 777, "rotates": false },
+ { "id": "overlay_worn_footrags_wool", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_fsurvivor_suit", "fg": 778, "rotates": false },
+ { "id": "overlay_worn_fur_blanket", "fg": 604, "rotates": false },
{ "id": "overlay_female_worn_fur_cat_ears", "fg": 144, "rotates": false },
{ "id": "overlay_male_worn_fur_cat_ears", "fg": 169, "rotates": false },
- { "id": "overlay_worn_gambeson", "fg": 859, "rotates": false },
- { "id": "overlay_worn_gauntlets_acidchitin", "fg": 573, "rotates": false },
- { "id": "overlay_worn_gauntlets_chitin", "fg": 669, "rotates": false },
- { "id": "overlay_worn_gauntlets_larmor", "fg": 669, "rotates": false },
- { "id": "overlay_worn_geta", "fg": 821, "rotates": false },
- { "id": "overlay_worn_glasses_bal", "fg": 673, "rotates": false },
- { "id": "overlay_worn_glasses_monocle", "fg": 664, "rotates": false },
- { "id": [ "overlay_worn_glasses_safety" ], "fg": 665, "rotates": false },
- { "id": "overlay_worn_glove_jackson", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_bag", "fg": 666, "rotates": false },
- { "id": "overlay_worn_gloves_fingerless", "fg": 667, "rotates": false },
- { "id": "overlay_worn_gloves_fingerless_mod", "fg": 667, "rotates": false },
- { "id": "overlay_worn_gloves_fsurvivor", "fg": 668, "rotates": false },
- { "id": "overlay_worn_gloves_fur", "fg": 669, "rotates": false },
- { "id": "overlay_worn_gloves_h20survivor", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gloves_hsurvivor", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gloves_leather", "fg": 669, "rotates": false },
- { "id": "overlay_worn_gloves_light", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_liner", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_lsurvivor", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gloves_medical", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_plate", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_survivor", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gloves_tactical", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gloves_winter", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gloves_wool", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_work", "fg": 672, "rotates": false },
- { "id": "overlay_worn_gloves_wraps", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_wraps_fur", "fg": 669, "rotates": false },
- { "id": "overlay_worn_gloves_wraps_leather", "fg": 669, "rotates": false },
- { "id": "overlay_worn_gloves_wraps_wool", "fg": 671, "rotates": false },
- { "id": "overlay_worn_gloves_wsurvivor", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gloves_xlsurvivor", "fg": 670, "rotates": false },
- { "id": "overlay_worn_gobag", "fg": 836, "rotates": false },
- { "id": "overlay_worn_goggles_ir", "fg": 519, "rotates": false },
- { "id": "overlay_worn_goggles_ir_on", "fg": 520, "rotates": false },
- { "id": "overlay_worn_goggles_nv", "fg": 521, "rotates": false },
- { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 522, "rotates": false },
- { "id": "overlay_worn_goggles_nv_on", "fg": 523, "rotates": false },
- { "id": "overlay_worn_goggles_ski", "fg": 673, "rotates": false },
- { "id": "overlay_worn_goggles_swim", "fg": 673, "rotates": false },
- { "id": "overlay_worn_goggles_welding", "fg": 674, "rotates": false },
- { "id": "overlay_worn_gold_dental_grill", "fg": 570, "rotates": false },
- { "id": "overlay_worn_gold_locket", "fg": 912, "rotates": false },
- { "id": "overlay_worn_gold_medal", "fg": 913, "rotates": false },
- { "id": "overlay_worn_gold_necklace", "fg": 914, "rotates": false },
- { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 915, "rotates": false },
- { "id": "overlay_worn_gown", "fg": 652, "rotates": false },
- { "id": "overlay_worn_greatcoat", "fg": 675, "rotates": false },
- { "id": "overlay_worn_h20survivor_suit", "fg": 714, "rotates": false },
- { "id": "overlay_worn_hakama_gi", "fg": 676, "rotates": false },
- { "id": "overlay_worn_halter_top", "fg": 677, "rotates": false },
- { "id": "overlay_worn_harmonica_holder", "fg": 524, "rotates": false },
- { "id": "overlay_worn_hat_ball", "fg": 678, "rotates": false },
- { "id": "overlay_worn_hat_boonie", "fg": 679, "rotates": false },
- { "id": "overlay_worn_hat_cotton", "fg": 682, "rotates": false },
- { "id": "overlay_worn_hat_fur", "fg": 680, "rotates": false },
- { "id": "overlay_worn_hat_hunting", "fg": 681, "rotates": false },
- { "id": "overlay_worn_hat_knit", "fg": 682, "rotates": false },
- { "id": "overlay_worn_hat_newsboy", "fg": 683, "rotates": false },
- { "id": "overlay_worn_hat_noise_cancelling", "fg": 684, "rotates": false },
- { "id": "overlay_worn_hazmat_suit", "fg": 580, "rotates": false },
- { "id": "overlay_worn_headgear", "fg": 685, "rotates": false },
- { "id": "overlay_worn_heels", "fg": 686, "rotates": false },
- { "id": "overlay_worn_helmet_acidchitin", "fg": 568, "rotates": false },
- { "id": "overlay_worn_helmet_army", "fg": 687, "rotates": false },
- { "id": "overlay_worn_helmet_ball", "fg": 688, "rotates": false },
- { "id": "overlay_worn_helmet_barbute", "fg": 689, "rotates": false },
- { "id": "overlay_worn_helmet_bike", "fg": 690, "rotates": false },
- { "id": "overlay_worn_helmet_chitin", "fg": 691, "rotates": false },
- { "id": "overlay_worn_helmet_conical", "fg": 689, "rotates": false },
- { "id": "overlay_worn_helmet_corinthian", "fg": 689, "rotates": false },
- { "id": "overlay_worn_helmet_football", "fg": 692, "rotates": false },
- { "id": "overlay_worn_helmet_galea", "fg": 632, "rotates": false },
- { "id": "overlay_worn_helmet_hsurvivor", "fg": 693, "rotates": false },
- { "id": "overlay_worn_helmet_larmor", "fg": 694, "rotates": false },
- { "id": "overlay_worn_helmet_liner", "fg": 708, "rotates": false },
- { "id": "overlay_worn_helmet_lobster", "fg": 695, "rotates": false },
- { "id": "overlay_worn_helmet_motor", "fg": 696, "rotates": false },
- { "id": "overlay_worn_helmet_nasal", "fg": 632, "rotates": false },
- { "id": "overlay_worn_helmet_nomad", "fg": 697, "rotates": false },
- { "id": "overlay_worn_helmet_plate", "fg": 698, "rotates": false },
- { "id": "overlay_worn_helmet_riot", "fg": 699, "rotates": false },
- { "id": "overlay_worn_helmet_scavenger", "fg": 700, "rotates": false },
- { "id": "overlay_worn_helmet_skid", "fg": 701, "rotates": false },
- { "id": "overlay_worn_helmet_survivor", "fg": 702, "rotates": false },
- { "id": "overlay_worn_helmet_xlsurvivor", "fg": 703, "rotates": false },
- { "id": "overlay_worn_hmil_armor", "fg": 704, "rotates": false },
- { "id": "overlay_worn_holo_cloak", "fg": 550, "rotates": false },
- { "id": "overlay_worn_holster", "fg": 705, "rotates": false },
- { "id": "overlay_worn_hood_fsurvivor", "fg": 707, "rotates": false },
- { "id": "overlay_worn_hood_h20survivor", "fg": 708, "rotates": false },
- { "id": "overlay_worn_hood_lsurvivor", "fg": 709, "rotates": false },
- { "id": "overlay_worn_hood_rain", "fg": 708, "rotates": false },
- { "id": "overlay_worn_hood_survivor", "fg": 709, "rotates": false },
- { "id": "overlay_worn_hood_wsurvivor", "fg": 710, "rotates": false },
- { "id": "overlay_worn_hood_xlsurvivor", "fg": 709, "rotates": false },
- { "id": "overlay_worn_hoodie", "fg": 706, "rotates": false },
- { "id": "overlay_worn_hot_pants", "fg": 711, "rotates": false },
- { "id": "overlay_worn_hot_pants_fur", "fg": 711, "rotates": false },
- { "id": "overlay_worn_hot_pants_leather", "fg": 712, "rotates": false },
- { "id": "overlay_worn_house_coat", "fg": 713, "rotates": false },
- { "id": "overlay_worn_hsurvivor_suit", "fg": 714, "rotates": false },
- { "id": "overlay_worn_iggaak", "fg": 833, "rotates": false },
- { "id": "overlay_worn_jacket_army", "fg": 715, "rotates": false },
- { "id": "overlay_worn_jacket_chef", "fg": 716, "rotates": false },
- { "id": "overlay_worn_jacket_evac", "fg": 717, "rotates": false },
- { "id": "overlay_worn_jacket_flannel", "fg": 718, "rotates": false },
- { "id": "overlay_worn_jacket_jean", "fg": 719, "rotates": false },
- { "id": "overlay_worn_jacket_leather", "fg": 720, "rotates": false },
- { "id": "overlay_worn_jacket_leather_mod", "fg": 720, "rotates": false },
- { "id": "overlay_worn_jacket_leather_red", "fg": 721, "rotates": false },
- { "id": "overlay_worn_jacket_light", "fg": 722, "rotates": false },
- { "id": "overlay_worn_jacket_windbreaker", "fg": 723, "rotates": false },
- { "id": "overlay_worn_jade_brooch", "fg": 917, "rotates": false },
- { "id": "overlay_worn_jeans", "fg": 724, "rotates": false },
- { "id": "overlay_worn_jeans_red", "fg": 725, "rotates": false },
- { "id": "overlay_worn_jedi_cloak", "fg": 726, "rotates": false },
- { "id": "overlay_worn_jerrypack", "fg": 727, "rotates": false },
- { "id": "overlay_worn_jersey", "fg": 728, "rotates": false },
- { "id": "overlay_worn_judo_belt_black", "fg": 738, "rotates": false },
- { "id": "overlay_worn_judo_belt_blue", "fg": 738, "rotates": false },
- { "id": "overlay_worn_judo_belt_brown", "fg": 738, "rotates": false },
- { "id": "overlay_worn_judo_belt_green", "fg": 738, "rotates": false },
- { "id": "overlay_worn_judo_belt_orange", "fg": 738, "rotates": false },
- { "id": "overlay_worn_judo_belt_white", "fg": 738, "rotates": false },
- { "id": "overlay_worn_judo_belt_yellow", "fg": 738, "rotates": false },
- { "id": "overlay_worn_judo_gi", "fg": 729, "rotates": false },
- { "id": "overlay_worn_karate_gi", "fg": 729, "rotates": false },
- { "id": "overlay_worn_kariginu", "fg": 730, "rotates": false },
- { "id": "overlay_worn_keffiyeh", "fg": 762, "rotates": false },
- { "id": "overlay_worn_keikogi", "fg": 731, "rotates": false },
- { "id": "overlay_worn_kevlar", "fg": 894, "rotates": false },
- { "id": "overlay_worn_kilt", "fg": 814, "rotates": false },
- { "id": "overlay_worn_kimono", "fg": 732, "rotates": false },
- { "id": "overlay_worn_kippah", "fg": 733, "rotates": false },
- { "id": "overlay_worn_kittel", "fg": 734, "rotates": false },
- { "id": "overlay_worn_knee_high_boots", "fg": 735, "rotates": false },
- { "id": "overlay_worn_knee_pads", "fg": 736, "rotates": false },
- { "id": "overlay_worn_knit_scarf", "fg": 525, "rotates": false },
- { "id": "overlay_worn_knit_scarf_loose", "fg": 525, "rotates": false },
- { "id": "overlay_worn_kufi", "fg": 737, "rotates": false },
- { "id": "overlay_worn_leather_belt", "fg": 738, "rotates": false },
+ { "id": "overlay_worn_gambeson", "fg": 860, "rotates": false },
+ { "id": "overlay_worn_gauntlets_acidchitin", "fg": 574, "rotates": false },
+ { "id": "overlay_worn_gauntlets_chitin", "fg": 670, "rotates": false },
+ { "id": "overlay_worn_gauntlets_larmor", "fg": 670, "rotates": false },
+ { "id": "overlay_worn_geta", "fg": 822, "rotates": false },
+ { "id": "overlay_worn_glasses_bal", "fg": 674, "rotates": false },
+ { "id": "overlay_worn_glasses_monocle", "fg": 665, "rotates": false },
+ { "id": [ "overlay_worn_glasses_safety" ], "fg": 666, "rotates": false },
+ { "id": "overlay_worn_glove_jackson", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_bag", "fg": 667, "rotates": false },
+ { "id": "overlay_worn_gloves_fingerless", "fg": 668, "rotates": false },
+ { "id": "overlay_worn_gloves_fingerless_mod", "fg": 668, "rotates": false },
+ { "id": "overlay_worn_gloves_fsurvivor", "fg": 669, "rotates": false },
+ { "id": "overlay_worn_gloves_fur", "fg": 670, "rotates": false },
+ { "id": "overlay_worn_gloves_h20survivor", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gloves_hsurvivor", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gloves_leather", "fg": 670, "rotates": false },
+ { "id": "overlay_worn_gloves_light", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_liner", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_lsurvivor", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gloves_medical", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_plate", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_survivor", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gloves_tactical", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gloves_winter", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gloves_wool", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_work", "fg": 673, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps_fur", "fg": 670, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps_leather", "fg": 670, "rotates": false },
+ { "id": "overlay_worn_gloves_wraps_wool", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_gloves_wsurvivor", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gloves_xlsurvivor", "fg": 671, "rotates": false },
+ { "id": "overlay_worn_gobag", "fg": 837, "rotates": false },
+ { "id": "overlay_worn_goggles_ir", "fg": 520, "rotates": false },
+ { "id": "overlay_worn_goggles_ir_on", "fg": 521, "rotates": false },
+ { "id": "overlay_worn_goggles_nv", "fg": 522, "rotates": false },
+ { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 523, "rotates": false },
+ { "id": "overlay_worn_goggles_nv_on", "fg": 524, "rotates": false },
+ { "id": "overlay_worn_goggles_ski", "fg": 674, "rotates": false },
+ { "id": "overlay_worn_goggles_swim", "fg": 674, "rotates": false },
+ { "id": "overlay_worn_goggles_welding", "fg": 675, "rotates": false },
+ { "id": "overlay_worn_gold_dental_grill", "fg": 571, "rotates": false },
+ { "id": "overlay_worn_gold_locket", "fg": 913, "rotates": false },
+ { "id": "overlay_worn_gold_medal", "fg": 914, "rotates": false },
+ { "id": "overlay_worn_gold_necklace", "fg": 915, "rotates": false },
+ { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 916, "rotates": false },
+ { "id": "overlay_worn_gown", "fg": 653, "rotates": false },
+ { "id": "overlay_worn_greatcoat", "fg": 676, "rotates": false },
+ { "id": "overlay_worn_h20survivor_suit", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_hakama_gi", "fg": 677, "rotates": false },
+ { "id": "overlay_worn_halter_top", "fg": 678, "rotates": false },
+ { "id": "overlay_worn_harmonica_holder", "fg": 525, "rotates": false },
+ { "id": "overlay_worn_hat_ball", "fg": 679, "rotates": false },
+ { "id": "overlay_worn_hat_boonie", "fg": 680, "rotates": false },
+ { "id": "overlay_worn_hat_cotton", "fg": 683, "rotates": false },
+ { "id": "overlay_worn_hat_fur", "fg": 681, "rotates": false },
+ { "id": "overlay_worn_hat_hunting", "fg": 682, "rotates": false },
+ { "id": "overlay_worn_hat_knit", "fg": 683, "rotates": false },
+ { "id": "overlay_worn_hat_newsboy", "fg": 684, "rotates": false },
+ { "id": "overlay_worn_hat_noise_cancelling", "fg": 685, "rotates": false },
+ { "id": "overlay_worn_hazmat_suit", "fg": 581, "rotates": false },
+ { "id": "overlay_worn_headgear", "fg": 686, "rotates": false },
+ { "id": "overlay_worn_heels", "fg": 687, "rotates": false },
+ { "id": "overlay_worn_helmet_acidchitin", "fg": 569, "rotates": false },
+ { "id": "overlay_worn_helmet_army", "fg": 688, "rotates": false },
+ { "id": "overlay_worn_helmet_ball", "fg": 689, "rotates": false },
+ { "id": "overlay_worn_helmet_barbute", "fg": 690, "rotates": false },
+ { "id": "overlay_worn_helmet_bike", "fg": 691, "rotates": false },
+ { "id": "overlay_worn_helmet_chitin", "fg": 692, "rotates": false },
+ { "id": "overlay_worn_helmet_conical", "fg": 690, "rotates": false },
+ { "id": "overlay_worn_helmet_corinthian", "fg": 690, "rotates": false },
+ { "id": "overlay_worn_helmet_football", "fg": 693, "rotates": false },
+ { "id": "overlay_worn_helmet_galea", "fg": 633, "rotates": false },
+ { "id": "overlay_worn_helmet_hsurvivor", "fg": 694, "rotates": false },
+ { "id": "overlay_worn_helmet_larmor", "fg": 695, "rotates": false },
+ { "id": "overlay_worn_helmet_liner", "fg": 709, "rotates": false },
+ { "id": "overlay_worn_helmet_lobster", "fg": 696, "rotates": false },
+ { "id": "overlay_worn_helmet_motor", "fg": 697, "rotates": false },
+ { "id": "overlay_worn_helmet_nasal", "fg": 633, "rotates": false },
+ { "id": "overlay_worn_helmet_nomad", "fg": 698, "rotates": false },
+ { "id": "overlay_worn_helmet_plate", "fg": 699, "rotates": false },
+ { "id": "overlay_worn_helmet_riot", "fg": 700, "rotates": false },
+ { "id": "overlay_worn_helmet_scavenger", "fg": 701, "rotates": false },
+ { "id": "overlay_worn_helmet_skid", "fg": 702, "rotates": false },
+ { "id": "overlay_worn_helmet_survivor", "fg": 703, "rotates": false },
+ { "id": "overlay_worn_helmet_xlsurvivor", "fg": 704, "rotates": false },
+ { "id": "overlay_worn_hmil_armor", "fg": 705, "rotates": false },
+ { "id": "overlay_worn_holo_cloak", "fg": 551, "rotates": false },
+ { "id": "overlay_worn_holster", "fg": 706, "rotates": false },
+ { "id": "overlay_worn_hood_fsurvivor", "fg": 708, "rotates": false },
+ { "id": "overlay_worn_hood_h20survivor", "fg": 709, "rotates": false },
+ { "id": "overlay_worn_hood_lsurvivor", "fg": 710, "rotates": false },
+ { "id": "overlay_worn_hood_rain", "fg": 709, "rotates": false },
+ { "id": "overlay_worn_hood_survivor", "fg": 710, "rotates": false },
+ { "id": "overlay_worn_hood_wsurvivor", "fg": 711, "rotates": false },
+ { "id": "overlay_worn_hood_xlsurvivor", "fg": 710, "rotates": false },
+ { "id": "overlay_worn_hoodie", "fg": 707, "rotates": false },
+ { "id": "overlay_worn_hot_pants", "fg": 712, "rotates": false },
+ { "id": "overlay_worn_hot_pants_fur", "fg": 712, "rotates": false },
+ { "id": "overlay_worn_hot_pants_leather", "fg": 713, "rotates": false },
+ { "id": "overlay_worn_house_coat", "fg": 714, "rotates": false },
+ { "id": "overlay_worn_hsurvivor_suit", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_iggaak", "fg": 834, "rotates": false },
+ { "id": "overlay_worn_jacket_army", "fg": 716, "rotates": false },
+ { "id": "overlay_worn_jacket_chef", "fg": 717, "rotates": false },
+ { "id": "overlay_worn_jacket_evac", "fg": 718, "rotates": false },
+ { "id": "overlay_worn_jacket_flannel", "fg": 719, "rotates": false },
+ { "id": "overlay_worn_jacket_jean", "fg": 720, "rotates": false },
+ { "id": "overlay_worn_jacket_leather", "fg": 721, "rotates": false },
+ { "id": "overlay_worn_jacket_leather_mod", "fg": 721, "rotates": false },
+ { "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_jeans", "fg": 725, "rotates": false },
+ { "id": "overlay_worn_jeans_red", "fg": 726, "rotates": false },
+ { "id": "overlay_worn_jedi_cloak", "fg": 727, "rotates": false },
+ { "id": "overlay_worn_jerrypack", "fg": 728, "rotates": false },
+ { "id": "overlay_worn_jersey", "fg": 729, "rotates": false },
+ { "id": "overlay_worn_judo_belt_black", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_judo_belt_blue", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_judo_belt_brown", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_judo_belt_green", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_judo_belt_orange", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_judo_belt_white", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_judo_belt_yellow", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_judo_gi", "fg": 730, "rotates": false },
+ { "id": "overlay_worn_karate_gi", "fg": 730, "rotates": false },
+ { "id": "overlay_worn_kariginu", "fg": 731, "rotates": false },
+ { "id": "overlay_worn_keffiyeh", "fg": 763, "rotates": false },
+ { "id": "overlay_worn_keikogi", "fg": 732, "rotates": false },
+ { "id": "overlay_worn_kevlar", "fg": 895, "rotates": false },
+ { "id": "overlay_worn_kilt", "fg": 815, "rotates": false },
+ { "id": "overlay_worn_kimono", "fg": 733, "rotates": false },
+ { "id": "overlay_worn_kippah", "fg": 734, "rotates": false },
+ { "id": "overlay_worn_kittel", "fg": 735, "rotates": false },
+ { "id": "overlay_worn_knee_high_boots", "fg": 736, "rotates": false },
+ { "id": "overlay_worn_knee_pads", "fg": 737, "rotates": false },
+ { "id": "overlay_worn_knit_scarf", "fg": 526, "rotates": false },
+ { "id": "overlay_worn_knit_scarf_loose", "fg": 526, "rotates": false },
+ { "id": "overlay_worn_kufi", "fg": 738, "rotates": false },
+ { "id": "overlay_worn_leather_belt", "fg": 739, "rotates": false },
{ "id": "overlay_female_worn_leather_cat_ears", "fg": 144, "rotates": false },
{ "id": "overlay_male_worn_leather_cat_ears", "fg": 169, "rotates": false },
- { "id": "overlay_worn_leather_cat_tail", "fg": 663, "rotates": false },
- { "id": "overlay_worn_leather_pouch", "fg": 510, "rotates": false },
- { "id": "overlay_worn_leathersandals", "fg": 660, "rotates": false },
- { "id": "overlay_worn_leg_splint", "fg": 742, "rotates": false },
- { "id": "overlay_worn_leg_warmers", "fg": 743, "rotates": false },
- { "id": "overlay_worn_leg_warmers_f", "fg": 743, "rotates": false },
- { "id": "overlay_worn_leg_warmers_xl", "fg": 743, "rotates": false },
- { "id": "overlay_worn_leg_warmers_xlf", "fg": 743, "rotates": false },
- { "id": "overlay_worn_leggings", "fg": 855, "rotates": false },
- { "id": "overlay_worn_legguard_bronze", "fg": 740, "rotates": false },
- { "id": "overlay_worn_legguard_hard", "fg": 739, "rotates": false },
- { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 740, "rotates": false },
- { "id": "overlay_worn_legguard_paper", "fg": 741, "rotates": false },
- { "id": "overlay_worn_legrig", "fg": 835, "rotates": false },
- { "id": "overlay_worn_lmil_armor", "fg": 744, "rotates": false },
- { "id": "overlay_worn_loincloth", "fg": 745, "rotates": false },
- { "id": "overlay_worn_loincloth_fur", "fg": 745, "rotates": false },
- { "id": "overlay_worn_loincloth_leather", "fg": 745, "rotates": false },
- { "id": "overlay_worn_loincloth_wool", "fg": 745, "rotates": false },
- { "id": "overlay_worn_long_glove_white", "fg": 746, "rotates": false },
- { "id": "overlay_worn_long_knit_scarf", "fg": 526, "rotates": false },
- { "id": "overlay_worn_long_knit_scarf_loose", "fg": 526, "rotates": false },
- { "id": "overlay_worn_long_patchwork_scarf", "fg": 527, "rotates": false },
- { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 527, "rotates": false },
- { "id": "overlay_worn_lowtops", "fg": 747, "rotates": false },
- { "id": "overlay_worn_lsurvivor_armor", "fg": 748, "rotates": false },
- { "id": "overlay_worn_lsurvivor_pants", "fg": 786, "rotates": false },
- { "id": "overlay_worn_lsurvivor_suit", "fg": 838, "rotates": false },
- { "id": "overlay_worn_magbandolier", "fg": 549, "rotates": false },
- { "id": "overlay_worn_maid_dress", "fg": 749, "rotates": false },
- { "id": "overlay_worn_maid_hat", "fg": 750, "rotates": false },
- { "id": "overlay_worn_maid_stockings", "fg": 825, "rotates": false },
- { "id": "overlay_worn_makeshift_knapsack", "fg": 751, "rotates": false },
- { "id": "overlay_worn_makeshift_sling", "fg": 752, "rotates": false },
- { "id": "overlay_worn_mask_bal", "fg": 753, "rotates": false },
- { "id": "overlay_worn_mask_bunker", "fg": 528, "rotates": false },
- { "id": "overlay_worn_mask_bunker_on", "fg": 529, "rotates": false },
- { "id": "overlay_worn_mask_dust", "fg": 754, "rotates": false },
- { "id": "overlay_worn_mask_filter", "fg": 755, "rotates": false },
- { "id": "overlay_worn_mask_fsurvivor", "fg": 756, "rotates": false },
- { "id": "overlay_worn_mask_fsurvivorxl", "fg": 756, "rotates": false },
- { "id": "overlay_worn_mask_gas", "fg": 757, "rotates": false },
- { "id": "overlay_worn_mask_gas_xl", "fg": 757, "rotates": false },
- { "id": "overlay_worn_mask_guy_fawkes", "fg": 758, "rotates": false },
- { "id": "overlay_worn_mask_h20survivor", "fg": 530, "rotates": false },
- { "id": "overlay_worn_mask_h20survivor_on", "fg": 530, "rotates": false },
- { "id": "overlay_worn_mask_h20survivorxl", "fg": 530, "rotates": false },
- { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 530, "rotates": false },
- { "id": "overlay_worn_mask_hockey", "fg": 759, "rotates": false },
- { "id": "overlay_worn_mask_hsurvivor", "fg": 760, "rotates": false },
- { "id": "overlay_worn_mask_lsurvivor", "fg": 761, "rotates": false },
- { "id": "overlay_worn_mask_rioter", "fg": 762, "rotates": false },
- { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 532, "rotates": false },
- { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 531, "rotates": false },
- { "id": "overlay_worn_mask_survivor", "fg": 761, "rotates": false },
- { "id": "overlay_worn_mask_survivorxl", "fg": 761, "rotates": false },
- { "id": "overlay_worn_mask_wsurvivor", "fg": 763, "rotates": false },
- { "id": "overlay_worn_mask_wsurvivorxl", "fg": 763, "rotates": false },
- { "id": "overlay_worn_mbag", "fg": 764, "rotates": false },
- { "id": "overlay_worn_megaarmor_armguards_1", "fg": 765, "rotates": false },
- { "id": "overlay_worn_megaarmor_boots_1", "fg": 766, "rotates": false },
- { "id": "overlay_worn_megaarmor_gloves_1", "fg": 767, "rotates": false },
- { "id": "overlay_worn_megaarmor_head_1", "fg": 768, "rotates": false },
- { "id": "overlay_worn_megaarmor_leggings_1", "fg": 769, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_1", "fg": 770, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_2", "fg": 771, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_3", "fg": 533, "rotates": false },
- { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 534, "rotates": false },
- { "id": "overlay_worn_microskirt", "fg": 775, "rotates": false },
- { "id": "overlay_worn_mil_armor", "fg": 772, "rotates": false },
- { "id": "overlay_worn_mittens", "fg": 668, "rotates": false },
- { "id": "overlay_worn_mocassins", "fg": 640, "rotates": false },
- { "id": "overlay_worn_modularvest", "fg": 863, "rotates": false },
- { "id": "overlay_worn_modularvestceramic", "fg": 863, "rotates": false },
- { "id": "overlay_worn_modularvesthard", "fg": 863, "rotates": false },
- { "id": "overlay_worn_modularvestkevlar", "fg": 863, "rotates": false },
- { "id": "overlay_worn_modularveststeel", "fg": 863, "rotates": false },
- { "id": "overlay_worn_modularvestsuper", "fg": 863, "rotates": false },
- { "id": "overlay_worn_molle_pack", "fg": 773, "rotates": false },
- { "id": "overlay_worn_motorbike_armor", "fg": 774, "rotates": false },
- { "id": "overlay_worn_motorbike_boots", "fg": 614, "rotates": false },
- { "id": "overlay_worn_motorbike_pants", "fg": 849, "rotates": false },
- { "id": "overlay_worn_nanoskirt", "fg": 775, "rotates": false },
- { "id": "overlay_worn_nomex_gloves", "fg": 668, "rotates": false },
- { "id": "overlay_worn_nomex_hood", "fg": 708, "rotates": false },
- { "id": "overlay_worn_nomex_socks", "fg": 776, "rotates": false },
- { "id": "overlay_worn_nomex_suit", "fg": 777, "rotates": false },
- { "id": "overlay_worn_obi_gi", "fg": 738, "rotates": false },
- { "id": "overlay_worn_optical_cloak", "fg": 778, "rotates": false },
- { "id": "overlay_worn_panties", "fg": 779, "rotates": false },
- { "id": "overlay_worn_pants", "fg": 780, "rotates": false },
- { "id": "overlay_worn_pants_army", "fg": 781, "rotates": false },
- { "id": "overlay_worn_pants_cargo", "fg": 782, "rotates": false },
- { "id": "overlay_worn_pants_checkered", "fg": 783, "rotates": false },
- { "id": "overlay_worn_pants_fur", "fg": 784, "rotates": false },
- { "id": "overlay_worn_pants_leather", "fg": 784, "rotates": false },
- { "id": "overlay_worn_pants_ski", "fg": 785, "rotates": false },
- { "id": "overlay_worn_pants_survivor", "fg": 786, "rotates": false },
- { "id": "overlay_worn_patchwork_scarf", "fg": 542, "rotates": false },
- { "id": "overlay_worn_patchwork_scarf_loose", "fg": 542, "rotates": false },
- { "id": "overlay_worn_peacoat", "fg": 787, "rotates": false },
- { "id": "overlay_worn_plastic_shopping_bag", "fg": 788, "rotates": false },
- { "id": "overlay_worn_platinum_locket", "fg": 920, "rotates": false },
- { "id": "overlay_worn_platinum_necklace", "fg": 921, "rotates": false },
- { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 922, "rotates": false },
- { "id": "overlay_worn_poncho", "fg": 789, "rotates": false },
- { "id": "overlay_worn_postman_hat", "fg": 790, "rotates": false },
- { "id": "overlay_worn_postman_shorts", "fg": 791, "rotates": false },
- { "id": "overlay_worn_pot_helmet", "fg": 792, "rotates": false },
- { "id": "overlay_worn_power_armor_basic", "fg": 793, "rotates": false },
- { "id": "overlay_worn_power_armor_heavy", "fg": 794, "rotates": false },
- { "id": "overlay_worn_power_armor_helmet_basic", "fg": 795, "rotates": false },
- { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 796, "rotates": false },
- { "id": "overlay_worn_power_armor_helmet_light", "fg": 797, "rotates": false },
- { "id": "overlay_worn_power_armor_light", "fg": 798, "rotates": false },
- { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 564 },
- { "id": "overlay_worn_purse", "fg": 799, "rotates": false },
- { "id": "overlay_worn_quiver", "fg": 800, "rotates": false },
- { "id": "overlay_worn_quiver_birchbark", "fg": 800, "rotates": false },
- { "id": "overlay_worn_quiver_large", "fg": 801, "rotates": false },
- { "id": "overlay_worn_quiver_large_birchbark", "fg": 801, "rotates": false },
- { "id": "overlay_worn_rebreather", "fg": 923, "rotates": false },
- { "id": "overlay_worn_rebreather_xl", "fg": 923, "rotates": false },
- { "id": "overlay_worn_revenant_crown", "fg": 535, "rotates": false },
- { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 890, "rotates": false },
- { "id": [ "overlay_worn_ring_engagement" ], "fg": 924, "rotates": false },
- { "id": "overlay_worn_ring_purity", "fg": 925, "rotates": false },
- { "id": "overlay_worn_ring_signet", "fg": 926, "rotates": false },
- { "id": "overlay_worn_rm13_armor", "fg": 548, "rotates": false },
- { "id": "overlay_worn_rm13_armor_on", "fg": 536, "rotates": false },
- { "id": "overlay_worn_robe", "fg": 802, "rotates": false },
- { "id": "overlay_worn_roller_blades", "fg": 803, "rotates": false },
- { "id": "overlay_worn_rollerskates", "fg": 803, "rotates": false },
- { "id": "overlay_worn_rucksack", "fg": 804, "rotates": false },
- { "id": "overlay_worn_runner_bag", "fg": 805, "rotates": false },
- { "id": "overlay_worn_sac_purse", "fg": 537, "rotates": false },
- { "id": "overlay_worn_sac_purse_arm", "fg": 538, "rotates": false },
- { "id": "overlay_worn_sac_purse_leg", "fg": 539, "rotates": false },
- { "id": "overlay_worn_scabbard", "fg": 806, "rotates": false },
- { "id": "overlay_worn_scarf", "fg": 540, "rotates": false },
- { "id": "overlay_worn_scarf_fur", "fg": 541, "rotates": false },
- { "id": "overlay_worn_scarf_fur_long", "fg": 526, "rotates": false },
- { "id": "overlay_worn_scarf_fur_long_loose", "fg": 526, "rotates": false },
- { "id": "overlay_worn_scarf_fur_loose", "fg": 541, "rotates": false },
- { "id": "overlay_worn_scarf_long", "fg": 527, "rotates": false },
- { "id": "overlay_worn_scarf_long_loose", "fg": 527, "rotates": false },
- { "id": "overlay_worn_scarf_loose", "fg": 542, "rotates": false },
- { "id": "overlay_worn_shark_suit", "fg": 807, "rotates": false },
- { "id": "overlay_worn_shark_suit_faraday", "fg": 807, "rotates": false },
- { "id": "overlay_worn_sheath", "fg": 808, "rotates": false },
- { "id": "overlay_worn_sheet", "fg": 603, "rotates": false },
- { "id": "overlay_worn_shoes_birchbark", "fg": 809, "rotates": false },
- { "id": "overlay_worn_shoes_bowling", "fg": 810, "rotates": false },
- { "id": "overlay_worn_sholster", "fg": 705, "rotates": false },
- { "id": "overlay_worn_shorts", "fg": 811, "rotates": false },
- { "id": "overlay_worn_shorts_cargo", "fg": 812, "rotates": false },
- { "id": "overlay_worn_shorts_denim", "fg": 791, "rotates": false },
- { "id": "overlay_worn_silver_medal", "fg": 928, "rotates": false },
- { "id": "overlay_worn_silver_necklace", "fg": 929, "rotates": false },
- { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 930, "rotates": false },
- { "id": "overlay_worn_skinny_tie", "fg": 813, "rotates": false },
- { "id": "overlay_worn_skirt", "fg": 814, "rotates": false },
- { "id": "overlay_worn_skirt_leather", "fg": 815, "rotates": false },
- { "id": "overlay_worn_sleeping_bag", "fg": 816, "rotates": false },
- { "id": "overlay_worn_sleeping_bag_fur", "fg": 816, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster", "fg": 817, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster_fur", "fg": 817, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster_leather", "fg": 817, "rotates": false },
- { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 818, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 819, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 819, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 819, "rotates": false },
- { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 820, "rotates": false },
- { "id": "overlay_worn_sleeveless_tunic", "fg": 859, "rotates": false },
- { "id": "overlay_worn_slingpack", "fg": 805, "rotates": false },
- { "id": "overlay_worn_slippers", "fg": 821, "rotates": false },
- { "id": "overlay_worn_sneakers", "fg": 822, "rotates": false },
- { "id": "overlay_worn_snuggie", "fg": 932, "rotates": false },
- { "id": "overlay_worn_sockmitts", "fg": 746, "rotates": false },
- { "id": "overlay_worn_socks", "fg": 823, "rotates": false },
- { "id": "overlay_worn_socks_bag", "fg": 823, "rotates": false },
- { "id": "overlay_worn_socks_bowling", "fg": 823, "rotates": false },
- { "id": "overlay_worn_socks_wool", "fg": 823, "rotates": false },
- { "id": "overlay_worn_sports_bra", "fg": 824, "rotates": false },
- { "id": "overlay_worn_stealth_cloak", "fg": 543, "rotates": false },
- { "id": "overlay_worn_stillsuit", "fg": 714, "rotates": false },
- { "id": "overlay_worn_stockings", "fg": 825, "rotates": false },
- { "id": "overlay_worn_stockings_oath", "fg": 825, "rotates": false },
- { "id": "overlay_worn_stockings_tent_arms", "fg": 826, "rotates": false },
- { "id": "overlay_worn_stockings_tent_legs", "fg": 827, "rotates": false },
- { "id": "overlay_worn_stomach_sealed", "fg": 510, "rotates": false },
- { "id": "overlay_worn_straw_basket", "fg": 828, "rotates": false },
- { "id": "overlay_worn_straw_sandals", "fg": 660, "rotates": false },
- { "id": "overlay_worn_striped_pants", "fg": 933, "rotates": false },
- { "id": "overlay_worn_striped_shirt", "fg": 829, "rotates": false },
- { "id": "overlay_worn_subsuit_xl", "fg": 853, "rotates": false },
- { "id": "overlay_worn_suit", "fg": 830, "rotates": false },
- { "id": "overlay_worn_suitcase_l", "fg": 831, "rotates": false },
- { "id": "overlay_worn_suitcase_m", "fg": 831, "rotates": false },
- { "id": "overlay_worn_sundress", "fg": 832, "rotates": false },
- { "id": "overlay_worn_sunglasses", "fg": 833, "rotates": false },
- { "id": "overlay_worn_surv_armor_suit", "fg": 840, "rotates": false },
- { "id": "overlay_worn_surv_suit", "fg": 841, "rotates": false },
- { "id": "overlay_worn_survbowpack", "fg": 834, "rotates": false },
- { "id": "overlay_worn_survivor_belt", "fg": 835, "rotates": false },
- { "id": "overlay_worn_survivor_belt_notools", "fg": 835, "rotates": false },
- { "id": "overlay_worn_survivor_duffel_bag", "fg": 836, "rotates": false },
- { "id": "overlay_worn_survivor_goggles", "fg": 673, "rotates": false },
- { "id": "overlay_worn_survivor_light", "fg": 544, "rotates": false },
- { "id": "overlay_worn_survivor_light_on", "fg": 545, "rotates": false },
- { "id": "overlay_worn_survivor_pack", "fg": 593, "rotates": false },
- { "id": "overlay_worn_survivor_rucksack", "fg": 837, "rotates": false },
- { "id": "overlay_worn_survivor_runner_pack", "fg": 805, "rotates": false },
- { "id": "overlay_worn_survivor_suit", "fg": 838, "rotates": false },
- { "id": "overlay_worn_survivor_vest", "fg": 839, "rotates": false },
- { "id": "overlay_worn_swag_bag", "fg": 842, "rotates": false },
- { "id": "overlay_worn_swat_armor", "fg": 843, "rotates": false },
- { "id": "overlay_worn_swat_badge_swat", "fg": 937, "rotates": false },
- { "id": "overlay_worn_sweater", "fg": 844, "rotates": false },
- { "id": "overlay_worn_sweatshirt", "fg": 845, "rotates": false },
- { "id": "overlay_worn_swim_fins", "fg": 846, "rotates": false },
- { "id": "overlay_worn_tabi_dress", "fg": 823, "rotates": false },
- { "id": "overlay_worn_tabi_gi", "fg": 662, "rotates": false },
- { "id": "overlay_worn_tac_fullhelmet", "fg": 847, "rotates": false },
- { "id": "overlay_worn_tac_helmet", "fg": 701, "rotates": false },
- { "id": "overlay_worn_tank_top", "fg": 848, "rotates": false },
- { "id": "overlay_worn_tarp", "fg": 603, "rotates": false },
- { "id": "overlay_worn_technician_pants_gray", "fg": 849, "rotates": false },
- { "id": "overlay_worn_technician_shirt_blue", "fg": 850, "rotates": false },
- { "id": "overlay_worn_technician_shirt_gray", "fg": 851, "rotates": false },
- { "id": "overlay_worn_technician_shirt_ltblue", "fg": 852, "rotates": false },
- { "id": "overlay_worn_thawb", "fg": 853, "rotates": false },
- { "id": "overlay_worn_thermal_gloves", "fg": 671, "rotates": false },
- { "id": "overlay_worn_thermal_gloves_on", "fg": 671, "rotates": false },
- { "id": "overlay_worn_thermal_mask", "fg": 762, "rotates": false },
- { "id": "overlay_worn_thermal_mask_on", "fg": 762, "rotates": false },
- { "id": "overlay_worn_thermal_socks", "fg": 662, "rotates": false },
- { "id": "overlay_worn_thermal_socks_on", "fg": 662, "rotates": false },
- { "id": "overlay_worn_thigh_high_boots", "fg": 854, "rotates": false },
- { "id": "overlay_worn_thong", "fg": 779, "rotates": false },
- { "id": "overlay_worn_tights", "fg": 855, "rotates": false },
- { "id": "overlay_worn_tool_belt", "fg": 835, "rotates": false },
- { "id": "overlay_worn_touring_suit", "fg": 838, "rotates": false },
- { "id": "overlay_worn_trenchcoat", "fg": 856, "rotates": false },
- { "id": "overlay_worn_trenchcoat_fur", "fg": 856, "rotates": false },
- { "id": "overlay_worn_trenchcoat_leather", "fg": 856, "rotates": false },
- { "id": "overlay_worn_trenchcoat_survivor", "fg": 857, "rotates": false },
- { "id": "overlay_worn_tricorne", "fg": 858, "rotates": false },
- { "id": "overlay_worn_trunks", "fg": 791, "rotates": false },
- { "id": "overlay_worn_tunic", "fg": 859, "rotates": false },
- { "id": "overlay_worn_tunic_rag", "fg": 859, "rotates": false },
- { "id": "overlay_worn_turban", "fg": 860, "rotates": false },
- { "id": "overlay_worn_tux", "fg": 830, "rotates": false },
- { "id": "overlay_worn_under_armor_shorts", "fg": 862, "rotates": false },
- { "id": "overlay_worn_undershirt", "fg": 861, "rotates": false },
- { "id": "overlay_worn_vambrace_larmor", "fg": 667, "rotates": false },
- { "id": "overlay_worn_vest", "fg": 863, "rotates": false },
- { "id": "overlay_worn_vest_leather", "fg": 864, "rotates": false },
- { "id": "overlay_worn_vest_leather_mod", "fg": 864, "rotates": false },
- { "id": "overlay_worn_waistcoat", "fg": 865, "rotates": false },
- { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 927, "rotates": false },
- { "id": "overlay_worn_gold_watch", "fg": 916, "rotates": false },
- { "id": "overlay_worn_waterskin2", "fg": 510, "rotates": false },
- { "id": "overlay_worn_waterskin3", "fg": 510, "rotates": false },
- { "id": "overlay_worn_waterskin", "fg": 510, "rotates": false },
- { "id": "overlay_worn_wearable_light", "fg": 546, "rotates": false },
- { "id": "overlay_worn_wearable_light_on", "fg": 547, "rotates": false },
- { "id": "overlay_worn_welding_mask", "fg": 938, "rotates": false },
- { "id": "overlay_worn_welding_mask_crude", "fg": 939, "rotates": false },
- { "id": "overlay_worn_wetsuit", "fg": 866, "rotates": false },
- { "id": "overlay_worn_wetsuit_booties", "fg": 867, "rotates": false },
- { "id": "overlay_worn_wetsuit_gloves", "fg": 672, "rotates": false },
- { "id": "overlay_worn_wetsuit_hood", "fg": 868, "rotates": false },
- { "id": "overlay_worn_wetsuit_spring", "fg": 869, "rotates": false },
- { "id": "overlay_worn_winter_gloves_army", "fg": 669, "rotates": false },
- { "id": "overlay_worn_winter_jacket_army", "fg": 870, "rotates": false },
- { "id": "overlay_worn_winter_pants_army", "fg": 871, "rotates": false },
- { "id": "overlay_worn_wolfsuit", "fg": 872, "rotates": false },
- { "id": "overlay_worn_wool_hoodie", "fg": 723, "rotates": false },
- { "id": "overlay_worn_wool_suit", "fg": 830, "rotates": false },
- { "id": "overlay_worn_wristwatch", "fg": 940, "rotates": false },
- { "id": "overlay_worn_wsurvivor_suit", "fg": 873, "rotates": false },
- { "id": "overlay_worn_xlsurvivor_suit", "fg": 838, "rotates": false },
- { "id": "overlay_worn_zubon_gi", "fg": 785, "rotates": false },
- { "id": "fd_acid_vent", "bg": 943, "rotates": false },
- { "id": "fd_bees", "fg": 1040, "rotates": false },
+ { "id": "overlay_worn_leather_cat_tail", "fg": 664, "rotates": false },
+ { "id": "overlay_worn_leather_pouch", "fg": 511, "rotates": false },
+ { "id": "overlay_worn_leathersandals", "fg": 661, "rotates": false },
+ { "id": "overlay_worn_leg_splint", "fg": 743, "rotates": false },
+ { "id": "overlay_worn_leg_warmers", "fg": 744, "rotates": false },
+ { "id": "overlay_worn_leg_warmers_f", "fg": 744, "rotates": false },
+ { "id": "overlay_worn_leg_warmers_xl", "fg": 744, "rotates": false },
+ { "id": "overlay_worn_leg_warmers_xlf", "fg": 744, "rotates": false },
+ { "id": "overlay_worn_leggings", "fg": 856, "rotates": false },
+ { "id": "overlay_worn_legguard_bronze", "fg": 741, "rotates": false },
+ { "id": "overlay_worn_legguard_hard", "fg": 740, "rotates": false },
+ { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 741, "rotates": false },
+ { "id": "overlay_worn_legguard_paper", "fg": 742, "rotates": false },
+ { "id": "overlay_worn_legrig", "fg": 836, "rotates": false },
+ { "id": "overlay_worn_lmil_armor", "fg": 745, "rotates": false },
+ { "id": "overlay_worn_loincloth", "fg": 746, "rotates": false },
+ { "id": "overlay_worn_loincloth_fur", "fg": 746, "rotates": false },
+ { "id": "overlay_worn_loincloth_leather", "fg": 746, "rotates": false },
+ { "id": "overlay_worn_loincloth_wool", "fg": 746, "rotates": false },
+ { "id": "overlay_worn_long_glove_white", "fg": 747, "rotates": false },
+ { "id": "overlay_worn_long_knit_scarf", "fg": 527, "rotates": false },
+ { "id": "overlay_worn_long_knit_scarf_loose", "fg": 527, "rotates": false },
+ { "id": "overlay_worn_long_patchwork_scarf", "fg": 528, "rotates": false },
+ { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 528, "rotates": false },
+ { "id": "overlay_worn_lowtops", "fg": 748, "rotates": false },
+ { "id": "overlay_worn_lsurvivor_armor", "fg": 749, "rotates": false },
+ { "id": "overlay_worn_lsurvivor_pants", "fg": 787, "rotates": false },
+ { "id": "overlay_worn_lsurvivor_suit", "fg": 839, "rotates": false },
+ { "id": "overlay_worn_magbandolier", "fg": 550, "rotates": false },
+ { "id": "overlay_worn_maid_dress", "fg": 750, "rotates": false },
+ { "id": "overlay_worn_maid_hat", "fg": 751, "rotates": false },
+ { "id": "overlay_worn_maid_stockings", "fg": 826, "rotates": false },
+ { "id": "overlay_worn_makeshift_knapsack", "fg": 752, "rotates": false },
+ { "id": "overlay_worn_makeshift_sling", "fg": 753, "rotates": false },
+ { "id": "overlay_worn_mask_bal", "fg": 754, "rotates": false },
+ { "id": "overlay_worn_mask_bunker", "fg": 529, "rotates": false },
+ { "id": "overlay_worn_mask_bunker_on", "fg": 530, "rotates": false },
+ { "id": "overlay_worn_mask_dust", "fg": 755, "rotates": false },
+ { "id": "overlay_worn_mask_filter", "fg": 756, "rotates": false },
+ { "id": "overlay_worn_mask_fsurvivor", "fg": 757, "rotates": false },
+ { "id": "overlay_worn_mask_fsurvivorxl", "fg": 757, "rotates": false },
+ { "id": "overlay_worn_mask_gas", "fg": 758, "rotates": false },
+ { "id": "overlay_worn_mask_gas_xl", "fg": 758, "rotates": false },
+ { "id": "overlay_worn_mask_guy_fawkes", "fg": 759, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivor", "fg": 531, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivor_on", "fg": 531, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivorxl", "fg": 531, "rotates": false },
+ { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 531, "rotates": false },
+ { "id": "overlay_worn_mask_hockey", "fg": 760, "rotates": false },
+ { "id": "overlay_worn_mask_hsurvivor", "fg": 761, "rotates": false },
+ { "id": "overlay_worn_mask_lsurvivor", "fg": 762, "rotates": false },
+ { "id": "overlay_worn_mask_rioter", "fg": 763, "rotates": false },
+ { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 533, "rotates": false },
+ { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 532, "rotates": false },
+ { "id": "overlay_worn_mask_survivor", "fg": 762, "rotates": false },
+ { "id": "overlay_worn_mask_survivorxl", "fg": 762, "rotates": false },
+ { "id": "overlay_worn_mask_wsurvivor", "fg": 764, "rotates": false },
+ { "id": "overlay_worn_mask_wsurvivorxl", "fg": 764, "rotates": false },
+ { "id": "overlay_worn_mbag", "fg": 765, "rotates": false },
+ { "id": "overlay_worn_megaarmor_armguards_1", "fg": 766, "rotates": false },
+ { "id": "overlay_worn_megaarmor_boots_1", "fg": 767, "rotates": false },
+ { "id": "overlay_worn_megaarmor_gloves_1", "fg": 768, "rotates": false },
+ { "id": "overlay_worn_megaarmor_head_1", "fg": 769, "rotates": false },
+ { "id": "overlay_worn_megaarmor_leggings_1", "fg": 770, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_1", "fg": 771, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_2", "fg": 772, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_3", "fg": 534, "rotates": false },
+ { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 535, "rotates": false },
+ { "id": "overlay_worn_microskirt", "fg": 776, "rotates": false },
+ { "id": "overlay_worn_mil_armor", "fg": 773, "rotates": false },
+ { "id": "overlay_worn_mittens", "fg": 669, "rotates": false },
+ { "id": "overlay_worn_mocassins", "fg": 641, "rotates": false },
+ { "id": "overlay_worn_modularvest", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_modularvestceramic", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_modularvesthard", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_modularvestkevlar", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_modularveststeel", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_modularvestsuper", "fg": 864, "rotates": false },
+ { "id": "overlay_worn_molle_pack", "fg": 774, "rotates": false },
+ { "id": "overlay_worn_motorbike_armor", "fg": 775, "rotates": false },
+ { "id": "overlay_worn_motorbike_boots", "fg": 615, "rotates": false },
+ { "id": "overlay_worn_motorbike_pants", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_nanoskirt", "fg": 776, "rotates": false },
+ { "id": "overlay_worn_nomex_gloves", "fg": 669, "rotates": false },
+ { "id": "overlay_worn_nomex_hood", "fg": 709, "rotates": false },
+ { "id": "overlay_worn_nomex_socks", "fg": 777, "rotates": false },
+ { "id": "overlay_worn_nomex_suit", "fg": 778, "rotates": false },
+ { "id": "overlay_worn_obi_gi", "fg": 739, "rotates": false },
+ { "id": "overlay_worn_optical_cloak", "fg": 779, "rotates": false },
+ { "id": "overlay_worn_panties", "fg": 780, "rotates": false },
+ { "id": "overlay_worn_pants", "fg": 781, "rotates": false },
+ { "id": "overlay_worn_pants_army", "fg": 782, "rotates": false },
+ { "id": "overlay_worn_pants_cargo", "fg": 783, "rotates": false },
+ { "id": "overlay_worn_pants_checkered", "fg": 784, "rotates": false },
+ { "id": "overlay_worn_pants_fur", "fg": 785, "rotates": false },
+ { "id": "overlay_worn_pants_leather", "fg": 785, "rotates": false },
+ { "id": "overlay_worn_pants_ski", "fg": 786, "rotates": false },
+ { "id": "overlay_worn_pants_survivor", "fg": 787, "rotates": false },
+ { "id": "overlay_worn_patchwork_scarf", "fg": 543, "rotates": false },
+ { "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_poncho", "fg": 790, "rotates": false },
+ { "id": "overlay_worn_postman_hat", "fg": 791, "rotates": false },
+ { "id": "overlay_worn_postman_shorts", "fg": 792, "rotates": false },
+ { "id": "overlay_worn_pot_helmet", "fg": 793, "rotates": false },
+ { "id": "overlay_worn_power_armor_basic", "fg": 794, "rotates": false },
+ { "id": "overlay_worn_power_armor_heavy", "fg": 795, "rotates": false },
+ { "id": "overlay_worn_power_armor_helmet_basic", "fg": 796, "rotates": false },
+ { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 797, "rotates": false },
+ { "id": "overlay_worn_power_armor_helmet_light", "fg": 798, "rotates": false },
+ { "id": "overlay_worn_power_armor_light", "fg": 799, "rotates": false },
+ { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 565 },
+ { "id": "overlay_worn_purse", "fg": 800, "rotates": false },
+ { "id": "overlay_worn_quiver", "fg": 801, "rotates": false },
+ { "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_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_rm13_armor", "fg": 549, "rotates": false },
+ { "id": "overlay_worn_rm13_armor_on", "fg": 537, "rotates": false },
+ { "id": "overlay_worn_robe", "fg": 803, "rotates": false },
+ { "id": "overlay_worn_roller_blades", "fg": 804, "rotates": false },
+ { "id": "overlay_worn_rollerskates", "fg": 804, "rotates": false },
+ { "id": "overlay_worn_rucksack", "fg": 805, "rotates": false },
+ { "id": "overlay_worn_runner_bag", "fg": 806, "rotates": false },
+ { "id": "overlay_worn_sac_purse", "fg": 538, "rotates": false },
+ { "id": "overlay_worn_sac_purse_arm", "fg": 539, "rotates": false },
+ { "id": "overlay_worn_sac_purse_leg", "fg": 540, "rotates": false },
+ { "id": "overlay_worn_scabbard", "fg": 807, "rotates": false },
+ { "id": "overlay_worn_scarf", "fg": 541, "rotates": false },
+ { "id": "overlay_worn_scarf_fur", "fg": 542, "rotates": false },
+ { "id": "overlay_worn_scarf_fur_long", "fg": 527, "rotates": false },
+ { "id": "overlay_worn_scarf_fur_long_loose", "fg": 527, "rotates": false },
+ { "id": "overlay_worn_scarf_fur_loose", "fg": 542, "rotates": false },
+ { "id": "overlay_worn_scarf_long", "fg": 528, "rotates": false },
+ { "id": "overlay_worn_scarf_long_loose", "fg": 528, "rotates": false },
+ { "id": "overlay_worn_scarf_loose", "fg": 543, "rotates": false },
+ { "id": "overlay_worn_shark_suit", "fg": 808, "rotates": false },
+ { "id": "overlay_worn_shark_suit_faraday", "fg": 808, "rotates": false },
+ { "id": "overlay_worn_sheath", "fg": 809, "rotates": false },
+ { "id": "overlay_worn_sheet", "fg": 604, "rotates": false },
+ { "id": "overlay_worn_shoes_birchbark", "fg": 810, "rotates": false },
+ { "id": "overlay_worn_shoes_bowling", "fg": 811, "rotates": false },
+ { "id": "overlay_worn_sholster", "fg": 706, "rotates": false },
+ { "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_skinny_tie", "fg": 814, "rotates": false },
+ { "id": "overlay_worn_skirt", "fg": 815, "rotates": false },
+ { "id": "overlay_worn_skirt_leather", "fg": 816, "rotates": false },
+ { "id": "overlay_worn_sleeping_bag", "fg": 817, "rotates": false },
+ { "id": "overlay_worn_sleeping_bag_fur", "fg": 817, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster", "fg": 818, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster_fur", "fg": 818, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster_leather", "fg": 818, "rotates": false },
+ { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 819, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 820, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 820, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 820, "rotates": false },
+ { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 821, "rotates": false },
+ { "id": "overlay_worn_sleeveless_tunic", "fg": 860, "rotates": false },
+ { "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_sockmitts", "fg": 747, "rotates": false },
+ { "id": "overlay_worn_socks", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_socks_bag", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_socks_bowling", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_socks_wool", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_sports_bra", "fg": 825, "rotates": false },
+ { "id": "overlay_worn_stealth_cloak", "fg": 544, "rotates": false },
+ { "id": "overlay_worn_stillsuit", "fg": 715, "rotates": false },
+ { "id": "overlay_worn_stockings", "fg": 826, "rotates": false },
+ { "id": "overlay_worn_stockings_oath", "fg": 826, "rotates": false },
+ { "id": "overlay_worn_stockings_tent_arms", "fg": 827, "rotates": false },
+ { "id": "overlay_worn_stockings_tent_legs", "fg": 828, "rotates": false },
+ { "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_shirt", "fg": 830, "rotates": false },
+ { "id": "overlay_worn_subsuit_xl", "fg": 854, "rotates": false },
+ { "id": "overlay_worn_suit", "fg": 831, "rotates": false },
+ { "id": "overlay_worn_suitcase_l", "fg": 832, "rotates": false },
+ { "id": "overlay_worn_suitcase_m", "fg": 832, "rotates": false },
+ { "id": "overlay_worn_sundress", "fg": 833, "rotates": false },
+ { "id": "overlay_worn_sunglasses", "fg": 834, "rotates": false },
+ { "id": "overlay_worn_surv_armor_suit", "fg": 841, "rotates": false },
+ { "id": "overlay_worn_surv_suit", "fg": 842, "rotates": false },
+ { "id": "overlay_worn_survbowpack", "fg": 835, "rotates": false },
+ { "id": "overlay_worn_survivor_belt", "fg": 836, "rotates": false },
+ { "id": "overlay_worn_survivor_belt_notools", "fg": 836, "rotates": false },
+ { "id": "overlay_worn_survivor_duffel_bag", "fg": 837, "rotates": false },
+ { "id": "overlay_worn_survivor_goggles", "fg": 674, "rotates": false },
+ { "id": "overlay_worn_survivor_light", "fg": 545, "rotates": false },
+ { "id": "overlay_worn_survivor_light_on", "fg": 546, "rotates": false },
+ { "id": "overlay_worn_survivor_pack", "fg": 594, "rotates": false },
+ { "id": "overlay_worn_survivor_rucksack", "fg": 838, "rotates": false },
+ { "id": "overlay_worn_survivor_runner_pack", "fg": 806, "rotates": false },
+ { "id": "overlay_worn_survivor_suit", "fg": 839, "rotates": false },
+ { "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_sweater", "fg": 845, "rotates": false },
+ { "id": "overlay_worn_sweatshirt", "fg": 846, "rotates": false },
+ { "id": "overlay_worn_swim_fins", "fg": 847, "rotates": false },
+ { "id": "overlay_worn_tabi_dress", "fg": 824, "rotates": false },
+ { "id": "overlay_worn_tabi_gi", "fg": 663, "rotates": false },
+ { "id": "overlay_worn_tac_fullhelmet", "fg": 848, "rotates": false },
+ { "id": "overlay_worn_tac_helmet", "fg": 702, "rotates": false },
+ { "id": "overlay_worn_tank_top", "fg": 849, "rotates": false },
+ { "id": "overlay_worn_tarp", "fg": 604, "rotates": false },
+ { "id": "overlay_worn_technician_pants_gray", "fg": 850, "rotates": false },
+ { "id": "overlay_worn_technician_shirt_blue", "fg": 851, "rotates": false },
+ { "id": "overlay_worn_technician_shirt_gray", "fg": 852, "rotates": false },
+ { "id": "overlay_worn_technician_shirt_ltblue", "fg": 853, "rotates": false },
+ { "id": "overlay_worn_thawb", "fg": 854, "rotates": false },
+ { "id": "overlay_worn_thermal_gloves", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_thermal_gloves_on", "fg": 672, "rotates": false },
+ { "id": "overlay_worn_thermal_mask", "fg": 763, "rotates": false },
+ { "id": "overlay_worn_thermal_mask_on", "fg": 763, "rotates": false },
+ { "id": "overlay_worn_thermal_socks", "fg": 663, "rotates": false },
+ { "id": "overlay_worn_thermal_socks_on", "fg": 663, "rotates": false },
+ { "id": "overlay_worn_thigh_high_boots", "fg": 855, "rotates": false },
+ { "id": "overlay_worn_thong", "fg": 780, "rotates": false },
+ { "id": "overlay_worn_tights", "fg": 856, "rotates": false },
+ { "id": "overlay_worn_tool_belt", "fg": 836, "rotates": false },
+ { "id": "overlay_worn_touring_suit", "fg": 839, "rotates": false },
+ { "id": "overlay_worn_trenchcoat", "fg": 857, "rotates": false },
+ { "id": "overlay_worn_trenchcoat_fur", "fg": 857, "rotates": false },
+ { "id": "overlay_worn_trenchcoat_leather", "fg": 857, "rotates": false },
+ { "id": "overlay_worn_trenchcoat_survivor", "fg": 858, "rotates": false },
+ { "id": "overlay_worn_tricorne", "fg": 859, "rotates": false },
+ { "id": "overlay_worn_trunks", "fg": 792, "rotates": false },
+ { "id": "overlay_worn_tunic", "fg": 860, "rotates": false },
+ { "id": "overlay_worn_tunic_rag", "fg": 860, "rotates": false },
+ { "id": "overlay_worn_turban", "fg": 861, "rotates": false },
+ { "id": "overlay_worn_tux", "fg": 831, "rotates": false },
+ { "id": "overlay_worn_under_armor_shorts", "fg": 863, "rotates": false },
+ { "id": "overlay_worn_undershirt", "fg": 862, "rotates": false },
+ { "id": "overlay_worn_vambrace_larmor", "fg": 668, "rotates": false },
+ { "id": "overlay_worn_vest", "fg": 864, "rotates": false },
+ { "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_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_wetsuit", "fg": 867, "rotates": false },
+ { "id": "overlay_worn_wetsuit_booties", "fg": 868, "rotates": false },
+ { "id": "overlay_worn_wetsuit_gloves", "fg": 673, "rotates": false },
+ { "id": "overlay_worn_wetsuit_hood", "fg": 869, "rotates": false },
+ { "id": "overlay_worn_wetsuit_spring", "fg": 870, "rotates": false },
+ { "id": "overlay_worn_winter_gloves_army", "fg": 670, "rotates": false },
+ { "id": "overlay_worn_winter_jacket_army", "fg": 871, "rotates": false },
+ { "id": "overlay_worn_winter_pants_army", "fg": 872, "rotates": false },
+ { "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_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_bile",
- "fg": 944,
+ "fg": 945,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 945 },
- { "id": "corner", "fg": 946 },
- { "id": "edge", "fg": 947 },
- { "id": "t_connection", "fg": 949 },
- { "id": "end_piece", "fg": 948 },
- { "id": "unconnected", "fg": 944 }
+ { "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": "fd_blood",
- "bg": 1041,
+ "bg": 1042,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1041 },
- { "id": "corner", "fg": 950 },
- { "id": "edge", "fg": 951 },
- { "id": "t_connection", "fg": 965 },
- { "id": "end_piece", "fg": 952 },
- { "id": "unconnected", "fg": 966 }
+ { "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": "fd_blood_insect",
- "fg": 953,
+ "fg": 954,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 954 },
- { "id": "corner", "fg": 955 },
- { "id": "edge", "fg": 956 },
- { "id": "t_connection", "fg": 958 },
- { "id": "end_piece", "fg": 957 },
- { "id": "unconnected", "fg": 953 }
+ { "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": "fd_blood_invertebrate",
- "fg": 959,
+ "fg": 960,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 960 },
- { "id": "corner", "fg": 961 },
- { "id": "edge", "fg": 962 },
- { "id": "t_connection", "fg": 964 },
- { "id": "end_piece", "fg": 963 },
- { "id": "unconnected", "fg": 959 }
+ { "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": "fd_blood_veggy",
- "fg": 967,
+ "fg": 968,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 968 },
- { "id": "corner", "fg": 969 },
- { "id": "edge", "fg": 970 },
- { "id": "t_connection", "fg": 972 },
- { "id": "end_piece", "fg": 971 },
- { "id": "unconnected", "fg": 967 }
+ { "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": "fd_cigsmoke",
- "fg": 1027,
+ "fg": 1028,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 973 },
- { "id": "corner", "fg": 974 },
- { "id": "edge", "fg": 975 },
- { "id": "t_connection", "fg": 977 },
- { "id": "end_piece", "fg": 976 },
- { "id": "unconnected", "fg": 978 }
+ { "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": "fd_cracksmoke",
- "fg": 1027,
+ "fg": 1028,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 973 },
- { "id": "corner", "fg": 974 },
- { "id": "edge", "fg": 975 },
- { "id": "t_connection", "fg": 977 },
- { "id": "end_piece", "fg": 976 },
- { "id": "unconnected", "fg": 978 }
+ { "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": "fd_dazzling", "fg": 979 },
+ { "id": "fd_dazzling", "fg": 980 },
{
"id": "fd_electricity",
- "fg": 980,
+ "fg": 981,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 981 },
- { "id": "unconnected", "fg": 981 },
- { "id": "corner", "fg": 982 },
- { "id": "edge", "fg": 983 },
- { "id": "end_piece", "fg": 984 },
- { "id": "t_connection", "fg": 985 }
+ { "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": "fd_fatigue", "fg": 986 },
+ { "id": "fd_fatigue", "fg": 987 },
{
"id": "fd_fire",
- "bg": 1042,
+ "bg": 1043,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 987, "bg": 1043 },
- { "id": "corner", "fg": 988, "bg": 1043 },
- { "id": "edge", "fg": 989, "bg": 1043 },
- { "id": "t_connection", "fg": 991, "bg": 1043 },
- { "id": "end_piece", "fg": 990, "bg": 1043 },
- { "id": "unconnected", "fg": 992, "bg": 1043 }
+ { "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": [ "fd_fire_vent", "testflames" ], "bg": 1042, "rotates": false },
+ { "id": [ "fd_fire_vent", "testflames" ], "bg": 1043, "rotates": false },
{
"id": "fd_flame_burst",
- "bg": 1044,
+ "bg": 1045,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 993, "bg": 1043 },
- { "id": "corner", "fg": 994, "bg": 1043 },
- { "id": "edge", "fg": 995, "bg": 1043 },
- { "id": "t_connection", "fg": 997, "bg": 1043 },
- { "id": "end_piece", "fg": 996, "bg": 1043 },
- { "id": "unconnected", "fg": 998, "bg": 1043 }
+ { "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": "fd_fungal_haze", "bg": 1045 },
- { "id": "fd_fungicidal_gas", "bg": 942, "rotates": false },
- { "id": "fd_gas_vent", "bg": 1046 },
- { "id": "fd_gibs_flesh", "fg": 999 },
+ { "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_gibs_insect",
- "fg": 1000,
+ "fg": 1001,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1001 },
- { "id": "corner", "fg": 1002 },
- { "id": "edge", "fg": 1003 },
- { "id": "t_connection", "fg": 1005 },
- { "id": "end_piece", "fg": 1004 },
- { "id": "unconnected", "fg": 1000 }
+ { "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": "fd_gibs_invertebrate",
- "fg": 1006,
+ "fg": 1007,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1007 },
- { "id": "corner", "fg": 1008 },
- { "id": "edge", "fg": 1009 },
- { "id": "t_connection", "fg": 1011 },
- { "id": "end_piece", "fg": 1010 },
- { "id": "unconnected", "fg": 1006 }
+ { "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": "fd_gibs_veggy", "fg": 1012 },
+ { "id": "fd_gibs_veggy", "fg": 1013 },
{
"id": "fd_incendiary",
- "fg": 1013,
+ "fg": 1014,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1014 },
- { "id": "corner", "fg": 1015 },
- { "id": "edge", "fg": 1016 },
- { "id": "t_connection", "fg": 1018 },
- { "id": "end_piece", "fg": 1017 },
- { "id": "unconnected", "fg": 1019 }
+ { "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": "fd_laser", "bg": 1047 },
+ { "id": "fd_laser", "bg": 1048 },
{
"id": "fd_methsmoke",
- "fg": 1027,
+ "fg": 1028,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 973 },
- { "id": "corner", "fg": 974 },
- { "id": "edge", "fg": 975 },
- { "id": "t_connection", "fg": 977 },
- { "id": "end_piece", "fg": 976 },
- { "id": "unconnected", "fg": 978 }
+ { "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": "fd_nuke_gas", "fg": 1046 },
- { "id": "fd_plasma", "fg": 1020, "rotates": false },
- { "id": "fd_push_items", "bg": 978 },
+ { "id": "fd_nuke_gas", "fg": 1047 },
+ { "id": "fd_plasma", "fg": 1021, "rotates": false },
+ { "id": "fd_push_items", "bg": 979 },
{
"id": "fd_relax_gas",
- "fg": 1027,
+ "fg": 1028,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1021 },
- { "id": "corner", "fg": 1022 },
- { "id": "edge", "fg": 1023 },
- { "id": "end_piece", "fg": 1024 },
- { "id": "t_connection", "fg": 1025 },
- { "id": "unconnected", "fg": 1026 }
+ { "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": "fd_rubble", "bg": 1048, "rotates": false },
- { "id": "fd_sap", "bg": 1049, "rotates": false },
- { "id": "fd_shock_vent", "bg": 980, "rotates": false },
- { "id": "fd_slime", "bg": 943, "rotates": false },
- { "id": "fd_sludge", "bg": 1049, "rotates": false },
+ { "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_smoke",
- "fg": 1027,
+ "fg": 1028,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1028 },
- { "id": "corner", "fg": 1029 },
- { "id": "edge", "fg": 1030 },
- { "id": "t_connection", "fg": 1032 },
- { "id": "end_piece", "fg": 1031 },
- { "id": "unconnected", "fg": 1033 }
+ { "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": "fd_spotlight", "fg": 1034, "rotates": false },
- { "id": "fd_tear_gas", "bg": 978 },
- { "id": "fd_toxic_gas", "bg": 1046 },
+ { "id": "fd_spotlight", "fg": 1035, "rotates": false },
+ { "id": "fd_tear_gas", "bg": 979 },
+ { "id": "fd_toxic_gas", "bg": 1047 },
{
"id": "fd_web",
- "bg": 1050,
+ "bg": 1051,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1050 },
- { "id": "center", "fg": 1035 },
- { "id": "corner", "fg": 1036 },
- { "id": "edge", "fg": 1037 },
- { "id": "t_connection", "fg": 1039 },
- { "id": "end_piece", "fg": 1038 }
+ { "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": "fd_weedsmoke",
- "fg": 1027,
+ "fg": 1028,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1028 },
- { "id": "corner", "fg": 1029 },
- { "id": "edge", "fg": 1030 },
- { "id": "t_connection", "fg": 1032 },
- { "id": "end_piece", "fg": 1031 },
- { "id": "unconnected", "fg": 1033 }
+ { "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": "fd_acid",
- "fg": 1066,
+ "fg": 1067,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"animated": true,
"fg": [
- { "weight": 8, "sprite": 1051 },
- { "weight": 8, "sprite": 1067 },
- { "weight": 8, "sprite": 1083 },
- { "weight": 8, "sprite": 1099 },
- { "weight": 8, "sprite": 1115 },
- { "weight": 8, "sprite": 1131 },
- { "weight": 8, "sprite": 1147 },
- { "weight": 8, "sprite": 1163 }
+ { "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 }
]
},
{
"id": "corner",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1053, 1055, 1054, 1052 ] },
- { "weight": 8, "sprite": [ 1069, 1071, 1070, 1068 ] },
- { "weight": 8, "sprite": [ 1085, 1087, 1086, 1084 ] },
- { "weight": 8, "sprite": [ 1101, 1103, 1102, 1100 ] },
- { "weight": 8, "sprite": [ 1117, 1119, 1118, 1116 ] },
- { "weight": 8, "sprite": [ 1133, 1135, 1134, 1132 ] },
- { "weight": 8, "sprite": [ 1149, 1151, 1150, 1148 ] },
- { "weight": 8, "sprite": [ 1165, 1167, 1166, 1164 ] }
+ { "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 ] }
]
},
{
"id": "t_connection",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1063, 1065, 1064, 1062 ] },
- { "weight": 8, "sprite": [ 1079, 1081, 1080, 1078 ] },
- { "weight": 8, "sprite": [ 1095, 1097, 1096, 1094 ] },
- { "weight": 8, "sprite": [ 1111, 1113, 1112, 1110 ] },
- { "weight": 8, "sprite": [ 1127, 1129, 1128, 1126 ] },
- { "weight": 8, "sprite": [ 1143, 1145, 1144, 1142 ] },
- { "weight": 8, "sprite": [ 1159, 1161, 1160, 1158 ] },
- { "weight": 8, "sprite": [ 1175, 1177, 1176, 1174 ] }
+ { "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 ] }
]
},
{
"id": "edge",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1057, 1056 ] },
- { "weight": 8, "sprite": [ 1073, 1072 ] },
- { "weight": 8, "sprite": [ 1089, 1088 ] },
- { "weight": 8, "sprite": [ 1105, 1104 ] },
- { "weight": 8, "sprite": [ 1121, 1120 ] },
- { "weight": 8, "sprite": [ 1137, 1136 ] },
- { "weight": 8, "sprite": [ 1153, 1152 ] },
- { "weight": 8, "sprite": [ 1169, 1168 ] }
+ { "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 ] }
]
},
{
"id": "end_piece",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1059, 1061, 1060, 1058 ] },
- { "weight": 8, "sprite": [ 1075, 1077, 1076, 1074 ] },
- { "weight": 8, "sprite": [ 1091, 1093, 1092, 1090 ] },
- { "weight": 8, "sprite": [ 1107, 1109, 1108, 1106 ] },
- { "weight": 8, "sprite": [ 1123, 1125, 1124, 1122 ] },
- { "weight": 8, "sprite": [ 1139, 1141, 1140, 1138 ] },
- { "weight": 8, "sprite": [ 1155, 1157, 1156, 1154 ] },
- { "weight": 8, "sprite": [ 1171, 1173, 1172, 1170 ] }
+ { "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 ] }
]
},
{
"id": "unconnected",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1066, 1066 ] },
- { "weight": 8, "sprite": [ 1082, 1082 ] },
- { "weight": 8, "sprite": [ 1098, 1098 ] },
- { "weight": 8, "sprite": [ 1114, 1114 ] },
- { "weight": 8, "sprite": [ 1130, 1130 ] },
- { "weight": 8, "sprite": [ 1146, 1146 ] },
- { "weight": 8, "sprite": [ 1162, 1162 ] },
- { "weight": 8, "sprite": [ 1178, 1178 ] }
+ { "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 ] }
]
}
]
},
{
"id": "fd_hot_air_sauna",
- "fg": 1194,
+ "fg": 1195,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1179 },
- { "id": "corner", "fg": [ 1181, 1183, 1182, 1180 ] },
- { "id": "t_connection", "fg": [ 1191, 1193, 1192, 1190 ] },
- { "id": "edge", "fg": [ 1185, 1184 ] },
- { "id": "end_piece", "fg": [ 1187, 1189, 1188, 1186 ] },
- { "id": "unconnected", "fg": [ 1194, 1194 ] }
+ { "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": "f_air_conditioner", "fg": 1195, "bg": 3615, "rotates": false },
- { "id": "f_arcade_machine", "fg": 1196, "rotates": false },
- { "id": "f_armchair", "fg": 1197, "rotates": false },
- { "id": [ "f_ash", "ash" ], "fg": 1198, "rotates": false },
- { "id": "f_ball_mach", "fg": 1199, "rotates": false },
- { "id": "f_barricade_road", "fg": 1200, "rotates": false },
+ { "id": "f_air_conditioner", "fg": 1196, "bg": 3652, "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_bathtub",
- "fg": 1201,
+ "fg": 1202,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1201 },
- { "id": "center", "fg": 1202 },
- { "id": "corner", "fg": 1203 },
- { "id": "edge", "fg": 1204 },
- { "id": "end_piece", "fg": 1205 },
- { "id": "t_connection", "fg": 1206 }
+ { "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": "f_bed",
- "fg": 1207,
+ "fg": 1208,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1207 },
- { "id": "corner", "fg": 1208 },
- { "id": "edge", "fg": 1209 },
- { "id": "end_piece", "fg": 1210 },
- { "id": "t_connection", "fg": 1211 },
- { "id": "unconnected", "fg": 1212 }
- ]
- },
- { "id": "f_bench", "fg": 4738, "rotates": true },
- { "id": "f_blade", "fg": 1213, "rotates": false },
- { "id": "f_blade_upright", "fg": 1214, "bg": [ ], "rotates": false },
- { "id": "f_boulder_medium", "fg": 1215, "rotates": false },
- { "id": "f_boulder_small", "fg": 1216, "rotates": false },
- { "id": "f_canvas_floor", "fg": 1241 },
- { "id": "f_cattails", "fg": 1217, "rotates": false },
- { "id": "f_center_groundsheet", "fg": 1241 },
- { "id": "f_chair", "fg": 1218, "rotates": false },
- { "id": "f_clay_kiln", "fg": 1259 },
- { "id": "f_coffin_c", "fg": 1219 },
- { "id": "f_coffin_o", "fg": 1220 },
- {
- "id": "f_desk",
- "fg": 1221,
- "multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 1221 },
- { "id": "corner", "fg": 1222 },
- { "id": "edge", "fg": 1223 },
- { "id": "end_piece", "fg": 1224 },
- { "id": "t_connection", "fg": 1225 },
- { "id": "unconnected", "fg": 1226 }
- ]
- },
- { "id": "f_displaycase", "fg": 1227, "rotates": false },
- { "id": "f_displaycase_b", "fg": 1228, "rotates": false },
- { "id": "f_dive_block", "fg": 1229, "rotates": false },
- { "id": "f_dryer", "fg": 1230, "rotates": false },
+ { "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": 4775, "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": "f_dumpster",
- "fg": 1231,
+ "fg": 1226,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1231 },
- { "id": "center", "fg": 1232 },
- { "id": "corner", "fg": 1233 },
- { "id": "edge", "fg": 1234 },
- { "id": "end_piece", "fg": 1235 },
- { "id": "t_connection", "fg": 1236 }
- ]
- },
- { "id": "f_egg_sackbw", "fg": 1237, "rotates": false },
- { "id": "f_egg_sackcs", "fg": 1237, "rotates": false },
- { "id": "f_egg_sacke", "fg": 1238, "rotates": false },
- { "id": "f_egg_sackws", "fg": 1239, "rotates": false },
- { "id": "f_ergometer", "fg": 1240, "rotates": false },
- { "id": "f_fema_groundsheet", "fg": 1241, "rotates": false },
- { "id": "f_file_cabinet", "fg": 1242, "rotates": false },
- { "id": "f_fireplace", "fg": 1243, "rotates": false },
- { "id": "f_firering", "fg": 1323, "rotates": false },
- { "id": "f_floor_canvas", "fg": 1244, "rotates": false },
- { "id": "f_flower_fungal", "bg": 1344, "rotates": false },
- { "id": "f_forge_rock", "fg": 1243 },
- { "id": "f_fungal_clump", "fg": 1245, "bg": 1344, "rotates": false },
- { "id": "f_fungal_mass", "fg": 1246, "bg": 1344, "rotates": false },
- { "id": "f_glass_fridge", "fg": 1247, "rotates": false },
- { "id": "f_grave_head", "fg": 1248 },
- { "id": "f_grave_monument", "fg": 1249 },
- { "id": "f_grave_stone", "fg": 1250 },
- { "id": "f_grave_stone_old", "fg": 1251 },
- { "id": "f_groundsheet", "fg": 1241, "rotates": false },
- { "id": "f_gun_safe_el", "fg": 1254, "rotates": false },
- { "id": "f_gunsafe_mj", "fg": 1252, "rotates": false },
- { "id": "f_gunsafe_ml", "fg": 1253, "rotates": false },
- { "id": "f_hay", "fg": 1255, "rotates": false },
- { "id": "f_home_furnace", "fg": 1256, "bg": 3615, "rotates": false },
- { "id": "f_indoor_plant", "fg": 1257, "rotates": false },
- { "id": "f_indoor_plant_y", "fg": 1258, "rotates": false },
- { "id": "f_kiln_empty", "fg": 1259 },
- { "id": "f_kiln_full", "fg": 1259, "rotates": false },
- { "id": "f_ladder", "fg": 3442, "rotates": false },
+ { "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": 3652, "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": 3480, "rotates": false },
{
"id": "f_lane",
- "fg": 1260,
+ "fg": 1255,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1260 },
- { "id": "corner", "fg": 1261 },
- { "id": "edge", "fg": 1262 },
- { "id": "end_piece", "fg": 1263 }
+ { "id": "unconnected", "fg": 1255 },
+ { "id": "corner", "fg": 1256 },
+ { "id": "edge", "fg": 1257 },
+ { "id": "end_piece", "fg": 1258 }
]
},
- { "id": "f_large_groundsheet", "fg": 1241 },
- { "id": "f_lilypad", "fg": 1327, "rotates": false },
- { "id": "f_locker", "fg": 1242, "rotates": false },
- { "id": "f_mailbox", "fg": 1325, "rotates": false },
+ { "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_makeshift_bed",
- "fg": 1264,
+ "fg": 1259,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1265 },
- { "id": "corner", "fg": 1266 },
- { "id": "edge", "fg": 1267 },
- { "id": "end_piece", "fg": 1268 },
- { "id": "t_connection", "fg": 1269 },
- { "id": "unconnected", "fg": 1270 }
+ { "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": "f_mannequin", "fg": 1271, "rotates": false },
- { "id": "f_mutcactus_test", "fg": 1272, "bg": 1345, "rotates": false },
- { "id": "f_piano", "fg": 1341, "rotates": false },
- { "id": "f_pinball_machine", "fg": 1273, "rotates": false },
- { "id": "f_plant_harvest", "fg": 1274, "bg": 3622, "rotates": false },
- { "id": "f_plant_mature", "fg": 1275, "bg": 3622, "rotates": false },
- { "id": "f_plant_seed", "fg": 1276, "bg": 3622, "rotates": false },
- { "id": "f_plant_seedling", "fg": 1277, "bg": 3622, "rotates": false },
+ { "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": 3659, "rotates": false },
+ { "id": "f_plant_mature", "fg": 1270, "bg": 3659, "rotates": false },
+ { "id": "f_plant_seed", "fg": 1271, "bg": 3659, "rotates": false },
+ { "id": "f_plant_seedling", "fg": 1272, "bg": 3659, "rotates": false },
{
"id": "f_pool_table",
- "fg": 1278,
+ "fg": 1273,
"rotates": false,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 1278 }, { "id": "end_piece", "fg": 1279 }, { "id": "t_connection", "fg": 1280 } ]
+ "additional_tiles": [ { "id": "corner", "fg": 1273 }, { "id": "end_piece", "fg": 1274 }, { "id": "t_connection", "fg": 1275 } ]
},
- { "id": "f_rack", "fg": 1281, "rotates": false },
- { "id": "f_rack_coat", "fg": 1326, "rotates": false },
+ { "id": "f_rack", "fg": 1276, "rotates": false },
+ { "id": "f_rack_coat", "fg": 1321, "rotates": false },
{
"id": "f_recycle_bin",
- "fg": 1231,
+ "fg": 1226,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1231 },
- { "id": "center", "fg": 1232 },
- { "id": "corner", "fg": 1233 },
- { "id": "edge", "fg": 1234 },
- { "id": "end_piece", "fg": 1235 },
- { "id": "t_connection", "fg": 1236 }
+ { "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_robotic_arm", "fg": 3436, "rotates": false },
- { "id": "f_rubble", "fg": 1282, "rotates": false },
+ { "id": "f_robotic_arm", "fg": 3474, "rotates": false },
+ { "id": "f_rubble", "fg": 1277, "rotates": false },
{
"id": "f_rubble_landfill",
- "fg": 1328,
+ "fg": 1323,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1331 },
- { "id": "corner", "fg": 1329 },
- { "id": "edge", "fg": 1333 },
- { "id": "end_piece", "fg": 1332 },
- { "id": "t_connection", "fg": 1330 },
- { "id": "unconnected", "fg": 1328 }
+ { "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": "f_rubble_landfill_season_winter",
- "fg": 1334,
+ "fg": 1329,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1337 },
- { "id": "corner", "fg": 1335 },
- { "id": "edge", "fg": 1339 },
- { "id": "end_piece", "fg": 1338 },
- { "id": "t_connection", "fg": 1336 },
- { "id": "unconnected", "fg": 1334 }
+ { "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": "f_rubble_rock", "fg": 1283, "rotates": false },
+ { "id": "f_rubble_rock", "fg": 1278, "rotates": false },
{
"id": "f_sandbag_half",
- "fg": 1324,
+ "fg": 1319,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1324 },
- { "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": 1319 },
+ { "id": "center", "fg": 1280 },
+ { "id": "corner", "fg": 1281 },
+ { "id": "edge", "fg": 1282 },
+ { "id": "end_piece", "fg": 1283 },
+ { "id": "t_connection", "fg": 1284 }
]
},
{
"id": "f_sandbag_wall",
- "fg": 1284,
+ "fg": 1279,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1284 },
- { "id": "center", "fg": 1290 },
- { "id": "corner", "fg": 1291 },
- { "id": "edge", "fg": 1292 },
- { "id": "end_piece", "fg": 1293 },
- { "id": "t_connection", "fg": 1294 }
+ { "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": "f_shackle", "fg": 1295 },
- { "id": "f_shower", "fg": 1296, "rotates": false },
- { "id": "f_sign", "fg": 1297, "rotates": false },
- { "id": "f_skin_groundsheet", "fg": 1241 },
- { "id": "f_slab", "fg": 1298 },
- { "id": "f_smoking_rack", "fg": 1299, "rotates": false },
+ { "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_sofa",
- "fg": 1300,
+ "fg": 1295,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 1300 },
- { "id": "corner", "fg": 1301 },
- { "id": "edge", "fg": 1302 },
- { "id": "end_piece", "fg": 1303 }
+ { "id": "unconnected", "fg": 1295 },
+ { "id": "corner", "fg": 1296 },
+ { "id": "edge", "fg": 1297 },
+ { "id": "end_piece", "fg": 1298 }
]
},
- { "id": "f_spike", "fg": 1304, "rotates": false },
- { "id": "f_standing_tank", "fg": 3425 },
- { "id": [ "f_statue", "t_sliding_brick_wall_control" ], "fg": 1305, "rotates": false },
- { "id": "f_straw_bed", "fg": 1306, "rotates": false },
- { "id": "f_tank_trap", "fg": 1342, "rotates": false },
- { "id": "f_target", "fg": 1340, "rotates": false },
+ { "id": "f_spike", "fg": 1299, "rotates": false },
+ { "id": "f_standing_tank", "fg": 3463 },
+ { "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_tatami",
- "fg": 1313,
+ "fg": 1308,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 1314 }, { "id": "edge", "fg": 1313 }, { "id": "t_connection", "fg": 1315 } ]
+ "additional_tiles": [ { "id": "corner", "fg": 1309 }, { "id": "edge", "fg": 1308 }, { "id": "t_connection", "fg": 1310 } ]
},
- { "id": "f_toilet", "fg": 1316, "rotates": false },
- { "id": "f_trashcan", "fg": 1317, "rotates": false },
- { "id": "f_treadmill", "fg": 1318, "rotates": false },
- { "id": "f_vending_reinforced", "fg": 1319, "rotates": false },
- { "id": "f_wardrobe", "fg": 1343, "rotates": false },
- { "id": "f_washer", "fg": 1320, "rotates": false },
- { "id": "f_water_heater", "fg": 3451, "rotates": true },
- { "id": "f_woodstove", "fg": 1321, "rotates": false },
- { "id": "f_wreckage", "fg": 1322, "rotates": false },
+ { "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": 3489, "rotates": true },
+ { "id": "f_woodstove", "fg": 1316, "rotates": false },
+ { "id": "f_wreckage", "fg": 1317, "rotates": false },
{
"id": "f_counter",
- "fg": 1374,
+ "fg": 1369,
"multitile": true,
"additional_tiles": [
- { "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": "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": "f_cupboard",
- "fg": 1390,
+ "fg": 1385,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1375 },
- { "id": "corner", "fg": [ 1377, 1379, 1378, 1376 ] },
- { "id": "t_connection", "fg": [ 1387, 1389, 1388, 1386 ] },
- { "id": "edge", "fg": [ 1381, 1380 ] },
- { "id": "end_piece", "fg": [ 1383, 1385, 1384, 1382 ] },
- { "id": "unconnected", "fg": [ 1390, 1390 ] }
+ { "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": "f_alien_table",
- "fg": 1408,
+ "fg": 1403,
"multitile": true,
"additional_tiles": [
- { "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": "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": "f_canvas_door",
- "fg": 1412,
+ "fg": 1407,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1412 },
- { "id": "t_connection", "fg": [ 1412, 1411, 1412, 1411 ] },
- { "id": "edge", "fg": [ 1411, 1412 ] },
- { "id": "unconnected", "fg": [ 1412, 1412 ] }
+ { "id": "center", "fg": 1407 },
+ { "id": "t_connection", "fg": [ 1407, 1406, 1407, 1406 ] },
+ { "id": "edge", "fg": [ 1406, 1407 ] },
+ { "id": "unconnected", "fg": [ 1407, 1407 ] }
]
},
{
"id": "f_canvas_door_o",
- "fg": 1410,
+ "fg": 1405,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1410 },
- { "id": "t_connection", "fg": [ 1410, 1409, 1410, 1409 ] },
- { "id": "edge", "fg": [ 1409, 1410 ] },
- { "id": "unconnected", "fg": [ 1410, 1410 ] }
+ { "id": "center", "fg": 1405 },
+ { "id": "t_connection", "fg": [ 1405, 1404, 1405, 1404 ] },
+ { "id": "edge", "fg": [ 1404, 1405 ] },
+ { "id": "unconnected", "fg": [ 1405, 1405 ] }
]
},
{
"id": "f_canvas_wall",
- "fg": 1423,
+ "fg": 1418,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1423 },
- { "id": "corner", "fg": [ 1414, 1416, 1415, 1413 ] },
- { "id": "t_connection", "fg": [ 1417, 1418, 1417, 1418 ] },
- { "id": "edge", "fg": [ 1418, 1417 ] },
- { "id": "end_piece", "fg": [ 1420, 1422, 1421, 1419 ] },
- { "id": "unconnected", "fg": [ 1423, 1423 ] }
+ { "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": "f_cardboard_box", "fg": 1424 },
+ { "id": "f_cardboard_box", "fg": 1419 },
{
"id": "f_curtain",
- "fg": 1440,
+ "fg": 1435,
+ "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": "f_desk",
+ "fg": 1448,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1440 },
- { "id": "corner", "fg": [ 1426, 1428, 1427, 1425 ] },
- { "id": "t_connection", "fg": [ 1437, 1439, 1438, 1436 ] },
- { "id": "edge", "fg": [ 1430, 1429 ] },
- { "id": "end_piece", "fg": [ 1432, 1434, 1433, 1431 ] },
- { "id": "unconnected", "fg": [ 1440, 1440 ] }
+ { "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": "f_filing_cabinet", "rotates": true, "fg": [ 1442, 1445, 1444, 1443 ] },
+ { "id": "f_filing_cabinet", "rotates": true, "fg": [ 1450, 1453, 1452, 1451 ] },
{
"id": "f_large_canvas_door",
- "fg": 1450,
+ "fg": 1459,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1450 },
- { "id": "t_connection", "fg": [ 1450, 1449, 1450, 1449 ] },
- { "id": "edge", "fg": [ 1449, 1450 ] },
- { "id": "unconnected", "fg": [ 1450, 1450 ] }
+ { "id": "center", "fg": 1459 },
+ { "id": "t_connection", "fg": [ 1459, 1458, 1459, 1458 ] },
+ { "id": "edge", "fg": [ 1458, 1459 ] },
+ { "id": "unconnected", "fg": [ 1459, 1459 ] }
]
},
{
"id": "f_large_canvas_door_o",
- "fg": 1448,
+ "fg": 1457,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1448 },
- { "id": "t_connection", "fg": [ 1448, 1447, 1448, 1447 ] },
- { "id": "edge", "fg": [ 1447, 1448 ] },
- { "id": "unconnected", "fg": [ 1448, 1448 ] }
+ { "id": "center", "fg": 1457 },
+ { "id": "t_connection", "fg": [ 1457, 1456, 1457, 1456 ] },
+ { "id": "edge", "fg": [ 1456, 1457 ] },
+ { "id": "unconnected", "fg": [ 1457, 1457 ] }
]
},
{
"id": "f_large_canvas_wall",
- "fg": 1461,
+ "fg": 1470,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1461 },
- { "id": "corner", "fg": [ 1452, 1454, 1453, 1451 ] },
- { "id": "t_connection", "fg": [ 1455, 1456, 1455, 1456 ] },
- { "id": "edge", "fg": [ 1456, 1455 ] },
- { "id": "end_piece", "fg": [ 1458, 1460, 1459, 1457 ] },
- { "id": "unconnected", "fg": [ 1461, 1461 ] }
+ { "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": "f_skin_door",
- "fg": 1466,
+ "fg": 1475,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1466 },
- { "id": "t_connection", "fg": [ 1466, 1465, 1466, 1465 ] },
- { "id": "edge", "fg": [ 1465, 1466 ] },
- { "id": "unconnected", "fg": [ 1466, 1466 ] }
+ { "id": "center", "fg": 1475 },
+ { "id": "t_connection", "fg": [ 1475, 1474, 1475, 1474 ] },
+ { "id": "edge", "fg": [ 1474, 1475 ] },
+ { "id": "unconnected", "fg": [ 1475, 1475 ] }
]
},
{
"id": "f_skin_door_o",
- "fg": 1464,
+ "fg": 1473,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1464 },
- { "id": "t_connection", "fg": [ 1464, 1463, 1464, 1463 ] },
- { "id": "edge", "fg": [ 1463, 1464 ] },
- { "id": "unconnected", "fg": [ 1464, 1464 ] }
+ { "id": "center", "fg": 1473 },
+ { "id": "t_connection", "fg": [ 1473, 1472, 1473, 1472 ] },
+ { "id": "edge", "fg": [ 1472, 1473 ] },
+ { "id": "unconnected", "fg": [ 1473, 1473 ] }
]
},
{
"id": "f_skin_wall",
- "fg": 1478,
+ "fg": 1487,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1478 },
- { "id": "corner", "fg": [ 1468, 1470, 1469, 1467 ] },
- { "id": "t_connection", "fg": [ 1472, 1471, 1472, 1471 ] },
- { "id": "edge", "fg": [ 1472, 1471 ] },
- { "id": "end_piece", "fg": [ 1474, 1476, 1475, 1473 ] },
- { "id": "unconnected", "fg": [ 1478, 1478 ] }
+ { "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": "f_table",
- "fg": 1495,
+ "fg": 1504,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1480 },
- { "id": "corner", "fg": [ 1482, 1484, 1483, 1481 ] },
- { "id": "t_connection", "fg": [ 1492, 1494, 1493, 1491 ] },
- { "id": "edge", "fg": [ 1486, 1485 ] },
- { "id": "end_piece", "fg": [ 1488, 1490, 1489, 1487 ] },
- { "id": "unconnected", "fg": [ 1495, 1495 ] }
+ { "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": [ "2byarm_guard", "2byshin_guard" ], "fg": 1509 },
- { "id": "fried_eggs", "fg": 1553, "rotates": false },
- { "id": [ "money_one", "money_ten", "money_twenty" ], "fg": 1580 },
- { "id": [ "flyer", "necropolis_leaflet" ], "fg": 1630 },
+ { "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": 1639 },
{
"id": [
"adv_chemistry",
@@ -2338,7 +2338,7 @@
"modern_tanner",
"repeater_mod_guide"
],
- "fg": 1632
+ "fg": 1641
},
{
"id": [
@@ -2359,7 +2359,7 @@
"textbook_robots",
"textbook_armschina"
],
- "fg": 1639
+ "fg": 1648
},
{
"id": [
@@ -2374,7 +2374,7 @@
"cookbook_daintydishes",
"cookbook_liverforkids"
],
- "fg": 1633
+ "fg": 1642
},
{
"id": [
@@ -2387,7 +2387,7 @@
"recipe_melee",
"recipe_labchem"
],
- "fg": 1637
+ "fg": 1646
},
{
"id": [
@@ -2404,9 +2404,9 @@
"recipe_creepy",
"recipe_maiar"
],
- "fg": 1637
+ "fg": 1646
},
- { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 1636 },
+ { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 1645 },
{
"id": [
"mag_rifle",
@@ -2426,7 +2426,7 @@
"mag_launcher",
"mag_swimming"
],
- "fg": 1634
+ "fg": 1643
},
{
"id": [
@@ -2443,7 +2443,7 @@
"schematics_searchlight",
"schematics_secubot"
],
- "fg": 1638
+ "fg": 1647
},
{
"id": [
@@ -2463,9 +2463,9 @@
"manual_shotgun",
"manual_fabrication"
],
- "fg": 1635
+ "fg": 1644
},
- { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 1631 },
+ { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 1640 },
{
"id": [
"mre_asianbeef_box",
@@ -2479,7 +2479,7 @@
"mre_beef_box",
"mre_beefstew_box"
],
- "fg": 1669,
+ "fg": 1678,
"rotates": false
},
{
@@ -2490,7 +2490,7 @@
"mre_mexicanchickenstew_box",
"mre_chicken_box"
],
- "fg": 1671,
+ "fg": 1680,
"rotates": false
},
{
@@ -2504,38 +2504,38 @@
"mre_ratatouille_box",
"mre_sfettuccine_box"
],
- "fg": 1675,
+ "fg": 1684,
"rotates": false
},
- { "id": [ "mre_hotdog_box", "mre_hashbrownbacon_box", "mre_maplesausage_box" ], "fg": 1672, "rotates": false },
- { "id": [ "mre_accessory", "mre_dessert" ], "fg": 1674, "rotates": false },
- { "id": [ "plastic_plate", "soap_holder" ], "fg": 1759 },
- { "id": "1st_aid", "fg": 1677 },
- { "id": "2x4", "fg": 1678 },
- { "id": "RAM", "fg": 1679 },
- { "id": "helmet_motor", "fg": 1680 },
- { "id": "223_casing", "fg": 1681 },
- { "id": "40mm_casing", "fg": 1682 },
- { "id": "40x46mm_m118_casing", "fg": 1682 },
- { "id": "50_casing", "fg": 1683 },
- { "id": "9mm_casing", "fg": 1684 },
- { "id": "arrow_cf", "fg": 1685 },
- { "id": "arrow_exploding", "fg": 1686 },
- { "id": "arrow_field_point_fletched", "fg": 1687 },
- { "id": "arrow_fire_hardened_fletched", "fg": 1688 },
- { "id": "arrow_flammable", "fg": 1689 },
- { "id": "arrow_flamming", "fg": 1690 },
- { "id": "arrow_heavy_fire_hardened_fletched", "fg": 1691 },
- { "id": "arrow_metal", "fg": 1692 },
- { "id": "arrow_metal_sharpened_fletched", "fg": 1693 },
- { "id": "arrow_plastic", "fg": 1694 },
- { "id": "arrow_small_game_fletched", "fg": 1695 },
- { "id": "arrow_wood", "fg": 1696 },
- { "id": "arrow_wood_heavy", "fg": 1697 },
- { "id": "bolt_cf", "fg": 1698 },
- { "id": "bolt_explosive", "fg": 1699 },
- { "id": "bolt_metal", "fg": 1700 },
- { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 1701 },
+ { "id": [ "mre_hotdog_box", "mre_hashbrownbacon_box", "mre_maplesausage_box" ], "fg": 1681, "rotates": false },
+ { "id": [ "mre_accessory", "mre_dessert" ], "fg": 1683, "rotates": false },
+ { "id": [ "plastic_plate", "soap_holder" ], "fg": 1768 },
+ { "id": "1st_aid", "fg": 1686 },
+ { "id": "2x4", "fg": 1687 },
+ { "id": "RAM", "fg": 1688 },
+ { "id": "helmet_motor", "fg": 1689 },
+ { "id": "223_casing", "fg": 1690 },
+ { "id": "40mm_casing", "fg": 1691 },
+ { "id": "40x46mm_m118_casing", "fg": 1691 },
+ { "id": "50_casing", "fg": 1692 },
+ { "id": "9mm_casing", "fg": 1693 },
+ { "id": "arrow_cf", "fg": 1694 },
+ { "id": "arrow_exploding", "fg": 1695 },
+ { "id": "arrow_field_point_fletched", "fg": 1696 },
+ { "id": "arrow_fire_hardened_fletched", "fg": 1697 },
+ { "id": "arrow_flammable", "fg": 1698 },
+ { "id": "arrow_flamming", "fg": 1699 },
+ { "id": "arrow_heavy_fire_hardened_fletched", "fg": 1700 },
+ { "id": "arrow_metal", "fg": 1701 },
+ { "id": "arrow_metal_sharpened_fletched", "fg": 1702 },
+ { "id": "arrow_plastic", "fg": 1703 },
+ { "id": "arrow_small_game_fletched", "fg": 1704 },
+ { "id": "arrow_wood", "fg": 1705 },
+ { "id": "arrow_wood_heavy", "fg": 1706 },
+ { "id": "bolt_cf", "fg": 1707 },
+ { "id": "bolt_explosive", "fg": 1708 },
+ { "id": "bolt_metal", "fg": 1709 },
+ { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 1710 },
{
"id": [
"bolt_wood",
@@ -2546,871 +2546,864 @@
"bolt_wood_bodkin",
"bolt_wood_small_game"
],
- "fg": 1702
- },
- { "id": "shot_hull", "fg": 1703 },
- { "id": "art_sphere", "fg": 1718 },
- { "id": "art_rod", "fg": 1716 },
- { "id": "art_teardrop", "fg": 1720 },
- { "id": "art_lamp", "fg": 1712 },
- { "id": "art_snake", "fg": 1717 },
- { "id": "art_disc", "fg": 1709 },
- { "id": "art_beads", "fg": 1706 },
- { "id": "art_napkin", "fg": 1713 },
- { "id": "art_urchin", "fg": 1722 },
- { "id": "art_jelly", "fg": 1710 },
- { "id": "art_spiral", "fg": 1719 },
- { "id": "art_pin", "fg": 1714 },
- { "id": "art_tube", "fg": 1721 },
- { "id": "art_pyramid", "fg": 1715 },
- { "id": "art_crystal", "fg": 1708 },
- { "id": "art_knot", "fg": 1711 },
- { "id": "art_crescent", "fg": 1707 },
- { "id": "altered_teapot", "fg": 1704 },
- { "id": "architect_cube", "fg": 1705 },
- { "id": "fire_ax", "fg": 2400 },
- { "id": "ax", "fg": 1724 },
- { "id": "hatchet", "fg": 1723 },
- { "id": "backpack", "fg": 1725 },
- { "id": "duffelbag", "fg": 1726 },
- { "id": "molle_pack", "fg": 1727 },
- { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 1730 },
- { "id": "bag_canvas", "fg": 1733 },
- { "id": "basket_laundry", "fg": 1734 },
- { "id": "bat", "fg": 1735 },
- { "id": "bat_metal", "fg": 1736 },
- { "id": "heavy_battery_cell", "fg": 1738 },
- { "id": "heavy_plus_battery_cell", "fg": 1738 },
- { "id": "heavy_disposable_cell", "fg": 1738 },
- { "id": "heavy_atomic_battery_cell", "fg": 1737 },
- { "id": "light_battery_cell", "fg": 1740 },
- { "id": "light_minus_battery_cell", "fg": 1742 },
- { "id": "light_plus_battery_cell", "fg": 1740 },
- { "id": "light_disposable_battery_cell", "fg": 1740 },
- { "id": "light_atomic_battery_cell", "fg": 1739 },
- { "id": "light_minus_atomic_battery_cell", "fg": 1741 },
- { "id": "medium_battery_cell", "fg": 1744 },
- { "id": "medium_plus_battery_cell", "fg": 1744 },
- { "id": "medium_disposable_battery_cell", "fg": 1744 },
- { "id": "medium_atomic_battery_cell", "fg": 1743 },
- { "id": "bead_bracelet", "fg": 1745 },
- { "id": "board_trap", "fg": 1746 },
- { "id": "bone", "fg": 1747 },
- { "id": "bone_tainted", "fg": 1748 },
- { "id": "bottle_twoliter", "fg": 1749 },
- { "id": "box_large", "fg": 1750 },
- { "id": "box_medium", "fg": 1751 },
- { "id": "broom", "fg": 1752 },
- { "id": "knife_butcher", "fg": 1754 },
- { "id": "bwirebat", "fg": 1755 },
- { "id": "cattlefodder", "fg": 1756 },
- { "id": "ceramic_cup", "fg": 1757 },
- { "id": "ceramic_mug", "fg": 1758 },
- { "id": "ceramic_plate", "fg": 1759 },
- { "id": "chain", "fg": 1760 },
- { "id": "chainsaw_off", "fg": 1761 },
- { "id": "clay_lump", "fg": 1762 },
- { "id": "clay_watercont", "fg": 1765 },
- { "id": "clay_hydria", "fg": 1763 },
- { "id": "coffeemaker", "fg": 1797 },
- { "id": "bag_zipper", "fg": 1798 },
- { "id": "bottle_glass", "fg": 1799 },
- { "id": "bottle_plastic", "fg": 1800 },
- { "id": "bottle_plastic_small", "fg": 1801 },
- { "id": "box_cigarette", "fg": 1802 },
- { "id": "box_small", "fg": 1803 },
- { "id": "can_drink", "fg": 1804 },
- { "id": [ "can_drink_unsealed" ], "fg": 1805 },
- { "id": [ "glass", "base_glass_dish", "wine_glass" ], "fg": 1806 },
- { "id": "jar_3l_glass", "fg": 1807 },
- { "id": "jar_3l_glass_sealed", "fg": 1808 },
- { "id": "jar_glass", "fg": 1809 },
- { "id": "jar_glass_sealed", "fg": 1810 },
- { "id": "jug_plastic", "fg": 1811 },
- { "id": "crossbow", "fg": 1812 },
- { "id": "crowbar", "fg": 1813 },
- { "id": "cudgel", "fg": 1814 },
- { "id": "filter_air", "fg": 1815 },
- { "id": "fish_bait", "fg": 1816 },
- { "id": "corpse_mon_fish_tiny", "fg": 1820 },
- { "id": "corpse_mon_fish_small", "fg": 1819 },
- { "id": "corpse_mon_fish_medium", "fg": 1818 },
- { "id": "corpse_mon_fish_large", "fg": 1817 },
- { "id": "fish_trap", "fg": 1821 },
- { "id": "forge", "fg": 1823 },
- { "id": "char_forge", "fg": 1822 },
- { "id": [ "glock_17", "glock_19", "glock_18c", "glock_22", "glock_31" ], "fg": 1824 },
- { "id": "hoboreel", "fg": 1825 },
- { "id": "hydrogen_tank", "fg": 1826 },
- { "id": "inhaler", "fg": 1827 },
- { "id": "knife_chef", "fg": 1828 },
- { "id": "knife_rm42", "fg": 1829 },
- { "id": "leather_tarp", "fg": 1830 },
- { "id": "water", "fg": 1847 },
- { "id": "water_clean", "fg": 1848 },
- { "id": "gasoline", "fg": 1836 },
- { "id": "diesel", "fg": 2380 },
- { "id": "biodiesel", "fg": 1832 },
- { "id": "flamethrower_fuel", "fg": 1835 },
- { "id": "avgas", "fg": 1831 },
- { "id": "lamp_oil", "fg": 1839 },
- { "id": "motor_oil", "fg": 1841 },
- { "id": "napalm", "fg": 1842 },
- { "id": "gelled_gasoline", "fg": 1837 },
- { "id": "blood", "fg": 1833 },
- { "id": [ "oj", "lemonade" ], "fg": 1843 },
- { "id": "log", "fg": 1849 },
- { "id": "longbow", "fg": 1850 },
- { "id": "lucern_hammer", "fg": 1851 },
- { "id": "machete", "fg": 1852 },
- { "id": "matches", "fg": 1853 },
- { "id": "joint", "fg": 1863 },
- { "id": "joint_lit", "fg": 1864 },
- { "id": "aspirin", "fg": 1857 },
- { "id": "bandages", "fg": 1858 },
- { "id": "antibiotics", "fg": 1854 },
- { "id": "weak_antibiotic", "fg": 1870 },
- { "id": "strong_antibiotic", "fg": 1867 },
- { "id": "vitamins", "fg": 1869 },
- { "id": "gummy_vitamins", "fg": 1861 },
- { "id": "calcium_tablet", "fg": 1859 },
- { "id": "oxycodone", "fg": 1865 },
- { "id": "tramadol", "fg": 1868 },
- { "id": "codeine", "fg": 1860 },
- { "id": "prussian_blue", "fg": 1866 },
- { "id": "iodine", "fg": 1862 },
- { "id": "antiparasitic", "fg": 1856 },
- { "id": "antifungal", "fg": 1855 },
- { "id": "microwave", "fg": 1871 },
- { "id": "money_bundle", "fg": 1872 },
- { "id": "mop", "fg": 1873 },
- { "id": "mp5mag", "fg": 1874 },
- { "id": "nail", "fg": 1875 },
- { "id": "nailbat", "fg": 1876 },
- { "id": "nailboard", "fg": 1877 },
- { "id": "needle_bone", "fg": 1878 },
- { "id": "needle_curved", "fg": 1879 },
- { "id": "needle_wood", "fg": 1880 },
- { "id": [ "many_years_old_newspaper" ], "fg": 1881 },
- { "id": "years_old_newspaper", "fg": 1886 },
- { "id": "months_old_newspaper", "fg": 1882 },
- { "id": "newest_newspaper", "fg": 1883 },
- { "id": "one_year_old_newspaper", "fg": 1884 },
- { "id": "weeks_old_newspaper", "fg": 1885 },
- { "id": "pan", "fg": 1887 },
- { "id": "2h_flail_wood", "fg": 1888 },
- { "id": "pine_bough", "fg": 1889 },
- { "id": "pinecone", "fg": 1890 },
- { "id": "pipe", "fg": 1892 },
- { "id": "cu_pipe", "fg": 1891 },
+ "fg": 1711
+ },
+ { "id": "shot_hull", "fg": 1712 },
+ { "id": "art_sphere", "fg": 1727 },
+ { "id": "art_rod", "fg": 1725 },
+ { "id": "art_teardrop", "fg": 1729 },
+ { "id": "art_lamp", "fg": 1721 },
+ { "id": "art_snake", "fg": 1726 },
+ { "id": "art_disc", "fg": 1718 },
+ { "id": "art_beads", "fg": 1715 },
+ { "id": "art_napkin", "fg": 1722 },
+ { "id": "art_urchin", "fg": 1731 },
+ { "id": "art_jelly", "fg": 1719 },
+ { "id": "art_spiral", "fg": 1728 },
+ { "id": "art_pin", "fg": 1723 },
+ { "id": "art_tube", "fg": 1730 },
+ { "id": "art_pyramid", "fg": 1724 },
+ { "id": "art_crystal", "fg": 1717 },
+ { "id": "art_knot", "fg": 1720 },
+ { "id": "art_crescent", "fg": 1716 },
+ { "id": "altered_teapot", "fg": 1713 },
+ { "id": "architect_cube", "fg": 1714 },
+ { "id": "fire_ax", "fg": 2410 },
+ { "id": "ax", "fg": 1733 },
+ { "id": "hatchet", "fg": 1732 },
+ { "id": "backpack", "fg": 1734 },
+ { "id": "duffelbag", "fg": 1735 },
+ { "id": "molle_pack", "fg": 1736 },
+ { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 1739 },
+ { "id": "bag_canvas", "fg": 1742 },
+ { "id": "basket_laundry", "fg": 1743 },
+ { "id": "bat", "fg": 1744 },
+ { "id": "bat_metal", "fg": 1745 },
+ { "id": "heavy_battery_cell", "fg": 1747 },
+ { "id": "heavy_plus_battery_cell", "fg": 1747 },
+ { "id": "heavy_disposable_cell", "fg": 1747 },
+ { "id": "heavy_atomic_battery_cell", "fg": 1746 },
+ { "id": "light_battery_cell", "fg": 1749 },
+ { "id": "light_minus_battery_cell", "fg": 1751 },
+ { "id": "light_plus_battery_cell", "fg": 1749 },
+ { "id": "light_disposable_battery_cell", "fg": 1749 },
+ { "id": "light_atomic_battery_cell", "fg": 1748 },
+ { "id": "light_minus_atomic_battery_cell", "fg": 1750 },
+ { "id": "medium_battery_cell", "fg": 1753 },
+ { "id": "medium_plus_battery_cell", "fg": 1753 },
+ { "id": "medium_disposable_battery_cell", "fg": 1753 },
+ { "id": "medium_atomic_battery_cell", "fg": 1752 },
+ { "id": "bead_bracelet", "fg": 1754 },
+ { "id": "board_trap", "fg": 1755 },
+ { "id": "bone", "fg": 1756 },
+ { "id": "bone_tainted", "fg": 1757 },
+ { "id": "bottle_twoliter", "fg": 1758 },
+ { "id": "box_large", "fg": 1759 },
+ { "id": "box_medium", "fg": 1760 },
+ { "id": "broom", "fg": 1761 },
+ { "id": "knife_butcher", "fg": 1763 },
+ { "id": "bwirebat", "fg": 1764 },
+ { "id": "cattlefodder", "fg": 1765 },
+ { "id": "ceramic_cup", "fg": 1766 },
+ { "id": "ceramic_mug", "fg": 1767 },
+ { "id": "ceramic_plate", "fg": 1768 },
+ { "id": "chain", "fg": 1769 },
+ { "id": "chainsaw_off", "fg": 1770 },
+ { "id": "clay_lump", "fg": 1771 },
+ { "id": "clay_watercont", "fg": 1774 },
+ { "id": "clay_hydria", "fg": 1772 },
+ { "id": "coffeemaker", "fg": 1806 },
+ { "id": "bag_zipper", "fg": 1807 },
+ { "id": "bottle_glass", "fg": 1808 },
+ { "id": "bottle_plastic", "fg": 1809 },
+ { "id": "bottle_plastic_small", "fg": 1810 },
+ { "id": "box_cigarette", "fg": 1811 },
+ { "id": "box_small", "fg": 1812 },
+ { "id": "can_drink", "fg": 1813 },
+ { "id": [ "can_drink_unsealed" ], "fg": 1814 },
+ { "id": [ "glass", "base_glass_dish", "wine_glass" ], "fg": 1815 },
+ { "id": "jar_3l_glass", "fg": 1816 },
+ { "id": "jar_3l_glass_sealed", "fg": 1817 },
+ { "id": "jar_glass", "fg": 1818 },
+ { "id": "jar_glass_sealed", "fg": 1819 },
+ { "id": "jug_plastic", "fg": 1820 },
+ { "id": "crossbow", "fg": 1821 },
+ { "id": "crowbar", "fg": 1822 },
+ { "id": "cudgel", "fg": 1823 },
+ { "id": "filter_air", "fg": 1824 },
+ { "id": "fish_bait", "fg": 1825 },
+ { "id": "corpse_mon_fish_tiny", "fg": 1829 },
+ { "id": "corpse_mon_fish_small", "fg": 1828 },
+ { "id": "corpse_mon_fish_medium", "fg": 1827 },
+ { "id": "corpse_mon_fish_large", "fg": 1826 },
+ { "id": "fish_trap", "fg": 1830 },
+ { "id": "forge", "fg": 1832 },
+ { "id": "char_forge", "fg": 1831 },
+ { "id": [ "glock_17", "glock_19", "glock_18c", "glock_22", "glock_31" ], "fg": 1833 },
+ { "id": "hoboreel", "fg": 1834 },
+ { "id": "hydrogen_tank", "fg": 1835 },
+ { "id": "inhaler", "fg": 1836 },
+ { "id": "knife_chef", "fg": 1837 },
+ { "id": "knife_rm42", "fg": 1838 },
+ { "id": "leather_tarp", "fg": 1839 },
+ { "id": "water", "fg": 1856 },
+ { "id": "water_clean", "fg": 1857 },
+ { "id": "gasoline", "fg": 1845 },
+ { "id": "diesel", "fg": 2390 },
+ { "id": "biodiesel", "fg": 1841 },
+ { "id": "flamethrower_fuel", "fg": 1844 },
+ { "id": "avgas", "fg": 1840 },
+ { "id": "lamp_oil", "fg": 1848 },
+ { "id": "motor_oil", "fg": 1850 },
+ { "id": "napalm", "fg": 1851 },
+ { "id": "gelled_gasoline", "fg": 1846 },
+ { "id": "blood", "fg": 1842 },
+ { "id": [ "oj", "lemonade" ], "fg": 1852 },
+ { "id": "log", "fg": 1858 },
+ { "id": "longbow", "fg": 1859 },
+ { "id": "lucern_hammer", "fg": 1860 },
+ { "id": "machete", "fg": 1861 },
+ { "id": "matches", "fg": 1862 },
+ { "id": "joint", "fg": 1872 },
+ { "id": "joint_lit", "fg": 1873 },
+ { "id": "aspirin", "fg": 1866 },
+ { "id": "bandages", "fg": 1867 },
+ { "id": "antibiotics", "fg": 1863 },
+ { "id": "weak_antibiotic", "fg": 1879 },
+ { "id": "strong_antibiotic", "fg": 1876 },
+ { "id": "vitamins", "fg": 1878 },
+ { "id": "gummy_vitamins", "fg": 1870 },
+ { "id": "calcium_tablet", "fg": 1868 },
+ { "id": "oxycodone", "fg": 1874 },
+ { "id": "tramadol", "fg": 1877 },
+ { "id": "codeine", "fg": 1869 },
+ { "id": "prussian_blue", "fg": 1875 },
+ { "id": "iodine", "fg": 1871 },
+ { "id": "antiparasitic", "fg": 1865 },
+ { "id": "antifungal", "fg": 1864 },
+ { "id": "microwave", "fg": 1880 },
+ { "id": "money_bundle", "fg": 1881 },
+ { "id": "mop", "fg": 1882 },
+ { "id": "mp5mag", "fg": 1883 },
+ { "id": "nail", "fg": 1884 },
+ { "id": "nailbat", "fg": 1885 },
+ { "id": "nailboard", "fg": 1886 },
+ { "id": "needle_bone", "fg": 1887 },
+ { "id": "needle_curved", "fg": 1888 },
+ { "id": "needle_wood", "fg": 1889 },
+ { "id": [ "many_years_old_newspaper" ], "fg": 1890 },
+ { "id": "years_old_newspaper", "fg": 1895 },
+ { "id": "months_old_newspaper", "fg": 1891 },
+ { "id": "newest_newspaper", "fg": 1892 },
+ { "id": "one_year_old_newspaper", "fg": 1893 },
+ { "id": "weeks_old_newspaper", "fg": 1894 },
+ { "id": "pan", "fg": 1896 },
+ { "id": "2h_flail_wood", "fg": 1897 },
+ { "id": "pine_bough", "fg": 1898 },
+ { "id": "pinecone", "fg": 1899 },
+ { "id": "pipe", "fg": 1901 },
+ { "id": "cu_pipe", "fg": 1900 },
{
"id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ],
- "fg": 1893
- },
- { "id": "pipe_shotgun", "fg": 1894 },
- { "id": "plastic_sheet", "fg": 1895 },
- { "id": "pneumatic_shotgun", "fg": 1898 },
- { "id": "pot", "fg": 1900 },
- { "id": "powder_candy", "fg": 1901 },
- { "id": "rag", "fg": 1902 },
- { "id": "rag_bloody", "fg": 1903 },
- { "id": "rebar", "fg": 1904 },
- { "id": "rock", "fg": 1905 },
- { "id": "rolling_pin", "fg": 1906 },
- { "id": "fur_rollmat", "fg": 1907 },
- { "id": "rollmat", "fg": 1908 },
- { "id": "scissors", "fg": 1909 },
- { "id": "screwdriver", "fg": 1910 },
- { "id": "sewing_kit", "fg": 1911 },
- { "id": "sharp_rock", "fg": 1912 },
- { "id": "sheet_metal", "fg": 1913 },
- { "id": "shovel", "fg": 1914 },
- { "id": "slingshot", "fg": 1915 },
- { "id": "solar_panel", "fg": 1917 },
- { "id": "solar_cell", "fg": 1916 },
- { "id": "pointy_stick", "fg": 1918 },
- { "id": "spear_wood", "fg": 1926 },
- { "id": "spear_spike", "fg": 1924 },
- { "id": "spear_knife", "fg": 1920 },
- { "id": "spear_knife_superior", "fg": 1921 },
- { "id": "spear_pipe", "fg": 1922 },
- { "id": "spear_rebar", "fg": 1923 },
- { "id": "spear_steel", "fg": 1925 },
- { "id": "spear_copper", "fg": 1919 },
- { "id": "splinter", "fg": 1927 },
- { "id": "sponge", "fg": 1928 },
- { "id": "spring", "fg": 1929 },
- { "id": "stick", "fg": 1930 },
- { "id": "stick_long", "fg": 1931 },
- { "id": "primitive_hammer", "fg": 1932 },
- { "id": "string_36", "fg": 1933 },
- { "id": "string_6", "fg": 1934 },
- { "id": "survnote", "fg": 1935 },
- { "id": "tailors_kit", "fg": 1936 },
- { "id": "creepy_doll", "fg": 1937 },
- { "id": "talking_doll", "fg": 1937 },
- { "id": "tarp", "fg": 1938 },
- { "id": "television", "fg": 1939 },
- { "id": "thread", "fg": 1940 },
- { "id": "crucible_clay", "fg": 1941 },
- { "id": "flashlight", "fg": 1942 },
- { "id": "heavy_flashlight", "fg": 1944 },
- { "id": "saw", "fg": 1951 },
- { "id": "wrench", "fg": 1952 },
- { "id": "hammer", "fg": 1943 },
- { "id": "knife_meat_cleaver", "fg": 1948 },
- { "id": "knife_vegetable_cleaver", "fg": 1950 },
+ "fg": 1902
+ },
+ { "id": "pipe_shotgun", "fg": 1903 },
+ { "id": "plastic_sheet", "fg": 1904 },
+ { "id": "pneumatic_shotgun", "fg": 1907 },
+ { "id": "pot", "fg": 1909 },
+ { "id": "powder_candy", "fg": 1910 },
+ { "id": "rag", "fg": 1911 },
+ { "id": "rag_bloody", "fg": 1912 },
+ { "id": "rebar", "fg": 1913 },
+ { "id": "rock", "fg": 1914 },
+ { "id": "rolling_pin", "fg": 1915 },
+ { "id": "fur_rollmat", "fg": 1916 },
+ { "id": "rollmat", "fg": 1917 },
+ { "id": "scissors", "fg": 1918 },
+ { "id": "screwdriver", "fg": 1919 },
+ { "id": "sewing_kit", "fg": 1920 },
+ { "id": "sharp_rock", "fg": 1921 },
+ { "id": "sheet_metal", "fg": 1922 },
+ { "id": "shovel", "fg": 1923 },
+ { "id": "slingshot", "fg": 1924 },
+ { "id": "solar_panel", "fg": 1926 },
+ { "id": "solar_cell", "fg": 1925 },
+ { "id": "pointy_stick", "fg": 1927 },
+ { "id": "spear_wood", "fg": 1935 },
+ { "id": "spear_spike", "fg": 1933 },
+ { "id": "spear_knife", "fg": 1929 },
+ { "id": "spear_knife_superior", "fg": 1930 },
+ { "id": "spear_pipe", "fg": 1931 },
+ { "id": "spear_rebar", "fg": 1932 },
+ { "id": "spear_steel", "fg": 1934 },
+ { "id": "spear_copper", "fg": 1928 },
+ { "id": "splinter", "fg": 1936 },
+ { "id": "sponge", "fg": 1937 },
+ { "id": "spring", "fg": 1938 },
+ { "id": "stick", "fg": 1939 },
+ { "id": "stick_long", "fg": 1940 },
+ { "id": "primitive_hammer", "fg": 1941 },
+ { "id": "string_36", "fg": 1942 },
+ { "id": "string_6", "fg": 1943 },
+ { "id": "survnote", "fg": 1944 },
+ { "id": "tailors_kit", "fg": 1945 },
+ { "id": "creepy_doll", "fg": 1946 },
+ { "id": "talking_doll", "fg": 1946 },
+ { "id": "tarp", "fg": 1947 },
+ { "id": "television", "fg": 1948 },
+ { "id": "thread", "fg": 1949 },
+ { "id": "crucible_clay", "fg": 1950 },
+ { "id": "flashlight", "fg": 1951 },
+ { "id": "heavy_flashlight", "fg": 1953 },
+ { "id": "saw", "fg": 1960 },
+ { "id": "wrench", "fg": 1961 },
+ { "id": "hammer", "fg": 1952 },
+ { "id": "knife_meat_cleaver", "fg": 1957 },
+ { "id": "knife_vegetable_cleaver", "fg": 1959 },
{
"id": "lighter",
- "fg": [ { "weight": 1, "sprite": 1946 }, { "weight": 1, "sprite": 1945 }, { "weight": 1, "sprite": 1947 } ]
- },
- { "id": "usb_drive", "fg": 1949 },
- { "id": "cash_card", "fg": 1953 },
- { "id": "fp_loyalty_card", "fg": 1954 },
- { "id": "id_industrial", "fg": 1955 },
- { "id": "id_military", "fg": 1956 },
- { "id": "id_science", "fg": 1957 },
- { "id": "bowl_plastic", "fg": 1958 },
- { "id": "cup_plastic", "fg": 1959 },
- { "id": "fork", "fg": 1960 },
- { "id": "glass_plate", "fg": 1961 },
- { "id": "knife_butter", "fg": 1962 },
- { "id": "2h_flail_steel", "fg": 1966 },
- { "id": "washboard", "fg": 1968 },
- { "id": "wash_kit", "fg": 1967 },
- { "id": "welder", "fg": 1969 },
- { "id": "welder_crude", "fg": 1970 },
- { "id": "wood_panel", "fg": 1971 },
- { "id": "wood_sheet", "fg": 1972 },
- { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 2030 },
- { "id": [ "ak47", "aksemi" ], "fg": 1980 },
- { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 1994 },
- { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 2031 },
- { "id": [ "m249", "m249_semi" ], "fg": 2038 },
- { "id": [ "m60", "m60_semi" ], "fg": 2048 },
- { "id": [ "mp40", "mp40semi" ], "fg": 2064 },
- { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2103 },
- { "id": "corpse_mon_alpha_razorclaw", "fg": 2121, "rotates": false },
- { "id": "corpse_mon_ant", "fg": 2122, "rotates": false },
- { "id": "corpse_mon_ant_gueen", "fg": 2123, "rotates": false },
- { "id": "corpse_mon_ant_larva", "fg": 2124, "rotates": false },
- { "id": "corpse_mon_ant_soldier", "fg": 2125, "rotates": false },
- { "id": "corpse_mon_bat", "fg": 2126, "rotates": false },
- { "id": "corpse_mon_bear", "fg": 2127, "rotates": false },
- { "id": "corpse_mon_bee", "fg": 2128, "rotates": false },
- { "id": "corpse_mon_biollante", "fg": 2129, "rotates": false },
- { "id": "corpse_mon_black_rat", "fg": 2130, "rotates": false },
- { "id": "corpse_mon_blank", "fg": 2131, "rotates": false },
- { "id": "corpse_mon_broken_cyborg", "fg": 2132, "rotates": false },
- { "id": "corpse_mon_cat", "fg": 2133, "rotates": false },
- { "id": "corpse_mon_chicken", "fg": 2134, "rotates": false },
- { "id": "corpse_mon_cougar", "fg": 2135, "rotates": false },
- { "id": "corpse_mon_crow", "fg": 2136, "rotates": false },
- { "id": "corpse_mon_deer", "fg": 2137, "rotates": false },
- { "id": "corpse_mon_dermatik", "fg": 2138, "rotates": false },
- { "id": "corpse_mon_dog", "fg": 2139, "rotates": false },
- { "id": "corpse_mon_dog_zombie_cop", "fg": 2140, "rotates": false },
- { "id": "corpse_mon_duck", "fg": 2141, "rotates": false },
- { "id": "corpse_mon_fish_bowfin", "fg": 2142, "rotates": false },
- { "id": "corpse_mon_fish_bullhead", "fg": 2143, "rotates": false },
- { "id": "corpse_mon_fish_carp", "fg": 2144, "rotates": false },
- { "id": "corpse_mon_fish_crayfish", "fg": 2145, "rotates": false },
- { "id": "corpse_mon_fish_perch", "fg": 2146, "rotates": false },
- { "id": "corpse_mon_fish_pickerel", "fg": 2147, "rotates": false },
- { "id": "corpse_mon_fish_pike", "fg": 2148, "rotates": false },
- { "id": "corpse_mon_fish_sbass", "fg": 2149, "rotates": false },
- { "id": "corpse_mon_fish_trout", "fg": 2150, "rotates": false },
- { "id": "corpse_mon_fish_whitefish", "fg": 2151, "rotates": false },
- { "id": "corpse_mon_fish_lbass", "fg": 3100, "rotates": false },
- { "id": "corpse_mon_fish_pbass", "fg": 3101, "rotates": false },
- { "id": "corpse_mon_fish_salmon", "fg": 3102, "rotates": false },
- { "id": "corpse_mon_fish_sunfish", "fg": 3103, "rotates": false },
- { "id": "corpse_mon_flaming_eye", "fg": 2152, "rotates": false },
- { "id": "corpse_mon_fly", "fg": 2153, "rotates": false },
- { "id": "corpse_mon_fox", "fg": 2154, "rotates": false },
- { "id": "corpse_mon_frog_giant", "fg": 2155, "rotates": false },
- { "id": "corpse_mon_frog_small", "fg": 2156, "rotates": false },
- { "id": "corpse_mon_fungaloid", "fg": 2157, "rotates": false },
- { "id": "corpse_mon_fungaloid_young", "fg": 2158, "rotates": false },
- { "id": "corpse_mon_gator", "fg": 2159, "rotates": false },
- { "id": "corpse_mon_giant_cockroach_nymph", "fg": 2160, "rotates": false },
- { "id": "corpse_mon_gozu", "fg": 2161, "rotates": false },
- { "id": "corpse_mon_gragonfly", "fg": 2162, "rotates": false },
- { "id": "corpse_mon_hare", "fg": 2163, "rotates": false },
- { "id": "corpse_mon_hare_season_winter", "fg": 2164, "rotates": false },
- { "id": "corpse_mon_human_snail", "fg": 2165, "rotates": false },
- { "id": "corpse_mon_large_cockroach", "fg": 2166, "rotates": false },
- { "id": "corpse_mon_mi_go", "fg": 2167, "rotates": false },
- { "id": "corpse_mon_moose", "fg": 2168, "rotates": false },
- { "id": "corpse_mon_mosquito", "fg": 2169, "rotates": false },
- { "id": "corpse_mon_racoon", "fg": 2170, "rotates": false },
- { "id": "corpse_mon_rattlesnake_giant", "fg": 2171, "rotates": false },
- { "id": "corpse_mon_razorclaw", "fg": 2172, "rotates": false },
- { "id": "corpse_mon_sewer_snake", "fg": 2173, "rotates": false },
- { "id": "corpse_mon_sheep", "fg": 2174, "rotates": false },
- { "id": "corpse_mon_skeleton", "fg": 2175, "rotates": false },
- { "id": "corpse_mon_slug", "fg": 2176, "rotates": false },
- { "id": "corpse_mon_spider_jumping_giant", "fg": 2177, "rotates": false },
- { "id": "corpse_mon_spider_web", "fg": 2178, "rotates": false },
- { "id": "corpse_mon_spider_web_s", "fg": 2179, "rotates": false },
- { "id": "corpse_mon_spider_widow_giant", "fg": 2180, "rotates": false },
- { "id": "corpse_mon_spider_widow_giant_s", "fg": 2181, "rotates": false },
- { "id": "corpse_mon_spider_wolf_giant", "fg": 2182, "rotates": false },
- { "id": "corpse_mon_spider_wolf_small", "fg": 2183, "rotates": false },
- { "id": "corpse_mon_squirrel", "fg": 2184, "rotates": false },
- { "id": "corpse_mon_turkey", "fg": 2185, "rotates": false },
- { "id": "corpse_mon_twisted_body", "fg": 2186, "rotates": false },
- { "id": "corpse_mon_wasp", "fg": 2187, "rotates": false },
- { "id": "corpse_mon_wolf", "fg": 2188, "rotates": false },
- { "id": "corpse_mon_worm", "fg": 2189, "rotates": false },
- { "id": "corpse_mon_zombear", "fg": 2190, "rotates": false },
- { "id": "corpse_mon_zombie", "fg": 2191, "rotates": false },
- { "id": "corpse_mon_zombie_acidic", "fg": 2192, "rotates": false },
- { "id": "corpse_mon_zombie_beekeeper", "fg": 2193, "rotates": false },
- { "id": "corpse_mon_zombie_bio_op", "fg": 2194, "rotates": false },
- { "id": "corpse_mon_zombie_biter", "fg": 2195, "rotates": false },
- { "id": "corpse_mon_zombie_brainless", "fg": 2196, "rotates": false },
- { "id": "corpse_mon_zombie_brute", "fg": 2197, "rotates": false },
- { "id": "corpse_mon_zombie_brute_grappler", "fg": 2198, "rotates": false },
- { "id": "corpse_mon_zombie_child", "fg": 2199, "rotates": false },
- { "id": "corpse_mon_zombie_child_scorched", "fg": 2200, "rotates": false },
- { "id": "corpse_mon_zombie_cop", "fg": 2201, "rotates": false },
- { "id": "corpse_mon_zombie_crawler", "fg": 2202, "rotates": false },
- { "id": "corpse_mon_zombie_dog", "fg": 2203, "rotates": false },
- { "id": "corpse_mon_zombie_ear", "fg": 2204, "rotates": false },
- { "id": "corpse_mon_zombie_fat", "fg": 2205, "rotates": false },
- { "id": "corpse_mon_zombie_fungus", "fg": 2206, "rotates": false },
- { "id": "corpse_mon_zombie_grappler", "fg": 2207, "rotates": false },
- { "id": "corpse_mon_zombie_hazmat", "fg": 2208, "rotates": false },
- { "id": "corpse_mon_zombie_hunter", "fg": 2209, "rotates": false },
- { "id": "corpse_mon_zombie_kevlar_1", "fg": 2210, "rotates": false },
- { "id": "corpse_mon_zombie_mancroc", "fg": 2211, "rotates": false },
- { "id": "corpse_mon_zombie_predator", "fg": 2212, "rotates": false },
- { "id": "corpse_mon_zombie_rot", "fg": 2213, "rotates": false },
- { "id": "corpse_mon_zombie_scientist", "fg": 2214, "rotates": false },
- { "id": "corpse_mon_zombie_screecher", "fg": 2215, "rotates": false },
- { "id": "corpse_mon_zombie_security", "fg": 2216, "rotates": false },
- { "id": "corpse_mon_zombie_shady", "fg": 2217, "rotates": false },
- { "id": "corpse_mon_zombie_shrieker", "fg": 2218, "rotates": false },
- { "id": "corpse_mon_zombie_shriekling", "fg": 2219, "rotates": false },
- { "id": "corpse_mon_zombie_skull", "fg": 2220, "rotates": false },
- { "id": "corpse_mon_zombie_soldier", "fg": 2221, "rotates": false },
- { "id": "corpse_mon_zombie_soldier_acid_1", "fg": 2222, "rotates": false },
- { "id": "corpse_mon_zombie_soldier_acid_2", "fg": 2223, "rotates": false },
- { "id": "corpse_mon_zombie_soldier_blackops_1", "fg": 2224, "rotates": false },
- { "id": "corpse_mon_zombie_soldier_blackops_2", "fg": 2225, "rotates": false },
- { "id": "corpse_mon_zombie_spitter", "fg": 2226, "rotates": false },
- { "id": "corpse_mon_zombie_sproglodyte", "fg": 2227, "rotates": false },
- { "id": "corpse_mon_zombie_technician", "fg": 2228, "rotates": false },
- { "id": "corpse_mon_zombie_tough", "fg": 2229, "rotates": false },
- { "id": "corpse_mon_zombie_waif", "fg": 2230, "rotates": false },
- { "id": "corpse_mon_zoose", "fg": 2231, "rotates": false },
- { "id": "corpse_mon_zougar", "fg": 2232, "rotates": false },
- { "id": [ "bandages_makeshift", "bandages_makeshift_boiled" ], "fg": 2241, "rotates": false },
- { "id": [ "belt308_reusable", "belt308", "belt223" ], "fg": 2297, "rotates": false },
- { "id": [ "cutlass_inferior", "cutlass_fake" ], "fg": 2373, "rotates": false },
- { "id": [ "jian_fake", "jian_inferior" ], "fg": 2480, "rotates": false },
- { "id": [ "porkbelly", "raw_curing_fatty_meat" ], "fg": 2698, "rotates": false },
- { "id": "raw_cured_fatty_meat", "fg": 2699, "rotates": false },
- { "id": "bacon_uncut", "fg": 2696, "rotates": false },
- { "id": "meat_fatty_cooked", "fg": 2697, "rotates": false },
- { "id": [ "garnet_gold_ring", "ruby_gold_ring" ], "fg": 2719 },
- { "id": [ "garnet_silver_ring", "ruby_silver_ring" ], "fg": 2721 },
- { "id": [ "garnet_platinum_ring", "ruby_platinum_ring" ], "fg": 2720 },
- { "id": [ "sapphire_gold_ring", "alexandrite_gold_ring" ], "fg": 2728 },
- { "id": [ "sapphire_silver_ring", "alexandrite_silver_ring" ], "fg": 2730 },
- { "id": [ "sapphire_platinum_ring", "alexandrite_platinum_ring" ], "fg": 2729 },
- { "id": [ "opal_gold_ring", "pearl_gold_ring" ], "fg": 2722 },
- { "id": [ "opal_silver_ring", "pearl_silver_ring" ], "fg": 2724 },
- { "id": [ "opal_platinum_ring", "pearl_platinum_ring" ], "fg": 2723 },
- { "id": [ "overlay_wielded_weed", "weed" ], "fg": 2736, "rotates": false },
- { "id": "animation_bullet_flame", "fg": 2738, "rotates": false },
- { "id": "animation_bullet_normal", "fg": 2739, "rotates": false },
- { "id": "animation_bullet_shrapnel", "fg": 2740 },
- { "id": "animation_hit", "fg": 2741 },
- { "id": "animation_line", "bg": 2739 },
+ "fg": [ { "weight": 1, "sprite": 1955 }, { "weight": 1, "sprite": 1954 }, { "weight": 1, "sprite": 1956 } ]
+ },
+ { "id": "usb_drive", "fg": 1958 },
+ { "id": "cash_card", "fg": 1962 },
+ { "id": "fp_loyalty_card", "fg": 1963 },
+ { "id": "id_industrial", "fg": 1964 },
+ { "id": "id_military", "fg": 1965 },
+ { "id": "id_science", "fg": 1966 },
+ { "id": "bowl_plastic", "fg": 1967 },
+ { "id": "cup_plastic", "fg": 1968 },
+ { "id": "fork", "fg": 1969 },
+ { "id": "glass_plate", "fg": 1970 },
+ { "id": "knife_butter", "fg": 1971 },
+ { "id": "2h_flail_steel", "fg": 1975 },
+ { "id": "washboard", "fg": 1977 },
+ { "id": "wash_kit", "fg": 1976 },
+ { "id": "welder", "fg": 1978 },
+ { "id": "welder_crude", "fg": 1979 },
+ { "id": "wood_panel", "fg": 1980 },
+ { "id": "wood_sheet", "fg": 1981 },
+ { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 2039 },
+ { "id": [ "ak47", "aksemi" ], "fg": 1989 },
+ { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 2003 },
+ { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 2040 },
+ { "id": [ "m249", "m249_semi" ], "fg": 2047 },
+ { "id": [ "m60", "m60_semi" ], "fg": 2057 },
+ { "id": [ "mp40", "mp40semi" ], "fg": 2073 },
+ { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2112 },
+ { "id": "corpse_mon_alpha_razorclaw", "fg": 2130, "rotates": false },
+ { "id": "corpse_mon_ant", "fg": 2131, "rotates": false },
+ { "id": "corpse_mon_ant_gueen", "fg": 2132, "rotates": false },
+ { "id": "corpse_mon_ant_larva", "fg": 2133, "rotates": false },
+ { "id": "corpse_mon_ant_soldier", "fg": 2134, "rotates": false },
+ { "id": "corpse_mon_bat", "fg": 2135, "rotates": false },
+ { "id": "corpse_mon_bear", "fg": 2136, "rotates": false },
+ { "id": "corpse_mon_bee", "fg": 2137, "rotates": false },
+ { "id": "corpse_mon_biollante", "fg": 2138, "rotates": false },
+ { "id": "corpse_mon_black_rat", "fg": 2139, "rotates": false },
+ { "id": "corpse_mon_blank", "fg": 2140, "rotates": false },
+ { "id": "corpse_mon_broken_cyborg", "fg": 2141, "rotates": false },
+ { "id": "corpse_mon_cat", "fg": 2142, "rotates": false },
+ { "id": "corpse_mon_chicken", "fg": 2143, "rotates": false },
+ { "id": "corpse_mon_cougar", "fg": 2144, "rotates": false },
+ { "id": "corpse_mon_crow", "fg": 2145, "rotates": false },
+ { "id": "corpse_mon_deer", "fg": 2146, "rotates": false },
+ { "id": "corpse_mon_dermatik", "fg": 2147, "rotates": false },
+ { "id": "corpse_mon_dog", "fg": 2148, "rotates": false },
+ { "id": "corpse_mon_dog_zombie_cop", "fg": 2149, "rotates": false },
+ { "id": "corpse_mon_duck", "fg": 2150, "rotates": false },
+ { "id": "corpse_mon_fish_bowfin", "fg": 2151, "rotates": false },
+ { "id": "corpse_mon_fish_bullhead", "fg": 2152, "rotates": false },
+ { "id": "corpse_mon_fish_carp", "fg": 2153, "rotates": false },
+ { "id": "corpse_mon_fish_crayfish", "fg": 2154, "rotates": false },
+ { "id": "corpse_mon_fish_perch", "fg": 2155, "rotates": false },
+ { "id": "corpse_mon_fish_pickerel", "fg": 2156, "rotates": false },
+ { "id": "corpse_mon_fish_pike", "fg": 2157, "rotates": false },
+ { "id": "corpse_mon_fish_sbass", "fg": 2158, "rotates": false },
+ { "id": "corpse_mon_fish_trout", "fg": 2159, "rotates": false },
+ { "id": "corpse_mon_fish_whitefish", "fg": 2160, "rotates": false },
+ { "id": "corpse_mon_fish_lbass", "fg": 3110, "rotates": false },
+ { "id": "corpse_mon_fish_pbass", "fg": 3111, "rotates": false },
+ { "id": "corpse_mon_fish_salmon", "fg": 3112, "rotates": false },
+ { "id": "corpse_mon_fish_sunfish", "fg": 3113, "rotates": false },
+ { "id": "corpse_mon_flaming_eye", "fg": 2161, "rotates": false },
+ { "id": "corpse_mon_fly", "fg": 2162, "rotates": false },
+ { "id": "corpse_mon_fox", "fg": 2163, "rotates": false },
+ { "id": "corpse_mon_frog_giant", "fg": 2164, "rotates": false },
+ { "id": "corpse_mon_frog_small", "fg": 2165, "rotates": false },
+ { "id": "corpse_mon_fungaloid", "fg": 2166, "rotates": false },
+ { "id": "corpse_mon_fungaloid_young", "fg": 2167, "rotates": false },
+ { "id": "corpse_mon_gator", "fg": 2168, "rotates": false },
+ { "id": "corpse_mon_giant_cockroach_nymph", "fg": 2169, "rotates": false },
+ { "id": "corpse_mon_gozu", "fg": 2170, "rotates": false },
+ { "id": "corpse_mon_gragonfly", "fg": 2171, "rotates": false },
+ { "id": "corpse_mon_hare", "fg": 2172, "rotates": false },
+ { "id": "corpse_mon_hare_season_winter", "fg": 2173, "rotates": false },
+ { "id": "corpse_mon_human_snail", "fg": 2174, "rotates": false },
+ { "id": "corpse_mon_large_cockroach", "fg": 2175, "rotates": false },
+ { "id": "corpse_mon_mi_go", "fg": 2176, "rotates": false },
+ { "id": "corpse_mon_moose", "fg": 2177, "rotates": false },
+ { "id": "corpse_mon_mosquito", "fg": 2178, "rotates": false },
+ { "id": "corpse_mon_racoon", "fg": 2179, "rotates": false },
+ { "id": "corpse_mon_rattlesnake_giant", "fg": 2180, "rotates": false },
+ { "id": "corpse_mon_razorclaw", "fg": 2181, "rotates": false },
+ { "id": "corpse_mon_sewer_snake", "fg": 2182, "rotates": false },
+ { "id": "corpse_mon_sheep", "fg": 2183, "rotates": false },
+ { "id": "corpse_mon_skeleton", "fg": 2184, "rotates": false },
+ { "id": "corpse_mon_slug", "fg": 2185, "rotates": false },
+ { "id": "corpse_mon_spider_jumping_giant", "fg": 2186, "rotates": false },
+ { "id": "corpse_mon_spider_web", "fg": 2187, "rotates": false },
+ { "id": "corpse_mon_spider_web_s", "fg": 2188, "rotates": false },
+ { "id": "corpse_mon_spider_widow_giant", "fg": 2189, "rotates": false },
+ { "id": "corpse_mon_spider_widow_giant_s", "fg": 2190, "rotates": false },
+ { "id": "corpse_mon_spider_wolf_giant", "fg": 2191, "rotates": false },
+ { "id": "corpse_mon_spider_wolf_small", "fg": 2192, "rotates": false },
+ { "id": "corpse_mon_squirrel", "fg": 2193, "rotates": false },
+ { "id": "corpse_mon_turkey", "fg": 2194, "rotates": false },
+ { "id": "corpse_mon_twisted_body", "fg": 2195, "rotates": false },
+ { "id": "corpse_mon_wasp", "fg": 2196, "rotates": false },
+ { "id": "corpse_mon_wolf", "fg": 2197, "rotates": false },
+ { "id": "corpse_mon_worm", "fg": 2198, "rotates": false },
+ { "id": "corpse_mon_zombear", "fg": 2199, "rotates": false },
+ { "id": "corpse_mon_zombie", "fg": 2200, "rotates": false },
+ { "id": "corpse_mon_zombie_acidic", "fg": 2201, "rotates": false },
+ { "id": "corpse_mon_zombie_beekeeper", "fg": 2202, "rotates": false },
+ { "id": "corpse_mon_zombie_bio_op", "fg": 2203, "rotates": false },
+ { "id": "corpse_mon_zombie_biter", "fg": 2204, "rotates": false },
+ { "id": "corpse_mon_zombie_brainless", "fg": 2205, "rotates": false },
+ { "id": "corpse_mon_zombie_brute", "fg": 2206, "rotates": false },
+ { "id": "corpse_mon_zombie_brute_grappler", "fg": 2207, "rotates": false },
+ { "id": "corpse_mon_zombie_child", "fg": 2208, "rotates": false },
+ { "id": "corpse_mon_zombie_child_scorched", "fg": 2209, "rotates": false },
+ { "id": "corpse_mon_zombie_cop", "fg": 2210, "rotates": false },
+ { "id": "corpse_mon_zombie_crawler", "fg": 2211, "rotates": false },
+ { "id": "corpse_mon_zombie_dog", "fg": 2212, "rotates": false },
+ { "id": "corpse_mon_zombie_ear", "fg": 2213, "rotates": false },
+ { "id": "corpse_mon_zombie_fat", "fg": 2214, "rotates": false },
+ { "id": "corpse_mon_zombie_fungus", "fg": 2215, "rotates": false },
+ { "id": "corpse_mon_zombie_grappler", "fg": 2216, "rotates": false },
+ { "id": "corpse_mon_zombie_hazmat", "fg": 2217, "rotates": false },
+ { "id": "corpse_mon_zombie_hunter", "fg": 2218, "rotates": false },
+ { "id": "corpse_mon_zombie_kevlar_1", "fg": 2219, "rotates": false },
+ { "id": "corpse_mon_zombie_mancroc", "fg": 2220, "rotates": false },
+ { "id": "corpse_mon_zombie_predator", "fg": 2221, "rotates": false },
+ { "id": "corpse_mon_zombie_rot", "fg": 2222, "rotates": false },
+ { "id": "corpse_mon_zombie_scientist", "fg": 2223, "rotates": false },
+ { "id": "corpse_mon_zombie_screecher", "fg": 2224, "rotates": false },
+ { "id": "corpse_mon_zombie_security", "fg": 2225, "rotates": false },
+ { "id": "corpse_mon_zombie_shady", "fg": 2226, "rotates": false },
+ { "id": "corpse_mon_zombie_shrieker", "fg": 2227, "rotates": false },
+ { "id": "corpse_mon_zombie_shriekling", "fg": 2228, "rotates": false },
+ { "id": "corpse_mon_zombie_skull", "fg": 2229, "rotates": false },
+ { "id": "corpse_mon_zombie_soldier", "fg": 2230, "rotates": false },
+ { "id": "corpse_mon_zombie_soldier_acid_1", "fg": 2231, "rotates": false },
+ { "id": "corpse_mon_zombie_soldier_acid_2", "fg": 2232, "rotates": false },
+ { "id": "corpse_mon_zombie_soldier_blackops_1", "fg": 2233, "rotates": false },
+ { "id": "corpse_mon_zombie_soldier_blackops_2", "fg": 2234, "rotates": false },
+ { "id": "corpse_mon_zombie_spitter", "fg": 2235, "rotates": false },
+ { "id": "corpse_mon_zombie_sproglodyte", "fg": 2236, "rotates": false },
+ { "id": "corpse_mon_zombie_technician", "fg": 2237, "rotates": false },
+ { "id": "corpse_mon_zombie_tough", "fg": 2238, "rotates": false },
+ { "id": "corpse_mon_zombie_waif", "fg": 2239, "rotates": false },
+ { "id": "corpse_mon_zoose", "fg": 2240, "rotates": false },
+ { "id": "corpse_mon_zougar", "fg": 2241, "rotates": false },
+ { "id": [ "bandages_makeshift", "bandages_makeshift_boiled" ], "fg": 2251, "rotates": false },
+ { "id": [ "belt308_reusable", "belt308", "belt223" ], "fg": 2307, "rotates": false },
+ { "id": [ "cutlass_inferior", "cutlass_fake" ], "fg": 2383, "rotates": false },
+ { "id": [ "jian_fake", "jian_inferior" ], "fg": 2490, "rotates": false },
+ { "id": [ "porkbelly", "raw_curing_fatty_meat" ], "fg": 2708, "rotates": false },
+ { "id": "raw_cured_fatty_meat", "fg": 2709, "rotates": false },
+ { "id": "bacon_uncut", "fg": 2706, "rotates": false },
+ { "id": "meat_fatty_cooked", "fg": 2707, "rotates": false },
+ { "id": [ "garnet_gold_ring", "ruby_gold_ring" ], "fg": 2730 },
+ { "id": [ "garnet_silver_ring", "ruby_silver_ring" ], "fg": 2732 },
+ { "id": [ "garnet_platinum_ring", "ruby_platinum_ring" ], "fg": 2731 },
+ { "id": [ "sapphire_gold_ring", "alexandrite_gold_ring" ], "fg": 2739 },
+ { "id": [ "sapphire_silver_ring", "alexandrite_silver_ring" ], "fg": 2741 },
+ { "id": [ "sapphire_platinum_ring", "alexandrite_platinum_ring" ], "fg": 2740 },
+ { "id": [ "opal_gold_ring", "pearl_gold_ring" ], "fg": 2733 },
+ { "id": [ "opal_silver_ring", "pearl_silver_ring" ], "fg": 2735 },
+ { "id": [ "opal_platinum_ring", "pearl_platinum_ring" ], "fg": 2734 },
+ { "id": [ "overlay_wielded_weed", "weed" ], "fg": 2747, "rotates": false },
+ { "id": "animation_bullet_flame", "fg": 2749, "rotates": false },
+ { "id": "animation_bullet_normal", "fg": 2750, "rotates": false },
+ { "id": "animation_bullet_shrapnel", "fg": 2751 },
+ { "id": "animation_hit", "fg": 2752 },
+ { "id": "animation_line", "bg": 2750 },
{
"id": "craft",
"animated": true,
- "fg": [ { "weight": 15, "sprite": 2762 }, { "weight": 15, "sprite": 2763 } ]
+ "fg": [ { "weight": 15, "sprite": 2773 }, { "weight": 15, "sprite": 2774 } ]
},
- { "id": "cursor", "fg": 2742, "rotates": false },
+ { "id": "cursor", "fg": 2753, "rotates": false },
{
"id": "disassembly",
"animated": true,
- "fg": [ { "weight": 15, "sprite": 2764 }, { "weight": 15, "sprite": 2765 } ]
+ "fg": [ { "weight": 15, "sprite": 2775 }, { "weight": 15, "sprite": 2776 } ]
},
{
"id": [ "explosion", "explosion_medium", "explosion_weak" ],
- "fg": 2766,
+ "fg": 2777,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2766 },
- { "id": "corner", "fg": 2743 },
- { "id": "edge", "fg": 2744 },
- { "id": "end_piece", "fg": 2767 },
- { "id": "t_connection", "fg": 2768 },
- { "id": "unconnected", "fg": 2766 }
- ]
- },
- { "id": "footstep", "fg": 2745, "rotates": false },
- { "id": "highlight", "fg": 2742, "rotates": false },
- { "id": "highlight_item", "fg": 2746, "rotates": false },
- { "id": "infrared_creature", "fg": 2772, "rotates": false },
- { "id": "lighting_boomered_dark", "fg": 2747, "rotates": false },
- { "id": "lighting_boomered_light", "fg": 2748, "rotates": false },
- { "id": [ "lighting_hidden", "unknown_terrain" ], "fg": 2751, "rotates": false },
- { "id": "lighting_lowlight_dark", "fg": 2749, "rotates": false },
- { "id": "lighting_lowlight_light", "fg": 2750, "rotates": false },
- { "id": "line_target", "bg": 2742, "rotates": false },
- { "id": "line_trail", "bg": 2742, "rotates": false },
- { "id": "night_filter1", "fg": 2756 },
- { "id": "night_filter2", "fg": 2757 },
- { "id": "night_filter3", "fg": 2758 },
- { "id": "night_filter4", "fg": 2759 },
- { "id": "night_filter", "fg": 2752 },
- { "id": "nv_filter", "fg": 2754 },
- { "id": "nv_over_filter", "fg": 2755 },
- { "id": "shadow_filter", "fg": 2753 },
+ { "id": "center", "fg": 2777 },
+ { "id": "corner", "fg": 2754 },
+ { "id": "edge", "fg": 2755 },
+ { "id": "end_piece", "fg": 2778 },
+ { "id": "t_connection", "fg": 2779 },
+ { "id": "unconnected", "fg": 2777 }
+ ]
+ },
+ { "id": "footstep", "fg": 2756, "rotates": false },
+ { "id": "highlight", "fg": 2753, "rotates": false },
+ { "id": "highlight_item", "fg": 2757, "rotates": false },
+ { "id": "infrared_creature", "fg": 2783, "rotates": false },
+ { "id": "lighting_boomered_dark", "fg": 2758, "rotates": false },
+ { "id": "lighting_boomered_light", "fg": 2759, "rotates": false },
+ { "id": [ "lighting_hidden", "unknown_terrain" ], "fg": 2762, "rotates": false },
+ { "id": "lighting_lowlight_dark", "fg": 2760, "rotates": false },
+ { "id": "lighting_lowlight_light", "fg": 2761, "rotates": false },
+ { "id": "line_target", "bg": 2753, "rotates": false },
+ { "id": "line_trail", "bg": 2753, "rotates": false },
+ { "id": "night_filter1", "fg": 2767 },
+ { "id": "night_filter2", "fg": 2768 },
+ { "id": "night_filter3", "fg": 2769 },
+ { "id": "night_filter4", "fg": 2770 },
+ { "id": "night_filter", "fg": 2763 },
+ { "id": "nv_filter", "fg": 2765 },
+ { "id": "nv_over_filter", "fg": 2766 },
+ { "id": "shadow_filter", "fg": 2764 },
{
"id": "tr_unfinished_construction",
"animated": true,
- "fg": [ { "weight": 15, "sprite": 2773 }, { "weight": 15, "sprite": 2774 } ]
- },
- { "id": "unknown", "fg": 2775, "rotates": false },
- { "id": "weather_rain_drop", "fg": 2760, "rotates": false },
- { "id": "weather_snowflake", "fg": 2761, "rotates": false },
- { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 2811, "rotates": false },
- { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 2794, "rotates": false },
- { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 2809, "rotates": false },
- { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 2792, "rotates": false },
- { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 2810, "rotates": false },
- { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 2793, "rotates": false },
+ "fg": [ { "weight": 15, "sprite": 2784 }, { "weight": 15, "sprite": 2785 } ]
+ },
+ { "id": "unknown", "fg": 2786, "rotates": false },
+ { "id": "weather_rain_drop", "fg": 2771, "rotates": false },
+ { "id": "weather_snowflake", "fg": 2772, "rotates": false },
+ { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 2822, "rotates": false },
+ { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 2805, "rotates": false },
+ { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 2820, "rotates": false },
+ { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 2803, "rotates": false },
+ { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 2821, "rotates": false },
+ { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 2804, "rotates": false },
{
"id": "mon_demon_spiderling",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 2862 },
- { "weight": 15, "sprite": 2863 },
- { "weight": 15, "sprite": 2864 },
- { "weight": 15, "sprite": 2863 }
+ { "weight": 15, "sprite": 2873 },
+ { "weight": 15, "sprite": 2874 },
+ { "weight": 15, "sprite": 2875 },
+ { "weight": 15, "sprite": 2874 }
],
"rotates": false
},
{
"id": "mon_marshmallow_kid",
- "fg": [ { "weight": 1, "sprite": 2868 }, { "weight": 1, "sprite": 2869 } ],
+ "fg": [ { "weight": 1, "sprite": 2879 }, { "weight": 1, "sprite": 2880 } ],
"bg": [ ],
"rotates": false
},
{
"id": "mon_necco",
"fg": [
- { "weight": 1, "sprite": 2871 },
- { "weight": 1, "sprite": 2872 },
- { "weight": 1, "sprite": 2873 },
- { "weight": 1, "sprite": 2874 },
- { "weight": 1, "sprite": 2875 },
- { "weight": 1, "sprite": 2876 },
- { "weight": 1, "sprite": 2870 }
+ { "weight": 1, "sprite": 2882 },
+ { "weight": 1, "sprite": 2883 },
+ { "weight": 1, "sprite": 2884 },
+ { "weight": 1, "sprite": 2885 },
+ { "weight": 1, "sprite": 2886 },
+ { "weight": 1, "sprite": 2887 },
+ { "weight": 1, "sprite": 2881 }
],
"bg": [ ],
"rotates": false
},
- { "id": "debug_mon", "fg": 2877 },
- { "id": "mon_EMP_hack", "fg": 2950 },
- { "id": "mon_albino_penguin", "fg": 2878, "bg": 3145, "rotates": false },
- { "id": "mon_alpha_razorclaw", "fg": 2879, "bg": 3145 },
- { "id": "mon_ant", "fg": 2880, "bg": 3145, "rotates": false },
- { "id": "mon_ant_acid", "fg": 3098, "bg": 3145, "rotates": false },
- { "id": "mon_ant_acid_larva", "fg": 3097, "bg": 3145, "rotates": false },
- { "id": "mon_ant_acid_queen", "fg": 3099, "bg": 3145, "rotates": false },
- { "id": "mon_ant_acid_soldier", "fg": 3096, "rotates": false },
- { "id": "mon_ant_fungus", "fg": 2881, "bg": 3145, "rotates": false },
- { "id": "mon_ant_larva", "fg": 2882, "bg": 3145, "rotates": false },
- { "id": "mon_ant_queen", "fg": 2883, "bg": 3145, "rotates": false },
- { "id": "mon_ant_soldier", "fg": 2884, "bg": 3145, "rotates": false },
- { "id": "mon_bat", "fg": 2885, "bg": 3145, "rotates": false },
- { "id": "mon_bear", "fg": 2886, "bg": 3145, "rotates": false },
- { "id": "mon_bear_cub", "fg": 2887, "bg": 3145, "rotates": false },
- { "id": "mon_bear_smoky", "fg": 2888, "bg": 3145, "rotates": false },
- { "id": "mon_bee", "fg": 2889, "bg": 3145, "rotates": false },
- { "id": "mon_bee_mega", "fg": 2891, "rotates": false },
- { "id": "mon_bee_small", "fg": 2892, "rotates": false },
- { "id": "mon_beekeeper", "fg": 2890, "bg": 3145, "rotates": false },
- { "id": "mon_biollante", "fg": 2893, "bg": 3145, "rotates": false },
- { "id": "mon_black_rat", "fg": 3003, "rotates": false },
- { "id": "mon_blank", "fg": 2894, "bg": 3145, "rotates": false },
- { "id": "mon_blob", "fg": 2895, "bg": 3145, "rotates": false },
- { "id": "mon_blob_large", "fg": 2896, "rotates": false },
- { "id": "mon_blob_small", "fg": 2897, "rotates": false },
- { "id": "mon_bobcat", "fg": 2898, "bg": 3145, "rotates": false },
- { "id": "mon_boomer", "fg": 2899, "bg": 3145, "rotates": false },
- { "id": "mon_boomer_fungus", "fg": 2900, "bg": 3145, "rotates": false },
- { "id": "mon_breather", "fg": 2901, "rotates": false },
- { "id": "mon_breather_hub", "fg": 2902, "bg": 3145, "rotates": false },
- { "id": "mon_c4_hack", "fg": 2903, "bg": 3145, "rotates": false },
- { "id": "mon_cat", "fg": 2898, "bg": 3145, "rotates": false },
- { "id": "mon_centipede", "fg": 2904, "rotates": false },
- { "id": "mon_centipede_giant", "fg": 2905, "bg": 3145, "rotates": false },
- { "id": "mon_charred_nightmare", "fg": 2906, "rotates": false },
- { "id": "mon_chicken", "fg": 2907, "bg": 3145, "rotates": false },
- { "id": "mon_chipmunk", "fg": 2908, "bg": 3145, "rotates": false },
- { "id": "mon_chud", "fg": 2909, "bg": 3145, "rotates": false },
- { "id": "mon_compsognathus", "fg": 2910, "bg": 3145, "rotates": false },
- { "id": "mon_cougar", "fg": 2911, "bg": 3145, "rotates": false },
- { "id": "mon_coyote", "fg": 2912, "bg": 3145, "rotates": false },
- { "id": "mon_coyote_wolf", "fg": 2913, "bg": 3145, "rotates": false },
- { "id": "mon_crawler", "fg": 2914, "bg": 3145, "rotates": false },
- { "id": "mon_creeper_hub", "fg": 2915, "bg": 3145, "rotates": false },
- { "id": "mon_creeper_vine", "fg": 2916, "bg": 3145, "rotates": false },
- { "id": "mon_crow", "fg": 2917, "bg": 3145, "rotates": false },
- { "id": "mon_darkman", "fg": 2918, "bg": 3145, "rotates": false },
- { "id": "mon_deer", "fg": 2919, "bg": 3145, "rotates": false },
- { "id": "mon_deer_mouse", "fg": 3003, "rotates": false },
- { "id": "mon_deinonychus", "fg": 2920, "bg": 3145, "rotates": false },
- { "id": "mon_dementia", "fg": 2921, "bg": 3145, "rotates": false },
- { "id": "mon_dermatik", "fg": 2922, "bg": 3145, "rotates": false },
- { "id": "mon_dermatik_larva", "fg": 2923, "rotates": false },
- { "id": "mon_dilophosaurus", "fg": 2920, "bg": 3145, "rotates": false },
- { "id": "mon_dimorphodon", "fg": 2924, "bg": 3145, "rotates": false },
- { "id": "mon_dog_skeleton", "fg": 2925, "bg": 3145, "rotates": false },
- { "id": "mon_dog_zombie_cop", "fg": 2926, "bg": 3145, "rotates": false },
- { "id": "mon_dog_zombie_rot", "fg": 2927, "bg": [ ], "rotates": false },
- { "id": "mon_dragonfly_giant", "fg": 2929, "bg": 3145, "rotates": false },
- { "id": "mon_dragonfly_small", "fg": 2928, "rotates": false },
- { "id": "mon_duck", "fg": 2930, "bg": 3145, "rotates": false },
- { "id": "mon_eoraptor", "fg": 2910, "bg": 3145, "rotates": false },
- { "id": "mon_fant", "fg": 2931, "rotates": false },
- { "id": "mon_fish_blinky", "fg": 2932, "rotates": false },
- { "id": "mon_fish_bluegill", "fg": 2933, "rotates": false },
- { "id": "mon_fish_bowfin", "fg": 2934, "rotates": false },
- { "id": "mon_fish_bullhead", "fg": 2935, "rotates": false },
- { "id": "mon_fish_carp", "fg": 2936, "rotates": false },
- { "id": "mon_fish_crayfish", "fg": 2937, "rotates": false },
- { "id": "mon_fish_lbass", "fg": 2938, "rotates": false },
- { "id": "mon_fish_lobster", "fg": 2939, "rotates": false },
- { "id": "mon_fish_pbass", "fg": 2940, "rotates": false },
- { "id": "mon_fish_perch", "fg": 2941, "rotates": false },
- { "id": "mon_fish_pickerel", "fg": 2942, "rotates": false },
- { "id": "mon_fish_pike", "fg": 2943, "rotates": false },
- { "id": "mon_fish_salmon", "fg": 2944, "rotates": false },
- { "id": "mon_fish_sbass", "fg": 2945, "rotates": false },
- { "id": "mon_fish_sunfish", "fg": 2946, "rotates": false },
- { "id": "mon_fish_trout", "fg": 2947, "rotates": false },
- { "id": "mon_fish_whitefish", "fg": 2948, "rotates": false },
- { "id": "mon_flaming_eye", "fg": 2949, "bg": 3145, "rotates": false },
- { "id": "mon_flashbang_hack", "fg": 2950, "bg": 3145, "rotates": false },
- { "id": "mon_fly", "fg": 2951, "bg": 3145, "rotates": false },
- { "id": "mon_fox_gray", "fg": 2952, "bg": 3145, "rotates": false },
- { "id": "mon_fox_red", "fg": 2952, "bg": 3145, "rotates": false },
- { "id": "mon_fungal_blossom", "fg": 2954, "bg": 3145, "rotates": false },
- { "id": "mon_fungal_fighter", "fg": 2955, "bg": 3145, "rotates": false },
- { "id": "mon_fungal_hedgerow", "fg": 2956, "bg": 3145, "rotates": false },
- { "id": "mon_fungal_tendril", "fg": 2957, "bg": 3145, "rotates": false },
- { "id": "mon_fungal_wall", "fg": 2958, "bg": 3145, "rotates": false },
- { "id": "mon_fungaloid_dormant", "fg": 3087, "bg": 3145, "rotates": false },
- { "id": "mon_fungaloid_young", "fg": 2953, "bg": 3145, "rotates": false },
- { "id": "mon_gallimimus", "fg": 2959, "bg": 3145, "rotates": false },
- { "id": "mon_gasbomb_hack", "fg": 2960, "bg": 3145, "rotates": false },
- { "id": "mon_gator", "fg": 2961, "rotates": false },
- { "id": "mon_gelatin", "fg": 2962, "bg": 3145, "rotates": false },
- { "id": "mon_generator", "fg": 2963, "bg": 3145, "rotates": false },
- { "id": "mon_giant_cockroach", "fg": 2964, "rotates": false },
- { "id": "mon_giant_cockroach_nymph", "fg": 2965, "rotates": false },
- { "id": "mon_goat", "fg": 2966, "rotates": false },
- { "id": "mon_gozu", "fg": 2967, "bg": 3145, "rotates": false },
- { "id": "mon_graboid", "fg": 2968, "bg": 3145, "rotates": false },
- { "id": "mon_grenade_hack", "fg": 2969, "bg": 3145, "rotates": false },
- { "id": "mon_groundhog", "fg": 2908, "bg": 3145, "rotates": false },
- { "id": "mon_halfworm", "fg": 2970, "bg": 3145, "rotates": false },
- { "id": "mon_hallu_mom", "fg": 2971, "bg": 3145, "rotates": false },
- { "id": "mon_hare", "fg": 2972, "bg": 3145, "rotates": false },
- { "id": "mon_hare_season_winter", "fg": 2973, "bg": 3145, "rotates": false },
- { "id": "mon_headless_dog_thing", "fg": 2974, "bg": 3145, "rotates": false },
- { "id": "mon_hologram", "fg": 3088, "rotates": false },
- { "id": "mon_human_snail", "fg": 2975, "bg": 3145, "rotates": false },
- { "id": "mon_irradiated_wanderer_1", "fg": 2976, "bg": 3145 },
- { "id": "mon_irradiated_wanderer_2", "fg": 2977, "bg": 3145, "rotates": false },
- { "id": "mon_irradiated_wanderer_3", "fg": 2978, "bg": 3145 },
- { "id": "mon_irradiated_wanderer_4", "fg": 2979, "bg": 3145 },
- { "id": "mon_kreck", "fg": 2980, "bg": 3145, "rotates": false },
- { "id": "mon_laserturret", "fg": 2981, "bg": 3145, "rotates": false },
- { "id": "mon_lemming", "fg": 2908, "bg": 3145, "rotates": false },
- { "id": "mon_manhack", "fg": 2982, "bg": 3145, "rotates": false },
- { "id": "mon_manhack_acid", "fg": 2983, "rotates": false },
- { "id": "mon_mi_go", "fg": 2985, "bg": 3145, "rotates": false },
- { "id": "mon_mininuke_hack", "fg": 2984, "bg": 3145, "rotates": false },
- { "id": "mon_mink", "fg": 2908, "bg": 3145, "rotates": false },
- { "id": "mon_moose", "fg": 2986, "bg": 3145, "rotates": false },
- { "id": "mon_mosquito", "fg": 2987, "rotates": false },
- { "id": "mon_mosquito_giant", "fg": 2988, "bg": 3145, "rotates": false },
- { "id": "mon_muskrat", "fg": 3003, "rotates": false },
- { "id": "mon_mutant_carp", "fg": 2989, "rotates": false },
- { "id": "mon_mutant_salmon", "fg": 2990, "rotates": false },
- { "id": "mon_one_eye", "fg": 2991, "bg": 3145, "rotates": false },
- { "id": "mon_otter", "fg": 2908, "bg": 3145, "rotates": false },
- { "id": "mon_player_blob", "fg": 2992, "bg": 3145, "rotates": false },
- { "id": "mon_pregnant_giant_cockroach", "fg": 2993, "rotates": false },
- { "id": "mon_prototype_cyborg", "fg": 3120, "bg": 3145, "rotates": false },
- { "id": "mon_rabbit", "fg": 2994, "bg": 3145, "rotates": false },
- { "id": "mon_raccoon", "fg": 2995, "bg": 3145, "rotates": false },
- { "id": "mon_rat_king", "fg": 2998, "bg": 3145, "rotates": false },
- { "id": "mon_rattlesnake", "fg": 2996, "bg": 3145, "rotates": false },
- { "id": "mon_rattlesnake_giant", "fg": 2997, "bg": 3145, "rotates": false },
- { "id": "mon_razorclaw", "fg": 2999, "bg": 3145 },
- { "id": "mon_riotbot", "fg": 3000, "bg": 3145, "rotates": false },
- { "id": "mon_secubot", "fg": 3001, "bg": 3145, "rotates": false },
- { "id": "mon_sewer_fish", "fg": 3002, "bg": 3145, "rotates": false },
- { "id": "mon_sewer_rat", "fg": 3003, "bg": 3145, "rotates": false },
- { "id": "mon_sewer_snake", "fg": 3004, "bg": 3145, "rotates": false },
- { "id": "mon_shadow", "fg": 3005, "rotates": false },
- { "id": "mon_shadow_snake", "fg": 3006, "rotates": false },
- { "id": "mon_skeleton", "fg": 3007, "bg": 3145, "rotates": false },
- { "id": "mon_skeleton_electric", "fg": 3123, "bg": 3145, "rotates": false },
- { "id": "mon_skitterbot", "fg": 3008, "bg": 3145, "rotates": false },
- { "id": "mon_sludge_crawler", "fg": 3009, "bg": 3145, "rotates": false },
- { "id": "mon_spider_cellar_giant", "fg": 3010, "bg": 3145, "rotates": false },
- { "id": "mon_spider_cellar_giant_s", "fg": 3011, "bg": 3145, "rotates": false },
- { "id": "mon_spider_jumping_giant", "fg": 3013, "bg": 3145, "rotates": false },
- { "id": "mon_spider_jumping_giant_mega", "fg": 3014, "rotates": false },
- { "id": "mon_spider_jumping_small", "fg": 3012, "bg": 3145, "rotates": false },
- { "id": "mon_spider_trapdoor", "fg": 3015, "bg": 3145, "rotates": false },
- { "id": "mon_spider_trapdoor_giant", "fg": 3016, "bg": 3145, "rotates": false },
- { "id": "mon_spider_trapdoor_giant_mega", "fg": 3017, "rotates": false },
- { "id": "mon_spider_trapdoor_giant_small", "fg": 3018, "rotates": false },
- { "id": "mon_spider_web", "fg": 3019, "bg": 3145, "rotates": false },
- { "id": "mon_spider_web_giant", "fg": 3019, "bg": 3145, "rotates": false },
- { "id": "mon_spider_web_mega", "fg": 3020, "rotates": false },
- { "id": "mon_spider_web_s", "fg": 3021, "bg": 3145, "rotates": false },
- { "id": "mon_spider_widow_giant", "fg": 3023, "bg": 3145, "rotates": false },
- { "id": "mon_spider_widow_giant_s", "fg": 3024, "bg": 3145, "rotates": false },
- { "id": "mon_spider_widow_small", "fg": 3022, "bg": 3145, "rotates": false },
- { "id": "mon_spider_wolf_giant", "fg": 3026, "bg": 3145, "rotates": false },
- { "id": "mon_spider_wolf_small", "fg": 3025, "bg": 3145, "rotates": false },
- { "id": "mon_spore", "fg": 3027, "bg": 3145, "rotates": false },
- { "id": "mon_squirrel", "fg": 3028, "bg": 3145, "rotates": false },
- { "id": "mon_squirrel_red", "fg": 3028, "bg": 3145, "rotates": false },
- { "id": "mon_titanis", "fg": 3029, "bg": 3145, "rotates": false },
- { "id": "mon_turkey", "fg": 3030, "bg": 3145, "rotates": false },
- { "id": "mon_velociraptor", "fg": 3031, "bg": 3145, "rotates": false },
- { "id": "mon_vinebeast", "fg": 3032, "bg": 3145, "rotates": false },
- { "id": "mon_vortex", "fg": 3033, "bg": 3145, "rotates": false },
- { "id": "mon_w11b10", "fg": 3090, "rotates": false },
- { "id": "mon_w11b20b4", "fg": 3091, "rotates": false },
- { "id": "mon_w11h10", "fg": 3093, "rotates": false },
- { "id": "mon_w12b10", "fg": 3092, "rotates": false },
- { "id": "mon_w12n10", "fg": 3094, "rotates": false },
- { "id": "mon_wasp", "fg": 3034, "bg": 3145, "rotates": false },
- { "id": "mon_wasp_larvae", "fg": 2923 },
- { "id": "mon_wasp_mega", "fg": 3035 },
- { "id": "mon_wasp_small", "fg": 3036, "rotates": false },
- { "id": "mon_weasel", "fg": 2908, "bg": 3145, "rotates": false },
- { "id": "mon_wolf", "fg": 3037, "bg": 3145, "rotates": false },
- { "id": "mon_worm", "fg": 3038, "bg": 3145, "rotates": false },
- { "id": "mon_zhark", "fg": 3039 },
- { "id": "mon_zolf", "fg": 3040, "bg": 3145, "rotates": false },
- { "id": "mon_zolf_shady", "fg": 3041, "rotates": false },
- { "id": "mon_zombear", "fg": 3042, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_acidic", "fg": 3043, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_anklebiter", "fg": 3044, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_armored", "fg": 3045, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_bio_op", "fg": 3046, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_biter", "fg": 3047, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_blind", "fg": 3048, "rotates": false },
- { "id": "mon_zombie_brainless", "fg": 3127, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_brute", "fg": 3049, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_brute_grappler", "fg": 3050, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_brute_ninja", "fg": 3051, "bg": 3145 },
- { "id": "mon_zombie_brute_shocker", "fg": 3052, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_child_fungus", "fg": 3095, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_child_scorched", "fg": 3053, "bg": 3145 },
- { "id": "mon_zombie_child_scorched_2", "fg": 3054, "rotates": false },
- { "id": "mon_zombie_cop", "fg": 3055, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_crawler", "fg": 3056, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_creepy", "fg": 3057, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_dancer", "fg": 3058, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_dog", "fg": 3059, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_ears", "fg": 3128, "bg": 3145 },
- { "id": "mon_zombie_electric", "fg": 3060, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_fiend", "fg": 3129, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_fireman", "fg": 3061, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_fungus", "fg": [ 3062, 3130 ], "bg": 3145, "rotates": false },
- { "id": "mon_zombie_gasbag", "fg": 3063, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_grappler", "fg": 3064, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_hazmat", "fg": 3065, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_hollow", "fg": 3066, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_hunter", "fg": 3067, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_jackson", "fg": 3068, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_kevlar_1", "fg": 3134, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_mancroc", "fg": 3069, "bg": 3145 },
- { "id": "mon_zombie_master", "fg": 3070, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_military_pilot", "fg": 3089, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_necro", "fg": 3071, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_predator", "fg": 3072, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_rot", "fg": 3073, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_scorched", "fg": 3074, "bg": 3145 },
- { "id": "mon_zombie_shady", "fg": 3075, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_shady_ghost", "fg": 3076, "rotates": false },
- { "id": "mon_zombie_shriekling", "fg": 3077, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_skull", "fg": 3136, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_smoker", "fg": 3078, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_snotgobbler", "fg": 3079, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_soldier", "fg": 3080, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_soldier_acid_1", "fg": 3137, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_soldier_acid_2", "fg": 3138, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_soldier_blackops_1", "fg": 3139, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_soldier_blackops_2", "fg": 3140, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_spitter", "fg": 3081, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_sproglodyte", "fg": 3082, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_static", "fg": 3141, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_swimmer", "fg": 3083, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_thorny", "fg": 3142, "rotates": false, "bg": 3145 },
- { "id": "mon_zombie_waif", "fg": 3084, "bg": 3145, "rotates": false },
- { "id": "mon_zombie_wretched", "fg": 3143, "bg": 3145, "rotates": false },
- { "id": "mon_zoose", "fg": 3085, "bg": 3145, "rotates": false },
- { "id": "mon_zougar", "fg": 3086, "bg": 3145, "rotates": false },
- { "id": "mon_triffid", "fg": 3124, "bg": 3145 },
- { "id": "mon_triffid_sprig", "fg": 3125, "bg": 3145 },
- { "id": "mon_triffid_young", "fg": 3126, "bg": 3145 },
+ { "id": "debug_mon", "fg": 2888 },
+ { "id": "mon_EMP_hack", "fg": 2961 },
+ { "id": "mon_albino_penguin", "fg": 2889, "bg": 3156, "rotates": false },
+ { "id": "mon_alpha_razorclaw", "fg": 2890, "bg": 3156 },
+ { "id": "mon_ant", "fg": 2891, "bg": 3156, "rotates": false },
+ { "id": "mon_ant_acid", "fg": 3108, "bg": 3156, "rotates": false },
+ { "id": "mon_ant_acid_larva", "fg": 3107, "bg": 3156, "rotates": false },
+ { "id": "mon_ant_acid_queen", "fg": 3109, "bg": 3156, "rotates": false },
+ { "id": "mon_ant_acid_soldier", "fg": 3106, "rotates": false },
+ { "id": "mon_ant_fungus", "fg": 2892, "bg": 3156, "rotates": false },
+ { "id": "mon_ant_larva", "fg": 2893, "bg": 3156, "rotates": false },
+ { "id": "mon_ant_queen", "fg": 2894, "bg": 3156, "rotates": false },
+ { "id": "mon_ant_soldier", "fg": 2895, "bg": 3156, "rotates": false },
+ { "id": "mon_bat", "fg": 2896, "bg": 3156, "rotates": false },
+ { "id": "mon_bear", "fg": 2897, "bg": 3156, "rotates": false },
+ { "id": "mon_bear_cub", "fg": 2898, "bg": 3156, "rotates": false },
+ { "id": "mon_bear_smoky", "fg": 2899, "bg": 3156, "rotates": false },
+ { "id": "mon_bee", "fg": 2900, "bg": 3156, "rotates": false },
+ { "id": "mon_bee_mega", "fg": 2902, "rotates": false },
+ { "id": "mon_bee_small", "fg": 2903, "rotates": false },
+ { "id": "mon_beekeeper", "fg": 2901, "bg": 3156, "rotates": false },
+ { "id": "mon_biollante", "fg": 2904, "bg": 3156, "rotates": false },
+ { "id": "mon_black_rat", "fg": 3013, "rotates": false },
+ { "id": "mon_blank", "fg": 2905, "bg": 3156, "rotates": false },
+ { "id": "mon_blob", "fg": 2906, "bg": 3156, "rotates": false },
+ { "id": "mon_blob_large", "fg": 2907, "rotates": false },
+ { "id": "mon_blob_small", "fg": 2908, "rotates": false },
+ { "id": "mon_bobcat", "fg": 2909, "bg": 3156, "rotates": false },
+ { "id": "mon_boomer", "fg": 2910, "bg": 3156, "rotates": false },
+ { "id": "mon_boomer_fungus", "fg": 2911, "bg": 3156, "rotates": false },
+ { "id": "mon_breather", "fg": 2912, "rotates": false },
+ { "id": "mon_breather_hub", "fg": 2913, "bg": 3156, "rotates": false },
+ { "id": "mon_c4_hack", "fg": 2914, "bg": 3156, "rotates": false },
+ { "id": "mon_cat", "fg": 2909, "bg": 3156, "rotates": false },
+ { "id": "mon_centipede", "fg": 2915, "rotates": false },
+ { "id": "mon_centipede_giant", "fg": 2916, "bg": 3156, "rotates": false },
+ { "id": "mon_charred_nightmare", "fg": 2917, "rotates": false },
+ { "id": "mon_chicken", "fg": 2918, "bg": 3156, "rotates": false },
+ { "id": "mon_chipmunk", "fg": 2919, "bg": 3156, "rotates": false },
+ { "id": "mon_chud", "fg": 2920, "bg": 3156, "rotates": false },
+ { "id": "mon_compsognathus", "fg": 2921, "bg": 3156, "rotates": false },
+ { "id": "mon_cougar", "fg": 2922, "bg": 3156, "rotates": false },
+ { "id": "mon_coyote", "fg": 2923, "bg": 3156, "rotates": false },
+ { "id": "mon_coyote_wolf", "fg": 2924, "bg": 3156, "rotates": false },
+ { "id": "mon_crawler", "fg": 2925, "bg": 3156, "rotates": false },
+ { "id": "mon_creeper_hub", "fg": 2926, "bg": 3156, "rotates": false },
+ { "id": "mon_creeper_vine", "fg": 2927, "bg": 3156, "rotates": false },
+ { "id": "mon_crow", "fg": 2928, "bg": 3156, "rotates": false },
+ { "id": "mon_darkman", "fg": 2929, "bg": 3156, "rotates": false },
+ { "id": "mon_deer", "fg": 2930, "bg": 3156, "rotates": false },
+ { "id": "mon_deer_mouse", "fg": 3013, "rotates": false },
+ { "id": "mon_deinonychus", "fg": 2931, "bg": 3156, "rotates": false },
+ { "id": "mon_dementia", "fg": 2932, "bg": 3156, "rotates": false },
+ { "id": "mon_dermatik", "fg": 2933, "bg": 3156, "rotates": false },
+ { "id": "mon_dermatik_larva", "fg": 2934, "rotates": false },
+ { "id": "mon_dilophosaurus", "fg": 2931, "bg": 3156, "rotates": false },
+ { "id": "mon_dimorphodon", "fg": 2935, "bg": 3156, "rotates": false },
+ { "id": "mon_dog_skeleton", "fg": 2936, "bg": 3156, "rotates": false },
+ { "id": "mon_dog_zombie_cop", "fg": 2937, "bg": 3156, "rotates": false },
+ { "id": "mon_dog_zombie_rot", "fg": 2938, "bg": [ ], "rotates": false },
+ { "id": "mon_dragonfly_giant", "fg": 2940, "bg": 3156, "rotates": false },
+ { "id": "mon_dragonfly_small", "fg": 2939, "rotates": false },
+ { "id": "mon_duck", "fg": 2941, "bg": 3156, "rotates": false },
+ { "id": "mon_eoraptor", "fg": 2921, "bg": 3156, "rotates": false },
+ { "id": "mon_fant", "fg": 2942, "rotates": false },
+ { "id": "mon_fish_blinky", "fg": 2943, "rotates": false },
+ { "id": "mon_fish_bluegill", "fg": 2944, "rotates": false },
+ { "id": "mon_fish_bowfin", "fg": 2945, "rotates": false },
+ { "id": "mon_fish_bullhead", "fg": 2946, "rotates": false },
+ { "id": "mon_fish_carp", "fg": 2947, "rotates": false },
+ { "id": "mon_fish_crayfish", "fg": 2948, "rotates": false },
+ { "id": "mon_fish_lbass", "fg": 2949, "rotates": false },
+ { "id": "mon_fish_lobster", "fg": 2950, "rotates": false },
+ { "id": "mon_fish_pbass", "fg": 2951, "rotates": false },
+ { "id": "mon_fish_perch", "fg": 2952, "rotates": false },
+ { "id": "mon_fish_pickerel", "fg": 2953, "rotates": false },
+ { "id": "mon_fish_pike", "fg": 2954, "rotates": false },
+ { "id": "mon_fish_salmon", "fg": 2955, "rotates": false },
+ { "id": "mon_fish_sbass", "fg": 2956, "rotates": false },
+ { "id": "mon_fish_sunfish", "fg": 2957, "rotates": false },
+ { "id": "mon_fish_trout", "fg": 2958, "rotates": false },
+ { "id": "mon_fish_whitefish", "fg": 2959, "rotates": false },
+ { "id": "mon_flaming_eye", "fg": 2960, "bg": 3156, "rotates": false },
+ { "id": "mon_flashbang_hack", "fg": 2961, "bg": 3156, "rotates": false },
+ { "id": "mon_fly", "fg": 2962, "bg": 3156, "rotates": false },
+ { "id": "mon_fox_gray", "fg": 2963, "bg": 3156, "rotates": false },
+ { "id": "mon_fox_red", "fg": 2963, "bg": 3156, "rotates": false },
+ { "id": "mon_fungal_blossom", "fg": 2965, "bg": 3156, "rotates": false },
+ { "id": "mon_fungal_fighter", "fg": 2966, "bg": 3156, "rotates": false },
+ { "id": "mon_fungal_hedgerow", "fg": 2967, "bg": 3156, "rotates": false },
+ { "id": "mon_fungal_tendril", "fg": 2968, "bg": 3156, "rotates": false },
+ { "id": "mon_fungal_wall", "fg": 2969, "bg": 3156, "rotates": false },
+ { "id": "mon_fungaloid_dormant", "fg": 3097, "bg": 3156, "rotates": false },
+ { "id": "mon_fungaloid_young", "fg": 2964, "bg": 3156, "rotates": false },
+ { "id": "mon_gallimimus", "fg": 2970, "bg": 3156, "rotates": false },
+ { "id": "mon_gasbomb_hack", "fg": 2971, "bg": 3156, "rotates": false },
+ { "id": "mon_gator", "fg": 2972, "rotates": false },
+ { "id": "mon_gelatin", "fg": 2973, "bg": 3156, "rotates": false },
+ { "id": "mon_generator", "fg": 2974, "bg": 3156, "rotates": false },
+ { "id": "mon_giant_cockroach", "fg": 2975, "rotates": false },
+ { "id": "mon_giant_cockroach_nymph", "fg": 2976, "rotates": false },
+ { "id": "mon_goat", "fg": 2977, "rotates": false },
+ { "id": "mon_gozu", "fg": 2978, "bg": 3156, "rotates": false },
+ { "id": "mon_graboid", "fg": 2979, "bg": 3156, "rotates": false },
+ { "id": "mon_grenade_hack", "fg": 2980, "bg": 3156, "rotates": false },
+ { "id": "mon_groundhog", "fg": 2919, "bg": 3156, "rotates": false },
+ { "id": "mon_halfworm", "fg": 2981, "bg": 3156, "rotates": false },
+ { "id": "mon_hallu_mom", "fg": 2982, "bg": 3156, "rotates": false },
+ { "id": "mon_hare", "fg": 2983, "bg": 3156, "rotates": false },
+ { "id": "mon_hare_season_winter", "fg": 2984, "bg": 3156, "rotates": false },
+ { "id": "mon_headless_dog_thing", "fg": 2985, "bg": 3156, "rotates": false },
+ { "id": "mon_hologram", "fg": 3098, "rotates": false },
+ { "id": "mon_human_snail", "fg": 2986, "bg": 3156, "rotates": false },
+ { "id": "mon_irradiated_wanderer_1", "fg": 2987, "bg": 3156 },
+ { "id": "mon_irradiated_wanderer_2", "fg": 2988, "bg": 3156, "rotates": false },
+ { "id": "mon_irradiated_wanderer_3", "fg": 2989, "bg": 3156 },
+ { "id": "mon_irradiated_wanderer_4", "fg": 2990, "bg": 3156 },
+ { "id": "mon_kreck", "fg": 2991, "bg": 3156, "rotates": false },
+ { "id": "mon_laserturret", "fg": 2992, "bg": 3156, "rotates": false },
+ { "id": "mon_lemming", "fg": 2919, "bg": 3156, "rotates": false },
+ { "id": "mon_manhack", "fg": 2993, "bg": 3156, "rotates": false },
+ { "id": "mon_manhack_acid", "fg": 2994, "rotates": false },
+ { "id": "mon_mi_go", "fg": 2996, "bg": 3156, "rotates": false },
+ { "id": "mon_mininuke_hack", "fg": 2995, "bg": 3156, "rotates": false },
+ { "id": "mon_mink", "fg": 2919, "bg": 3156, "rotates": false },
+ { "id": "mon_moose", "fg": 2997, "bg": 3156, "rotates": false },
+ { "id": "mon_mosquito", "fg": 2998, "rotates": false },
+ { "id": "mon_mosquito_giant", "fg": 2999, "bg": 3156, "rotates": false },
+ { "id": "mon_muskrat", "fg": 3013, "rotates": false },
+ { "id": "mon_mutant_carp", "fg": 3000, "rotates": false },
+ { "id": "mon_mutant_salmon", "fg": 3001, "rotates": false },
+ { "id": "mon_one_eye", "fg": 3002, "bg": 3156, "rotates": false },
+ { "id": "mon_otter", "fg": 2919, "bg": 3156, "rotates": false },
+ { "id": "mon_player_blob", "fg": 3003, "bg": 3156, "rotates": false },
+ { "id": "mon_pregnant_giant_cockroach", "fg": 3004, "rotates": false },
+ { "id": "mon_prototype_cyborg", "fg": 3131, "bg": 3156, "rotates": false },
+ { "id": "mon_rabbit", "fg": 3005, "bg": 3156, "rotates": false },
+ { "id": "mon_raccoon", "fg": 3006, "bg": 3156, "rotates": false },
+ { "id": "mon_rat_king", "fg": 3009, "bg": 3156, "rotates": false },
+ { "id": "mon_rattlesnake", "fg": 3007, "bg": 3156, "rotates": false },
+ { "id": "mon_rattlesnake_giant", "fg": 3008, "bg": 3156, "rotates": false },
+ { "id": "mon_razorclaw", "fg": 3010, "bg": 3156 },
+ { "id": "mon_riotbot", "fg": 3011, "bg": 3156, "rotates": false },
+ { "id": "mon_sewer_fish", "fg": 3012, "bg": 3156, "rotates": false },
+ { "id": "mon_sewer_rat", "fg": 3013, "bg": 3156, "rotates": false },
+ { "id": "mon_sewer_snake", "fg": 3014, "bg": 3156, "rotates": false },
+ { "id": "mon_shadow", "fg": 3015, "rotates": false },
+ { "id": "mon_shadow_snake", "fg": 3016, "rotates": false },
+ { "id": "mon_skeleton", "fg": 3017, "bg": 3156, "rotates": false },
+ { "id": "mon_skeleton_electric", "fg": 3134, "bg": 3156, "rotates": false },
+ { "id": "mon_skitterbot", "fg": 3018, "bg": 3156, "rotates": false },
+ { "id": "mon_sludge_crawler", "fg": 3019, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_cellar_giant", "fg": 3020, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_cellar_giant_s", "fg": 3021, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_jumping_giant", "fg": 3023, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_jumping_giant_mega", "fg": 3024, "rotates": false },
+ { "id": "mon_spider_jumping_small", "fg": 3022, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_trapdoor", "fg": 3025, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_trapdoor_giant", "fg": 3026, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_trapdoor_giant_mega", "fg": 3027, "rotates": false },
+ { "id": "mon_spider_trapdoor_giant_small", "fg": 3028, "rotates": false },
+ { "id": "mon_spider_web", "fg": 3029, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_web_giant", "fg": 3029, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_web_mega", "fg": 3030, "rotates": false },
+ { "id": "mon_spider_web_s", "fg": 3031, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_widow_giant", "fg": 3033, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_widow_giant_s", "fg": 3034, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_widow_small", "fg": 3032, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_wolf_giant", "fg": 3036, "bg": 3156, "rotates": false },
+ { "id": "mon_spider_wolf_small", "fg": 3035, "bg": 3156, "rotates": false },
+ { "id": "mon_spore", "fg": 3037, "bg": 3156, "rotates": false },
+ { "id": "mon_squirrel", "fg": 3038, "bg": 3156, "rotates": false },
+ { "id": "mon_squirrel_red", "fg": 3038, "bg": 3156, "rotates": false },
+ { "id": "mon_titanis", "fg": 3039, "bg": 3156, "rotates": false },
+ { "id": "mon_turkey", "fg": 3040, "bg": 3156, "rotates": false },
+ { "id": "mon_velociraptor", "fg": 3041, "bg": 3156, "rotates": false },
+ { "id": "mon_vinebeast", "fg": 3042, "bg": 3156, "rotates": false },
+ { "id": "mon_vortex", "fg": 3043, "bg": 3156, "rotates": false },
+ { "id": "mon_w11b10", "fg": 3100, "rotates": false },
+ { "id": "mon_w11b20b4", "fg": 3101, "rotates": false },
+ { "id": "mon_w11h10", "fg": 3103, "rotates": false },
+ { "id": "mon_w12b10", "fg": 3102, "rotates": false },
+ { "id": "mon_w12n10", "fg": 3104, "rotates": false },
+ { "id": "mon_wasp", "fg": 3044, "bg": 3156, "rotates": false },
+ { "id": "mon_wasp_larvae", "fg": 2934 },
+ { "id": "mon_wasp_mega", "fg": 3045 },
+ { "id": "mon_wasp_small", "fg": 3046, "rotates": false },
+ { "id": "mon_weasel", "fg": 2919, "bg": 3156, "rotates": false },
+ { "id": "mon_wolf", "fg": 3047, "bg": 3156, "rotates": false },
+ { "id": "mon_worm", "fg": 3048, "bg": 3156, "rotates": false },
+ { "id": "mon_zhark", "fg": 3049 },
+ { "id": "mon_zolf", "fg": 3050, "bg": 3156, "rotates": false },
+ { "id": "mon_zolf_shady", "fg": 3051, "rotates": false },
+ { "id": "mon_zombear", "fg": 3052, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_acidic", "fg": 3053, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_anklebiter", "fg": 3054, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_armored", "fg": 3055, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_bio_op", "fg": 3056, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_biter", "fg": 3057, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_blind", "fg": 3058, "rotates": false },
+ { "id": "mon_zombie_brainless", "fg": 3138, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_brute", "fg": 3059, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_brute_grappler", "fg": 3060, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_brute_ninja", "fg": 3061, "bg": 3156 },
+ { "id": "mon_zombie_brute_shocker", "fg": 3062, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_child_fungus", "fg": 3105, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_child_scorched", "fg": 3063, "bg": 3156 },
+ { "id": "mon_zombie_child_scorched_2", "fg": 3064, "rotates": false },
+ { "id": "mon_zombie_cop", "fg": 3065, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_crawler", "fg": 3066, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_creepy", "fg": 3067, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_dancer", "fg": 3068, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_dog", "fg": 3069, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_ears", "fg": 3139, "bg": 3156 },
+ { "id": "mon_zombie_electric", "fg": 3070, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_fiend", "fg": 3140, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_fireman", "fg": 3071, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_fungus", "fg": [ 3072, 3141 ], "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_gasbag", "fg": 3073, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_grappler", "fg": 3074, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_hazmat", "fg": 3075, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_hollow", "fg": 3076, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_hunter", "fg": 3077, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_jackson", "fg": 3078, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_kevlar_1", "fg": 3145, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_mancroc", "fg": 3079, "bg": 3156 },
+ { "id": "mon_zombie_master", "fg": 3080, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_military_pilot", "fg": 3099, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_necro", "fg": 3081, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_predator", "fg": 3082, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_rot", "fg": 3083, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_scorched", "fg": 3084, "bg": 3156 },
+ { "id": "mon_zombie_shady", "fg": 3085, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_shady_ghost", "fg": 3086, "rotates": false },
+ { "id": "mon_zombie_shriekling", "fg": 3087, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_skull", "fg": 3147, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_smoker", "fg": 3088, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_snotgobbler", "fg": 3089, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_soldier", "fg": 3090, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_soldier_acid_1", "fg": 3148, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_soldier_acid_2", "fg": 3149, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_soldier_blackops_1", "fg": 3150, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_soldier_blackops_2", "fg": 3151, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_spitter", "fg": 3091, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_sproglodyte", "fg": 3092, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_static", "fg": 3152, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_swimmer", "fg": 3093, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_thorny", "fg": 3153, "rotates": false, "bg": 3156 },
+ { "id": "mon_zombie_waif", "fg": 3094, "bg": 3156, "rotates": false },
+ { "id": "mon_zombie_wretched", "fg": 3154, "bg": 3156, "rotates": false },
+ { "id": "mon_zoose", "fg": 3095, "bg": 3156, "rotates": false },
+ { "id": "mon_zougar", "fg": 3096, "bg": 3156, "rotates": false },
+ { "id": "mon_triffid", "fg": 3135, "bg": 3156 },
+ { "id": "mon_triffid_sprig", "fg": 3136, "bg": 3156 },
+ { "id": "mon_triffid_young", "fg": 3137, "bg": 3156 },
{
"id": "mon_broken_cyborg",
"fg": [
- { "weight": 1, "sprite": 3155 },
- { "weight": 1, "sprite": 3156 },
- { "weight": 1, "sprite": 3157 },
- { "weight": 1, "sprite": 3158 },
- { "weight": 1, "sprite": 3159 },
- { "weight": 1, "sprite": 3160 }
+ { "weight": 1, "sprite": 3166 },
+ { "weight": 1, "sprite": 3167 },
+ { "weight": 1, "sprite": 3168 },
+ { "weight": 1, "sprite": 3169 },
+ { "weight": 1, "sprite": 3170 },
+ { "weight": 1, "sprite": 3171 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": [ "mon_dog", "mon_dog_thing" ],
- "fg": [ { "weight": 10, "sprite": 3161 }, { "weight": 1, "sprite": 3162 } ],
+ "fg": [ { "weight": 10, "sprite": 3172 }, { "weight": 1, "sprite": 3173 } ],
"rotates": false
},
{
"id": "mon_feral_human_crowbar",
"fg": [
- { "weight": 1, "sprite": 3173 },
- { "weight": 1, "sprite": 3174 },
- { "weight": 1, "sprite": 3175 },
+ { "weight": 1, "sprite": 3184 },
+ { "weight": 1, "sprite": 3185 },
+ { "weight": 1, "sprite": 3186 },
+ { "weight": 1, "sprite": 3187 },
+ { "weight": 1, "sprite": 3188 },
+ { "weight": 1, "sprite": 3189 },
+ { "weight": 1, "sprite": 3190 },
+ { "weight": 1, "sprite": 3191 }
+ ],
+ "bg": 3156
+ },
+ {
+ "id": "mon_feral_human_pipe",
+ "fg": [
+ { "weight": 1, "sprite": 3192 },
+ { "weight": 1, "sprite": 3193 },
+ { "weight": 1, "sprite": 3194 },
+ { "weight": 1, "sprite": 3195 },
+ { "weight": 1, "sprite": 3196 },
+ { "weight": 1, "sprite": 3197 },
+ { "weight": 1, "sprite": 3198 },
+ { "weight": 1, "sprite": 3199 }
+ ],
+ "bg": 3156
+ },
+ {
+ "id": "mon_feral_human_axe",
+ "fg": [
{ "weight": 1, "sprite": 3176 },
{ "weight": 1, "sprite": 3177 },
{ "weight": 1, "sprite": 3178 },
{ "weight": 1, "sprite": 3179 },
- { "weight": 1, "sprite": 3180 }
+ { "weight": 1, "sprite": 3180 },
+ { "weight": 1, "sprite": 3181 },
+ { "weight": 1, "sprite": 3182 },
+ { "weight": 1, "sprite": 3183 }
],
- "bg": 3145
+ "bg": 3156
},
{
- "id": "mon_feral_human_pipe",
+ "id": "mon_feral_labsecurity_9mm",
"fg": [
- { "weight": 1, "sprite": 3181 },
- { "weight": 1, "sprite": 3182 },
- { "weight": 1, "sprite": 3183 },
- { "weight": 1, "sprite": 3184 },
- { "weight": 1, "sprite": 3185 },
- { "weight": 1, "sprite": 3186 },
- { "weight": 1, "sprite": 3187 },
- { "weight": 1, "sprite": 3188 }
+ { "weight": 1, "sprite": 3200 },
+ { "weight": 1, "sprite": 3201 },
+ { "weight": 1, "sprite": 3202 },
+ { "weight": 1, "sprite": 3203 },
+ { "weight": 1, "sprite": 3204 },
+ { "weight": 1, "sprite": 3205 },
+ { "weight": 1, "sprite": 3206 },
+ { "weight": 1, "sprite": 3207 }
],
- "bg": 3145
+ "bg": 3156
},
{
- "id": "mon_feral_human_axe",
+ "id": "mon_feral_labsecurity_flashlight",
"fg": [
- { "weight": 1, "sprite": 3165 },
- { "weight": 1, "sprite": 3166 },
- { "weight": 1, "sprite": 3167 },
- { "weight": 1, "sprite": 3168 },
- { "weight": 1, "sprite": 3169 },
- { "weight": 1, "sprite": 3170 },
- { "weight": 1, "sprite": 3171 },
- { "weight": 1, "sprite": 3172 }
+ { "weight": 1, "sprite": 3208 },
+ { "weight": 1, "sprite": 3209 },
+ { "weight": 1, "sprite": 3210 },
+ { "weight": 1, "sprite": 3211 },
+ { "weight": 1, "sprite": 3212 }
+ ],
+ "bg": 3156
+ },
+ {
+ "id": "mon_feral_scientist_scalpel",
+ "fg": [
+ { "weight": 1, "sprite": 3213 },
+ { "weight": 1, "sprite": 3214 },
+ { "weight": 1, "sprite": 3215 },
+ { "weight": 1, "sprite": 3216 },
+ { "weight": 1, "sprite": 3217 }
],
- "bg": 3145
+ "bg": 3156
},
{
"id": "mon_fungaloid",
- "fg": [ { "weight": 100, "sprite": 3192 }, { "weight": 1, "sprite": 3193 } ],
+ "fg": [ { "weight": 100, "sprite": 3227 }, { "weight": 1, "sprite": 3228 } ],
"rotates": false
},
{
"id": "mon_zombie_giant_heart",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 3198 },
- { "weight": 15, "sprite": 3199 },
- { "weight": 15, "sprite": 3198 },
- { "weight": 15, "sprite": 3200 }
+ { "weight": 15, "sprite": 3236 },
+ { "weight": 15, "sprite": 3237 },
+ { "weight": 15, "sprite": 3236 },
+ { "weight": 15, "sprite": 3238 }
],
"rotates": false,
- "bg": 3145
+ "bg": 3156
},
{
"id": "mon_twisted_body",
- "fg": [ { "weight": 1, "sprite": 3209 }, { "weight": 1, "sprite": 3210 }, { "weight": 1, "sprite": 3211 } ],
- "bg": 3145,
+ "fg": [ { "weight": 1, "sprite": 3247 }, { "weight": 1, "sprite": 3248 }, { "weight": 1, "sprite": 3249 } ],
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie",
"fg": [
- { "weight": 1, "sprite": 3222 },
- { "weight": 1, "sprite": 3233 },
- { "weight": 1, "sprite": 3240 },
- { "weight": 1, "sprite": 3241 },
- { "weight": 1, "sprite": 3242 },
- { "weight": 1, "sprite": 3243 },
- { "weight": 1, "sprite": 3244 },
- { "weight": 1, "sprite": 3245 },
- { "weight": 1, "sprite": 3246 },
- { "weight": 1, "sprite": 3212 },
- { "weight": 1, "sprite": 3213 },
- { "weight": 1, "sprite": 3214 },
- { "weight": 1, "sprite": 3215 },
- { "weight": 1, "sprite": 3216 },
- { "weight": 1, "sprite": 3217 },
- { "weight": 1, "sprite": 3218 },
- { "weight": 1, "sprite": 3219 },
- { "weight": 1, "sprite": 3220 },
- { "weight": 1, "sprite": 3221 },
- { "weight": 1, "sprite": 3223 },
- { "weight": 1, "sprite": 3224 },
- { "weight": 1, "sprite": 3225 },
- { "weight": 1, "sprite": 3226 },
- { "weight": 1, "sprite": 3227 },
- { "weight": 1, "sprite": 3228 },
- { "weight": 1, "sprite": 3229 },
- { "weight": 1, "sprite": 3230 },
- { "weight": 1, "sprite": 3231 },
- { "weight": 1, "sprite": 3232 },
- { "weight": 1, "sprite": 3234 },
- { "weight": 1, "sprite": 3235 },
- { "weight": 1, "sprite": 3236 },
- { "weight": 1, "sprite": 3237 },
- { "weight": 1, "sprite": 3238 },
- { "weight": 1, "sprite": 3239 }
- ],
- "bg": 3145,
- "rotates": false
- },
- {
- "id": "mon_zombie_child",
- "fg": [
- { "weight": 1, "sprite": 3247 },
- { "weight": 1, "sprite": 3248 },
- { "weight": 1, "sprite": 3249 },
- { "weight": 1, "sprite": 3258 },
- { "weight": 1, "sprite": 3259 },
{ "weight": 1, "sprite": 3260 },
- { "weight": 1, "sprite": 3261 },
- { "weight": 1, "sprite": 3262 },
- { "weight": 1, "sprite": 3263 },
+ { "weight": 1, "sprite": 3271 },
+ { "weight": 1, "sprite": 3278 },
+ { "weight": 1, "sprite": 3279 },
+ { "weight": 1, "sprite": 3280 },
+ { "weight": 1, "sprite": 3281 },
+ { "weight": 1, "sprite": 3282 },
+ { "weight": 1, "sprite": 3283 },
+ { "weight": 1, "sprite": 3284 },
{ "weight": 1, "sprite": 3250 },
{ "weight": 1, "sprite": 3251 },
{ "weight": 1, "sprite": 3252 },
@@ -3418,288 +3411,330 @@
{ "weight": 1, "sprite": 3254 },
{ "weight": 1, "sprite": 3255 },
{ "weight": 1, "sprite": 3256 },
- { "weight": 1, "sprite": 3257 }
- ],
- "bg": 3145,
- "rotates": false
- },
- {
- "id": "mon_zombie_fat",
- "fg": [
+ { "weight": 1, "sprite": 3257 },
+ { "weight": 1, "sprite": 3258 },
+ { "weight": 1, "sprite": 3259 },
+ { "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": 3274 },
- { "weight": 1, "sprite": 3275 },
- { "weight": 1, "sprite": 3276 },
- { "weight": 1, "sprite": 3277 },
- { "weight": 1, "sprite": 3278 },
- { "weight": 1, "sprite": 3279 },
{ "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": 3273 },
+ { "weight": 1, "sprite": 3274 },
+ { "weight": 1, "sprite": 3275 },
+ { "weight": 1, "sprite": 3276 },
+ { "weight": 1, "sprite": 3277 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
- "id": "mon_zombie_grabber",
+ "id": "mon_zombie_child",
"fg": [
- { "weight": 1, "sprite": 3280 },
- { "weight": 1, "sprite": 3281 },
- { "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": 3296 },
+ { "weight": 1, "sprite": 3297 },
+ { "weight": 1, "sprite": 3298 },
+ { "weight": 1, "sprite": 3299 },
+ { "weight": 1, "sprite": 3300 },
+ { "weight": 1, "sprite": 3301 },
+ { "weight": 1, "sprite": 3288 },
+ { "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 }
+ ],
+ "bg": 3156,
+ "rotates": false
+ },
+ {
+ "id": "mon_zombie_fat",
+ "fg": [
+ { "weight": 1, "sprite": 3302 },
+ { "weight": 1, "sprite": 3303 },
+ { "weight": 1, "sprite": 3304 },
+ { "weight": 1, "sprite": 3312 },
+ { "weight": 1, "sprite": 3313 },
+ { "weight": 1, "sprite": 3314 },
+ { "weight": 1, "sprite": 3315 },
+ { "weight": 1, "sprite": 3316 },
+ { "weight": 1, "sprite": 3317 },
+ { "weight": 1, "sprite": 3305 },
+ { "weight": 1, "sprite": 3306 },
+ { "weight": 1, "sprite": 3307 },
+ { "weight": 1, "sprite": 3308 },
+ { "weight": 1, "sprite": 3309 },
+ { "weight": 1, "sprite": 3310 },
+ { "weight": 1, "sprite": 3311 }
],
- "bg": 3145,
+ "bg": 3156,
+ "rotates": false
+ },
+ {
+ "id": "mon_zombie_grabber",
+ "fg": [
+ { "weight": 1, "sprite": 3318 },
+ { "weight": 1, "sprite": 3319 },
+ { "weight": 1, "sprite": 3320 },
+ { "weight": 1, "sprite": 3321 },
+ { "weight": 1, "sprite": 3322 },
+ { "weight": 1, "sprite": 3323 },
+ { "weight": 1, "sprite": 3324 },
+ { "weight": 1, "sprite": 3325 },
+ { "weight": 1, "sprite": 3326 }
+ ],
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_labsecurity",
"fg": [
- { "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": 3327 },
+ { "weight": 1, "sprite": 3328 },
+ { "weight": 1, "sprite": 3329 },
+ { "weight": 1, "sprite": 3330 },
+ { "weight": 1, "sprite": 3331 },
+ { "weight": 1, "sprite": 3332 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_prisoner",
"fg": [
- { "weight": 1, "sprite": 3295 },
- { "weight": 1, "sprite": 3296 },
- { "weight": 1, "sprite": 3297 },
- { "weight": 1, "sprite": 3298 },
- { "weight": 1, "sprite": 3299 },
- { "weight": 1, "sprite": 3300 }
+ { "weight": 1, "sprite": 3333 },
+ { "weight": 1, "sprite": 3334 },
+ { "weight": 1, "sprite": 3335 },
+ { "weight": 1, "sprite": 3336 },
+ { "weight": 1, "sprite": 3337 },
+ { "weight": 1, "sprite": 3338 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_runner",
"fg": [
- { "weight": 1, "sprite": 3301 },
- { "weight": 1, "sprite": 3302 },
- { "weight": 1, "sprite": 3303 },
- { "weight": 1, "sprite": 3304 },
- { "weight": 1, "sprite": 3305 }
+ { "weight": 1, "sprite": 3339 },
+ { "weight": 1, "sprite": 3340 },
+ { "weight": 1, "sprite": 3341 },
+ { "weight": 1, "sprite": 3342 },
+ { "weight": 1, "sprite": 3343 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_scientist",
"fg": [
- { "weight": 1, "sprite": 3306 },
- { "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": 3316 },
- { "weight": 1, "sprite": 3307 },
- { "weight": 1, "sprite": 3308 }
+ { "weight": 1, "sprite": 3344 },
+ { "weight": 1, "sprite": 3347 },
+ { "weight": 1, "sprite": 3348 },
+ { "weight": 1, "sprite": 3349 },
+ { "weight": 1, "sprite": 3350 },
+ { "weight": 1, "sprite": 3351 },
+ { "weight": 1, "sprite": 3352 },
+ { "weight": 1, "sprite": 3353 },
+ { "weight": 1, "sprite": 3354 },
+ { "weight": 1, "sprite": 3345 },
+ { "weight": 1, "sprite": 3346 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_screecher",
"fg": [
- { "weight": 1, "sprite": 3317 },
- { "weight": 1, "sprite": 3318 },
- { "weight": 1, "sprite": 3319 },
- { "weight": 1, "sprite": 3320 }
+ { "weight": 1, "sprite": 3355 },
+ { "weight": 1, "sprite": 3356 },
+ { "weight": 1, "sprite": 3357 },
+ { "weight": 1, "sprite": 3358 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_shrieker",
"fg": [
- { "weight": 1, "sprite": 3321 },
- { "weight": 1, "sprite": 3322 },
- { "weight": 1, "sprite": 3323 },
- { "weight": 1, "sprite": 3324 }
+ { "weight": 1, "sprite": 3359 },
+ { "weight": 1, "sprite": 3360 },
+ { "weight": 1, "sprite": 3361 },
+ { "weight": 1, "sprite": 3362 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_survivor",
- "fg": [ { "weight": 1, "sprite": 3325 }, { "weight": 1, "sprite": 3326 } ],
- "bg": 3145,
+ "fg": [ { "weight": 1, "sprite": 3363 }, { "weight": 1, "sprite": 3364 } ],
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_survivor_elite",
- "fg": [ { "weight": 1, "sprite": 3327 }, { "weight": 1, "sprite": 3328 }, { "weight": 1, "sprite": 3329 } ],
- "bg": 3145,
+ "fg": [ { "weight": 1, "sprite": 3365 }, { "weight": 1, "sprite": 3366 }, { "weight": 1, "sprite": 3367 } ],
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_technician",
"fg": [
- { "weight": 1, "sprite": 3330 },
- { "weight": 1, "sprite": 3331 },
- { "weight": 1, "sprite": 3332 },
- { "weight": 1, "sprite": 3333 }
+ { "weight": 1, "sprite": 3368 },
+ { "weight": 1, "sprite": 3369 },
+ { "weight": 1, "sprite": 3370 },
+ { "weight": 1, "sprite": 3371 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
{
"id": "mon_zombie_tough",
"fg": [
- { "weight": 1, "sprite": 3334 },
- { "weight": 1, "sprite": 3335 },
- { "weight": 1, "sprite": 3336 },
- { "weight": 1, "sprite": 3343 },
- { "weight": 1, "sprite": 3344 },
- { "weight": 1, "sprite": 3345 },
- { "weight": 1, "sprite": 3346 },
- { "weight": 1, "sprite": 3347 },
- { "weight": 1, "sprite": 3348 },
- { "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": 3372 },
+ { "weight": 1, "sprite": 3373 },
+ { "weight": 1, "sprite": 3374 },
+ { "weight": 1, "sprite": 3381 },
+ { "weight": 1, "sprite": 3382 },
+ { "weight": 1, "sprite": 3383 },
+ { "weight": 1, "sprite": 3384 },
+ { "weight": 1, "sprite": 3385 },
+ { "weight": 1, "sprite": 3386 },
+ { "weight": 1, "sprite": 3375 },
+ { "weight": 1, "sprite": 3376 },
+ { "weight": 1, "sprite": 3377 },
+ { "weight": 1, "sprite": 3378 },
+ { "weight": 1, "sprite": 3379 },
+ { "weight": 1, "sprite": 3380 }
],
- "bg": 3145,
+ "bg": 3156,
"rotates": false
},
- { "id": "f_aut_gas_console", "fg": 3373 },
- { "id": "f_aut_gas_console_o", "fg": 3374 },
- { "id": "t_atm", "fg": 3351, "bg": 3615, "rotates": false },
- { "id": [ "t_backboard", "t_backboard_in" ], "fg": 3352, "bg": 3609, "rotates": false },
- { "id": "t_barndoor", "fg": 3353, "bg": 3761, "rotates": false },
- { "id": "t_barndoor_season_autumn", "fg": 3353, "bg": 3765 },
- { "id": "t_barndoor_season_summer", "fg": 3353, "bg": 3769 },
- { "id": "t_barndoor_season_winter", "fg": 3353, "bg": 3686 },
- { "id": "t_bars", "fg": 3354, "bg": 3615, "rotates": false },
- { "id": "t_brick_wall_halfway", "fg": 3355, "bg": 3777 },
- { "id": "t_bridge", "fg": 3356, "rotates": false },
- { "id": "t_card_military", "fg": 3357, "bg": 3615, "rotates": false },
- { "id": "t_card_reader_broken", "fg": 3358, "bg": 3615, "rotates": false },
- { "id": "t_card_science", "fg": 3357, "bg": 3615, "rotates": false },
- { "id": "t_carpet_green", "fg": 3359, "rotates": false },
- { "id": "t_carpet_purple", "fg": 3360, "rotates": false },
- { "id": "t_carpet_red", "fg": 3361, "rotates": false },
- { "id": "t_carpet_yellow", "fg": 3362, "rotates": false },
- { "id": "t_chainfence_posts", "fg": 3369, "bg": 3761, "rotates": false },
+ { "id": "f_aut_gas_console", "fg": 3411 },
+ { "id": "f_aut_gas_console_o", "fg": 3412 },
+ { "id": "t_atm", "fg": 3389, "bg": 3652, "rotates": false },
+ { "id": [ "t_backboard", "t_backboard_in" ], "fg": 3390, "bg": 3646, "rotates": false },
+ { "id": "t_barndoor", "fg": 3391, "bg": 3798, "rotates": false },
+ { "id": "t_barndoor_season_autumn", "fg": 3391, "bg": 3802 },
+ { "id": "t_barndoor_season_summer", "fg": 3391, "bg": 3806 },
+ { "id": "t_barndoor_season_winter", "fg": 3391, "bg": 3723 },
+ { "id": "t_bars", "fg": 3392, "bg": 3652, "rotates": false },
+ { "id": "t_brick_wall_halfway", "fg": 3393, "bg": 3814 },
+ { "id": "t_bridge", "fg": 3394, "rotates": false },
+ { "id": "t_card_military", "fg": 3395, "bg": 3652, "rotates": false },
+ { "id": "t_card_reader_broken", "fg": 3396, "bg": 3652, "rotates": false },
+ { "id": "t_card_science", "fg": 3395, "bg": 3652, "rotates": false },
+ { "id": "t_carpet_green", "fg": 3397, "rotates": false },
+ { "id": "t_carpet_purple", "fg": 3398, "rotates": false },
+ { "id": "t_carpet_red", "fg": 3399, "rotates": false },
+ { "id": "t_carpet_yellow", "fg": 3400, "rotates": false },
+ { "id": "t_chainfence_posts", "fg": 3407, "bg": 3798, "rotates": false },
{
"id": [ "t_chainfence", "t_chainfence_h" ],
- "fg": 3363,
- "bg": 3609,
+ "fg": 3401,
+ "bg": 3646,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3364, "bg": 3609 },
- { "id": "edge", "fg": 3365, "bg": 3609 },
- { "id": "t_connection", "fg": 3367, "bg": 3609 },
- { "id": "center", "fg": 3363, "bg": 3609 },
- { "id": "unconnected", "fg": 3368, "bg": 3609 },
- { "id": "end_piece", "fg": 3366, "bg": 3609 }
+ { "id": "corner", "fg": 3402, "bg": 3646 },
+ { "id": "edge", "fg": 3403, "bg": 3646 },
+ { "id": "t_connection", "fg": 3405, "bg": 3646 },
+ { "id": "center", "fg": 3401, "bg": 3646 },
+ { "id": "unconnected", "fg": 3406, "bg": 3646 },
+ { "id": "end_piece", "fg": 3404, "bg": 3646 }
]
},
{
"id": "t_chainfence_v",
- "fg": 3363,
- "bg": 3609,
+ "fg": 3401,
+ "bg": 3646,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3364, "bg": 3609 },
- { "id": "edge", "fg": 3365, "bg": 3609 },
- { "id": "t_connection", "fg": 3367, "bg": 3609 },
- { "id": "center", "fg": 3363, "bg": 3609 },
- { "id": "unconnected", "fg": 3368, "bg": 3609 },
- { "id": "end_piece", "fg": 3366, "bg": 3609 }
+ { "id": "corner", "fg": 3402, "bg": 3646 },
+ { "id": "edge", "fg": 3403, "bg": 3646 },
+ { "id": "t_connection", "fg": 3405, "bg": 3646 },
+ { "id": "center", "fg": 3401, "bg": 3646 },
+ { "id": "unconnected", "fg": 3406, "bg": 3646 },
+ { "id": "end_piece", "fg": 3404, "bg": 3646 }
]
},
- { "id": "t_chaingate_c", "fg": 3370, "bg": 3609, "rotates": false },
- { "id": "t_chaingate_l", "fg": 3370, "bg": 3609, "rotates": false },
- { "id": "t_chaingate_o", "fg": 3371, "bg": 3609, "rotates": false },
- { "id": [ "t_claymound", "t_clay" ], "fg": 3618, "bg": 3761 },
- { "id": [ "t_claymound_season_autumn", "t_clay_season_autumn" ], "fg": 3618, "bg": 3765 },
- { "id": [ "t_claymound_season_summer", "t_clay_season_summer" ], "fg": 3618, "bg": 3769 },
- { "id": "t_column", "fg": 3372, "rotates": false },
- { "id": "t_concrete_floor", "fg": 3615, "rotates": false },
- { "id": "t_console", "fg": 3373, "rotates": false },
- { "id": [ "t_console_broken", "t_sliding_concrete_wall_control" ], "fg": 3374, "rotates": false },
+ { "id": "t_chaingate_c", "fg": 3408, "bg": 3646, "rotates": false },
+ { "id": "t_chaingate_l", "fg": 3408, "bg": 3646, "rotates": false },
+ { "id": "t_chaingate_o", "fg": 3409, "bg": 3646, "rotates": false },
+ { "id": [ "t_claymound", "t_clay" ], "fg": 3655, "bg": 3798 },
+ { "id": [ "t_claymound_season_autumn", "t_clay_season_autumn" ], "fg": 3655, "bg": 3802 },
+ { "id": [ "t_claymound_season_summer", "t_clay_season_summer" ], "fg": 3655, "bg": 3806 },
+ { "id": "t_column", "fg": 3410, "rotates": false },
+ { "id": "t_concrete_floor", "fg": 3652, "rotates": false },
+ { "id": "t_console", "fg": 3411, "rotates": false },
+ { "id": [ "t_console_broken", "t_sliding_concrete_wall_control" ], "fg": 3412, "rotates": false },
{
"id": "t_conveyor",
- "fg": 3375,
- "bg": 3615,
+ "fg": 3413,
+ "bg": 3652,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "edge", "fg": 3375 },
- { "id": "end_piece", "fg": 3375 },
- { "id": "corner", "fg": 3376 },
- { "id": "t_connection", "fg": 3377 }
+ { "id": "edge", "fg": 3413 },
+ { "id": "end_piece", "fg": 3413 },
+ { "id": "corner", "fg": 3414 },
+ { "id": "t_connection", "fg": 3415 }
]
},
- { "id": "t_covered_well", "fg": 3378, "bg": 3615, "rotates": false },
- { "id": "t_current_trans", "fg": 3379, "bg": 3615, "rotates": false },
- { "id": "t_curtains", "fg": 3380, "rotates": false },
+ { "id": "t_covered_well", "fg": 3416, "bg": 3652, "rotates": false },
+ { "id": "t_current_trans", "fg": 3417, "bg": 3652, "rotates": false },
+ { "id": "t_curtains", "fg": 3418, "rotates": false },
{
"id": "t_cvdbody",
- "fg": 3381,
+ "fg": 3419,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3382, "bg": 3609 },
- { "id": "t_connection", "fg": 3384, "bg": 3609 },
- { "id": "end_piece", "fg": 3383, "bg": 3609 },
- { "id": "unconnected", "fg": 3381 },
- { "id": "edge", "fg": 3381 },
- { "id": "center", "fg": 3381 }
+ { "id": "corner", "fg": 3420, "bg": 3646 },
+ { "id": "t_connection", "fg": 3422, "bg": 3646 },
+ { "id": "end_piece", "fg": 3421, "bg": 3646 },
+ { "id": "unconnected", "fg": 3419 },
+ { "id": "edge", "fg": 3419 },
+ { "id": "center", "fg": 3419 }
]
},
- { "id": "t_cvdmachine", "fg": 3385, "bg": 3609 },
- { "id": "t_diesel_pump", "fg": 3386, "bg": 3609 },
- { "id": "t_diesel_pump_smashed", "fg": 3387, "bg": 3609, "rotates": false },
- { "id": [ "t_dirtmound", "t_dirtmoundfloor" ], "fg": 3622, "bg": 3350, "rotates": false },
- { "id": "t_door_b_peep", "fg": 4734, "rotates": false },
+ { "id": "t_cvdmachine", "fg": 3423, "bg": 3646 },
+ { "id": "t_diesel_pump", "fg": 3424, "bg": 3646 },
+ { "id": "t_diesel_pump_smashed", "fg": 3425, "bg": 3646, "rotates": false },
+ { "id": [ "t_dirtmound", "t_dirtmoundfloor" ], "fg": 3659, "bg": 3388, "rotates": false },
+ { "id": "t_door_b_peep", "fg": 4771, "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": 4736,
+ "fg": 4773,
"rotates": false
},
- { "id": "t_door_bar_c", "fg": 3388, "bg": 3615, "rotates": false },
- { "id": "t_door_bar_locked", "fg": 3388, "bg": 3615, "rotates": false },
- { "id": "t_door_bar_o", "fg": 3389, "bg": 3615, "rotates": false },
- { "id": "t_door_boarded", "fg": 3390, "rotates": false },
- { "id": "t_door_boarded_damaged", "fg": 3391, "rotates": false },
- { "id": "t_door_boarded_damaged_peep", "fg": 3392, "rotates": false },
- { "id": "t_door_boarded_peep", "fg": 3393, "rotates": false },
- { "id": "t_door_c_peep", "fg": 4733, "rotates": false },
+ { "id": "t_door_bar_c", "fg": 3426, "bg": 3652, "rotates": false },
+ { "id": "t_door_bar_locked", "fg": 3426, "bg": 3652, "rotates": false },
+ { "id": "t_door_bar_o", "fg": 3427, "bg": 3652, "rotates": false },
+ { "id": "t_door_boarded", "fg": 3428, "rotates": false },
+ { "id": "t_door_boarded_damaged", "fg": 3429, "rotates": false },
+ { "id": "t_door_boarded_damaged_peep", "fg": 3430, "rotates": false },
+ { "id": "t_door_boarded_peep", "fg": 3431, "rotates": false },
+ { "id": "t_door_c_peep", "fg": 4770, "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": 4735,
+ "fg": 4772,
"rotates": false
},
- { "id": "t_door_curtain_c", "fg": 3394, "rotates": false },
- { "id": "t_door_curtain_o", "fg": 3395, "rotates": false },
- { "id": "t_door_frame", "fg": 3396, "bg": 3610, "rotates": false },
+ { "id": "t_door_curtain_c", "fg": 3432, "rotates": false },
+ { "id": "t_door_curtain_o", "fg": 3433, "rotates": false },
+ { "id": "t_door_frame", "fg": 3434, "bg": 3647, "rotates": false },
{
"id": [
"t_door_glass_c",
@@ -3711,78 +3746,78 @@
"t_door_glass_white_c",
"t_door_glass_gray_c"
],
- "fg": 3397,
+ "fg": 3435,
"rotates": false
},
- { "id": "t_door_glass_gray_o", "fg": 3398, "bg": 3445, "rotates": false },
- { "id": "t_door_glass_green_o", "fg": 3398, "bg": 3359, "rotates": false },
- { "id": [ "t_door_glass_lab_o", "t_door_glass_frosted_lab_o" ], "fg": 3398, "bg": 3615, "rotates": false },
- { "id": [ "t_door_glass_o", "t_door_glass_frosted_o" ], "fg": 3398, "bg": 3610, "rotates": false },
- { "id": "t_door_glass_red_o", "fg": 3398, "bg": 3361, "rotates": false },
- { "id": "t_door_glass_white_o", "fg": 3398, "bg": 3446, "rotates": false },
- { "id": "t_door_gray_frame", "fg": 3396, "bg": 3445, "rotates": false },
- { "id": "t_door_gray_o", "fg": 3405, "bg": 3445, "rotates": false },
- { "id": "t_door_green_frame", "fg": 3396, "bg": 3359, "rotates": false },
- { "id": "t_door_green_o", "fg": 3405, "bg": 3359, "rotates": false },
- { "id": "t_door_lab_frame", "fg": 3396, "bg": 3615, "rotates": false },
- { "id": "t_door_lab_o", "fg": 3405, "bg": 3615, "rotates": false },
- { "id": "t_door_locked", "fg": 4735, "rotates": false },
- { "id": "t_door_locked_alarm", "fg": 4735, "rotates": false },
- { "id": "t_door_locked_interior", "fg": 4735, "rotates": false },
- { "id": "t_door_locked_peep", "fg": 4733 },
- { "id": "t_door_makeshift_c", "fg": 3399, "rotates": false },
- { "id": "t_door_makeshift_o", "fg": 3400, "bg": 3610, "rotates": false },
- { "id": "t_door_metal_c_peep", "fg": 3402, "rotates": false },
- { "id": [ "t_door_metal_c", "t_door_metal_lab_c" ], "fg": 3401, "rotates": true },
- { "id": "t_door_metal_locked", "fg": 3401, "rotates": false },
- { "id": "t_door_metal_o_peep", "fg": 3403, "bg": 3615, "rotates": false },
- { "id": [ "t_door_metal_o", "t_door_metal_lab_o" ], "fg": 3403, "bg": 3615, "rotates": false },
- { "id": "t_door_metal_pickable", "fg": 3404 },
- { "id": "t_door_o", "fg": 3405, "bg": 3610, "rotates": false },
- { "id": "t_door_o_peep", "fg": 3405, "bg": 3610 },
- { "id": "t_door_red_frame", "fg": 3396, "bg": 3361, "rotates": false },
- { "id": "t_door_red_o", "fg": 3405, "bg": 3361, "rotates": false },
- { "id": "t_door_white_frame", "fg": 3396, "bg": 3446, "rotates": false },
- { "id": "t_door_white_o", "fg": 3405, "bg": 3446, "rotates": false },
- { "id": "t_elevator", "fg": 3406, "rotates": false },
- { "id": "t_elevator_control", "fg": 3373, "rotates": false },
- { "id": "t_elevator_control_off", "fg": 3374, "rotates": false },
- { "id": "t_emergency_light", "bg": 3615, "rotates": false },
- { "id": "t_emergency_light_flicker", "bg": 3615, "rotates": false },
- { "id": "t_fault", "fg": 3407, "rotates": false },
- { "id": "t_fence_barbed", "fg": 3410, "bg": 3761, "rotates": false },
- { "id": "t_fence_barbed_season_autumn", "fg": 3410, "bg": 3765 },
- { "id": "t_fence_barbed_season_summer", "fg": 3410, "bg": 3769 },
- { "id": "t_fence_barbed_season_winter", "fg": 3410, "bg": 3686 },
- { "id": "t_fence_post", "fg": 3411, "bg": 3761, "rotates": false },
- { "id": "t_fence_post_season_autumn", "fg": 3411, "bg": 3765 },
- { "id": "t_fence_post_season_summer", "fg": 3411, "bg": 3769 },
- { "id": "t_fence_post_season_winter", "fg": 3411, "bg": 3686 },
- { "id": [ "t_fence_season_autumn" ], "fg": 3412, "bg": 3765 },
- { "id": [ "t_fence_season_summer", "t_fence_h_season_summer" ], "fg": 3412, "bg": 3769 },
- { "id": [ "t_fence_season_winter", "t_fence_h_season_winter" ], "fg": 3412, "bg": 3686 },
- { "id": [ "t_fence", "t_fence_h" ], "fg": 3412, "bg": 3761, "rotates": true },
- { "id": "t_fence_v", "fg": 3412, "bg": 3761 },
- { "id": "t_fence_v_season_autumn", "fg": 3412, "bg": 3765 },
- { "id": "t_fence_v_season_summer", "fg": 3412, "bg": 3769 },
- { "id": "t_fence_v_season_winter", "fg": 3412, "bg": 3686 },
- { "id": "t_fence_wire", "fg": 3413, "bg": 3761, "rotates": false },
- { "id": "t_fence_wire_season_autumn", "fg": 3413, "bg": 3765 },
- { "id": "t_fence_wire_season_summer", "fg": 3413, "bg": 3769 },
- { "id": "t_fence_wire_season_winter", "fg": 3413, "bg": 3686 },
- { "id": "t_fencegate_c", "fg": 3408, "bg": 3761, "rotates": false },
- { "id": "t_fencegate_c_season_autumn", "fg": 3408, "bg": 3765 },
- { "id": "t_fencegate_c_season_summer", "fg": 3408, "bg": 3769 },
- { "id": "t_fencegate_c_season_winter", "fg": 3408, "bg": 3686 },
- { "id": "t_fencegate_o", "fg": 3409, "bg": 3761, "rotates": false },
- { "id": "t_fencegate_o_season_autumn", "fg": 3409, "bg": 3765 },
- { "id": "t_fencegate_o_season_summer", "fg": 3409, "bg": 3769 },
- { "id": "t_fencegate_o_season_winter", "fg": 3409, "bg": 3686 },
- { "id": "t_flat_roof", "bg": 3611, "rotates": false },
- { "id": "t_floor_blue", "fg": 3623, "rotates": false },
- { "id": "t_floor_green", "fg": 3624, "rotates": false },
- { "id": "t_floor_olight", "fg": 3625, "rotates": false },
- { "id": "t_floor_red", "fg": 3626, "rotates": false },
+ { "id": "t_door_glass_gray_o", "fg": 3436, "bg": 3483, "rotates": false },
+ { "id": "t_door_glass_green_o", "fg": 3436, "bg": 3397, "rotates": false },
+ { "id": [ "t_door_glass_lab_o", "t_door_glass_frosted_lab_o" ], "fg": 3436, "bg": 3652, "rotates": false },
+ { "id": [ "t_door_glass_o", "t_door_glass_frosted_o" ], "fg": 3436, "bg": 3647, "rotates": false },
+ { "id": "t_door_glass_red_o", "fg": 3436, "bg": 3399, "rotates": false },
+ { "id": "t_door_glass_white_o", "fg": 3436, "bg": 3484, "rotates": false },
+ { "id": "t_door_gray_frame", "fg": 3434, "bg": 3483, "rotates": false },
+ { "id": "t_door_gray_o", "fg": 3443, "bg": 3483, "rotates": false },
+ { "id": "t_door_green_frame", "fg": 3434, "bg": 3397, "rotates": false },
+ { "id": "t_door_green_o", "fg": 3443, "bg": 3397, "rotates": false },
+ { "id": "t_door_lab_frame", "fg": 3434, "bg": 3652, "rotates": false },
+ { "id": "t_door_lab_o", "fg": 3443, "bg": 3652, "rotates": false },
+ { "id": "t_door_locked", "fg": 4772, "rotates": false },
+ { "id": "t_door_locked_alarm", "fg": 4772, "rotates": false },
+ { "id": "t_door_locked_interior", "fg": 4772, "rotates": false },
+ { "id": "t_door_locked_peep", "fg": 4770 },
+ { "id": "t_door_makeshift_c", "fg": 3437, "rotates": false },
+ { "id": "t_door_makeshift_o", "fg": 3438, "bg": 3647, "rotates": false },
+ { "id": "t_door_metal_c_peep", "fg": 3440, "rotates": false },
+ { "id": [ "t_door_metal_c", "t_door_metal_lab_c" ], "fg": 3439, "rotates": true },
+ { "id": "t_door_metal_locked", "fg": 3439, "rotates": false },
+ { "id": "t_door_metal_o_peep", "fg": 3441, "bg": 3652, "rotates": false },
+ { "id": [ "t_door_metal_o", "t_door_metal_lab_o" ], "fg": 3441, "bg": 3652, "rotates": false },
+ { "id": "t_door_metal_pickable", "fg": 3442 },
+ { "id": "t_door_o", "fg": 3443, "bg": 3647, "rotates": false },
+ { "id": "t_door_o_peep", "fg": 3443, "bg": 3647 },
+ { "id": "t_door_red_frame", "fg": 3434, "bg": 3399, "rotates": false },
+ { "id": "t_door_red_o", "fg": 3443, "bg": 3399, "rotates": false },
+ { "id": "t_door_white_frame", "fg": 3434, "bg": 3484, "rotates": false },
+ { "id": "t_door_white_o", "fg": 3443, "bg": 3484, "rotates": false },
+ { "id": "t_elevator", "fg": 3444, "rotates": false },
+ { "id": "t_elevator_control", "fg": 3411, "rotates": false },
+ { "id": "t_elevator_control_off", "fg": 3412, "rotates": false },
+ { "id": "t_emergency_light", "bg": 3652, "rotates": false },
+ { "id": "t_emergency_light_flicker", "bg": 3652, "rotates": false },
+ { "id": "t_fault", "fg": 3445, "rotates": false },
+ { "id": "t_fence_barbed", "fg": 3448, "bg": 3798, "rotates": false },
+ { "id": "t_fence_barbed_season_autumn", "fg": 3448, "bg": 3802 },
+ { "id": "t_fence_barbed_season_summer", "fg": 3448, "bg": 3806 },
+ { "id": "t_fence_barbed_season_winter", "fg": 3448, "bg": 3723 },
+ { "id": "t_fence_post", "fg": 3449, "bg": 3798, "rotates": false },
+ { "id": "t_fence_post_season_autumn", "fg": 3449, "bg": 3802 },
+ { "id": "t_fence_post_season_summer", "fg": 3449, "bg": 3806 },
+ { "id": "t_fence_post_season_winter", "fg": 3449, "bg": 3723 },
+ { "id": [ "t_fence_season_autumn" ], "fg": 3450, "bg": 3802 },
+ { "id": [ "t_fence_season_summer", "t_fence_h_season_summer" ], "fg": 3450, "bg": 3806 },
+ { "id": [ "t_fence_season_winter", "t_fence_h_season_winter" ], "fg": 3450, "bg": 3723 },
+ { "id": [ "t_fence", "t_fence_h" ], "fg": 3450, "bg": 3798, "rotates": true },
+ { "id": "t_fence_v", "fg": 3450, "bg": 3798 },
+ { "id": "t_fence_v_season_autumn", "fg": 3450, "bg": 3802 },
+ { "id": "t_fence_v_season_summer", "fg": 3450, "bg": 3806 },
+ { "id": "t_fence_v_season_winter", "fg": 3450, "bg": 3723 },
+ { "id": "t_fence_wire", "fg": 3451, "bg": 3798, "rotates": false },
+ { "id": "t_fence_wire_season_autumn", "fg": 3451, "bg": 3802 },
+ { "id": "t_fence_wire_season_summer", "fg": 3451, "bg": 3806 },
+ { "id": "t_fence_wire_season_winter", "fg": 3451, "bg": 3723 },
+ { "id": "t_fencegate_c", "fg": 3446, "bg": 3798, "rotates": false },
+ { "id": "t_fencegate_c_season_autumn", "fg": 3446, "bg": 3802 },
+ { "id": "t_fencegate_c_season_summer", "fg": 3446, "bg": 3806 },
+ { "id": "t_fencegate_c_season_winter", "fg": 3446, "bg": 3723 },
+ { "id": "t_fencegate_o", "fg": 3447, "bg": 3798, "rotates": false },
+ { "id": "t_fencegate_o_season_autumn", "fg": 3447, "bg": 3802 },
+ { "id": "t_fencegate_o_season_summer", "fg": 3447, "bg": 3806 },
+ { "id": "t_fencegate_o_season_winter", "fg": 3447, "bg": 3723 },
+ { "id": "t_flat_roof", "bg": 3648, "rotates": false },
+ { "id": "t_floor_blue", "fg": 3660, "rotates": false },
+ { "id": "t_floor_green", "fg": 3661, "rotates": false },
+ { "id": "t_floor_olight", "fg": 3662, "rotates": false },
+ { "id": "t_floor_red", "fg": 3663, "rotates": false },
{
"id": [
"t_floor",
@@ -3791,2523 +3826,2522 @@
"t_secretdoor_concrete_wall_o",
"t_secretdoor_bookcase_o"
],
- "bg": 3610,
+ "bg": 3647,
"rotates": false
},
- { "id": "t_floor_wax", "fg": 3414 },
- { "id": "t_floor_waxed", "fg": 3415, "rotates": false },
- { "id": "t_floor_waxed_y", "fg": 3608, "rotates": false },
- { "id": "t_fungus", "bg": 1344, "rotates": false },
- { "id": "t_fungus_floor_in", "bg": 3612, "rotates": false },
- { "id": "t_fungus_floor_out", "bg": 3613, "rotates": false },
- { "id": "t_fungus_floor_sup", "bg": 3614, "rotates": false },
- { "id": "t_fungus_mound", "fg": 3416, "bg": 1344, "rotates": false },
+ { "id": "t_floor_wax", "fg": 3452 },
+ { "id": "t_floor_waxed", "fg": 3453, "rotates": false },
+ { "id": "t_floor_waxed_y", "fg": 3645, "rotates": false },
+ { "id": "t_fungus", "bg": 1339, "rotates": false },
+ { "id": "t_fungus_floor_in", "bg": 3649, "rotates": false },
+ { "id": "t_fungus_floor_out", "bg": 3650, "rotates": false },
+ { "id": "t_fungus_floor_sup", "bg": 3651, "rotates": false },
+ { "id": "t_fungus_mound", "fg": 3454, "bg": 1339, "rotates": false },
{
"id": "t_fungus_wall",
- "fg": 3417,
- "bg": 3614,
+ "fg": 3455,
+ "bg": 3651,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3418, "bg": 3614 },
- { "id": "corner", "fg": 3419, "bg": 3614 },
- { "id": "edge", "fg": 3420, "bg": 3614 },
- { "id": "t_connection", "fg": 3422, "bg": 3614 },
- { "id": "end_piece", "fg": 3421, "bg": 3614 },
- { "id": "unconnected", "fg": 3417, "bg": 3614 }
+ { "id": "center", "fg": 3456, "bg": 3651 },
+ { "id": "corner", "fg": 3457, "bg": 3651 },
+ { "id": "edge", "fg": 3458, "bg": 3651 },
+ { "id": "t_connection", "fg": 3460, "bg": 3651 },
+ { "id": "end_piece", "fg": 3459, "bg": 3651 },
+ { "id": "unconnected", "fg": 3455, "bg": 3651 }
]
},
{
"id": "t_fungus_wall_transformed",
- "fg": 3459,
- "bg": 3418,
- "multitile": true,
- "additional_tiles": [
- { "id": "corner", "fg": 3475, "bg": 3418 },
- { "id": "edge", "fg": 3476, "bg": 3418 },
- { "id": "t_connection", "fg": 3478, "bg": 3418 },
- { "id": "center", "fg": 3474, "bg": 3418 },
- { "id": "end_piece", "fg": 3477, "bg": 3418 },
- { "id": "unconnected", "fg": 3459, "bg": 3418 }
- ]
- },
- { "id": "t_gas_pump", "fg": 3423, "bg": 3609, "rotates": false },
- { "id": "t_gas_pump_a", "fg": 3423, "bg": 3609 },
- { "id": "t_gas_pump_smashed", "fg": 3424, "bg": 3609, "rotates": false },
- { "id": "t_gas_tank", "fg": 3425, "bg": 3609 },
- { "id": "t_gates_control_brick", "fg": 3628, "rotates": false },
- { "id": "t_gates_control_brick_lab", "fg": 3629, "rotates": false },
- { "id": "t_gates_control_concrete", "fg": 3630, "rotates": false },
- { "id": "t_gates_control_concrete_lab", "fg": 3631, "rotates": false },
- { "id": "t_gates_control_metal", "fg": 3632, "rotates": false },
- { "id": "t_gates_control_metal_lab", "fg": 3633, "rotates": false },
- { "id": "t_gates_mech_control", "fg": 3634, "bg": 3456, "rotates": false },
- { "id": "t_gates_mech_control_lab", "fg": 3635, "bg": 3456, "rotates": false },
+ "fg": 3497,
+ "bg": 3456,
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "corner", "fg": 3513, "bg": 3456 },
+ { "id": "edge", "fg": 3514, "bg": 3456 },
+ { "id": "t_connection", "fg": 3516, "bg": 3456 },
+ { "id": "center", "fg": 3512, "bg": 3456 },
+ { "id": "end_piece", "fg": 3515, "bg": 3456 },
+ { "id": "unconnected", "fg": 3497, "bg": 3456 }
+ ]
+ },
+ { "id": "t_gas_pump", "fg": 3461, "bg": 3646, "rotates": false },
+ { "id": "t_gas_pump_a", "fg": 3461, "bg": 3646 },
+ { "id": "t_gas_pump_smashed", "fg": 3462, "bg": 3646, "rotates": false },
+ { "id": "t_gas_tank", "fg": 3463, "bg": 3646 },
+ { "id": "t_gates_control_brick", "fg": 3665, "rotates": false },
+ { "id": "t_gates_control_brick_lab", "fg": 3666, "rotates": false },
+ { "id": "t_gates_control_concrete", "fg": 3667, "rotates": false },
+ { "id": "t_gates_control_concrete_lab", "fg": 3668, "rotates": false },
+ { "id": "t_gates_control_metal", "fg": 3669, "rotates": false },
+ { "id": "t_gates_control_metal_lab", "fg": 3670, "rotates": false },
+ { "id": "t_gates_mech_control", "fg": 3671, "bg": 3494, "rotates": false },
+ { "id": "t_gates_mech_control_lab", "fg": 3672, "bg": 3494, "rotates": false },
{
"id": "t_generator_broken",
- "fg": 3426,
+ "fg": 3464,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "t_connection", "fg": 3427 } ]
+ "additional_tiles": [ { "id": "t_connection", "fg": 3465 } ]
},
- { "id": "t_grate", "fg": 3406, "rotates": false },
+ { "id": "t_grate", "fg": 3444, "rotates": false },
{
"id": "t_guardrail_bg_dp",
- "fg": 3487,
- "bg": 3615,
+ "fg": 3525,
+ "bg": 3652,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3488, "bg": 3615 },
- { "id": "center", "fg": 3487, "bg": 3615 },
- { "id": "end_piece", "fg": 3490, "bg": 3615 },
- { "id": "t_connection", "fg": 3491, "bg": 3615 },
- { "id": "unconnected", "fg": 3492, "bg": 3615 },
- { "id": "edge", "fg": 3489, "bg": 3615 }
+ { "id": "corner", "fg": 3526, "bg": 3652 },
+ { "id": "center", "fg": 3525, "bg": 3652 },
+ { "id": "end_piece", "fg": 3528, "bg": 3652 },
+ { "id": "t_connection", "fg": 3529, "bg": 3652 },
+ { "id": "unconnected", "fg": 3530, "bg": 3652 },
+ { "id": "edge", "fg": 3527, "bg": 3652 }
]
},
{
"id": "t_hole",
- "fg": 3429,
+ "fg": 3467,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 3429 },
- { "id": "center", "fg": 3430 },
- { "id": "corner", "fg": 3431 },
- { "id": "edge", "fg": 3432 },
- { "id": "end_piece", "fg": 3433 },
- { "id": "t_connection", "fg": 3434 }
+ { "id": "unconnected", "fg": 3467 },
+ { "id": "center", "fg": 3468 },
+ { "id": "corner", "fg": 3469 },
+ { "id": "edge", "fg": 3470 },
+ { "id": "end_piece", "fg": 3471 },
+ { "id": "t_connection", "fg": 3472 }
]
},
- { "id": "t_improvised_shelter", "fg": 3435, "bg": 3761, "rotates": false },
- { "id": "t_improvised_shelter_season_autumn", "fg": 3435, "bg": 3765, "rotates": false },
- { "id": "t_improvised_shelter_season_summer", "fg": 3435, "bg": 3769, "rotates": false },
- { "id": "t_improvised_shelter_season_winter", "fg": 3435, "bg": 3686, "rotates": false },
- { "id": "t_ind_assembler", "fg": 3436, "bg": 3611 },
- { "id": "t_ind_drill", "fg": 3437, "bg": 3349, "rotates": false },
- { "id": "t_ind_furnace", "fg": 3438, "bg": 3609, "rotates": false },
- { "id": "t_ind_lathe", "fg": 3439, "rotates": false },
- { "id": "t_ind_mixer", "fg": 3440, "bg": 3349, "rotates": false },
+ { "id": "t_improvised_shelter", "fg": 3473, "bg": 3798, "rotates": false },
+ { "id": "t_improvised_shelter_season_autumn", "fg": 3473, "bg": 3802, "rotates": false },
+ { "id": "t_improvised_shelter_season_summer", "fg": 3473, "bg": 3806, "rotates": false },
+ { "id": "t_improvised_shelter_season_winter", "fg": 3473, "bg": 3723, "rotates": false },
+ { "id": "t_ind_assembler", "fg": 3474, "bg": 3648 },
+ { "id": "t_ind_drill", "fg": 3475, "bg": 3387, "rotates": false },
+ { "id": "t_ind_furnace", "fg": 3476, "bg": 3646, "rotates": false },
+ { "id": "t_ind_lathe", "fg": 3477, "rotates": false },
+ { "id": "t_ind_mixer", "fg": 3478, "bg": 3387, "rotates": false },
{
"id": "t_ind_pipe",
- "fg": 3530,
- "bg": 3615,
+ "fg": 3568,
+ "bg": 3652,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3531, "bg": 3615 },
- { "id": "corner", "fg": 3532, "bg": 3615 },
- { "id": "edge", "fg": 3533, "bg": 3615 },
- { "id": "t_connection", "fg": 3535, "bg": 3615 },
- { "id": "end_piece", "fg": 3534, "bg": 3615 },
- { "id": "unconnected", "fg": 3530, "bg": 3615 }
- ]
- },
- { "id": "t_ind_press", "fg": 3449 },
- { "id": "t_ladder_down", "fg": 3441, "bg": 3761, "rotates": false },
- { "id": "t_ladder_down_season_autumn", "fg": 3441, "bg": 3765 },
- { "id": "t_ladder_down_season_summer", "fg": 3441, "bg": 3769 },
- { "id": "t_ladder_down_season_winter", "fg": 3441, "bg": 3686 },
- { "id": "t_ladder_up", "fg": 3442, "bg": 3609, "rotates": false },
- { "id": "t_lava", "fg": 3443, "rotates": false },
- { "id": "t_lgtn_arrest", "fg": 3444, "bg": 3615, "rotates": false },
- { "id": "t_linoleum_gray", "fg": 3445, "rotates": false },
- { "id": "t_linoleum_white", "fg": 3446, "rotates": false },
- { "id": "t_little_column", "fg": 3447, "bg": 3609, "rotates": false },
- { "id": "t_low_stairs_begin", "fg": 3553, "rotates": false },
- { "id": "t_low_stairs_end", "fg": 3448, "bg": 3609, "rotates": false },
- { "id": "t_m_frame", "fg": 3466, "bg": 3609, "rotates": false },
- { "id": "t_machinery_electronic", "fg": 3450, "bg": 3615, "rotates": false },
- { "id": "t_machinery_heavy", "fg": 3449, "bg": 3615, "rotates": false },
- { "id": "t_machinery_light", "fg": 3450, "bg": 3615, "rotates": false },
- { "id": "t_machinery_old", "fg": 3451, "bg": 3615, "rotates": false },
- { "id": "t_manhole", "fg": 3452, "bg": 3609, "rotates": false },
- { "id": "t_manhole_cover", "fg": 3453, "bg": 3609, "rotates": false },
- { "id": "t_marloss", "fg": 3454, "bg": 1344, "rotates": false },
- { "id": "t_mdoor_frame", "fg": 3455, "bg": 3610, "rotates": false },
- { "id": "t_mdoor_lab_frame", "fg": 3455, "bg": 3615, "rotates": false },
- { "id": "t_metal_floor", "fg": 3456, "rotates": false },
- { "id": "t_metal_floor_olight", "fg": 3636, "rotates": false },
- { "id": "t_milking_machine", "fg": 3450, "bg": 3615, "rotates": false },
+ { "id": "center", "fg": 3569, "bg": 3652 },
+ { "id": "corner", "fg": 3570, "bg": 3652 },
+ { "id": "edge", "fg": 3571, "bg": 3652 },
+ { "id": "t_connection", "fg": 3573, "bg": 3652 },
+ { "id": "end_piece", "fg": 3572, "bg": 3652 },
+ { "id": "unconnected", "fg": 3568, "bg": 3652 }
+ ]
+ },
+ { "id": "t_ind_press", "fg": 3487 },
+ { "id": "t_ladder_down", "fg": 3479, "bg": 3798, "rotates": false },
+ { "id": "t_ladder_down_season_autumn", "fg": 3479, "bg": 3802 },
+ { "id": "t_ladder_down_season_summer", "fg": 3479, "bg": 3806 },
+ { "id": "t_ladder_down_season_winter", "fg": 3479, "bg": 3723 },
+ { "id": "t_ladder_up", "fg": 3480, "bg": 3646, "rotates": false },
+ { "id": "t_lava", "fg": 3481, "rotates": false },
+ { "id": "t_lgtn_arrest", "fg": 3482, "bg": 3652, "rotates": false },
+ { "id": "t_linoleum_gray", "fg": 3483, "rotates": false },
+ { "id": "t_linoleum_white", "fg": 3484, "rotates": false },
+ { "id": "t_little_column", "fg": 3485, "bg": 3646, "rotates": false },
+ { "id": "t_low_stairs_begin", "fg": 3591, "rotates": false },
+ { "id": "t_low_stairs_end", "fg": 3486, "bg": 3646, "rotates": false },
+ { "id": "t_m_frame", "fg": 3504, "bg": 3646, "rotates": false },
+ { "id": "t_machinery_electronic", "fg": 3488, "bg": 3652, "rotates": false },
+ { "id": "t_machinery_heavy", "fg": 3487, "bg": 3652, "rotates": false },
+ { "id": "t_machinery_light", "fg": 3488, "bg": 3652, "rotates": false },
+ { "id": "t_machinery_old", "fg": 3489, "bg": 3652, "rotates": false },
+ { "id": "t_manhole", "fg": 3490, "bg": 3646, "rotates": false },
+ { "id": "t_manhole_cover", "fg": 3491, "bg": 3646, "rotates": false },
+ { "id": "t_marloss", "fg": 3492, "bg": 1339, "rotates": false },
+ { "id": "t_mdoor_frame", "fg": 3493, "bg": 3647, "rotates": false },
+ { "id": "t_mdoor_lab_frame", "fg": 3493, "bg": 3652, "rotates": false },
+ { "id": "t_metal_floor", "fg": 3494, "rotates": false },
+ { "id": "t_metal_floor_olight", "fg": 3673, "rotates": false },
+ { "id": "t_milking_machine", "fg": 3488, "bg": 3652, "rotates": false },
{
"id": "t_missile",
- "fg": 3457,
- "bg": 3609,
+ "fg": 3495,
+ "bg": 3646,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 3458, "bg": 3609 }, { "id": "center", "fg": 3457 }, { "id": "t_connection", "fg": 3462 } ]
+ "additional_tiles": [ { "id": "corner", "fg": 3496, "bg": 3646 }, { "id": "center", "fg": 3495 }, { "id": "t_connection", "fg": 3500 } ]
},
{
"id": "t_missile_exploded",
- "bg": 3609,
+ "bg": 3646,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3460, "bg": 3609 },
- { "id": "center", "fg": 3459, "bg": 3615 },
- { "id": "t_connection", "fg": 3461 }
+ { "id": "corner", "fg": 3498, "bg": 3646 },
+ { "id": "center", "fg": 3497, "bg": 3652 },
+ { "id": "t_connection", "fg": 3499 }
]
},
{
"id": "t_monkey_bars",
- "fg": 3463,
- "bg": 3849,
+ "fg": 3501,
+ "bg": 3886,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3463, "bg": 3849 },
- { "id": "corner", "fg": 3464, "bg": 3849 },
- { "id": "t_connection", "fg": 3465, "bg": 3849 }
+ { "id": "center", "fg": 3501, "bg": 3886 },
+ { "id": "corner", "fg": 3502, "bg": 3886 },
+ { "id": "t_connection", "fg": 3503, "bg": 3886 }
]
},
{
"id": "t_monkey_bars_season_autumn",
- "fg": 3463,
- "bg": 3765,
+ "fg": 3501,
+ "bg": 3802,
"multitile": true,
"additional_tiles": [
- { "id": "edge", "bg": 3765 },
- { "id": "corner", "fg": 3464, "bg": 3765 },
- { "id": "center", "fg": 3463, "bg": 3765 },
- { "id": "t_connection", "fg": 3465, "bg": 3765 }
+ { "id": "edge", "bg": 3802 },
+ { "id": "corner", "fg": 3502, "bg": 3802 },
+ { "id": "center", "fg": 3501, "bg": 3802 },
+ { "id": "t_connection", "fg": 3503, "bg": 3802 }
]
},
{
"id": "t_monkey_bars_season_summer",
- "fg": 3463,
- "bg": 3769,
+ "fg": 3501,
+ "bg": 3806,
"multitile": true,
"additional_tiles": [
- { "id": "edge", "bg": 3769 },
- { "id": "corner", "fg": 3464, "bg": 3769 },
- { "id": "center", "fg": 3463, "bg": 3769 },
- { "id": "t_connection", "fg": 3465, "bg": 3769 }
+ { "id": "edge", "bg": 3806 },
+ { "id": "corner", "fg": 3502, "bg": 3806 },
+ { "id": "center", "fg": 3501, "bg": 3806 },
+ { "id": "t_connection", "fg": 3503, "bg": 3806 }
]
},
{
"id": "t_monkey_bars_season_winter",
- "fg": 3463,
- "bg": 3686,
- "multitile": true,
- "additional_tiles": [
- { "id": "edge", "bg": 3686 },
- { "id": "corner", "fg": 3464, "bg": 3686 },
- { "id": "center", "fg": 3463, "bg": 3686 },
- { "id": "t_connection", "fg": 3465, "bg": 3686 }
- ]
- },
- { "id": "t_oil_circ_brkr_l", "fg": 3467, "bg": 3615, "rotates": false },
- { "id": "t_oil_circ_brkr_s", "fg": 3468, "bg": 3615, "rotates": false },
- { "id": "t_open_air", "bg": 3616, "rotates": false },
- { "id": "t_open_air_rooved", "bg": 3616 },
- { "id": "t_ov_reb_cage", "fg": 3469, "bg": 3615 },
- { "id": "t_ov_smreb_cage", "fg": 3470, "rotates": false },
- { "id": "t_palisade", "fg": 3471, "bg": 3761 },
- { "id": "t_palisade_gate", "fg": 3472, "bg": 3761 },
- { "id": "t_palisade_gate_o", "fg": 3473, "bg": 3761 },
- { "id": "t_palisade_gate_o_season_autumn", "fg": 3473, "bg": 3765 },
- { "id": "t_palisade_gate_o_season_summer", "fg": 3473, "bg": 3769 },
- { "id": "t_palisade_gate_o_season_winter", "fg": 3473, "bg": 3686 },
- { "id": "t_palisade_gate_season_autumn", "fg": 3472, "bg": 3765 },
- { "id": "t_palisade_gate_season_summer", "fg": 3472, "bg": 3769 },
- { "id": "t_palisade_gate_season_winter", "fg": 3472, "bg": 3686 },
- { "id": "t_palisade_pulley", "fg": 3353, "bg": 3761, "rotates": false },
- { "id": "t_palisade_pulley_season_autumn", "fg": 3353, "bg": 3765 },
- { "id": "t_palisade_pulley_season_summer", "fg": 3353, "bg": 3769 },
- { "id": "t_palisade_pulley_season_winter", "fg": 3353, "bg": 3686 },
- { "id": "t_palisade_season_autumn", "fg": 3473, "bg": 3765 },
- { "id": "t_palisade_season_summer", "fg": 3473, "bg": 3769 },
- { "id": "t_palisade_season_winter", "fg": 3473, "bg": 3686 },
- { "id": "t_pavement", "bg": 3609, "rotates": false },
- { "id": "t_pavement_bg_dp", "bg": 3609 },
- { "id": "t_pavement_y", "fg": 3479, "bg": 3609, "rotates": false },
- { "id": "t_pavement_y_bg_dp", "fg": 3479, "bg": 3609 },
- { "id": "t_pedestal_temple", "fg": 3480, "bg": 3761, "rotates": false },
- { "id": "t_pedestal_wyrm", "fg": 3481, "bg": 3615 },
- { "id": "t_pit", "fg": 3637, "bg": 3761, "rotates": false },
- { "id": "t_pit_corpsed", "fg": 3638, "bg": 3761, "rotates": false },
- { "id": "t_pit_corpsed_season_autumn", "fg": 3638, "bg": 3765 },
- { "id": "t_pit_corpsed_season_summer", "fg": 3638, "bg": 3769 },
- { "id": "t_pit_corpsed_season_winter", "fg": 3638, "bg": 3686 },
- { "id": "t_pit_covered", "fg": 3639, "bg": 3761, "rotates": false },
- { "id": "t_pit_covered_season_autumn", "fg": 3639, "bg": 3765 },
- { "id": "t_pit_covered_season_summer", "fg": 3639, "bg": 3769 },
- { "id": "t_pit_covered_season_winter", "fg": 3640, "bg": 3686 },
- { "id": "t_pit_glass", "fg": 3641, "bg": 3761, "rotates": false },
- { "id": "t_pit_glass_covered", "fg": 3639, "bg": 3761 },
- { "id": "t_pit_glass_covered_season_autumn", "fg": 3639, "bg": 3765 },
- { "id": "t_pit_glass_covered_season_summer", "fg": 3639, "bg": 3769 },
- { "id": "t_pit_glass_covered_season_winter", "fg": 3640, "bg": 3686 },
- { "id": "t_pit_glass_season_autumn", "fg": 3641, "bg": 3765, "rotates": false },
- { "id": "t_pit_glass_season_summer", "fg": 3641, "bg": 3769, "rotates": false },
- { "id": "t_pit_glass_season_winter", "fg": 3641, "bg": 3686, "rotates": false },
- { "id": "t_pit_season_autumn", "fg": 3637, "bg": 3765 },
- { "id": "t_pit_season_summer", "fg": 3637, "bg": 3769 },
- { "id": "t_pit_season_winter", "fg": 3637, "bg": 3686 },
- { "id": "t_pit_shallow", "fg": 3642, "bg": 3761, "rotates": false },
- { "id": "t_pit_shallow_season_autumn", "fg": 3642, "bg": 3765 },
- { "id": "t_pit_shallow_season_summer", "fg": 3642, "bg": 3769 },
- { "id": "t_pit_shallow_season_winter", "fg": 3643, "bg": 3686 },
- { "id": "t_pit_spiked", "fg": 3644, "bg": 3761, "rotates": false },
- { "id": "t_pit_spiked_covered", "fg": 3639, "bg": 3761, "rotates": false },
- { "id": "t_pit_spiked_covered_season_autumn", "fg": 3639, "bg": 3765 },
- { "id": "t_pit_spiked_covered_season_summer", "fg": 3639, "bg": 3769 },
- { "id": "t_pit_spiked_covered_season_winter", "fg": 3640, "bg": 3686 },
- { "id": "t_pit_spiked_season_autumn", "fg": 3644, "bg": 3765 },
- { "id": "t_pit_spiked_season_summer", "fg": 3644, "bg": 3769 },
- { "id": "t_pit_spiked_season_winter", "fg": 3644, "bg": 3686 },
- { "id": "t_plut_generator", "fg": 3482, "bg": 3615 },
- { "id": "t_portcullis", "fg": 3483, "bg": 3611 },
- { "id": "t_potential_trans", "fg": 3484, "bg": 3615, "rotates": false },
- { "id": "t_radio_controls", "fg": 3374, "rotates": false },
+ "fg": 3501,
+ "bg": 3723,
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "edge", "bg": 3723 },
+ { "id": "corner", "fg": 3502, "bg": 3723 },
+ { "id": "center", "fg": 3501, "bg": 3723 },
+ { "id": "t_connection", "fg": 3503, "bg": 3723 }
+ ]
+ },
+ { "id": "t_oil_circ_brkr_l", "fg": 3505, "bg": 3652, "rotates": false },
+ { "id": "t_oil_circ_brkr_s", "fg": 3506, "bg": 3652, "rotates": false },
+ { "id": "t_open_air", "bg": 3653, "rotates": false },
+ { "id": "t_open_air_rooved", "bg": 3653 },
+ { "id": "t_ov_reb_cage", "fg": 3507, "bg": 3652 },
+ { "id": "t_ov_smreb_cage", "fg": 3508, "rotates": false },
+ { "id": "t_palisade", "fg": 3509, "bg": 3798 },
+ { "id": "t_palisade_gate", "fg": 3510, "bg": 3798 },
+ { "id": "t_palisade_gate_o", "fg": 3511, "bg": 3798 },
+ { "id": "t_palisade_gate_o_season_autumn", "fg": 3511, "bg": 3802 },
+ { "id": "t_palisade_gate_o_season_summer", "fg": 3511, "bg": 3806 },
+ { "id": "t_palisade_gate_o_season_winter", "fg": 3511, "bg": 3723 },
+ { "id": "t_palisade_gate_season_autumn", "fg": 3510, "bg": 3802 },
+ { "id": "t_palisade_gate_season_summer", "fg": 3510, "bg": 3806 },
+ { "id": "t_palisade_gate_season_winter", "fg": 3510, "bg": 3723 },
+ { "id": "t_palisade_pulley", "fg": 3391, "bg": 3798, "rotates": false },
+ { "id": "t_palisade_pulley_season_autumn", "fg": 3391, "bg": 3802 },
+ { "id": "t_palisade_pulley_season_summer", "fg": 3391, "bg": 3806 },
+ { "id": "t_palisade_pulley_season_winter", "fg": 3391, "bg": 3723 },
+ { "id": "t_palisade_season_autumn", "fg": 3511, "bg": 3802 },
+ { "id": "t_palisade_season_summer", "fg": 3511, "bg": 3806 },
+ { "id": "t_palisade_season_winter", "fg": 3511, "bg": 3723 },
+ { "id": "t_pavement", "bg": 3646, "rotates": false },
+ { "id": "t_pavement_bg_dp", "bg": 3646 },
+ { "id": "t_pavement_y", "fg": 3517, "bg": 3646, "rotates": false },
+ { "id": "t_pavement_y_bg_dp", "fg": 3517, "bg": 3646 },
+ { "id": "t_pedestal_temple", "fg": 3518, "bg": 3798, "rotates": false },
+ { "id": "t_pedestal_wyrm", "fg": 3519, "bg": 3652 },
+ { "id": "t_pit", "fg": 3674, "bg": 3798, "rotates": false },
+ { "id": "t_pit_corpsed", "fg": 3675, "bg": 3798, "rotates": false },
+ { "id": "t_pit_corpsed_season_autumn", "fg": 3675, "bg": 3802 },
+ { "id": "t_pit_corpsed_season_summer", "fg": 3675, "bg": 3806 },
+ { "id": "t_pit_corpsed_season_winter", "fg": 3675, "bg": 3723 },
+ { "id": "t_pit_covered", "fg": 3676, "bg": 3798, "rotates": false },
+ { "id": "t_pit_covered_season_autumn", "fg": 3676, "bg": 3802 },
+ { "id": "t_pit_covered_season_summer", "fg": 3676, "bg": 3806 },
+ { "id": "t_pit_covered_season_winter", "fg": 3677, "bg": 3723 },
+ { "id": "t_pit_glass", "fg": 3678, "bg": 3798, "rotates": false },
+ { "id": "t_pit_glass_covered", "fg": 3676, "bg": 3798 },
+ { "id": "t_pit_glass_covered_season_autumn", "fg": 3676, "bg": 3802 },
+ { "id": "t_pit_glass_covered_season_summer", "fg": 3676, "bg": 3806 },
+ { "id": "t_pit_glass_covered_season_winter", "fg": 3677, "bg": 3723 },
+ { "id": "t_pit_glass_season_autumn", "fg": 3678, "bg": 3802, "rotates": false },
+ { "id": "t_pit_glass_season_summer", "fg": 3678, "bg": 3806, "rotates": false },
+ { "id": "t_pit_glass_season_winter", "fg": 3678, "bg": 3723, "rotates": false },
+ { "id": "t_pit_season_autumn", "fg": 3674, "bg": 3802 },
+ { "id": "t_pit_season_summer", "fg": 3674, "bg": 3806 },
+ { "id": "t_pit_season_winter", "fg": 3674, "bg": 3723 },
+ { "id": "t_pit_shallow", "fg": 3679, "bg": 3798, "rotates": false },
+ { "id": "t_pit_shallow_season_autumn", "fg": 3679, "bg": 3802 },
+ { "id": "t_pit_shallow_season_summer", "fg": 3679, "bg": 3806 },
+ { "id": "t_pit_shallow_season_winter", "fg": 3680, "bg": 3723 },
+ { "id": "t_pit_spiked", "fg": 3681, "bg": 3798, "rotates": false },
+ { "id": "t_pit_spiked_covered", "fg": 3676, "bg": 3798, "rotates": false },
+ { "id": "t_pit_spiked_covered_season_autumn", "fg": 3676, "bg": 3802 },
+ { "id": "t_pit_spiked_covered_season_summer", "fg": 3676, "bg": 3806 },
+ { "id": "t_pit_spiked_covered_season_winter", "fg": 3677, "bg": 3723 },
+ { "id": "t_pit_spiked_season_autumn", "fg": 3681, "bg": 3802 },
+ { "id": "t_pit_spiked_season_summer", "fg": 3681, "bg": 3806 },
+ { "id": "t_pit_spiked_season_winter", "fg": 3681, "bg": 3723 },
+ { "id": "t_plut_generator", "fg": 3520, "bg": 3652 },
+ { "id": "t_portcullis", "fg": 3521, "bg": 3648 },
+ { "id": "t_potential_trans", "fg": 3522, "bg": 3652, "rotates": false },
+ { "id": "t_radio_controls", "fg": 3412, "rotates": false },
{
"id": "t_radio_tower",
- "fg": 3485,
- "bg": 3609,
+ "fg": 3523,
+ "bg": 3646,
"multitile": true,
- "additional_tiles": [ { "id": "center", "fg": 3486, "bg": 3609 } ]
+ "additional_tiles": [ { "id": "center", "fg": 3524, "bg": 3646 } ]
},
{
"id": [ "t_railing", "t_railing_h" ],
- "fg": 3487,
- "bg": 3615,
+ "fg": 3525,
+ "bg": 3652,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3487, "bg": 3615 },
- { "id": "corner", "fg": 3488, "bg": 3615 },
- { "id": "edge", "fg": 3489, "bg": 3615 },
- { "id": "t_connection", "fg": 3491, "bg": 3615 },
- { "id": "end_piece", "fg": 3490, "bg": 3615 },
- { "id": "unconnected", "fg": 3492, "bg": 3615 }
+ { "id": "center", "fg": 3525, "bg": 3652 },
+ { "id": "corner", "fg": 3526, "bg": 3652 },
+ { "id": "edge", "fg": 3527, "bg": 3652 },
+ { "id": "t_connection", "fg": 3529, "bg": 3652 },
+ { "id": "end_piece", "fg": 3528, "bg": 3652 },
+ { "id": "unconnected", "fg": 3530, "bg": 3652 }
]
},
{
"id": "t_railing_v",
- "fg": 3487,
- "bg": 3615,
+ "fg": 3525,
+ "bg": 3652,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3487, "bg": 3615 },
- { "id": "corner", "fg": 3488, "bg": 3615 },
- { "id": "edge", "fg": 3489, "bg": 3615 },
- { "id": "t_connection", "fg": 3491, "bg": 3615 },
- { "id": "end_piece", "fg": 3490, "bg": 3615 },
- { "id": "unconnected", "fg": 3492, "bg": 3615 }
+ { "id": "center", "fg": 3525, "bg": 3652 },
+ { "id": "corner", "fg": 3526, "bg": 3652 },
+ { "id": "edge", "fg": 3527, "bg": 3652 },
+ { "id": "t_connection", "fg": 3529, "bg": 3652 },
+ { "id": "end_piece", "fg": 3528, "bg": 3652 },
+ { "id": "unconnected", "fg": 3530, "bg": 3652 }
]
},
- { "id": "t_railroad_rubble", "bg": 3599, "rotates": true },
+ { "id": "t_railroad_rubble", "bg": 3636, "rotates": true },
{
"id": "t_railroad_tie",
- "fg": [ 3605, 3606, 3605, 3606 ],
+ "fg": [ 3642, 3643, 3642, 3643 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "unconnected", "fg": 3599 } ]
+ "additional_tiles": [ { "id": "unconnected", "fg": 3636 } ]
},
- { "id": "t_railroad_tie_h", "fg": 3606, "rotates": false },
- { "id": "t_railroad_tie_v", "fg": 3605, "rotates": false },
+ { "id": "t_railroad_tie_h", "fg": 3643, "rotates": false },
+ { "id": "t_railroad_tie_v", "fg": 3642, "rotates": false },
{
"id": "t_railroad_track",
- "fg": [ 3600, 3601, 3600, 3601 ],
- "rotates": true,
- "multitile": true,
- "additional_tiles": [ { "id": "center", "fg": 3607 } ]
- },
- { "id": "t_railroad_track_d", "fg": 3602, "bg": 3599, "rotates": true },
- { "id": "t_railroad_track_on_tie", "fg": [ 3604, 3603, 3604, 3603 ], "rotates": true },
- { "id": "t_raincatcher", "fg": 3493, "bg": 1241, "rotates": false },
- { "id": "t_rdoor_b", "fg": 3494, "bg": 3610, "rotates": false },
- { "id": "t_rdoor_boarded", "fg": 3495, "rotates": false },
- { "id": "t_rdoor_boarded_damaged", "fg": 3496, "rotates": false },
- { "id": "t_rdoor_c", "fg": 3497, "bg": 3610, "rotates": false },
- { "id": "t_rdoor_o", "fg": 3498, "bg": 3610, "rotates": false },
- { "id": "t_reb_cage", "fg": 3499, "bg": 3615 },
- { "id": "t_recycler", "fg": 3500, "bg": 3615, "rotates": false },
- { "id": "t_reinforced_door_glass_c", "fg": 3501, "bg": 3609 },
- { "id": "t_reinforced_door_glass_lab_c", "fg": 3501, "bg": 3615 },
- { "id": "t_reinforced_door_glass_lab_o", "fg": 3502, "bg": 3615 },
- { "id": "t_reinforced_door_glass_o", "fg": 3502, "bg": 3609 },
- { "id": "t_reinforced_glass_shutter", "fg": 3503, "bg": 3609, "rotates": false },
- { "id": "t_reinforced_glass_shutter_open", "fg": 3504, "bg": 3609, "rotates": false },
- { "id": "t_rock_floor", "bg": 3609, "rotates": false },
+ "fg": [ 3637, 3638, 3637, 3638 ],
+ "rotates": true,
+ "multitile": true,
+ "additional_tiles": [ { "id": "center", "fg": 3644 } ]
+ },
+ { "id": "t_railroad_track_d", "fg": 3639, "bg": 3636, "rotates": true },
+ { "id": "t_railroad_track_on_tie", "fg": [ 3641, 3640, 3641, 3640 ], "rotates": true },
+ { "id": "t_raincatcher", "fg": 3531, "bg": 1236, "rotates": false },
+ { "id": "t_rdoor_b", "fg": 3532, "bg": 3647, "rotates": false },
+ { "id": "t_rdoor_boarded", "fg": 3533, "rotates": false },
+ { "id": "t_rdoor_boarded_damaged", "fg": 3534, "rotates": false },
+ { "id": "t_rdoor_c", "fg": 3535, "bg": 3647, "rotates": false },
+ { "id": "t_rdoor_o", "fg": 3536, "bg": 3647, "rotates": false },
+ { "id": "t_reb_cage", "fg": 3537, "bg": 3652 },
+ { "id": "t_recycler", "fg": 3538, "bg": 3652, "rotates": false },
+ { "id": "t_reinforced_door_glass_c", "fg": 3539, "bg": 3646 },
+ { "id": "t_reinforced_door_glass_lab_c", "fg": 3539, "bg": 3652 },
+ { "id": "t_reinforced_door_glass_lab_o", "fg": 3540, "bg": 3652 },
+ { "id": "t_reinforced_door_glass_o", "fg": 3540, "bg": 3646 },
+ { "id": "t_reinforced_glass_shutter", "fg": 3541, "bg": 3646, "rotates": false },
+ { "id": "t_reinforced_glass_shutter_open", "fg": 3542, "bg": 3646, "rotates": false },
+ { "id": "t_rock_floor", "bg": 3646, "rotates": false },
{
"id": "t_rock_wall_half",
- "fg": 3505,
- "bg": 3761,
+ "fg": 3543,
+ "bg": 3798,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 3505 },
- { "id": "center", "fg": 3506 },
- { "id": "corner", "fg": 3507 },
- { "id": "edge", "fg": 3508 },
- { "id": "end_piece", "fg": 3509 },
- { "id": "t_connection", "fg": 3510 }
+ { "id": "unconnected", "fg": 3543 },
+ { "id": "center", "fg": 3544 },
+ { "id": "corner", "fg": 3545 },
+ { "id": "edge", "fg": 3546 },
+ { "id": "end_piece", "fg": 3547 },
+ { "id": "t_connection", "fg": 3548 }
]
},
{
"id": "t_root_wall",
- "fg": 3474,
- "bg": 3617,
+ "fg": 3512,
+ "bg": 3654,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3475, "bg": 3617 },
- { "id": "center", "fg": 3474, "bg": 3617 },
- { "id": "end_piece", "fg": 3477, "bg": 3617 },
- { "id": "unconnected", "fg": 3459, "bg": 3617 },
- { "id": "t_connection", "fg": 3478, "bg": 3617 },
- { "id": "edge", "fg": 3476, "bg": 3617 }
+ { "id": "corner", "fg": 3513, "bg": 3654 },
+ { "id": "center", "fg": 3512, "bg": 3654 },
+ { "id": "end_piece", "fg": 3515, "bg": 3654 },
+ { "id": "unconnected", "fg": 3497, "bg": 3654 },
+ { "id": "t_connection", "fg": 3516, "bg": 3654 },
+ { "id": "edge", "fg": 3514, "bg": 3654 }
]
},
- { "id": "t_rope_up", "fg": 3511, "bg": 3609, "rotates": false },
- { "id": "t_sai_box", "fg": 3512, "bg": 3615, "rotates": false },
- { "id": "t_sai_box_damaged", "fg": 3513, "bg": 3615, "rotates": false },
- { "id": "t_sandmound", "fg": 3514, "rotates": false },
- { "id": "t_sconc_wall", "fg": 3515, "bg": 3615 },
- { "id": "t_sconc_wall_halfway", "fg": 3516, "bg": 3615 },
- { "id": "t_scrap_floor", "fg": 3456, "rotates": false },
+ { "id": "t_rope_up", "fg": 3549, "bg": 3646, "rotates": false },
+ { "id": "t_sai_box", "fg": 3550, "bg": 3652, "rotates": false },
+ { "id": "t_sai_box_damaged", "fg": 3551, "bg": 3652, "rotates": false },
+ { "id": "t_sandmound", "fg": 3552, "rotates": false },
+ { "id": "t_sconc_wall", "fg": 3553, "bg": 3652 },
+ { "id": "t_sconc_wall_halfway", "fg": 3554, "bg": 3652 },
+ { "id": "t_scrap_floor", "fg": 3494, "rotates": false },
{
"id": "t_scrap_wall_halfway",
- "fg": 3517,
- "bg": 3611,
+ "fg": 3555,
+ "bg": 3648,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "t_connection", "fg": 3521, "bg": 3611 },
- { "id": "edge", "fg": 3519, "bg": 3611 },
- { "id": "corner", "fg": 3518, "bg": 3611 },
- { "id": "center", "fg": 3517, "bg": 3611 },
- { "id": "end_piece", "fg": 3520, "bg": 3615 },
- { "id": "unconnected", "fg": 3522, "bg": 3615 }
+ { "id": "t_connection", "fg": 3559, "bg": 3648 },
+ { "id": "edge", "fg": 3557, "bg": 3648 },
+ { "id": "corner", "fg": 3556, "bg": 3648 },
+ { "id": "center", "fg": 3555, "bg": 3648 },
+ { "id": "end_piece", "fg": 3558, "bg": 3652 },
+ { "id": "unconnected", "fg": 3560, "bg": 3652 }
]
},
{
"id": "t_searth_test",
- "fg": 3523,
- "bg": 4222,
+ "fg": 3561,
+ "bg": 4259,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3523, "bg": 4222 },
- { "id": "corner", "fg": 3524, "bg": 4222 },
- { "id": "edge", "fg": 3525, "bg": 4222 },
- { "id": "t_connection", "fg": 3527, "bg": 4222 },
- { "id": "end_piece", "fg": 3526, "bg": 4222 },
- { "id": "unconnected", "fg": 3528, "bg": 4222 }
+ { "id": "center", "fg": 3561, "bg": 4259 },
+ { "id": "corner", "fg": 3562, "bg": 4259 },
+ { "id": "edge", "fg": 3563, "bg": 4259 },
+ { "id": "t_connection", "fg": 3565, "bg": 4259 },
+ { "id": "end_piece", "fg": 3564, "bg": 4259 },
+ { "id": "unconnected", "fg": 3566, "bg": 4259 }
]
},
- { "id": "t_sewage", "fg": 3529, "rotates": false },
+ { "id": "t_sewage", "fg": 3567, "rotates": false },
{
"id": "t_sewage_pipe",
- "fg": 3530,
- "bg": 3615,
+ "fg": 3568,
+ "bg": 3652,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3531, "bg": 3615 },
- { "id": "corner", "fg": 3532, "bg": 3615 },
- { "id": "edge", "fg": 3533, "bg": 3615 },
- { "id": "t_connection", "fg": 3535, "bg": 3615 },
- { "id": "end_piece", "fg": 3534, "bg": 3615 },
- { "id": "unconnected", "fg": 3530, "bg": 3615 }
+ { "id": "center", "fg": 3569, "bg": 3652 },
+ { "id": "corner", "fg": 3570, "bg": 3652 },
+ { "id": "edge", "fg": 3571, "bg": 3652 },
+ { "id": "t_connection", "fg": 3573, "bg": 3652 },
+ { "id": "end_piece", "fg": 3572, "bg": 3652 },
+ { "id": "unconnected", "fg": 3568, "bg": 3652 }
]
},
{
"id": "t_sewage_pump",
- "bg": 3615,
+ "bg": 3652,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3536, "bg": 3615 },
- { "id": "corner", "fg": 3537, "bg": 3615 },
- { "id": "edge", "fg": 3533, "bg": 3615 },
- { "id": "t_connection", "fg": 3536, "bg": 3615 },
- { "id": "end_piece", "fg": 3534, "bg": 3615 },
- { "id": "unconnected", "fg": 3536, "bg": 3615 }
- ]
- },
- { "id": "t_shrub", "fg": 3538, "bg": 3761, "rotates": false },
- { "id": "t_shrub_blueberry", "fg": 3539, "bg": 3761 },
- { "id": "t_shrub_blueberry_harvested", "fg": 3539, "bg": 3761 },
- { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 3539, "bg": 3765 },
- { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 3539, "bg": 3769 },
- { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 3543, "bg": 3686 },
- { "id": "t_shrub_blueberry_season_autumn", "fg": 3428, "bg": 3765 },
- { "id": "t_shrub_blueberry_season_summer", "fg": 3428, "bg": 3769 },
- { "id": "t_shrub_blueberry_season_winter", "fg": 3543, "bg": 3686 },
- { "id": "t_shrub_fungal", "fg": 3540, "bg": 1344, "rotates": false },
- { "id": "t_shrub_season_autumn", "fg": 3538, "bg": 3765 },
- { "id": "t_shrub_season_summer", "fg": 3538, "bg": 3769 },
- { "id": "t_shrub_season_winter", "fg": 3541, "bg": 3686 },
- { "id": "t_shrub_strawberry", "fg": 3539, "bg": 3761 },
- { "id": "t_shrub_strawberry_harvested", "fg": 3539, "bg": 3761 },
- { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 3539, "bg": 3765 },
- { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 3539, "bg": 3769 },
- { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 3543, "bg": 3686 },
- { "id": "t_shrub_strawberry_season_autumn", "fg": 3542, "bg": 3765 },
- { "id": "t_shrub_strawberry_season_summer", "fg": 3542, "bg": 3769 },
- { "id": "t_shrub_strawberry_season_winter", "fg": 3539, "bg": 3686 },
- { "id": "t_sidewalk", "fg": 3615, "rotates": false },
- { "id": "t_sidewalk_bg_dp", "fg": 3615 },
- { "id": "t_skylight", "bg": 3615, "rotates": false },
+ { "id": "center", "fg": 3574, "bg": 3652 },
+ { "id": "corner", "fg": 3575, "bg": 3652 },
+ { "id": "edge", "fg": 3571, "bg": 3652 },
+ { "id": "t_connection", "fg": 3574, "bg": 3652 },
+ { "id": "end_piece", "fg": 3572, "bg": 3652 },
+ { "id": "unconnected", "fg": 3574, "bg": 3652 }
+ ]
+ },
+ { "id": "t_shrub", "fg": 3576, "bg": 3798, "rotates": false },
+ { "id": "t_shrub_blueberry", "fg": 3577, "bg": 3798 },
+ { "id": "t_shrub_blueberry_harvested", "fg": 3577, "bg": 3798 },
+ { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 3577, "bg": 3802 },
+ { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 3577, "bg": 3806 },
+ { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 3581, "bg": 3723 },
+ { "id": "t_shrub_blueberry_season_autumn", "fg": 3466, "bg": 3802 },
+ { "id": "t_shrub_blueberry_season_summer", "fg": 3466, "bg": 3806 },
+ { "id": "t_shrub_blueberry_season_winter", "fg": 3581, "bg": 3723 },
+ { "id": "t_shrub_fungal", "fg": 3578, "bg": 1339, "rotates": false },
+ { "id": "t_shrub_season_autumn", "fg": 3576, "bg": 3802 },
+ { "id": "t_shrub_season_summer", "fg": 3576, "bg": 3806 },
+ { "id": "t_shrub_season_winter", "fg": 3579, "bg": 3723 },
+ { "id": "t_shrub_strawberry", "fg": 3577, "bg": 3798 },
+ { "id": "t_shrub_strawberry_harvested", "fg": 3577, "bg": 3798 },
+ { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 3577, "bg": 3802 },
+ { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 3577, "bg": 3806 },
+ { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 3581, "bg": 3723 },
+ { "id": "t_shrub_strawberry_season_autumn", "fg": 3580, "bg": 3802 },
+ { "id": "t_shrub_strawberry_season_summer", "fg": 3580, "bg": 3806 },
+ { "id": "t_shrub_strawberry_season_winter", "fg": 3577, "bg": 3723 },
+ { "id": "t_sidewalk", "fg": 3652, "rotates": false },
+ { "id": "t_sidewalk_bg_dp", "fg": 3652 },
+ { "id": "t_skylight", "bg": 3652, "rotates": false },
{
"id": "t_slide",
- "fg": 3544,
- "bg": 3849,
+ "fg": 3582,
+ "bg": 3886,
"rotates": false,
"multitile": true,
- "additional_tiles": [ { "id": "edge", "fg": 3544, "bg": 3849 }, { "id": "end_piece", "fg": 3545, "bg": 3849 } ]
+ "additional_tiles": [ { "id": "edge", "fg": 3582, "bg": 3886 }, { "id": "end_piece", "fg": 3583, "bg": 3886 } ]
},
{
"id": "t_slide_season_autumn",
- "fg": 3544,
- "bg": 3765,
+ "fg": 3582,
+ "bg": 3802,
"multitile": true,
- "additional_tiles": [ { "id": "edge", "fg": 3544, "bg": 3765 }, { "id": "end_piece", "fg": 3545, "bg": 3765 } ]
+ "additional_tiles": [ { "id": "edge", "fg": 3582, "bg": 3802 }, { "id": "end_piece", "fg": 3583, "bg": 3802 } ]
},
{
"id": "t_slide_season_summer",
- "fg": 3544,
- "bg": 3769,
+ "fg": 3582,
+ "bg": 3806,
"multitile": true,
- "additional_tiles": [ { "id": "edge", "fg": 3544, "bg": 3769 }, { "id": "end_piece", "fg": 3545, "bg": 3769 } ]
+ "additional_tiles": [ { "id": "edge", "fg": 3582, "bg": 3806 }, { "id": "end_piece", "fg": 3583, "bg": 3806 } ]
},
{
"id": "t_slide_season_winter",
- "fg": 3544,
- "bg": 3686,
+ "fg": 3582,
+ "bg": 3723,
"multitile": true,
- "additional_tiles": [ { "id": "edge", "fg": 3544, "bg": 3686 }, { "id": "end_piece", "fg": 3545, "bg": 3686 } ]
+ "additional_tiles": [ { "id": "edge", "fg": 3582, "bg": 3723 }, { "id": "end_piece", "fg": 3583, "bg": 3723 } ]
},
{
"id": "t_slime",
- "fg": 3546,
- "bg": 3761,
+ "fg": 3584,
+ "bg": 3798,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 3546, "bg": 3761 },
- { "id": "center", "fg": 3547, "bg": 3761 },
- { "id": "corner", "fg": 3548, "bg": 3761 },
- { "id": "edge", "fg": 3549, "bg": 3761 },
- { "id": "end_piece", "fg": 3550, "bg": 3761 },
- { "id": "t_connection", "fg": 3551, "bg": 3761 }
+ { "id": "unconnected", "fg": 3584, "bg": 3798 },
+ { "id": "center", "fg": 3585, "bg": 3798 },
+ { "id": "corner", "fg": 3586, "bg": 3798 },
+ { "id": "edge", "fg": 3587, "bg": 3798 },
+ { "id": "end_piece", "fg": 3588, "bg": 3798 },
+ { "id": "t_connection", "fg": 3589, "bg": 3798 }
]
},
{
"id": "t_slime_season_autumn",
- "fg": 3546,
- "bg": 3765,
+ "fg": 3584,
+ "bg": 3802,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 3546 },
- { "id": "center", "fg": 3547 },
- { "id": "corner", "fg": 3548 },
- { "id": "edge", "fg": 3549 },
- { "id": "end_piece", "fg": 3550 },
- { "id": "t_connection", "fg": 3551 }
+ { "id": "unconnected", "fg": 3584 },
+ { "id": "center", "fg": 3585 },
+ { "id": "corner", "fg": 3586 },
+ { "id": "edge", "fg": 3587 },
+ { "id": "end_piece", "fg": 3588 },
+ { "id": "t_connection", "fg": 3589 }
]
},
{
"id": "t_slime_season_summer",
- "fg": 3546,
- "bg": 3769,
+ "fg": 3584,
+ "bg": 3806,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 3546 },
- { "id": "center", "fg": 3547 },
- { "id": "corner", "fg": 3548 },
- { "id": "edge", "fg": 3549 },
- { "id": "end_piece", "fg": 3550 },
- { "id": "t_connection", "fg": 3551 }
+ { "id": "unconnected", "fg": 3584 },
+ { "id": "center", "fg": 3585 },
+ { "id": "corner", "fg": 3586 },
+ { "id": "edge", "fg": 3587 },
+ { "id": "end_piece", "fg": 3588 },
+ { "id": "t_connection", "fg": 3589 }
]
},
{
"id": "t_slime_season_winter",
- "fg": 3546,
- "bg": 3686,
- "multitile": true,
- "additional_tiles": [
- { "id": "unconnected", "fg": 3546 },
- { "id": "center", "fg": 3547 },
- { "id": "corner", "fg": 3548 },
- { "id": "edge", "fg": 3549 },
- { "id": "end_piece", "fg": 3550 },
- { "id": "t_connection", "fg": 3551 }
- ]
- },
- { "id": "t_slope_down", "fg": 3552, "rotates": false },
- { "id": "t_slope_up", "fg": 3553, "rotates": false },
- { "id": "t_slot_machine", "fg": 3554, "bg": 3615 },
- { "id": [ "t_stairs_down", "t_wood_stairs_down" ], "fg": 3555, "bg": 3610, "rotates": false },
- { "id": [ "t_stairs_up", "t_wood_stairs_up" ], "fg": 3556, "bg": 3609, "rotates": false },
- { "id": "t_station_disc", "fg": 3557, "bg": 3615, "rotates": false },
- { "id": "t_strconc_floor_halfway", "fg": 3558 },
- { "id": "t_strconc_wall_halfway", "fg": 3559, "bg": 3615 },
- { "id": "t_stump", "fg": 3597, "rotates": false, "bg": 3761 },
- { "id": "t_stump_season_autumn", "fg": 3597, "rotates": false, "bg": 3765 },
- { "id": "t_stump_season_summer", "fg": 3597, "rotates": false, "bg": 3769 },
- { "id": "t_stump_season_winter", "fg": 3598, "rotates": false, "bg": 3686 },
- { "id": "t_support_l", "fg": 3560, "bg": 3615, "rotates": false },
- { "id": "t_support_s", "fg": 3561, "bg": 3615, "rotates": false },
- { "id": "t_switchgear_l", "fg": 3562, "bg": 3615, "rotates": false },
- { "id": "t_switchgear_s", "fg": 3563, "bg": 3615, "rotates": false },
- { "id": "t_tarptent", "fg": 3564, "bg": 3761, "rotates": false },
- { "id": "t_thconc_floor", "fg": 3615, "rotates": false },
- { "id": "t_thconc_floor_olight", "fg": 3656, "rotates": false },
- { "id": "t_trunk", "fg": 3657, "bg": 3761, "rotates": false },
- { "id": "t_trunk_season_autumn", "fg": 3657, "bg": 3765 },
- { "id": "t_trunk_season_summer", "fg": 3657, "bg": 3769 },
- { "id": "t_trunk_season_winter", "fg": 3658, "bg": 3686 },
- { "id": "t_underbrush", "fg": 3565, "bg": 3761, "rotates": false },
- { "id": "t_underbrush_harvested_autumn", "fg": 3566, "bg": 3765, "rotates": false },
- { "id": "t_underbrush_harvested_autumn_season_autumn", "fg": 3566, "bg": 3765, "rotates": false },
- { "id": "t_underbrush_harvested_autumn_season_summer", "fg": 3566, "bg": 3769, "rotates": false },
- { "id": "t_underbrush_harvested_autumn_season_winter", "fg": 3566, "bg": 3686, "rotates": false },
- { "id": "t_underbrush_harvested_spring", "fg": 3566, "bg": 3761, "rotates": false },
- { "id": "t_underbrush_harvested_spring_season_winter", "fg": 3566, "bg": 3686, "rotates": false },
- { "id": "t_underbrush_harvested_summer", "fg": 3566, "bg": 3769, "rotates": false },
- { "id": "t_underbrush_harvested_summer_season_winter", "fg": 3566, "bg": 3686, "rotates": false },
- { "id": "t_underbrush_harvested_winter", "fg": 3567, "bg": 3773, "rotates": false },
- { "id": "t_underbrush_harvested_winter_season_winter", "fg": 3567, "bg": 3686, "rotates": false },
- { "id": "t_underbrush_season_winter", "fg": 3568, "bg": 3686, "rotates": false },
- { "id": "t_utility_light", "fg": 3569, "bg": 3615 },
- { "id": "t_vat", "fg": 3570, "bg": 3615, "rotates": false },
- { "id": "t_wall_half", "fg": 3571 },
- { "id": "t_wall_half_season_winter", "fg": 3571 },
+ "fg": 3584,
+ "bg": 3723,
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "unconnected", "fg": 3584 },
+ { "id": "center", "fg": 3585 },
+ { "id": "corner", "fg": 3586 },
+ { "id": "edge", "fg": 3587 },
+ { "id": "end_piece", "fg": 3588 },
+ { "id": "t_connection", "fg": 3589 }
+ ]
+ },
+ { "id": "t_slope_down", "fg": 3590, "rotates": false },
+ { "id": "t_slope_up", "fg": 3591, "rotates": false },
+ { "id": "t_slot_machine", "fg": 3592, "bg": 3652 },
+ { "id": [ "t_stairs_down", "t_wood_stairs_down" ], "fg": 3593, "bg": 3647, "rotates": false },
+ { "id": [ "t_stairs_up", "t_wood_stairs_up" ], "fg": 3594, "bg": 3646, "rotates": false },
+ { "id": "t_station_disc", "fg": 3595, "bg": 3652, "rotates": false },
+ { "id": "t_strconc_floor_halfway", "fg": 3596 },
+ { "id": "t_strconc_wall_halfway", "fg": 3597, "bg": 3652 },
+ { "id": "t_stump", "fg": 3634, "rotates": false, "bg": 3798 },
+ { "id": "t_stump_season_autumn", "fg": 3634, "rotates": false, "bg": 3802 },
+ { "id": "t_stump_season_summer", "fg": 3634, "rotates": false, "bg": 3806 },
+ { "id": "t_stump_season_winter", "fg": 3635, "rotates": false, "bg": 3723 },
+ { "id": "t_support_l", "fg": 3598, "bg": 3652, "rotates": false },
+ { "id": "t_support_s", "fg": 3599, "bg": 3652, "rotates": false },
+ { "id": "t_switchgear_l", "fg": 3600, "bg": 3652, "rotates": false },
+ { "id": "t_switchgear_s", "fg": 3601, "bg": 3652, "rotates": false },
+ { "id": "t_tarptent", "fg": 3602, "bg": 3798, "rotates": false },
+ { "id": "t_thconc_floor", "fg": 3652, "rotates": false },
+ { "id": "t_thconc_floor_olight", "fg": 3693, "rotates": false },
+ { "id": "t_trunk", "fg": 3694, "bg": 3798, "rotates": false },
+ { "id": "t_trunk_season_autumn", "fg": 3694, "bg": 3802 },
+ { "id": "t_trunk_season_summer", "fg": 3694, "bg": 3806 },
+ { "id": "t_trunk_season_winter", "fg": 3695, "bg": 3723 },
+ { "id": "t_underbrush", "fg": 3603, "bg": 3798, "rotates": false },
+ { "id": "t_underbrush_harvested_autumn", "fg": 3604, "bg": 3802, "rotates": false },
+ { "id": "t_underbrush_harvested_autumn_season_autumn", "fg": 3604, "bg": 3802, "rotates": false },
+ { "id": "t_underbrush_harvested_autumn_season_summer", "fg": 3604, "bg": 3806, "rotates": false },
+ { "id": "t_underbrush_harvested_autumn_season_winter", "fg": 3604, "bg": 3723, "rotates": false },
+ { "id": "t_underbrush_harvested_spring", "fg": 3604, "bg": 3798, "rotates": false },
+ { "id": "t_underbrush_harvested_spring_season_winter", "fg": 3604, "bg": 3723, "rotates": false },
+ { "id": "t_underbrush_harvested_summer", "fg": 3604, "bg": 3806, "rotates": false },
+ { "id": "t_underbrush_harvested_summer_season_winter", "fg": 3604, "bg": 3723, "rotates": false },
+ { "id": "t_underbrush_harvested_winter", "fg": 3605, "bg": 3810, "rotates": false },
+ { "id": "t_underbrush_harvested_winter_season_winter", "fg": 3605, "bg": 3723, "rotates": false },
+ { "id": "t_underbrush_season_winter", "fg": 3606, "bg": 3723, "rotates": false },
+ { "id": "t_utility_light", "fg": 3607, "bg": 3652 },
+ { "id": "t_wall_half", "fg": 3608 },
+ { "id": "t_wall_half_season_winter", "fg": 3608 },
{
"id": "t_wall_log_half",
- "fg": 3572,
+ "fg": 3609,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3572 },
- { "id": "corner", "fg": 3573 },
- { "id": "edge", "fg": 3574 },
- { "id": "end_piece", "fg": 3575 },
- { "id": "t_connection", "fg": 3576 },
- { "id": "unconnected", "fg": 3577 }
+ { "id": "center", "fg": 3609 },
+ { "id": "corner", "fg": 3610 },
+ { "id": "edge", "fg": 3611 },
+ { "id": "end_piece", "fg": 3612 },
+ { "id": "t_connection", "fg": 3613 },
+ { "id": "unconnected", "fg": 3614 }
]
},
- { "id": "t_wall_wattle", "fg": 3578, "bg": 3761, "rotates": false },
- { "id": "t_wall_wattle_broken", "fg": 3579, "bg": 3761, "rotates": false },
- { "id": "t_wall_wattle_half", "fg": 3580, "bg": 3761, "rotates": false },
+ { "id": "t_wall_wattle", "fg": 3615, "bg": 3798, "rotates": false },
+ { "id": "t_wall_wattle_broken", "fg": 3616, "bg": 3798, "rotates": false },
+ { "id": "t_wall_wattle_half", "fg": 3617, "bg": 3798, "rotates": false },
{
"id": [ "t_water_dp", "t_swater_dp" ],
- "fg": 3650,
+ "fg": 3687,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3650, "bg": 3761 },
- { "id": "corner", "fg": 3651, "bg": 3761 },
- { "id": "edge", "fg": 3652, "bg": 3761 },
- { "id": "end_piece", "fg": 3653, "bg": 3761 },
- { "id": "unconnected", "fg": 3654, "bg": 3761 }
+ { "id": "center", "fg": 3687, "bg": 3798 },
+ { "id": "corner", "fg": 3688, "bg": 3798 },
+ { "id": "edge", "fg": 3689, "bg": 3798 },
+ { "id": "end_piece", "fg": 3690, "bg": 3798 },
+ { "id": "unconnected", "fg": 3691, "bg": 3798 }
],
- "bg": 3761
+ "bg": 3798
},
{
"id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ],
- "fg": 3650,
+ "fg": 3687,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3650, "bg": 3765 },
- { "id": "corner", "fg": 3651, "bg": 3765 },
- { "id": "edge", "fg": 3652, "bg": 3765 },
- { "id": "end_piece", "fg": 3653, "bg": 3765 },
- { "id": "unconnected", "fg": 3654, "bg": 3765 }
+ { "id": "center", "fg": 3687, "bg": 3802 },
+ { "id": "corner", "fg": 3688, "bg": 3802 },
+ { "id": "edge", "fg": 3689, "bg": 3802 },
+ { "id": "end_piece", "fg": 3690, "bg": 3802 },
+ { "id": "unconnected", "fg": 3691, "bg": 3802 }
],
- "bg": 3765
+ "bg": 3802
},
{
"id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ],
- "fg": 3650,
+ "fg": 3687,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3650, "bg": 3769 },
- { "id": "corner", "fg": 3651, "bg": 3769 },
- { "id": "edge", "fg": 3652, "bg": 3769 },
- { "id": "end_piece", "fg": 3653, "bg": 3769 },
- { "id": "unconnected", "fg": 3654, "bg": 3769 }
+ { "id": "center", "fg": 3687, "bg": 3806 },
+ { "id": "corner", "fg": 3688, "bg": 3806 },
+ { "id": "edge", "fg": 3689, "bg": 3806 },
+ { "id": "end_piece", "fg": 3690, "bg": 3806 },
+ { "id": "unconnected", "fg": 3691, "bg": 3806 }
],
- "bg": 3769
+ "bg": 3806
},
{
"id": [ "t_water_season_winter_dp", "t_swater_season_winter_dp" ],
- "fg": 3650,
+ "fg": 3687,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3650, "bg": 3686 },
- { "id": "corner", "fg": 3651, "bg": 3686 },
- { "id": "edge", "fg": 3652, "bg": 3686 },
- { "id": "end_piece", "fg": 3653, "bg": 3686 },
- { "id": "unconnected", "fg": 3654, "bg": 3686 }
+ { "id": "center", "fg": 3687, "bg": 3723 },
+ { "id": "corner", "fg": 3688, "bg": 3723 },
+ { "id": "edge", "fg": 3689, "bg": 3723 },
+ { "id": "end_piece", "fg": 3690, "bg": 3723 },
+ { "id": "unconnected", "fg": 3691, "bg": 3723 }
],
- "bg": 3686
+ "bg": 3723
},
- { "id": "t_water_pump", "fg": 3581, "bg": 3615, "rotates": false },
+ { "id": "t_water_pump", "fg": 3618, "bg": 3652, "rotates": false },
{
"id": [ "t_water_sh", "t_swater_sh" ],
- "fg": 3659,
- "bg": 3761,
+ "fg": 3696,
+ "bg": 3798,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3660, "bg": 3761 },
- { "id": "edge", "fg": 3661, "bg": 3761 },
- { "id": "end_piece", "fg": 3662, "bg": 3761 },
- { "id": "center", "fg": 3659, "bg": 3761 },
- { "id": "t_connection", "fg": 3659, "bg": 3761 },
- { "id": "unconnected", "fg": 3663, "bg": 3761 }
+ { "id": "corner", "fg": 3697, "bg": 3798 },
+ { "id": "edge", "fg": 3698, "bg": 3798 },
+ { "id": "end_piece", "fg": 3699, "bg": 3798 },
+ { "id": "center", "fg": 3696, "bg": 3798 },
+ { "id": "t_connection", "fg": 3696, "bg": 3798 },
+ { "id": "unconnected", "fg": 3700, "bg": 3798 }
]
},
{
"id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ],
- "fg": 3659,
- "bg": 3765,
+ "fg": 3696,
+ "bg": 3802,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3660, "bg": 3765 },
- { "id": "edge", "fg": 3661, "bg": 3765 },
- { "id": "end_piece", "fg": 3662, "bg": 3765 },
- { "id": "center", "fg": 3659, "bg": 3765 },
- { "id": "t_connection", "fg": 3659, "bg": 3765 },
- { "id": "unconnected", "fg": 3663, "bg": 3765 }
+ { "id": "corner", "fg": 3697, "bg": 3802 },
+ { "id": "edge", "fg": 3698, "bg": 3802 },
+ { "id": "end_piece", "fg": 3699, "bg": 3802 },
+ { "id": "center", "fg": 3696, "bg": 3802 },
+ { "id": "t_connection", "fg": 3696, "bg": 3802 },
+ { "id": "unconnected", "fg": 3700, "bg": 3802 }
]
},
{
"id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ],
- "fg": 3659,
- "bg": 3769,
+ "fg": 3696,
+ "bg": 3806,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3660, "bg": 3769 },
- { "id": "edge", "fg": 3661, "bg": 3769 },
- { "id": "end_piece", "fg": 3662, "bg": 3769 },
- { "id": "center", "fg": 3659, "bg": 3769 },
- { "id": "t_connection", "fg": 3659, "bg": 3769 },
- { "id": "unconnected", "fg": 3663, "bg": 3769 }
+ { "id": "corner", "fg": 3697, "bg": 3806 },
+ { "id": "edge", "fg": 3698, "bg": 3806 },
+ { "id": "end_piece", "fg": 3699, "bg": 3806 },
+ { "id": "center", "fg": 3696, "bg": 3806 },
+ { "id": "t_connection", "fg": 3696, "bg": 3806 },
+ { "id": "unconnected", "fg": 3700, "bg": 3806 }
]
},
{
"id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ],
- "fg": 3659,
- "bg": 3686,
+ "fg": 3696,
+ "bg": 3723,
"rotates": false,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": 3660, "bg": 3686 },
- { "id": "edge", "fg": 3661, "bg": 3686 },
- { "id": "end_piece", "fg": 3662, "bg": 3686 },
- { "id": "center", "fg": 3659, "bg": 3686 },
- { "id": "t_connection", "fg": 3659, "bg": 3686 },
- { "id": "unconnected", "fg": 3663, "bg": 3686 }
- ]
- },
- { "id": "t_window", "fg": 3582, "bg": 3610, "rotates": false },
- { "id": "t_window_alarm", "fg": 3582, "bg": 3610, "rotates": false },
- { "id": "t_window_alarm_taped", "fg": 3583, "bg": 3610, "rotates": false },
- { "id": "t_window_bars", "fg": 3584, "bg": 3610, "rotates": false },
- { "id": "t_window_bars_alarm", "fg": 3585, "bg": 3610, "rotates": false },
- { "id": "t_window_boarded", "fg": 3586, "bg": 3610, "rotates": false },
- { "id": "t_window_boarded_noglass", "fg": 3587, "bg": 3610, "rotates": false },
- { "id": "t_window_domestic", "fg": 3582, "bg": 3610, "rotates": false },
- { "id": "t_window_domestic_taped", "fg": 3583, "bg": 3610, "rotates": false },
- { "id": "t_window_empty", "fg": 3588, "bg": 3610, "rotates": false },
- { "id": "t_window_enhanced", "fg": 3589, "bg": 3610, "rotates": false },
- { "id": "t_window_enhanced_noglass", "fg": 3589 },
- { "id": "t_window_frame", "fg": 3466, "bg": 3610, "rotates": false },
- { "id": "t_window_no_curtains", "fg": 3582, "bg": 3610, "rotates": false },
- { "id": "t_window_no_curtains_open", "fg": 3590, "bg": 3610, "rotates": false },
- { "id": "t_window_no_curtains_taped", "fg": 3583, "bg": 3610, "rotates": false },
- { "id": "t_window_open", "fg": 3590, "bg": 3610, "rotates": false },
- { "id": "t_window_reinforced", "fg": 3591, "bg": 3610, "rotates": false },
- { "id": "t_window_reinforced_noglass", "fg": 3592, "bg": 3610, "rotates": false },
- { "id": "t_window_stained_blue", "fg": 3593, "rotates": false },
- { "id": "t_window_stained_green", "fg": 3594, "rotates": false },
- { "id": "t_window_stained_red", "fg": 3595, "rotates": false },
- { "id": "t_window_taped", "fg": 3583, "bg": 3610, "rotates": false },
- { "id": "t_zebra", "fg": 3664, "rotates": false },
- { "id": "tr_glass_pit", "fg": 3641, "bg": 3761 },
- { "id": "tr_glass_pit_season_autumn", "fg": 3641, "bg": 3765 },
- { "id": "tr_glass_pit_season_summer", "fg": 3641, "bg": 3769 },
- { "id": "tr_glass_pit_season_winter", "fg": 3641, "bg": 3686 },
- { "id": "tr_light_snare", "bg": 4713, "rotates": false },
- { "id": "tr_pit", "fg": 3637, "bg": 3761, "rotates": false },
- { "id": "tr_pit_season_autumn", "fg": 3637, "bg": 3765 },
- { "id": "tr_pit_season_summer", "fg": 3637, "bg": 3769 },
- { "id": "tr_pit_season_winter", "fg": 3637, "bg": 3686 },
- { "id": "tr_spike_pit", "fg": 3644, "bg": 3761, "rotates": false },
- { "id": "tr_spike_pit_season_autumn", "fg": 3644, "bg": 3765 },
- { "id": "tr_spike_pit_season_summer", "fg": 3644, "bg": 3769 },
- { "id": "tr_spike_pit_season_winter", "fg": 3644, "bg": 3686 },
- { "id": "t_floor_resin", "fg": 3665 },
- { "id": "t_resin_hole_c", "fg": 3667, "rotates": false, "bg": 3665 },
- { "id": "t_resin_hole_o", "fg": 3668, "rotates": false, "bg": 3665 },
+ { "id": "corner", "fg": 3697, "bg": 3723 },
+ { "id": "edge", "fg": 3698, "bg": 3723 },
+ { "id": "end_piece", "fg": 3699, "bg": 3723 },
+ { "id": "center", "fg": 3696, "bg": 3723 },
+ { "id": "t_connection", "fg": 3696, "bg": 3723 },
+ { "id": "unconnected", "fg": 3700, "bg": 3723 }
+ ]
+ },
+ { "id": "t_window", "fg": 3619, "bg": 3647, "rotates": false },
+ { "id": "t_window_alarm", "fg": 3619, "bg": 3647, "rotates": false },
+ { "id": "t_window_alarm_taped", "fg": 3620, "bg": 3647, "rotates": false },
+ { "id": "t_window_bars", "fg": 3621, "bg": 3647, "rotates": false },
+ { "id": "t_window_bars_alarm", "fg": 3622, "bg": 3647, "rotates": false },
+ { "id": "t_window_boarded", "fg": 3623, "bg": 3647, "rotates": false },
+ { "id": "t_window_boarded_noglass", "fg": 3624, "bg": 3647, "rotates": false },
+ { "id": "t_window_domestic", "fg": 3619, "bg": 3647, "rotates": false },
+ { "id": "t_window_domestic_taped", "fg": 3620, "bg": 3647, "rotates": false },
+ { "id": "t_window_empty", "fg": 3625, "bg": 3647, "rotates": false },
+ { "id": "t_window_enhanced", "fg": 3626, "bg": 3647, "rotates": false },
+ { "id": "t_window_enhanced_noglass", "fg": 3626 },
+ { "id": "t_window_frame", "fg": 3504, "bg": 3647, "rotates": false },
+ { "id": "t_window_no_curtains", "fg": 3619, "bg": 3647, "rotates": false },
+ { "id": "t_window_no_curtains_open", "fg": 3627, "bg": 3647, "rotates": false },
+ { "id": "t_window_no_curtains_taped", "fg": 3620, "bg": 3647, "rotates": false },
+ { "id": "t_window_open", "fg": 3627, "bg": 3647, "rotates": false },
+ { "id": "t_window_reinforced", "fg": 3628, "bg": 3647, "rotates": false },
+ { "id": "t_window_reinforced_noglass", "fg": 3629, "bg": 3647, "rotates": false },
+ { "id": "t_window_stained_blue", "fg": 3630, "rotates": false },
+ { "id": "t_window_stained_green", "fg": 3631, "rotates": false },
+ { "id": "t_window_stained_red", "fg": 3632, "rotates": false },
+ { "id": "t_window_taped", "fg": 3620, "bg": 3647, "rotates": false },
+ { "id": "t_zebra", "fg": 3701, "rotates": false },
+ { "id": "tr_glass_pit", "fg": 3678, "bg": 3798 },
+ { "id": "tr_glass_pit_season_autumn", "fg": 3678, "bg": 3802 },
+ { "id": "tr_glass_pit_season_summer", "fg": 3678, "bg": 3806 },
+ { "id": "tr_glass_pit_season_winter", "fg": 3678, "bg": 3723 },
+ { "id": "tr_light_snare", "bg": 4750, "rotates": false },
+ { "id": "tr_pit", "fg": 3674, "bg": 3798, "rotates": false },
+ { "id": "tr_pit_season_autumn", "fg": 3674, "bg": 3802 },
+ { "id": "tr_pit_season_summer", "fg": 3674, "bg": 3806 },
+ { "id": "tr_pit_season_winter", "fg": 3674, "bg": 3723 },
+ { "id": "tr_spike_pit", "fg": 3681, "bg": 3798, "rotates": false },
+ { "id": "tr_spike_pit_season_autumn", "fg": 3681, "bg": 3802 },
+ { "id": "tr_spike_pit_season_summer", "fg": 3681, "bg": 3806 },
+ { "id": "tr_spike_pit_season_winter", "fg": 3681, "bg": 3723 },
+ { "id": "t_floor_resin", "fg": 3702 },
+ { "id": "t_resin_hole_c", "fg": 3704, "rotates": false, "bg": 3702 },
+ { "id": "t_resin_hole_o", "fg": 3705, "rotates": false, "bg": 3702 },
{
"id": "t_wall_resin",
- "fg": 3684,
+ "fg": 3721,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3669, "bg": 3665 },
- { "id": "corner", "fg": [ 3671, 3673, 3672, 3670 ], "bg": 3665 },
- { "id": "t_connection", "fg": [ 3681, 3683, 3682, 3680 ], "bg": 3665 },
- { "id": "edge", "fg": [ 3675, 3674 ], "bg": 3665 },
- { "id": "end_piece", "fg": [ 3677, 3679, 3678, 3676 ], "bg": 3665 },
- { "id": "unconnected", "fg": [ 3684, 3684 ], "bg": 3665 }
+ { "id": "center", "fg": 3706, "bg": 3702 },
+ { "id": "corner", "fg": [ 3708, 3710, 3709, 3707 ], "bg": 3702 },
+ { "id": "t_connection", "fg": [ 3718, 3720, 3719, 3717 ], "bg": 3702 },
+ { "id": "edge", "fg": [ 3712, 3711 ], "bg": 3702 },
+ { "id": "end_piece", "fg": [ 3714, 3716, 3715, 3713 ], "bg": 3702 },
+ { "id": "unconnected", "fg": [ 3721, 3721 ], "bg": 3702 }
]
},
{
"id": [ "t_brick_wall", "t_secretdoor_brick_wall_c", "t_sliding_brick_wall_c" ],
- "fg": 3720,
+ "fg": 3757,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3705 },
- { "id": "corner", "fg": [ 3707, 3709, 3708, 3706 ] },
- { "id": "t_connection", "fg": [ 3717, 3719, 3718, 3716 ] },
- { "id": "edge", "fg": [ 3711, 3710 ] },
- { "id": "end_piece", "fg": [ 3713, 3715, 3714, 3712 ] },
- { "id": "unconnected", "fg": [ 3720, 3720 ] }
+ { "id": "center", "fg": 3742 },
+ { "id": "corner", "fg": [ 3744, 3746, 3745, 3743 ] },
+ { "id": "t_connection", "fg": [ 3754, 3756, 3755, 3753 ] },
+ { "id": "edge", "fg": [ 3748, 3747 ] },
+ { "id": "end_piece", "fg": [ 3750, 3752, 3751, 3749 ] },
+ { "id": "unconnected", "fg": [ 3757, 3757 ] }
]
},
{
"id": "t_concrete_railing",
- "fg": 3728,
+ "fg": 3765,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3728, "bg": 3615 },
- { "id": "corner", "fg": [ 3722, 3724, 3723, 3721 ], "bg": 3615 },
- { "id": "t_connection", "fg": [ 3728, 3725, 3728, 3725 ], "bg": 3615 },
- { "id": "edge", "fg": [ 3725, 3728 ], "bg": 3615 },
- { "id": "end_piece", "fg": [ 3726, 3728, 3727, 3728 ], "bg": 3615 },
- { "id": "unconnected", "fg": [ 3728, 3728 ], "bg": 3615 }
+ { "id": "center", "fg": 3765, "bg": 3652 },
+ { "id": "corner", "fg": [ 3759, 3761, 3760, 3758 ], "bg": 3652 },
+ { "id": "t_connection", "fg": [ 3765, 3762, 3765, 3762 ], "bg": 3652 },
+ { "id": "edge", "fg": [ 3762, 3765 ], "bg": 3652 },
+ { "id": "end_piece", "fg": [ 3763, 3765, 3764, 3765 ], "bg": 3652 },
+ { "id": "unconnected", "fg": [ 3765, 3765 ], "bg": 3652 }
]
},
{
"id": [ "t_concrete_wall", "t_secretdoor_concrete_wall_c", "t_sliding_concrete_wall_c" ],
- "fg": 3744,
+ "fg": 3781,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3729 },
- { "id": "corner", "fg": [ 3731, 3733, 3732, 3730 ] },
- { "id": "t_connection", "fg": [ 3741, 3743, 3742, 3740 ] },
- { "id": "edge", "fg": [ 3735, 3734 ] },
- { "id": "end_piece", "fg": [ 3737, 3739, 3738, 3736 ] },
- { "id": "unconnected", "fg": [ 3744, 3744 ] }
+ { "id": "center", "fg": 3766 },
+ { "id": "corner", "fg": [ 3768, 3770, 3769, 3767 ] },
+ { "id": "t_connection", "fg": [ 3778, 3780, 3779, 3777 ] },
+ { "id": "edge", "fg": [ 3772, 3771 ] },
+ { "id": "end_piece", "fg": [ 3774, 3776, 3775, 3773 ] },
+ { "id": "unconnected", "fg": [ 3781, 3781 ] }
]
},
{
"id": "t_concrete_wall_flesh",
- "fg": 3760,
+ "fg": 3797,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3745 },
- { "id": "corner", "fg": [ 3747, 3749, 3748, 3746 ] },
- { "id": "t_connection", "fg": [ 3757, 3759, 3758, 3756 ] },
- { "id": "edge", "fg": [ 3751, 3750 ] },
- { "id": "end_piece", "fg": [ 3753, 3755, 3754, 3752 ] },
- { "id": "unconnected", "fg": [ 3760, 3760 ] }
+ { "id": "center", "fg": 3782 },
+ { "id": "corner", "fg": [ 3784, 3786, 3785, 3783 ] },
+ { "id": "t_connection", "fg": [ 3794, 3796, 3795, 3793 ] },
+ { "id": "edge", "fg": [ 3788, 3787 ] },
+ { "id": "end_piece", "fg": [ 3790, 3792, 3791, 3789 ] },
+ { "id": "unconnected", "fg": [ 3797, 3797 ] }
]
},
{
"id": "t_dirt",
"bg": [
- { "weight": 100, "sprite": 3761 },
- { "weight": 100, "sprite": 3762 },
- { "weight": 100, "sprite": 3763 },
- { "weight": 100, "sprite": 3764 }
+ { "weight": 100, "sprite": 3798 },
+ { "weight": 100, "sprite": 3799 },
+ { "weight": 100, "sprite": 3800 },
+ { "weight": 100, "sprite": 3801 }
]
},
{
"id": "t_dirt_season_autumn",
"bg": [
- { "weight": 100, "sprite": 3765 },
- { "weight": 100, "sprite": 3766 },
- { "weight": 100, "sprite": 3767 },
- { "weight": 100, "sprite": 3768 }
+ { "weight": 100, "sprite": 3802 },
+ { "weight": 100, "sprite": 3803 },
+ { "weight": 100, "sprite": 3804 },
+ { "weight": 100, "sprite": 3805 }
]
},
{
"id": "t_dirt_season_summer",
"bg": [
- { "weight": 100, "sprite": 3769 },
- { "weight": 100, "sprite": 3770 },
- { "weight": 100, "sprite": 3771 },
- { "weight": 100, "sprite": 3772 }
+ { "weight": 100, "sprite": 3806 },
+ { "weight": 100, "sprite": 3807 },
+ { "weight": 100, "sprite": 3808 },
+ { "weight": 100, "sprite": 3809 }
]
},
{
"id": "t_dirt_season_winter",
"bg": [
- { "weight": 100, "sprite": 3773 },
- { "weight": 100, "sprite": 3774 },
- { "weight": 100, "sprite": 3775 },
- { "weight": 100, "sprite": 3776 }
+ { "weight": 100, "sprite": 3810 },
+ { "weight": 100, "sprite": 3811 },
+ { "weight": 100, "sprite": 3812 },
+ { "weight": 100, "sprite": 3813 }
]
},
{
"id": "t_dirtfloor",
- "fg": [ { "weight": 1, "sprite": 3777 }, { "weight": 1, "sprite": 3778 }, { "weight": 1, "sprite": 3779 } ],
+ "fg": [ { "weight": 1, "sprite": 3814 }, { "weight": 1, "sprite": 3815 }, { "weight": 1, "sprite": 3816 } ],
"rotates": false
},
{
"id": "t_dock",
- "fg": 3795,
+ "fg": 3832,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3780 },
- { "id": "corner", "fg": [ 3782, 3784, 3783, 3781 ] },
- { "id": "t_connection", "fg": [ 3792, 3794, 3793, 3791 ] },
- { "id": "edge", "fg": [ 3786, 3785 ] },
- { "id": "end_piece", "fg": [ 3788, 3790, 3789, 3787 ] },
- { "id": "unconnected", "fg": [ 3795, 3795 ] }
+ { "id": "center", "fg": 3817 },
+ { "id": "corner", "fg": [ 3819, 3821, 3820, 3818 ] },
+ { "id": "t_connection", "fg": [ 3829, 3831, 3830, 3828 ] },
+ { "id": "edge", "fg": [ 3823, 3822 ] },
+ { "id": "end_piece", "fg": [ 3825, 3827, 3826, 3824 ] },
+ { "id": "unconnected", "fg": [ 3832, 3832 ] }
]
},
{
"id": "t_dock_deep",
- "fg": 3811,
+ "fg": 3848,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3796 },
- { "id": "corner", "fg": [ 3798, 3800, 3799, 3797 ] },
- { "id": "t_connection", "fg": [ 3808, 3810, 3809, 3807 ] },
- { "id": "edge", "fg": [ 3802, 3801 ] },
- { "id": "end_piece", "fg": [ 3804, 3806, 3805, 3803 ] },
- { "id": "unconnected", "fg": [ 3811, 3811 ] }
+ { "id": "center", "fg": 3833 },
+ { "id": "corner", "fg": [ 3835, 3837, 3836, 3834 ] },
+ { "id": "t_connection", "fg": [ 3845, 3847, 3846, 3844 ] },
+ { "id": "edge", "fg": [ 3839, 3838 ] },
+ { "id": "end_piece", "fg": [ 3841, 3843, 3842, 3840 ] },
+ { "id": "unconnected", "fg": [ 3848, 3848 ] }
]
},
{
"id": "t_fence_metal",
- "fg": 3821,
+ "fg": 3858,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3821, "bg": 3610 },
- { "id": "corner", "fg": [ 3813, 3815, 3814, 3812 ], "bg": 3610 },
- { "id": "t_connection", "fg": [ 3821, 3820, 3821, 3819 ], "bg": 3610 },
- { "id": "edge", "fg": [ 3816, 3821 ], "bg": 3610 },
- { "id": "end_piece", "fg": [ 3817, 3821, 3818, 3821 ], "bg": 3610 },
- { "id": "unconnected", "fg": [ 3821, 3821 ], "bg": 3610 }
+ { "id": "center", "fg": 3858, "bg": 3647 },
+ { "id": "corner", "fg": [ 3850, 3852, 3851, 3849 ], "bg": 3647 },
+ { "id": "t_connection", "fg": [ 3858, 3857, 3858, 3856 ], "bg": 3647 },
+ { "id": "edge", "fg": [ 3853, 3858 ], "bg": 3647 },
+ { "id": "end_piece", "fg": [ 3854, 3858, 3855, 3858 ], "bg": 3647 },
+ { "id": "unconnected", "fg": [ 3858, 3858 ], "bg": 3647 }
]
},
{
"id": "t_fence_rope",
- "fg": 3832,
+ "fg": 3869,
"multitile": true,
"additional_tiles": [
{
"id": "center",
- "fg": 3832,
+ "fg": 3869,
"bg": [
- { "weight": 100, "sprite": 3761 },
- { "weight": 100, "sprite": 3762 },
- { "weight": 100, "sprite": 3763 },
- { "weight": 100, "sprite": 3764 }
+ { "weight": 100, "sprite": 3798 },
+ { "weight": 100, "sprite": 3799 },
+ { "weight": 100, "sprite": 3800 },
+ { "weight": 100, "sprite": 3801 }
]
},
{
"id": "corner",
- "fg": [ 3823, 3825, 3824, 3822 ],
+ "fg": [ 3860, 3862, 3861, 3859 ],
"bg": [
- { "weight": 100, "sprite": 3761 },
- { "weight": 100, "sprite": 3762 },
- { "weight": 100, "sprite": 3763 },
- { "weight": 100, "sprite": 3764 }
+ { "weight": 100, "sprite": 3798 },
+ { "weight": 100, "sprite": 3799 },
+ { "weight": 100, "sprite": 3800 },
+ { "weight": 100, "sprite": 3801 }
]
},
{
"id": "t_connection",
- "fg": [ 3826, 3827, 3826, 3827 ],
+ "fg": [ 3863, 3864, 3863, 3864 ],
"bg": [
- { "weight": 100, "sprite": 3761 },
- { "weight": 100, "sprite": 3762 },
- { "weight": 100, "sprite": 3763 },
- { "weight": 100, "sprite": 3764 }
+ { "weight": 100, "sprite": 3798 },
+ { "weight": 100, "sprite": 3799 },
+ { "weight": 100, "sprite": 3800 },
+ { "weight": 100, "sprite": 3801 }
]
},
{
"id": "edge",
- "fg": [ 3827, 3826 ],
+ "fg": [ 3864, 3863 ],
"bg": [
- { "weight": 100, "sprite": 3761 },
- { "weight": 100, "sprite": 3762 },
- { "weight": 100, "sprite": 3763 },
- { "weight": 100, "sprite": 3764 }
+ { "weight": 100, "sprite": 3798 },
+ { "weight": 100, "sprite": 3799 },
+ { "weight": 100, "sprite": 3800 },
+ { "weight": 100, "sprite": 3801 }
]
},
{
"id": "end_piece",
- "fg": [ 3829, 3831, 3830, 3828 ],
+ "fg": [ 3866, 3868, 3867, 3865 ],
"bg": [
- { "weight": 100, "sprite": 3761 },
- { "weight": 100, "sprite": 3762 },
- { "weight": 100, "sprite": 3763 },
- { "weight": 100, "sprite": 3764 }
+ { "weight": 100, "sprite": 3798 },
+ { "weight": 100, "sprite": 3799 },
+ { "weight": 100, "sprite": 3800 },
+ { "weight": 100, "sprite": 3801 }
]
},
{
"id": "unconnected",
- "fg": [ 3832, 3832 ],
+ "fg": [ 3869, 3869 ],
"bg": [
- { "weight": 100, "sprite": 3761 },
- { "weight": 100, "sprite": 3762 },
- { "weight": 100, "sprite": 3763 },
- { "weight": 100, "sprite": 3764 }
+ { "weight": 100, "sprite": 3798 },
+ { "weight": 100, "sprite": 3799 },
+ { "weight": 100, "sprite": 3800 },
+ { "weight": 100, "sprite": 3801 }
]
}
]
},
{
"id": "t_fence_rope_season_summer",
- "fg": 3832,
+ "fg": 3869,
"multitile": true,
"additional_tiles": [
{
"id": "center",
- "fg": 3832,
+ "fg": 3869,
"bg": [
- { "weight": 100, "sprite": 3769 },
- { "weight": 100, "sprite": 3770 },
- { "weight": 100, "sprite": 3771 },
- { "weight": 100, "sprite": 3772 }
+ { "weight": 100, "sprite": 3806 },
+ { "weight": 100, "sprite": 3807 },
+ { "weight": 100, "sprite": 3808 },
+ { "weight": 100, "sprite": 3809 }
]
},
{
"id": "corner",
- "fg": [ 3823, 3825, 3824, 3822 ],
+ "fg": [ 3860, 3862, 3861, 3859 ],
"bg": [
- { "weight": 100, "sprite": 3769 },
- { "weight": 100, "sprite": 3770 },
- { "weight": 100, "sprite": 3771 },
- { "weight": 100, "sprite": 3772 }
+ { "weight": 100, "sprite": 3806 },
+ { "weight": 100, "sprite": 3807 },
+ { "weight": 100, "sprite": 3808 },
+ { "weight": 100, "sprite": 3809 }
]
},
{
"id": "t_connection",
- "fg": [ 3826, 3827, 3826, 3827 ],
+ "fg": [ 3863, 3864, 3863, 3864 ],
"bg": [
- { "weight": 100, "sprite": 3769 },
- { "weight": 100, "sprite": 3770 },
- { "weight": 100, "sprite": 3771 },
- { "weight": 100, "sprite": 3772 }
+ { "weight": 100, "sprite": 3806 },
+ { "weight": 100, "sprite": 3807 },
+ { "weight": 100, "sprite": 3808 },
+ { "weight": 100, "sprite": 3809 }
]
},
{
"id": "edge",
- "fg": [ 3827, 3826 ],
+ "fg": [ 3864, 3863 ],
"bg": [
- { "weight": 100, "sprite": 3769 },
- { "weight": 100, "sprite": 3770 },
- { "weight": 100, "sprite": 3771 },
- { "weight": 100, "sprite": 3772 }
+ { "weight": 100, "sprite": 3806 },
+ { "weight": 100, "sprite": 3807 },
+ { "weight": 100, "sprite": 3808 },
+ { "weight": 100, "sprite": 3809 }
]
},
{
"id": "end_piece",
- "fg": [ 3829, 3831, 3830, 3828 ],
+ "fg": [ 3866, 3868, 3867, 3865 ],
"bg": [
- { "weight": 100, "sprite": 3769 },
- { "weight": 100, "sprite": 3770 },
- { "weight": 100, "sprite": 3771 },
- { "weight": 100, "sprite": 3772 }
+ { "weight": 100, "sprite": 3806 },
+ { "weight": 100, "sprite": 3807 },
+ { "weight": 100, "sprite": 3808 },
+ { "weight": 100, "sprite": 3809 }
]
},
{
"id": "unconnected",
- "fg": [ 3832, 3832 ],
+ "fg": [ 3869, 3869 ],
"bg": [
- { "weight": 100, "sprite": 3769 },
- { "weight": 100, "sprite": 3770 },
- { "weight": 100, "sprite": 3771 },
- { "weight": 100, "sprite": 3772 }
+ { "weight": 100, "sprite": 3806 },
+ { "weight": 100, "sprite": 3807 },
+ { "weight": 100, "sprite": 3808 },
+ { "weight": 100, "sprite": 3809 }
]
}
]
},
{
"id": "t_fence_rope_season_autumn",
- "fg": 3832,
+ "fg": 3869,
"multitile": true,
"additional_tiles": [
{
"id": "center",
- "fg": 3832,
+ "fg": 3869,
"bg": [
- { "weight": 100, "sprite": 3765 },
- { "weight": 100, "sprite": 3766 },
- { "weight": 100, "sprite": 3767 },
- { "weight": 100, "sprite": 3768 }
+ { "weight": 100, "sprite": 3802 },
+ { "weight": 100, "sprite": 3803 },
+ { "weight": 100, "sprite": 3804 },
+ { "weight": 100, "sprite": 3805 }
]
},
{
"id": "corner",
- "fg": [ 3823, 3825, 3824, 3822 ],
+ "fg": [ 3860, 3862, 3861, 3859 ],
"bg": [
- { "weight": 100, "sprite": 3765 },
- { "weight": 100, "sprite": 3766 },
- { "weight": 100, "sprite": 3767 },
- { "weight": 100, "sprite": 3768 }
+ { "weight": 100, "sprite": 3802 },
+ { "weight": 100, "sprite": 3803 },
+ { "weight": 100, "sprite": 3804 },
+ { "weight": 100, "sprite": 3805 }
]
},
{
"id": "t_connection",
- "fg": [ 3826, 3827, 3826, 3827 ],
+ "fg": [ 3863, 3864, 3863, 3864 ],
"bg": [
- { "weight": 100, "sprite": 3765 },
- { "weight": 100, "sprite": 3766 },
- { "weight": 100, "sprite": 3767 },
- { "weight": 100, "sprite": 3768 }
+ { "weight": 100, "sprite": 3802 },
+ { "weight": 100, "sprite": 3803 },
+ { "weight": 100, "sprite": 3804 },
+ { "weight": 100, "sprite": 3805 }
]
},
{
"id": "edge",
- "fg": [ 3827, 3826 ],
+ "fg": [ 3864, 3863 ],
"bg": [
- { "weight": 100, "sprite": 3765 },
- { "weight": 100, "sprite": 3766 },
- { "weight": 100, "sprite": 3767 },
- { "weight": 100, "sprite": 3768 }
+ { "weight": 100, "sprite": 3802 },
+ { "weight": 100, "sprite": 3803 },
+ { "weight": 100, "sprite": 3804 },
+ { "weight": 100, "sprite": 3805 }
]
},
{
"id": "end_piece",
- "fg": [ 3829, 3831, 3830, 3828 ],
+ "fg": [ 3866, 3868, 3867, 3865 ],
"bg": [
- { "weight": 100, "sprite": 3765 },
- { "weight": 100, "sprite": 3766 },
- { "weight": 100, "sprite": 3767 },
- { "weight": 100, "sprite": 3768 }
+ { "weight": 100, "sprite": 3802 },
+ { "weight": 100, "sprite": 3803 },
+ { "weight": 100, "sprite": 3804 },
+ { "weight": 100, "sprite": 3805 }
]
},
{
"id": "unconnected",
- "fg": [ 3832, 3832 ],
+ "fg": [ 3869, 3869 ],
"bg": [
- { "weight": 100, "sprite": 3765 },
- { "weight": 100, "sprite": 3766 },
- { "weight": 100, "sprite": 3767 },
- { "weight": 100, "sprite": 3768 }
+ { "weight": 100, "sprite": 3802 },
+ { "weight": 100, "sprite": 3803 },
+ { "weight": 100, "sprite": 3804 },
+ { "weight": 100, "sprite": 3805 }
]
}
]
},
{
"id": "t_fence_rope_season_winter",
- "fg": 3832,
+ "fg": 3869,
"multitile": true,
"additional_tiles": [
{
"id": "center",
- "fg": 3832,
+ "fg": 3869,
"bg": [
- { "weight": 100, "sprite": 3773 },
- { "weight": 100, "sprite": 3774 },
- { "weight": 100, "sprite": 3775 },
- { "weight": 100, "sprite": 3776 }
+ { "weight": 100, "sprite": 3810 },
+ { "weight": 100, "sprite": 3811 },
+ { "weight": 100, "sprite": 3812 },
+ { "weight": 100, "sprite": 3813 }
]
},
{
"id": "corner",
- "fg": [ 3823, 3825, 3824, 3822 ],
+ "fg": [ 3860, 3862, 3861, 3859 ],
"bg": [
- { "weight": 100, "sprite": 3773 },
- { "weight": 100, "sprite": 3774 },
- { "weight": 100, "sprite": 3775 },
- { "weight": 100, "sprite": 3776 }
+ { "weight": 100, "sprite": 3810 },
+ { "weight": 100, "sprite": 3811 },
+ { "weight": 100, "sprite": 3812 },
+ { "weight": 100, "sprite": 3813 }
]
},
{
"id": "t_connection",
- "fg": [ 3826, 3827, 3826, 3827 ],
+ "fg": [ 3863, 3864, 3863, 3864 ],
"bg": [
- { "weight": 100, "sprite": 3773 },
- { "weight": 100, "sprite": 3774 },
- { "weight": 100, "sprite": 3775 },
- { "weight": 100, "sprite": 3776 }
+ { "weight": 100, "sprite": 3810 },
+ { "weight": 100, "sprite": 3811 },
+ { "weight": 100, "sprite": 3812 },
+ { "weight": 100, "sprite": 3813 }
]
},
{
"id": "edge",
- "fg": [ 3827, 3826 ],
+ "fg": [ 3864, 3863 ],
"bg": [
- { "weight": 100, "sprite": 3773 },
- { "weight": 100, "sprite": 3774 },
- { "weight": 100, "sprite": 3775 },
- { "weight": 100, "sprite": 3776 }
+ { "weight": 100, "sprite": 3810 },
+ { "weight": 100, "sprite": 3811 },
+ { "weight": 100, "sprite": 3812 },
+ { "weight": 100, "sprite": 3813 }
]
},
{
"id": "end_piece",
- "fg": [ 3829, 3831, 3830, 3828 ],
+ "fg": [ 3866, 3868, 3867, 3865 ],
"bg": [
- { "weight": 100, "sprite": 3773 },
- { "weight": 100, "sprite": 3774 },
- { "weight": 100, "sprite": 3775 },
- { "weight": 100, "sprite": 3776 }
+ { "weight": 100, "sprite": 3810 },
+ { "weight": 100, "sprite": 3811 },
+ { "weight": 100, "sprite": 3812 },
+ { "weight": 100, "sprite": 3813 }
]
},
{
"id": "unconnected",
- "fg": [ 3832, 3832 ],
+ "fg": [ 3869, 3869 ],
"bg": [
- { "weight": 100, "sprite": 3773 },
- { "weight": 100, "sprite": 3774 },
- { "weight": 100, "sprite": 3775 },
- { "weight": 100, "sprite": 3776 }
+ { "weight": 100, "sprite": 3810 },
+ { "weight": 100, "sprite": 3811 },
+ { "weight": 100, "sprite": 3812 },
+ { "weight": 100, "sprite": 3813 }
]
}
]
},
{
"id": "t_glass_railing",
- "fg": 3847,
+ "fg": 3884,
"multitile": true,
"additional_tiles": [
- { "id": "corner", "fg": [ 3834, 3836, 3835, 3833 ], "bg": 3609 },
- { "id": "t_connection", "fg": [ 3844, 3846, 3845, 3843 ], "bg": 3609 },
- { "id": "edge", "fg": [ 3838, 3837 ], "bg": 3609 },
- { "id": "end_piece", "fg": [ 3840, 3842, 3841, 3839 ], "bg": 3609 },
- { "id": "unconnected", "fg": [ 3847, 3847 ], "bg": 3609 }
+ { "id": "corner", "fg": [ 3871, 3873, 3872, 3870 ], "bg": 3646 },
+ { "id": "t_connection", "fg": [ 3881, 3883, 3882, 3880 ], "bg": 3646 },
+ { "id": "edge", "fg": [ 3875, 3874 ], "bg": 3646 },
+ { "id": "end_piece", "fg": [ 3877, 3879, 3878, 3876 ], "bg": 3646 },
+ { "id": "unconnected", "fg": [ 3884, 3884 ], "bg": 3646 }
]
},
{
"id": "t_grass",
"multitile": true,
- "fg": 3866,
- "bg": 3761,
+ "fg": 3903,
+ "bg": 3798,
"additional_tiles": [
{
"id": "center",
- "bg": 3761,
+ "bg": 3798,
"fg": [
- { "weight": 1, "sprite": 3848 },
- { "weight": 1, "sprite": 3849 },
- { "weight": 1, "sprite": 3850 },
- { "weight": 1, "sprite": 3851 }
+ { "weight": 1, "sprite": 3885 },
+ { "weight": 1, "sprite": 3886 },
+ { "weight": 1, "sprite": 3887 },
+ { "weight": 1, "sprite": 3888 }
]
},
- { "id": "corner", "bg": 3761, "fg": [ 3853, 3855, 3854, 3852 ] },
- { "id": "t_connection", "bg": 3761, "fg": [ 3863, 3865, 3864, 3862 ] },
- { "id": "edge", "bg": 3761, "fg": [ 3857, 3856 ] },
- { "id": "end_piece", "bg": 3761, "fg": [ 3859, 3861, 3860, 3858 ] },
- { "bg": 3761, "id": "unconnected", "fg": 3866 }
+ { "id": "corner", "bg": 3798, "fg": [ 3890, 3892, 3891, 3889 ] },
+ { "id": "t_connection", "bg": 3798, "fg": [ 3900, 3902, 3901, 3899 ] },
+ { "id": "edge", "bg": 3798, "fg": [ 3894, 3893 ] },
+ { "id": "end_piece", "bg": 3798, "fg": [ 3896, 3898, 3897, 3895 ] },
+ { "bg": 3798, "id": "unconnected", "fg": 3903 }
]
},
{
"id": "t_grass_season_summer",
"multitile": true,
- "fg": 3904,
- "bg": 3769,
+ "fg": 3941,
+ "bg": 3806,
"additional_tiles": [
{
"id": "center",
- "bg": 3769,
+ "bg": 3806,
"fg": [
- { "weight": 1, "sprite": 3886 },
- { "weight": 1, "sprite": 3887 },
- { "weight": 1, "sprite": 3888 },
- { "weight": 1, "sprite": 3889 }
+ { "weight": 1, "sprite": 3923 },
+ { "weight": 1, "sprite": 3924 },
+ { "weight": 1, "sprite": 3925 },
+ { "weight": 1, "sprite": 3926 }
]
},
- { "id": "corner", "bg": 3769, "fg": [ 3891, 3893, 3892, 3890 ] },
- { "id": "t_connection", "bg": 3769, "fg": [ 3901, 3903, 3902, 3900 ] },
- { "id": "edge", "bg": 3769, "fg": [ 3895, 3894 ] },
- { "id": "end_piece", "bg": 3769, "fg": [ 3897, 3899, 3898, 3896 ] },
- { "bg": 3769, "id": "unconnected", "fg": 3904 }
+ { "id": "corner", "bg": 3806, "fg": [ 3928, 3930, 3929, 3927 ] },
+ { "id": "t_connection", "bg": 3806, "fg": [ 3938, 3940, 3939, 3937 ] },
+ { "id": "edge", "bg": 3806, "fg": [ 3932, 3931 ] },
+ { "id": "end_piece", "bg": 3806, "fg": [ 3934, 3936, 3935, 3933 ] },
+ { "bg": 3806, "id": "unconnected", "fg": 3941 }
]
},
{
"id": "t_grass_season_autumn",
"multitile": true,
- "fg": 3885,
- "bg": 3765,
+ "fg": 3922,
+ "bg": 3802,
"additional_tiles": [
{
"id": "center",
- "bg": 3765,
+ "bg": 3802,
"fg": [
- { "weight": 1, "sprite": 3867 },
- { "weight": 1, "sprite": 3868 },
- { "weight": 1, "sprite": 3869 },
- { "weight": 1, "sprite": 3870 }
+ { "weight": 1, "sprite": 3904 },
+ { "weight": 1, "sprite": 3905 },
+ { "weight": 1, "sprite": 3906 },
+ { "weight": 1, "sprite": 3907 }
]
},
- { "id": "corner", "bg": 3765, "fg": [ 3872, 3874, 3873, 3871 ] },
- { "id": "t_connection", "bg": 3765, "fg": [ 3882, 3884, 3883, 3881 ] },
- { "id": "edge", "bg": 3765, "fg": [ 3876, 3875 ] },
- { "id": "end_piece", "bg": 3765, "fg": [ 3878, 3880, 3879, 3877 ] },
- { "bg": 3765, "id": "unconnected", "fg": 3885 }
+ { "id": "corner", "bg": 3802, "fg": [ 3909, 3911, 3910, 3908 ] },
+ { "id": "t_connection", "bg": 3802, "fg": [ 3919, 3921, 3920, 3918 ] },
+ { "id": "edge", "bg": 3802, "fg": [ 3913, 3912 ] },
+ { "id": "end_piece", "bg": 3802, "fg": [ 3915, 3917, 3916, 3914 ] },
+ { "bg": 3802, "id": "unconnected", "fg": 3922 }
]
},
{
"id": "t_grass_season_winter",
"multitile": true,
- "fg": 3704,
- "bg": 3773,
+ "fg": 3741,
+ "bg": 3810,
"additional_tiles": [
{
"id": "center",
- "bg": 3773,
+ "bg": 3810,
"fg": [
- { "weight": 1, "sprite": 3686 },
- { "weight": 1, "sprite": 3687 },
- { "weight": 1, "sprite": 3688 },
- { "weight": 1, "sprite": 3689 }
+ { "weight": 1, "sprite": 3723 },
+ { "weight": 1, "sprite": 3724 },
+ { "weight": 1, "sprite": 3725 },
+ { "weight": 1, "sprite": 3726 }
]
},
- { "id": "corner", "bg": 3773, "fg": [ 3691, 3693, 3692, 3690 ] },
- { "id": "t_connection", "bg": 3773, "fg": [ 3701, 3703, 3702, 3700 ] },
- { "id": "edge", "bg": 3773, "fg": [ 3695, 3694 ] },
- { "id": "end_piece", "bg": 3773, "fg": [ 3697, 3699, 3698, 3696 ] },
- { "bg": 3773, "id": "unconnected", "fg": 3704 }
+ { "id": "corner", "bg": 3810, "fg": [ 3728, 3730, 3729, 3727 ] },
+ { "id": "t_connection", "bg": 3810, "fg": [ 3738, 3740, 3739, 3737 ] },
+ { "id": "edge", "bg": 3810, "fg": [ 3732, 3731 ] },
+ { "id": "end_piece", "bg": 3810, "fg": [ 3734, 3736, 3735, 3733 ] },
+ { "bg": 3810, "id": "unconnected", "fg": 3741 }
]
},
{
"id": "t_grass_dead",
"multitile": true,
- "fg": 3920,
- "bg": 3761,
+ "fg": 3957,
+ "bg": 3798,
"additional_tiles": [
- { "id": "center", "bg": 3761, "fg": 3905 },
- { "id": "corner", "bg": 3761, "fg": [ 3907, 3909, 3908, 3906 ] },
- { "id": "t_connection", "bg": 3761, "fg": [ 3917, 3919, 3918, 3916 ] },
- { "id": "edge", "bg": 3761, "fg": [ 3911, 3910 ] },
- { "id": "end_piece", "bg": 3761, "fg": [ 3913, 3915, 3914, 3912 ] },
- { "bg": 3761, "id": "unconnected", "fg": 3920 }
+ { "id": "center", "bg": 3798, "fg": 3942 },
+ { "id": "corner", "bg": 3798, "fg": [ 3944, 3946, 3945, 3943 ] },
+ { "id": "t_connection", "bg": 3798, "fg": [ 3954, 3956, 3955, 3953 ] },
+ { "id": "edge", "bg": 3798, "fg": [ 3948, 3947 ] },
+ { "id": "end_piece", "bg": 3798, "fg": [ 3950, 3952, 3951, 3949 ] },
+ { "bg": 3798, "id": "unconnected", "fg": 3957 }
]
},
{
"id": "t_grass_dead_season_summer",
"multitile": true,
- "fg": 3952,
- "bg": 3769,
+ "fg": 3989,
+ "bg": 3806,
"additional_tiles": [
- { "id": "center", "bg": 3769, "fg": 3937 },
- { "id": "corner", "bg": 3769, "fg": [ 3939, 3941, 3940, 3938 ] },
- { "id": "t_connection", "bg": 3769, "fg": [ 3949, 3951, 3950, 3948 ] },
- { "id": "edge", "bg": 3769, "fg": [ 3943, 3942 ] },
- { "id": "end_piece", "bg": 3769, "fg": [ 3945, 3947, 3946, 3944 ] },
- { "bg": 3769, "id": "unconnected", "fg": 3952 }
+ { "id": "center", "bg": 3806, "fg": 3974 },
+ { "id": "corner", "bg": 3806, "fg": [ 3976, 3978, 3977, 3975 ] },
+ { "id": "t_connection", "bg": 3806, "fg": [ 3986, 3988, 3987, 3985 ] },
+ { "id": "edge", "bg": 3806, "fg": [ 3980, 3979 ] },
+ { "id": "end_piece", "bg": 3806, "fg": [ 3982, 3984, 3983, 3981 ] },
+ { "bg": 3806, "id": "unconnected", "fg": 3989 }
]
},
{
"id": "t_grass_dead_season_autumn",
"multitile": true,
- "fg": 3936,
- "bg": 3765,
+ "fg": 3973,
+ "bg": 3802,
"additional_tiles": [
- { "id": "center", "bg": 3765, "fg": 3921 },
- { "id": "corner", "bg": 3765, "fg": [ 3923, 3925, 3924, 3922 ] },
- { "id": "t_connection", "bg": 3765, "fg": [ 3933, 3935, 3934, 3932 ] },
- { "id": "edge", "bg": 3765, "fg": [ 3927, 3926 ] },
- { "id": "end_piece", "bg": 3765, "fg": [ 3929, 3931, 3930, 3928 ] },
- { "bg": 3765, "id": "unconnected", "fg": 3936 }
+ { "id": "center", "bg": 3802, "fg": 3958 },
+ { "id": "corner", "bg": 3802, "fg": [ 3960, 3962, 3961, 3959 ] },
+ { "id": "t_connection", "bg": 3802, "fg": [ 3970, 3972, 3971, 3969 ] },
+ { "id": "edge", "bg": 3802, "fg": [ 3964, 3963 ] },
+ { "id": "end_piece", "bg": 3802, "fg": [ 3966, 3968, 3967, 3965 ] },
+ { "bg": 3802, "id": "unconnected", "fg": 3973 }
]
},
{
"id": "t_grass_dead_season_winter",
"multitile": true,
- "fg": 3704,
- "bg": 3773,
+ "fg": 3741,
+ "bg": 3810,
"additional_tiles": [
{
"id": "center",
- "bg": 3773,
+ "bg": 3810,
"fg": [
- { "weight": 1, "sprite": 3686 },
- { "weight": 1, "sprite": 3687 },
- { "weight": 1, "sprite": 3688 },
- { "weight": 1, "sprite": 3689 }
+ { "weight": 1, "sprite": 3723 },
+ { "weight": 1, "sprite": 3724 },
+ { "weight": 1, "sprite": 3725 },
+ { "weight": 1, "sprite": 3726 }
]
},
- { "id": "corner", "bg": 3773, "fg": [ 3691, 3693, 3692, 3690 ] },
- { "id": "t_connection", "bg": 3773, "fg": [ 3701, 3703, 3702, 3700 ] },
- { "id": "edge", "bg": 3773, "fg": [ 3695, 3694 ] },
- { "id": "end_piece", "bg": 3773, "fg": [ 3697, 3699, 3698, 3696 ] },
- { "bg": 3773, "id": "unconnected", "fg": 3704 }
+ { "id": "corner", "bg": 3810, "fg": [ 3728, 3730, 3729, 3727 ] },
+ { "id": "t_connection", "bg": 3810, "fg": [ 3738, 3740, 3739, 3737 ] },
+ { "id": "edge", "bg": 3810, "fg": [ 3732, 3731 ] },
+ { "id": "end_piece", "bg": 3810, "fg": [ 3734, 3736, 3735, 3733 ] },
+ { "bg": 3810, "id": "unconnected", "fg": 3741 }
]
},
{
"id": "f_grass_long",
"multitile": true,
- "fg": 3968,
+ "fg": 4005,
"additional_tiles": [
- { "id": "center", "fg": 3953 },
- { "id": "corner", "fg": [ 3955, 3957, 3956, 3954 ] },
- { "id": "t_connection", "fg": [ 3965, 3967, 3966, 3964 ] },
- { "id": "edge", "fg": [ 3959, 3958 ] },
- { "id": "end_piece", "fg": [ 3961, 3963, 3962, 3960 ] },
- { "id": "unconnected", "fg": 3968 }
+ { "id": "center", "fg": 3990 },
+ { "id": "corner", "fg": [ 3992, 3994, 3993, 3991 ] },
+ { "id": "t_connection", "fg": [ 4002, 4004, 4003, 4001 ] },
+ { "id": "edge", "fg": [ 3996, 3995 ] },
+ { "id": "end_piece", "fg": [ 3998, 4000, 3999, 3997 ] },
+ { "id": "unconnected", "fg": 4005 }
]
},
{
"id": "f_grass_long_season_autumn",
"multitile": true,
- "fg": 3984,
+ "fg": 4021,
"additional_tiles": [
- { "id": "center", "fg": 3969 },
- { "id": "corner", "fg": [ 3971, 3973, 3972, 3970 ] },
- { "id": "t_connection", "fg": [ 3981, 3983, 3982, 3980 ] },
- { "id": "edge", "fg": [ 3975, 3974 ] },
- { "id": "end_piece", "fg": [ 3977, 3979, 3978, 3976 ] },
- { "id": "unconnected", "fg": 3984 }
+ { "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": "f_grass_long_season_summer",
"multitile": true,
- "fg": 4000,
+ "fg": 4037,
"additional_tiles": [
- { "id": "center", "fg": 3985 },
- { "id": "corner", "fg": [ 3987, 3989, 3988, 3986 ] },
- { "id": "t_connection", "fg": [ 3997, 3999, 3998, 3996 ] },
- { "id": "edge", "fg": [ 3991, 3990 ] },
- { "id": "end_piece", "fg": [ 3993, 3995, 3994, 3992 ] },
- { "id": "unconnected", "fg": 4000 }
+ { "id": "center", "fg": 4022 },
+ { "id": "corner", "fg": [ 4024, 4026, 4025, 4023 ] },
+ { "id": "t_connection", "fg": [ 4034, 4036, 4035, 4033 ] },
+ { "id": "edge", "fg": [ 4028, 4027 ] },
+ { "id": "end_piece", "fg": [ 4030, 4032, 4031, 4029 ] },
+ { "id": "unconnected", "fg": 4037 }
]
},
{
"id": "t_grass_long",
"multitile": true,
- "fg": 3968,
- "bg": 3761,
+ "fg": 4005,
+ "bg": 3798,
"additional_tiles": [
- { "id": "center", "bg": 3761, "fg": 3953 },
- { "id": "corner", "bg": 3761, "fg": [ 3955, 3957, 3956, 3954 ] },
- { "id": "t_connection", "bg": 3761, "fg": [ 3965, 3967, 3966, 3964 ] },
- { "id": "edge", "bg": 3761, "fg": [ 3959, 3958 ] },
- { "id": "end_piece", "bg": 3761, "fg": [ 3961, 3963, 3962, 3960 ] },
- { "bg": 3761, "id": "unconnected", "fg": 3968 }
+ { "id": "center", "bg": 3798, "fg": 3990 },
+ { "id": "corner", "bg": 3798, "fg": [ 3992, 3994, 3993, 3991 ] },
+ { "id": "t_connection", "bg": 3798, "fg": [ 4002, 4004, 4003, 4001 ] },
+ { "id": "edge", "bg": 3798, "fg": [ 3996, 3995 ] },
+ { "id": "end_piece", "bg": 3798, "fg": [ 3998, 4000, 3999, 3997 ] },
+ { "bg": 3798, "id": "unconnected", "fg": 4005 }
]
},
{
"id": "t_grass_long_season_autumn",
"multitile": true,
- "fg": 3984,
- "bg": 3765,
+ "fg": 4021,
+ "bg": 3802,
"additional_tiles": [
- { "id": "center", "bg": 3765, "fg": 3969 },
- { "id": "corner", "bg": 3765, "fg": [ 3971, 3973, 3972, 3970 ] },
- { "id": "t_connection", "bg": 3765, "fg": [ 3981, 3983, 3982, 3980 ] },
- { "id": "edge", "bg": 3765, "fg": [ 3975, 3974 ] },
- { "id": "end_piece", "bg": 3765, "fg": [ 3977, 3979, 3978, 3976 ] },
- { "bg": 3765, "id": "unconnected", "fg": 3984 }
+ { "id": "center", "bg": 3802, "fg": 4006 },
+ { "id": "corner", "bg": 3802, "fg": [ 4008, 4010, 4009, 4007 ] },
+ { "id": "t_connection", "bg": 3802, "fg": [ 4018, 4020, 4019, 4017 ] },
+ { "id": "edge", "bg": 3802, "fg": [ 4012, 4011 ] },
+ { "id": "end_piece", "bg": 3802, "fg": [ 4014, 4016, 4015, 4013 ] },
+ { "bg": 3802, "id": "unconnected", "fg": 4021 }
]
},
{
"id": "t_grass_long_season_summer",
"multitile": true,
- "fg": 4000,
- "bg": 3769,
+ "fg": 4037,
+ "bg": 3806,
"additional_tiles": [
- { "id": "center", "bg": 3769, "fg": 3985 },
- { "id": "corner", "bg": 3769, "fg": [ 3987, 3989, 3988, 3986 ] },
- { "id": "t_connection", "bg": 3769, "fg": [ 3997, 3999, 3998, 3996 ] },
- { "id": "edge", "bg": 3769, "fg": [ 3991, 3990 ] },
- { "id": "end_piece", "bg": 3769, "fg": [ 3993, 3995, 3994, 3992 ] },
- { "bg": 3769, "id": "unconnected", "fg": 4000 }
+ { "id": "center", "bg": 3806, "fg": 4022 },
+ { "id": "corner", "bg": 3806, "fg": [ 4024, 4026, 4025, 4023 ] },
+ { "id": "t_connection", "bg": 3806, "fg": [ 4034, 4036, 4035, 4033 ] },
+ { "id": "edge", "bg": 3806, "fg": [ 4028, 4027 ] },
+ { "id": "end_piece", "bg": 3806, "fg": [ 4030, 4032, 4031, 4029 ] },
+ { "bg": 3806, "id": "unconnected", "fg": 4037 }
]
},
- { "id": "t_grass_long_season_winter", "fg": 3685 },
+ { "id": "t_grass_long_season_winter", "fg": 3722 },
{
"id": "f_grass_tall",
"multitile": true,
- "fg": 4016,
+ "fg": 4053,
"additional_tiles": [
- { "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": "center", "fg": 4038 },
+ { "id": "corner", "fg": [ 4040, 4042, 4041, 4039 ] },
+ { "id": "t_connection", "fg": [ 4050, 4052, 4051, 4049 ] },
+ { "id": "edge", "fg": [ 4044, 4043 ] },
+ { "id": "end_piece", "fg": [ 4046, 4048, 4047, 4045 ] },
+ { "id": "unconnected", "fg": 4053 }
]
},
{
"id": "f_grass_tall_season_summer",
"multitile": true,
- "fg": 4048,
+ "fg": 4085,
"additional_tiles": [
- { "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": "center", "fg": 4070 },
+ { "id": "corner", "fg": [ 4072, 4074, 4073, 4071 ] },
+ { "id": "t_connection", "fg": [ 4082, 4084, 4083, 4081 ] },
+ { "id": "edge", "fg": [ 4076, 4075 ] },
+ { "id": "end_piece", "fg": [ 4078, 4080, 4079, 4077 ] },
+ { "id": "unconnected", "fg": 4085 }
]
},
{
"id": "f_grass_tall_season_autumn",
"multitile": true,
- "fg": 4032,
+ "fg": 4069,
"additional_tiles": [
- { "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": "center", "fg": 4054 },
+ { "id": "corner", "fg": [ 4056, 4058, 4057, 4055 ] },
+ { "id": "t_connection", "fg": [ 4066, 4068, 4067, 4065 ] },
+ { "id": "edge", "fg": [ 4060, 4059 ] },
+ { "id": "end_piece", "fg": [ 4062, 4064, 4063, 4061 ] },
+ { "id": "unconnected", "fg": 4069 }
]
},
{
"id": "t_grass_tall",
"multitile": true,
- "fg": 4016,
- "bg": 3761,
+ "fg": 4053,
+ "bg": 3798,
"additional_tiles": [
- { "id": "center", "bg": 3761, "fg": 4001 },
- { "id": "corner", "bg": 3761, "fg": [ 4003, 4005, 4004, 4002 ] },
- { "id": "t_connection", "bg": 3761, "fg": [ 4013, 4015, 4014, 4012 ] },
- { "id": "edge", "bg": 3761, "fg": [ 4007, 4006 ] },
- { "id": "end_piece", "bg": 3761, "fg": [ 4009, 4011, 4010, 4008 ] },
- { "bg": 3761, "id": "unconnected", "fg": 4016 }
+ { "id": "center", "bg": 3798, "fg": 4038 },
+ { "id": "corner", "bg": 3798, "fg": [ 4040, 4042, 4041, 4039 ] },
+ { "id": "t_connection", "bg": 3798, "fg": [ 4050, 4052, 4051, 4049 ] },
+ { "id": "edge", "bg": 3798, "fg": [ 4044, 4043 ] },
+ { "id": "end_piece", "bg": 3798, "fg": [ 4046, 4048, 4047, 4045 ] },
+ { "bg": 3798, "id": "unconnected", "fg": 4053 }
]
},
{
"id": "t_grass_tall_season_summer",
"multitile": true,
- "fg": 4048,
- "bg": 3769,
+ "fg": 4085,
+ "bg": 3806,
"additional_tiles": [
- { "id": "center", "bg": 3769, "fg": 4033 },
- { "id": "corner", "bg": 3769, "fg": [ 4035, 4037, 4036, 4034 ] },
- { "id": "t_connection", "bg": 3769, "fg": [ 4045, 4047, 4046, 4044 ] },
- { "id": "edge", "bg": 3769, "fg": [ 4039, 4038 ] },
- { "id": "end_piece", "bg": 3769, "fg": [ 4041, 4043, 4042, 4040 ] },
- { "bg": 3769, "id": "unconnected", "fg": 4048 }
+ { "id": "center", "bg": 3806, "fg": 4070 },
+ { "id": "corner", "bg": 3806, "fg": [ 4072, 4074, 4073, 4071 ] },
+ { "id": "t_connection", "bg": 3806, "fg": [ 4082, 4084, 4083, 4081 ] },
+ { "id": "edge", "bg": 3806, "fg": [ 4076, 4075 ] },
+ { "id": "end_piece", "bg": 3806, "fg": [ 4078, 4080, 4079, 4077 ] },
+ { "bg": 3806, "id": "unconnected", "fg": 4085 }
]
},
{
"id": "t_grass_tall_season_autumn",
"multitile": true,
- "fg": 4032,
- "bg": 3765,
+ "fg": 4069,
+ "bg": 3802,
"additional_tiles": [
- { "id": "center", "bg": 3765, "fg": 4017 },
- { "id": "corner", "bg": 3765, "fg": [ 4019, 4021, 4020, 4018 ] },
- { "id": "t_connection", "bg": 3765, "fg": [ 4029, 4031, 4030, 4028 ] },
- { "id": "edge", "bg": 3765, "fg": [ 4023, 4022 ] },
- { "id": "end_piece", "bg": 3765, "fg": [ 4025, 4027, 4026, 4024 ] },
- { "bg": 3765, "id": "unconnected", "fg": 4032 }
+ { "id": "center", "bg": 3802, "fg": 4054 },
+ { "id": "corner", "bg": 3802, "fg": [ 4056, 4058, 4057, 4055 ] },
+ { "id": "t_connection", "bg": 3802, "fg": [ 4066, 4068, 4067, 4065 ] },
+ { "id": "edge", "bg": 3802, "fg": [ 4060, 4059 ] },
+ { "id": "end_piece", "bg": 3802, "fg": [ 4062, 4064, 4063, 4061 ] },
+ { "bg": 3802, "id": "unconnected", "fg": 4069 }
]
},
- { "id": "t_grass_tall_season_winter", "fg": 3685 },
+ { "id": "t_grass_tall_season_winter", "fg": 3722 },
{
"id": "t_metal_railing",
- "fg": 4056,
+ "fg": 4093,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4056, "bg": 3609 },
- { "id": "corner", "fg": [ 4050, 4052, 4051, 4049 ], "bg": 3609 },
- { "id": "t_connection", "fg": [ 4056, 4053, 4056, 4053 ], "bg": 3609 },
- { "id": "edge", "fg": [ 4053, 4056 ], "bg": 3609 },
- { "id": "end_piece", "fg": [ 4054, 4056, 4055, 4056 ], "bg": 3609 },
- { "id": "unconnected", "fg": [ 4056, 4056 ], "bg": 3609 }
+ { "id": "center", "fg": 4093, "bg": 3646 },
+ { "id": "corner", "fg": [ 4087, 4089, 4088, 4086 ], "bg": 3646 },
+ { "id": "t_connection", "fg": [ 4093, 4090, 4093, 4090 ], "bg": 3646 },
+ { "id": "edge", "fg": [ 4090, 4093 ], "bg": 3646 },
+ { "id": "end_piece", "fg": [ 4091, 4093, 4092, 4093 ], "bg": 3646 },
+ { "id": "unconnected", "fg": [ 4093, 4093 ], "bg": 3646 }
]
},
{
"id": "t_paper",
- "fg": 4073,
+ "fg": 4110,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4057 },
- { "id": "corner", "fg": [ 4059, 4061, 4060, 4058 ] },
- { "id": "t_connection", "fg": [ 4070, 4072, 4071, 4069 ] },
- { "id": "edge", "fg": [ 4063, 4062 ] },
- { "id": "end_piece", "fg": [ 4065, 4067, 4066, 4064 ] },
- { "id": "unconnected", "fg": [ 4073, 4073 ] }
+ { "id": "center", "fg": 4094 },
+ { "id": "corner", "fg": [ 4096, 4098, 4097, 4095 ] },
+ { "id": "t_connection", "fg": [ 4107, 4109, 4108, 4106 ] },
+ { "id": "edge", "fg": [ 4100, 4099 ] },
+ { "id": "end_piece", "fg": [ 4102, 4104, 4103, 4101 ] },
+ { "id": "unconnected", "fg": [ 4110, 4110 ] }
]
},
{
"id": "t_pontoon",
- "fg": 4089,
+ "fg": 4126,
"multitile": true,
"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, 4089 ] }
+ { "id": "center", "fg": 4111 },
+ { "id": "corner", "fg": [ 4113, 4115, 4114, 4112 ] },
+ { "id": "t_connection", "fg": [ 4123, 4125, 4124, 4122 ] },
+ { "id": "edge", "fg": [ 4117, 4116 ] },
+ { "id": "end_piece", "fg": [ 4119, 4121, 4120, 4118 ] },
+ { "id": "unconnected", "fg": [ 4126, 4126 ] }
]
},
- { "id": [ "t_ramp_up_high", "t_ramp_up_low" ], "fg": 4091 },
- { "id": [ "t_ramp_down_high", "t_ramp_down_low" ], "fg": 4090 },
- { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_up_high" ], "fg": 4093 },
- { "id": [ "t_sidewalk_ramp_down_low", "t_sidewalk_ramp_down_high" ], "fg": 4092 },
+ { "id": [ "t_ramp_up_high", "t_ramp_up_low" ], "fg": 4128 },
+ { "id": [ "t_ramp_down_high", "t_ramp_down_low" ], "fg": 4127 },
+ { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_up_high" ], "fg": 4130 },
+ { "id": [ "t_sidewalk_ramp_down_low", "t_sidewalk_ramp_down_high" ], "fg": 4129 },
{
"id": "t_reinforced_glass",
- "fg": 4109,
+ "fg": 4146,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4094 },
- { "id": "corner", "fg": [ 4096, 4098, 4097, 4095 ] },
- { "id": "t_connection", "fg": [ 4106, 4108, 4107, 4105 ] },
- { "id": "edge", "fg": [ 4100, 4099 ] },
- { "id": "end_piece", "fg": [ 4102, 4104, 4103, 4101 ] },
- { "id": "unconnected", "fg": [ 4109, 4109 ] }
+ { "id": "center", "fg": 4131 },
+ { "id": "corner", "fg": [ 4133, 4135, 4134, 4132 ] },
+ { "id": "t_connection", "fg": [ 4143, 4145, 4144, 4142 ] },
+ { "id": "edge", "fg": [ 4137, 4136 ] },
+ { "id": "end_piece", "fg": [ 4139, 4141, 4140, 4138 ] },
+ { "id": "unconnected", "fg": [ 4146, 4146 ] }
]
},
{
"id": "t_rock",
- "fg": 4125,
+ "fg": 4162,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4110 },
- { "id": "corner", "fg": [ 4112, 4114, 4113, 4111 ] },
- { "id": "t_connection", "fg": [ 4122, 4124, 4123, 4121 ] },
- { "id": "edge", "fg": [ 4116, 4115 ] },
- { "id": "end_piece", "fg": [ 4118, 4120, 4119, 4117 ] },
- { "id": "unconnected", "fg": [ 4125, 4125 ] }
+ { "id": "center", "fg": 4147 },
+ { "id": "corner", "fg": [ 4149, 4151, 4150, 4148 ] },
+ { "id": "t_connection", "fg": [ 4159, 4161, 4160, 4158 ] },
+ { "id": "edge", "fg": [ 4153, 4152 ] },
+ { "id": "end_piece", "fg": [ 4155, 4157, 4156, 4154 ] },
+ { "id": "unconnected", "fg": [ 4162, 4162 ] }
]
},
{
"id": "t_rock_blue",
- "fg": 4141,
+ "fg": 4178,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4126 },
- { "id": "corner", "fg": [ 4128, 4130, 4129, 4127 ] },
- { "id": "t_connection", "fg": [ 4138, 4140, 4139, 4137 ] },
- { "id": "edge", "fg": [ 4132, 4131 ] },
- { "id": "end_piece", "fg": [ 4134, 4136, 4135, 4133 ] },
- { "id": "unconnected", "fg": [ 4141, 4141 ] }
+ { "id": "center", "fg": 4163 },
+ { "id": "corner", "fg": [ 4165, 4167, 4166, 4164 ] },
+ { "id": "t_connection", "fg": [ 4175, 4177, 4176, 4174 ] },
+ { "id": "edge", "fg": [ 4169, 4168 ] },
+ { "id": "end_piece", "fg": [ 4171, 4173, 4172, 4170 ] },
+ { "id": "unconnected", "fg": [ 4178, 4178 ] }
]
},
{
"id": "t_rock_green",
- "fg": 4157,
+ "fg": 4194,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4179 },
+ { "id": "corner", "fg": [ 4181, 4183, 4182, 4180 ] },
+ { "id": "t_connection", "fg": [ 4191, 4193, 4192, 4190 ] },
+ { "id": "edge", "fg": [ 4185, 4184 ] },
+ { "id": "end_piece", "fg": [ 4187, 4189, 4188, 4186 ] },
+ { "id": "unconnected", "fg": [ 4194, 4194 ] }
]
},
{
"id": "t_rock_red",
- "fg": 4173,
+ "fg": 4210,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4195 },
+ { "id": "corner", "fg": [ 4197, 4199, 4198, 4196 ] },
+ { "id": "t_connection", "fg": [ 4207, 4209, 4208, 4206 ] },
+ { "id": "edge", "fg": [ 4201, 4200 ] },
+ { "id": "end_piece", "fg": [ 4203, 4205, 4204, 4202 ] },
+ { "id": "unconnected", "fg": [ 4210, 4210 ] }
]
},
{
"id": "t_rock_smooth",
- "fg": 4189,
+ "fg": 4226,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4211 },
+ { "id": "corner", "fg": [ 4213, 4215, 4214, 4212 ] },
+ { "id": "t_connection", "fg": [ 4223, 4225, 4224, 4222 ] },
+ { "id": "edge", "fg": [ 4217, 4216 ] },
+ { "id": "end_piece", "fg": [ 4219, 4221, 4220, 4218 ] },
+ { "id": "unconnected", "fg": [ 4226, 4226 ] }
]
},
{
"id": "t_rock_wall",
- "fg": 4205,
+ "fg": 4242,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4227 },
+ { "id": "corner", "fg": [ 4229, 4231, 4230, 4228 ] },
+ { "id": "t_connection", "fg": [ 4239, 4241, 4240, 4238 ] },
+ { "id": "edge", "fg": [ 4233, 4232 ] },
+ { "id": "end_piece", "fg": [ 4235, 4237, 4236, 4234 ] },
+ { "id": "unconnected", "fg": [ 4242, 4242 ] }
]
},
{
"id": "t_sand",
- "fg": 4221,
+ "fg": 4258,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4243 },
+ { "id": "corner", "fg": [ 4245, 4247, 4246, 4244 ] },
+ { "id": "t_connection", "fg": [ 4255, 4257, 4256, 4254 ] },
+ { "id": "edge", "fg": [ 4249, 4248 ] },
+ { "id": "end_piece", "fg": [ 4251, 4253, 4252, 4250 ] },
+ { "id": "unconnected", "fg": [ 4258, 4258 ] }
]
},
{
"id": "t_sandbox",
- "fg": 4237,
+ "fg": 4274,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4259 },
+ { "id": "corner", "fg": [ 4261, 4263, 4262, 4260 ] },
+ { "id": "t_connection", "fg": [ 4271, 4273, 4272, 4270 ] },
+ { "id": "edge", "fg": [ 4265, 4264 ] },
+ { "id": "end_piece", "fg": [ 4267, 4269, 4268, 4266 ] },
+ { "id": "unconnected", "fg": [ 4274, 4274 ] }
]
},
{
"id": "t_scrap_wall",
- "fg": 4253,
+ "fg": 4290,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4275 },
+ { "id": "corner", "fg": [ 4277, 4279, 4278, 4276 ] },
+ { "id": "t_connection", "fg": [ 4287, 4289, 4288, 4286 ] },
+ { "id": "edge", "fg": [ 4281, 4280 ] },
+ { "id": "end_piece", "fg": [ 4283, 4285, 4284, 4282 ] },
+ { "id": "unconnected", "fg": [ 4290, 4290 ] }
]
},
{
"id": "t_screened_porch_wall",
- "fg": 4271,
+ "fg": 4308,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4256 },
- { "id": "corner", "fg": [ 4258, 4260, 4259, 4257 ] },
- { "id": "t_connection", "fg": [ 4268, 4270, 4269, 4267 ] },
- { "id": "edge", "fg": [ 4262, 4261 ] },
- { "id": "end_piece", "fg": [ 4264, 4266, 4265, 4263 ] },
- { "id": "unconnected", "fg": [ 4271, 4271 ] }
+ { "id": "center", "fg": 4293 },
+ { "id": "corner", "fg": [ 4295, 4297, 4296, 4294 ] },
+ { "id": "t_connection", "fg": [ 4305, 4307, 4306, 4304 ] },
+ { "id": "edge", "fg": [ 4299, 4298 ] },
+ { "id": "end_piece", "fg": [ 4301, 4303, 4302, 4300 ] },
+ { "id": "unconnected", "fg": [ 4308, 4308 ] }
]
},
{
"id": "t_soil",
- "fg": 4294,
+ "fg": 4331,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4272 },
+ { "id": "center", "fg": 4309 },
{
"id": "corner",
"fg": [
- { "weight": 2, "sprite": [ 4274, 4277, 4275, 4273 ] },
- { "weight": 1, "sprite": [ 4274, 4278, 4275, 4273 ] },
- { "weight": 1, "sprite": [ 4274, 4277, 4276, 4273 ] }
+ { "weight": 2, "sprite": [ 4311, 4314, 4312, 4310 ] },
+ { "weight": 1, "sprite": [ 4311, 4315, 4312, 4310 ] },
+ { "weight": 1, "sprite": [ 4311, 4314, 4313, 4310 ] }
]
},
{
"id": "t_connection",
- "fg": [ { "weight": 2, "sprite": [ 4290, 4293, 4291, 4289 ] }, { "weight": 1, "sprite": [ 4290, 4293, 4292, 4289 ] } ]
+ "fg": [ { "weight": 2, "sprite": [ 4327, 4330, 4328, 4326 ] }, { "weight": 1, "sprite": [ 4327, 4330, 4329, 4326 ] } ]
},
{
"id": "edge",
- "fg": [ { "weight": 2, "sprite": [ 4281, 4279 ] }, { "weight": 1, "sprite": [ 4281, 4280 ] } ]
+ "fg": [ { "weight": 2, "sprite": [ 4318, 4316 ] }, { "weight": 1, "sprite": [ 4318, 4317 ] } ]
},
{
"id": "end_piece",
"fg": [
- { "weight": 2, "sprite": [ 4284, 4287, 4285, 4282 ] },
- { "weight": 1, "sprite": [ 4284, 4288, 4285, 4282 ] },
- { "weight": 1, "sprite": [ 4284, 4287, 4286, 4282 ] },
- { "weight": 1, "sprite": [ 4284, 4287, 4285, 4283 ] }
+ { "weight": 2, "sprite": [ 4321, 4324, 4322, 4319 ] },
+ { "weight": 1, "sprite": [ 4321, 4325, 4322, 4319 ] },
+ { "weight": 1, "sprite": [ 4321, 4324, 4323, 4319 ] },
+ { "weight": 1, "sprite": [ 4321, 4324, 4322, 4320 ] }
]
},
- { "id": "unconnected", "fg": [ 4294, 4294 ] }
+ { "id": "unconnected", "fg": [ 4331, 4331 ] }
]
},
{
"id": "t_strconc_wall",
- "fg": 4310,
+ "fg": 4347,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4295 },
- { "id": "corner", "fg": [ 4297, 4299, 4298, 4296 ] },
- { "id": "t_connection", "fg": [ 4307, 4309, 4308, 4306 ] },
- { "id": "edge", "fg": [ 4301, 4300 ] },
- { "id": "end_piece", "fg": [ 4303, 4305, 4304, 4302 ] },
- { "id": "unconnected", "fg": [ 4310, 4310 ] }
+ { "id": "center", "fg": 4332 },
+ { "id": "corner", "fg": [ 4334, 4336, 4335, 4333 ] },
+ { "id": "t_connection", "fg": [ 4344, 4346, 4345, 4343 ] },
+ { "id": "edge", "fg": [ 4338, 4337 ] },
+ { "id": "end_piece", "fg": [ 4340, 4342, 4341, 4339 ] },
+ { "id": "unconnected", "fg": [ 4347, 4347 ] }
]
},
{
"id": "t_thatch_roof",
- "fg": 4326,
+ "fg": 4363,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4311 },
- { "id": "corner", "fg": [ 4313, 4315, 4314, 4312 ] },
- { "id": "t_connection", "fg": [ 4323, 4325, 4324, 4322 ] },
- { "id": "edge", "fg": [ 4317, 4316 ] },
- { "id": "end_piece", "fg": [ 4319, 4321, 4320, 4318 ] },
- { "id": "unconnected", "fg": [ 4326, 4326 ] }
+ { "id": "center", "fg": 4348 },
+ { "id": "corner", "fg": [ 4350, 4352, 4351, 4349 ] },
+ { "id": "t_connection", "fg": [ 4360, 4362, 4361, 4359 ] },
+ { "id": "edge", "fg": [ 4354, 4353 ] },
+ { "id": "end_piece", "fg": [ 4356, 4358, 4357, 4355 ] },
+ { "id": "unconnected", "fg": [ 4363, 4363 ] }
]
},
{
"id": "t_wall",
- "fg": 4342,
+ "fg": 4379,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4327 },
- { "id": "corner", "fg": [ 4329, 4331, 4330, 4328 ] },
- { "id": "t_connection", "fg": [ 4339, 4341, 4340, 4338 ] },
- { "id": "edge", "fg": [ 4333, 4332 ] },
- { "id": "end_piece", "fg": [ 4335, 4337, 4336, 4334 ] },
- { "id": "unconnected", "fg": [ 4342, 4342 ] }
+ { "id": "center", "fg": 4364 },
+ { "id": "corner", "fg": [ 4366, 4368, 4367, 4365 ] },
+ { "id": "t_connection", "fg": [ 4376, 4378, 4377, 4375 ] },
+ { "id": "edge", "fg": [ 4370, 4369 ] },
+ { "id": "end_piece", "fg": [ 4372, 4374, 4373, 4371 ] },
+ { "id": "unconnected", "fg": [ 4379, 4379 ] }
]
},
{
"id": "t_wall_P",
- "fg": 4358,
+ "fg": 4395,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4380 },
+ { "id": "corner", "fg": [ 4382, 4384, 4383, 4381 ] },
+ { "id": "t_connection", "fg": [ 4392, 4394, 4393, 4391 ] },
+ { "id": "edge", "fg": [ 4386, 4385 ] },
+ { "id": "end_piece", "fg": [ 4388, 4390, 4389, 4387 ] },
+ { "id": "unconnected", "fg": [ 4395, 4395 ] }
]
},
{
"id": "t_wall_b",
- "fg": 4374,
+ "fg": 4411,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4396 },
+ { "id": "corner", "fg": [ 4398, 4400, 4399, 4397 ] },
+ { "id": "t_connection", "fg": [ 4408, 4410, 4409, 4407 ] },
+ { "id": "edge", "fg": [ 4402, 4401 ] },
+ { "id": "end_piece", "fg": [ 4404, 4406, 4405, 4403 ] },
+ { "id": "unconnected", "fg": [ 4411, 4411 ] }
]
},
{
"id": "t_wall_g",
- "fg": 4390,
+ "fg": 4427,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4412 },
+ { "id": "corner", "fg": [ 4414, 4416, 4415, 4413 ] },
+ { "id": "t_connection", "fg": [ 4424, 4426, 4425, 4423 ] },
+ { "id": "edge", "fg": [ 4418, 4417 ] },
+ { "id": "end_piece", "fg": [ 4420, 4422, 4421, 4419 ] },
+ { "id": "unconnected", "fg": [ 4427, 4427 ] }
]
},
{
"id": "t_wall_p",
- "fg": 4406,
+ "fg": 4443,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4428 },
+ { "id": "corner", "fg": [ 4430, 4432, 4431, 4429 ] },
+ { "id": "t_connection", "fg": [ 4440, 4442, 4441, 4439 ] },
+ { "id": "edge", "fg": [ 4434, 4433 ] },
+ { "id": "end_piece", "fg": [ 4436, 4438, 4437, 4435 ] },
+ { "id": "unconnected", "fg": [ 4443, 4443 ] }
]
},
{
"id": "t_wall_r",
- "fg": 4422,
+ "fg": 4459,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4444 },
+ { "id": "corner", "fg": [ 4446, 4448, 4447, 4445 ] },
+ { "id": "t_connection", "fg": [ 4456, 4458, 4457, 4455 ] },
+ { "id": "edge", "fg": [ 4450, 4449 ] },
+ { "id": "end_piece", "fg": [ 4452, 4454, 4453, 4451 ] },
+ { "id": "unconnected", "fg": [ 4459, 4459 ] }
]
},
{
"id": "t_wall_w",
- "fg": 4438,
+ "fg": 4475,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4460 },
+ { "id": "corner", "fg": [ 4462, 4464, 4463, 4461 ] },
+ { "id": "t_connection", "fg": [ 4472, 4474, 4473, 4471 ] },
+ { "id": "edge", "fg": [ 4466, 4465 ] },
+ { "id": "end_piece", "fg": [ 4468, 4470, 4469, 4467 ] },
+ { "id": "unconnected", "fg": [ 4475, 4475 ] }
]
},
{
"id": "t_wall_y",
- "fg": 4454,
+ "fg": 4491,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4476 },
+ { "id": "corner", "fg": [ 4478, 4480, 4479, 4477 ] },
+ { "id": "t_connection", "fg": [ 4488, 4490, 4489, 4487 ] },
+ { "id": "edge", "fg": [ 4482, 4481 ] },
+ { "id": "end_piece", "fg": [ 4484, 4486, 4485, 4483 ] },
+ { "id": "unconnected", "fg": [ 4491, 4491 ] }
]
},
{
"id": "t_wall_glass",
- "fg": 4470,
+ "fg": 4507,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4492 },
+ { "id": "corner", "fg": [ 4494, 4496, 4495, 4493 ] },
+ { "id": "t_connection", "fg": [ 4504, 4506, 4505, 4503 ] },
+ { "id": "edge", "fg": [ 4498, 4497 ] },
+ { "id": "end_piece", "fg": [ 4500, 4502, 4501, 4499 ] },
+ { "id": "unconnected", "fg": [ 4507, 4507 ] }
]
},
{
"id": "t_wall_log",
- "fg": 4486,
+ "fg": 4523,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4508 },
+ { "id": "corner", "fg": [ 4510, 4512, 4511, 4509 ] },
+ { "id": "t_connection", "fg": [ 4520, 4522, 4521, 4519 ] },
+ { "id": "edge", "fg": [ 4514, 4513 ] },
+ { "id": "end_piece", "fg": [ 4516, 4518, 4517, 4515 ] },
+ { "id": "unconnected", "fg": [ 4523, 4523 ] }
]
},
{
"id": "t_wall_log_broken",
- "fg": 4502,
+ "fg": 4539,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4524 },
+ { "id": "corner", "fg": [ 4526, 4528, 4527, 4525 ] },
+ { "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 ] }
]
},
{
"id": "t_wall_log_chipped",
- "fg": 4518,
+ "fg": 4555,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4540 },
+ { "id": "corner", "fg": [ 4542, 4544, 4543, 4541 ] },
+ { "id": "t_connection", "fg": [ 4552, 4554, 4553, 4551 ] },
+ { "id": "edge", "fg": [ 4546, 4545 ] },
+ { "id": "end_piece", "fg": [ 4548, 4550, 4549, 4547 ] },
+ { "id": "unconnected", "fg": [ 4555, 4555 ] }
]
},
{
"id": "t_wall_metal",
- "fg": 4534,
+ "fg": 4571,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4556 },
+ { "id": "corner", "fg": [ 4558, 4560, 4559, 4557 ] },
+ { "id": "t_connection", "fg": [ 4568, 4570, 4569, 4567 ] },
+ { "id": "edge", "fg": [ 4562, 4561 ] },
+ { "id": "end_piece", "fg": [ 4564, 4566, 4565, 4563 ] },
+ { "id": "unconnected", "fg": [ 4571, 4571 ] }
]
},
{
"id": "t_wall_rammed_earth_autumn",
- "fg": 4550,
+ "fg": 4587,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4572 },
+ { "id": "corner", "fg": [ 4574, 4576, 4575, 4573 ] },
+ { "id": "t_connection", "fg": [ 4584, 4586, 4585, 4583 ] },
+ { "id": "edge", "fg": [ 4578, 4577 ] },
+ { "id": "end_piece", "fg": [ 4580, 4582, 4581, 4579 ] },
+ { "id": "unconnected", "fg": [ 4587, 4587 ] }
]
},
{
"id": "t_wall_rammed_earth",
- "fg": 4566,
+ "fg": 4603,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4588 },
+ { "id": "corner", "fg": [ 4590, 4592, 4591, 4589 ] },
+ { "id": "t_connection", "fg": [ 4600, 4602, 4601, 4599 ] },
+ { "id": "edge", "fg": [ 4594, 4593 ] },
+ { "id": "end_piece", "fg": [ 4596, 4598, 4597, 4595 ] },
+ { "id": "unconnected", "fg": [ 4603, 4603 ] }
]
},
{
"id": "t_wall_rammed_earth_summer",
- "fg": 4582,
+ "fg": 4619,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4604 },
+ { "id": "corner", "fg": [ 4606, 4608, 4607, 4605 ] },
+ { "id": "t_connection", "fg": [ 4616, 4618, 4617, 4615 ] },
+ { "id": "edge", "fg": [ 4610, 4609 ] },
+ { "id": "end_piece", "fg": [ 4612, 4614, 4613, 4611 ] },
+ { "id": "unconnected", "fg": [ 4619, 4619 ] }
]
},
{
"id": "t_wall_rammed_earth_winter",
- "fg": 4598,
+ "fg": 4635,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4620 },
+ { "id": "corner", "fg": [ 4622, 4624, 4623, 4621 ] },
+ { "id": "t_connection", "fg": [ 4632, 4634, 4633, 4631 ] },
+ { "id": "edge", "fg": [ 4626, 4625 ] },
+ { "id": "end_piece", "fg": [ 4628, 4630, 4629, 4627 ] },
+ { "id": "unconnected", "fg": [ 4635, 4635 ] }
]
},
{
"id": "t_wall_resin_cage",
- "fg": 4614,
+ "fg": 4651,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4636 },
+ { "id": "corner", "fg": [ 4638, 4640, 4639, 4637 ] },
+ { "id": "t_connection", "fg": [ 4648, 4650, 4649, 4647 ] },
+ { "id": "edge", "fg": [ 4642, 4641 ] },
+ { "id": "end_piece", "fg": [ 4644, 4646, 4645, 4643 ] },
+ { "id": "unconnected", "fg": [ 4651, 4651 ] }
]
},
{
"id": "t_wall_wood",
- "fg": 4630,
+ "fg": 4667,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4652 },
+ { "id": "corner", "fg": [ 4654, 4656, 4655, 4653 ] },
+ { "id": "t_connection", "fg": [ 4664, 4666, 4665, 4663 ] },
+ { "id": "edge", "fg": [ 4658, 4657 ] },
+ { "id": "end_piece", "fg": [ 4660, 4662, 4661, 4659 ] },
+ { "id": "unconnected", "fg": [ 4667, 4667 ] }
]
},
{
"id": "t_wall_wood_broken",
- "fg": 4646,
+ "fg": 4683,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4668 },
+ { "id": "corner", "fg": [ 4670, 4672, 4671, 4669 ] },
+ { "id": "t_connection", "fg": [ 4680, 4682, 4681, 4679 ] },
+ { "id": "edge", "fg": [ 4674, 4673 ] },
+ { "id": "end_piece", "fg": [ 4676, 4678, 4677, 4675 ] },
+ { "id": "unconnected", "fg": [ 4683, 4683 ] }
]
},
{
"id": "t_wall_wood_chipped",
- "fg": 4662,
+ "fg": 4699,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4684 },
+ { "id": "corner", "fg": [ 4686, 4688, 4687, 4685 ] },
+ { "id": "t_connection", "fg": [ 4696, 4698, 4697, 4695 ] },
+ { "id": "edge", "fg": [ 4690, 4689 ] },
+ { "id": "end_piece", "fg": [ 4692, 4694, 4693, 4691 ] },
+ { "id": "unconnected", "fg": [ 4699, 4699 ] }
]
},
{
"id": "t_water_hot",
- "fg": 4678,
+ "fg": 4715,
"multitile": true,
"additional_tiles": [
- { "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": "center", "fg": 4700 },
+ { "id": "corner", "fg": [ 4702, 4704, 4703, 4701 ] },
+ { "id": "t_connection", "fg": [ 4712, 4714, 4713, 4711 ] },
+ { "id": "edge", "fg": [ 4706, 4705 ] },
+ { "id": "end_piece", "fg": [ 4708, 4710, 4709, 4707 ] },
+ { "id": "unconnected", "fg": [ 4715, 4715 ] }
]
},
{
"id": "t_water_pool",
- "fg": 4710,
+ "fg": 4747,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4679 },
- { "id": "corner", "fg": [ 4681, 4683, 4682, 4680 ] },
- { "id": "t_connection", "fg": [ 4707, 4709, 4708, 4706 ] },
- { "id": "edge", "fg": [ 4685, 4684 ] },
- { "id": "end_piece", "fg": [ 4687, 4689, 4688, 4686 ] },
- { "id": "unconnected", "fg": [ 4710, 4710 ] }
+ { "id": "center", "fg": 4716 },
+ { "id": "corner", "fg": [ 4718, 4720, 4719, 4717 ] },
+ { "id": "t_connection", "fg": [ 4744, 4746, 4745, 4743 ] },
+ { "id": "edge", "fg": [ 4722, 4721 ] },
+ { "id": "end_piece", "fg": [ 4724, 4726, 4725, 4723 ] },
+ { "id": "unconnected", "fg": [ 4747, 4747 ] }
]
},
{
"id": "t_water_pool_outdoors",
- "fg": 4710,
+ "fg": 4747,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4679 },
- { "id": "corner", "fg": [ 4681, 4683, 4682, 4680 ] },
- { "id": "t_connection", "fg": [ 4707, 4709, 4708, 4706 ] },
- { "id": "edge", "fg": [ 4685, 4684 ] },
- { "id": "end_piece", "fg": [ 4687, 4689, 4688, 4686 ] },
- { "id": "unconnected", "fg": [ 4710, 4710 ] }
+ { "id": "center", "fg": 4716 },
+ { "id": "corner", "fg": [ 4718, 4720, 4719, 4717 ] },
+ { "id": "t_connection", "fg": [ 4744, 4746, 4745, 4743 ] },
+ { "id": "edge", "fg": [ 4722, 4721 ] },
+ { "id": "end_piece", "fg": [ 4724, 4726, 4725, 4723 ] },
+ { "id": "unconnected", "fg": [ 4747, 4747 ] }
]
},
{
"id": "t_water_pool_shallow",
- "fg": 4705,
+ "fg": 4742,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4690 },
- { "id": "corner", "fg": [ 4692, 4694, 4693, 4691 ] },
- { "id": "t_connection", "fg": [ 4702, 4704, 4703, 4701 ] },
- { "id": "edge", "fg": [ 4696, 4695 ] },
- { "id": "end_piece", "fg": [ 4698, 4700, 4699, 4697 ] },
- { "id": "unconnected", "fg": [ 4705, 4705 ] }
+ { "id": "center", "fg": 4727 },
+ { "id": "corner", "fg": [ 4729, 4731, 4730, 4728 ] },
+ { "id": "t_connection", "fg": [ 4739, 4741, 4740, 4738 ] },
+ { "id": "edge", "fg": [ 4733, 4732 ] },
+ { "id": "end_piece", "fg": [ 4735, 4737, 4736, 4734 ] },
+ { "id": "unconnected", "fg": [ 4742, 4742 ] }
]
},
{
"id": "t_water_pool_shallow_outdoors",
- "fg": 4705,
+ "fg": 4742,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 4690 },
- { "id": "corner", "fg": [ 4692, 4694, 4693, 4691 ] },
- { "id": "t_connection", "fg": [ 4702, 4704, 4703, 4701 ] },
- { "id": "edge", "fg": [ 4696, 4695 ] },
- { "id": "end_piece", "fg": [ 4698, 4700, 4699, 4697 ] },
- { "id": "unconnected", "fg": [ 4705, 4705 ] }
+ { "id": "center", "fg": 4727 },
+ { "id": "corner", "fg": [ 4729, 4731, 4730, 4728 ] },
+ { "id": "t_connection", "fg": [ 4739, 4741, 4740, 4738 ] },
+ { "id": "edge", "fg": [ 4733, 4732 ] },
+ { "id": "end_piece", "fg": [ 4735, 4737, 4736, 4734 ] },
+ { "id": "unconnected", "fg": [ 4742, 4742 ] }
]
},
- { "id": "tr_beartrap", "bg": 4731, "rotates": false },
- { "id": "tr_beartrap_buried", "fg": 4716, "bg": 4731, "rotates": false },
- { "id": "tr_beartrap_buried_season_winter", "fg": 4717, "bg": 4731 },
+ { "id": "tr_beartrap", "bg": 4768, "rotates": false },
+ { "id": "tr_beartrap_buried", "fg": 4753, "bg": 4768, "rotates": false },
+ { "id": "tr_beartrap_buried_season_winter", "fg": 4754, "bg": 4768 },
{
"id": "tr_blade",
- "fg": 4718,
+ "fg": 4755,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "edge", "fg": 4718 } ]
+ "additional_tiles": [ { "id": "edge", "fg": 4755 } ]
},
- { "id": "tr_bubblewrap", "fg": 4719, "rotates": false },
- { "id": "tr_caltrops", "fg": 4720, "rotates": false },
- { "id": "tr_dissector", "fg": 4721, "rotates": false },
+ { "id": "tr_bubblewrap", "fg": 4756, "rotates": false },
+ { "id": "tr_caltrops", "fg": 4757, "rotates": false },
+ { "id": "tr_dissector", "fg": 4758, "rotates": false },
{
"id": "tr_drain",
- "bg": 4732,
+ "bg": 4769,
"rotates": false,
"multitile": true,
- "additional_tiles": [ { "id": "center", "bg": 4711 }, { "id": "t_connection", "bg": 4711 } ]
- },
- { "id": "tr_engine", "fg": 4722 },
- { "id": "tr_fur_rollmat", "fg": 4723, "rotates": false },
- { "id": "tr_goo", "fg": 4724, "bg": 3609, "rotates": false },
- { "id": "tr_heavy_snare", "bg": 4712, "rotates": false },
- { "id": "tr_lava", "fg": 3443, "rotates": false },
- { "id": "tr_leather_funnel", "fg": 4725, "rotates": false },
- { "id": "tr_nailboard", "bg": 4714, "rotates": false },
- { "id": "tr_portal", "fg": 4726, "bg": [ ], "rotates": false },
- { "id": "tr_raincatcher", "fg": 3493, "rotates": false },
- { "id": "tr_rollmat", "fg": 4727, "rotates": false },
- { "id": "tr_sinkhole", "fg": 4728, "rotates": false },
- { "id": "tr_sinkhole_season_winter", "fg": 4729, "rotates": false },
- { "id": "tr_snare", "bg": 4712, "rotates": false },
- { "id": "tr_telepad", "fg": 4730, "bg": [ ], "rotates": false },
- { "id": "tr_temple_flood", "fg": 4728 },
- { "id": "tr_tripwire", "bg": 4715, "rotates": false },
+ "additional_tiles": [ { "id": "center", "bg": 4748 }, { "id": "t_connection", "bg": 4748 } ]
+ },
+ { "id": "tr_engine", "fg": 4759 },
+ { "id": "tr_fur_rollmat", "fg": 4760, "rotates": false },
+ { "id": "tr_goo", "fg": 4761, "bg": 3646, "rotates": false },
+ { "id": "tr_heavy_snare", "bg": 4749, "rotates": false },
+ { "id": "tr_lava", "fg": 3481, "rotates": false },
+ { "id": "tr_leather_funnel", "fg": 4762, "rotates": false },
+ { "id": "tr_nailboard", "bg": 4751, "rotates": false },
+ { "id": "tr_portal", "fg": 4763, "bg": [ ], "rotates": false },
+ { "id": "tr_raincatcher", "fg": 3531, "rotates": false },
+ { "id": "tr_rollmat", "fg": 4764, "rotates": false },
+ { "id": "tr_sinkhole", "fg": 4765, "rotates": false },
+ { "id": "tr_sinkhole_season_winter", "fg": 4766, "rotates": false },
+ { "id": "tr_snare", "bg": 4749, "rotates": false },
+ { "id": "tr_telepad", "fg": 4767, "bg": [ ], "rotates": false },
+ { "id": "tr_temple_flood", "fg": 4765 },
+ { "id": "tr_tripwire", "bg": 4752, "rotates": false },
{
"id": [ "vp_halfboard_cover_right", "vp_halfboard_cover_left" ],
- "fg": [ 4778, 4781, 4780, 4779 ],
+ "fg": [ 4815, 4818, 4817, 4816 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4778, 4781, 4780, 4779 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4815, 4818, 4817, 4816 ] } ]
},
{
"id": "vp_halfboard_hatch_wheel_left",
- "fg": [ 4798, 4801, 4800, 4799 ],
+ "fg": [ 4835, 4838, 4837, 4836 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4798, 4801, 4800, 4799 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4835, 4838, 4837, 4836 ] } ]
},
{
"id": "vp_halfboard_hatch_wheel_right",
- "fg": [ 4794, 4797, 4796, 4795 ],
+ "fg": [ 4831, 4834, 4833, 4832 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4794, 4797, 4796, 4795 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4831, 4834, 4833, 4832 ] } ]
},
{
"id": "vp_halfboard_wheel_left",
- "fg": [ 4809, 4811, 4812, 4810 ],
+ "fg": [ 4846, 4848, 4849, 4847 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4809, 4811, 4812, 4810 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4846, 4848, 4849, 4847 ] } ]
},
{
"id": "vp_halfboard_wheel_right",
- "fg": [ 4812, 4810, 4809, 4811 ],
+ "fg": [ 4849, 4847, 4846, 4848 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4812, 4810, 4809, 4811 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4849, 4847, 4846, 4848 ] } ]
},
{
"id": [ "vp_board_wheel_left", "vp_board_nw_edge" ],
- "fg": [ 4761, 4763, 4764, 4762 ],
+ "fg": [ 4798, 4800, 4801, 4799 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4761, 4763, 4764, 4762 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4798, 4800, 4801, 4799 ] } ]
},
{
"id": [ "vp_board_wheel_right", "vp_board_ne_edge" ],
- "fg": [ 4764, 4762, 4761, 4763 ],
+ "fg": [ 4801, 4799, 4798, 4800 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4764, 4762, 4761, 4763 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4801, 4799, 4798, 4800 ] } ]
},
{
"id": "vp_stowboard_wheel_left",
- "fg": [ 4931, 4933, 4934, 4932 ],
+ "fg": [ 4968, 4970, 4971, 4969 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4931, 4933, 4934, 4932 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4968, 4970, 4971, 4969 ] } ]
},
{
"id": "vp_stowboard_wheel_right",
- "fg": [ 4934, 4932, 4931, 4933 ],
+ "fg": [ 4971, 4969, 4968, 4970 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4934, 4932, 4931, 4933 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4971, 4969, 4968, 4970 ] } ]
},
{
"id": "vp_windshield_wheel_left",
- "fg": [ 5394, 5401, 5400, 5399 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5394, 5401, 5400, 5399 ] } ],
+ "fg": [ 5431, 5438, 5437, 5436 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5431, 5438, 5437, 5436 ] } ],
"multitile": true
},
{
"id": "vp_windshield_wheel_right",
- "fg": [ 5386, 5393, 5392, 5391 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5386, 5393, 5392, 5391 ] } ],
+ "fg": [ 5423, 5430, 5429, 5428 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5423, 5430, 5429, 5428 ] } ],
"multitile": true
},
{
"id": "vp_windshield_full_wheel_left",
- "fg": [ 5382, 5385, 5384, 5383 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5382, 5385, 5384, 5383 ] } ],
+ "fg": [ 5419, 5422, 5421, 5420 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5419, 5422, 5421, 5420 ] } ],
"multitile": true
},
{
"id": "vp_windshield_full_wheel_right",
- "fg": [ 5410, 5413, 5412, 5411 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5410, 5413, 5412, 5411 ] } ],
+ "fg": [ 5447, 5450, 5449, 5448 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5447, 5450, 5449, 5448 ] } ],
"multitile": true
},
{
"id": "vp_windshield_vertical_2_left",
- "fg": [ 5382, 5385, 5384, 5383 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5382, 5385, 5384, 5383 ] } ],
+ "fg": [ 5419, 5422, 5421, 5420 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5419, 5422, 5421, 5420 ] } ],
"multitile": true
},
{
"id": "vp_windshield_vertical_2_right",
- "fg": [ 5410, 5413, 5412, 5411 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5410, 5413, 5412, 5411 ] } ],
+ "fg": [ 5447, 5450, 5449, 5448 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5447, 5450, 5449, 5448 ] } ],
"multitile": true
},
{
"id": [ "vp_seed_drill" ],
- "fg": [ 4740, 4742, 4741, 4739 ],
+ "fg": [ 4777, 4779, 4778, 4776 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4740, 4742, 4741, 4739 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4777, 4779, 4778, 4776 ] } ]
},
{
"id": [ "vp_wing_mirror" ],
- "fg": 4737,
+ "fg": 4774,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4737 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4774 } ]
},
{
"id": "vp_board_ne",
- "fg": [ 4747, 4750, 4749, 4748 ],
+ "fg": [ 4784, 4787, 4786, 4785 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4747, 4750, 4749, 4748 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4784, 4787, 4786, 4785 ] } ]
},
{
"id": "vp_board_nw",
- "fg": [ 4751, 4754, 4753, 4752 ],
+ "fg": [ 4788, 4791, 4790, 4789 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4751, 4754, 4753, 4752 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4788, 4791, 4790, 4789 ] } ]
},
{
"id": "vp_board_se",
- "fg": [ 4755, 4757, 4751, 4756 ],
+ "fg": [ 4792, 4794, 4788, 4793 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4755, 4757, 4751, 4756 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4792, 4794, 4788, 4793 ] } ]
},
{
"id": "vp_board_sw",
- "fg": [ 4758, 4760, 4747, 4759 ],
+ "fg": [ 4795, 4797, 4784, 4796 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4758, 4760, 4747, 4759 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4795, 4797, 4784, 4796 ] } ]
},
{
"id": "vp_board_vertical_left",
- "fg": [ 4761, 4763, 4764, 4762 ],
+ "fg": [ 4798, 4800, 4801, 4799 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4761, 4763, 4764, 4762 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4798, 4800, 4801, 4799 ] } ]
},
{
"id": "vp_board_vertical_right",
- "fg": [ 4764, 4762, 4761, 4763 ],
+ "fg": [ 4801, 4799, 4798, 4800 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4764, 4762, 4761, 4763 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4801, 4799, 4798, 4800 ] } ]
},
{
"id": [ "vp_board_horizontal", "vp_board_horizontal_2" ],
- "fg": 4743,
+ "fg": 4780,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4743 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4780 } ]
},
{
"id": "vp_board_horizontal_front",
- "fg": [ 4743, 4745, 4743, 4744 ],
+ "fg": [ 4780, 4782, 4780, 4781 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4743, 4745, 4743, 4744 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4780, 4782, 4780, 4781 ] } ]
},
{
"id": "vp_board_horizontal_rear",
- "fg": [ 4746, 4744, 4743, 4745 ],
+ "fg": [ 4783, 4781, 4780, 4782 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4746, 4744, 4743, 4745 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4783, 4781, 4780, 4782 ] } ]
},
{
"id": [ "vp_board_vertical", "vp_board_vertical_2" ],
- "fg": 4761,
+ "fg": 4798,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4761 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4798 } ]
},
{
"id": "vp_hdboard_ne",
- "fg": [ 4825, 4828, 4827, 4826 ],
+ "fg": [ 4862, 4865, 4864, 4863 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4825, 4828, 4827, 4826 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4862, 4865, 4864, 4863 ] } ]
},
{
"id": "vp_hdboard_nw",
- "fg": [ 4829, 4832, 4831, 4830 ],
+ "fg": [ 4866, 4869, 4868, 4867 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4829, 4832, 4831, 4830 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4866, 4869, 4868, 4867 ] } ]
},
{
"id": "vp_hdboard_se",
- "fg": [ 4833, 4835, 4829, 4834 ],
+ "fg": [ 4870, 4872, 4866, 4871 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4833, 4835, 4829, 4834 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4870, 4872, 4866, 4871 ] } ]
},
{
"id": "vp_hdboard_sw",
- "fg": [ 4836, 4838, 4825, 4837 ],
+ "fg": [ 4873, 4875, 4862, 4874 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4836, 4838, 4825, 4837 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4873, 4875, 4862, 4874 ] } ]
},
{
"id": "vp_hdboard_vertical_left",
- "fg": [ 4839, 4841, 4840, 4841 ],
+ "fg": [ 4876, 4878, 4877, 4878 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4839, 4841, 4840, 4841 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4876, 4878, 4877, 4878 ] } ]
},
{
"id": "vp_hdboard_vertical_right",
- "fg": [ 4840, 4841, 4839, 4841 ],
+ "fg": [ 4877, 4878, 4876, 4878 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4840, 4841, 4839, 4841 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4877, 4878, 4876, 4878 ] } ]
},
{
"id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ],
- "fg": 4821,
+ "fg": 4858,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4821 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4858 } ]
},
{
"id": "vp_hdboard_horizontal_front",
- "fg": [ 4821, 4823, 4821, 4822 ],
+ "fg": [ 4858, 4860, 4858, 4859 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4821, 4823, 4821, 4822 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4858, 4860, 4858, 4859 ] } ]
},
{
"id": "vp_hdboard_horizontal_rear",
- "fg": [ 4824, 4822, 4821, 4823 ],
+ "fg": [ 4861, 4859, 4858, 4860 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4824, 4822, 4821, 4823 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4861, 4859, 4858, 4860 ] } ]
},
{
"id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ],
- "fg": 4839,
+ "fg": 4876,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4839 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4876 } ]
},
{
"id": "vp_halfboard_ne",
- "fg": [ 4786, 4789, 4788, 4787 ],
+ "fg": [ 4823, 4826, 4825, 4824 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4786, 4789, 4788, 4787 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4823, 4826, 4825, 4824 ] } ]
},
{
"id": "vp_halfboard_nw",
- "fg": [ 4790, 4793, 4792, 4791 ],
+ "fg": [ 4827, 4830, 4829, 4828 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4790, 4793, 4792, 4791 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4827, 4830, 4829, 4828 ] } ]
},
{
"id": "vp_halfboard_se",
- "fg": [ 4794, 4797, 4796, 4795 ],
+ "fg": [ 4831, 4834, 4833, 4832 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4794, 4797, 4796, 4795 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4831, 4834, 4833, 4832 ] } ]
},
{
"id": "vp_halfboard_sw",
- "fg": [ 4798, 4801, 4800, 4799 ],
+ "fg": [ 4835, 4838, 4837, 4836 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4798, 4801, 4800, 4799 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4835, 4838, 4837, 4836 ] } ]
},
{
"id": "vp_halfboard_vertical_left",
- "fg": [ 4809, 4811, 4812, 4810 ],
+ "fg": [ 4846, 4848, 4849, 4847 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4809, 4811, 4812, 4810 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4846, 4848, 4849, 4847 ] } ]
},
{
"id": "vp_halfboard_vertical_2_left",
- "fg": [ 4803, 4805, 4806, 4804 ],
+ "fg": [ 4840, 4842, 4843, 4841 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4803, 4805, 4806, 4804 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4840, 4842, 4843, 4841 ] } ]
},
{
"id": "vp_halfboard_vertical_right",
- "fg": [ 4812, 4810, 4809, 4811 ],
+ "fg": [ 4849, 4847, 4846, 4848 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4812, 4810, 4809, 4811 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4849, 4847, 4846, 4848 ] } ]
},
{
"id": "vp_halfboard_vertical_2_right",
- "fg": [ 4806, 4808, 4803, 4807 ],
+ "fg": [ 4843, 4845, 4840, 4844 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4806, 4808, 4803, 4807 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4843, 4845, 4840, 4844 ] } ]
},
{
"id": "vp_halfboard_vertical_t_left",
- "fg": [ 4814, 4816, 4815, 4813 ],
+ "fg": [ 4851, 4853, 4852, 4850 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4814, 4816, 4815, 4813 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4851, 4853, 4852, 4850 ] } ]
},
{
"id": "vp_halfboard_vertical_t_right",
- "fg": [ 4818, 4820, 4819, 4817 ],
+ "fg": [ 4855, 4857, 4856, 4854 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4818, 4820, 4819, 4817 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4855, 4857, 4856, 4854 ] } ]
},
{
"id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ],
- "fg": 4769,
+ "fg": 4806,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4769 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4806 } ]
},
{
"id": "vp_halfboard_horizontal_front",
- "fg": [ 4778, 4781, 4780, 4779 ],
+ "fg": [ 4815, 4818, 4817, 4816 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4778, 4781, 4780, 4779 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4815, 4818, 4817, 4816 ] } ]
},
{
"id": "vp_halfboard_horizontal_2_front",
- "fg": [ 4770, 4773, 4772, 4771 ],
+ "fg": [ 4807, 4810, 4809, 4808 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4770, 4773, 4772, 4771 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4807, 4810, 4809, 4808 ] } ]
},
{
"id": "vp_halfboard_horizontal_rear",
- "fg": [ 4782, 4785, 4784, 4783 ],
+ "fg": [ 4819, 4822, 4821, 4820 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4782, 4785, 4784, 4783 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4819, 4822, 4821, 4820 ] } ]
},
{
"id": "vp_halfboard_horizontal_2_rear",
- "fg": [ 4774, 4777, 4776, 4775 ],
+ "fg": [ 4811, 4814, 4813, 4812 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4774, 4777, 4776, 4775 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4811, 4814, 4813, 4812 ] } ]
},
{
"id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ],
- "fg": 4802,
+ "fg": 4839,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4802 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4839 } ]
},
{
"id": "vp_halfboard_cover",
- "fg": [ 4765, 4768, 4767, 4766 ],
+ "fg": [ 4802, 4805, 4804, 4803 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4765, 4768, 4767, 4766 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4802, 4805, 4804, 4803 ] } ]
},
{
"id": "vp_hdhalfboard_ne",
- "fg": 4856,
+ "fg": 4893,
"//": [ "vp_hdhalfboard_ne_rotW", "vp_hdhalfboard_ne_rotS", "vp_hdhalfboard_ne_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4856 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4893 } ]
},
{
"id": "vp_hdhalfboard_nw",
- "fg": 4857,
+ "fg": 4894,
"//": [ "vp_hdhalfboard_nw_rotW", "vp_hdhalfboard_nw_rotS", "vp_hdhalfboard_nw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4857 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4894 } ]
},
{
"id": "vp_hdhalfboard_se",
- "fg": 4858,
+ "fg": 4895,
"//": [ "vp_hdhalfboard_se_rotW", "vp_hdhalfboard_se_rotS", "vp_hdhalfboard_se_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4858 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4895 } ]
},
{
"id": "vp_hdhalfboard_sw",
- "fg": 4859,
+ "fg": 4896,
"//": [ "vp_hdhalfboard_sw_rotW", "vp_hdhalfboard_sw_rotS", "vp_hdhalfboard_sw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4859 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4896 } ]
},
{
"id": "vp_hdhalfboard_vertical_left",
- "fg": 4864,
+ "fg": 4901,
"//": [
"vp_hdhalfboard_vertical_left_rotW_right_rotE",
"vp_hdhalfboard_vertical_right",
@@ -6315,11 +6349,11 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4864 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4901 } ]
},
{
"id": "vp_hdhalfboard_vertical_right",
- "fg": 4865,
+ "fg": 4902,
"//": [
"vp_hdhalfboard_vertical_left_rotE_right_rotW",
"vp_hdhalfboard_vertical_left",
@@ -6327,118 +6361,118 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4865 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4902 } ]
},
{
"id": [ "vp_hdhalfboard_horizontal" ],
- "fg": 4851,
+ "fg": 4888,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4851 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4888 } ]
},
{
"id": [ "vp_hdhalfboard_horizontal_2" ],
- "fg": 4846,
+ "fg": 4883,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4846 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4883 } ]
},
{
"id": "vp_hdhalfboard_horizontal_front",
- "fg": [ 4851, 4854, 4853, 4852 ],
+ "fg": [ 4888, 4891, 4890, 4889 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4851, 4854, 4853, 4852 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4888, 4891, 4890, 4889 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal_2_front",
- "fg": [ 4846, 4849, 4848, 4847 ],
+ "fg": [ 4883, 4886, 4885, 4884 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4846, 4849, 4848, 4847 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4883, 4886, 4885, 4884 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal_rear",
- "fg": [ 4855, 4852, 4851, 4854 ],
+ "fg": [ 4892, 4889, 4888, 4891 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4855, 4852, 4851, 4854 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4892, 4889, 4888, 4891 ] } ]
},
{
"id": "vp_hdhalfboard_horizontal_2_rear",
- "fg": [ 4850, 4847, 4846, 4849 ],
+ "fg": [ 4887, 4884, 4883, 4886 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4850, 4847, 4846, 4849 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4887, 4884, 4883, 4886 ] } ]
},
{
"id": [ "vp_hdhalfboard_vertical" ],
- "fg": 4860,
+ "fg": 4897,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4860 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4897 } ]
},
{
"id": [ "vp_hdhalfboard_vertical_2" ],
- "fg": 4861,
+ "fg": 4898,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4861 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4898 } ]
},
{
"id": "vp_hdhalfboard_vertical_2_left",
- "fg": 4862,
+ "fg": 4899,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4862 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4899 } ]
},
{
"id": "vp_hdhalfboard_vertical_2_right",
- "fg": 4863,
+ "fg": 4900,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4863 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4900 } ]
},
{
"id": "vp_hdhalfboard_cover",
- "fg": [ 4842, 4845, 4844, 4843 ],
+ "fg": [ 4879, 4882, 4881, 4880 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4842, 4845, 4844, 4843 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4879, 4882, 4881, 4880 ] } ]
},
{
"id": "vp_xlhalfboard_ne",
- "fg": [ 4875, 4878, 4877, 4876 ],
+ "fg": [ 4912, 4915, 4914, 4913 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4875, 4878, 4877, 4876 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4912, 4915, 4914, 4913 ] } ]
},
{
"id": "vp_xlhalfboard_nw",
- "fg": [ 4879, 4882, 4881, 4880 ],
+ "fg": [ 4916, 4919, 4918, 4917 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4879, 4882, 4881, 4880 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4916, 4919, 4918, 4917 ] } ]
},
{
"id": "vp_xlhalfboard_se",
- "fg": 4883,
+ "fg": 4920,
"//": [ "vp_xlhalfboard_se_rotW", "vp_xlhalfboard_se_rotS", "vp_xlhalfboard_se_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4883 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4920 } ]
},
{
"id": "vp_xlhalfboard_sw",
- "fg": 4884,
+ "fg": 4921,
"//": [ "vp_xlhalfboard_sw_rotW", "vp_xlhalfboard_sw_rotS", "vp_xlhalfboard_sw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4884 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4921 } ]
},
{
"id": "vp_xlhalfboard_vertical_left",
- "fg": 4886,
+ "fg": 4923,
"//": [
"vp_xlhalfboard_vertical_left_rotW_right_rotE",
"vp_xlhalfboard_vertical_right",
@@ -6446,11 +6480,11 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4886 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4923 } ]
},
{
"id": "vp_xlhalfboard_vertical_right",
- "fg": 4887,
+ "fg": 4924,
"//": [
"vp_xlhalfboard_vertical_left_rotE_right_rotW",
"vp_xlhalfboard_vertical_left",
@@ -6458,458 +6492,458 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4887 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4924 } ]
},
{
"id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ],
- "fg": 4870,
+ "fg": 4907,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4870 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4907 } ]
},
{
"id": "vp_xlhalfboard_horizontal_front",
- "fg": [ 4870, 4873, 4872, 4871 ],
+ "fg": [ 4907, 4910, 4909, 4908 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4870, 4873, 4872, 4871 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4907, 4910, 4909, 4908 ] } ]
},
{
"id": "vp_xlhalfboard_horizontal_rear",
- "fg": 4874,
+ "fg": 4911,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4874 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4911 } ]
},
{
"id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ],
- "fg": 4885,
+ "fg": 4922,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4885 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4922 } ]
},
{
"id": "vp_xlhalfboard_cover",
- "fg": [ 4866, 4869, 4868, 4867 ],
+ "fg": [ 4903, 4906, 4905, 4904 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4866, 4869, 4868, 4867 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4903, 4906, 4905, 4904 ] } ]
},
{
"id": "vp_cloth_halfboard_horizontal",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_horizontal_front",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_horizontal_rear",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_horizontal_2",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_horizontal_2_front",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_horizontal_2_rear",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_ne",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_nw",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_se",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_sw",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_vertical",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_vertical_left",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_vertical_right",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_vertical_2",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_vertical_2_left",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_cloth_halfboard_vertical_2_right",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_horizontal",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_horizontal_front",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_horizontal_rear",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_ne",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_nw",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_se",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_sw",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_vertical",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_vertical_left",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
{
"id": "vp_clothboard_vertical_right",
- "fg": 4888,
+ "fg": 4925,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4888 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4925 } ]
},
- { "id": "vp_roof_cloth", "fg": 1241, "rotates": false },
+ { "id": "vp_roof_cloth", "fg": 1236, "rotates": false },
{
"id": "vp_stowboard_ne",
- "fg": [ 4917, 4920, 4919, 4918 ],
+ "fg": [ 4954, 4957, 4956, 4955 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4917, 4920, 4919, 4918 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4954, 4957, 4956, 4955 ] } ]
},
{
"id": "vp_stowboard_nw",
- "fg": [ 4921, 4924, 4923, 4922 ],
+ "fg": [ 4958, 4961, 4960, 4959 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4921, 4924, 4923, 4922 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4958, 4961, 4960, 4959 ] } ]
},
{
"id": "vp_stowboard_se",
- "fg": [ 4925, 4927, 4921, 4926 ],
+ "fg": [ 4962, 4964, 4958, 4963 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4925, 4927, 4921, 4926 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4962, 4964, 4958, 4963 ] } ]
},
{
"id": "vp_stowboard_sw",
- "fg": [ 4928, 4930, 4917, 4929 ],
+ "fg": [ 4965, 4967, 4954, 4966 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4928, 4930, 4917, 4929 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4965, 4967, 4954, 4966 ] } ]
},
{
"id": "vp_stowboard_vertical_left",
- "fg": [ 4931, 4933, 4934, 4932 ],
+ "fg": [ 4968, 4970, 4971, 4969 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4931, 4933, 4934, 4932 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4968, 4970, 4971, 4969 ] } ]
},
{
"id": "vp_stowboard_vertical_right",
- "fg": [ 4934, 4932, 4931, 4933 ],
+ "fg": [ 4971, 4969, 4968, 4970 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4934, 4932, 4931, 4933 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4971, 4969, 4968, 4970 ] } ]
},
{
"id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ],
- "fg": 4912,
+ "fg": 4949,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4912 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4949 } ]
},
{
"id": "vp_stowboard_horizontal_front",
- "fg": [ 4912, 4915, 4914, 4913 ],
+ "fg": [ 4949, 4952, 4951, 4950 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4912, 4915, 4914, 4913 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4949, 4952, 4951, 4950 ] } ]
},
{
"id": "vp_stowboard_horizontal_rear",
- "fg": [ 4916, 4913, 4912, 4915 ],
+ "fg": [ 4953, 4950, 4949, 4952 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4916, 4913, 4912, 4915 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4953, 4950, 4949, 4952 ] } ]
},
{
"id": [ "vp_stowboard_vertical" ],
- "fg": 4932,
+ "fg": 4969,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4932 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4969 } ]
},
{
"id": "vp_hdstowboard_ne",
- "fg": [ 4894, 4897, 4896, 4895 ],
+ "fg": [ 4931, 4934, 4933, 4932 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4894, 4897, 4896, 4895 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4931, 4934, 4933, 4932 ] } ]
},
{
"id": "vp_hdstowboard_nw",
- "fg": [ 4898, 4901, 4900, 4899 ],
+ "fg": [ 4935, 4938, 4937, 4936 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4898, 4901, 4900, 4899 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4935, 4938, 4937, 4936 ] } ]
},
{
"id": "vp_hdstowboard_se",
- "fg": [ 4902, 4904, 4898, 4903 ],
+ "fg": [ 4939, 4941, 4935, 4940 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4902, 4904, 4898, 4903 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4939, 4941, 4935, 4940 ] } ]
},
{
"id": "vp_hdstowboard_sw",
- "fg": [ 4905, 4907, 4894, 4906 ],
+ "fg": [ 4942, 4944, 4931, 4943 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4905, 4907, 4894, 4906 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4942, 4944, 4931, 4943 ] } ]
},
{
"id": "vp_hdstowboard_vertical_left",
- "fg": [ 4908, 4910, 4911, 4909 ],
+ "fg": [ 4945, 4947, 4948, 4946 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4908, 4910, 4911, 4909 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4945, 4947, 4948, 4946 ] } ]
},
{
"id": "vp_hdstowboard_vertical_right",
- "fg": [ 4911, 4909, 4908, 4910 ],
+ "fg": [ 4948, 4946, 4945, 4947 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4911, 4909, 4908, 4910 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4948, 4946, 4945, 4947 ] } ]
},
{
"id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ],
- "fg": 4889,
+ "fg": 4926,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4889 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4926 } ]
},
{
"id": "vp_hdstowboard_horizontal_front",
- "fg": [ 4889, 4892, 4891, 4890 ],
+ "fg": [ 4926, 4929, 4928, 4927 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4889, 4892, 4891, 4890 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4926, 4929, 4928, 4927 ] } ]
},
{
"id": "vp_hdstowboard_horizontal_rear",
- "fg": [ 4893, 4890, 4889, 4892 ],
+ "fg": [ 4930, 4927, 4926, 4929 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4893, 4890, 4889, 4892 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4930, 4927, 4926, 4929 ] } ]
},
{
"id": [ "vp_hdstowboard_vertical" ],
- "fg": 4909,
+ "fg": 4946,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4909 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4946 } ]
},
{
"id": "vp_woodboard_ne",
- "fg": [ 4939, 4940, 4945, 4946 ],
+ "fg": [ 4976, 4977, 4982, 4983 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4939, 4940, 4945, 4946 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4976, 4977, 4982, 4983 ] } ]
},
{
"id": "vp_woodboard_nw",
- "fg": [ 4941, 4942, 4943, 4944 ],
+ "fg": [ 4978, 4979, 4980, 4981 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4941, 4942, 4943, 4944 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4978, 4979, 4980, 4981 ] } ]
},
{
"id": "vp_woodboard_se",
- "fg": [ 4943, 4944, 4941, 4942 ],
+ "fg": [ 4980, 4981, 4978, 4979 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4943, 4944, 4941, 4942 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4980, 4981, 4978, 4979 ] } ]
},
{
"id": "vp_woodboard_sw",
- "fg": [ 4945, 4946, 4939, 4940 ],
+ "fg": [ 4982, 4983, 4976, 4977 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4945, 4946, 4939, 4940 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4982, 4983, 4976, 4977 ] } ]
},
{
"id": "vp_woodboard_vertical_left",
- "fg": [ 4947, 4937, 4948, 4935 ],
+ "fg": [ 4984, 4974, 4985, 4972 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4947, 4937, 4948, 4935 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4984, 4974, 4985, 4972 ] } ]
},
{
"id": "vp_woodboard_vertical_right",
- "fg": [ 4948, 4935, 4947, 4937 ],
+ "fg": [ 4985, 4972, 4984, 4974 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4948, 4935, 4947, 4937 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4985, 4972, 4984, 4974 ] } ]
},
{
"id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ],
- "fg": [ 4935, 4936, 4937, 4938 ],
+ "fg": [ 4972, 4973, 4974, 4975 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4935, 4936, 4937, 4938 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4972, 4973, 4974, 4975 ] } ]
},
{
"id": "vp_woodboard_horizontal_rear",
- "fg": [ 4937, 4938, 4935, 4936 ],
+ "fg": [ 4974, 4975, 4972, 4973 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4937, 4938, 4935, 4936 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4974, 4975, 4972, 4973 ] } ]
},
{
"id": [ "vp_woodhalfboard_ne" ],
- "fg": 4953,
+ "fg": 4990,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4953 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4990 } ]
},
{
"id": "vp_woodhalfboard_nw",
- "fg": 4952,
+ "fg": 4989,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4952 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4989 } ]
},
{
"id": "vp_woodhalfboard_se",
- "fg": 4957,
+ "fg": 4994,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4957 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4994 } ]
},
{
"id": "vp_woodhalfboard_sw",
- "fg": 4956,
+ "fg": 4993,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4956 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4993 } ]
},
{
"id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ],
- "fg": 4954,
+ "fg": 4991,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4954 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4991 } ]
},
{
"id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ],
- "fg": 4958,
+ "fg": 4995,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4958 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4995 } ]
},
{
"id": [
@@ -6918,550 +6952,550 @@
"vp_woodhalfboard_horizontal_front",
"vp_woodhalfboard_horizontal_2_front"
],
- "fg": 4951,
+ "fg": 4988,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4951 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4988 } ]
},
{
"id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ],
- "fg": 4955,
+ "fg": 4992,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4955 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4992 } ]
},
{
"id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ],
- "fg": 4950,
+ "fg": 4987,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4950 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4987 } ]
},
{
"id": [ "vp_woodhalfboard_cover" ],
- "fg": 4949,
+ "fg": 4986,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4949 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4986 } ]
},
{
"id": [ "vp_basketsm", "vp_basketsm_external" ],
- "fg": [ 4972, 4971 ],
+ "fg": [ 5009, 5008 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4972, 4971 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5009, 5008 ] } ]
},
{
"id": "vp_basketsm_bike_rear",
- "fg": [ 4968, 4970, 4969, 4967 ],
+ "fg": [ 5005, 5007, 5006, 5004 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4968, 4970, 4969, 4967 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5005, 5007, 5006, 5004 ] } ]
},
{
"id": [ "vp_basketlg", "vp_basketlg_external" ],
- "fg": [ 4966, 4965 ],
+ "fg": [ 5003, 5002 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4966, 4965 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5003, 5002 ] } ]
},
{
"id": "vp_basketlg_cart",
- "fg": [ 4962, 4964, 4963, 4961 ],
+ "fg": [ 4999, 5001, 5000, 4998 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4962, 4964, 4963, 4961 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 4999, 5001, 5000, 4998 ] } ]
},
{
"id": "vp_box",
- "fg": [ 4973, 4974 ],
+ "fg": [ 5010, 5011 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4973, 4974 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5010, 5011 ] } ]
},
{
"id": "vp_wood box",
- "fg": [ 4983, 4982 ],
+ "fg": [ 5020, 5019 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4983, 4982 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5020, 5019 ] } ]
},
{
"id": "vp_box_wheelbarrow",
- "fg": [ 4976, 4978, 4977, 4975 ],
+ "fg": [ 5013, 5015, 5014, 5012 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 4976, 4978, 4977, 4975 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5013, 5015, 5014, 5012 ] } ]
},
{
"id": "vp_trunk",
- "fg": 4980,
+ "fg": 5017,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4980 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5017 } ]
},
{
"id": "vp_trunk_rear_edge",
- "fg": 4981,
+ "fg": 5018,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4981 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5018 } ]
},
{
"id": "vp_cargo_space",
- "fg": 4979,
+ "fg": 5016,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4979 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5016 } ]
},
{
"id": "vp_external_tank",
- "fg": 4959,
+ "fg": 4996,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 4959 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 4996 } ]
},
{
"id": [ "vp_door_internal" ],
- "fg": [ 5008, 5012, 5010, 5006 ],
+ "fg": [ 5045, 5049, 5047, 5043 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5009, 5013, 5011, 5007 ] }, { "id": "broken", "fg": 4984, "bg": [ 5008, 5012, 5010, 5006 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5046, 5050, 5048, 5044 ] }, { "id": "broken", "fg": 5021, "bg": [ 5045, 5049, 5047, 5043 ] } ]
},
{
"id": [ "vp_door", "vp_door_inboard" ],
- "fg": 5004,
+ "fg": 5041,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": 5005 }, { "id": "broken", "fg": 4984, "bg": 5004 } ]
+ "additional_tiles": [ { "id": "open", "fg": 5042 }, { "id": "broken", "fg": 5021, "bg": 5041 } ]
},
{
"id": [ "vp_door_front" ],
- "fg": [ 4996, 5003, 5002, 5001 ],
+ "fg": [ 5033, 5040, 5039, 5038 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 4998, 5000, 4999, 4997 ] }, { "id": "broken", "fg": 4984, "bg": [ 4996, 5003, 5002, 5001 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5035, 5037, 5036, 5034 ] }, { "id": "broken", "fg": 5021, "bg": [ 5033, 5040, 5039, 5038 ] } ]
},
{
"id": [ "vp_door_rear" ],
- "fg": [ 5050, 5057, 5056, 5055 ],
+ "fg": [ 5087, 5094, 5093, 5092 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5052, 5054, 5053, 5051 ] }, { "id": "broken", "fg": 4984, "bg": [ 5050, 5057, 5056, 5055 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5089, 5091, 5090, 5088 ] }, { "id": "broken", "fg": 5021, "bg": [ 5087, 5094, 5093, 5092 ] } ]
},
{
"id": [ "vp_door_left", "vp_door_vertical_left" ],
- "fg": [ 4988, 4991, 4990, 4989 ],
+ "fg": [ 5025, 5028, 5027, 5026 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5015, 5017, 5016, 5014 ] }, { "id": "broken", "fg": 4984, "bg": [ 4988, 4991, 4990, 4989 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5052, 5054, 5053, 5051 ] }, { "id": "broken", "fg": 5021, "bg": [ 5025, 5028, 5027, 5026 ] } ]
},
{
"id": [ "vp_door_nw", "vp_door_front_left" ],
- "fg": [ 5022, 5025, 5024, 5023 ],
+ "fg": [ 5059, 5062, 5061, 5060 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5015, 5017, 5016, 5014 ] }, { "id": "broken", "fg": 4984, "bg": [ 5022, 5025, 5024, 5023 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5052, 5054, 5053, 5051 ] }, { "id": "broken", "fg": 5021, "bg": [ 5059, 5062, 5061, 5060 ] } ]
},
{
"id": [ "vp_door_sw", "vp_door_rear_left" ],
- "fg": [ 5071, 5074, 5073, 5072 ],
+ "fg": [ 5108, 5111, 5110, 5109 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5015, 5017, 5016, 5014 ] }, { "id": "broken", "fg": 4984, "bg": [ 5071, 5074, 5073, 5072 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5052, 5054, 5053, 5051 ] }, { "id": "broken", "fg": 5021, "bg": [ 5108, 5111, 5110, 5109 ] } ]
},
{
"id": [ "vp_door_right", "vp_door_vertical_right", "vp_door_sliding" ],
- "fg": [ 4992, 4995, 4994, 4993 ],
+ "fg": [ 5029, 5032, 5031, 5030 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5059, 5061, 5060, 5058 ] }, { "id": "broken", "fg": 4984, "bg": [ 4992, 4995, 4994, 4993 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5096, 5098, 5097, 5095 ] }, { "id": "broken", "fg": 5021, "bg": [ 5029, 5032, 5031, 5030 ] } ]
},
{
"id": [ "vp_door_ne", "vp_door_front_right" ],
- "fg": [ 5018, 5021, 5020, 5019 ],
+ "fg": [ 5055, 5058, 5057, 5056 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5059, 5061, 5060, 5058 ] }, { "id": "broken", "fg": 4984, "bg": [ 5018, 5021, 5020, 5019 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5096, 5098, 5097, 5095 ] }, { "id": "broken", "fg": 5021, "bg": [ 5055, 5058, 5057, 5056 ] } ]
},
{
"id": [ "vp_door_se", "vp_door_rear_right" ],
- "fg": [ 5062, 5065, 5064, 5063 ],
+ "fg": [ 5099, 5102, 5101, 5100 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5059, 5061, 5060, 5058 ] }, { "id": "broken", "fg": 4984, "bg": [ 5062, 5065, 5064, 5063 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5096, 5098, 5097, 5095 ] }, { "id": "broken", "fg": 5021, "bg": [ 5099, 5102, 5101, 5100 ] } ]
},
{
"id": "vp_door_shutter",
- "fg": [ 5066, 5070, 5069, 5068 ],
+ "fg": [ 5103, 5107, 5106, 5105 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": 5067 }, { "id": "broken", "fg": 4984, "bg": [ 5066, 5070, 5069, 5068 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": 5104 }, { "id": "broken", "fg": 5021, "bg": [ 5103, 5107, 5106, 5105 ] } ]
},
{
"id": "vp_door_trunk",
- "fg": [ 5075, 5082, 5081, 5080 ],
+ "fg": [ 5112, 5119, 5118, 5117 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5076, 5079, 5078, 5077 ] }, { "id": "broken", "fg": 4984, "bg": [ 5075, 5082, 5081, 5080 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5113, 5116, 5115, 5114 ] }, { "id": "broken", "fg": 5021, "bg": [ 5112, 5119, 5118, 5117 ] } ]
},
{
"id": [ "vp_hddoor_trunk", "vp_hatch", "vp_hatch_opaque", "vp_hdhatch", "vp_hdhatch_opaque" ],
- "fg": [ 5131, 5138, 5137, 5136 ],
+ "fg": [ 5168, 5175, 5174, 5173 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5132, 5135, 5134, 5133 ] }, { "id": "broken", "fg": 4984, "bg": [ 5131, 5138, 5137, 5136 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5169, 5172, 5171, 5170 ] }, { "id": "broken", "fg": 5021, "bg": [ 5168, 5175, 5174, 5173 ] } ]
},
{
"id": [ "vp_hddoor_left" ],
- "fg": [ 5084, 5086, 5085, 5083 ],
+ "fg": [ 5121, 5123, 5122, 5120 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5096, 5098, 5097, 5095 ] }, { "id": "broken", "fg": 4984, "bg": [ 5084, 5086, 5085, 5083 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5133, 5135, 5134, 5132 ] }, { "id": "broken", "fg": 5021, "bg": [ 5121, 5123, 5122, 5120 ] } ]
},
{
"id": [ "vp_hddoor_right" ],
- "fg": [ 5088, 5090, 5089, 5087 ],
+ "fg": [ 5125, 5127, 5126, 5124 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5128, 5130, 5129, 5127 ] }, { "id": "broken", "fg": 4984, "bg": [ 5088, 5090, 5089, 5087 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5165, 5167, 5166, 5164 ] }, { "id": "broken", "fg": 5021, "bg": [ 5125, 5127, 5126, 5124 ] } ]
},
{
"id": [ "vp_hddoor", "vp_hddoor_front" ],
- "fg": [ 5092, 5094, 5093, 5091 ],
+ "fg": [ 5129, 5131, 5130, 5128 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 4998, 5000, 4999, 4997 ] }, { "id": "broken", "fg": 4984, "bg": [ 5092, 5094, 5093, 5091 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5035, 5037, 5036, 5034 ] }, { "id": "broken", "fg": 5021, "bg": [ 5129, 5131, 5130, 5128 ] } ]
},
{
"id": [ "vp_hddoor_rear" ],
- "fg": [ 5124, 5126, 5125, 5123 ],
+ "fg": [ 5161, 5163, 5162, 5160 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5052, 5054, 5053, 5051 ] }, { "id": "broken", "fg": 4984, "bg": [ 5124, 5126, 5125, 5123 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5089, 5091, 5090, 5088 ] }, { "id": "broken", "fg": 5021, "bg": [ 5161, 5163, 5162, 5160 ] } ]
},
{
"id": [ "vp_door_opaque_left" ],
- "fg": [ 5035, 5037, 5036, 5034 ],
+ "fg": [ 5072, 5074, 5073, 5071 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5031, 5033, 5032, 5030 ] }, { "id": "broken", "fg": 4984, "bg": [ 5035, 5037, 5036, 5034 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5068, 5070, 5069, 5067 ] }, { "id": "broken", "fg": 5021, "bg": [ 5072, 5074, 5073, 5071 ] } ]
},
{
"id": [ "vp_door_opaque_right" ],
- "fg": [ 5047, 5049, 5048, 5046 ],
+ "fg": [ 5084, 5086, 5085, 5083 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5043, 5045, 5044, 5042 ] }, { "id": "broken", "fg": 4984, "bg": [ 5047, 5049, 5048, 5046 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5080, 5082, 5081, 5079 ] }, { "id": "broken", "fg": 5021, "bg": [ 5084, 5086, 5085, 5083 ] } ]
},
{
"id": [ "vp_door_opaque", "vp_door_opaque_front" ],
- "fg": [ 5027, 5029, 5028, 5026 ],
+ "fg": [ 5064, 5066, 5065, 5063 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 4998, 5000, 4999, 4997 ] }, { "id": "broken", "fg": 4984, "bg": [ 5027, 5029, 5028, 5026 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5035, 5037, 5036, 5034 ] }, { "id": "broken", "fg": 5021, "bg": [ 5064, 5066, 5065, 5063 ] } ]
},
{
"id": [ "vp_door_opaque_rear" ],
- "fg": [ 5039, 5041, 5040, 5038 ],
+ "fg": [ 5076, 5078, 5077, 5075 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5052, 5054, 5053, 5051 ] }, { "id": "broken", "fg": 4984, "bg": [ 5039, 5041, 5040, 5038 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5089, 5091, 5090, 5088 ] }, { "id": "broken", "fg": 5021, "bg": [ 5076, 5078, 5077, 5075 ] } ]
},
{
"id": [ "vp_hddoor_opaque_left" ],
- "fg": [ 5108, 5110, 5109, 5107 ],
+ "fg": [ 5145, 5147, 5146, 5144 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5104, 5106, 5105, 5103 ] }, { "id": "broken", "fg": 4984, "bg": [ 5108, 5110, 5109, 5107 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5141, 5143, 5142, 5140 ] }, { "id": "broken", "fg": 5021, "bg": [ 5145, 5147, 5146, 5144 ] } ]
},
{
"id": [ "vp_hddoor_opaque_right" ],
- "fg": [ 5120, 5122, 5121, 5119 ],
+ "fg": [ 5157, 5159, 5158, 5156 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5116, 5118, 5117, 5115 ] }, { "id": "broken", "fg": 4984, "bg": [ 5120, 5122, 5121, 5119 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5153, 5155, 5154, 5152 ] }, { "id": "broken", "fg": 5021, "bg": [ 5157, 5159, 5158, 5156 ] } ]
},
{
"id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ],
- "fg": [ 5100, 5102, 5101, 5099 ],
+ "fg": [ 5137, 5139, 5138, 5136 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 4998, 5000, 4999, 4997 ] }, { "id": "broken", "fg": 4984, "bg": [ 5100, 5102, 5101, 5099 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5035, 5037, 5036, 5034 ] }, { "id": "broken", "fg": 5021, "bg": [ 5137, 5139, 5138, 5136 ] } ]
},
{
"id": [ "vp_hddoor_opaque_rear" ],
- "fg": [ 5112, 5114, 5113, 5111 ],
+ "fg": [ 5149, 5151, 5150, 5148 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 5052, 5054, 5053, 5051 ] }, { "id": "broken", "fg": 4984, "bg": [ 5112, 5114, 5113, 5111 ] } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 5089, 5091, 5090, 5088 ] }, { "id": "broken", "fg": 5021, "bg": [ 5149, 5151, 5150, 5148 ] } ]
},
{
"id": "vp_frame_cover",
- "fg": 5139,
+ "fg": 5176,
"//": [ "frame_cover_rotW", "frame_cover_rotS", "frame_cover_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5139 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5176 } ]
},
{
"id": "vp_frame_cross",
- "fg": 5140,
+ "fg": 5177,
"//": [ "frame_cross_rotW", "frame_cross_rotS", "frame_cross_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5140 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5177 } ]
},
{
"id": "vp_frame_cross_unconnected",
- "fg": 5141,
+ "fg": 5178,
"//": [ "frame_cross_unconnected_rotW", "frame_cross_unconnected_rotS", "frame_cross_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5141 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5178 } ]
},
{
"id": "vp_frame_ne",
- "fg": 5154,
+ "fg": 5191,
"//": [ "frame_ne_rotW", "frame_ne_rotS", "frame_ne_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5154 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5191 } ]
},
{
"id": "vp_frame_nw",
- "fg": 5155,
+ "fg": 5192,
"//": [ "frame_nw_rotW", "frame_nw_rotS", "frame_nw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5155 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5192 } ]
},
{
"id": "vp_frame_se",
- "fg": 5156,
+ "fg": 5193,
"//": [ "frame_se_rotW", "frame_se_rotS", "frame_se_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5156 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5193 } ]
},
{
"id": "vp_frame_sw",
- "fg": 5157,
+ "fg": 5194,
"//": [ "frame_sw_rotW", "frame_sw_rotS", "frame_sw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5157 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5194 } ]
},
{
"id": "vp_frame_vertical_unconnected",
- "fg": 5165,
+ "fg": 5202,
"//": [ "frame_vertical_unconnected_rotW_right_rotE", "frame_vertical_right", "frame_vertical_unconnected_rotE_right_rotW" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5165 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5202 } ]
},
{
"id": "vp_frame_vertical_2_unconnected",
- "fg": 5162,
+ "fg": 5199,
"//": [ "frame_vertical2_unconnected_rotW", "frame_vertical2_right", "frame_vertical2_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5162 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5199 } ]
},
{
"id": "vp_frame_vertical_left",
- "fg": 5163,
+ "fg": 5200,
"//": [ "frame_vertical_left_rotW_right_rotE", "frame_vertical_right", "frame_vertical_left_rotE_right_rotW" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5163 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5200 } ]
},
{
"id": "vp_frame_vertical_2_left",
- "fg": 5160,
+ "fg": 5197,
"//": [ "frame_vertical2_left_rotW", "frame_vertical2_right", "frame_vertical2_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5160 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5197 } ]
},
{
"id": "vp_frame_vertical_right",
- "fg": 5164,
+ "fg": 5201,
"//": [ "frame_vertical_left_rotE_right_rotW", "frame_vertical_left", "frame_vertical_left_rotW_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5164 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5201 } ]
},
{
"id": "vp_frame_vertical_2_right",
- "fg": 5161,
+ "fg": 5198,
"//": [ "frame_vertical2_right_rotW", "frame_vertical2_left", "frame_vertical2_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5161 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5198 } ]
},
{
"id": "vp_frame_horizontal",
- "fg": 5142,
+ "fg": 5179,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5142 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5179 } ]
},
{
"id": "vp_frame_horizontal_2",
- "fg": 5143,
+ "fg": 5180,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5143 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5180 } ]
},
{
"id": "vp_frame_horizontal_unconnected",
- "fg": 5153,
+ "fg": 5190,
"//": [ "frame_horizontal_unconnected_rotW", "frame_horizontal_unconnected_rotS", "frame_horizontal_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5153 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5190 } ]
},
{
"id": "vp_frame_horizontal_2_unconnected",
- "fg": 5146,
+ "fg": 5183,
"//": [ "frame_horizontal2_unconnected_rotW", "frame_horizontal2_unconnected_rotS", "frame_horizontal2_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5146 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5183 } ]
},
{
"id": "vp_frame_horizontal_front",
- "fg": 5149,
+ "fg": 5186,
"//": [ "frame_horizontal_front_rotW", "frame_horizontal_front_rotS", "frame_horizontal_front_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5149 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5186 } ]
},
{
"id": "vp_frame_horizontal_2_front",
- "fg": 5144,
+ "fg": 5181,
"//": [ "frame_horizontal2_front_rotW", "frame_horizontal2_front_rotS", "frame_horizontal2_front_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5144 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5181 } ]
},
{
"id": "vp_frame_horizontal_rear",
- "fg": 5151,
+ "fg": 5188,
"//": [ "frame_horizontal_rear_rotW", "frame_horizontal_rear_rotS", "frame_horizontal_rear_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5151 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5188 } ]
},
{
"id": "vp_frame_horizontal_2_rear",
- "fg": 5145,
+ "fg": 5182,
"//": [ "frame_horizontal2_rear_rotW", "frame_horizontal2_rear_rotS", "frame_horizontal2_rear_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5145 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5182 } ]
},
{
"id": "vp_frame_horizontal_left",
- "fg": 5150,
+ "fg": 5187,
"//": [ "frame_horizontal_left_rotW", "frame_horizontal_left_rotS", "frame_horizontal_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5150 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5187 } ]
},
{
"id": "vp_frame_horizontal_2_left",
- "fg": 5147,
+ "fg": 5184,
"//": [ "frame_horizontal_2_left_rotW", "frame_horizontal_2_left_rotS", "frame_horizontal_2_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5147 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5184 } ]
},
{
"id": "vp_frame_horizontal_right",
- "fg": 5152,
+ "fg": 5189,
"//": [ "frame_horizontal_right_rotW", "frame_horizontal_right_rotS", "frame_horizontal_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5152 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5189 } ]
},
{
"id": "vp_frame_horizontal_2_right",
- "fg": 5148,
+ "fg": 5185,
"//": [ "frame_horizontal_2_right_rotW", "frame_horizontal_2_right_rotS", "frame_horizontal_2_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5148 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5185 } ]
},
{
"id": "vp_frame_vertical",
- "fg": 5158,
+ "fg": 5195,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5158 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5195 } ]
},
{
"id": "vp_frame_vertical_2",
- "fg": 5159,
+ "fg": 5196,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5159 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5196 } ]
},
{
"id": "vp_hdframe_cover",
- "fg": 5166,
+ "fg": 5203,
"//": [ "hdframe_cover_rotW", "hdframe_cover_rotS", "hdframe_cover_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5166 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5203 } ]
},
{
"id": "vp_hdframe_cross",
- "fg": 5167,
+ "fg": 5204,
"//": [ "hdframe_cross_rotW", "hdframe_cross_rotS", "hdframe_cross_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5167 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5204 } ]
},
{
"id": "vp_hdframe_cross_unconnected",
- "fg": 5168,
+ "fg": 5205,
"//": [ "hdframe_cross_unconnected_rotW", "hdframe_cross_unconnected_rotS", "hdframe_cross_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5168 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5205 } ]
},
{
"id": "vp_hdframe_ne",
- "fg": 5181,
+ "fg": 5218,
"//": [ "hdframe_ne_rotW", "hdframe_ne_rotS", "hdframe_ne_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5181 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5218 } ]
},
{
"id": "vp_hdframe_nw",
- "fg": 5182,
+ "fg": 5219,
"//": [ "hdframe_nw_rotW", "hdframe_nw_rotS", "hdframe_nw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5182 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5219 } ]
},
{
"id": "vp_hdframe_se",
- "fg": 5183,
+ "fg": 5220,
"//": [ "hdframe_se_rotW", "hdframe_se_rotS", "hdframe_se_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5183 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5220 } ]
},
{
"id": "vp_hdframe_sw",
- "fg": 5184,
+ "fg": 5221,
"//": [ "hdframe_sw_rotW", "hdframe_sw_rotS", "hdframe_sw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5184 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5221 } ]
},
{
"id": "vp_hdframe_vertical_unconnected",
- "fg": 5192,
+ "fg": 5229,
"//": [
"hdframe_vertical_unconnected_rotW_right_rotE",
"hdframe_vertical_right",
@@ -7469,73 +7503,73 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5192 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5229 } ]
},
{
"id": "vp_hdframe_vertical_2_unconnected",
- "fg": 5189,
+ "fg": 5226,
"//": [ "hdframe_vertical2_unconnected_rotW", "hdframe_vertical2_right", "hdframe_vertical2_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5189 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5226 } ]
},
{
"id": "vp_hdframe_vertical_left",
- "fg": 5190,
+ "fg": 5227,
"//": [ "hdframe_vertical_left_rotW_right_rotE", "hdframe_vertical_right", "hdframe_vertical_left_rotE_right_rotW" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5190 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5227 } ]
},
{
"id": "vp_hdframe_vertical_2_left",
- "fg": 5187,
+ "fg": 5224,
"//": [ "hdframe_vertical2_left_rotW", "hdframe_vertical2_right", "hdframe_vertical2_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5187 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5224 } ]
},
{
"id": "vp_hdframe_vertical_right",
- "fg": 5191,
+ "fg": 5228,
"//": [ "hdframe_vertical_left_rotE_right_rotW", "hdframe_vertical_left", "hdframe_vertical_left_rotW_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5191 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5228 } ]
},
{
"id": "vp_hdframe_vertical_2_right",
- "fg": 5188,
+ "fg": 5225,
"//": [ "hdframe_vertical2_right_rotW", "hdframe_vertical2_left", "hdframe_vertical2_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5188 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5225 } ]
},
{
"id": "vp_hdframe_horizontal",
- "fg": 5169,
+ "fg": 5206,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5169 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5206 } ]
},
{
"id": "vp_hdframe_horizontal_2",
- "fg": 5170,
+ "fg": 5207,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5170 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5207 } ]
},
{
"id": "vp_hdframe_horizontal_unconnected",
- "fg": 5180,
+ "fg": 5217,
"//": [ "hdframe_horizontal_unconnected_rotW", "hdframe_horizontal_unconnected_rotS", "hdframe_horizontal_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5180 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5217 } ]
},
{
"id": "vp_hdframe_horizontal_2_unconnected",
- "fg": 5173,
+ "fg": 5210,
"//": [
"hdframe_horizontal2_unconnected_rotW",
"hdframe_horizontal2_unconnected_rotS",
@@ -7543,145 +7577,145 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5173 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5210 } ]
},
{
"id": "vp_hdframe_horizontal_front",
- "fg": 5176,
+ "fg": 5213,
"//": [ "hdframe_horizontal_front_rotW", "hdframe_horizontal_front_rotS", "hdframe_horizontal_front_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5176 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5213 } ]
},
{
"id": "vp_hdframe_horizontal_2_front",
- "fg": 5171,
+ "fg": 5208,
"//": [ "hdframe_horizontal2_front_rotW", "hdframe_horizontal2_front_rotS", "hdframe_horizontal2_front_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5171 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5208 } ]
},
{
"id": "vp_hdframe_horizontal_rear",
- "fg": 5178,
+ "fg": 5215,
"//": [ "hdframe_horizontal_rear_rotW", "hdframe_horizontal_rear_rotS", "hdframe_horizontal_rear_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5178 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5215 } ]
},
{
"id": "vp_hdframe_horizontal_2_rear",
- "fg": 5172,
+ "fg": 5209,
"//": [ "hdframe_horizontal2_rear_rotW", "hdframe_horizontal2_rear_rotS", "hdframe_horizontal2_rear_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5172 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5209 } ]
},
{
"id": "vp_hdframe_horizontal_left",
- "fg": 5177,
+ "fg": 5214,
"//": [ "hdframe_horizontal_left_rotW", "hdframe_horizontal_left_rotS", "hdframe_horizontal_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5177 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5214 } ]
},
{
"id": "vp_hdframe_horizontal_2_left",
- "fg": 5174,
+ "fg": 5211,
"//": [ "hdframe_horizontal_2_left_rotW", "hdframe_horizontal_2_left_rotS", "hdframe_horizontal_2_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5174 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5211 } ]
},
{
"id": "vp_hdframe_horizontal_right",
- "fg": 5179,
+ "fg": 5216,
"//": [ "hdframe_horizontal_right_rotW", "hdframe_horizontal_right_rotS", "hdframe_horizontal_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5179 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5216 } ]
},
{
"id": "vp_hdframe_horizontal_2_right",
- "fg": 5175,
+ "fg": 5212,
"//": [ "hdframe_horizontal_2_right_rotW", "hdframe_horizontal_2_right_rotS", "hdframe_horizontal_2_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5175 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5212 } ]
},
{
"id": "vp_hdframe_vertical",
- "fg": 5185,
+ "fg": 5222,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5185 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5222 } ]
},
{
"id": "vp_hdframe_vertical_2",
- "fg": 5186,
+ "fg": 5223,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5186 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5223 } ]
},
{
"id": "vp_xlframe_cover",
- "fg": 5193,
+ "fg": 5230,
"//": [ "xlframe_cover_rotW", "xlframe_cover_rotS", "xlframe_cover_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5193 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5230 } ]
},
{
"id": "vp_xlframe_cross",
- "fg": 5194,
+ "fg": 5231,
"//": [ "xlframe_cross_rotW", "xlframe_cross_rotS", "xlframe_cross_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5194 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5231 } ]
},
{
"id": "vp_xlframe_cross_unconnected",
- "fg": 5195,
+ "fg": 5232,
"//": [ "xlframe_cross_unconnected_rotW", "xlframe_cross_unconnected_rotS", "xlframe_cross_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5195 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5232 } ]
},
{
"id": "vp_xlframe_ne",
- "fg": 5208,
+ "fg": 5245,
"//": [ "xlframe_ne_rotW", "xlframe_ne_rotS", "xlframe_ne_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5208 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5245 } ]
},
{
"id": "vp_xlframe_nw",
- "fg": 5209,
+ "fg": 5246,
"//": [ "xlframe_nw_rotW", "xlframe_nw_rotS", "xlframe_nw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5209 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5246 } ]
},
{
"id": "vp_xlframe_se",
- "fg": 5210,
+ "fg": 5247,
"//": [ "xlframe_se_rotW", "xlframe_se_rotS", "xlframe_se_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5210 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5247 } ]
},
{
"id": "vp_xlframe_sw",
- "fg": 5211,
+ "fg": 5248,
"//": [ "xlframe_sw_rotW", "xlframe_sw_rotS", "xlframe_sw_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5211 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5248 } ]
},
{
"id": "vp_xlframe_vertical_unconnected",
- "fg": 5219,
+ "fg": 5256,
"//": [
"xlframe_vertical_unconnected_rotW_right_rotE",
"xlframe_vertical_unconnected",
@@ -7689,73 +7723,73 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5219 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5256 } ]
},
{
"id": "vp_xlframe_vertical_2_unconnected",
- "fg": 5216,
+ "fg": 5253,
"//": [ "xlframe_vertical2_unconnected_rotW", "xlframe_vertical2_unconnected", "xlframe_vertical2_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5216 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5253 } ]
},
{
"id": "vp_xlframe_vertical_left",
- "fg": 5217,
+ "fg": 5254,
"//": [ "xlframe_vertical_left_rotW_right_rotE", "xlframe_vertical_right", "xlframe_vertical_left_rotE_right_rotW" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5217 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5254 } ]
},
{
"id": "vp_xlframe_vertical_2_left",
- "fg": 5214,
+ "fg": 5251,
"//": [ "xlframe_vertical2_left_rotW", "xlframe_vertical2_right", "xlframe_vertical2_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5214 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5251 } ]
},
{
"id": "vp_xlframe_vertical_right",
- "fg": 5218,
+ "fg": 5255,
"//": [ "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": 4984, "bg": 5218 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5255 } ]
},
{
"id": "vp_xlframe_vertical_2_right",
- "fg": 5215,
+ "fg": 5252,
"//": [ "xlframe_vertical2_right_rotW", "xlframe_vertical2_left", "vp_xlframe_vertical2_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5215 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5252 } ]
},
{
"id": "vp_xlframe_horizontal",
- "fg": 5196,
+ "fg": 5233,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5196 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5233 } ]
},
{
"id": "vp_xlframe_horizontal_2",
- "fg": 5197,
+ "fg": 5234,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5197 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5234 } ]
},
{
"id": "vp_xlframe_horizontal_unconnected",
- "fg": 5207,
+ "fg": 5244,
"//": [ "xlframe_horizontal_unconnected_rotW", "xlframe_horizontal_unconnected_rotS", "xlframe_horizontal_unconnected_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5207 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5244 } ]
},
{
"id": "vp_xlframe_horizontal_2_unconnected",
- "fg": 5200,
+ "fg": 5237,
"//": [
"xlframe_horizontal2_unconnected_rotW",
"xlframe_horizontal2_unconnected_rotS",
@@ -7763,425 +7797,425 @@
],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5200 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5237 } ]
},
{
"id": "vp_xlframe_horizontal_front",
- "fg": 5203,
+ "fg": 5240,
"//": [ "xlframe_horizontal_front_rotW", "xlframe_horizontal_front_rotS", "xlframe_horizontal_front_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5203 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5240 } ]
},
{
"id": "vp_xlframe_horizontal_2_front",
- "fg": 5198,
+ "fg": 5235,
"//": [ "xlframe_horizontal2_front_rotW", "xlframe_horizontal2_front_rotS", "xlframe_horizontal2_front_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5198 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5235 } ]
},
{
"id": "vp_xlframe_horizontal_rear",
- "fg": 5205,
+ "fg": 5242,
"//": [ "xlframe_horizontal_rear_rotW", "xlframe_horizontal_rear_rotS", "xlframe_horizontal_rear_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5205 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5242 } ]
},
{
"id": "vp_xlframe_horizontal_2_rear",
- "fg": 5199,
+ "fg": 5236,
"//": [ "xlframe_horizontal2_rear_rotW", "xlframe_horizontal2_rear_rotS", "xlframe_horizontal2_rear_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5199 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5236 } ]
},
{
"id": "vp_xlframe_horizontal_left",
- "fg": 5204,
+ "fg": 5241,
"//": [ "xlframe_horizontal_left_rotW", "xlframe_horizontal_left_rotS", "xlframe_horizontal_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5204 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5241 } ]
},
{
"id": "vp_xlframe_horizontal_2_left",
- "fg": 5201,
+ "fg": 5238,
"//": [ "xlframe_horizontal_2_left_rotW", "xlframe_horizontal_2_left_rotS", "xlframe_horizontal_2_left_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5201 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5238 } ]
},
{
"id": "vp_xlframe_horizontal_right",
- "fg": 5206,
+ "fg": 5243,
"//": [ "xlframe_horizontal_right_rotW", "xlframe_horizontal_right_rotS", "xlframe_horizontal_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5206 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5243 } ]
},
{
"id": "vp_xlframe_horizontal_2_right",
- "fg": 5202,
+ "fg": 5239,
"//": [ "xlframe_horizontal_2_right_rotW", "xlframe_horizontal_2_right_rotS", "xlframe_horizontal_2_right_rotE" ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5202 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5239 } ]
},
{
"id": "vp_xlframe_vertical",
- "fg": 5212,
+ "fg": 5249,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5212 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5249 } ]
},
{
"id": "vp_xlframe_vertical_2",
- "fg": 5213,
+ "fg": 5250,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5213 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5250 } ]
},
{
"id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ],
- "fg": 5221
+ "fg": 5258
},
{
"id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ],
- "fg": 5220
+ "fg": 5257
},
{
"id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ],
- "fg": 5221
+ "fg": 5258
},
{
"id": "vp_saddle_motor",
- "fg": [ 5223, 5225, 5224, 5222 ],
+ "fg": [ 5260, 5262, 5261, 5259 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5223, 5225, 5224, 5222 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5260, 5262, 5261, 5259 ] } ]
},
{
"id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ],
- "fg": [ 5231, 5233, 5232, 5230 ],
+ "fg": [ 5268, 5270, 5269, 5267 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5231, 5233, 5232, 5230 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5268, 5270, 5269, 5267 ] } ]
},
{
"id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ],
- "fg": [ 5227, 5229, 5228, 5226 ],
+ "fg": [ 5264, 5266, 5265, 5263 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5227, 5229, 5228, 5226 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5264, 5266, 5265, 5263 ] } ]
},
{
"id": "vp_light_blue",
- "fg": [ 5252, 5253 ],
+ "fg": [ 5289, 5290 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5252, 5253 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5289, 5290 ] } ]
},
{
"id": "vp_light_red",
- "fg": [ 5254, 5255 ],
+ "fg": [ 5291, 5292 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5254, 5255 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5291, 5292 ] } ]
},
{
"id": [ "vp_floodlight", "vp_directed_floodlight" ],
- "fg": [ 5246, 5248, 5247, 5245 ],
+ "fg": [ 5283, 5285, 5284, 5282 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5246, 5248, 5247, 5245 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5283, 5285, 5284, 5282 ] } ]
},
{
"id": "vp_veh_table",
- "fg": [ 5235, 5235 ],
- "bg": [ 5265, 5264 ],
- "additional_tiles": [ { "id": "broken", "fg": 5236, "bg": [ 5265, 5264 ] } ],
+ "fg": [ 5272, 5272 ],
+ "bg": [ 5302, 5301 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5273, "bg": [ 5302, 5301 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_minifridge",
- "fg": 5259,
+ "fg": 5296,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5259 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5296 } ]
},
{
"id": "vp_minifreezer",
- "fg": 5258,
+ "fg": 5295,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5258 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5295 } ]
},
{
"id": "vp_kitchen_unit",
- "fg": 5251,
+ "fg": 5288,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5251 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5288 } ]
},
{
"id": "vp_welding_rig",
- "fg": 5263,
+ "fg": 5300,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5263 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5300 } ]
},
{
"id": "vp_craft_rig",
- "fg": 5242,
+ "fg": 5279,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5242 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5279 } ]
},
{
"id": "vp_washing_machine",
- "fg": 5262,
+ "fg": 5299,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5262 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5299 } ]
},
{
"id": "vp_bed",
- "fg": 5240,
+ "fg": 5277,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5240 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5277 } ]
},
{
"id": "vp_veh_forge",
- "fg": 5249,
+ "fg": 5286,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5249 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5286 } ]
},
{
"id": "vp_veh_kiln",
- "fg": 5250,
+ "fg": 5287,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5250 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5287 } ]
},
{
"id": "vp_chemlab",
- "fg": 5241,
+ "fg": 5278,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5241 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5278 } ]
},
{
"id": [ "vp_aisle_vertical" ],
- "fg": 5238,
+ "fg": 5275,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5238 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5275 } ]
},
{
"id": [ "vp_aisle_horizontal" ],
- "fg": 5237,
+ "fg": 5274,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5237 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5274 } ]
},
{
"id": [ "vp_trunk_floor" ],
- "fg": 5261,
- "bg": 5238,
+ "fg": 5298,
+ "bg": 5275,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5261 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5298 } ]
},
{
"id": [ "vp_wooden_aisle_vertical" ],
- "fg": [ 5265, 5264 ],
+ "fg": [ 5302, 5301 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5265, 5264 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5302, 5301 ] } ]
},
{
"id": [ "vp_wooden_aisle_horizontal" ],
- "fg": [ 5264, 5265 ],
+ "fg": [ 5301, 5302 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5264, 5265 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5301, 5302 ] } ]
},
{
"id": [ "vp_lit_aisle_vertical" ],
- "fg": 5257,
+ "fg": 5294,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5257 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5294 } ]
},
{
"id": [ "vp_lit_aisle_horizontal" ],
- "fg": 5256,
+ "fg": 5293,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5256 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5293 } ]
},
- { "id": [ "vp_crane_medium", "vp_crane_small", "vp_crane_medium_internal", "crane_tiny" ], "fg": 5243 },
+ { "id": [ "vp_crane_medium", "vp_crane_small", "vp_crane_medium_internal", "crane_tiny" ], "fg": 5280 },
{
"id": "vp_omnicam",
- "fg": 5234,
+ "fg": 5271,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5234 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5271 } ]
},
- { "id": "vp_ram_spiked", "fg": [ 5278, 5280, 5279, 5281 ], "rotates": true },
- { "id": "vp_ram_wood", "fg": [ 5286, 5288, 5287, 5289 ], "rotates": true },
- { "id": "vp_spike_wood", "fg": [ 5290, 5292, 5291, 5293 ], "rotates": true },
- { "id": "vp_ram_military", "fg": [ 5274, 5276, 5275, 5277 ], "rotates": true },
- { "id": "vp_ram_steel", "fg": [ 5282, 5284, 5283, 5285 ], "rotates": true },
- { "id": "vp_ram_hardsteel", "fg": [ 5270, 5272, 5271, 5273 ], "rotates": true },
- { "id": "vp_ram_alloy", "fg": [ 5266, 5268, 5267, 5269 ], "rotates": true },
+ { "id": "vp_ram_spiked", "fg": [ 5315, 5317, 5316, 5318 ], "rotates": true },
+ { "id": "vp_ram_wood", "fg": [ 5323, 5325, 5324, 5326 ], "rotates": true },
+ { "id": "vp_spike_wood", "fg": [ 5327, 5329, 5328, 5330 ], "rotates": true },
+ { "id": "vp_ram_military", "fg": [ 5311, 5313, 5312, 5314 ], "rotates": true },
+ { "id": "vp_ram_steel", "fg": [ 5319, 5321, 5320, 5322 ], "rotates": true },
+ { "id": "vp_ram_hardsteel", "fg": [ 5307, 5309, 5308, 5310 ], "rotates": true },
+ { "id": "vp_ram_alloy", "fg": [ 5303, 5305, 5304, 5306 ], "rotates": true },
{
"id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ],
"rotates": true,
- "fg": [ 5329, 5327, 5322, 5328 ],
+ "fg": [ 5366, 5364, 5359, 5365 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5329, 5327, 5322, 5328 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5366, 5364, 5359, 5365 ] } ]
},
{
"id": [ "vp_seat_leather", "vp_reclining_seat_leather" ],
"rotates": true,
- "fg": [ 5326, 5324, 5323, 5325 ],
+ "fg": [ 5363, 5361, 5360, 5362 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5326, 5324, 5323, 5325 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5363, 5361, 5360, 5362 ] } ]
},
{
"id": [ "vp_seat_wood" ],
"rotates": true,
- "bg": [ 5265, 5264 ],
- "fg": [ 5332, 5332, 5333, 5333 ],
+ "bg": [ 5302, 5301 ],
+ "fg": [ 5369, 5369, 5370, 5370 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5332, 5332, 5333, 5333 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5369, 5369, 5370, 5370 ] } ]
},
{
"id": [ "vp_seat_wood_flimsy" ],
"rotates": true,
- "bg": [ 5265, 5264 ],
- "fg": [ 5330, 5330, 5331, 5331 ],
+ "bg": [ 5302, 5301 ],
+ "fg": [ 5367, 5367, 5368, 5368 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5330, 5330, 5331, 5331 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5367, 5367, 5368, 5368 ] } ]
},
{
"id": "vp_seat_back",
- "fg": [ 5320, 5321, 5298, 5299 ],
+ "fg": [ 5357, 5358, 5335, 5336 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5320, 5321, 5298, 5299 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5357, 5358, 5335, 5336 ] } ]
},
{
"id": "vp_seat_back_right",
- "fg": [ 5318, 5319, 5316, 5317 ],
+ "fg": [ 5355, 5356, 5353, 5354 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5318, 5319, 5316, 5317 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5355, 5356, 5353, 5354 ] } ]
},
{
"id": "vp_seat_back_left",
- "fg": [ 5314, 5315, 5312, 5313 ],
+ "fg": [ 5351, 5352, 5349, 5350 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5314, 5315, 5312, 5313 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5351, 5352, 5349, 5350 ] } ]
},
{
"id": "vp_seat_back_leather",
- "fg": [ 5310, 5311, 5300, 5301 ],
+ "fg": [ 5347, 5348, 5337, 5338 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5310, 5311, 5300, 5301 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5347, 5348, 5337, 5338 ] } ]
},
{
"id": "vp_seat_back_leather_right",
- "fg": [ 5308, 5309, 5306, 5307 ],
+ "fg": [ 5345, 5346, 5343, 5344 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5308, 5309, 5306, 5307 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5345, 5346, 5343, 5344 ] } ]
},
{
"id": "vp_seat_back_leather_left",
- "fg": [ 5304, 5305, 5302, 5303 ],
+ "fg": [ 5341, 5342, 5339, 5340 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5304, 5305, 5302, 5303 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5341, 5342, 5339, 5340 ] } ]
},
{
"id": "vp_seat_back_vertical",
- "fg": [ 5299, 5320, 5321, 5298 ],
+ "fg": [ 5336, 5357, 5358, 5335 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5299, 5320, 5321, 5298 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5336, 5357, 5358, 5335 ] } ]
},
{
"id": "vp_seat_back_vertical_right",
- "fg": [ 5317, 5318, 5319, 5316 ],
+ "fg": [ 5354, 5355, 5356, 5353 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5317, 5318, 5319, 5316 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5354, 5355, 5356, 5353 ] } ]
},
{
"id": "vp_seat_back_vertical_left",
- "fg": [ 5313, 5314, 5315, 5312 ],
+ "fg": [ 5350, 5351, 5352, 5349 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5313, 5314, 5315, 5312 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5350, 5351, 5352, 5349 ] } ]
},
{
"id": "vp_seat_back_leather_vertical",
- "fg": [ 5301, 5310, 5311, 5300 ],
+ "fg": [ 5338, 5347, 5348, 5337 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5301, 5310, 5311, 5300 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5338, 5347, 5348, 5337 ] } ]
},
{
"id": "vp_seat_back_leather_vertical_right",
- "fg": [ 5307, 5308, 5309, 5306 ],
+ "fg": [ 5344, 5345, 5346, 5343 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5307, 5308, 5309, 5306 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5344, 5345, 5346, 5343 ] } ]
},
{
"id": "vp_seat_back_leather_vertical_left",
- "fg": [ 5303, 5304, 5305, 5302 ],
+ "fg": [ 5340, 5341, 5342, 5339 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5303, 5304, 5305, 5302 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5340, 5341, 5342, 5339 ] } ]
},
{
"id": [ "vp_saddle", "vp_saddle_pedal" ],
- "fg": [ 5295, 5297, 5296, 5294 ],
+ "fg": [ 5332, 5334, 5333, 5331 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5295, 5297, 5296, 5294 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5332, 5334, 5333, 5331 ] } ]
},
{
"id": [ "vp_reinforced_solar_panel_v2", "vp_xreinforced_solar_panel_v2" ],
- "fg": 5336,
+ "fg": 5373,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 5337 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5374 } ]
},
{
"id": [ "vp_reinforced_solar_panel", "vp_xreinforced_solar_panel" ],
- "fg": 5334,
+ "fg": 5371,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 5335 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5372 } ]
},
{
"id": [ "vp_solar_panel_v2", "vp_xsolar_panel_v2" ],
- "fg": 5340,
+ "fg": 5377,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 5341 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5378 } ]
},
{
"id": [ "vp_solar_panel_v3", "vp_xsolar_panel_v3" ],
- "fg": 5342,
+ "fg": 5379,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 5343 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5380 } ]
},
{
"id": [ "vp_solar_panel", "vp_xsolar_panel" ],
- "fg": 5338,
+ "fg": 5375,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 5339 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5376 } ]
},
{
"id": [
@@ -8198,228 +8232,228 @@
"vp_mounted_m60_semi"
],
"//": "rifles and machineguns",
- "fg": 5345,
- "bg": 5344,
+ "fg": 5382,
+ "bg": 5381,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5345 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5382 } ]
},
{
"id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ],
"//": "energy weapons",
- "fg": 5345,
- "bg": 5344,
+ "fg": 5382,
+ "bg": 5381,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5345 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5382 } ]
},
{
"id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ],
"//": "railguns",
- "fg": 5345,
- "bg": 5344,
+ "fg": 5382,
+ "bg": 5381,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5345 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5382 } ]
},
{
"id": [ "vp_mounted_bigun", "vp_mounted_m134" ],
"//": "multibarrel weapons",
- "fg": 5345,
- "bg": 5344,
+ "fg": 5382,
+ "bg": 5381,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5345 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5382 } ]
},
{
"id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ],
"//": "liquid sprayers",
- "fg": 5345,
- "bg": 5344,
+ "fg": 5382,
+ "bg": 5381,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5345 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5382 } ]
},
{
"id": [ "vp_tow_launcher" ],
"//": "rocket tubes",
- "fg": 5345,
- "bg": 5344,
+ "fg": 5382,
+ "bg": 5381,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5345 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5382 } ]
},
{
"id": "vp_roller_drum",
- "fg": 5346,
+ "fg": 5383,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5346 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5383 } ]
},
{
"id": [ "vp_wheel", "vp_wheel_steerable" ],
- "fg": 5348,
+ "fg": 5385,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5348 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5385 } ]
},
{
"id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable" ],
- "fg": [ 5354, 5356, 5355, 5353 ],
+ "fg": [ 5391, 5393, 5392, 5390 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5354, 5356, 5355, 5353 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5391, 5393, 5392, 5390 ] } ]
},
{
"id": [ "vp_wheel_bicycle_or" ],
- "fg": [ 5350, 5352, 5351, 5349 ],
+ "fg": [ 5387, 5389, 5388, 5386 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5350, 5352, 5351, 5349 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5387, 5389, 5388, 5386 ] } ]
},
{
"id": [ "vp_wheel_bicycle_or_rear" ],
- "fg": [ 5351, 5349, 5350, 5352 ],
+ "fg": [ 5388, 5386, 5387, 5389 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5351, 5349, 5350, 5352 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5388, 5386, 5387, 5389 ] } ]
},
{
"id": [ "vp_wheel_small", "vp_wheel_small_steerable" ],
- "fg": [ 5358, 5360, 5359, 5357 ],
+ "fg": [ 5395, 5397, 5396, 5394 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5358, 5360, 5359, 5357 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5395, 5397, 5396, 5394 ] } ]
},
{
"id": [ "vp_wheel_bicycle_rear" ],
- "fg": [ 5355, 5353, 5354, 5356 ],
+ "fg": [ 5392, 5390, 5391, 5393 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5355, 5353, 5354, 5356 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5392, 5390, 5391, 5393 ] } ]
},
{
"id": [ "vp_mounted_spare_tire" ],
- "fg": 5347,
+ "fg": 5384,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5347 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5384 } ]
},
{
"id": [ "vp_wheel_wide" ],
- "fg": 5361,
+ "fg": 5398,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5361 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5398 } ]
},
{
"id": [ "vp_wheel_wood" ],
- "fg": [ 5367, 5369, 5368, 5366 ],
+ "fg": [ 5404, 5406, 5405, 5403 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5367, 5369, 5368, 5366 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5404, 5406, 5405, 5403 ] } ]
},
{
"id": [ "vp_wheel_wood_b" ],
- "fg": [ 5363, 5365, 5364, 5362 ],
+ "fg": [ 5400, 5402, 5401, 5399 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5363, 5365, 5364, 5362 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5400, 5402, 5401, 5399 ] } ]
},
{
"id": [ "vp_yoke_harness" ],
- "fg": [ 5373, 5371, 5370, 5372 ],
+ "fg": [ 5410, 5408, 5407, 5409 ],
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5373, 5371, 5370, 5372 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 5410, 5408, 5407, 5409 ] } ]
},
{
"id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ],
- "fg": [ 5374, 5381, 5380, 5379 ],
- "additional_tiles": [ { "id": "broken", "fg": 4985, "bg": [ 5374, 5381, 5380, 5379 ] } ],
+ "fg": [ 5411, 5418, 5417, 5416 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5022, "bg": [ 5411, 5418, 5417, 5416 ] } ],
"multitile": true,
"rotates": true
},
{
"id": [ "vp_windshield_horizontal_rear" ],
- "fg": [ 5402, 5409, 5408, 5407 ],
- "additional_tiles": [ { "id": "broken", "fg": 4985, "bg": [ 5402, 5409, 5408, 5407 ] } ],
+ "fg": [ 5439, 5446, 5445, 5444 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5022, "bg": [ 5439, 5446, 5445, 5444 ] } ],
"multitile": true,
"rotates": true
},
{
"id": [ "vp_windshield_horizontal_front_edge" ],
- "fg": [ 5376, 5378, 5377, 5375 ],
- "additional_tiles": [ { "id": "broken", "fg": 4985, "bg": [ 5376, 5378, 5377, 5375 ] } ],
+ "fg": [ 5413, 5415, 5414, 5412 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5022, "bg": [ 5413, 5415, 5414, 5412 ] } ],
"multitile": true,
"rotates": true
},
{
"id": [ "vp_windshield_horizontal_rear_edge" ],
- "fg": [ 5403, 5406, 5405, 5404 ],
- "additional_tiles": [ { "id": "broken", "fg": 4985, "bg": [ 5403, 5406, 5405, 5404 ] } ],
+ "fg": [ 5440, 5443, 5442, 5441 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5022, "bg": [ 5440, 5443, 5442, 5441 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_nw",
- "fg": [ 5394, 5401, 5400, 5399 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5394, 5401, 5400, 5399 ] } ],
+ "fg": [ 5431, 5438, 5437, 5436 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5431, 5438, 5437, 5436 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_ne",
- "fg": [ 5386, 5393, 5392, 5391 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5386, 5393, 5392, 5391 ] } ],
+ "fg": [ 5423, 5430, 5429, 5428 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5423, 5430, 5429, 5428 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_sw",
- "fg": [ 5427, 5429, 5428, 5426 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5427, 5429, 5428, 5426 ] } ],
+ "fg": [ 5464, 5466, 5465, 5463 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5464, 5466, 5465, 5463 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_se",
- "fg": [ 5419, 5421, 5420, 5418 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5419, 5421, 5420, 5418 ] } ],
+ "fg": [ 5456, 5458, 5457, 5455 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5456, 5458, 5457, 5455 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_nw_edge",
- "fg": [ 5396, 5398, 5397, 5395 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5396, 5398, 5397, 5395 ] } ],
+ "fg": [ 5433, 5435, 5434, 5432 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5433, 5435, 5434, 5432 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_ne_edge",
- "fg": [ 5388, 5390, 5389, 5387 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5388, 5390, 5389, 5387 ] } ],
+ "fg": [ 5425, 5427, 5426, 5424 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5425, 5427, 5426, 5424 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_sw_edge",
- "fg": [ 5422, 5425, 5424, 5423 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5422, 5425, 5424, 5423 ] } ],
+ "fg": [ 5459, 5462, 5461, 5460 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5459, 5462, 5461, 5460 ] } ],
"multitile": true,
"rotates": true
},
{
"id": "vp_windshield_se_edge",
- "fg": [ 5414, 5417, 5416, 5415 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5414, 5417, 5416, 5415 ] } ],
+ "fg": [ 5451, 5454, 5453, 5452 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5451, 5454, 5453, 5452 ] } ],
"multitile": true,
"rotates": true
},
{
"id": [ "vp_windshield_vertical_left", "vp_windshield_left" ],
- "fg": [ 5382, 5385, 5384, 5383 ],
- "additional_tiles": [ { "id": "broken", "fg": 4986, "bg": [ 5382, 5385, 5384, 5383 ] } ],
+ "fg": [ 5419, 5422, 5421, 5420 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5023, "bg": [ 5419, 5422, 5421, 5420 ] } ],
"multitile": true,
"rotates": true
},
{
"id": [ "vp_windshield_vertical_right", "vp_windshield_right" ],
- "fg": [ 5410, 5413, 5412, 5411 ],
- "additional_tiles": [ { "id": "broken", "fg": 4987, "bg": [ 5410, 5413, 5412, 5411 ] } ],
+ "fg": [ 5447, 5450, 5449, 5448 ],
+ "additional_tiles": [ { "id": "broken", "fg": 5024, "bg": [ 5447, 5450, 5449, 5448 ] } ],
"multitile": true,
"rotates": true
},
@@ -8430,283 +8464,283 @@
"vp_reinforced_windshield_horizontal_front",
"vp_reinforced_windshield_front_edge"
],
- "fg": 5430,
+ "fg": 5467,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5430 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5467 } ]
},
{
"id": [ "vp_reinforced_windshield_horizontal_rear" ],
- "fg": 5431,
+ "fg": 5468,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5431 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5468 } ]
},
{
"id": [ "vp_reinforced_windshield_horizontal_rear_edge" ],
- "fg": 5432,
+ "fg": 5469,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5432 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5469 } ]
},
{
"id": "vp_reinforced_windshield_nw",
- "fg": 5434,
+ "fg": 5471,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5434 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5471 } ]
},
{
"id": "vp_reinforced_windshield_ne",
- "fg": 5433,
+ "fg": 5470,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5433 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5470 } ]
},
{
"id": "vp_reinforced_windshield_sw",
- "fg": 5437,
+ "fg": 5474,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5437 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5474 } ]
},
{
"id": "vp_reinforced_windshield_se",
- "fg": 5435,
+ "fg": 5472,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5435 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5472 } ]
},
{
"id": "vp_reinforced_windshield_sw_edge",
- "fg": 5438,
+ "fg": 5475,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5438 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5475 } ]
},
{
"id": "vp_reinforced_windshield_se_edge",
- "fg": 5436,
+ "fg": 5473,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5436 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5473 } ]
},
{
"id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ],
- "fg": 5439,
+ "fg": 5476,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5439 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5476 } ]
},
{
"id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ],
- "fg": 5440,
+ "fg": 5477,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5440 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5477 } ]
},
{
"id": "vp_frame_wood_handle",
- "fg": 5441,
+ "fg": 5478,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5441 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5478 } ]
},
{
"id": "vp_frame_wood_light_handle",
- "fg": 5441,
+ "fg": 5478,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5441 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5478 } ]
},
{
"id": "vp_frame_wood_vertical_2",
- "fg": 5462,
+ "fg": 5499,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5462 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5499 } ]
},
{
"id": "vp_frame_wood_vertical_2_unconnected",
- "fg": 5465,
+ "fg": 5502,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5465 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5502 } ]
},
{
"id": "vp_frame_wood_vertical_2_right",
- "fg": 5464,
+ "fg": 5501,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5464 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5501 } ]
},
{
"id": "vp_frame_wood_vertical_2_left",
- "fg": 5463,
+ "fg": 5500,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5463 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5500 } ]
},
{
"id": "vp_frame_wood_vertical",
- "fg": 5461,
+ "fg": 5498,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5461 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5498 } ]
},
{
"id": "vp_frame_wood_vertical_unconnected",
- "fg": 5468,
+ "fg": 5505,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5468 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5505 } ]
},
{
"id": "vp_frame_wood_vertical_right",
- "fg": 5467,
+ "fg": 5504,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5467 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5504 } ]
},
{
"id": "vp_frame_wood_vertical_left",
- "fg": 5466,
+ "fg": 5503,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5466 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5503 } ]
},
{
"id": "vp_frame_wood_sw",
- "fg": 5460,
+ "fg": 5497,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5460 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5497 } ]
},
{
"id": "vp_frame_wood_se",
- "fg": 5459,
+ "fg": 5496,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5459 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5496 } ]
},
{
"id": "vp_frame_wood_nw",
- "fg": 5458,
+ "fg": 5495,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5458 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5495 } ]
},
{
"id": "vp_frame_wood_ne",
- "fg": 5457,
+ "fg": 5494,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5457 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5494 } ]
},
{
"id": "vp_frame_wood_horizontal_2",
- "fg": 5446,
+ "fg": 5483,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5446 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5483 } ]
},
{
"id": "vp_frame_wood_horizontal_2_unconnected",
- "fg": 5451,
+ "fg": 5488,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5451 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5488 } ]
},
{
"id": "vp_frame_wood_horizontal_2_right",
- "fg": 5450,
+ "fg": 5487,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5450 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5487 } ]
},
{
"id": "vp_frame_wood_horizontal_2_rear",
- "fg": 5449,
+ "fg": 5486,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5449 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5486 } ]
},
{
"id": "vp_frame_wood_horizontal_2_left",
- "fg": 5448,
+ "fg": 5485,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5448 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5485 } ]
},
{
"id": "vp_frame_wood_horizontal_2_front",
- "fg": 5447,
+ "fg": 5484,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5447 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5484 } ]
},
{
"id": "vp_frame_wood_horizontal",
- "fg": 5445,
+ "fg": 5482,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5445 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5482 } ]
},
{
"id": "vp_frame_wood_horizontal_unconnected",
- "fg": 5456,
+ "fg": 5493,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5456 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5493 } ]
},
{
"id": "vp_frame_wood_horizontal_right",
- "fg": 5455,
+ "fg": 5492,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5455 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5492 } ]
},
{
"id": "vp_frame_wood_horizontal_rear",
- "fg": 5454,
+ "fg": 5491,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5454 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5491 } ]
},
{
"id": "vp_frame_wood_horizontal_left",
- "fg": 5453,
+ "fg": 5490,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5453 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5490 } ]
},
{
"id": "vp_frame_wood_horizontal_front",
- "fg": 5452,
+ "fg": 5489,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5452 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5489 } ]
},
{
"id": "vp_frame_wood_cross",
- "fg": 5443,
+ "fg": 5480,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5443 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5480 } ]
},
{
"id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ],
- "fg": 5444,
+ "fg": 5481,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5444 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5481 } ]
},
{
"id": "vp_frame_wood_cover",
- "fg": 5442,
+ "fg": 5479,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": 5442 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": 5479 } ]
},
{ "id": "overlay_female_mutation_BARK", "fg": 137 },
{ "id": "overlay_female_mutation_BEAK", "fg": 138 },
@@ -8744,1084 +8778,1098 @@
{ "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 311 },
{ "id": "overlay_male_mutation_SKIN_PINK", "fg": 312 },
{ "id": "overlay_wielded_primitive_shovel", "fg": 508 },
- { "id": "overlay_female_worn_boots_rubber", "fg": 874 },
- { "id": "overlay_male_worn_boots_rubber", "fg": 875 },
- { "id": "overlay_worn_bookplate", "fg": 883 },
- { "id": "overlay_worn_broken_dimensional_anchor", "fg": 884 },
- { "id": "overlay_worn_diamond_dental_grill", "fg": 889 },
- { "id": "overlay_worn_dimensional_anchor", "fg": 891 },
- { "id": "overlay_worn_dimensional_anchor_on", "fg": 892 },
- { "id": "overlay_worn_eclipse_glasses", "fg": 895 },
- { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 897 },
- { "id": "overlay_worn_fancy_glasses_eye", "fg": 898 },
- { "id": "overlay_worn_fancy_glasses_reading", "fg": 899 },
- { "id": "overlay_worn_fanny", "fg": 900 },
- { "id": "overlay_worn_fur_cat_tail", "fg": 904 },
- { "id": "overlay_worn_fur_collar", "fg": 905 },
- { "id": "overlay_worn_glasses_bifocal", "fg": 906 },
- { "id": "overlay_worn_glasses_eye", "fg": 907 },
- { "id": "overlay_worn_glasses_reading", "fg": 908 },
- { "id": "overlay_worn_gloves_rubber", "fg": 910 },
- { "id": "overlay_worn_gold_ear", "fg": 911 },
- { "id": "overlay_worn_leather_collar", "fg": 918 },
- { "id": "overlay_worn_silver_watch", "fg": 931 },
- { "id": "overlay_worn_sunglasses_bifocal", "fg": 934 },
- { "id": "overlay_worn_sunglasses_eye", "fg": 935 },
- { "id": "overlay_worn_sunglasses_reading", "fg": 936 },
- { "id": "overlay_worn_chestguard_hard", "fg": 941 },
- { "id": "1585_f_table_0", "fg": 1307 },
- { "id": "1586_f_table_1", "fg": 1308 },
- { "id": "1587_f_table_2", "fg": 1309 },
- { "id": "1588_f_table_3", "fg": 1310 },
- { "id": "1589_f_table_4", "fg": 1311 },
- { "id": "1590_f_table_5", "fg": 1312 },
- { "id": "f_alien_scar", "fg": 1346 },
- { "id": "f_birdbath", "fg": 1347 },
- { "id": "f_brazier", "fg": 1348 },
- { "id": "f_bulletin", "fg": 1349 },
- { "id": "f_chimney", "fg": 1350 },
- { "id": "f_dandelion", "fg": 1351 },
- { "id": "f_exercise", "fg": 1352 },
- { "id": "f_logstool", "fg": 1353 },
- { "id": "f_pillow_fort", "fg": 1354 },
- { "id": "f_roof_turbine_vent", "fg": 1355 },
- { "id": "f_sink", "fg": 1356 },
- { "id": "f_solar_unit", "fg": 1357 },
- { "id": "f_vent_pipe", "fg": 1358 },
- { "id": "f_crate_c", "fg": 1391 },
- { "id": "f_crate_o", "fg": 1392 },
- { "id": "f_curtain_open", "fg": 1435 },
- { "id": "f_dresser", "fg": 1441 },
- { "id": "f_floor_lamp", "fg": 1446 },
- { "id": "f_oven", "fg": 1462 },
- { "id": "f_skin_wall_t_connection_e", "fg": 1477 },
- { "id": "f_speaker_cabinet", "fg": 1479 },
- { "id": "f_black_eyed_susan", "fg": 1496 },
- { "id": "f_bluebell", "fg": 1497 },
- { "id": "f_burdock", "fg": 1498 },
- { "id": "f_chamomile", "fg": 1499 },
- { "id": "f_chicory", "fg": 1500 },
- { "id": "f_dahlia", "fg": 1501 },
- { "id": "f_datura", "fg": 1502 },
- { "id": "f_flower_spurge", "fg": 1503 },
- { "id": "f_flower_tulip", "fg": 1504 },
- { "id": "f_lily", "fg": 1505 },
- { "id": "f_mustard", "fg": 1506 },
- { "id": "f_mutpoppy", "fg": 1507 },
- { "id": "f_sunflower", "fg": 1508 },
- { "id": "adhesive_bandages", "fg": 1510 },
- { "id": "airhorn", "fg": 1511 },
- { "id": "alloy_plate", "fg": 1512 },
- { "id": "amplifier_head", "fg": 1513 },
- { "id": "arm_warmers", "fg": 1514 },
- { "id": "autoclave", "fg": 1515 },
- { "id": "bag_plastic", "fg": 1516 },
- { "id": "boltcutters", "fg": 1517 },
- { "id": "bookplate", "fg": 1518 },
- { "id": "bottle_opener", "fg": 1519 },
- { "id": "bow_saw", "fg": 1520 },
- { "id": "boxing_gloves", "fg": 1521 },
- { "id": "broken_dimensional_anchor", "fg": 1522 },
- { "id": "bucket", "fg": 1523 },
- { "id": "butane_tank", "fg": 1524 },
- { "id": "cable_instrument", "fg": 1525 },
- { "id": "cable_xlr", "fg": 1526 },
- { "id": "can_food", "fg": 1527 },
- { "id": "can_opener", "fg": 1528 },
- { "id": "candle", "fg": 1529 },
- { "id": "candle_lit", "fg": 1530 },
- { "id": "cell_phone", "fg": 1531 },
- { "id": "chess", "fg": 1532 },
- { "id": "chopsticks", "fg": 1533 },
- { "id": "clamp", "fg": 1534 },
- { "id": "clay_pot_flower", "fg": 1535 },
- { "id": "comb_pocket", "fg": 1536 },
- { "id": "condom", "fg": 1537 },
- { "id": "cookies", "fg": 1538 },
- { "id": "cutting_board", "fg": 1539 },
- { "id": "dehydrator", "fg": 1540 },
- { "id": "dimensional_anchor", "fg": 1541 },
- { "id": "dimensional_anchor_on", "fg": 1542 },
- { "id": "dnd", "fg": 1543 },
- { "id": "eclipse_glasses", "fg": 1544 },
- { "id": "eyedrops", "fg": 1545 },
- { "id": "fan", "fg": 1546 },
- { "id": "fancy_glasses_bifocal", "fg": 1547 },
- { "id": "fancy_glasses_eye", "fg": 1548 },
- { "id": "fancy_glasses_reading", "fg": 1549 },
- { "id": "feather", "fg": 1550 },
- { "id": "fetid_goop", "fg": 1551 },
- { "id": "flask_hip", "fg": 1552 },
- { "id": "frisbee", "fg": 1554 },
- { "id": "funnel", "fg": 1555 },
- { "id": "glass_sheet", "fg": 1556 },
- { "id": "glasses_bifocale", "fg": 1557 },
- { "id": "glasses_eye", "fg": 1558 },
- { "id": "glasses_reading", "fg": 1559 },
- { "id": "hair_dryer", "fg": 1560 },
- { "id": "hammer_sledge", "fg": 1561 },
- { "id": "hammer_sledge_heavy", "fg": 1562 },
- { "id": "hammer_sledge_short", "fg": 1563 },
- { "id": "hinge", "fg": 1564 },
- { "id": "hotplate", "fg": 1565 },
- { "id": "kettle", "fg": 1566 },
- { "id": "knife_paring", "fg": 1567 },
- { "id": "knife_steak", "fg": 1568 },
- { "id": "knit_scarf", "fg": 1569 },
- { "id": "licorice", "fg": 1570 },
- { "id": "material_limestone", "fg": 1571 },
- { "id": "material_rhodonite", "fg": 1572 },
- { "id": "material_rocksalt", "fg": 1573 },
- { "id": "material_zincite", "fg": 1574 },
- { "id": "mattress", "fg": 1575 },
- { "id": "meat", "fg": 1576 },
- { "id": "meat_tainted", "fg": 1577 },
- { "id": "mil_plate", "fg": 1578 },
- { "id": "mobile_memory_card", "fg": 1579 },
- { "id": "motor_tiny", "fg": 1581 },
- { "id": "mp3", "fg": 1582 },
- { "id": "nanomaterial", "fg": 1583 },
- { "id": "office_holepunch", "fg": 1584 },
- { "id": "paper", "fg": 1585 },
- { "id": "pencil", "fg": 1586 },
- { "id": "permanent_marker", "fg": 1587 },
- { "id": "pipe_fittings", "fg": 1588 },
- { "id": "plastic_straw", "fg": 1589 },
- { "id": "plums", "fg": 1590 },
- { "id": "radio", "fg": 1591 },
- { "id": "radio_on", "fg": 1592 },
- { "id": "rake_plastic", "fg": 1593 },
- { "id": "rapier", "fg": 1594 },
- { "id": "rapier_fake", "fg": 1595 },
- { "id": "rc_car_box", "fg": 1596 },
- { "id": "rebreather_filter", "fg": 1597 },
- { "id": "reinforced_glass_pane", "fg": 1598 },
- { "id": "rhubarb", "fg": 1599 },
- { "id": "rock_flaking", "fg": 1600 },
- { "id": "rock_large", "fg": 1601 },
- { "id": "rock_quern", "fg": 1602 },
- { "id": "rock_sock", "fg": 1603 },
- { "id": "sandpaper", "fg": 1604 },
- { "id": "screwdriver_set", "fg": 1605 },
- { "id": "sm_extinguisher", "fg": 1606 },
- { "id": "spoon", "fg": 1607 },
- { "id": "spray_can", "fg": 1608 },
- { "id": "standard_template_construct", "fg": 1609 },
- { "id": "steel_armor", "fg": 1610 },
- { "id": "steel_plate", "fg": 1611 },
- { "id": "stereo", "fg": 1612 },
- { "id": "stock_pot", "fg": 1613 },
- { "id": "sunglasses", "fg": 1614 },
- { "id": "sunglasses_bifocal", "fg": 1615 },
- { "id": "sunglasses_eye", "fg": 1616 },
- { "id": "sunglasses_reading", "fg": 1617 },
- { "id": "swat_armor", "fg": 1618 },
- { "id": "syringe", "fg": 1619 },
- { "id": "teleumbrella", "fg": 1620 },
- { "id": "toolbox_empty", "fg": 1621 },
- { "id": "tux", "fg": 1622 },
- { "id": "two_way_radio", "fg": 1623 },
- { "id": "vh_autoclave", "fg": 1624 },
- { "id": "wetsuit_spring", "fg": 1625 },
- { "id": "wool_suit", "fg": 1626 },
- { "id": "wrapper", "fg": 1627 },
- { "id": "SICP", "fg": 1628 },
- { "id": "book_fict_soft_ya_rwya", "fg": 1629 },
- { "id": "manual_first_aid", "fg": 1640 },
- { "id": "novel_adventure", "fg": 1641 },
- { "id": "novel_buddy", "fg": 1642 },
- { "id": "novel_coa", "fg": 1643 },
- { "id": "novel_coa2", "fg": 1644 },
- { "id": "novel_crime", "fg": 1645 },
- { "id": "novel_crime2", "fg": 1646 },
- { "id": "novel_drama", "fg": 1647 },
- { "id": "novel_erotic", "fg": 1648 },
- { "id": "novel_experimental", "fg": 1649 },
- { "id": "novel_fantasy", "fg": 1650 },
- { "id": "novel_horror", "fg": 1651 },
- { "id": "novel_mystery", "fg": 1652 },
- { "id": "novel_pulp", "fg": 1653 },
- { "id": "novel_road", "fg": 1654 },
- { "id": "novel_romance", "fg": 1655 },
- { "id": "novel_samurai", "fg": 1656 },
- { "id": "novel_satire", "fg": 1657 },
- { "id": "novel_scifi", "fg": 1658 },
- { "id": "novel_sports", "fg": 1659 },
- { "id": "novel_spy", "fg": 1660 },
- { "id": "novel_swash", "fg": 1661 },
- { "id": "novel_thriller", "fg": 1662 },
- { "id": "novel_tragedy", "fg": 1663 },
- { "id": "novel_war", "fg": 1664 },
- { "id": "novel_war2", "fg": 1665 },
- { "id": "novel_western", "fg": 1666 },
- { "id": "paperback_novel", "fg": 1667 },
- { "id": "winemaking_beginner", "fg": 1668 },
- { "id": "mre_box", "fg": 1670 },
- { "id": "mre_lemontuna_box", "fg": 1673 },
- { "id": "rifle_case_soft", "fg": 1728 },
- { "id": "rifle_case_soft_2", "fg": 1729 },
- { "id": "rifle_case_soft_leather_2", "fg": 1731 },
- { "id": "rucksack", "fg": 1732 },
- { "id": "bubblewrap", "fg": 1753 },
- { "id": "clay_quern", "fg": 1764 },
- { "id": "balaclava", "fg": 1766 },
- { "id": "beret", "fg": 1767 },
- { "id": "boxer_briefs", "fg": 1768 },
- { "id": "boxer_shorts", "fg": 1769 },
- { "id": "boy_shorts", "fg": 1770 },
- { "id": "bra", "fg": 1771 },
- { "id": "briefs", "fg": 1772 },
- { "id": "coat_lab", "fg": 1773 },
- { "id": "corset", "fg": 1774 },
- { "id": "cowboy_hat", "fg": 1775 },
- { "id": "hat_ball", "fg": 1776 },
- { "id": "hat_cotton", "fg": 1777 },
- { "id": "hat_fur", "fg": 1778 },
- { "id": "helmet_barbute", "fg": 1779 },
- { "id": "helmet_chitin", "fg": 1780 },
- { "id": "helmet_kabuto", "fg": 1781 },
- { "id": "hoodie", "fg": 1782 },
- { "id": "jeans", "fg": 1783 },
- { "id": "longshirt", "fg": 1784 },
- { "id": "mask_dust", "fg": 1785 },
- { "id": "polo_shirt", "fg": 1786 },
- { "id": "ragpouch", "fg": 1787 },
- { "id": "skirt", "fg": 1788 },
- { "id": "sneakers", "fg": 1789 },
- { "id": "socks", "fg": 1790 },
- { "id": "striped_pants", "fg": 1791 },
- { "id": "striped_shirt", "fg": 1792 },
- { "id": "sweater", "fg": 1793 },
- { "id": "sweatshirt", "fg": 1794 },
- { "id": "tshirt", "fg": 1795 },
- { "id": "turban", "fg": 1796 },
- { "id": "cola", "fg": 1834 },
- { "id": "juice", "fg": 1838 },
- { "id": "milk", "fg": 1840 },
- { "id": "purple_drink", "fg": 1844 },
- { "id": "tomato_juice", "fg": 1845 },
- { "id": "vinegar", "fg": 1846 },
- { "id": "plunger_futuristic", "fg": 1896 },
- { "id": "plunger_toilet", "fg": 1897 },
- { "id": "portable_game", "fg": 1899 },
- { "id": "towel", "fg": 1963 },
- { "id": "towel_soiled", "fg": 1964 },
- { "id": "towel_wet", "fg": 1965 },
- { "id": "1895sbl", "fg": 1973 },
- { "id": "AT4", "fg": 1974 },
- { "id": "LAW", "fg": 1975 },
- { "id": "M24", "fg": 1976 },
- { "id": "RPG", "fg": 1977 },
- { "id": "USAS_12", "fg": 1978 },
- { "id": "airspeargun", "fg": 1979 },
- { "id": "ak74", "fg": 1981 },
- { "id": "american_180", "fg": 1982 },
- { "id": "an94", "fg": 1983 },
- { "id": "ar10", "fg": 1984 },
- { "id": "ar15", "fg": 1985 },
- { "id": "arx160", "fg": 1986 },
- { "id": "as50", "fg": 1987 },
- { "id": "atgm_launcher", "fg": 1988 },
- { "id": "bbgun", "fg": 1989 },
- { "id": "bfg50", "fg": 1990 },
- { "id": "bh_m89", "fg": 1991 },
- { "id": "blunderbuss", "fg": 1992 },
- { "id": "browning_blr", "fg": 1993 },
- { "id": "chemical_thrower", "fg": 1995 },
- { "id": "coilgun", "fg": 1996 },
- { "id": "colt_lightning", "fg": 1997 },
- { "id": "colt_ro635", "fg": 1998 },
- { "id": "combination_gun", "fg": 1999 },
- { "id": "cx4", "fg": 2000 },
- { "id": "doublespeargun", "fg": 2001 },
- { "id": "emp_gun", "fg": 2002 },
- { "id": "famas", "fg": 2003 },
- { "id": "flamethrower", "fg": 2004 },
- { "id": "fn_fal", "fg": 2005 },
- { "id": "fs2000", "fg": 2006 },
- { "id": "ftk93", "fg": 2007 },
- { "id": "garand", "fg": 2008 },
- { "id": "heavy_rail_rifle", "fg": 2009 },
- { "id": "helsing", "fg": 2010 },
- { "id": "henry_big_boy", "fg": 2011 },
- { "id": "hk417_13", "fg": 2012 },
- { "id": "hk_g3", "fg": 2013 },
- { "id": "hk_g36", "fg": 2014 },
- { "id": "hk_g80", "fg": 2015 },
- { "id": "hk_mp5k", "fg": 2016 },
- { "id": "hk_mp5sd", "fg": 2017 },
- { "id": "iwi_tavor_x95_300blk", "fg": 2018 },
- { "id": "ksg-25", "fg": 2019 },
- { "id": "ksg", "fg": 2020 },
- { "id": "ksub2000", "fg": 2021 },
- { "id": "laser_cannon", "fg": 2022 },
- { "id": "laser_rifle", "fg": 2023 },
- { "id": "lever_shotgun", "fg": 2024 },
- { "id": "longrifle_flintlock", "fg": 2025 },
- { "id": "m107a1", "fg": 2026 },
- { "id": "m110a1", "fg": 2027 },
- { "id": "m134", "fg": 2028 },
- { "id": "m14ebr", "fg": 2029 },
- { "id": "m1903", "fg": 2032 },
- { "id": "m1918", "fg": 2033 },
- { "id": "m1a", "fg": 2034 },
- { "id": "m2010", "fg": 2035 },
- { "id": "m231pfw", "fg": 2036 },
- { "id": "m240", "fg": 2037 },
- { "id": "m27_assault_rifle_var_h&k416a5", "fg": 2039 },
- { "id": "m27_assault_rifle_var_m27iar", "fg": 2040 },
- { "id": "m27_assault_rifle_var_m38dmr", "fg": 2041 },
- { "id": "m27_assault_rifle_var_scar_l", "fg": 2042 },
- { "id": "m2browning", "fg": 2043 },
- { "id": "m2browning_sawn", "fg": 2044 },
- { "id": "m3_carlgustav", "fg": 2045 },
- { "id": "m4_carbine_var_m4a1", "fg": 2046 },
- { "id": "m4_carlgustav", "fg": 2047 },
- { "id": "m79", "fg": 2049 },
- { "id": "mark19", "fg": 2050 },
- { "id": "marlin_9a", "fg": 2051 },
- { "id": "mininuke_launcher", "fg": 2052 },
- { "id": "mosin44", "fg": 2053 },
- { "id": "mosin44_ebr", "fg": 2054 },
- { "id": "mosin91_30", "fg": 2055 },
- { "id": "mosin91_30_ebr", "fg": 2056 },
- { "id": "mossberg_500", "fg": 2057 },
- { "id": "mossberg_500_var_mossberg_500_security", "fg": 2058 },
- { "id": "mossberg_590", "fg": 2059 },
- { "id": "mossberg_590_var_SPAS_12", "fg": 2060 },
- { "id": "mossberg_930", "fg": 2061 },
- { "id": "mossberg_930_var_m1014", "fg": 2062 },
- { "id": "mp18", "fg": 2063 },
- { "id": "needlegun", "fg": 2065 },
- { "id": "pamd68", "fg": 2066 },
- { "id": "pamd71z", "fg": 2067 },
- { "id": "pipe_combination_gun", "fg": 2068 },
- { "id": "plasma_gun", "fg": 2069 },
- { "id": "plasma_rifle", "fg": 2070 },
- { "id": "ppsh", "fg": 2071 },
- { "id": "rebar_rifle", "fg": 2072 },
- { "id": "remington700_270", "fg": 2073 },
- { "id": "remington_700", "fg": 2074 },
- { "id": "remington_870", "fg": 2075 },
- { "id": "remington_870_breacher", "fg": 2076 },
- { "id": "remington_870_express", "fg": 2077 },
- { "id": "remington_870_var_browning_a5", "fg": 2078 },
- { "id": "remington_870_var_remington_1100", "fg": 2079 },
- { "id": "rifle_flintlock", "fg": 2080 },
- { "id": "rm120c", "fg": 2081 },
- { "id": "rm20", "fg": 2082 },
- { "id": "rm298", "fg": 2083 },
- { "id": "rm451_flamethrower", "fg": 2084 },
- { "id": "rm51_assault_rifle", "fg": 2085 },
- { "id": "rm614_lmg", "fg": 2086 },
- { "id": "rm802", "fg": 2087 },
- { "id": "rm88_battle_rifle", "fg": 2088 },
- { "id": "ruger_1022", "fg": 2089 },
- { "id": "ruger_mini", "fg": 2090 },
- { "id": "saiga_12", "fg": 2091 },
- { "id": "saiga_410", "fg": 2092 },
- { "id": "savage_111f", "fg": 2093 },
- { "id": "scar_h", "fg": 2094 },
- { "id": "sharps", "fg": 2095 },
- { "id": "shotgun_410", "fg": 2096 },
- { "id": "shotgun_d", "fg": 2097 },
- { "id": "shotgun_s", "fg": 2098 },
- { "id": "sig552", "fg": 2099 },
- { "id": "sig_mcx_rattler_sbr", "fg": 2100 },
- { "id": "skorpion_82", "fg": 2101 },
- { "id": "sks", "fg": 2102 },
- { "id": "smg_9mm", "fg": 2104 },
- { "id": "speargun", "fg": 2105 },
- { "id": "sten", "fg": 2106 },
- { "id": "steyr_aug", "fg": 2107 },
- { "id": "surv_rocket_launcher", "fg": 2108 },
- { "id": "survivor_special_700", "fg": 2109 },
- { "id": "tac50", "fg": 2110 },
- { "id": "tavor_12", "fg": 2111 },
- { "id": "tihar", "fg": 2112 },
- { "id": "tommygun", "fg": 2113 },
- { "id": "trex_gun", "fg": 2114 },
- { "id": "weatherby_5", "fg": 2115 },
- { "id": "win70", "fg": 2116 },
- { "id": "winchester_1887", "fg": 2117 },
- { "id": "winchester_1897", "fg": 2118 },
- { "id": "broadsword", "fg": 2119 },
- { "id": "corpse", "fg": 2120 },
- { "id": "foodperson_mask", "fg": 2233 },
- { "id": "foodperson_mask_on", "fg": 2234 },
- { "id": "gloves_fingerless", "fg": 2235 },
- { "id": "gloves_leather", "fg": 2236 },
- { "id": "gloves_liner", "fg": 2237 },
- { "id": "hand_pump", "fg": 2238 },
- { "id": "analytical_set_basic", "fg": 2239 },
- { "id": "balance_small", "fg": 2240 },
- { "id": "bandages_makeshift_bleached", "fg": 2242 },
- { "id": "beaker", "fg": 2243 },
- { "id": "flask_glass", "fg": 2244 },
- { "id": "gradcylinder", "fg": 2245 },
- { "id": "ph_meter", "fg": 2246 },
- { "id": "rack_test_tube", "fg": 2247 },
- { "id": "spectrophotometer", "fg": 2248 },
- { "id": "test_tube", "fg": 2249 },
- { "id": "voltmeter", "fg": 2250 },
- { "id": "10mm", "fg": 2251 },
- { "id": "223", "fg": 2252 },
- { "id": "22_cb", "fg": 2253 },
- { "id": "22_fmj", "fg": 2254 },
- { "id": "22_lr", "fg": 2255 },
- { "id": "22_ratshot", "fg": 2256 },
- { "id": "3006_incendiary", "fg": 2257 },
- { "id": "36navy", "fg": 2258 },
- { "id": "38_special", "fg": 2259 },
- { "id": "38_super", "fg": 2260 },
- { "id": "40fmj", "fg": 2261 },
- { "id": "40mm_flechet", "fg": 2262 },
- { "id": "40mm_shot", "fg": 2263 },
- { "id": "44army", "fg": 2264 },
- { "id": "44magnum", "fg": 2265 },
- { "id": "45_acp", "fg": 2266 },
- { "id": "45_jhp", "fg": 2267 },
- { "id": "500_Magnum", "fg": 2268 },
- { "id": "50match", "fg": 2269 },
- { "id": "545-ap", "fg": 2270 },
- { "id": "762_51", "fg": 2271 },
- { "id": "762_51_incendiary", "fg": 2272 },
- { "id": "762_m43", "fg": 2273 },
- { "id": "9mmP", "fg": 2274 },
- { "id": "9mmfmj", "fg": 2275 },
- { "id": "abstractmap", "fg": 2276 },
- { "id": "acidchitin_piece", "fg": 2277 },
- { "id": "acidchitin_plate", "fg": 2278 },
- { "id": "acoustic_guitar", "fg": 2279 },
- { "id": "aluminum_foil", "fg": 2280 },
- { "id": "ammonia", "fg": 2281 },
- { "id": "arming_sword", "fg": 2282 },
- { "id": "armor_lorica", "fg": 2283 },
- { "id": "arrowrest", "fg": 2284 },
- { "id": "atgm_heat", "fg": 2285 },
- { "id": "atomic_coffee", "fg": 2286 },
- { "id": "b_paint", "fg": 2287 },
- { "id": "bag_canvas_small", "fg": 2288 },
- { "id": "bagpipes", "fg": 2289 },
- { "id": "ballistic_vest_esapi", "fg": 2290 },
- { "id": "banjo", "fg": 2291 },
- { "id": "barley", "fg": 2292 },
- { "id": "basketball", "fg": 2293 },
- { "id": "battleaxe", "fg": 2294 },
- { "id": "beer", "fg": 2295 },
- { "id": "belgian_ale", "fg": 2296 },
- { "id": "bfipowder", "fg": 2298 },
- { "id": "bindle", "fg": 2299 },
- { "id": "bio_int_enhancer", "fg": 2300 },
- { "id": "birchbark", "fg": 2301 },
- { "id": "bismuth", "fg": 2302 },
- { "id": "blanket", "fg": 2303 },
- { "id": "bleach", "fg": 2304 },
- { "id": "blueberries_cooked", "fg": 2305 },
- { "id": "boiled_egg", "fg": 2306 },
- { "id": "bone_flute", "fg": 2307 },
- { "id": "bone_human", "fg": 2308 },
- { "id": "boots_acidchitin", "fg": 2309 },
- { "id": "boots_bunker", "fg": 2310 },
- { "id": "boots_hsurvivor", "fg": 2311 },
- { "id": "boots_lsurvivor", "fg": 2312 },
- { "id": "boots_survivor", "fg": 2313 },
- { "id": "boots_western", "fg": 2314 },
- { "id": "bottle_folding", "fg": 2315 },
- { "id": "bottle_metal", "fg": 2316 },
- { "id": "bottle_plastic_smal", "fg": 2317 },
- { "id": "bowling_pin", "fg": 2318 },
- { "id": "briefcase", "fg": 2319 },
- { "id": "broken_manhack", "fg": 2320 },
- { "id": "broken_skitterbot", "fg": 2321 },
- { "id": "broth_bone", "fg": 2322 },
- { "id": "bum_wine", "fg": 2323 },
- { "id": "camisole", "fg": 2324 },
- { "id": "can_food_unsealed", "fg": 2325 },
- { "id": "case_violin", "fg": 2326 },
- { "id": "cattail_rhizome", "fg": 2327 },
- { "id": "cattail_stalk", "fg": 2328 },
- { "id": "cell_phone_flashlight", "fg": 2329 },
- { "id": "ceramic_armor", "fg": 2330 },
- { "id": "ceramic_shard", "fg": 2331 },
- { "id": "chainmail_arms", "fg": 2332 },
- { "id": "chainmail_hauberk", "fg": 2333 },
- { "id": "chainmail_hood", "fg": 2334 },
- { "id": "chainmail_legs", "fg": 2335 },
- { "id": "chainmail_vest", "fg": 2336 },
- { "id": "chem_aluminium_powder", "fg": 2337 },
- { "id": "chem_aluminium_sulphate", "fg": 2338 },
- { "id": "chem_hexamine", "fg": 2339 },
- { "id": "chestwrap", "fg": 2340 },
- { "id": "chestwrap_fur", "fg": 2341 },
- { "id": "chestwrap_leather", "fg": 2342 },
- { "id": "chestwrap_wool", "fg": 2343 },
- { "id": "chili", "fg": 2344 },
- { "id": "chili_pepper", "fg": 2345 },
- { "id": "chipper", "fg": 2346 },
- { "id": "choc_drink", "fg": 2347 },
- { "id": "chocpretzels", "fg": 2348 },
- { "id": "cig_butt", "fg": 2349 },
- { "id": "cig_lit", "fg": 2350 },
- { "id": "clarinet", "fg": 2351 },
- { "id": "coffee", "fg": 2352 },
- { "id": "colamdew", "fg": 2353 },
- { "id": "con_milk", "fg": 2354 },
- { "id": "con_mix", "fg": 2355 },
- { "id": "concrete", "fg": 2356 },
- { "id": "contacts", "fg": 2357 },
- { "id": "cooking_oil", "fg": 2358 },
- { "id": "copper", "fg": 2359 },
- { "id": "copper_bracelet", "fg": 2360 },
- { "id": "copper_knife", "fg": 2361 },
- { "id": "corndogs_cooked", "fg": 2362 },
- { "id": "corndogs_frozen", "fg": 2363 },
- { "id": "cow_bell", "fg": 2364 },
- { "id": "crispycran", "fg": 2365 },
- { "id": "crown_golden", "fg": 2366 },
- { "id": "cs_lajatang_off", "fg": 2367 },
- { "id": "cured_hide", "fg": 2368 },
- { "id": "cured_pelt", "fg": 2369 },
- { "id": "curry_meat", "fg": 2370 },
- { "id": "curry_powder", "fg": 2371 },
- { "id": "curry_veggy", "fg": 2372 },
- { "id": "dahlia_baked", "fg": 2374 },
- { "id": "dao", "fg": 2375 },
- { "id": "detergent", "fg": 2376 },
- { "id": "diamond", "fg": 2377 },
- { "id": "diamond_dental_grill", "fg": 2378 },
- { "id": "diazepam", "fg": 2379 },
- { "id": "distaff_spindle", "fg": 2381 },
- { "id": "down_blanket", "fg": 2382 },
- { "id": "down_pillow", "fg": 2383 },
- { "id": "dry_fish", "fg": 2384 },
- { "id": "dry_meat_tainted", "fg": 2385 },
- { "id": "dry_veggy_tainted", "fg": 2386 },
- { "id": "egg_bird", "fg": 2387 },
- { "id": "egg_reptile", "fg": 2388 },
- { "id": "eink_tablet_pc", "fg": 2389 },
- { "id": "elec_hairtrimmer", "fg": 2390 },
- { "id": "electric_blanket", "fg": 2391 },
- { "id": "emer_blanket", "fg": 2392 },
- { "id": "emer_blanket_on", "fg": 2393 },
- { "id": "esbit_stove", "fg": 2394 },
- { "id": "estoc", "fg": 2395 },
- { "id": "fat", "fg": 2396 },
- { "id": "fat_tainted", "fg": 2397 },
- { "id": "felt_patch", "fg": 2398 },
- { "id": "file", "fg": 2399 },
- { "id": "fire_lance", "fg": 2401 },
- { "id": "firehelmet", "fg": 2402 },
- { "id": "fish", "fg": 2403 },
- { "id": "fish_smoked", "fg": 2404 },
- { "id": "fishing_hook_basic", "fg": 2405 },
- { "id": "fishing_rod_basic", "fg": 2406 },
- { "id": "fishing_rod_professional", "fg": 2407 },
- { "id": "flask_yeast", "fg": 2408 },
- { "id": "flatbread", "fg": 2409 },
- { "id": "flint_steel", "fg": 2410 },
- { "id": "flute", "fg": 2411 },
- { "id": "folding_poncho", "fg": 2412 },
- { "id": "folding_poncho_on", "fg": 2413 },
- { "id": "food_processor", "fg": 2414 },
- { "id": "footrags", "fg": 2415 },
- { "id": "footrags_fur", "fg": 2416 },
- { "id": "footrags_leather", "fg": 2417 },
- { "id": "footrags_wool", "fg": 2418 },
- { "id": "fruit_cooked", "fg": 2419 },
- { "id": "fungicide", "fg": 2420 },
- { "id": "fur_blanket", "fg": 2421 },
- { "id": "g_carpet", "fg": 2422 },
- { "id": "g_paint", "fg": 2423 },
- { "id": "g_shovel", "fg": 2424 },
- { "id": "gal_drum", "fg": 2425 },
- { "id": "gambeson", "fg": 2426 },
- { "id": "garlic", "fg": 2427 },
- { "id": "gasdiscount_gold", "fg": 2428 },
- { "id": "gasdiscount_platinum", "fg": 2429 },
- { "id": "gasdiscount_silver", "fg": 2430 },
- { "id": "glass_shard", "fg": 2431 },
- { "id": "glass_shiv", "fg": 2432 },
- { "id": "glass_tinted", "fg": 2433 },
- { "id": "gloves_wraps_fur", "fg": 2434 },
- { "id": "gold_bracelet", "fg": 2435 },
- { "id": "gold_dental_grill", "fg": 2436 },
- { "id": "golf_ball", "fg": 2437 },
- { "id": "gown", "fg": 2438 },
- { "id": "grapnel", "fg": 2439 },
- { "id": "h&k416a5", "fg": 2440 },
- { "id": "hacksaw", "fg": 2441 },
- { "id": "halligan", "fg": 2442 },
- { "id": "halter_top", "fg": 2443 },
- { "id": "hand_axe", "fg": 2444 },
- { "id": "hand_paddles", "fg": 2445 },
- { "id": "hand_rims", "fg": 2446 },
- { "id": "handflare", "fg": 2447 },
- { "id": "handflare_dead", "fg": 2448 },
- { "id": "handflare_lit", "fg": 2449 },
- { "id": "handrolled_cig", "fg": 2450 },
- { "id": "hat_hard", "fg": 2451 },
- { "id": "hat_hard_hooded", "fg": 2452 },
- { "id": "hat_knit", "fg": 2453 },
- { "id": "hat_newsboy", "fg": 2454 },
- { "id": "hbolt_metal", "fg": 2455 },
- { "id": "hbolt_wood", "fg": 2456 },
- { "id": "hdframe", "fg": 2457 },
- { "id": "heatpack", "fg": 2458 },
- { "id": "heatpack_used", "fg": 2459 },
- { "id": "helmet_army", "fg": 2460 },
- { "id": "hickory_nut", "fg": 2461 },
- { "id": "hickory_nut_roasted", "fg": 2462 },
- { "id": "hickory_nut_unshell", "fg": 2463 },
- { "id": "hickory_root", "fg": 2464 },
- { "id": "hobo_stove", "fg": 2465 },
- { "id": "holy_symbol", "fg": 2466 },
- { "id": "honey_bottled", "fg": 2467 },
- { "id": "hotdogs_cooked", "fg": 2468 },
- { "id": "i_combustion", "fg": 2469 },
- { "id": "iceaxe", "fg": 2470 },
- { "id": "inflatable_boat", "fg": 2471 },
- { "id": "inflatable_section", "fg": 2472 },
- { "id": "jacket_army", "fg": 2473 },
- { "id": "jacket_jean", "fg": 2474 },
- { "id": "jacket_leather", "fg": 2475 },
- { "id": "jacket_light", "fg": 2476 },
- { "id": "jam_strawberries", "fg": 2477 },
- { "id": "ji", "fg": 2478 },
- { "id": "jian", "fg": 2479 },
- { "id": "joint_roach", "fg": 2481 },
- { "id": "khopesh", "fg": 2482 },
- { "id": "knife", "fg": 2483 },
- { "id": "kukri", "fg": 2484 },
- { "id": "l-stick", "fg": 2485 },
- { "id": "l-stick_on", "fg": 2486 },
- { "id": "lead_ball", "fg": 2487 },
- { "id": "leg_warmers_f", "fg": 2488 },
- { "id": "link_sheet", "fg": 2489 },
- { "id": "locket", "fg": 2490 },
- { "id": "longsword", "fg": 2491 },
- { "id": "longsword_fake", "fg": 2492 },
- { "id": "mace", "fg": 2493 },
- { "id": "maid_dress", "fg": 2494 },
- { "id": "maid_hat", "fg": 2495 },
- { "id": "makeshift_axe", "fg": 2496 },
- { "id": "makeshift_crowbar", "fg": 2497 },
- { "id": "makeshift_funnel", "fg": 2498 },
- { "id": "makeshift_hammer", "fg": 2499 },
- { "id": "marble", "fg": 2500 },
- { "id": "marshmallow", "fg": 2501 },
- { "id": "material_aluminium_ingot", "fg": 2502 },
- { "id": "material_sand", "fg": 2503 },
- { "id": "material_shrd_limestone", "fg": 2504 },
- { "id": "meat_salted", "fg": 2505 },
- { "id": "mess_tin", "fg": 2506 },
- { "id": "metal_funnel", "fg": 2507 },
- { "id": "metal_tank_little", "fg": 2508 },
- { "id": "metal_tank_small", "fg": 2509 },
- { "id": "meth", "fg": 2510 },
- { "id": "mjolnir", "fg": 2511 },
- { "id": "morphine", "fg": 2512 },
- { "id": "mortar_pestle", "fg": 2513 },
- { "id": "mouthpiece", "fg": 2514 },
- { "id": "mustard", "fg": 2515 },
- { "id": "mutagen_bird", "fg": 2516 },
- { "id": "mutagen_cattle", "fg": 2517 },
- { "id": "mutagen_elfa", "fg": 2518 },
- { "id": "mutagen_fish", "fg": 2519 },
- { "id": "mutagen_plant", "fg": 2520 },
- { "id": "mutagen_slime", "fg": 2521 },
- { "id": "nachosc", "fg": 2522 },
- { "id": "naginata", "fg": 2523 },
- { "id": "nanoskirt", "fg": 2524 },
- { "id": "omnicamera", "fg": 2525 },
- { "id": "onion_rings", "fg": 2526 },
- { "id": "oxy_torch", "fg": 2527 },
- { "id": "p_carpet", "fg": 2528 },
- { "id": "p_paint", "fg": 2529 },
- { "id": "panties", "fg": 2530 },
- { "id": "pants", "fg": 2531 },
- { "id": "pants_army", "fg": 2532 },
- { "id": "pants_cargo", "fg": 2533 },
- { "id": "pants_checkered", "fg": 2534 },
- { "id": "pants_leather", "fg": 2535 },
- { "id": "pants_ski", "fg": 2536 },
- { "id": "pillow", "fg": 2537 },
- { "id": "pitchfork", "fg": 2538 },
- { "id": "plastic_shopping_bag", "fg": 2539 },
- { "id": "pliers", "fg": 2540 },
- { "id": "plut_cell", "fg": 2541 },
- { "id": "pool_ball", "fg": 2542 },
- { "id": "pot_canning", "fg": 2543 },
- { "id": "pot_copper", "fg": 2544 },
- { "id": "pot_makeshift", "fg": 2545 },
- { "id": "pot_makeshift_copper", "fg": 2546 },
- { "id": "powder_eggs", "fg": 2547 },
- { "id": "powered_earmuffs", "fg": 2548 },
- { "id": "protein_powder", "fg": 2549 },
- { "id": "qiang", "fg": 2550 },
- { "id": "r_carpet", "fg": 2551 },
- { "id": "r_paint", "fg": 2552 },
- { "id": "radio_car", "fg": 2553 },
- { "id": "radio_car_on", "fg": 2554 },
- { "id": "radiocontrol", "fg": 2555 },
- { "id": "raw_fur", "fg": 2556 },
- { "id": "raw_hleather", "fg": 2557 },
- { "id": "razor_blade", "fg": 2558 },
- { "id": "ref_lighter", "fg": 2559 },
- { "id": "reinforced_glass_sheet", "fg": 2560 },
- { "id": "reloaded_454_Casull", "fg": 2561 },
- { "id": "reloaded_shot_he", "fg": 2562 },
- { "id": "reloaded_shot_slug", "fg": 2563 },
- { "id": "reloaded_signal_fla", "fg": 2564 },
- { "id": "reloaded_ss", "fg": 2565 },
- { "id": "reloaded_sw", "fg": 2566 },
- { "id": "reloaded_xdart", "fg": 2567 },
- { "id": "ring_engagement", "fg": 2568 },
- { "id": "robe", "fg": 2569 },
- { "id": "rollerskates", "fg": 2570 },
- { "id": "sandwich_cheese", "fg": 2571 },
- { "id": "sandwich_cheese_gri", "fg": 2572 },
- { "id": "sandwich_cucumber", "fg": 2573 },
- { "id": "sandwich_honey", "fg": 2574 },
- { "id": "sandwich_jam", "fg": 2575 },
- { "id": "sandwich_pb", "fg": 2576 },
- { "id": "sandwich_pbj", "fg": 2577 },
- { "id": "sandwich_pbm", "fg": 2578 },
- { "id": "sandwich_sauce", "fg": 2579 },
- { "id": "sausage_wasteland", "fg": 2580 },
- { "id": "saxophone", "fg": 2581 },
- { "id": "scabbard", "fg": 2582 },
- { "id": "scrap_bronze", "fg": 2583 },
- { "id": "scrap_copper", "fg": 2584 },
- { "id": "sharp_toothbrush", "fg": 2585 },
- { "id": "shavingkit", "fg": 2586 },
- { "id": "sheath", "fg": 2587 },
- { "id": "sheet_metal_small", "fg": 2588 },
- { "id": "shillelagh", "fg": 2589 },
- { "id": "shorts_denim", "fg": 2590 },
- { "id": "shot_00", "fg": 2591 },
- { "id": "shot_bird", "fg": 2592 },
- { "id": "shot_flechette", "fg": 2593 },
- { "id": "silver_bracelet", "fg": 2594 },
- { "id": "silver_small", "fg": 2595 },
- { "id": "skirt_leather", "fg": 2596 },
- { "id": "smart_phone", "fg": 2597 },
- { "id": "smart_phone_flashlight", "fg": 2598 },
- { "id": "soap", "fg": 2599 },
- { "id": "soup_chicken", "fg": 2600 },
- { "id": "soup_dumplings", "fg": 2601 },
- { "id": "soup_fish", "fg": 2602 },
- { "id": "soup_mushroom", "fg": 2603 },
- { "id": "soup_tomato", "fg": 2604 },
- { "id": "soup_veggy", "fg": 2605 },
- { "id": "soup_woods", "fg": 2606 },
- { "id": "spear_dory", "fg": 2607 },
- { "id": "spear_forked", "fg": 2608 },
- { "id": "spear_stone", "fg": 2609 },
- { "id": "spider_egg", "fg": 2610 },
- { "id": "sports_bra", "fg": 2611 },
- { "id": "stepladder", "fg": 2612 },
- { "id": "stomach", "fg": 2613 },
- { "id": "straw_doll", "fg": 2614 },
- { "id": "sugar_beet", "fg": 2615 },
- { "id": "survivor_hairtrimmer", "fg": 2616 },
- { "id": "survivor_scope", "fg": 2617 },
- { "id": "survivor_vest", "fg": 2618 },
- { "id": "sushi_fishroll", "fg": 2619 },
- { "id": "swag_bag", "fg": 2620 },
- { "id": "sword_xiphos", "fg": 2621 },
- { "id": "tallow", "fg": 2622 },
- { "id": "tallow_tainted", "fg": 2623 },
- { "id": "tanbark", "fg": 2624 },
- { "id": "tanned_hide", "fg": 2625 },
- { "id": "tanned_pelt", "fg": 2626 },
- { "id": "tanto", "fg": 2627 },
- { "id": "tea", "fg": 2628 },
- { "id": "telepad", "fg": 2629 },
- { "id": "thermometer", "fg": 2630 },
- { "id": "thermos", "fg": 2631 },
- { "id": "throwing_stick", "fg": 2632 },
- { "id": "tieclip", "fg": 2633 },
- { "id": "tin", "fg": 2634 },
- { "id": "tinder", "fg": 2635 },
- { "id": "tinderbox", "fg": 2636 },
- { "id": "tinfoil_hat", "fg": 2637 },
- { "id": "toothbrush_plain", "fg": 2638 },
- { "id": "trimmer_off", "fg": 2639 },
- { "id": "trimmer_on", "fg": 2640 },
- { "id": "trumpet", "fg": 2641 },
- { "id": "tuba", "fg": 2642 },
- { "id": "tunic", "fg": 2643 },
- { "id": "tunic_rag", "fg": 2644 },
- { "id": "ukulele", "fg": 2645 },
- { "id": "undershirt", "fg": 2646 },
- { "id": "unfinished_charcoal", "fg": 2647 },
- { "id": "v_combustion", "fg": 2648 },
- { "id": "v_scoop_item", "fg": 2649 },
- { "id": "vehicle_dashboard", "fg": 2650 },
- { "id": "vibrator", "fg": 2651 },
- { "id": "violin", "fg": 2652 },
- { "id": "violin_golden", "fg": 2653 },
- { "id": "w_paint", "fg": 2654 },
- { "id": "waffleiron", "fg": 2655 },
- { "id": "wakizashi", "fg": 2656 },
- { "id": "warhammer", "fg": 2657 },
- { "id": "water_acid_weak", "fg": 2658 },
- { "id": "waterproof_gunmod", "fg": 2659 },
- { "id": "wearable_light", "fg": 2660 },
- { "id": "wearable_light_on", "fg": 2661 },
- { "id": "wheel_armor", "fg": 2662 },
- { "id": "wheel_bicycle", "fg": 2663 },
- { "id": "wheel_caster", "fg": 2664 },
- { "id": "wheel_motorbike", "fg": 2665 },
- { "id": "wheel_small", "fg": 2666 },
- { "id": "wheel_wide", "fg": 2667 },
- { "id": "whiskey", "fg": 2668 },
- { "id": "whistle", "fg": 2669 },
- { "id": "y_carpet", "fg": 2670 },
- { "id": "y_paint", "fg": 2671 },
- { "id": "yarn", "fg": 2672 },
- { "id": "yeast", "fg": 2673 },
- { "id": "yoghurt", "fg": 2674 },
- { "id": "zubon_gi", "fg": 2675 },
- { "id": "zweihander", "fg": 2676 },
- { "id": "cloak", "fg": 2677 },
- { "id": "cloak_fur", "fg": 2678 },
- { "id": "cloak_leather", "fg": 2679 },
- { "id": "cloak_wool", "fg": 2680 },
- { "id": "coat_rain", "fg": 2681 },
- { "id": "optical_cloak", "fg": 2682 },
- { "id": "legrig", "fg": 2683 },
- { "id": "ketchup", "fg": 2684 },
- { "id": "mayonnaise", "fg": 2685 },
- { "id": "book_nonf_zine_news_anlyst", "fg": 2686 },
- { "id": "mag_animecon", "fg": 2687 },
- { "id": "mag_dodge", "fg": 2688 },
- { "id": "mag_fabrication", "fg": 2689 },
- { "id": "mag_firstaid", "fg": 2690 },
- { "id": "mag_guns", "fg": 2691 },
- { "id": "mag_news", "fg": 2692 },
- { "id": "mag_porn", "fg": 2693 },
- { "id": "mag_throwing", "fg": 2694 },
- { "id": "mag_unarmed", "fg": 2695 },
- { "id": "multi_cooker", "fg": 2700 },
- { "id": "multi_cooker_filled", "fg": 2701 },
- { "id": "pet_carrier", "fg": 2702 },
- { "id": "primitive_shovel", "fg": 2703 },
- { "id": "amethyst_gold_ring", "fg": 2704 },
- { "id": "amethyst_platinum_ring", "fg": 2705 },
- { "id": "amethyst_silver_ring", "fg": 2706 },
- { "id": "aquamarine_gold_ring", "fg": 2707 },
- { "id": "aquamarine_platinum_ring", "fg": 2708 },
- { "id": "aquamarine_silver_ring", "fg": 2709 },
- { "id": "citrine_gold_ring", "fg": 2710 },
- { "id": "citrine_platinum_ring", "fg": 2711 },
- { "id": "citrine_silver_ring", "fg": 2712 },
- { "id": "diamond_platinum_ring", "fg": 2713 },
- { "id": "diamond_ring", "fg": 2714 },
- { "id": "diamond_silver_ring", "fg": 2715 },
- { "id": "emerald_gold_ring", "fg": 2716 },
- { "id": "emerald_platinum_ring", "fg": 2717 },
- { "id": "emerald_silver_ring", "fg": 2718 },
- { "id": "peridot_gold_ring", "fg": 2725 },
- { "id": "peridot_platinum_ring", "fg": 2726 },
- { "id": "peridot_silver_ring", "fg": 2727 },
- { "id": "tourmaline_gold_ring", "fg": 2731 },
- { "id": "tourmaline_platinum_ring", "fg": 2732 },
- { "id": "tourmaline_silver_ring", "fg": 2733 },
- { "id": "teddy_bear", "fg": 2734 },
- { "id": "tire_iron", "fg": 2735 },
- { "id": "winter_gloves_army", "fg": 2737 },
- { "id": "footstep_above", "fg": 2769 },
- { "id": "footstep_below", "fg": 2770 },
- { "id": "graffiti", "fg": 2771 },
- { "id": "zombie_revival_indicator", "fg": 2776 },
- { "id": "overlay_mutation_bio_sneeze_beam", "fg": 2777 },
- { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 2778 },
- { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 2779 },
- { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 2780 },
- { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 2781 },
- { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 2782 },
- { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 2783 },
- { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 2784 },
- { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 2785 },
- { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 2786 },
- { "id": "overlay_female_mutation_MANA_LUM", "fg": 2787 },
- { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 2788 },
- { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 2789 },
- { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 2790 },
- { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 2791 },
- { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 2795 },
- { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 2796 },
- { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 2797 },
- { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 2798 },
- { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 2799 },
- { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 2800 },
- { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 2801 },
- { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 2802 },
- { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 2803 },
- { "id": "overlay_male_mutation_MANA_LUM", "fg": 2804 },
- { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 2805 },
- { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 2806 },
- { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 2807 },
- { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 2808 },
- { "id": "overlay_mutation_DEMON_CLAWS", "fg": 2812 },
- { "id": "overlay_mutation_DEMON_POSSES", "fg": 2813 },
- { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 2814 },
- { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 2815 },
- { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 2816 },
- { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 2817 },
- { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 2818 },
- { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 2819 },
- { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 2820 },
- { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 2821 },
- { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 2822 },
- { "id": "DEBUG_spellbook", "fg": 2823 },
- { "id": "animist_shadows", "fg": 2824 },
- { "id": "bio_fuel_cell_blood", "fg": 2825 },
- { "id": "bio_sneeze_beam", "fg": 2826 },
- { "id": "biomancer_spellbook", "fg": 2827 },
- { "id": "disp_wand", "fg": 2828 },
- { "id": "druid_spellbook", "fg": 2829 },
- { "id": "eshaper_spellbook", "fg": 2830 },
- { "id": "generic_spellbook", "fg": 2831 },
- { "id": "light_manipulation_spellbook", "fg": 2832 },
- { "id": "magus_spellbook", "fg": 2833 },
- { "id": "magus_spellbook_move", "fg": 2834 },
- { "id": "mring_copper", "fg": 2835 },
- { "id": "mring_gold", "fg": 2836 },
- { "id": "mring_platinum", "fg": 2837 },
- { "id": "mring_silver", "fg": 2838 },
- { "id": "novice_stormshaper_book", "fg": 2839 },
- { "id": "priest_advanced", "fg": 2840 },
- { "id": "priest_beginner", "fg": 2841 },
- { "id": "pyro", "fg": 2842 },
- { "id": "recovery_spellbook", "fg": 2843 },
- { "id": "small_mana_crystal", "fg": 2844 },
- { "id": "spell_scroll", "fg": 2845 },
- { "id": "spell_wand", "fg": 2846 },
- { "id": "stat_up_spellbook", "fg": 2847 },
- { "id": "summon_scroll_smudged", "fg": 2848 },
- { "id": "summon_undead_spellbook", "fg": 2849 },
- { "id": "techno_em", "fg": 2850 },
- { "id": "techno_fundamentals", "fg": 2851 },
- { "id": "techno_idiots", "fg": 2852 },
- { "id": "tome_of_storms", "fg": 2853 },
- { "id": "translocate_spellbook", "fg": 2854 },
- { "id": "winter_grasp", "fg": 2855 },
- { "id": "wizard_advanced", "fg": 2856 },
- { "id": "wizard_beginner", "fg": 2857 },
- { "id": "wizard_utility", "fg": 2858 },
- { "id": "mon_goblin_chieftain", "fg": 2859 },
- { "id": "mon_goblin_slinger", "fg": 2860 },
- { "id": "mon_goblin_warrior", "fg": 2861 },
- { "id": "mon_cookie", "fg": 2865 },
- { "id": "mon_cow_calf_choc", "fg": 2866 },
- { "id": "mon_cow_choc", "fg": 2867 },
- { "id": "lemming_shadow", "fg": 3104 },
- { "id": "mon_boar_wild", "fg": 3105 },
- { "id": "mon_boar_wild_piglet", "fg": 3106 },
- { "id": "mon_copbot", "fg": 3107 },
- { "id": "mon_cow", "fg": 3108 },
- { "id": "mon_cow_calf", "fg": 3109 },
- { "id": "mon_fish_eel", "fg": 3110 },
- { "id": "mon_frog", "fg": 3111 },
- { "id": "mon_frog_small", "fg": 3112 },
- { "id": "mon_gracke", "fg": 3113 },
- { "id": "mon_grocerybot", "fg": 3114 },
- { "id": "mon_grocerybot_busted", "fg": 3115 },
- { "id": "mon_hallu_mannequin", "fg": 3116 },
- { "id": "mon_pig", "fg": 3117 },
- { "id": "mon_pig_piglet", "fg": 3118 },
- { "id": "mon_pigeon", "fg": 3119 },
- { "id": "mon_sheep", "fg": 3121 },
- { "id": "mon_skeleton_brute", "fg": 3122 },
- { "id": "mon_zombie_gasbag_crawler", "fg": 3131 },
- { "id": "mon_zombie_gasbag_immobile", "fg": 3132 },
- { "id": "mon_zombie_hanging_innards", "fg": 3133 },
- { "id": "mon_zombie_pig", "fg": 3135 },
- { "id": "mon_zow", "fg": 3144 },
- { "id": "shadow_32x32_small", "fg": 3146 },
- { "id": "corpse_mon_beaver", "fg": 3147 },
- { "id": "corpse_mon_beaver_mutant_avian", "fg": 3148 },
- { "id": "corpse_mon_beaver_mutant_huge", "fg": 3149 },
- { "id": "corpse_mon_zombeaver", "fg": 3150 },
- { "id": "mon_beaver", "fg": 3151 },
- { "id": "mon_beaver_mutant_avian", "fg": 3152 },
- { "id": "mon_beaver_mutant_huge", "fg": 3153 },
- { "id": "mon_zombeaver", "fg": 3154 },
- { "id": "mon_dog_bull", "fg": 3163 },
- { "id": "mon_dog_rottweiler", "fg": 3164 },
- { "id": "bot_eyebot", "fg": 3189 },
- { "id": "broken_eyebot", "fg": 3190 },
- { "id": "mon_eyebot", "fg": 3191 },
- { "id": "mon_goose_canadian", "fg": 3194 },
- { "id": "mon_grouse", "fg": 3195 },
- { "id": "mon_pheasant", "fg": 3196 },
- { "id": "mon_tadpole_grabber", "fg": 3197 },
- { "id": "mon_zombie_necro_boomer", "fg": 3201 },
- { "id": "mon_zombie_pig_gas", "fg": 3202 },
- { "id": "corpse_mon_zombie_rust", "fg": 3203 },
- { "id": "corpse_mon_zombie_shell", "fg": 3204 },
- { "id": "corpse_mon_zombie_urchin", "fg": 3205 },
- { "id": "mon_zombie_rust", "fg": 3206 },
- { "id": "mon_zombie_shell", "fg": 3207 },
- { "id": "mon_zombie_urchin", "fg": 3208 },
- { "id": "3957_t_metal_0", "fg": 3596 },
- { "id": "t_concrete", "fg": 3619 },
- { "id": "t_diesel_tank", "fg": 3620 },
- { "id": "t_diesel_tank_smashed", "fg": 3621 },
- { "id": "t_gas_tank_smashed", "fg": 3627 },
- { "id": "t_shingle_flat_roof", "fg": 3648 },
- { "id": "t_strconc_floor", "fg": 3649 },
- { "id": "t_thconc_floor_flesh", "fg": 3655 },
- { "id": "t_resin_hole", "fg": 3666 },
- { "id": "t_paper_roof", "fg": 4068 },
- { "id": "t_screen_door_c", "fg": 4254 },
- { "id": "t_screen_door_o", "fg": 4255 },
- { "id": "vp_animal_compartment", "fg": 4960 },
- { "id": "vp_autoclave", "fg": 5239 },
- { "id": "vp_dishwasher", "fg": 5244 },
- { "id": "vp_recharge_station", "fg": 5260 }
+ { "id": "overlay_wielded_scalpel", "fg": 509 },
+ { "id": "overlay_female_worn_boots_rubber", "fg": 875 },
+ { "id": "overlay_male_worn_boots_rubber", "fg": 876 },
+ { "id": "overlay_worn_bookplate", "fg": 884 },
+ { "id": "overlay_worn_broken_dimensional_anchor", "fg": 885 },
+ { "id": "overlay_worn_diamond_dental_grill", "fg": 890 },
+ { "id": "overlay_worn_dimensional_anchor", "fg": 892 },
+ { "id": "overlay_worn_dimensional_anchor_on", "fg": 893 },
+ { "id": "overlay_worn_eclipse_glasses", "fg": 896 },
+ { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 898 },
+ { "id": "overlay_worn_fancy_glasses_eye", "fg": 899 },
+ { "id": "overlay_worn_fancy_glasses_reading", "fg": 900 },
+ { "id": "overlay_worn_fanny", "fg": 901 },
+ { "id": "overlay_worn_fur_cat_tail", "fg": 905 },
+ { "id": "overlay_worn_fur_collar", "fg": 906 },
+ { "id": "overlay_worn_glasses_bifocal", "fg": 907 },
+ { "id": "overlay_worn_glasses_eye", "fg": 908 },
+ { "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": "manual_first_aid", "fg": 1649 },
+ { "id": "novel_adventure", "fg": 1650 },
+ { "id": "novel_buddy", "fg": 1651 },
+ { "id": "novel_coa", "fg": 1652 },
+ { "id": "novel_coa2", "fg": 1653 },
+ { "id": "novel_crime", "fg": 1654 },
+ { "id": "novel_crime2", "fg": 1655 },
+ { "id": "novel_drama", "fg": 1656 },
+ { "id": "novel_erotic", "fg": 1657 },
+ { "id": "novel_experimental", "fg": 1658 },
+ { "id": "novel_fantasy", "fg": 1659 },
+ { "id": "novel_horror", "fg": 1660 },
+ { "id": "novel_mystery", "fg": 1661 },
+ { "id": "novel_pulp", "fg": 1662 },
+ { "id": "novel_road", "fg": 1663 },
+ { "id": "novel_romance", "fg": 1664 },
+ { "id": "novel_samurai", "fg": 1665 },
+ { "id": "novel_satire", "fg": 1666 },
+ { "id": "novel_scifi", "fg": 1667 },
+ { "id": "novel_sports", "fg": 1668 },
+ { "id": "novel_spy", "fg": 1669 },
+ { "id": "novel_swash", "fg": 1670 },
+ { "id": "novel_thriller", "fg": 1671 },
+ { "id": "novel_tragedy", "fg": 1672 },
+ { "id": "novel_war", "fg": 1673 },
+ { "id": "novel_war2", "fg": 1674 },
+ { "id": "novel_western", "fg": 1675 },
+ { "id": "paperback_novel", "fg": 1676 },
+ { "id": "winemaking_beginner", "fg": 1677 },
+ { "id": "mre_box", "fg": 1679 },
+ { "id": "mre_lemontuna_box", "fg": 1682 },
+ { "id": "rifle_case_soft", "fg": 1737 },
+ { "id": "rifle_case_soft_2", "fg": 1738 },
+ { "id": "rifle_case_soft_leather_2", "fg": 1740 },
+ { "id": "rucksack", "fg": 1741 },
+ { "id": "bubblewrap", "fg": 1762 },
+ { "id": "clay_quern", "fg": 1773 },
+ { "id": "balaclava", "fg": 1775 },
+ { "id": "beret", "fg": 1776 },
+ { "id": "boxer_briefs", "fg": 1777 },
+ { "id": "boxer_shorts", "fg": 1778 },
+ { "id": "boy_shorts", "fg": 1779 },
+ { "id": "bra", "fg": 1780 },
+ { "id": "briefs", "fg": 1781 },
+ { "id": "coat_lab", "fg": 1782 },
+ { "id": "corset", "fg": 1783 },
+ { "id": "cowboy_hat", "fg": 1784 },
+ { "id": "hat_ball", "fg": 1785 },
+ { "id": "hat_cotton", "fg": 1786 },
+ { "id": "hat_fur", "fg": 1787 },
+ { "id": "helmet_barbute", "fg": 1788 },
+ { "id": "helmet_chitin", "fg": 1789 },
+ { "id": "helmet_kabuto", "fg": 1790 },
+ { "id": "hoodie", "fg": 1791 },
+ { "id": "jeans", "fg": 1792 },
+ { "id": "longshirt", "fg": 1793 },
+ { "id": "mask_dust", "fg": 1794 },
+ { "id": "polo_shirt", "fg": 1795 },
+ { "id": "ragpouch", "fg": 1796 },
+ { "id": "skirt", "fg": 1797 },
+ { "id": "sneakers", "fg": 1798 },
+ { "id": "socks", "fg": 1799 },
+ { "id": "striped_pants", "fg": 1800 },
+ { "id": "striped_shirt", "fg": 1801 },
+ { "id": "sweater", "fg": 1802 },
+ { "id": "sweatshirt", "fg": 1803 },
+ { "id": "tshirt", "fg": 1804 },
+ { "id": "turban", "fg": 1805 },
+ { "id": "cola", "fg": 1843 },
+ { "id": "juice", "fg": 1847 },
+ { "id": "milk", "fg": 1849 },
+ { "id": "purple_drink", "fg": 1853 },
+ { "id": "tomato_juice", "fg": 1854 },
+ { "id": "vinegar", "fg": 1855 },
+ { "id": "plunger_futuristic", "fg": 1905 },
+ { "id": "plunger_toilet", "fg": 1906 },
+ { "id": "portable_game", "fg": 1908 },
+ { "id": "towel", "fg": 1972 },
+ { "id": "towel_soiled", "fg": 1973 },
+ { "id": "towel_wet", "fg": 1974 },
+ { "id": "1895sbl", "fg": 1982 },
+ { "id": "AT4", "fg": 1983 },
+ { "id": "LAW", "fg": 1984 },
+ { "id": "M24", "fg": 1985 },
+ { "id": "RPG", "fg": 1986 },
+ { "id": "USAS_12", "fg": 1987 },
+ { "id": "airspeargun", "fg": 1988 },
+ { "id": "ak74", "fg": 1990 },
+ { "id": "american_180", "fg": 1991 },
+ { "id": "an94", "fg": 1992 },
+ { "id": "ar10", "fg": 1993 },
+ { "id": "ar15", "fg": 1994 },
+ { "id": "arx160", "fg": 1995 },
+ { "id": "as50", "fg": 1996 },
+ { "id": "atgm_launcher", "fg": 1997 },
+ { "id": "bbgun", "fg": 1998 },
+ { "id": "bfg50", "fg": 1999 },
+ { "id": "bh_m89", "fg": 2000 },
+ { "id": "blunderbuss", "fg": 2001 },
+ { "id": "browning_blr", "fg": 2002 },
+ { "id": "chemical_thrower", "fg": 2004 },
+ { "id": "coilgun", "fg": 2005 },
+ { "id": "colt_lightning", "fg": 2006 },
+ { "id": "colt_ro635", "fg": 2007 },
+ { "id": "combination_gun", "fg": 2008 },
+ { "id": "cx4", "fg": 2009 },
+ { "id": "doublespeargun", "fg": 2010 },
+ { "id": "emp_gun", "fg": 2011 },
+ { "id": "famas", "fg": 2012 },
+ { "id": "flamethrower", "fg": 2013 },
+ { "id": "fn_fal", "fg": 2014 },
+ { "id": "fs2000", "fg": 2015 },
+ { "id": "ftk93", "fg": 2016 },
+ { "id": "garand", "fg": 2017 },
+ { "id": "heavy_rail_rifle", "fg": 2018 },
+ { "id": "helsing", "fg": 2019 },
+ { "id": "henry_big_boy", "fg": 2020 },
+ { "id": "hk417_13", "fg": 2021 },
+ { "id": "hk_g3", "fg": 2022 },
+ { "id": "hk_g36", "fg": 2023 },
+ { "id": "hk_g80", "fg": 2024 },
+ { "id": "hk_mp5k", "fg": 2025 },
+ { "id": "hk_mp5sd", "fg": 2026 },
+ { "id": "iwi_tavor_x95_300blk", "fg": 2027 },
+ { "id": "ksg-25", "fg": 2028 },
+ { "id": "ksg", "fg": 2029 },
+ { "id": "ksub2000", "fg": 2030 },
+ { "id": "laser_cannon", "fg": 2031 },
+ { "id": "laser_rifle", "fg": 2032 },
+ { "id": "lever_shotgun", "fg": 2033 },
+ { "id": "longrifle_flintlock", "fg": 2034 },
+ { "id": "m107a1", "fg": 2035 },
+ { "id": "m110a1", "fg": 2036 },
+ { "id": "m134", "fg": 2037 },
+ { "id": "m14ebr", "fg": 2038 },
+ { "id": "m1903", "fg": 2041 },
+ { "id": "m1918", "fg": 2042 },
+ { "id": "m1a", "fg": 2043 },
+ { "id": "m2010", "fg": 2044 },
+ { "id": "m231pfw", "fg": 2045 },
+ { "id": "m240", "fg": 2046 },
+ { "id": "m27_assault_rifle_var_h&k416a5", "fg": 2048 },
+ { "id": "m27_assault_rifle_var_m27iar", "fg": 2049 },
+ { "id": "m27_assault_rifle_var_m38dmr", "fg": 2050 },
+ { "id": "m27_assault_rifle_var_scar_l", "fg": 2051 },
+ { "id": "m2browning", "fg": 2052 },
+ { "id": "m2browning_sawn", "fg": 2053 },
+ { "id": "m3_carlgustav", "fg": 2054 },
+ { "id": "m4_carbine_var_m4a1", "fg": 2055 },
+ { "id": "m4_carlgustav", "fg": 2056 },
+ { "id": "m79", "fg": 2058 },
+ { "id": "mark19", "fg": 2059 },
+ { "id": "marlin_9a", "fg": 2060 },
+ { "id": "mininuke_launcher", "fg": 2061 },
+ { "id": "mosin44", "fg": 2062 },
+ { "id": "mosin44_ebr", "fg": 2063 },
+ { "id": "mosin91_30", "fg": 2064 },
+ { "id": "mosin91_30_ebr", "fg": 2065 },
+ { "id": "mossberg_500", "fg": 2066 },
+ { "id": "mossberg_500_var_mossberg_500_security", "fg": 2067 },
+ { "id": "mossberg_590", "fg": 2068 },
+ { "id": "mossberg_590_var_SPAS_12", "fg": 2069 },
+ { "id": "mossberg_930", "fg": 2070 },
+ { "id": "mossberg_930_var_m1014", "fg": 2071 },
+ { "id": "mp18", "fg": 2072 },
+ { "id": "needlegun", "fg": 2074 },
+ { "id": "pamd68", "fg": 2075 },
+ { "id": "pamd71z", "fg": 2076 },
+ { "id": "pipe_combination_gun", "fg": 2077 },
+ { "id": "plasma_gun", "fg": 2078 },
+ { "id": "plasma_rifle", "fg": 2079 },
+ { "id": "ppsh", "fg": 2080 },
+ { "id": "rebar_rifle", "fg": 2081 },
+ { "id": "remington700_270", "fg": 2082 },
+ { "id": "remington_700", "fg": 2083 },
+ { "id": "remington_870", "fg": 2084 },
+ { "id": "remington_870_breacher", "fg": 2085 },
+ { "id": "remington_870_express", "fg": 2086 },
+ { "id": "remington_870_var_browning_a5", "fg": 2087 },
+ { "id": "remington_870_var_remington_1100", "fg": 2088 },
+ { "id": "rifle_flintlock", "fg": 2089 },
+ { "id": "rm120c", "fg": 2090 },
+ { "id": "rm20", "fg": 2091 },
+ { "id": "rm298", "fg": 2092 },
+ { "id": "rm451_flamethrower", "fg": 2093 },
+ { "id": "rm51_assault_rifle", "fg": 2094 },
+ { "id": "rm614_lmg", "fg": 2095 },
+ { "id": "rm802", "fg": 2096 },
+ { "id": "rm88_battle_rifle", "fg": 2097 },
+ { "id": "ruger_1022", "fg": 2098 },
+ { "id": "ruger_mini", "fg": 2099 },
+ { "id": "saiga_12", "fg": 2100 },
+ { "id": "saiga_410", "fg": 2101 },
+ { "id": "savage_111f", "fg": 2102 },
+ { "id": "scar_h", "fg": 2103 },
+ { "id": "sharps", "fg": 2104 },
+ { "id": "shotgun_410", "fg": 2105 },
+ { "id": "shotgun_d", "fg": 2106 },
+ { "id": "shotgun_s", "fg": 2107 },
+ { "id": "sig552", "fg": 2108 },
+ { "id": "sig_mcx_rattler_sbr", "fg": 2109 },
+ { "id": "skorpion_82", "fg": 2110 },
+ { "id": "sks", "fg": 2111 },
+ { "id": "smg_9mm", "fg": 2113 },
+ { "id": "speargun", "fg": 2114 },
+ { "id": "sten", "fg": 2115 },
+ { "id": "steyr_aug", "fg": 2116 },
+ { "id": "surv_rocket_launcher", "fg": 2117 },
+ { "id": "survivor_special_700", "fg": 2118 },
+ { "id": "tac50", "fg": 2119 },
+ { "id": "tavor_12", "fg": 2120 },
+ { "id": "tihar", "fg": 2121 },
+ { "id": "tommygun", "fg": 2122 },
+ { "id": "trex_gun", "fg": 2123 },
+ { "id": "weatherby_5", "fg": 2124 },
+ { "id": "win70", "fg": 2125 },
+ { "id": "winchester_1887", "fg": 2126 },
+ { "id": "winchester_1897", "fg": 2127 },
+ { "id": "broadsword", "fg": 2128 },
+ { "id": "corpse", "fg": 2129 },
+ { "id": "foodperson_mask", "fg": 2242 },
+ { "id": "foodperson_mask_on", "fg": 2243 },
+ { "id": "gloves_fingerless", "fg": 2244 },
+ { "id": "gloves_leather", "fg": 2245 },
+ { "id": "gloves_liner", "fg": 2246 },
+ { "id": "hand_pump", "fg": 2247 },
+ { "id": "inflatable_dragon", "fg": 2248 },
+ { "id": "analytical_set_basic", "fg": 2249 },
+ { "id": "balance_small", "fg": 2250 },
+ { "id": "bandages_makeshift_bleached", "fg": 2252 },
+ { "id": "beaker", "fg": 2253 },
+ { "id": "flask_glass", "fg": 2254 },
+ { "id": "gradcylinder", "fg": 2255 },
+ { "id": "ph_meter", "fg": 2256 },
+ { "id": "rack_test_tube", "fg": 2257 },
+ { "id": "spectrophotometer", "fg": 2258 },
+ { "id": "test_tube", "fg": 2259 },
+ { "id": "voltmeter", "fg": 2260 },
+ { "id": "10mm", "fg": 2261 },
+ { "id": "223", "fg": 2262 },
+ { "id": "22_cb", "fg": 2263 },
+ { "id": "22_fmj", "fg": 2264 },
+ { "id": "22_lr", "fg": 2265 },
+ { "id": "22_ratshot", "fg": 2266 },
+ { "id": "3006_incendiary", "fg": 2267 },
+ { "id": "36navy", "fg": 2268 },
+ { "id": "38_special", "fg": 2269 },
+ { "id": "38_super", "fg": 2270 },
+ { "id": "40fmj", "fg": 2271 },
+ { "id": "40mm_flechet", "fg": 2272 },
+ { "id": "40mm_shot", "fg": 2273 },
+ { "id": "44army", "fg": 2274 },
+ { "id": "44magnum", "fg": 2275 },
+ { "id": "45_acp", "fg": 2276 },
+ { "id": "45_jhp", "fg": 2277 },
+ { "id": "500_Magnum", "fg": 2278 },
+ { "id": "50match", "fg": 2279 },
+ { "id": "545-ap", "fg": 2280 },
+ { "id": "762_51", "fg": 2281 },
+ { "id": "762_51_incendiary", "fg": 2282 },
+ { "id": "762_m43", "fg": 2283 },
+ { "id": "9mmP", "fg": 2284 },
+ { "id": "9mmfmj", "fg": 2285 },
+ { "id": "abstractmap", "fg": 2286 },
+ { "id": "acidchitin_piece", "fg": 2287 },
+ { "id": "acidchitin_plate", "fg": 2288 },
+ { "id": "acoustic_guitar", "fg": 2289 },
+ { "id": "aluminum_foil", "fg": 2290 },
+ { "id": "ammonia", "fg": 2291 },
+ { "id": "arming_sword", "fg": 2292 },
+ { "id": "armor_lorica", "fg": 2293 },
+ { "id": "arrowrest", "fg": 2294 },
+ { "id": "atgm_heat", "fg": 2295 },
+ { "id": "atomic_coffee", "fg": 2296 },
+ { "id": "b_paint", "fg": 2297 },
+ { "id": "bag_canvas_small", "fg": 2298 },
+ { "id": "bagpipes", "fg": 2299 },
+ { "id": "ballistic_vest_esapi", "fg": 2300 },
+ { "id": "banjo", "fg": 2301 },
+ { "id": "barley", "fg": 2302 },
+ { "id": "basketball", "fg": 2303 },
+ { "id": "battleaxe", "fg": 2304 },
+ { "id": "beer", "fg": 2305 },
+ { "id": "belgian_ale", "fg": 2306 },
+ { "id": "bfipowder", "fg": 2308 },
+ { "id": "bindle", "fg": 2309 },
+ { "id": "bio_int_enhancer", "fg": 2310 },
+ { "id": "birchbark", "fg": 2311 },
+ { "id": "bismuth", "fg": 2312 },
+ { "id": "blanket", "fg": 2313 },
+ { "id": "bleach", "fg": 2314 },
+ { "id": "blueberries_cooked", "fg": 2315 },
+ { "id": "boiled_egg", "fg": 2316 },
+ { "id": "bone_flute", "fg": 2317 },
+ { "id": "bone_human", "fg": 2318 },
+ { "id": "boots_acidchitin", "fg": 2319 },
+ { "id": "boots_bunker", "fg": 2320 },
+ { "id": "boots_hsurvivor", "fg": 2321 },
+ { "id": "boots_lsurvivor", "fg": 2322 },
+ { "id": "boots_survivor", "fg": 2323 },
+ { "id": "boots_western", "fg": 2324 },
+ { "id": "bottle_folding", "fg": 2325 },
+ { "id": "bottle_metal", "fg": 2326 },
+ { "id": "bottle_plastic_smal", "fg": 2327 },
+ { "id": "bowling_pin", "fg": 2328 },
+ { "id": "briefcase", "fg": 2329 },
+ { "id": "broken_manhack", "fg": 2330 },
+ { "id": "broken_skitterbot", "fg": 2331 },
+ { "id": "broth_bone", "fg": 2332 },
+ { "id": "bum_wine", "fg": 2333 },
+ { "id": "camisole", "fg": 2334 },
+ { "id": "can_food_unsealed", "fg": 2335 },
+ { "id": "case_violin", "fg": 2336 },
+ { "id": "cattail_rhizome", "fg": 2337 },
+ { "id": "cattail_stalk", "fg": 2338 },
+ { "id": "cell_phone_flashlight", "fg": 2339 },
+ { "id": "ceramic_armor", "fg": 2340 },
+ { "id": "ceramic_shard", "fg": 2341 },
+ { "id": "chainmail_arms", "fg": 2342 },
+ { "id": "chainmail_hauberk", "fg": 2343 },
+ { "id": "chainmail_hood", "fg": 2344 },
+ { "id": "chainmail_legs", "fg": 2345 },
+ { "id": "chainmail_vest", "fg": 2346 },
+ { "id": "chem_aluminium_powder", "fg": 2347 },
+ { "id": "chem_aluminium_sulphate", "fg": 2348 },
+ { "id": "chem_hexamine", "fg": 2349 },
+ { "id": "chestwrap", "fg": 2350 },
+ { "id": "chestwrap_fur", "fg": 2351 },
+ { "id": "chestwrap_leather", "fg": 2352 },
+ { "id": "chestwrap_wool", "fg": 2353 },
+ { "id": "chili", "fg": 2354 },
+ { "id": "chili_pepper", "fg": 2355 },
+ { "id": "chipper", "fg": 2356 },
+ { "id": "choc_drink", "fg": 2357 },
+ { "id": "chocpretzels", "fg": 2358 },
+ { "id": "cig_butt", "fg": 2359 },
+ { "id": "cig_lit", "fg": 2360 },
+ { "id": "clarinet", "fg": 2361 },
+ { "id": "coffee", "fg": 2362 },
+ { "id": "colamdew", "fg": 2363 },
+ { "id": "con_milk", "fg": 2364 },
+ { "id": "con_mix", "fg": 2365 },
+ { "id": "concrete", "fg": 2366 },
+ { "id": "contacts", "fg": 2367 },
+ { "id": "cooking_oil", "fg": 2368 },
+ { "id": "copper", "fg": 2369 },
+ { "id": "copper_bracelet", "fg": 2370 },
+ { "id": "copper_knife", "fg": 2371 },
+ { "id": "corndogs_cooked", "fg": 2372 },
+ { "id": "corndogs_frozen", "fg": 2373 },
+ { "id": "cow_bell", "fg": 2374 },
+ { "id": "crispycran", "fg": 2375 },
+ { "id": "crown_golden", "fg": 2376 },
+ { "id": "cs_lajatang_off", "fg": 2377 },
+ { "id": "cured_hide", "fg": 2378 },
+ { "id": "cured_pelt", "fg": 2379 },
+ { "id": "curry_meat", "fg": 2380 },
+ { "id": "curry_powder", "fg": 2381 },
+ { "id": "curry_veggy", "fg": 2382 },
+ { "id": "dahlia_baked", "fg": 2384 },
+ { "id": "dao", "fg": 2385 },
+ { "id": "detergent", "fg": 2386 },
+ { "id": "diamond", "fg": 2387 },
+ { "id": "diamond_dental_grill", "fg": 2388 },
+ { "id": "diazepam", "fg": 2389 },
+ { "id": "distaff_spindle", "fg": 2391 },
+ { "id": "down_blanket", "fg": 2392 },
+ { "id": "down_pillow", "fg": 2393 },
+ { "id": "dry_fish", "fg": 2394 },
+ { "id": "dry_meat_tainted", "fg": 2395 },
+ { "id": "dry_veggy_tainted", "fg": 2396 },
+ { "id": "egg_bird", "fg": 2397 },
+ { "id": "egg_reptile", "fg": 2398 },
+ { "id": "eink_tablet_pc", "fg": 2399 },
+ { "id": "elec_hairtrimmer", "fg": 2400 },
+ { "id": "electric_blanket", "fg": 2401 },
+ { "id": "emer_blanket", "fg": 2402 },
+ { "id": "emer_blanket_on", "fg": 2403 },
+ { "id": "esbit_stove", "fg": 2404 },
+ { "id": "estoc", "fg": 2405 },
+ { "id": "fat", "fg": 2406 },
+ { "id": "fat_tainted", "fg": 2407 },
+ { "id": "felt_patch", "fg": 2408 },
+ { "id": "file", "fg": 2409 },
+ { "id": "fire_lance", "fg": 2411 },
+ { "id": "firehelmet", "fg": 2412 },
+ { "id": "fish", "fg": 2413 },
+ { "id": "fish_smoked", "fg": 2414 },
+ { "id": "fishing_hook_basic", "fg": 2415 },
+ { "id": "fishing_rod_basic", "fg": 2416 },
+ { "id": "fishing_rod_professional", "fg": 2417 },
+ { "id": "flask_yeast", "fg": 2418 },
+ { "id": "flatbread", "fg": 2419 },
+ { "id": "flint_steel", "fg": 2420 },
+ { "id": "flute", "fg": 2421 },
+ { "id": "folding_poncho", "fg": 2422 },
+ { "id": "folding_poncho_on", "fg": 2423 },
+ { "id": "food_processor", "fg": 2424 },
+ { "id": "footrags", "fg": 2425 },
+ { "id": "footrags_fur", "fg": 2426 },
+ { "id": "footrags_leather", "fg": 2427 },
+ { "id": "footrags_wool", "fg": 2428 },
+ { "id": "fruit_cooked", "fg": 2429 },
+ { "id": "fungicide", "fg": 2430 },
+ { "id": "fur_blanket", "fg": 2431 },
+ { "id": "g_carpet", "fg": 2432 },
+ { "id": "g_paint", "fg": 2433 },
+ { "id": "g_shovel", "fg": 2434 },
+ { "id": "gal_drum", "fg": 2435 },
+ { "id": "gambeson", "fg": 2436 },
+ { "id": "garlic", "fg": 2437 },
+ { "id": "gasdiscount_gold", "fg": 2438 },
+ { "id": "gasdiscount_platinum", "fg": 2439 },
+ { "id": "gasdiscount_silver", "fg": 2440 },
+ { "id": "glass_shard", "fg": 2441 },
+ { "id": "glass_shiv", "fg": 2442 },
+ { "id": "glass_tinted", "fg": 2443 },
+ { "id": "gloves_wraps_fur", "fg": 2444 },
+ { "id": "gold_bracelet", "fg": 2445 },
+ { "id": "gold_dental_grill", "fg": 2446 },
+ { "id": "golf_ball", "fg": 2447 },
+ { "id": "gown", "fg": 2448 },
+ { "id": "grapnel", "fg": 2449 },
+ { "id": "h&k416a5", "fg": 2450 },
+ { "id": "hacksaw", "fg": 2451 },
+ { "id": "halligan", "fg": 2452 },
+ { "id": "halter_top", "fg": 2453 },
+ { "id": "hand_axe", "fg": 2454 },
+ { "id": "hand_paddles", "fg": 2455 },
+ { "id": "hand_rims", "fg": 2456 },
+ { "id": "handflare", "fg": 2457 },
+ { "id": "handflare_dead", "fg": 2458 },
+ { "id": "handflare_lit", "fg": 2459 },
+ { "id": "handrolled_cig", "fg": 2460 },
+ { "id": "hat_hard", "fg": 2461 },
+ { "id": "hat_hard_hooded", "fg": 2462 },
+ { "id": "hat_knit", "fg": 2463 },
+ { "id": "hat_newsboy", "fg": 2464 },
+ { "id": "hbolt_metal", "fg": 2465 },
+ { "id": "hbolt_wood", "fg": 2466 },
+ { "id": "hdframe", "fg": 2467 },
+ { "id": "heatpack", "fg": 2468 },
+ { "id": "heatpack_used", "fg": 2469 },
+ { "id": "helmet_army", "fg": 2470 },
+ { "id": "hickory_nut", "fg": 2471 },
+ { "id": "hickory_nut_roasted", "fg": 2472 },
+ { "id": "hickory_nut_unshell", "fg": 2473 },
+ { "id": "hickory_root", "fg": 2474 },
+ { "id": "hobo_stove", "fg": 2475 },
+ { "id": "holy_symbol", "fg": 2476 },
+ { "id": "honey_bottled", "fg": 2477 },
+ { "id": "hotdogs_cooked", "fg": 2478 },
+ { "id": "i_combustion", "fg": 2479 },
+ { "id": "iceaxe", "fg": 2480 },
+ { "id": "inflatable_boat", "fg": 2481 },
+ { "id": "inflatable_section", "fg": 2482 },
+ { "id": "jacket_army", "fg": 2483 },
+ { "id": "jacket_jean", "fg": 2484 },
+ { "id": "jacket_leather", "fg": 2485 },
+ { "id": "jacket_light", "fg": 2486 },
+ { "id": "jam_strawberries", "fg": 2487 },
+ { "id": "ji", "fg": 2488 },
+ { "id": "jian", "fg": 2489 },
+ { "id": "joint_roach", "fg": 2491 },
+ { "id": "khopesh", "fg": 2492 },
+ { "id": "knife", "fg": 2493 },
+ { "id": "kukri", "fg": 2494 },
+ { "id": "l-stick", "fg": 2495 },
+ { "id": "l-stick_on", "fg": 2496 },
+ { "id": "lead_ball", "fg": 2497 },
+ { "id": "leg_warmers_f", "fg": 2498 },
+ { "id": "link_sheet", "fg": 2499 },
+ { "id": "locket", "fg": 2500 },
+ { "id": "longsword", "fg": 2501 },
+ { "id": "longsword_fake", "fg": 2502 },
+ { "id": "mace", "fg": 2503 },
+ { "id": "maid_dress", "fg": 2504 },
+ { "id": "maid_hat", "fg": 2505 },
+ { "id": "makeshift_axe", "fg": 2506 },
+ { "id": "makeshift_crowbar", "fg": 2507 },
+ { "id": "makeshift_funnel", "fg": 2508 },
+ { "id": "makeshift_hammer", "fg": 2509 },
+ { "id": "marble", "fg": 2510 },
+ { "id": "marshmallow", "fg": 2511 },
+ { "id": "material_aluminium_ingot", "fg": 2512 },
+ { "id": "material_sand", "fg": 2513 },
+ { "id": "material_shrd_limestone", "fg": 2514 },
+ { "id": "meat_salted", "fg": 2515 },
+ { "id": "mess_tin", "fg": 2516 },
+ { "id": "metal_funnel", "fg": 2517 },
+ { "id": "metal_tank_little", "fg": 2518 },
+ { "id": "metal_tank_small", "fg": 2519 },
+ { "id": "meth", "fg": 2520 },
+ { "id": "mjolnir", "fg": 2521 },
+ { "id": "morphine", "fg": 2522 },
+ { "id": "mortar_pestle", "fg": 2523 },
+ { "id": "mouthpiece", "fg": 2524 },
+ { "id": "mustard", "fg": 2525 },
+ { "id": "mutagen_bird", "fg": 2526 },
+ { "id": "mutagen_cattle", "fg": 2527 },
+ { "id": "mutagen_elfa", "fg": 2528 },
+ { "id": "mutagen_fish", "fg": 2529 },
+ { "id": "mutagen_plant", "fg": 2530 },
+ { "id": "mutagen_slime", "fg": 2531 },
+ { "id": "nachosc", "fg": 2532 },
+ { "id": "naginata", "fg": 2533 },
+ { "id": "nanoskirt", "fg": 2534 },
+ { "id": "omnicamera", "fg": 2535 },
+ { "id": "onion_rings", "fg": 2536 },
+ { "id": "oxy_torch", "fg": 2537 },
+ { "id": "p_carpet", "fg": 2538 },
+ { "id": "p_paint", "fg": 2539 },
+ { "id": "panties", "fg": 2540 },
+ { "id": "pants", "fg": 2541 },
+ { "id": "pants_army", "fg": 2542 },
+ { "id": "pants_cargo", "fg": 2543 },
+ { "id": "pants_checkered", "fg": 2544 },
+ { "id": "pants_leather", "fg": 2545 },
+ { "id": "pants_ski", "fg": 2546 },
+ { "id": "pillow", "fg": 2547 },
+ { "id": "pitchfork", "fg": 2548 },
+ { "id": "plastic_shopping_bag", "fg": 2549 },
+ { "id": "pliers", "fg": 2550 },
+ { "id": "plut_cell", "fg": 2551 },
+ { "id": "pool_ball", "fg": 2552 },
+ { "id": "pot_canning", "fg": 2553 },
+ { "id": "pot_copper", "fg": 2554 },
+ { "id": "pot_makeshift", "fg": 2555 },
+ { "id": "pot_makeshift_copper", "fg": 2556 },
+ { "id": "powder_eggs", "fg": 2557 },
+ { "id": "powered_earmuffs", "fg": 2558 },
+ { "id": "protein_powder", "fg": 2559 },
+ { "id": "qiang", "fg": 2560 },
+ { "id": "r_carpet", "fg": 2561 },
+ { "id": "r_paint", "fg": 2562 },
+ { "id": "radio_car", "fg": 2563 },
+ { "id": "radio_car_on", "fg": 2564 },
+ { "id": "radiocontrol", "fg": 2565 },
+ { "id": "raw_fur", "fg": 2566 },
+ { "id": "raw_hleather", "fg": 2567 },
+ { "id": "razor_blade", "fg": 2568 },
+ { "id": "ref_lighter", "fg": 2569 },
+ { "id": "reinforced_glass_sheet", "fg": 2570 },
+ { "id": "reloaded_454_Casull", "fg": 2571 },
+ { "id": "reloaded_shot_he", "fg": 2572 },
+ { "id": "reloaded_shot_slug", "fg": 2573 },
+ { "id": "reloaded_signal_fla", "fg": 2574 },
+ { "id": "reloaded_ss", "fg": 2575 },
+ { "id": "reloaded_sw", "fg": 2576 },
+ { "id": "reloaded_xdart", "fg": 2577 },
+ { "id": "ring_engagement", "fg": 2578 },
+ { "id": "robe", "fg": 2579 },
+ { "id": "rollerskates", "fg": 2580 },
+ { "id": "sandwich_cheese", "fg": 2581 },
+ { "id": "sandwich_cheese_gri", "fg": 2582 },
+ { "id": "sandwich_cucumber", "fg": 2583 },
+ { "id": "sandwich_honey", "fg": 2584 },
+ { "id": "sandwich_jam", "fg": 2585 },
+ { "id": "sandwich_pb", "fg": 2586 },
+ { "id": "sandwich_pbj", "fg": 2587 },
+ { "id": "sandwich_pbm", "fg": 2588 },
+ { "id": "sandwich_sauce", "fg": 2589 },
+ { "id": "sausage_wasteland", "fg": 2590 },
+ { "id": "saxophone", "fg": 2591 },
+ { "id": "scabbard", "fg": 2592 },
+ { "id": "scrap_bronze", "fg": 2593 },
+ { "id": "scrap_copper", "fg": 2594 },
+ { "id": "sharp_toothbrush", "fg": 2595 },
+ { "id": "shavingkit", "fg": 2596 },
+ { "id": "sheath", "fg": 2597 },
+ { "id": "sheet_metal_small", "fg": 2598 },
+ { "id": "shillelagh", "fg": 2599 },
+ { "id": "shorts_denim", "fg": 2600 },
+ { "id": "shot_00", "fg": 2601 },
+ { "id": "shot_bird", "fg": 2602 },
+ { "id": "shot_flechette", "fg": 2603 },
+ { "id": "silver_bracelet", "fg": 2604 },
+ { "id": "silver_small", "fg": 2605 },
+ { "id": "skirt_leather", "fg": 2606 },
+ { "id": "smart_phone", "fg": 2607 },
+ { "id": "smart_phone_flashlight", "fg": 2608 },
+ { "id": "soap", "fg": 2609 },
+ { "id": "soup_chicken", "fg": 2610 },
+ { "id": "soup_dumplings", "fg": 2611 },
+ { "id": "soup_fish", "fg": 2612 },
+ { "id": "soup_mushroom", "fg": 2613 },
+ { "id": "soup_tomato", "fg": 2614 },
+ { "id": "soup_veggy", "fg": 2615 },
+ { "id": "soup_woods", "fg": 2616 },
+ { "id": "spear_dory", "fg": 2617 },
+ { "id": "spear_forked", "fg": 2618 },
+ { "id": "spear_stone", "fg": 2619 },
+ { "id": "spider_egg", "fg": 2620 },
+ { "id": "sports_bra", "fg": 2621 },
+ { "id": "stepladder", "fg": 2622 },
+ { "id": "stomach", "fg": 2623 },
+ { "id": "straw_doll", "fg": 2624 },
+ { "id": "sugar_beet", "fg": 2625 },
+ { "id": "survivor_hairtrimmer", "fg": 2626 },
+ { "id": "survivor_scope", "fg": 2627 },
+ { "id": "survivor_vest", "fg": 2628 },
+ { "id": "sushi_fishroll", "fg": 2629 },
+ { "id": "swag_bag", "fg": 2630 },
+ { "id": "sword_xiphos", "fg": 2631 },
+ { "id": "tallow", "fg": 2632 },
+ { "id": "tallow_tainted", "fg": 2633 },
+ { "id": "tanbark", "fg": 2634 },
+ { "id": "tanned_hide", "fg": 2635 },
+ { "id": "tanned_pelt", "fg": 2636 },
+ { "id": "tanto", "fg": 2637 },
+ { "id": "tea", "fg": 2638 },
+ { "id": "telepad", "fg": 2639 },
+ { "id": "thermometer", "fg": 2640 },
+ { "id": "thermos", "fg": 2641 },
+ { "id": "throwing_stick", "fg": 2642 },
+ { "id": "tieclip", "fg": 2643 },
+ { "id": "tin", "fg": 2644 },
+ { "id": "tinder", "fg": 2645 },
+ { "id": "tinderbox", "fg": 2646 },
+ { "id": "tinfoil_hat", "fg": 2647 },
+ { "id": "toothbrush_plain", "fg": 2648 },
+ { "id": "trimmer_off", "fg": 2649 },
+ { "id": "trimmer_on", "fg": 2650 },
+ { "id": "trumpet", "fg": 2651 },
+ { "id": "tuba", "fg": 2652 },
+ { "id": "tunic", "fg": 2653 },
+ { "id": "tunic_rag", "fg": 2654 },
+ { "id": "ukulele", "fg": 2655 },
+ { "id": "undershirt", "fg": 2656 },
+ { "id": "unfinished_charcoal", "fg": 2657 },
+ { "id": "v_combustion", "fg": 2658 },
+ { "id": "v_scoop_item", "fg": 2659 },
+ { "id": "vehicle_dashboard", "fg": 2660 },
+ { "id": "vibrator", "fg": 2661 },
+ { "id": "violin", "fg": 2662 },
+ { "id": "violin_golden", "fg": 2663 },
+ { "id": "w_paint", "fg": 2664 },
+ { "id": "waffleiron", "fg": 2665 },
+ { "id": "wakizashi", "fg": 2666 },
+ { "id": "warhammer", "fg": 2667 },
+ { "id": "water_acid_weak", "fg": 2668 },
+ { "id": "waterproof_gunmod", "fg": 2669 },
+ { "id": "wearable_light", "fg": 2670 },
+ { "id": "wearable_light_on", "fg": 2671 },
+ { "id": "wheel_armor", "fg": 2672 },
+ { "id": "wheel_bicycle", "fg": 2673 },
+ { "id": "wheel_caster", "fg": 2674 },
+ { "id": "wheel_motorbike", "fg": 2675 },
+ { "id": "wheel_small", "fg": 2676 },
+ { "id": "wheel_wide", "fg": 2677 },
+ { "id": "whiskey", "fg": 2678 },
+ { "id": "whistle", "fg": 2679 },
+ { "id": "y_carpet", "fg": 2680 },
+ { "id": "y_paint", "fg": 2681 },
+ { "id": "yarn", "fg": 2682 },
+ { "id": "yeast", "fg": 2683 },
+ { "id": "yoghurt", "fg": 2684 },
+ { "id": "zubon_gi", "fg": 2685 },
+ { "id": "zweihander", "fg": 2686 },
+ { "id": "cloak", "fg": 2687 },
+ { "id": "cloak_fur", "fg": 2688 },
+ { "id": "cloak_leather", "fg": 2689 },
+ { "id": "cloak_wool", "fg": 2690 },
+ { "id": "coat_rain", "fg": 2691 },
+ { "id": "optical_cloak", "fg": 2692 },
+ { "id": "legrig", "fg": 2693 },
+ { "id": "ketchup", "fg": 2694 },
+ { "id": "mayonnaise", "fg": 2695 },
+ { "id": "book_nonf_zine_news_anlyst", "fg": 2696 },
+ { "id": "mag_animecon", "fg": 2697 },
+ { "id": "mag_dodge", "fg": 2698 },
+ { "id": "mag_fabrication", "fg": 2699 },
+ { "id": "mag_firstaid", "fg": 2700 },
+ { "id": "mag_guns", "fg": 2701 },
+ { "id": "mag_news", "fg": 2702 },
+ { "id": "mag_porn", "fg": 2703 },
+ { "id": "mag_throwing", "fg": 2704 },
+ { "id": "mag_unarmed", "fg": 2705 },
+ { "id": "multi_cooker", "fg": 2710 },
+ { "id": "multi_cooker_filled", "fg": 2711 },
+ { "id": "oxygen_tank", "fg": 2712 },
+ { "id": "pet_carrier", "fg": 2713 },
+ { "id": "primitive_shovel", "fg": 2714 },
+ { "id": "amethyst_gold_ring", "fg": 2715 },
+ { "id": "amethyst_platinum_ring", "fg": 2716 },
+ { "id": "amethyst_silver_ring", "fg": 2717 },
+ { "id": "aquamarine_gold_ring", "fg": 2718 },
+ { "id": "aquamarine_platinum_ring", "fg": 2719 },
+ { "id": "aquamarine_silver_ring", "fg": 2720 },
+ { "id": "citrine_gold_ring", "fg": 2721 },
+ { "id": "citrine_platinum_ring", "fg": 2722 },
+ { "id": "citrine_silver_ring", "fg": 2723 },
+ { "id": "diamond_platinum_ring", "fg": 2724 },
+ { "id": "diamond_ring", "fg": 2725 },
+ { "id": "diamond_silver_ring", "fg": 2726 },
+ { "id": "emerald_gold_ring", "fg": 2727 },
+ { "id": "emerald_platinum_ring", "fg": 2728 },
+ { "id": "emerald_silver_ring", "fg": 2729 },
+ { "id": "peridot_gold_ring", "fg": 2736 },
+ { "id": "peridot_platinum_ring", "fg": 2737 },
+ { "id": "peridot_silver_ring", "fg": 2738 },
+ { "id": "tourmaline_gold_ring", "fg": 2742 },
+ { "id": "tourmaline_platinum_ring", "fg": 2743 },
+ { "id": "tourmaline_silver_ring", "fg": 2744 },
+ { "id": "teddy_bear", "fg": 2745 },
+ { "id": "tire_iron", "fg": 2746 },
+ { "id": "winter_gloves_army", "fg": 2748 },
+ { "id": "footstep_above", "fg": 2780 },
+ { "id": "footstep_below", "fg": 2781 },
+ { "id": "graffiti", "fg": 2782 },
+ { "id": "zombie_revival_indicator", "fg": 2787 },
+ { "id": "overlay_mutation_bio_sneeze_beam", "fg": 2788 },
+ { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 2789 },
+ { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 2790 },
+ { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 2791 },
+ { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 2792 },
+ { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 2793 },
+ { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 2794 },
+ { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 2795 },
+ { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 2796 },
+ { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 2797 },
+ { "id": "overlay_female_mutation_MANA_LUM", "fg": 2798 },
+ { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 2799 },
+ { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 2800 },
+ { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 2801 },
+ { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 2802 },
+ { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 2806 },
+ { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 2807 },
+ { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 2808 },
+ { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 2809 },
+ { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 2810 },
+ { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 2811 },
+ { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 2812 },
+ { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 2813 },
+ { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 2814 },
+ { "id": "overlay_male_mutation_MANA_LUM", "fg": 2815 },
+ { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 2816 },
+ { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 2817 },
+ { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 2818 },
+ { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 2819 },
+ { "id": "overlay_mutation_DEMON_CLAWS", "fg": 2823 },
+ { "id": "overlay_mutation_DEMON_POSSES", "fg": 2824 },
+ { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 2825 },
+ { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 2826 },
+ { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 2827 },
+ { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 2828 },
+ { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 2829 },
+ { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 2830 },
+ { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 2831 },
+ { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 2832 },
+ { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 2833 },
+ { "id": "DEBUG_spellbook", "fg": 2834 },
+ { "id": "animist_shadows", "fg": 2835 },
+ { "id": "bio_fuel_cell_blood", "fg": 2836 },
+ { "id": "bio_sneeze_beam", "fg": 2837 },
+ { "id": "biomancer_spellbook", "fg": 2838 },
+ { "id": "disp_wand", "fg": 2839 },
+ { "id": "druid_spellbook", "fg": 2840 },
+ { "id": "eshaper_spellbook", "fg": 2841 },
+ { "id": "generic_spellbook", "fg": 2842 },
+ { "id": "light_manipulation_spellbook", "fg": 2843 },
+ { "id": "magus_spellbook", "fg": 2844 },
+ { "id": "magus_spellbook_move", "fg": 2845 },
+ { "id": "mring_copper", "fg": 2846 },
+ { "id": "mring_gold", "fg": 2847 },
+ { "id": "mring_platinum", "fg": 2848 },
+ { "id": "mring_silver", "fg": 2849 },
+ { "id": "novice_stormshaper_book", "fg": 2850 },
+ { "id": "priest_advanced", "fg": 2851 },
+ { "id": "priest_beginner", "fg": 2852 },
+ { "id": "pyro", "fg": 2853 },
+ { "id": "recovery_spellbook", "fg": 2854 },
+ { "id": "small_mana_crystal", "fg": 2855 },
+ { "id": "spell_scroll", "fg": 2856 },
+ { "id": "spell_wand", "fg": 2857 },
+ { "id": "stat_up_spellbook", "fg": 2858 },
+ { "id": "summon_scroll_smudged", "fg": 2859 },
+ { "id": "summon_undead_spellbook", "fg": 2860 },
+ { "id": "techno_em", "fg": 2861 },
+ { "id": "techno_fundamentals", "fg": 2862 },
+ { "id": "techno_idiots", "fg": 2863 },
+ { "id": "tome_of_storms", "fg": 2864 },
+ { "id": "translocate_spellbook", "fg": 2865 },
+ { "id": "winter_grasp", "fg": 2866 },
+ { "id": "wizard_advanced", "fg": 2867 },
+ { "id": "wizard_beginner", "fg": 2868 },
+ { "id": "wizard_utility", "fg": 2869 },
+ { "id": "mon_goblin_chieftain", "fg": 2870 },
+ { "id": "mon_goblin_slinger", "fg": 2871 },
+ { "id": "mon_goblin_warrior", "fg": 2872 },
+ { "id": "mon_cookie", "fg": 2876 },
+ { "id": "mon_cow_calf_choc", "fg": 2877 },
+ { "id": "mon_cow_choc", "fg": 2878 },
+ { "id": "lemming_shadow", "fg": 3114 },
+ { "id": "mon_boar_wild", "fg": 3115 },
+ { "id": "mon_boar_wild_piglet", "fg": 3116 },
+ { "id": "mon_copbot", "fg": 3117 },
+ { "id": "mon_cow", "fg": 3118 },
+ { "id": "mon_cow_calf", "fg": 3119 },
+ { "id": "mon_fish_eel", "fg": 3120 },
+ { "id": "mon_frog", "fg": 3121 },
+ { "id": "mon_frog_small", "fg": 3122 },
+ { "id": "mon_gracke", "fg": 3123 },
+ { "id": "mon_grocerybot", "fg": 3124 },
+ { "id": "mon_grocerybot_busted", "fg": 3125 },
+ { "id": "mon_hallu_mannequin", "fg": 3126 },
+ { "id": "mon_lab_rat", "fg": 3127 },
+ { "id": "mon_pig", "fg": 3128 },
+ { "id": "mon_pig_piglet", "fg": 3129 },
+ { "id": "mon_pigeon", "fg": 3130 },
+ { "id": "mon_sheep", "fg": 3132 },
+ { "id": "mon_skeleton_brute", "fg": 3133 },
+ { "id": "mon_zombie_gasbag_crawler", "fg": 3142 },
+ { "id": "mon_zombie_gasbag_immobile", "fg": 3143 },
+ { "id": "mon_zombie_hanging_innards", "fg": 3144 },
+ { "id": "mon_zombie_pig", "fg": 3146 },
+ { "id": "mon_zow", "fg": 3155 },
+ { "id": "shadow_32x32_small", "fg": 3157 },
+ { "id": "corpse_mon_beaver", "fg": 3158 },
+ { "id": "corpse_mon_beaver_mutant_avian", "fg": 3159 },
+ { "id": "corpse_mon_beaver_mutant_huge", "fg": 3160 },
+ { "id": "corpse_mon_zombeaver", "fg": 3161 },
+ { "id": "mon_beaver", "fg": 3162 },
+ { "id": "mon_beaver_mutant_avian", "fg": 3163 },
+ { "id": "mon_beaver_mutant_huge", "fg": 3164 },
+ { "id": "mon_zombeaver", "fg": 3165 },
+ { "id": "mon_dog_bull", "fg": 3174 },
+ { "id": "mon_dog_rottweiler", "fg": 3175 },
+ { "id": "corpse_mon_aphid", "fg": 3218 },
+ { "id": "mon_aphid", "fg": 3219 },
+ { "id": "corpse_mon_brute_pupa", "fg": 3220 },
+ { "id": "mon_brute_pupa", "fg": 3221 },
+ { "id": "corpse_mon_coyote_mutant_venom", "fg": 3222 },
+ { "id": "mon_coyote_mutant_venom", "fg": 3223 },
+ { "id": "bot_eyebot", "fg": 3224 },
+ { "id": "broken_eyebot", "fg": 3225 },
+ { "id": "mon_eyebot", "fg": 3226 },
+ { "id": "corpse_mon_fungaloid_shambler", "fg": 3229 },
+ { "id": "mon_fungaloid_shambler", "fg": 3230 },
+ { "id": "mon_goose_canadian", "fg": 3231 },
+ { "id": "mon_grouse", "fg": 3232 },
+ { "id": "mon_pheasant", "fg": 3233 },
+ { "id": "mon_tadpole_grabber", "fg": 3234 },
+ { "id": "mon_tazer_hack", "fg": 3235 },
+ { "id": "mon_zombie_necro_boomer", "fg": 3239 },
+ { "id": "mon_zombie_pig_gas", "fg": 3240 },
+ { "id": "corpse_mon_zombie_rust", "fg": 3241 },
+ { "id": "corpse_mon_zombie_shell", "fg": 3242 },
+ { "id": "corpse_mon_zombie_urchin", "fg": 3243 },
+ { "id": "mon_zombie_rust", "fg": 3244 },
+ { "id": "mon_zombie_shell", "fg": 3245 },
+ { "id": "mon_zombie_urchin", "fg": 3246 },
+ { "id": "3957_t_metal_0", "fg": 3633 },
+ { "id": "t_concrete", "fg": 3656 },
+ { "id": "t_diesel_tank", "fg": 3657 },
+ { "id": "t_diesel_tank_smashed", "fg": 3658 },
+ { "id": "t_gas_tank_smashed", "fg": 3664 },
+ { "id": "t_shingle_flat_roof", "fg": 3685 },
+ { "id": "t_strconc_floor", "fg": 3686 },
+ { "id": "t_thconc_floor_flesh", "fg": 3692 },
+ { "id": "t_resin_hole", "fg": 3703 },
+ { "id": "t_paper_roof", "fg": 4105 },
+ { "id": "t_screen_door_c", "fg": 4291 },
+ { "id": "t_screen_door_o", "fg": 4292 },
+ { "id": "vp_animal_compartment", "fg": 4997 },
+ { "id": "vp_autoclave", "fg": 5276 },
+ { "id": "vp_dishwasher", "fg": 5281 },
+ { "id": "vp_recharge_station", "fg": 5297 }
]
},
{
"file": "overmap.png",
- "//": "range 5472 to 5775",
+ "//": "range 5520 to 5839",
"tiles": [
{
"id": [ "abandonedwarehouse", "abandonedwarehouse_1", "abandonedwarehouse_2", "abandonedwarehouse_3", "anandonedwarehouse_4" ],
- "fg": 5473
+ "fg": 5521
},
- { "id": [ "abstorefront", "abstorefront_1", "abstorefront_2" ], "fg": 5474 },
- { "id": [ "cabin", "cabin_1", "cabin_2", "cabin_3", "cabin_4", "cabin_5", "cabin_6", "cabin_7" ], "fg": 5475 },
- { "id": [ "campsite", "campsite_a" ], "fg": 5476 },
+ { "id": [ "abstorefront", "abstorefront_1", "abstorefront_2" ], "fg": 5522 },
+ { "id": [ "cabin", "cabin_1", "cabin_2", "cabin_3", "cabin_4", "cabin_5", "cabin_6", "cabin_7" ], "fg": 5523 },
+ { "id": [ "campsite", "campsite_a" ], "fg": 5524 },
{
"id": [ "dumpsite", "dump", "landfill", "junkyard 1a", "smallscrapyard", "cs_city_dump_small" ],
- "fg": 5480
- },
- { "id": [ "fire_station", "fire_station_1" ], "fg": 5482 },
- { "id": [ "forest", "special_forest" ], "fg": 5483 },
- { "id": [ "forest_thick", "special_forest_thick" ], "fg": 5484 },
- { "id": [ "s_hardware", "home_improvement" ], "fg": 5496 },
- { "id": [ "s_restaurant_fast", "s_restaurant_fast_1", "s_restaurant_foodplace" ], "fg": 5497 },
- { "id": "bridgehead_ground", "fg": [ 5505, 5504, 5506, 5507 ], "rotates": true },
- { "id": "bridge", "fg": [ 5502, 5503, 5502, 5503 ], "rotates": true },
- { "id": "campground_1b", "fg": [ 5513, 5512, 5514, 5515 ], "rotates": true },
- { "id": "campground_1a", "fg": [ 5509, 5508, 5510, 5511 ], "rotates": true },
- { "id": "campground_2b", "fg": [ 5521, 5520, 5522, 5523 ], "rotates": true },
- { "id": "campground_2a", "fg": [ 5517, 5516, 5518, 5519 ], "rotates": true },
+ "fg": 5528
+ },
+ { "id": [ "fire_station", "fire_station_1" ], "fg": 5530 },
+ { "id": [ "forest", "special_forest" ], "fg": 5531 },
+ { "id": [ "forest_thick", "special_forest_thick" ], "fg": 5532 },
+ { "id": [ "s_hardware", "home_improvement" ], "fg": 5544 },
+ { "id": [ "s_restaurant_fast", "s_restaurant_fast_1", "s_restaurant_foodplace" ], "fg": 5545 },
+ { "id": "bridgehead_ground", "fg": [ 5553, 5552, 5554, 5555 ], "rotates": true },
+ { "id": "bridge", "fg": [ 5550, 5551, 5550, 5551 ], "rotates": true },
+ { "id": "campground_1b", "fg": [ 5561, 5560, 5562, 5563 ], "rotates": true },
+ { "id": "campground_1a", "fg": [ 5557, 5556, 5558, 5559 ], "rotates": true },
+ { "id": "campground_2b", "fg": [ 5569, 5568, 5570, 5571 ], "rotates": true },
+ { "id": "campground_2a", "fg": [ 5565, 5564, 5566, 5567 ], "rotates": true },
{
"id": "forest_trail",
- "fg": 5539,
+ "fg": 5587,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5524 },
- { "id": "corner", "fg": [ 5526, 5528, 5527, 5525 ] },
- { "id": "t_connection", "fg": [ 5536, 5538, 5537, 5535 ] },
- { "id": "edge", "fg": [ 5530, 5529 ] },
- { "id": "end_piece", "fg": [ 5532, 5534, 5533, 5531 ] },
- { "id": "unconnected", "fg": [ 5539, 5539 ] }
+ { "id": "center", "fg": 5572 },
+ { "id": "corner", "fg": [ 5574, 5576, 5575, 5573 ] },
+ { "id": "t_connection", "fg": [ 5584, 5586, 5585, 5583 ] },
+ { "id": "edge", "fg": [ 5578, 5577 ] },
+ { "id": "end_piece", "fg": [ 5580, 5582, 5581, 5579 ] },
+ { "id": "unconnected", "fg": [ 5587, 5587 ] }
]
},
{
@@ -9838,7 +9886,7 @@
"house_duplex8",
"house_duplex9"
],
- "fg": [ 5542, 5541, 5547, 5548 ],
+ "fg": [ 5590, 5589, 5595, 5596 ],
"rotates": true
},
{
@@ -9855,7 +9903,7 @@
"house_duplex8_roof",
"house_duplex9_roof"
],
- "fg": [ 5544, 5543, 5545, 5546 ],
+ "fg": [ 5592, 5591, 5593, 5594 ],
"rotates": true
},
{
@@ -9869,7 +9917,7 @@
"house_garage7",
"house_garage8"
],
- "fg": [ 5550, 5549, 5551, 5552 ],
+ "fg": [ 5598, 5597, 5599, 5600 ],
"rotates": true
},
{
@@ -9883,12 +9931,12 @@
"house_garage7_roof",
"house_garage8_roof"
],
- "fg": [ 5554, 5553, 5555, 5556 ],
+ "fg": [ 5602, 5601, 5603, 5604 ],
"rotates": true
},
{
"id": [ "generic_city_house", "generic_city_house_no_sidewalk" ],
- "fg": [ 5558, 5557, 5559, 5560 ],
+ "fg": [ 5606, 5605, 5607, 5608 ],
"rotates": true
},
{
@@ -9958,193 +10006,279 @@
"urban_18_9",
"urban_18_10"
],
- "fg": [ 5562, 5561, 5563, 5564 ],
+ "fg": [ 5610, 5609, 5611, 5612 ],
"rotates": true
},
- { "id": "icecream_shop", "fg": [ 5566, 5565, 5567, 5568 ], "rotates": true },
- { "id": "prison_1_1", "fg": [ 5570, 5569, 5571, 5572 ], "rotates": true },
- { "id": "prison_1_2", "fg": [ 5574, 5573, 5575, 5576 ], "rotates": true },
- { "id": "prison_1_3", "fg": [ 5578, 5577, 5579, 5580 ], "rotates": true },
- { "id": "prison_1_4", "fg": [ 5582, 5581, 5583, 5584 ], "rotates": true },
- { "id": "prison_1_5", "fg": [ 5586, 5585, 5587, 5588 ], "rotates": true },
- { "id": "prison_1_6", "fg": [ 5590, 5589, 5591, 5592 ], "rotates": true },
- { "id": "prison_1_7", "fg": [ 5594, 5593, 5595, 5596 ], "rotates": true },
- { "id": "prison_1_8", "fg": [ 5598, 5597, 5599, 5600 ], "rotates": true },
- { "id": "prison_1_9", "fg": [ 5602, 5601, 5603, 5604 ], "rotates": true },
- { "id": "river", "fg": [ 5612, 5610, 5615, 5617 ], "bg": 5651, "rotates": true },
+ { "id": "icecream_shop", "fg": [ 5614, 5613, 5615, 5616 ], "rotates": true },
+ { "id": "prison_1_1", "fg": [ 5618, 5617, 5619, 5620 ], "rotates": true },
+ { "id": "prison_1_2", "fg": [ 5622, 5621, 5623, 5624 ], "rotates": true },
+ { "id": "prison_1_3", "fg": [ 5626, 5625, 5627, 5628 ], "rotates": true },
+ { "id": "prison_1_4", "fg": [ 5630, 5629, 5631, 5632 ], "rotates": true },
+ { "id": "prison_1_5", "fg": [ 5634, 5633, 5635, 5636 ], "rotates": true },
+ { "id": "prison_1_6", "fg": [ 5638, 5637, 5639, 5640 ], "rotates": true },
+ { "id": "prison_1_7", "fg": [ 5642, 5641, 5643, 5644 ], "rotates": true },
+ { "id": "prison_1_8", "fg": [ 5646, 5645, 5647, 5648 ], "rotates": true },
+ { "id": "prison_1_9", "fg": [ 5650, 5649, 5651, 5652 ], "rotates": true },
+ { "id": "river", "fg": [ 5660, 5658, 5663, 5665 ], "bg": 5699, "rotates": true },
{
"id": "road",
- "fg": 5634,
+ "fg": 5682,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5618 },
- { "id": "corner", "fg": [ 5620, 5622, 5621, 5619 ] },
- { "id": "t_connection", "fg": [ 5631, 5633, 5632, 5630 ] },
- { "id": "edge", "fg": [ 5624, 5623 ] },
- { "id": "end_piece", "fg": [ 5626, 5628, 5627, 5625 ] },
- { "id": "unconnected", "fg": [ 5634, 5634 ] }
+ { "id": "center", "fg": 5666 },
+ { "id": "corner", "fg": [ 5668, 5670, 5669, 5667 ] },
+ { "id": "t_connection", "fg": [ 5679, 5681, 5680, 5678 ] },
+ { "id": "edge", "fg": [ 5672, 5671 ] },
+ { "id": "end_piece", "fg": [ 5674, 5676, 5675, 5673 ] },
+ { "id": "unconnected", "fg": [ 5682, 5682 ] }
]
},
- { "id": "cemetery_small", "fg": [ 5636, 5635, 5637, 5638 ], "rotates": true },
- { "id": [ "dirt_road_forest", "dirt_road" ], "fg": [ 5644, 5643, 5644, 5643 ], "rotates": true },
- { "id": [ "dirt_road_turn1_forest", "dirt_road_turn1" ], "fg": [ 5646, 5645, 5647, 5648 ], "rotates": true },
- { "id": [ "dirt_road_turn_forest", "dirt_road_turn" ], "fg": [ 5648, 5647, 5645, 5646 ], "rotates": true },
- { "id": [ "dirt_road_3way_forest", "dirt_road_3way" ], "fg": [ 5640, 5639, 5641, 5642 ], "rotates": true },
+ { "id": "cemetery_small", "fg": [ 5684, 5683, 5685, 5686 ], "rotates": true },
+ { "id": [ "dirt_road_forest", "dirt_road" ], "fg": [ 5692, 5691, 5692, 5691 ], "rotates": true },
+ { "id": [ "dirt_road_turn1_forest", "dirt_road_turn1" ], "fg": [ 5694, 5693, 5695, 5696 ], "rotates": true },
+ { "id": [ "dirt_road_turn_forest", "dirt_road_turn" ], "fg": [ 5696, 5695, 5693, 5694 ], "rotates": true },
+ { "id": [ "dirt_road_3way_forest", "dirt_road_3way" ], "fg": [ 5688, 5687, 5689, 5690 ], "rotates": true },
{
"id": [ "shelter", "shelter_vandal", "shelter_1", "shelter_1_vandal", "shelter_2", "shelter_2_vandal" ],
- "fg": 5649
+ "fg": 5697
},
- { "id": [ "shelter_roof", "shelter_roof_1" ], "fg": 5650 },
+ { "id": [ "shelter_roof", "shelter_roof_1" ], "fg": 5698 },
{
"id": "field",
"fg": [
- { "weight": 25, "sprite": 5651 },
- { "weight": 40, "sprite": 5652 },
- { "weight": 10, "sprite": 5653 },
- { "weight": 25, "sprite": 5654 }
- ]
- },
- { "id": [ "motel_entrance" ], "fg": [ 5735, 5734, 5740, 5741 ], "rotates": true },
- { "id": [ "motel_1" ], "fg": [ 5711, 5710, 5716, 5717 ], "rotates": true },
- { "id": [ "motel_2" ], "fg": [ 5719, 5718, 5724, 5725 ], "rotates": true },
- { "id": [ "motel_3" ], "fg": [ 5727, 5726, 5732, 5733 ], "rotates": true },
- { "id": [ "motel_entrance_roof" ], "fg": [ 5737, 5736, 5738, 5739 ], "rotates": true },
- { "id": [ "motel_1_roof" ], "fg": [ 5713, 5712, 5714, 5715 ], "rotates": true },
- { "id": [ "motel_2_roof" ], "fg": [ 5721, 5720, 5722, 5723 ], "rotates": true },
- { "id": [ "motel_3_roof" ], "fg": [ 5729, 5728, 5730, 5731 ], "rotates": true },
- { "id": [ "2fmotel_entrance" ], "fg": [ 5735, 5734, 5740, 5741 ], "rotates": true },
- { "id": [ "2fmotel_1" ], "fg": [ 5671, 5666, 5676, 5677 ], "rotates": true },
- { "id": [ "2fmotel_2" ], "fg": [ 5683, 5678, 5688, 5689 ], "rotates": true },
- { "id": [ "2fmotel_3" ], "fg": [ 5695, 5690, 5700, 5701 ], "rotates": true },
- { "id": [ "2fmotel_entrance_f2" ], "fg": [ 5703, 5702, 5704, 5705 ], "rotates": true },
- { "id": [ "2fmotel_1_f2" ], "fg": [ 5668, 5667, 5669, 5670 ], "rotates": true },
- { "id": [ "2fmotel_2_f2" ], "fg": [ 5680, 5679, 5681, 5682 ], "rotates": true },
- { "id": [ "2fmotel_3_f2" ], "fg": [ 5692, 5691, 5693, 5694 ], "rotates": true },
- { "id": [ "2fmotel_entrance_r" ], "fg": [ 5707, 5706, 5708, 5709 ], "rotates": true },
- { "id": [ "2fmotel_1_r" ], "fg": [ 5673, 5672, 5674, 5675 ], "rotates": true },
- { "id": [ "2fmotel_2_r" ], "fg": [ 5685, 5684, 5686, 5687 ], "rotates": true },
- { "id": [ "2fmotel_3_r" ], "fg": [ 5697, 5696, 5698, 5699 ], "rotates": true },
+ { "weight": 25, "sprite": 5699 },
+ { "weight": 40, "sprite": 5700 },
+ { "weight": 10, "sprite": 5701 },
+ { "weight": 25, "sprite": 5702 }
+ ]
+ },
+ { "id": [ "motel_entrance" ], "fg": [ 5783, 5782, 5788, 5789 ], "rotates": true },
+ { "id": [ "motel_1" ], "fg": [ 5759, 5758, 5764, 5765 ], "rotates": true },
+ { "id": [ "motel_2" ], "fg": [ 5767, 5766, 5772, 5773 ], "rotates": true },
+ { "id": [ "motel_3" ], "fg": [ 5775, 5774, 5780, 5781 ], "rotates": true },
+ { "id": [ "motel_entrance_roof" ], "fg": [ 5785, 5784, 5786, 5787 ], "rotates": true },
+ { "id": [ "motel_1_roof" ], "fg": [ 5761, 5760, 5762, 5763 ], "rotates": true },
+ { "id": [ "motel_2_roof" ], "fg": [ 5769, 5768, 5770, 5771 ], "rotates": true },
+ { "id": [ "motel_3_roof" ], "fg": [ 5777, 5776, 5778, 5779 ], "rotates": true },
+ { "id": [ "2fmotel_entrance" ], "fg": [ 5783, 5782, 5788, 5789 ], "rotates": true },
+ { "id": [ "2fmotel_1" ], "fg": [ 5719, 5714, 5724, 5725 ], "rotates": true },
+ { "id": [ "2fmotel_2" ], "fg": [ 5731, 5726, 5736, 5737 ], "rotates": true },
+ { "id": [ "2fmotel_3" ], "fg": [ 5743, 5738, 5748, 5749 ], "rotates": true },
+ { "id": [ "2fmotel_entrance_f2" ], "fg": [ 5751, 5750, 5752, 5753 ], "rotates": true },
+ { "id": [ "2fmotel_1_f2" ], "fg": [ 5716, 5715, 5717, 5718 ], "rotates": true },
+ { "id": [ "2fmotel_2_f2" ], "fg": [ 5728, 5727, 5729, 5730 ], "rotates": true },
+ { "id": [ "2fmotel_3_f2" ], "fg": [ 5740, 5739, 5741, 5742 ], "rotates": true },
+ { "id": [ "2fmotel_entrance_r" ], "fg": [ 5755, 5754, 5756, 5757 ], "rotates": true },
+ { "id": [ "2fmotel_1_r" ], "fg": [ 5721, 5720, 5722, 5723 ], "rotates": true },
+ { "id": [ "2fmotel_2_r" ], "fg": [ 5733, 5732, 5734, 5735 ], "rotates": true },
+ { "id": [ "2fmotel_3_r" ], "fg": [ 5745, 5744, 5746, 5747 ], "rotates": true },
{
"id": "open_air",
"fg": [
- { "weight": 1, "sprite": 5742 },
- { "weight": 1, "sprite": 5743 },
- { "weight": 1, "sprite": 5744 },
- { "weight": 1, "sprite": 5745 },
- { "weight": 1, "sprite": 5746 },
- { "weight": 1, "sprite": 5747 }
+ { "weight": 1, "sprite": 5790 },
+ { "weight": 1, "sprite": 5791 },
+ { "weight": 1, "sprite": 5792 },
+ { "weight": 1, "sprite": 5793 },
+ { "weight": 1, "sprite": 5794 },
+ { "weight": 1, "sprite": 5795 }
]
},
- { "id": "s_baseballfield_a1", "fg": [ 5749, 5750, 5752, 5751 ], "rotates": true },
- { "id": "s_baseballfield_a2", "fg": [ 5750, 5752, 5751, 5749 ], "rotates": true },
- { "id": "s_baseballfield_b1", "fg": [ 5751, 5749, 5750, 5752 ], "rotates": true },
- { "id": "s_baseballfield_b2", "fg": [ 5752, 5751, 5749, 5750 ], "rotates": true },
- { "id": [ "shipwreck_river_1" ], "fg": [ 5753, 5755, 5756, 5754 ], "rotates": true },
- { "id": [ "shipwreck_river_2" ], "fg": [ 5757, 5759, 5760, 5758 ], "rotates": true },
+ { "id": [ "refctr_SW1e" ], "fg": [ { "weight": 1, "sprite": 5809 }, { "weight": 1, "sprite": 5810 } ] },
+ { "id": [ "refctr_NW1a" ], "fg": [ { "weight": 1, "sprite": 5811 }, { "weight": 1, "sprite": 5812 } ] },
+ { "id": [ "refctr_NE1a" ], "fg": [ { "weight": 1, "sprite": 5801 }, { "weight": 1, "sprite": 5802 } ] },
+ { "id": [ "refctr_SE1e" ], "fg": [ { "weight": 1, "sprite": 5799 }, { "weight": 1, "sprite": 5800 } ] },
+ {
+ "id": [
+ "refctr_NW2a",
+ "refctr_NW3a",
+ "refctr_NW4a",
+ "refctr_NW5a",
+ "refctr_N1a",
+ "refctr_N2a",
+ "refctr_N3a",
+ "refctr_N4a",
+ "refctr_N5a"
+ ],
+ "fg": [ { "weight": 1, "sprite": 5805 }, { "weight": 1, "sprite": 5806 } ]
+ },
+ {
+ "id": [
+ "refctr_SW2e",
+ "refctr_SW3e",
+ "refctr_SW4e",
+ "refctr_SW5e",
+ "refctr_S1e",
+ "refctr_S2e",
+ "refctr_S3e",
+ "refctr_S4e",
+ "refctr_S5e"
+ ],
+ "fg": [ { "weight": 1, "sprite": 5803 }, { "weight": 1, "sprite": 5804 } ]
+ },
+ {
+ "id": [
+ "refctr_SE1d",
+ "refctr_SE1c",
+ "refctr_SE1b",
+ "refctr_SE1a",
+ "refctr_E1e",
+ "refctr_E1d",
+ "refctr_E1c",
+ "refctr_E1b",
+ "refctr_E1a",
+ "refctr_NE1e",
+ "refctr_NE1d",
+ "refctr_NE1c",
+ "refctr_NE1b"
+ ],
+ "fg": [ { "weight": 1, "sprite": 5797 }, { "weight": 1, "sprite": 5798 } ]
+ },
+ {
+ "id": [
+ "refctr_SW1d",
+ "refctr_SW1c",
+ "refctr_SW1b",
+ "refctr_SW1a",
+ "refctr_W1e",
+ "refctr_W1d",
+ "refctr_W1c",
+ "refctr_W1b",
+ "refctr_W1a",
+ "refctr_NW1e",
+ "refctr_NW1d",
+ "refctr_NW1c",
+ "refctr_NW1b"
+ ],
+ "fg": [ { "weight": 80, "sprite": 5807 }, { "weight": 20, "sprite": 5808 } ]
+ },
+ { "id": "s_baseballfield_a1", "fg": [ 5813, 5814, 5816, 5815 ], "rotates": true },
+ { "id": "s_baseballfield_a2", "fg": [ 5814, 5816, 5815, 5813 ], "rotates": true },
+ { "id": "s_baseballfield_b1", "fg": [ 5815, 5813, 5814, 5816 ], "rotates": true },
+ { "id": "s_baseballfield_b2", "fg": [ 5816, 5815, 5813, 5814 ], "rotates": true },
+ { "id": [ "shipwreck_river_1" ], "fg": [ 5817, 5819, 5820, 5818 ], "rotates": true },
+ { "id": [ "shipwreck_river_2" ], "fg": [ 5821, 5823, 5824, 5822 ], "rotates": true },
{
"id": "solid_earth",
"fg": [
- { "weight": 60, "sprite": 5761 },
- { "weight": 20, "sprite": 5762 },
- { "weight": 5, "sprite": 5763 },
- { "weight": 5, "sprite": 5764 },
- { "weight": 10, "sprite": 5765 }
- ]
- },
- { "id": "Cave", "fg": 5472 },
- { "id": "campsite_cabin_incomplete", "fg": 5477 },
- { "id": "campsite_field_biker_destroyed", "fg": 5478 },
- { "id": "crater", "fg": 5479 },
- { "id": "empty_rock", "fg": 5481 },
- { "id": "forest_water", "fg": 5485 },
- { "id": "hot_springs", "fg": 5486 },
- { "id": "lab", "fg": 5487 },
- { "id": "lake_shore", "fg": 5488 },
- { "id": "lake_surface", "fg": 5489 },
- { "id": "lmoe", "fg": 5490 },
- { "id": "nest_dermatik", "fg": 5491 },
- { "id": "park", "fg": 5492 },
- { "id": "pond_field", "fg": 5493 },
- { "id": "pond_forest", "fg": 5494 },
- { "id": "pond_swamp", "fg": 5495 },
- { "id": "slimepit", "fg": 5498 },
- { "id": "small_wooded_trail", "fg": 5499 },
- { "id": "swamp", "fg": 5500 },
- { "id": "veterinarian", "fg": 5501 },
- { "id": "forest_trailend_w", "fg": 5540 },
- { "id": "river_c_not_ne", "fg": 5605 },
- { "id": "river_c_not_nw", "fg": 5606 },
- { "id": "river_c_not_se", "fg": 5607 },
- { "id": "river_c_not_sw", "fg": 5608 },
- { "id": "river_center", "fg": 5609 },
- { "id": "river_ne", "fg": 5611 },
- { "id": "river_nw", "fg": 5613 },
- { "id": "river_se", "fg": 5614 },
- { "id": "river_sw", "fg": 5616 },
- { "id": "road_nesw_manhole", "fg": 5629 },
- { "id": "mission_arrow_down", "fg": 5655 },
- { "id": "mission_arrow_e", "fg": 5656 },
- { "id": "mission_arrow_n", "fg": 5657 },
- { "id": "mission_arrow_ne", "fg": 5658 },
- { "id": "mission_arrow_nw", "fg": 5659 },
- { "id": "mission_arrow_s", "fg": 5660 },
- { "id": "mission_arrow_se", "fg": 5661 },
- { "id": "mission_arrow_sw", "fg": 5662 },
- { "id": "mission_arrow_up", "fg": 5663 },
- { "id": "mission_arrow_w", "fg": 5664 },
- { "id": "mission_cursor", "fg": 5665 },
- { "id": "overmap_remembered_vehicle", "fg": 5748 }
+ { "weight": 60, "sprite": 5825 },
+ { "weight": 20, "sprite": 5826 },
+ { "weight": 5, "sprite": 5827 },
+ { "weight": 5, "sprite": 5828 },
+ { "weight": 10, "sprite": 5829 }
+ ]
+ },
+ { "id": "Cave", "fg": 5520 },
+ { "id": "campsite_cabin_incomplete", "fg": 5525 },
+ { "id": "campsite_field_biker_destroyed", "fg": 5526 },
+ { "id": "crater", "fg": 5527 },
+ { "id": "empty_rock", "fg": 5529 },
+ { "id": "forest_water", "fg": 5533 },
+ { "id": "hot_springs", "fg": 5534 },
+ { "id": "lab", "fg": 5535 },
+ { "id": "lake_shore", "fg": 5536 },
+ { "id": "lake_surface", "fg": 5537 },
+ { "id": "lmoe", "fg": 5538 },
+ { "id": "nest_dermatik", "fg": 5539 },
+ { "id": "park", "fg": 5540 },
+ { "id": "pond_field", "fg": 5541 },
+ { "id": "pond_forest", "fg": 5542 },
+ { "id": "pond_swamp", "fg": 5543 },
+ { "id": "slimepit", "fg": 5546 },
+ { "id": "small_wooded_trail", "fg": 5547 },
+ { "id": "swamp", "fg": 5548 },
+ { "id": "veterinarian", "fg": 5549 },
+ { "id": "forest_trailend_w", "fg": 5588 },
+ { "id": "river_c_not_ne", "fg": 5653 },
+ { "id": "river_c_not_nw", "fg": 5654 },
+ { "id": "river_c_not_se", "fg": 5655 },
+ { "id": "river_c_not_sw", "fg": 5656 },
+ { "id": "river_center", "fg": 5657 },
+ { "id": "river_ne", "fg": 5659 },
+ { "id": "river_nw", "fg": 5661 },
+ { "id": "river_se", "fg": 5662 },
+ { "id": "river_sw", "fg": 5664 },
+ { "id": "road_nesw_manhole", "fg": 5677 },
+ { "id": "mission_arrow_down", "fg": 5703 },
+ { "id": "mission_arrow_e", "fg": 5704 },
+ { "id": "mission_arrow_n", "fg": 5705 },
+ { "id": "mission_arrow_ne", "fg": 5706 },
+ { "id": "mission_arrow_nw", "fg": 5707 },
+ { "id": "mission_arrow_s", "fg": 5708 },
+ { "id": "mission_arrow_se", "fg": 5709 },
+ { "id": "mission_arrow_sw", "fg": 5710 },
+ { "id": "mission_arrow_up", "fg": 5711 },
+ { "id": "mission_arrow_w", "fg": 5712 },
+ { "id": "mission_cursor", "fg": 5713 },
+ { "id": "overmap_remembered_vehicle", "fg": 5796 }
]
},
{
"file": "small.png",
- "//": "range 5776 to 5823",
+ "//": "range 5840 to 5887",
"sprite_width": 20,
"sprite_height": 20,
"sprite_offset_x": 6,
"sprite_offset_y": 0,
"tiles": [
- { "id": "UPS_off", "fg": 5776 },
- { "id": "ZSG", "fg": 5777 },
- { "id": "bowl_clay", "fg": 5778 },
- { "id": "ceramic_bowl", "fg": 5779 },
- { "id": "glass_bowl", "fg": 5780 },
- { "id": "plastic_bowl_kids", "fg": 5781 },
- { "id": "brush", "fg": 5782 },
- { "id": "butter", "fg": 5783 },
- { "id": "charcoal", "fg": 5784 },
- { "id": "cigar_butt", "fg": 5785 },
- { "id": "circsaw_blade", "fg": 5786 },
- { "id": "judo_belt_black", "fg": 5787 },
- { "id": "judo_belt_blue", "fg": 5788 },
- { "id": "judo_belt_brown", "fg": 5789 },
- { "id": "judo_belt_green", "fg": 5790 },
- { "id": "judo_belt_orange", "fg": 5791 },
- { "id": "judo_belt_white", "fg": 5792 },
- { "id": "judo_belt_yellow", "fg": 5793 },
- { "id": "leather_cat_tail", "fg": 5794 },
- { "id": "light_disposable_cell", "fg": 5795 },
- { "id": "match", "fg": 5796 },
- { "id": "mirror", "fg": 5797 },
- { "id": "money", "fg": 5798 },
- { "id": "pebble", "fg": 5799 },
- { "id": "blue_pen", "fg": 5800 },
- { "id": "green_pen", "fg": 5801 },
- { "id": "pen", "fg": 5802 },
- { "id": "red_pen", "fg": 5803 },
- { "id": "pipebomb", "fg": 5804 },
- { "id": "pipebomb_act", "fg": 5805 },
- { "id": "primitive_axe", "fg": 5806 },
- { "id": "pur_tablets", "fg": 5807 },
- { "id": "radio_car_wheel", "fg": 5808 },
- { "id": "soldering_iron", "fg": 5809 },
- { "id": "strawberries", "fg": 5810 },
- { "id": "superglue", "fg": 5811 }
+ { "id": "UPS_off", "fg": 5840 },
+ { "id": "ZSG", "fg": 5841 },
+ { "id": "bowl_clay", "fg": 5842 },
+ { "id": "ceramic_bowl", "fg": 5843 },
+ { "id": "glass_bowl", "fg": 5844 },
+ { "id": "plastic_bowl_kids", "fg": 5845 },
+ { "id": "brush", "fg": 5846 },
+ { "id": "butter", "fg": 5847 },
+ { "id": "charcoal", "fg": 5848 },
+ { "id": "cigar_butt", "fg": 5849 },
+ { "id": "circsaw_blade", "fg": 5850 },
+ { "id": "judo_belt_black", "fg": 5851 },
+ { "id": "judo_belt_blue", "fg": 5852 },
+ { "id": "judo_belt_brown", "fg": 5853 },
+ { "id": "judo_belt_green", "fg": 5854 },
+ { "id": "judo_belt_orange", "fg": 5855 },
+ { "id": "judo_belt_white", "fg": 5856 },
+ { "id": "judo_belt_yellow", "fg": 5857 },
+ { "id": "fetus", "fg": 5858 },
+ { "id": "fish_bowl", "fg": 5859 },
+ { "id": "leather_cat_tail", "fg": 5860 },
+ { "id": "light_disposable_cell", "fg": 5861 },
+ { "id": "match", "fg": 5862 },
+ { "id": "mirror", "fg": 5863 },
+ { "id": "money", "fg": 5864 },
+ { "id": "pebble", "fg": 5865 },
+ { "id": "blue_pen", "fg": 5866 },
+ { "id": "green_pen", "fg": 5867 },
+ { "id": "pen", "fg": 5868 },
+ { "id": "red_pen", "fg": 5869 },
+ { "id": "pipebomb", "fg": 5870 },
+ { "id": "pipebomb_act", "fg": 5871 },
+ { "id": "primitive_axe", "fg": 5872 },
+ { "id": "pur_tablets", "fg": 5873 },
+ { "id": "radio_car_wheel", "fg": 5874 },
+ { "id": "soldering_iron", "fg": 5875 },
+ { "id": "strawberries", "fg": 5876 },
+ { "id": "superglue", "fg": 5877 },
+ { "id": "toaster", "fg": 5878 },
+ { "id": "corpse_mon_aphid_small", "fg": 5879 },
+ { "id": "mon_aphid_small", "fg": 5880 }
+ ]
+ },
+ {
+ "file": "wide.png",
+ "//": "range 5888 to 5903",
+ "sprite_width": 48,
+ "sprite_height": 48,
+ "sprite_offset_x": -16,
+ "sprite_offset_y": -16,
+ "tiles": [
+ { "id": "mon_secubot", "fg": 5888 },
+ { "id": "mon_talon_m202a1", "fg": 5889 },
+ { "id": "mon_halloween_dragon", "fg": 5890 }
]
},
{
"file": "tall.png",
- "//": "range 5824 to 5967",
+ "//": "range 5904 to 6047",
"sprite_width": 32,
"sprite_height": 48,
"sprite_offset_x": 0,
@@ -10154,11 +10288,11 @@
"id": "f_alien_zapper",
"animated": true,
"fg": [
- { "weight": 36, "sprite": 5833 },
- { "weight": 7, "sprite": 5834 },
- { "weight": 7, "sprite": 5835 },
- { "weight": 7, "sprite": 5836 },
- { "weight": 7, "sprite": 5837 }
+ { "weight": 36, "sprite": 5913 },
+ { "weight": 7, "sprite": 5914 },
+ { "weight": 7, "sprite": 5915 },
+ { "weight": 7, "sprite": 5916 },
+ { "weight": 7, "sprite": 5917 }
],
"rotates": false
},
@@ -10171,113 +10305,112 @@
"t_sliding_bookcase_control",
"t_sliding_wall_control"
],
- "fg": 5838,
+ "fg": 5918,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5838 },
- { "id": "corner", "fg": [ 5840, 5840, 5840, 5840 ] },
- { "id": "t_connection", "fg": [ 5839, 5840, 5838, 5840 ] },
- { "id": "edge", "fg": [ 5840, 5838 ] },
- { "id": "end_piece", "fg": [ 5840, 5838, 5840, 5838 ] },
- { "id": "unconnected", "fg": [ 5838, 5838 ] }
+ { "id": "center", "fg": 5918 },
+ { "id": "corner", "fg": [ 5920, 5920, 5920, 5920 ] },
+ { "id": "t_connection", "fg": [ 5919, 5920, 5918, 5920 ] },
+ { "id": "edge", "fg": [ 5920, 5918 ] },
+ { "id": "end_piece", "fg": [ 5920, 5918, 5920, 5918 ] },
+ { "id": "unconnected", "fg": [ 5918, 5918 ] }
]
},
- { "id": "f_fridge", "rotates": true, "fg": [ 5841, 5844, 5843, 5842 ] },
- { "id": "f_vending_c", "rotates": true, "fg": [ 5845, 5848, 5847, 5846 ] },
- { "id": "f_vending_o", "rotates": true, "fg": [ 5849, 5852, 5851, 5850 ] },
+ { "id": "f_fridge", "rotates": true, "fg": [ 5921, 5924, 5923, 5922 ] },
+ { "id": "f_vending_c", "rotates": true, "fg": [ 5925, 5928, 5927, 5926 ] },
+ { "id": "f_vending_o", "rotates": true, "fg": [ 5929, 5932, 5931, 5930 ] },
{
"id": "mon_demon_spider",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 5856 },
- { "weight": 15, "sprite": 5857 },
- { "weight": 15, "sprite": 5858 },
- { "weight": 15, "sprite": 5857 }
+ { "weight": 15, "sprite": 5936 },
+ { "weight": 15, "sprite": 5937 },
+ { "weight": 15, "sprite": 5938 },
+ { "weight": 15, "sprite": 5937 }
],
"rotates": false
},
{
"id": "mon_marshmallow_buff",
- "fg": [ { "weight": 1, "sprite": 5859 }, { "weight": 1, "sprite": 5860 } ],
+ "fg": [ { "weight": 1, "sprite": 5939 }, { "weight": 1, "sprite": 5940 } ],
"bg": [ ],
"rotates": false
},
- { "id": "mon_nursebot", "fg": [ 5861, 5862, 5863 ], "rotates": false },
+ { "id": "mon_nursebot", "fg": [ 5941, 5942, 5943 ], "rotates": false },
{
"id": "mon_firefly",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 5865 },
- { "weight": 15, "sprite": 5866 },
- { "weight": 15, "sprite": 5867 },
- { "weight": 15, "sprite": 5866 }
- ],
- "bg": [ { "weight": 15, "sprite": 5861 }, { "weight": 15, "sprite": 5863 } ]
- },
- { "id": "overlay_worn_10gal_hat", "fg": 5869, "rotates": false },
- { "id": "overlay_worn_bowhat", "fg": 5870, "rotates": false },
- { "id": "overlay_worn_eboshi", "fg": 5871, "rotates": false },
- { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 5872, "rotates": false },
- { "id": "overlay_worn_firehelmet", "fg": 5873, "rotates": false },
- { "id": "overlay_worn_hat_chef", "fg": 5874, "rotates": false },
- { "id": "overlay_worn_hat_hard", "fg": 5875, "rotates": false },
- { "id": "overlay_worn_hat_hard_hooded", "fg": 5876, "rotates": false },
- { "id": "overlay_worn_hat_sombrero", "fg": 5877, "rotates": false },
- { "id": "overlay_worn_helmet_kabuto", "fg": 5878, "rotates": false },
- { "id": "overlay_worn_miner_hat", "fg": 5879, "rotates": false },
- { "id": "overlay_worn_miner_hat_on", "fg": 5880, "rotates": false },
- { "id": "overlay_worn_pickelhaube", "fg": 5881, "rotates": false },
- { "id": "overlay_worn_porkpie", "fg": 5882, "rotates": false },
- { "id": "overlay_worn_straw_fedora", "fg": 5883, "rotates": false },
- { "id": "overlay_worn_straw_hat", "fg": 5884, "rotates": false },
- { "id": "overlay_worn_tinfoil_hat", "fg": 5885, "rotates": false },
- { "id": "overlay_worn_tophat", "fg": 5886, "rotates": false },
- { "id": "overlay_worn_veil_wedding", "fg": 5887, "rotates": false },
- { "id": "overlay_worn_welding_mask_crude_raised", "fg": 5888, "rotates": false },
- { "id": "overlay_worn_welding_mask_raised", "fg": 5889, "rotates": false },
- { "id": "overlay_effect_badpoison", "fg": 5891 },
- { "id": "overlay_effect_bleed", "fg": 5892 },
- { "id": "overlay_effect_bouldering", "fg": 5893 },
- { "id": "overlay_effect_common_cold", "fg": 5894 },
- { "id": "overlay_effect_dazed", "fg": 5895 },
- { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 5896 },
- { "id": "overlay_effect_downed", "fg": 5897 },
- { "id": "overlay_effect_drunk", "fg": 5898 },
- { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 5899 },
- { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 5900 },
- { "id": "overlay_effect_fungus", "fg": 5901 },
- { "id": "overlay_effect_grabbed", "fg": 5902 },
- { "id": "overlay_female_effect_haslight", "fg": 5911 },
- { "id": "overlay_male_effect_haslight", "fg": 5912 },
- { "id": "overlay_effect_high", "fg": 5903 },
- { "id": "overlay_effect_paralyzepoison", "fg": 5904 },
- { "id": "overlay_effect_poison", "fg": 5905 },
- { "id": "overlay_effect_sleep", "fg": 5906 },
- { "id": "overlay_effect_spores", "fg": 5907 },
- { "id": "overlay_effect_stunned", "fg": 5908 },
- { "id": "overlay_effect_visuals", "fg": 5909 },
- { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 5910 },
- { "id": "overlay_female_mutation_hair_black_fro", "fg": 5915, "rotates": false },
- { "id": "overlay_female_mutation_hair_gray_fro", "fg": 5918, "rotates": false },
- { "id": "overlay_female_mutation_hair_blond_fro", "fg": 5916, "rotates": false },
- { "id": "overlay_female_mutation_hair_brown_fro", "fg": 5917, "rotates": false },
- { "id": "overlay_female_mutation_hair_white_fro", "fg": 5920, "rotates": false },
- { "id": "overlay_female_mutation_hair_red_fro", "fg": 5919, "rotates": false },
- { "id": "overlay_male_mutation_hair_black_fro", "fg": 5921, "rotates": false },
- { "id": "overlay_male_mutation_hair_gray_fro", "fg": 5924, "rotates": false },
- { "id": "overlay_male_mutation_hair_blond_fro", "fg": 5922, "rotates": false },
- { "id": "overlay_male_mutation_hair_brown_fro", "fg": 5923, "rotates": false },
- { "id": "overlay_male_mutation_hair_white_fro", "fg": 5926, "rotates": false },
- { "id": "overlay_male_mutation_hair_red_fro", "fg": 5925, "rotates": false },
- { "id": "overlay_mutation_hair_black_mohawk", "fg": 5927, "rotates": false },
- { "id": "overlay_mutation_hair_gray_mohawk", "fg": 5930, "rotates": false },
- { "id": "overlay_mutation_hair_blond_mohawk", "fg": 5928, "rotates": false },
- { "id": "overlay_mutation_hair_brown_mohawk", "fg": 5929, "rotates": false },
- { "id": "overlay_mutation_hair_white_mohawk", "fg": 5932, "rotates": false },
- { "id": "overlay_mutation_hair_red_mohawk", "fg": 5931, "rotates": false },
+ { "weight": 15, "sprite": 5945 },
+ { "weight": 15, "sprite": 5946 },
+ { "weight": 15, "sprite": 5947 },
+ { "weight": 15, "sprite": 5946 }
+ ]
+ },
+ { "id": "overlay_worn_10gal_hat", "fg": 5949, "rotates": false },
+ { "id": "overlay_worn_bowhat", "fg": 5950, "rotates": false },
+ { "id": "overlay_worn_eboshi", "fg": 5951, "rotates": false },
+ { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 5952, "rotates": false },
+ { "id": "overlay_worn_firehelmet", "fg": 5953, "rotates": false },
+ { "id": "overlay_worn_hat_chef", "fg": 5954, "rotates": false },
+ { "id": "overlay_worn_hat_hard", "fg": 5955, "rotates": false },
+ { "id": "overlay_worn_hat_hard_hooded", "fg": 5956, "rotates": false },
+ { "id": "overlay_worn_hat_sombrero", "fg": 5957, "rotates": false },
+ { "id": "overlay_worn_helmet_kabuto", "fg": 5958, "rotates": false },
+ { "id": "overlay_worn_miner_hat", "fg": 5959, "rotates": false },
+ { "id": "overlay_worn_miner_hat_on", "fg": 5960, "rotates": false },
+ { "id": "overlay_worn_pickelhaube", "fg": 5961, "rotates": false },
+ { "id": "overlay_worn_porkpie", "fg": 5962, "rotates": false },
+ { "id": "overlay_worn_straw_fedora", "fg": 5963, "rotates": false },
+ { "id": "overlay_worn_straw_hat", "fg": 5964, "rotates": false },
+ { "id": "overlay_worn_tinfoil_hat", "fg": 5965, "rotates": false },
+ { "id": "overlay_worn_tophat", "fg": 5966, "rotates": false },
+ { "id": "overlay_worn_veil_wedding", "fg": 5967, "rotates": false },
+ { "id": "overlay_worn_welding_mask_crude_raised", "fg": 5968, "rotates": false },
+ { "id": "overlay_worn_welding_mask_raised", "fg": 5969, "rotates": false },
+ { "id": "overlay_effect_badpoison", "fg": 5971 },
+ { "id": "overlay_effect_bleed", "fg": 5972 },
+ { "id": "overlay_effect_bouldering", "fg": 5973 },
+ { "id": "overlay_effect_common_cold", "fg": 5974 },
+ { "id": "overlay_effect_dazed", "fg": 5975 },
+ { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 5976 },
+ { "id": "overlay_effect_downed", "fg": 5977 },
+ { "id": "overlay_effect_drunk", "fg": 5978 },
+ { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 5979 },
+ { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 5980 },
+ { "id": "overlay_effect_fungus", "fg": 5981 },
+ { "id": "overlay_effect_grabbed", "fg": 5982 },
+ { "id": "overlay_female_effect_haslight", "fg": 5991 },
+ { "id": "overlay_male_effect_haslight", "fg": 5992 },
+ { "id": "overlay_effect_high", "fg": 5983 },
+ { "id": "overlay_effect_paralyzepoison", "fg": 5984 },
+ { "id": "overlay_effect_poison", "fg": 5985 },
+ { "id": "overlay_effect_sleep", "fg": 5986 },
+ { "id": "overlay_effect_spores", "fg": 5987 },
+ { "id": "overlay_effect_stunned", "fg": 5988 },
+ { "id": "overlay_effect_visuals", "fg": 5989 },
+ { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 5990 },
+ { "id": "overlay_female_mutation_hair_black_fro", "fg": 6004, "rotates": false },
+ { "id": "overlay_female_mutation_hair_gray_fro", "fg": 6007, "rotates": false },
+ { "id": "overlay_female_mutation_hair_blond_fro", "fg": 6005, "rotates": false },
+ { "id": "overlay_female_mutation_hair_brown_fro", "fg": 6006, "rotates": false },
+ { "id": "overlay_female_mutation_hair_white_fro", "fg": 6009, "rotates": false },
+ { "id": "overlay_female_mutation_hair_red_fro", "fg": 6008, "rotates": false },
+ { "id": "overlay_male_mutation_hair_black_fro", "fg": 6010, "rotates": false },
+ { "id": "overlay_male_mutation_hair_gray_fro", "fg": 6013, "rotates": false },
+ { "id": "overlay_male_mutation_hair_blond_fro", "fg": 6011, "rotates": false },
+ { "id": "overlay_male_mutation_hair_brown_fro", "fg": 6012, "rotates": false },
+ { "id": "overlay_male_mutation_hair_white_fro", "fg": 6015, "rotates": false },
+ { "id": "overlay_male_mutation_hair_red_fro", "fg": 6014, "rotates": false },
+ { "id": "overlay_mutation_hair_black_mohawk", "fg": 6016, "rotates": false },
+ { "id": "overlay_mutation_hair_gray_mohawk", "fg": 6019, "rotates": false },
+ { "id": "overlay_mutation_hair_blond_mohawk", "fg": 6017, "rotates": false },
+ { "id": "overlay_mutation_hair_brown_mohawk", "fg": 6018, "rotates": false },
+ { "id": "overlay_mutation_hair_white_mohawk", "fg": 6021, "rotates": false },
+ { "id": "overlay_mutation_hair_red_mohawk", "fg": 6020, "rotates": false },
{
"id": [ "overlay_female_mutation_BIOLUM0", "overlay_female_mutation_BIOLUM1", "overlay_female_mutation_BIOLUM2" ],
- "fg": 5933,
+ "fg": 6022,
"rotates": false
},
{
@@ -10286,12 +10419,12 @@
"overlay_female_mutation_BIOLUM1_active",
"overlay_female_mutation_BIOLUM2_active"
],
- "fg": 5934,
+ "fg": 6023,
"rotates": false
},
{
"id": [ "overlay_male_mutation_BIOLUM0", "overlay_male_mutation_BIOLUM1", "overlay_male_mutation_BIOLUM2" ],
- "fg": 5935,
+ "fg": 6024,
"rotates": false
},
{
@@ -10300,134 +10433,148 @@
"overlay_male_mutation_BIOLUM1_active",
"overlay_male_mutation_BIOLUM2_active"
],
- "fg": 5936,
+ "fg": 6025,
"rotates": false
},
- { "id": "overlay_mutation_HORNS_POINTED", "fg": 5937, "rotates": false },
+ { "id": "overlay_mutation_HORNS_POINTED", "fg": 6026, "rotates": false },
{
"id": "t_privacy_fence",
- "fg": 5951,
- "bg": 5942,
+ "fg": 6040,
+ "bg": 6031,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5951, "bg": 5942 },
- { "id": "corner", "fg": [ 5945, 5947, 5946, 5944 ], "bg": 5942 },
- { "id": "t_connection", "fg": [ 5948, 3645, 5948, 3645 ], "bg": 5942 },
- { "id": "edge", "fg": [ 3645, 5948 ], "bg": 5942 },
- { "id": "end_piece", "fg": [ 3646, 5950, 3647, 5949 ], "bg": 5942 },
- { "id": "unconnected", "fg": [ 5951, 5951 ], "bg": 5942 }
+ { "id": "center", "fg": 6040, "bg": 6031 },
+ { "id": "corner", "fg": [ 6034, 6036, 6035, 6033 ], "bg": 6031 },
+ { "id": "t_connection", "fg": [ 6037, 3682, 6037, 3682 ], "bg": 6031 },
+ { "id": "edge", "fg": [ 3682, 6037 ], "bg": 6031 },
+ { "id": "end_piece", "fg": [ 3683, 6039, 3684, 6038 ], "bg": 6031 },
+ { "id": "unconnected", "fg": [ 6040, 6040 ], "bg": 6031 }
]
},
{
"id": "t_privacy_fence_season_autumn",
- "fg": 5951,
- "bg": 5940,
+ "fg": 6040,
+ "bg": 6029,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5951, "bg": 5940 },
- { "id": "corner", "fg": [ 5945, 5947, 5946, 5944 ], "bg": 5940 },
- { "id": "t_connection", "fg": [ 5948, 3645, 5948, 3645 ], "bg": 5940 },
- { "id": "edge", "fg": [ 3645, 5948 ], "bg": 5940 },
- { "id": "end_piece", "fg": [ 3646, 5950, 3647, 5949 ], "bg": 5940 },
- { "id": "unconnected", "fg": [ 5951, 5951 ], "bg": 5940 }
+ { "id": "center", "fg": 6040, "bg": 6029 },
+ { "id": "corner", "fg": [ 6034, 6036, 6035, 6033 ], "bg": 6029 },
+ { "id": "t_connection", "fg": [ 6037, 3682, 6037, 3682 ], "bg": 6029 },
+ { "id": "edge", "fg": [ 3682, 6037 ], "bg": 6029 },
+ { "id": "end_piece", "fg": [ 3683, 6039, 3684, 6038 ], "bg": 6029 },
+ { "id": "unconnected", "fg": [ 6040, 6040 ], "bg": 6029 }
]
},
{
"id": "t_privacy_fence_season_summer",
- "fg": 5951,
- "bg": 5941,
+ "fg": 6040,
+ "bg": 6030,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5951, "bg": 5941 },
- { "id": "corner", "fg": [ 5945, 5947, 5946, 5944 ], "bg": 5941 },
- { "id": "t_connection", "fg": [ 5948, 3645, 5948, 3645 ], "bg": 5941 },
- { "id": "edge", "fg": [ 3645, 5948 ], "bg": 5941 },
- { "id": "end_piece", "fg": [ 3646, 5950, 3647, 5949 ], "bg": 5941 },
- { "id": "unconnected", "fg": [ 5951, 5951 ], "bg": 5941 }
+ { "id": "center", "fg": 6040, "bg": 6030 },
+ { "id": "corner", "fg": [ 6034, 6036, 6035, 6033 ], "bg": 6030 },
+ { "id": "t_connection", "fg": [ 6037, 3682, 6037, 3682 ], "bg": 6030 },
+ { "id": "edge", "fg": [ 3682, 6037 ], "bg": 6030 },
+ { "id": "end_piece", "fg": [ 3683, 6039, 3684, 6038 ], "bg": 6030 },
+ { "id": "unconnected", "fg": [ 6040, 6040 ], "bg": 6030 }
]
},
{
"id": "t_privacy_fence_season_winter",
- "fg": 5951,
- "bg": 5943,
+ "fg": 6040,
+ "bg": 6032,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 5951, "bg": 5943 },
- { "id": "corner", "fg": [ 5945, 5947, 5946, 5944 ], "bg": 5943 },
- { "id": "t_connection", "fg": [ 5948, 3645, 5948, 3645 ], "bg": 5943 },
- { "id": "edge", "fg": [ 3645, 5948 ], "bg": 5943 },
- { "id": "end_piece", "fg": [ 3646, 5950, 3647, 5949 ], "bg": 5943 },
- { "id": "unconnected", "fg": [ 5951, 5951 ], "bg": 5943 }
+ { "id": "center", "fg": 6040, "bg": 6032 },
+ { "id": "corner", "fg": [ 6034, 6036, 6035, 6033 ], "bg": 6032 },
+ { "id": "t_connection", "fg": [ 6037, 3682, 6037, 3682 ], "bg": 6032 },
+ { "id": "edge", "fg": [ 3682, 6037 ], "bg": 6032 },
+ { "id": "end_piece", "fg": [ 3683, 6039, 3684, 6038 ], "bg": 6032 },
+ { "id": "unconnected", "fg": [ 6040, 6040 ], "bg": 6032 }
]
},
+ {
+ "id": "t_vat",
+ "fg": [ { "weight": 1, "sprite": 6043 }, { "weight": 1, "sprite": 6041 }, { "weight": 1, "sprite": 6042 } ],
+ "rotates": false
+ },
{
"id": "vp_frame_handle",
- "fg": [ 5953, 5955, 5954, 5952 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 4984, "bg": [ 5953, 5955, 5954, 5952 ] } ]
- },
- { "id": "f_alien_anemone", "fg": 5824 },
- { "id": "f_alien_gasper", "fg": 5825 },
- { "id": "f_alien_pod", "fg": 5826 },
- { "id": "f_alien_pod_organ", "fg": 5827 },
- { "id": "f_alien_pod_resin", "fg": 5828 },
- { "id": "f_alien_tendril", "fg": 5829 },
- { "id": "f_bigmirror", "fg": 5830 },
- { "id": "f_bigmirror_b", "fg": 5831 },
- { "id": "f_rotary_clothesline", "fg": 5832 },
- { "id": "f_magiclysm_translocator_gate", "fg": 5853 },
- { "id": "cauldron_demon_chitin", "fg": 5854 },
- { "id": "cauldron_orichalcum", "fg": 5855 },
- { "id": "mon_zombie_scissorlimbs", "fg": 5864 },
- { "id": "mon_robofac_prototype", "fg": 5868 },
- { "id": "overlay_crouch", "fg": 5890 },
- { "id": "overlay_run", "fg": 5913 },
- { "id": "overlay_prone", "fg": 5914 },
- { "id": "overlay_wielded_mattress", "fg": 5938 },
- { "id": "t_bulk_tank", "fg": 5939 }
+ "fg": [ 6045, 6047, 6046, 6044 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 5021, "bg": [ 6045, 6047, 6046, 6044 ] } ]
+ },
+ { "id": "f_alien_anemone", "fg": 5904 },
+ { "id": "f_alien_gasper", "fg": 5905 },
+ { "id": "f_alien_pod", "fg": 5906 },
+ { "id": "f_alien_pod_organ", "fg": 5907 },
+ { "id": "f_alien_pod_resin", "fg": 5908 },
+ { "id": "f_alien_tendril", "fg": 5909 },
+ { "id": "f_bigmirror", "fg": 5910 },
+ { "id": "f_bigmirror_b", "fg": 5911 },
+ { "id": "f_rotary_clothesline", "fg": 5912 },
+ { "id": "f_magiclysm_translocator_gate", "fg": 5933 },
+ { "id": "cauldron_demon_chitin", "fg": 5934 },
+ { "id": "cauldron_orichalcum", "fg": 5935 },
+ { "id": "mon_zombie_scissorlimbs", "fg": 5944 },
+ { "id": "mon_robofac_prototype", "fg": 5948 },
+ { "id": "overlay_crouch", "fg": 5970 },
+ { "id": "overlay_run", "fg": 5993 },
+ { "id": "overlay_effect_weary_0", "fg": 5994 },
+ { "id": "overlay_effect_weary_1", "fg": 5995 },
+ { "id": "overlay_effect_weary_2", "fg": 5996 },
+ { "id": "overlay_effect_weary_3", "fg": 5997 },
+ { "id": "overlay_effect_weary_4", "fg": 5998 },
+ { "id": "overlay_effect_weary_5", "fg": 5999 },
+ { "id": "overlay_effect_weary_6", "fg": 6000 },
+ { "id": "overlay_effect_weary_7", "fg": 6001 },
+ { "id": "overlay_effect_weary_8", "fg": 6002 },
+ { "id": "overlay_prone", "fg": 6003 },
+ { "id": "overlay_wielded_mattress", "fg": 6027 },
+ { "id": "t_bulk_tank", "fg": 6028 }
]
},
{
"file": "large.png",
- "//": "range 5968 to 6143",
+ "//": "range 6048 to 6223",
"sprite_width": 64,
"sprite_height": 80,
"sprite_offset_x": -16,
"sprite_offset_y": -48,
"tiles": [
- { "id": "f_street_light", "fg": 5968, "bg": [ ], "rotates": false },
- { "id": "f_traffic_light", "fg": 5969, "bg": [ ], "rotates": false },
- { "id": "corpse_mon_allosaurus", "fg": 5970, "rotates": false },
- { "id": "corpse_mon_amigara_horror", "fg": 5971, "rotates": false },
- { "id": "corpse_mon_ankylosaurus", "fg": 5972, "rotates": false },
- { "id": "corpse_mon_darck_wyrm", "fg": 5973, "rotates": false },
- { "id": "corpse_mon_devourer", "fg": 5974, "rotates": false },
- { "id": "corpse_mon_fungaloid_queen", "fg": 5975, "rotates": false },
- { "id": "corpse_mon_fungaloid_seeder", "fg": 5976, "rotates": false },
- { "id": "corpse_mon_fungaloid_tower", "fg": 5977, "rotates": false },
- { "id": "corpse_mon_mi_go_guard", "fg": 5978, "rotates": false },
- { "id": "corpse_mon_mi_go_myrmidon", "fg": 5979, "rotates": false },
- { "id": "corpse_mon_mi_go_slaver", "fg": 5980, "rotates": false },
- { "id": "corpse_mon_mi_go_surgeon", "fg": 5981, "rotates": false },
- { "id": "corpse_mon_naked_molerat", "fg": 5982, "rotates": false },
- { "id": "corpse_mon_parasaurolophus", "fg": 5983, "rotates": false },
- { "id": "corpse_mon_skeleton_hulk", "fg": 5984, "rotates": false },
- { "id": "corpse_mon_spinosaurus", "fg": 5985, "rotates": false },
- { "id": "corpse_mon_stegosaurus", "fg": 5986, "rotates": false },
- { "id": "corpse_mon_triceratops", "fg": 5987, "rotates": false },
- { "id": "corpse_mon_tyrannosaurus", "fg": 5988, "rotates": false },
- { "id": "corpse_mon_utahraptor", "fg": 5989, "rotates": false },
- { "id": "corpse_mon_yugg", "fg": 5990, "rotates": false },
- { "id": "corpse_mon_zombie_corrosive", "fg": 5991, "rotates": false },
- { "id": "corpse_mon_zombie_hulk", "fg": 5992, "rotates": false },
- { "id": "corpse_mon_zombie_kevlar_2", "fg": 5993, "rotates": false },
+ { "id": "f_street_light", "fg": 6048, "bg": [ ], "rotates": false },
+ { "id": "f_traffic_light", "fg": 6049, "bg": [ ], "rotates": false },
+ { "id": "corpse_mon_allosaurus", "fg": 6050, "rotates": false },
+ { "id": "corpse_mon_amigara_horror", "fg": 6051, "rotates": false },
+ { "id": "corpse_mon_ankylosaurus", "fg": 6052, "rotates": false },
+ { "id": "corpse_mon_darck_wyrm", "fg": 6053, "rotates": false },
+ { "id": "corpse_mon_devourer", "fg": 6054, "rotates": false },
+ { "id": "corpse_mon_fungaloid_queen", "fg": 6055, "rotates": false },
+ { "id": "corpse_mon_fungaloid_seeder", "fg": 6056, "rotates": false },
+ { "id": "corpse_mon_fungaloid_tower", "fg": 6057, "rotates": false },
+ { "id": "corpse_mon_mi_go_guard", "fg": 6058, "rotates": false },
+ { "id": "corpse_mon_mi_go_myrmidon", "fg": 6059, "rotates": false },
+ { "id": "corpse_mon_mi_go_slaver", "fg": 6060, "rotates": false },
+ { "id": "corpse_mon_mi_go_surgeon", "fg": 6061, "rotates": false },
+ { "id": "corpse_mon_naked_molerat", "fg": 6062, "rotates": false },
+ { "id": "corpse_mon_parasaurolophus", "fg": 6063, "rotates": false },
+ { "id": "corpse_mon_skeleton_hulk", "fg": 6064, "rotates": false },
+ { "id": "corpse_mon_spinosaurus", "fg": 6065, "rotates": false },
+ { "id": "corpse_mon_stegosaurus", "fg": 6066, "rotates": false },
+ { "id": "corpse_mon_triceratops", "fg": 6067, "rotates": false },
+ { "id": "corpse_mon_tyrannosaurus", "fg": 6068, "rotates": false },
+ { "id": "corpse_mon_utahraptor", "fg": 6069, "rotates": false },
+ { "id": "corpse_mon_yugg", "fg": 6070, "rotates": false },
+ { "id": "corpse_mon_zombie_corrosive", "fg": 6071, "rotates": false },
+ { "id": "corpse_mon_zombie_hulk", "fg": 6072, "rotates": false },
+ { "id": "corpse_mon_zombie_kevlar_2", "fg": 6073, "rotates": false },
{
"id": "mon_claygolem",
"fg": [
- { "weight": 10, "sprite": 5996 },
- { "weight": 1, "sprite": 5997 },
- { "weight": 2, "sprite": 5998 },
- { "weight": 3, "sprite": 5999 }
+ { "weight": 10, "sprite": 6076 },
+ { "weight": 1, "sprite": 6077 },
+ { "weight": 2, "sprite": 6078 },
+ { "weight": 3, "sprite": 6079 }
],
"rotates": false
},
@@ -10435,75 +10582,75 @@
"id": "mon_demon_spider_queen",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 6000 },
- { "weight": 15, "sprite": 6001 },
- { "weight": 15, "sprite": 6002 },
- { "weight": 15, "sprite": 6003 },
- { "weight": 15, "sprite": 6002 },
- { "weight": 15, "sprite": 6001 }
+ { "weight": 15, "sprite": 6080 },
+ { "weight": 15, "sprite": 6081 },
+ { "weight": 15, "sprite": 6082 },
+ { "weight": 15, "sprite": 6083 },
+ { "weight": 15, "sprite": 6082 },
+ { "weight": 15, "sprite": 6081 }
],
"rotates": false
},
{
"id": "mon_irongolem",
- "fg": [ { "weight": 4, "sprite": 6005 }, { "weight": 1, "sprite": 6006 }, { "weight": 1, "sprite": 6007 } ],
+ "fg": [ { "weight": 4, "sprite": 6085 }, { "weight": 1, "sprite": 6086 }, { "weight": 1, "sprite": 6087 } ],
"rotates": false
},
{
"id": "mon_plasticgolem",
"fg": [
- { "weight": 10, "sprite": 6014 },
- { "weight": 10, "sprite": 6009 },
- { "weight": 6, "sprite": 6010 },
- { "weight": 5, "sprite": 6013 },
- { "weight": 3, "sprite": 6011 },
- { "weight": 1, "sprite": 6012 }
+ { "weight": 10, "sprite": 6094 },
+ { "weight": 10, "sprite": 6089 },
+ { "weight": 6, "sprite": 6090 },
+ { "weight": 5, "sprite": 6093 },
+ { "weight": 3, "sprite": 6091 },
+ { "weight": 1, "sprite": 6092 }
],
"rotates": false
},
- { "id": "mon_allosaurus", "fg": 6035, "rotates": false },
- { "id": "mon_amigara_horror", "fg": 6038, "bg": [ ], "rotates": false },
- { "id": "mon_ankylosaurus", "fg": 6034, "rotates": false },
- { "id": "mon_blob_brain", "fg": 6023, "rotates": false },
- { "id": "mon_boomer_huge", "fg": 6039, "bg": [ ], "rotates": false },
- { "id": "mon_chickenbot", "fg": 6018, "rotates": false },
- { "id": "mon_dark_wyrm", "fg": 6040, "rotates": false },
- { "id": "mon_devourer", "fg": 6041, "rotates": false },
- { "id": "mon_fungaloid_queen", "fg": 6026, "rotates": false },
- { "id": "mon_fungaloid_seeder", "fg": 6024, "rotates": false },
- { "id": "mon_fungaloid_tower", "fg": 6025, "rotates": false },
- { "id": "mon_gas_zombie", "fg": 6043, "bg": [ ], "rotates": false },
- { "id": "mon_jabberwock", "fg": 6019, "rotates": false },
- { "id": "mon_mi_go_guard", "fg": 6048, "rotates": false },
- { "id": "mon_mi_go_myrmidon", "fg": 6049, "rotates": false },
- { "id": "mon_mi_go_slaver", "fg": 6050, "rotates": false },
- { "id": "mon_mi_go_surgeon", "fg": 6051, "rotates": false },
- { "id": "mon_nakedmolerat_giant", "fg": 6029, "rotates": false },
- { "id": "mon_parasaurolophus", "fg": 6036, "rotates": false },
- { "id": "mon_shoggoth", "fg": [ 6020, 6052 ], "rotates": false },
- { "id": "mon_skeleton_hulk", "fg": 6017, "rotates": false },
- { "id": "mon_spinosaurus", "fg": 6030, "rotates": false },
- { "id": "mon_stegosaurus", "fg": 6033, "rotates": false },
- { "id": "mon_triceratops", "fg": 6032, "rotates": false },
- { "id": "mon_triffid_heart", "fg": 6027, "rotates": false },
- { "id": "mon_triffid_queen", "fg": 6053, "bg": [ ], "rotates": false },
- { "id": "mon_turret_searchlight", "fg": 6022, "rotates": false },
- { "id": "mon_tyrannosaurus", "fg": 6031, "rotates": false },
- { "id": "mon_utahraptor", "fg": 6037, "rotates": false },
- { "id": "mon_yugg", "fg": 6028, "rotates": false },
- { "id": "mon_zombie_corrosive", "fg": 6054, "bg": [ ], "rotates": false },
- { "id": "mon_zombie_hulk", "fg": 6021, "rotates": false },
- { "id": "mon_zombie_kevlar_2", "fg": 6058, "bg": [ ], "rotates": false },
- { "id": "mon_zombie_nullfield", "fg": 6060, "bg": [ ], "rotates": false },
- { "id": "overlay_wielded_pike", "fg": 6070, "rotates": false },
- { "id": "overlay_wielded_qiang", "fg": 6070, "rotates": false },
- { "id": "f_boulder_large", "fg": 6115, "rotates": false },
- { "id": "t_leanto", "fg": 6111, "bg": 6134, "rotates": false },
- { "id": "t_leanto_season_winter", "fg": 6111, "bg": 6137, "rotates": false },
- { "id": "t_marloss_tree", "fg": 6099, "bg": 6100, "rotates": false },
- { "id": "t_tree", "fg": 6078, "bg": 6134, "rotates": false },
- { "id": "t_tree_almond_season_autumn", "fg": 6132, "bg": 6135, "rotates": false },
- { "id": "t_tree_almond_season_spring", "fg": 6131, "bg": 6134, "rotates": false },
+ { "id": "mon_allosaurus", "fg": 6115, "rotates": false },
+ { "id": "mon_amigara_horror", "fg": 6118, "bg": [ ], "rotates": false },
+ { "id": "mon_ankylosaurus", "fg": 6114, "rotates": false },
+ { "id": "mon_blob_brain", "fg": 6103, "rotates": false },
+ { "id": "mon_boomer_huge", "fg": 6119, "bg": [ ], "rotates": false },
+ { "id": "mon_chickenbot", "fg": 6098, "rotates": false },
+ { "id": "mon_dark_wyrm", "fg": 6120, "rotates": false },
+ { "id": "mon_devourer", "fg": 6121, "rotates": false },
+ { "id": "mon_fungaloid_queen", "fg": 6106, "rotates": false },
+ { "id": "mon_fungaloid_seeder", "fg": 6104, "rotates": false },
+ { "id": "mon_fungaloid_tower", "fg": 6105, "rotates": false },
+ { "id": "mon_gas_zombie", "fg": 6123, "bg": [ ], "rotates": false },
+ { "id": "mon_jabberwock", "fg": 6099, "rotates": false },
+ { "id": "mon_mi_go_guard", "fg": 6128, "rotates": false },
+ { "id": "mon_mi_go_myrmidon", "fg": 6129, "rotates": false },
+ { "id": "mon_mi_go_slaver", "fg": 6130, "rotates": false },
+ { "id": "mon_mi_go_surgeon", "fg": 6131, "rotates": false },
+ { "id": "mon_nakedmolerat_giant", "fg": 6109, "rotates": false },
+ { "id": "mon_parasaurolophus", "fg": 6116, "rotates": false },
+ { "id": "mon_shoggoth", "fg": [ 6100, 6132 ], "rotates": false },
+ { "id": "mon_skeleton_hulk", "fg": 6097, "rotates": false },
+ { "id": "mon_spinosaurus", "fg": 6110, "rotates": false },
+ { "id": "mon_stegosaurus", "fg": 6113, "rotates": false },
+ { "id": "mon_triceratops", "fg": 6112, "rotates": false },
+ { "id": "mon_triffid_heart", "fg": 6107, "rotates": false },
+ { "id": "mon_triffid_queen", "fg": 6133, "bg": [ ], "rotates": false },
+ { "id": "mon_turret_searchlight", "fg": 6102, "rotates": false },
+ { "id": "mon_tyrannosaurus", "fg": 6111, "rotates": false },
+ { "id": "mon_utahraptor", "fg": 6117, "rotates": false },
+ { "id": "mon_yugg", "fg": 6108, "rotates": false },
+ { "id": "mon_zombie_corrosive", "fg": 6134, "bg": [ ], "rotates": false },
+ { "id": "mon_zombie_hulk", "fg": 6101, "rotates": false },
+ { "id": "mon_zombie_kevlar_2", "fg": 6138, "bg": [ ], "rotates": false },
+ { "id": "mon_zombie_nullfield", "fg": 6140, "bg": [ ], "rotates": false },
+ { "id": "overlay_wielded_pike", "fg": 6150, "rotates": false },
+ { "id": "overlay_wielded_qiang", "fg": 6150, "rotates": false },
+ { "id": "f_boulder_large", "fg": 6195, "rotates": false },
+ { "id": "t_leanto", "fg": 6191, "bg": 6214, "rotates": false },
+ { "id": "t_leanto_season_winter", "fg": 6191, "bg": 6217, "rotates": false },
+ { "id": "t_marloss_tree", "fg": 6179, "bg": 6180, "rotates": false },
+ { "id": "t_tree", "fg": 6158, "bg": 6214, "rotates": false },
+ { "id": "t_tree_almond_season_autumn", "fg": 6212, "bg": 6215, "rotates": false },
+ { "id": "t_tree_almond_season_spring", "fg": 6211, "bg": 6214, "rotates": false },
{
"id": [
"t_tree_apple_harvested_season_winter",
@@ -10519,8 +10666,8 @@
"t_tree_pear_season_winter",
"t_tree_plum_season_winter"
],
- "fg": 6090,
- "bg": 6137
+ "fg": 6170,
+ "bg": 6217
},
{
"id": [
@@ -10537,19 +10684,19 @@
"t_tree_pear",
"t_tree_plum"
],
- "fg": 6083,
- "bg": 6134
- },
- { "id": "t_tree_apple_season_autumn", "fg": 6086, "bg": 6135 },
- { "id": "t_tree_apricot_season_summer", "fg": 6088, "bg": 6136 },
- { "id": "t_tree_beech_season_autumn", "fg": 6126, "bg": 6135, "rotates": false },
- { "id": "t_tree_birch", "fg": 6101, "bg": 6134, "rotates": false },
- { "id": "t_tree_birch_harvested", "fg": 6102, "bg": 6134, "rotates": false },
- { "id": "t_tree_birch_harvested_season_winter", "fg": 6102, "bg": 6137, "rotates": false },
- { "id": "t_tree_birch_season_winter", "fg": 6103, "bg": 6137, "rotates": false },
- { "id": "t_tree_blackjack", "fg": 6091, "bg": 6134, "rotates": false },
- { "id": "t_tree_blackjack_season_winter", "fg": 6092, "bg": 6137, "rotates": false },
- { "id": "t_tree_cherry_season_summer", "fg": 6084, "bg": 6136 },
+ "fg": 6163,
+ "bg": 6214
+ },
+ { "id": "t_tree_apple_season_autumn", "fg": 6166, "bg": 6215 },
+ { "id": "t_tree_apricot_season_summer", "fg": 6168, "bg": 6216 },
+ { "id": "t_tree_beech_season_autumn", "fg": 6206, "bg": 6215, "rotates": false },
+ { "id": "t_tree_birch", "fg": 6181, "bg": 6214, "rotates": false },
+ { "id": "t_tree_birch_harvested", "fg": 6182, "bg": 6214, "rotates": false },
+ { "id": "t_tree_birch_harvested_season_winter", "fg": 6182, "bg": 6217, "rotates": false },
+ { "id": "t_tree_birch_season_winter", "fg": 6183, "bg": 6217, "rotates": false },
+ { "id": "t_tree_blackjack", "fg": 6171, "bg": 6214, "rotates": false },
+ { "id": "t_tree_blackjack_season_winter", "fg": 6172, "bg": 6217, "rotates": false },
+ { "id": "t_tree_cherry_season_summer", "fg": 6164, "bg": 6216 },
{
"id": [
"t_tree_chestnut_harvested_season_autumn",
@@ -10557,11 +10704,11 @@
"t_tree_pecan_harvested_season_autumn",
"t_tree_beech_harvested_season_autumn"
],
- "fg": 6121,
- "bg": 6135,
+ "fg": 6201,
+ "bg": 6215,
"rotates": false
},
- { "id": "t_tree_chestnut_season_autumn", "fg": 6123, "bg": 6135, "rotates": false },
+ { "id": "t_tree_chestnut_season_autumn", "fg": 6203, "bg": 6215, "rotates": false },
{
"id": [
"t_tree_chestnut_season_winter",
@@ -10573,29 +10720,29 @@
"t_tree_pecan_harvested_season_winter",
"t_tree_beech_harvested_season_winter"
],
- "fg": 6122,
- "bg": 6137,
+ "fg": 6202,
+ "bg": 6217,
"rotates": false
},
{
"id": [ "t_tree_chestnut", "t_tree_walnut", "t_tree_pecan", "t_tree_beech" ],
- "fg": 6120,
- "bg": 6134,
+ "fg": 6200,
+ "bg": 6214,
"rotates": false
},
- { "id": [ "t_tree_dead_season_winter", "t_tree_hickory_dead_season_winter" ], "fg": 6093, "bg": 6137 },
- { "id": [ "t_tree_dead", "t_tree_hickory_dead" ], "fg": 6093, "bg": 6134 },
- { "id": "t_tree_deadpine", "fg": 6094, "bg": 6134, "rotates": false },
- { "id": "t_tree_deadpine_season_winter", "fg": 6094, "bg": 6137, "rotates": false },
- { "id": "t_tree_elderberry_season_summer", "fg": 6077, "bg": 6136, "rotates": false },
- { "id": "t_tree_fungal", "fg": 6098, "bg": 6100, "rotates": false },
+ { "id": [ "t_tree_dead_season_winter", "t_tree_hickory_dead_season_winter" ], "fg": 6173, "bg": 6217 },
+ { "id": [ "t_tree_dead", "t_tree_hickory_dead" ], "fg": 6173, "bg": 6214 },
+ { "id": "t_tree_deadpine", "fg": 6174, "bg": 6214, "rotates": false },
+ { "id": "t_tree_deadpine_season_winter", "fg": 6174, "bg": 6217, "rotates": false },
+ { "id": "t_tree_elderberry_season_summer", "fg": 6157, "bg": 6216, "rotates": false },
+ { "id": "t_tree_fungal", "fg": 6178, "bg": 6180, "rotates": false },
{
"id": [ "t_tree_hazelnut_harvested", "t_tree_almond_harvested", "t_tree_pistachio_harvested" ],
- "fg": 6128,
- "bg": 6134,
+ "fg": 6208,
+ "bg": 6214,
"rotates": false
},
- { "id": "t_tree_hazelnut_season_autumn", "fg": 6130, "bg": 6135, "rotates": false },
+ { "id": "t_tree_hazelnut_season_autumn", "fg": 6210, "bg": 6215, "rotates": false },
{
"id": [
"t_tree_hazelnut_season_winter",
@@ -10605,26 +10752,26 @@
"t_tree_almond_harvested_season_winter",
"t_tree_pistachio_harvested_season_winter"
],
- "fg": 6129,
- "bg": 6137,
+ "fg": 6209,
+ "bg": 6217,
"rotates": false
},
- { "id": [ "t_tree_hazelnut", "t_tree_almond", "t_tree_pistachio" ], "fg": 6127, "bg": 6134, "rotates": false },
- { "id": "t_tree_hickory_season_autumn", "fg": 6096, "bg": 6135, "rotates": false },
+ { "id": [ "t_tree_hazelnut", "t_tree_almond", "t_tree_pistachio" ], "fg": 6207, "bg": 6214, "rotates": false },
+ { "id": "t_tree_hickory_season_autumn", "fg": 6176, "bg": 6215, "rotates": false },
{
"id": [ "t_tree_hickory_season_winter", "t_tree_hickory_harvested_season_winter" ],
- "fg": 6097,
- "bg": 6137,
+ "fg": 6177,
+ "bg": 6217,
"rotates": false
},
- { "id": [ "t_tree_hickory", "t_tree_hickory_harvested" ], "fg": 6095, "bg": 6134, "rotates": false },
- { "id": "t_tree_maple", "fg": 6104, "bg": 6134, "rotates": false },
- { "id": "t_tree_maple_season_autumn", "fg": 6106, "bg": 6135, "rotates": false },
- { "id": "t_tree_maple_season_winter", "fg": 6106, "bg": 6137, "rotates": false },
- { "id": "t_tree_maple_tapped", "fg": 6105, "bg": 6134 },
- { "id": "t_tree_maple_tapped_season_autumn", "fg": 6107, "bg": 6135 },
- { "id": "t_tree_maple_tapped_season_winter", "fg": 6107, "bg": 6137 },
- { "id": "t_tree_mulberry_season_summer", "fg": 6076, "bg": 6136, "rotates": false },
+ { "id": [ "t_tree_hickory", "t_tree_hickory_harvested" ], "fg": 6175, "bg": 6214, "rotates": false },
+ { "id": "t_tree_maple", "fg": 6184, "bg": 6214, "rotates": false },
+ { "id": "t_tree_maple_season_autumn", "fg": 6186, "bg": 6215, "rotates": false },
+ { "id": "t_tree_maple_season_winter", "fg": 6186, "bg": 6217, "rotates": false },
+ { "id": "t_tree_maple_tapped", "fg": 6185, "bg": 6214 },
+ { "id": "t_tree_maple_tapped_season_autumn", "fg": 6187, "bg": 6215 },
+ { "id": "t_tree_maple_tapped_season_winter", "fg": 6187, "bg": 6217 },
+ { "id": "t_tree_mulberry_season_summer", "fg": 6156, "bg": 6216, "rotates": false },
{
"id": [
"t_tree_mulberry_season_winter",
@@ -10632,97 +10779,97 @@
"t_tree_mulberry_harvested_season_winter",
"t_tree_elderberry_harvested_season_winter"
],
- "fg": 6075,
- "bg": 6137,
+ "fg": 6155,
+ "bg": 6217,
"rotates": false
},
{
"id": [ "t_tree_mulberry", "t_tree_elderberry", "t_tree_mulberry_harvested", "t_tree_elderberry_harvested" ],
- "fg": 6074,
- "bg": 6134,
+ "fg": 6154,
+ "bg": 6214,
"rotates": false
},
- { "id": "t_tree_peach_season_summer", "fg": 6085, "bg": 6136 },
- { "id": "t_tree_pear_season_autumn", "fg": 6087, "bg": 6136 },
- { "id": "t_tree_pecan_season_autumn", "fg": 6125, "bg": 6135, "rotates": false },
- { "id": "t_tree_pine", "fg": 6079, "bg": 6134, "rotates": false },
- { "id": "t_tree_pine_season_winter", "fg": 6082, "bg": 6137, "rotates": false },
- { "id": "t_tree_pistachio_season_autumn", "fg": 6133, "bg": 6135, "rotates": false },
- { "id": "t_tree_plum_season_summer", "fg": 6089, "bg": 6136 },
+ { "id": "t_tree_peach_season_summer", "fg": 6165, "bg": 6216 },
+ { "id": "t_tree_pear_season_autumn", "fg": 6167, "bg": 6216 },
+ { "id": "t_tree_pecan_season_autumn", "fg": 6205, "bg": 6215, "rotates": false },
+ { "id": "t_tree_pine", "fg": 6159, "bg": 6214, "rotates": false },
+ { "id": "t_tree_pine_season_winter", "fg": 6162, "bg": 6217, "rotates": false },
+ { "id": "t_tree_pistachio_season_autumn", "fg": 6213, "bg": 6215, "rotates": false },
+ { "id": "t_tree_plum_season_summer", "fg": 6169, "bg": 6216 },
{
"id": "t_tree_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6112 }, { "weight": 1, "sprite": 6114 } ],
- "bg": 6135,
+ "fg": [ { "weight": 1, "sprite": 6192 }, { "weight": 1, "sprite": 6194 } ],
+ "bg": 6215,
"rotates": false
},
{
"id": "t_tree_season_spring",
- "fg": [ { "weight": 1, "sprite": 6078 }, { "weight": 1, "sprite": 6114 } ],
- "bg": 6134,
+ "fg": [ { "weight": 1, "sprite": 6158 }, { "weight": 1, "sprite": 6194 } ],
+ "bg": 6214,
"rotates": false
},
- { "id": "t_tree_season_winter", "fg": 6081, "bg": 6137, "rotates": false },
- { "id": "t_tree_walnut_season_autumn", "fg": 6124, "bg": 6135, "rotates": false },
- { "id": "t_tree_willow", "fg": 6108, "bg": 6134, "rotates": false },
- { "id": "t_tree_willow_harvested", "fg": 6109, "bg": 6134, "rotates": false },
- { "id": "t_tree_willow_harvested_season_winter", "fg": 6109, "bg": 6137, "rotates": false },
- { "id": "t_tree_willow_season_winter", "fg": 6110, "bg": 6137, "rotates": false },
- { "id": "t_tree_young", "fg": 6080, "bg": 6134, "rotates": false },
- { "id": "t_tree_young_season_autumn", "fg": 6113, "bg": 6135, "rotates": false },
- { "id": "t_tree_young_season_winter", "fg": 6113, "bg": 6137, "rotates": false },
+ { "id": "t_tree_season_winter", "fg": 6161, "bg": 6217, "rotates": false },
+ { "id": "t_tree_walnut_season_autumn", "fg": 6204, "bg": 6215, "rotates": false },
+ { "id": "t_tree_willow", "fg": 6188, "bg": 6214, "rotates": false },
+ { "id": "t_tree_willow_harvested", "fg": 6189, "bg": 6214, "rotates": false },
+ { "id": "t_tree_willow_harvested_season_winter", "fg": 6189, "bg": 6217, "rotates": false },
+ { "id": "t_tree_willow_season_winter", "fg": 6190, "bg": 6217, "rotates": false },
+ { "id": "t_tree_young", "fg": 6160, "bg": 6214, "rotates": false },
+ { "id": "t_tree_young_season_autumn", "fg": 6193, "bg": 6215, "rotates": false },
+ { "id": "t_tree_young_season_winter", "fg": 6193, "bg": 6217, "rotates": false },
{
"id": "vp_solar_array2",
- "fg": 6118,
+ "fg": 6198,
"rotates": false,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 6119 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 6199 } ]
},
{
"id": "vp_solar_array2r",
- "fg": 6118,
+ "fg": 6198,
"rotates": false,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 6119 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 6199 } ]
},
{
"id": "vp_solar_array",
- "fg": 6116,
+ "fg": 6196,
"rotates": false,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 6117 } ]
- },
- { "id": "corpse_mon_afs_headless_horror", "fg": 5994 },
- { "id": "broken_claygolem", "fg": 5995 },
- { "id": "broken_irongolem", "fg": 6004 },
- { "id": "broken_plasticgolem", "fg": 6008 },
- { "id": "broken_stonegolem", "fg": 6015 },
- { "id": "mon_stonegolem", "fg": 6016 },
- { "id": "mon_frog_giant", "fg": 6042 },
- { "id": "mon_horse", "fg": 6044 },
- { "id": "mon_mech_combat", "fg": 6045 },
- { "id": "mon_mech_lifter", "fg": 6046 },
- { "id": "mon_mech_recon", "fg": 6047 },
- { "id": "mon_zombie_crushed_giant", "fg": 6055 },
- { "id": "mon_zombie_gasbag_impaler", "fg": 6056 },
- { "id": "mon_zombie_horse", "fg": 6057 },
- { "id": "mon_zombie_living_wall", "fg": 6059 },
- { "id": "rid_mon_horse", "fg": 6061 },
- { "id": "rid_mon_mech_combat", "fg": 6062 },
- { "id": "rid_mon_mech_lifter", "fg": 6063 },
- { "id": "rid_mon_mech_recon", "fg": 6064 },
- { "id": "mon_afs_headless_horror", "fg": 6065 },
- { "id": "corpse_mon_frog_mother", "fg": 6066 },
- { "id": "mon_frog_mother", "fg": 6067 },
- { "id": "corpse_mon_zpig_brute", "fg": 6068 },
- { "id": "mon_zpig_brute", "fg": 6069 },
- { "id": "overlay_worn_cape_fp", "fg": 6071 },
- { "id": "overlay_worn_foodperson_mask", "fg": 6072 },
- { "id": "overlay_worn_foodperson_mask_on", "fg": 6073 }
+ "additional_tiles": [ { "id": "broken", "fg": 6197 } ]
+ },
+ { "id": "corpse_mon_afs_headless_horror", "fg": 6074 },
+ { "id": "broken_claygolem", "fg": 6075 },
+ { "id": "broken_irongolem", "fg": 6084 },
+ { "id": "broken_plasticgolem", "fg": 6088 },
+ { "id": "broken_stonegolem", "fg": 6095 },
+ { "id": "mon_stonegolem", "fg": 6096 },
+ { "id": "mon_frog_giant", "fg": 6122 },
+ { "id": "mon_horse", "fg": 6124 },
+ { "id": "mon_mech_combat", "fg": 6125 },
+ { "id": "mon_mech_lifter", "fg": 6126 },
+ { "id": "mon_mech_recon", "fg": 6127 },
+ { "id": "mon_zombie_crushed_giant", "fg": 6135 },
+ { "id": "mon_zombie_gasbag_impaler", "fg": 6136 },
+ { "id": "mon_zombie_horse", "fg": 6137 },
+ { "id": "mon_zombie_living_wall", "fg": 6139 },
+ { "id": "rid_mon_horse", "fg": 6141 },
+ { "id": "rid_mon_mech_combat", "fg": 6142 },
+ { "id": "rid_mon_mech_lifter", "fg": 6143 },
+ { "id": "rid_mon_mech_recon", "fg": 6144 },
+ { "id": "mon_afs_headless_horror", "fg": 6145 },
+ { "id": "corpse_mon_frog_mother", "fg": 6146 },
+ { "id": "mon_frog_mother", "fg": 6147 },
+ { "id": "corpse_mon_zpig_brute", "fg": 6148 },
+ { "id": "mon_zpig_brute", "fg": 6149 },
+ { "id": "overlay_worn_cape_fp", "fg": 6151 },
+ { "id": "overlay_worn_foodperson_mask", "fg": 6152 },
+ { "id": "overlay_worn_foodperson_mask_on", "fg": 6153 }
]
},
{
"file": "huge.png",
- "//": "range 6144 to 6159",
+ "//": "range 6224 to 6239",
"sprite_width": 128,
"sprite_height": 128,
"sprite_offset_x": -64,
@@ -10730,40 +10877,40 @@
"tiles": [
{
"id": "mon_tankbot",
- "fg": [ { "weight": 10, "sprite": 6146 }, { "weight": 1, "sprite": 6147 }, { "weight": 3, "sprite": 6148 } ],
+ "fg": [ { "weight": 10, "sprite": 6226 }, { "weight": 1, "sprite": 6227 }, { "weight": 3, "sprite": 6228 } ],
"rotates": false
},
- { "id": "bot_tankbot", "fg": 6144 },
- { "id": "broken_tankbot", "fg": 6145 }
+ { "id": "bot_tankbot", "fg": 6224 },
+ { "id": "broken_tankbot", "fg": 6225 }
]
},
{
"file": "fillersmall.png",
- "//": "range 6160 to 6223",
+ "//": "range 6240 to 6303",
"sprite_width": 20,
"sprite_height": 20,
"sprite_offset_x": 0,
"sprite_offset_y": 0,
"tiles": [
- { "id": "jack", "fg": 6160 },
- { "id": "jack_small", "fg": 6162 },
- { "id": "jack_makeshift", "fg": 6161 },
- { "id": "acorns", "fg": 6176 },
- { "id": "chips", "fg": 6180 },
- { "id": "apple", "fg": 6177 },
- { "id": "banana", "fg": 6178 },
- { "id": "broccoli", "fg": 6179 },
- { "id": "corn", "fg": 6181 },
- { "id": "cucumber", "fg": 6182 },
- { "id": "grapes", "fg": 6183 },
- { "id": "lemon", "fg": 6185 },
- { "id": "onion", "fg": 6186 },
- { "id": "orange", "fg": 6187 },
- { "id": "pear", "fg": 6188 },
- { "id": "potato", "fg": 6189 },
- { "id": "pumpkin", "fg": 6190 },
- { "id": "tomato", "fg": 6193 },
- { "id": "juniper", "fg": 6184 },
+ { "id": "jack", "fg": 6240 },
+ { "id": "jack_small", "fg": 6242 },
+ { "id": "jack_makeshift", "fg": 6241 },
+ { "id": "acorns", "fg": 6256 },
+ { "id": "chips", "fg": 6260 },
+ { "id": "apple", "fg": 6257 },
+ { "id": "banana", "fg": 6258 },
+ { "id": "broccoli", "fg": 6259 },
+ { "id": "corn", "fg": 6261 },
+ { "id": "cucumber", "fg": 6262 },
+ { "id": "grapes", "fg": 6263 },
+ { "id": "lemon", "fg": 6265 },
+ { "id": "onion", "fg": 6266 },
+ { "id": "orange", "fg": 6267 },
+ { "id": "pear", "fg": 6268 },
+ { "id": "potato", "fg": 6269 },
+ { "id": "pumpkin", "fg": 6270 },
+ { "id": "tomato", "fg": 6273 },
+ { "id": "juniper", "fg": 6264 },
{
"id": [
"seed_hops",
@@ -10831,180 +10978,180 @@
"seed_mulberries",
"seed_elderberries"
],
- "fg": 6191
- },
- { "id": "straw_pile", "fg": 6192 },
- { "id": "wheat", "fg": 6194 },
- { "id": "withered", "fg": 6195 },
- { "id": "bee_balm", "fg": 6196 },
- { "id": "carrot_wild", "fg": 6197 },
- { "id": "dogbane", "fg": 6198 },
- { "id": "mugwort", "fg": 6199 },
- { "id": "thyme", "fg": 6200 },
- { "id": "veggy_wild", "fg": 6201 },
- { "id": "wild_herbs", "fg": 6202 },
- { "id": "feces_manure", "fg": 6206 },
- { "id": "feces_bird", "fg": 6203 },
- { "id": "feces_cow", "fg": 6204 },
- { "id": "feces_dog", "fg": 6205 },
- { "id": "feces_roach", "fg": 6207 },
- { "id": "brick", "fg": 6208 },
- { "id": "scrap", "fg": 6211 },
- { "id": "e_scrap", "fg": 6210 },
- { "id": "steel_chunk", "fg": 6212 },
- { "id": "steel_lump", "fg": 6213 },
- { "id": "wire", "fg": 6214 },
- { "id": "cable", "fg": 6209 },
- { "id": "mbag", "fg": 6163 },
- { "id": "receiver", "fg": 6164 },
- { "id": "scarf", "fg": 6165 },
- { "id": "slingpack", "fg": 6166 },
- { "id": "baseball", "fg": 6167 },
- { "id": "beach_volleyball", "fg": 6168 },
- { "id": "bowling_ball", "fg": 6169 },
- { "id": "football", "fg": 6170 },
- { "id": "indoor_volleyball", "fg": 6171 },
- { "id": "misc_repairkit", "fg": 6172 },
- { "id": "puck", "fg": 6173 },
- { "id": "tourniquet_upper", "fg": 6174 },
- { "id": "wristwatch", "fg": 6175 },
- { "id": "wire_barbed", "fg": 6215 }
+ "fg": 6271
+ },
+ { "id": "straw_pile", "fg": 6272 },
+ { "id": "wheat", "fg": 6274 },
+ { "id": "withered", "fg": 6275 },
+ { "id": "bee_balm", "fg": 6276 },
+ { "id": "carrot_wild", "fg": 6277 },
+ { "id": "dogbane", "fg": 6278 },
+ { "id": "mugwort", "fg": 6279 },
+ { "id": "thyme", "fg": 6280 },
+ { "id": "veggy_wild", "fg": 6281 },
+ { "id": "wild_herbs", "fg": 6282 },
+ { "id": "feces_manure", "fg": 6286 },
+ { "id": "feces_bird", "fg": 6283 },
+ { "id": "feces_cow", "fg": 6284 },
+ { "id": "feces_dog", "fg": 6285 },
+ { "id": "feces_roach", "fg": 6287 },
+ { "id": "brick", "fg": 6288 },
+ { "id": "scrap", "fg": 6291 },
+ { "id": "e_scrap", "fg": 6290 },
+ { "id": "steel_chunk", "fg": 6292 },
+ { "id": "steel_lump", "fg": 6293 },
+ { "id": "wire", "fg": 6294 },
+ { "id": "cable", "fg": 6289 },
+ { "id": "mbag", "fg": 6243 },
+ { "id": "receiver", "fg": 6244 },
+ { "id": "scarf", "fg": 6245 },
+ { "id": "slingpack", "fg": 6246 },
+ { "id": "baseball", "fg": 6247 },
+ { "id": "beach_volleyball", "fg": 6248 },
+ { "id": "bowling_ball", "fg": 6249 },
+ { "id": "football", "fg": 6250 },
+ { "id": "indoor_volleyball", "fg": 6251 },
+ { "id": "misc_repairkit", "fg": 6252 },
+ { "id": "puck", "fg": 6253 },
+ { "id": "tourniquet_upper", "fg": 6254 },
+ { "id": "wristwatch", "fg": 6255 },
+ { "id": "wire_barbed", "fg": 6295 }
]
},
{
"file": "fillerlarge.png",
- "//": "range 6224 to 6239",
+ "//": "range 6304 to 6319",
"sprite_width": 64,
"sprite_height": 64,
"sprite_offset_x": -16,
"sprite_offset_y": -32,
"tiles": [
- { "id": "mon_smoker_brute", "fg": 6226, "bg": 6225 },
+ { "id": "mon_smoker_brute", "fg": 6306, "bg": 6305 },
{
"id": "mon_exodii_quad",
"fg": [
- { "weight": 15, "sprite": 6227 },
- { "weight": 10, "sprite": 6228 },
- { "weight": 15, "sprite": 6229 },
- { "weight": 15, "sprite": 6230 }
+ { "weight": 15, "sprite": 6307 },
+ { "weight": 10, "sprite": 6308 },
+ { "weight": 15, "sprite": 6309 },
+ { "weight": 15, "sprite": 6310 }
],
- "bg": 6224
+ "bg": 6304
},
{
"id": "mon_exodii_turret",
"fg": [
- { "weight": 15, "sprite": 6231 },
- { "weight": 5, "sprite": 6232 },
- { "weight": 15, "sprite": 6233 },
- { "weight": 15, "sprite": 6234 }
+ { "weight": 15, "sprite": 6311 },
+ { "weight": 5, "sprite": 6312 },
+ { "weight": 15, "sprite": 6313 },
+ { "weight": 15, "sprite": 6314 }
],
- "bg": 6225
+ "bg": 6305
},
- { "id": "mon_dog_zombie_hulk", "fg": 6235, "bg": 6225 },
- { "id": "mon_zombie_brute_winged", "fg": 6237, "bg": 6224 }
+ { "id": "mon_dog_zombie_hulk", "fg": 6315, "bg": 6305 },
+ { "id": "mon_zombie_brute_winged", "fg": 6317, "bg": 6304 }
]
},
{
"file": "fillernormal.png",
- "//": "range 6240 to 6287",
+ "//": "range 6320 to 6367",
"tiles": [
- { "id": [ "ammolink223", "ammolink308", "ammolink50" ], "fg": 6240 },
+ { "id": [ "ammolink223", "ammolink308", "ammolink50" ], "fg": 6320 },
{
"id": "mon_cat_bengal",
- "fg": [ { "weight": 1, "sprite": 6246 }, { "weight": 1, "sprite": 6245 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6326 }, { "weight": 1, "sprite": 6325 } ],
+ "bg": 3157
},
{
"id": "mon_cat_calico",
- "fg": [ { "weight": 1, "sprite": 6249 }, { "weight": 1, "sprite": 6248 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6329 }, { "weight": 1, "sprite": 6328 } ],
+ "bg": 3157
},
{
"id": "mon_cat_chonker",
- "fg": [ { "weight": 1, "sprite": 6252 }, { "weight": 1, "sprite": 6251 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6332 }, { "weight": 1, "sprite": 6331 } ],
+ "bg": 3157
},
{
"id": "mon_cat_devon_rex",
- "fg": [ { "weight": 1, "sprite": 6255 }, { "weight": 1, "sprite": 6254 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6335 }, { "weight": 1, "sprite": 6334 } ],
+ "bg": 3157
},
{
"id": "mon_cat_longhair",
- "fg": [ { "weight": 1, "sprite": 6258 }, { "weight": 1, "sprite": 6257 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6338 }, { "weight": 1, "sprite": 6337 } ],
+ "bg": 3157
},
{
"id": "mon_cat_maine_coon",
- "fg": [ { "weight": 1, "sprite": 6261 }, { "weight": 1, "sprite": 6260 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6341 }, { "weight": 1, "sprite": 6340 } ],
+ "bg": 3157
},
{
"id": "mon_cat_persian",
- "fg": [ { "weight": 1, "sprite": 6264 }, { "weight": 1, "sprite": 6263 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6344 }, { "weight": 1, "sprite": 6343 } ],
+ "bg": 3157
},
{
"id": "mon_cat_siamese",
- "fg": [ { "weight": 1, "sprite": 6268 }, { "weight": 1, "sprite": 6267 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6348 }, { "weight": 1, "sprite": 6347 } ],
+ "bg": 3157
},
{
"id": "mon_cat_sphynx",
- "fg": [ { "weight": 1, "sprite": 6271 }, { "weight": 1, "sprite": 6270 } ],
- "bg": 3146
+ "fg": [ { "weight": 1, "sprite": 6351 }, { "weight": 1, "sprite": 6350 } ],
+ "bg": 3157
},
{
"id": "mon_cat_tabby",
- "fg": [ { "weight": 1, "sprite": 6274 }, { "weight": 1, "sprite": 6273 } ],
- "bg": 3146
- },
- { "id": "mon_cat_kitten", "fg": 6265, "bg": 3146 },
- { "id": "mon_cat_bengal_kitten", "fg": 6244, "bg": 3146 },
- { "id": "mon_cat_calico_kitten", "fg": 6247, "bg": 3146 },
- { "id": "mon_cat_chonker_kitten", "fg": 6250, "bg": 3146 },
- { "id": "mon_cat_devon_rex_kitten", "fg": 6253, "bg": 3146 },
- { "id": "mon_cat_longhair_kitten", "fg": 6256, "bg": 3146 },
- { "id": "mon_cat_maine_coon_kitten", "fg": 6259, "bg": 3146 },
- { "id": "mon_cat_persian_kitten", "fg": 6262, "bg": 3146 },
- { "id": "mon_cat_siamese_kitten", "fg": 6266, "bg": 3146 },
- { "id": "mon_cat_sphynx_kitten", "fg": 6269, "bg": 3146 },
- { "id": "mon_cat_tabby_kitten", "fg": 6272, "bg": 3146 },
- { "id": "mon_dog_beagle", "fg": 6275, "bg": 3146 },
- { "id": "mon_dog_boxer", "fg": 6276, "bg": 3145 },
- { "id": "mon_dog_gshepherd", "fg": 6278, "bg": 3145 },
- { "id": "mon_dog_dachshund", "fg": 6277, "bg": 3145 },
- { "id": "mon_spawn_raptor", "fg": 6279, "bg": 3145 },
- { "id": "mon_crow_mutant_small", "fg": 6280, "bg": 3145 },
- { "id": "clay_pot", "fg": 6241 },
- { "id": "mic_stand_tall", "fg": 6242 },
- { "id": "spike", "fg": 6243 }
+ "fg": [ { "weight": 1, "sprite": 6354 }, { "weight": 1, "sprite": 6353 } ],
+ "bg": 3157
+ },
+ { "id": "mon_cat_kitten", "fg": 6345, "bg": 3157 },
+ { "id": "mon_cat_bengal_kitten", "fg": 6324, "bg": 3157 },
+ { "id": "mon_cat_calico_kitten", "fg": 6327, "bg": 3157 },
+ { "id": "mon_cat_chonker_kitten", "fg": 6330, "bg": 3157 },
+ { "id": "mon_cat_devon_rex_kitten", "fg": 6333, "bg": 3157 },
+ { "id": "mon_cat_longhair_kitten", "fg": 6336, "bg": 3157 },
+ { "id": "mon_cat_maine_coon_kitten", "fg": 6339, "bg": 3157 },
+ { "id": "mon_cat_persian_kitten", "fg": 6342, "bg": 3157 },
+ { "id": "mon_cat_siamese_kitten", "fg": 6346, "bg": 3157 },
+ { "id": "mon_cat_sphynx_kitten", "fg": 6349, "bg": 3157 },
+ { "id": "mon_cat_tabby_kitten", "fg": 6352, "bg": 3157 },
+ { "id": "mon_dog_beagle", "fg": 6355, "bg": 3157 },
+ { "id": "mon_dog_boxer", "fg": 6356, "bg": 3156 },
+ { "id": "mon_dog_gshepherd", "fg": 6358, "bg": 3156 },
+ { "id": "mon_dog_dachshund", "fg": 6357, "bg": 3156 },
+ { "id": "mon_spawn_raptor", "fg": 6359, "bg": 3156 },
+ { "id": "mon_crow_mutant_small", "fg": 6360, "bg": 3156 },
+ { "id": "clay_pot", "fg": 6321 },
+ { "id": "mic_stand_tall", "fg": 6322 },
+ { "id": "spike", "fg": 6323 }
]
},
{
"file": "fillertall.png",
- "//": "range 6288 to 6303",
+ "//": "range 6368 to 6383",
"sprite_width": 32,
"sprite_height": 64,
"sprite_offset_x": 0,
"sprite_offset_y": -32,
"tiles": [
- { "id": "mon_zombie_phase_skulker", "fg": 6290, "bg": 6288 },
- { "id": "mon_zombie_phase_shrike", "fg": 6289, "bg": 6288 },
+ { "id": "mon_zombie_phase_skulker", "fg": 6370, "bg": 6368 },
+ { "id": "mon_zombie_phase_shrike", "fg": 6369, "bg": 6368 },
{
"id": "mon_exodii_worker",
"fg": [
- { "weight": 15, "sprite": 6291 },
- { "weight": 15, "sprite": 6292 },
- { "weight": 10, "sprite": 6293 },
- { "weight": 10, "sprite": 6294 }
+ { "weight": 15, "sprite": 6371 },
+ { "weight": 15, "sprite": 6372 },
+ { "weight": 10, "sprite": 6373 },
+ { "weight": 10, "sprite": 6374 }
],
- "bg": 6288
+ "bg": 6368
},
- { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 6295, "bg": 6288 },
- { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 6296, "bg": 6288 },
- { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 6297, "bg": 6288 },
- { "id": "mon_zombie_winged", "fg": 6298, "bg": 6288 }
+ { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 6375, "bg": 6368 },
+ { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 6376, "bg": 6368 },
+ { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 6377, "bg": 6368 },
+ { "id": "mon_zombie_winged", "fg": 6378, "bg": 6368 }
]
},
{
diff --git a/gfx/MshockXotto+/tiles.png b/gfx/MshockXotto+/tiles.png
index 4f30aad219f09..cdd8f36f0fcdf 100644
Binary files a/gfx/MshockXotto+/tiles.png and b/gfx/MshockXotto+/tiles.png differ
diff --git a/gfx/MshockXotto+/wide.png b/gfx/MshockXotto+/wide.png
new file mode 100644
index 0000000000000..40873426a2cd4
Binary files /dev/null and b/gfx/MshockXotto+/wide.png differ
diff --git a/gfx/UltimateCataclysm/fillerhoder.png b/gfx/UltimateCataclysm/fillerhoder.png
index 1700c400d73ed..fc22c821cd633 100644
Binary files a/gfx/UltimateCataclysm/fillerhoder.png and b/gfx/UltimateCataclysm/fillerhoder.png differ
diff --git a/gfx/UltimateCataclysm/huge.png b/gfx/UltimateCataclysm/huge.png
index 3ca25d8a36963..4c1a10c535bf5 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 477e08b549d3d..0bb372bcd498a 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
new file mode 100644
index 0000000000000..8aa47b65e1549
Binary files /dev/null and b/gfx/UltimateCataclysm/human_body_plus.png differ
diff --git a/gfx/UltimateCataclysm/incomplete.png b/gfx/UltimateCataclysm/incomplete.png
index 018adac5e9f4f..a84b780d0eca2 100644
Binary files a/gfx/UltimateCataclysm/incomplete.png and b/gfx/UltimateCataclysm/incomplete.png differ
diff --git a/gfx/UltimateCataclysm/large.png b/gfx/UltimateCataclysm/large.png
index 57a37c9a27263..990b7fe690ce0 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 e24d6fe0376b2..6b21cc22af6ce 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 82a8c6ffd4e5a..e6add19b308d2 100644
Binary files a/gfx/UltimateCataclysm/small.png and b/gfx/UltimateCataclysm/small.png differ
diff --git a/gfx/UltimateCataclysm/tall.png b/gfx/UltimateCataclysm/tall.png
index 513fb2ffcb85e..864e7a156bdfe 100644
Binary files a/gfx/UltimateCataclysm/tall.png and b/gfx/UltimateCataclysm/tall.png differ
diff --git a/gfx/UltimateCataclysm/tile_config.json b/gfx/UltimateCataclysm/tile_config.json
index 9e196b09d7695..f0f3ab14e6cd8 100644
--- a/gfx/UltimateCataclysm/tile_config.json
+++ b/gfx/UltimateCataclysm/tile_config.json
@@ -5,46 +5,46 @@
"tiles-new": [
{
"file": "small.png",
- "//": "range 1 to 1071",
+ "//": "range 1 to 1087",
"sprite_width": 20,
"sprite_height": 20,
"sprite_offset_x": 6,
"sprite_offset_y": 0,
"tiles": [
- { "id": [ "plastic_plate", "soap_holder" ], "fg": 113 },
+ { "id": [ "plastic_plate", "soap_holder" ], "fg": 112 },
{ "id": "RAM", "fg": 2 },
{ "id": [ "beans_cooked", "can_beans" ], "fg": 3 },
- { "id": "ceramic_plate", "fg": 113 },
- { "id": [ "fancy_glasses_bifocal", "fancy_glasses_eye", "fancy_glasses_reading" ], "fg": 137 },
- { "id": [ "glasses_eye", "glasses_reading" ], "fg": 157 },
- { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 175 },
- { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 236 },
- { "id": "helmet_motor", "fg": 266 },
- { "id": "katana", "fg": 267 },
- { "id": "katana_fake", "fg": 267 },
- { "id": "katana_inferior", "fg": 267 },
- { "id": "223_casing", "fg": 268 },
- { "id": "40mm_casing", "fg": 269 },
- { "id": "40x46mm_m118_casing", "fg": 269 },
- { "id": "50_casing", "fg": 270 },
- { "id": "9mm_casing", "fg": 271 },
- { "id": "arrow_cf", "fg": 272 },
- { "id": "arrow_exploding", "fg": 273 },
- { "id": "arrow_field_point_fletched", "fg": 274 },
- { "id": "arrow_fire_hardened_fletched", "fg": 275 },
- { "id": "flamable_arrow", "fg": 289 },
- { "id": "arrow_flamming", "fg": 276 },
- { "id": "arrow_heavy_fire_hardened_fletched", "fg": 277 },
- { "id": "arrow_metal", "fg": 278 },
- { "id": "arrow_metal_sharpened_fletched", "fg": 279 },
- { "id": "arrow_plastic", "fg": 280 },
- { "id": "arrow_small_game_fletched", "fg": 281 },
- { "id": "arrow_wood", "fg": 282 },
- { "id": "arrow_wood_heavy", "fg": 283 },
- { "id": "bolt_cf", "fg": 284 },
- { "id": "bolt_explosive", "fg": 285 },
- { "id": "bolt_metal", "fg": 286 },
- { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 287 },
+ { "id": "ceramic_plate", "fg": 112 },
+ { "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": [
"bolt_wood",
@@ -55,61 +55,62 @@
"bolt_wood_bodkin",
"bolt_wood_small_game"
],
- "fg": 288
- },
- { "id": "shot_hull", "fg": 290 },
- { "id": [ "TDI", "TDI_10" ], "fg": 305 },
- { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 336 },
- { "id": [ "hptjcp", "hptjhp" ], "fg": 342 },
- { "id": [ "m1911", "m1911a1_38super" ], "fg": 353 },
- { "id": "basket_laundry", "fg": 426 },
- { "id": "heavy_battery_cell", "fg": 428 },
- { "id": "heavy_plus_battery_cell", "fg": 428 },
- { "id": "heavy_disposable_cell", "fg": 428 },
- { "id": "heavy_atomic_battery_cell", "fg": 427 },
- { "id": "light_battery_cell", "fg": 430 },
- { "id": "light_minus_battery_cell", "fg": 432 },
- { "id": "light_plus_battery_cell", "fg": 430 },
- { "id": "light_disposable_cell", "fg": 430 },
- { "id": "light_atomic_battery_cell", "fg": 429 },
- { "id": "light_minus_atomic_battery_cell", "fg": 431 },
- { "id": "medium_battery_cell", "fg": 434 },
- { "id": "medium_plus_battery_cell", "fg": 434 },
- { "id": "medium_disposable_cell", "fg": 434 },
- { "id": "medium_atomic_battery_cell", "fg": 433 },
- { "id": "bead_bracelet", "fg": 435 },
- { "id": "bone", "fg": 436 },
- { "id": "bone_human", "fg": 437 },
- { "id": "bone_tainted", "fg": 438 },
- { "id": "SICP", "fg": 439 },
- { "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": 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": 438 },
+ { "id": "book_fict_soft_tpl", "fg": 448 },
+ { "id": "novel_adventure", "fg": 448 },
+ { "id": "novel_buddy", "fg": 449 },
+ { "id": "novel_coa", "fg": 450 },
+ { "id": "novel_coa2", "fg": 451 },
+ { "id": "novel_crime", "fg": 452 },
+ { "id": "novel_crime2", "fg": 453 },
+ { "id": "novel_drama", "fg": 454 },
+ { "id": "novel_erotic", "fg": 455 },
+ { "id": "novel_experimental", "fg": 456 },
+ { "id": "novel_fantasy", "fg": 457 },
+ { "id": "novel_horror", "fg": 458 },
+ { "id": "novel_mystery", "fg": 459 },
+ { "id": "novel_pulp", "fg": 460 },
+ { "id": "novel_road", "fg": 461 },
+ { "id": "novel_romance", "fg": 462 },
+ { "id": "novel_samurai", "fg": 463 },
+ { "id": "novel_satire", "fg": 464 },
+ { "id": "novel_scifi", "fg": 465 },
+ { "id": "novel_sports", "fg": 466 },
+ { "id": "novel_spy", "fg": 467 },
+ { "id": "novel_swash", "fg": 468 },
+ { "id": "novel_thriller", "fg": 469 },
+ { "id": "novel_tragedy", "fg": 470 },
+ { "id": "novel_war", "fg": 471 },
+ { "id": "novel_war2", "fg": 472 },
+ { "id": "novel_western", "fg": 473 },
{
"id": [
"adv_chemistry",
@@ -129,7 +130,7 @@
"modern_tanner",
"repeater_mod_guide"
],
- "fg": 442
+ "fg": 440
},
{
"id": [
@@ -150,7 +151,7 @@
"textbook_robots",
"textbook_armschina"
],
- "fg": 449
+ "fg": 447
},
{
"id": [
@@ -165,7 +166,7 @@
"cookbook_daintydishes",
"cookbook_liverforkids"
],
- "fg": 443
+ "fg": 441
},
{
"id": [
@@ -178,7 +179,7 @@
"recipe_melee",
"recipe_labchem"
],
- "fg": 447
+ "fg": 445
},
{
"id": [
@@ -195,9 +196,9 @@
"recipe_creepy",
"recipe_maiar"
],
- "fg": 447
+ "fg": 445
},
- { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 446 },
+ { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 444 },
{
"id": [
"mag_rifle",
@@ -221,7 +222,7 @@
"mag_swimming",
"mag_news"
],
- "fg": 444
+ "fg": 442
},
{
"id": [
@@ -238,7 +239,7 @@
"schematics_searchlight",
"schematics_secubot"
],
- "fg": 448
+ "fg": 446
},
{
"id": [
@@ -259,110 +260,113 @@
"manual_shotgun",
"manual_fabrication"
],
- "fg": 445
+ "fg": 443
},
- { "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": 555 },
- { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 556 },
- { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 570 },
- { "id": [ "flour", "bread_flour" ], "fg": 592 },
- { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 623 },
- { "id": [ "microscope", "microscope_dissecting" ], "fg": 617 },
- { "id": "digging_stick", "fg": 641 },
- { "id": "i_staff", "fg": 678 },
- { "id": "shock_staff", "fg": 690 },
- { "id": "q_staff", "fg": 691 },
- { "id": "scarf_fur", "fg": 695 },
- { "id": "knit_scarf", "fg": 679 },
- { "id": "scarf_fur_long", "fg": 696 },
- { "id": "long_knit_scarf", "fg": 680 },
- { "id": "long_patchwork_scarf", "fg": 681 },
- { "id": "scarf_long", "fg": 697 },
- { "id": "patchwork_scarf", "fg": 689 },
- { "id": "scarf", "fg": 694 },
- { "id": "scarf_fur_loose", "fg": 695 },
- { "id": "knit_scarf_loose", "fg": 679 },
- { "id": "scarf_fur_long_loose", "fg": 696 },
- { "id": "long_knit_scarf_loose", "fg": 680 },
- { "id": "long_patchwork_scarf_loose", "fg": 681 },
- { "id": "scarf_long_loose", "fg": 697 },
- { "id": "patchwork_scarf_loose", "fg": 689 },
- { "id": "scarf_loose", "fg": 694 },
- { "id": "ceramic_cup", "fg": 709 },
- { "id": "ceramic_mug", "fg": 710 },
- { "id": "ceramic_shard", "fg": 711 },
- { "id": "chain", "fg": 712 },
- { "id": "clay_lump", "fg": 715 },
- { "id": "bag_plastic", "fg": 716 },
- { "id": "bag_zipper", "fg": 717 },
- { "id": "bottle_glass", "fg": 718 },
- { "id": "bottle_plastic", "fg": 719 },
- { "id": "bottle_plastic_small", "fg": 720 },
- { "id": "box_cigarette", "fg": 721 },
- { "id": "box_small", "fg": 722 },
- { "id": "can_drink", "fg": 723 },
- { "id": "can_drink_unsealed", "fg": 724 },
- { "id": [ "glass", "base_glass_dish" ], "fg": 725 },
- { "id": "jar_3l_glass", "fg": 726 },
- { "id": "jar_3l_glass_sealed", "fg": 727 },
- { "id": "jar_glass", "fg": 728 },
- { "id": "jar_glass_sealed", "fg": 729 },
- { "id": "jug_plastic", "fg": 730 },
- { "id": "wrapper", "fg": 731 },
- { "id": "cudgel", "fg": 732 },
- { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 791 },
- { "id": [ "waffles", "fruit_waffles" ], "fg": 795 },
- { "id": [ "cookies", "crackers", "biscuit" ], "fg": 787 },
- { "id": [ "cake2", "cake3", "space_cake" ], "fg": 786 },
- { "id": "hinge", "fg": 839 },
- { "id": "inhaler", "fg": 840 },
- { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 841 },
- { "id": "cig_butt", "fg": 868 },
- { "id": "joint", "fg": 871 },
- { "id": "joint_lit", "fg": 872 },
- { "id": "joint_roach", "fg": 873 },
- { "id": "aspirin", "fg": 865 },
- { "id": "bandages", "fg": 866 },
- { "id": "syringe", "fg": 877 },
- { "id": "antibiotics", "fg": 862 },
- { "id": "weak_antibiotic", "fg": 880 },
- { "id": "strong_antibiotic", "fg": 876 },
- { "id": "vitamins", "fg": 879 },
- { "id": "gummy_vitamins", "fg": 869 },
- { "id": "calcium_tablet", "fg": 867 },
- { "id": "oxycodone", "fg": 874 },
- { "id": "tramadol", "fg": 878 },
- { "id": "codeine", "fg": 893 },
- { "id": "prussian_blue", "fg": 875 },
- { "id": "iodine", "fg": 870 },
- { "id": "antiparasitic", "fg": 864 },
- { "id": "antifungal", "fg": 863 },
- { "id": "money_bundle", "fg": 881 },
- { "id": "mp3", "fg": 882 },
- { "id": "permanent_marker", "fg": 914 },
- { "id": "pipe", "fg": 916 },
- { "id": "cu_pipe", "fg": 915 },
- { "id": "acorns", "fg": 917 },
- { "id": "chips", "fg": 921 },
- { "id": "apple", "fg": 918 },
- { "id": "banana", "fg": 919 },
- { "id": "broccoli", "fg": 920 },
- { "id": "corn", "fg": 922 },
- { "id": "cucumber", "fg": 923 },
- { "id": "egg_bird", "fg": 924 },
- { "id": "grapes", "fg": 925 },
- { "id": "lemon", "fg": 929 },
- { "id": "onion", "fg": 930 },
- { "id": "orange", "fg": 931 },
- { "id": "pear", "fg": 932 },
- { "id": "potato", "fg": 933 },
- { "id": "pumpkin", "fg": 934 },
- { "id": "tomato", "fg": 937 },
- { "id": "hickory_nut", "fg": 926 },
- { "id": "hickory_root", "fg": 927 },
- { "id": "juniper", "fg": 928 },
+ { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 439 },
+ { "id": "bottle_twoliter", "fg": 474 },
+ { "id": "bowl_pewter", "fg": 475 },
+ { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 566 },
+ { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 567 },
+ { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 582 },
+ { "id": [ "flour", "bread_flour" ], "fg": 605 },
+ { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 636 },
+ { "id": [ "microscope", "microscope_dissecting" ], "fg": 630 },
+ { "id": "digging_stick", "fg": 654 },
+ { "id": "sword_cane", "fg": 713 },
+ { "id": "hollow_cane", "fg": 690 },
+ { "id": "cane", "fg": 716 },
+ { "id": "i_staff", "fg": 692 },
+ { "id": "shock_staff", "fg": 705 },
+ { "id": "q_staff", "fg": 706 },
+ { "id": "scarf_fur", "fg": 710 },
+ { "id": "knit_scarf", "fg": 693 },
+ { "id": "scarf_fur_long", "fg": 711 },
+ { "id": "long_knit_scarf", "fg": 694 },
+ { "id": "long_patchwork_scarf", "fg": 695 },
+ { "id": "scarf_long", "fg": 712 },
+ { "id": "patchwork_scarf", "fg": 703 },
+ { "id": "scarf", "fg": 709 },
+ { "id": "scarf_fur_loose", "fg": 710 },
+ { "id": "knit_scarf_loose", "fg": 693 },
+ { "id": "scarf_fur_long_loose", "fg": 711 },
+ { "id": "long_knit_scarf_loose", "fg": 694 },
+ { "id": "long_patchwork_scarf_loose", "fg": 695 },
+ { "id": "scarf_long_loose", "fg": 712 },
+ { "id": "patchwork_scarf_loose", "fg": 703 },
+ { "id": "scarf_loose", "fg": 709 },
+ { "id": "ceramic_cup", "fg": 726 },
+ { "id": "ceramic_mug", "fg": 727 },
+ { "id": "ceramic_shard", "fg": 728 },
+ { "id": "chain", "fg": 729 },
+ { "id": "clay_lump", "fg": 732 },
+ { "id": "bag_plastic", "fg": 733 },
+ { "id": "bag_zipper", "fg": 734 },
+ { "id": "bottle_glass", "fg": 735 },
+ { "id": "bottle_plastic", "fg": 736 },
+ { "id": "bottle_plastic_small", "fg": 737 },
+ { "id": "box_cigarette", "fg": 738 },
+ { "id": "box_small", "fg": 739 },
+ { "id": "can_drink", "fg": 740 },
+ { "id": "can_drink_unsealed", "fg": 741 },
+ { "id": [ "glass", "base_glass_dish" ], "fg": 742 },
+ { "id": "jar_3l_glass", "fg": 743 },
+ { "id": "jar_3l_glass_sealed", "fg": 744 },
+ { "id": "jar_glass", "fg": 745 },
+ { "id": "jar_glass_sealed", "fg": 746 },
+ { "id": "jug_plastic", "fg": 747 },
+ { "id": "wrapper", "fg": 748 },
+ { "id": "cudgel", "fg": 749 },
+ { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 808 },
+ { "id": [ "waffles", "fruit_waffles" ], "fg": 812 },
+ { "id": [ "cookies", "crackers", "biscuit" ], "fg": 804 },
+ { "id": [ "cake2", "cake3", "space_cake" ], "fg": 803 },
+ { "id": "hinge", "fg": 856 },
+ { "id": "inhaler", "fg": 857 },
+ { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 858 },
+ { "id": "cig_butt", "fg": 885 },
+ { "id": "joint", "fg": 888 },
+ { "id": "joint_lit", "fg": 889 },
+ { "id": "joint_roach", "fg": 890 },
+ { "id": "aspirin", "fg": 882 },
+ { "id": "bandages", "fg": 883 },
+ { "id": "syringe", "fg": 894 },
+ { "id": "antibiotics", "fg": 879 },
+ { "id": "weak_antibiotic", "fg": 897 },
+ { "id": "strong_antibiotic", "fg": 893 },
+ { "id": "vitamins", "fg": 896 },
+ { "id": "gummy_vitamins", "fg": 886 },
+ { "id": "calcium_tablet", "fg": 884 },
+ { "id": "oxycodone", "fg": 891 },
+ { "id": "tramadol", "fg": 895 },
+ { "id": "codeine", "fg": 910 },
+ { "id": "prussian_blue", "fg": 892 },
+ { "id": "iodine", "fg": 887 },
+ { "id": "antiparasitic", "fg": 881 },
+ { "id": "antifungal", "fg": 880 },
+ { "id": "money_bundle", "fg": 898 },
+ { "id": "mp3", "fg": 899 },
+ { "id": "permanent_marker", "fg": 934 },
+ { "id": "pipe", "fg": 936 },
+ { "id": "cu_pipe", "fg": 935 },
+ { "id": "acorns", "fg": 937 },
+ { "id": "chips", "fg": 941 },
+ { "id": "apple", "fg": 938 },
+ { "id": "banana", "fg": 939 },
+ { "id": "broccoli", "fg": 940 },
+ { "id": "corn", "fg": 942 },
+ { "id": "cucumber", "fg": 943 },
+ { "id": "egg_bird", "fg": 944 },
+ { "id": "grapes", "fg": 945 },
+ { "id": "lemon", "fg": 949 },
+ { "id": "onion", "fg": 950 },
+ { "id": "orange", "fg": 951 },
+ { "id": "pear", "fg": 952 },
+ { "id": "potato", "fg": 953 },
+ { "id": "pumpkin", "fg": 954 },
+ { "id": "tomato", "fg": 957 },
+ { "id": "hickory_nut", "fg": 946 },
+ { "id": "hickory_root", "fg": 947 },
+ { "id": "juniper", "fg": 948 },
{
"id": [
"seed_hops",
@@ -430,73 +434,73 @@
"seed_mulberries",
"seed_elderberries"
],
- "fg": 935
- },
- { "id": "straw_pile", "fg": 936 },
- { "id": "wheat", "fg": 938 },
- { "id": "withered", "fg": 939 },
- { "id": "bee_balm", "fg": 940 },
- { "id": "carrot_wild", "fg": 941 },
- { "id": "dogbane", "fg": 942 },
- { "id": "egg_reptile", "fg": 943 },
- { "id": "mugwort", "fg": 944 },
- { "id": "thyme", "fg": 945 },
- { "id": "veggy_wild", "fg": 946 },
- { "id": "wild_herbs", "fg": 947 },
- { "id": "feces_manure", "fg": 951 },
- { "id": "feces_bird", "fg": 948 },
- { "id": "feces_cow", "fg": 949 },
- { "id": "feces_dog", "fg": 950 },
- { "id": "feces_roach", "fg": 952 },
- { "id": "fetid_goop", "fg": 953 },
- { "id": "rag_bloody", "fg": 955 },
- { "id": "ash", "fg": 1005 },
- { "id": "brick", "fg": 1006 },
- { "id": "scrap", "fg": 1009 },
- { "id": "e_scrap", "fg": 1008 },
- { "id": "steel_chunk", "fg": 1010 },
- { "id": "steel_lump", "fg": 1011 },
- { "id": "wire", "fg": 1012 },
- { "id": "cable", "fg": 1007 },
- { "id": "spring", "fg": 1014 },
- { "id": "survnote", "fg": 1015 },
- { "id": "creepy_doll", "fg": 1016 },
- { "id": "talking_doll", "fg": 1016 },
- { "id": "teapot", "fg": 1018 },
- { "id": "thermometer", "fg": 1019 },
- { "id": "crucible_clay", "fg": 1021 },
- { "id": "flashlight", "fg": 1023 },
- { "id": "heavy_flashlight", "fg": 1026 },
- { "id": "saw", "fg": 1036 },
- { "id": "screwdriver_set", "fg": 1032 },
- { "id": "wrench", "fg": 1037 },
- { "id": "hammer", "fg": 1025 },
- { "id": "hacksaw", "fg": 1024 },
- { "id": "knife_meat_cleaver", "fg": 1031 },
- { "id": "knife_vegetable_cleaver", "fg": 1035 },
+ "fg": 955
+ },
+ { "id": "straw_pile", "fg": 956 },
+ { "id": "wheat", "fg": 958 },
+ { "id": "withered", "fg": 959 },
+ { "id": "bee_balm", "fg": 960 },
+ { "id": "carrot_wild", "fg": 961 },
+ { "id": "dogbane", "fg": 962 },
+ { "id": "egg_reptile", "fg": 963 },
+ { "id": "mugwort", "fg": 964 },
+ { "id": "thyme", "fg": 965 },
+ { "id": "veggy_wild", "fg": 966 },
+ { "id": "wild_herbs", "fg": 967 },
+ { "id": "feces_manure", "fg": 971 },
+ { "id": "feces_bird", "fg": 968 },
+ { "id": "feces_cow", "fg": 969 },
+ { "id": "feces_dog", "fg": 970 },
+ { "id": "feces_roach", "fg": 972 },
+ { "id": "fetid_goop", "fg": 973 },
+ { "id": "rag_bloody", "fg": 976 },
+ { "id": "ash", "fg": 1026 },
+ { "id": "brick", "fg": 1027 },
+ { "id": "scrap", "fg": 1030 },
+ { "id": "e_scrap", "fg": 1029 },
+ { "id": "steel_chunk", "fg": 1031 },
+ { "id": "steel_lump", "fg": 1032 },
+ { "id": "wire", "fg": 1033 },
+ { "id": "cable", "fg": 1028 },
+ { "id": "spring", "fg": 1035 },
+ { "id": "survnote", "fg": 1036 },
+ { "id": "creepy_doll", "fg": 1037 },
+ { "id": "talking_doll", "fg": 1037 },
+ { "id": "teapot", "fg": 1039 },
+ { "id": "thermometer", "fg": 1040 },
+ { "id": "crucible_clay", "fg": 1042 },
+ { "id": "flashlight", "fg": 1044 },
+ { "id": "heavy_flashlight", "fg": 1047 },
+ { "id": "saw", "fg": 1057 },
+ { "id": "screwdriver_set", "fg": 1053 },
+ { "id": "wrench", "fg": 1058 },
+ { "id": "hammer", "fg": 1046 },
+ { "id": "hacksaw", "fg": 1045 },
+ { "id": "knife_meat_cleaver", "fg": 1052 },
+ { "id": "knife_vegetable_cleaver", "fg": 1056 },
{
"id": "lighter",
- "fg": [ { "weight": 1, "sprite": 1028 }, { "weight": 1, "sprite": 1027 }, { "weight": 1, "sprite": 1029 } ]
- },
- { "id": "makeshift_crowbar", "fg": 1030 },
- { "id": "esbit_stove", "fg": 1022 },
- { "id": "usb_drive", "fg": 1034 },
- { "id": "cash_card", "fg": 1038 },
- { "id": "file", "fg": 1039 },
- { "id": "fp_loyalty_card", "fg": 1040 },
- { "id": "id_industrial", "fg": 1041 },
- { "id": "id_military", "fg": 1042 },
- { "id": "id_science", "fg": 1043 },
- { "id": "bowl_plastic", "fg": 1044 },
- { "id": "cup_plastic", "fg": 1045 },
- { "id": "fork", "fg": 1046 },
- { "id": "knife_butter", "fg": 1047 },
- { "id": "washboard", "fg": 1054 },
- { "id": "wash_kit", "fg": 1053 },
- { "id": "helmet_army", "fg": 1058 },
- { "id": "foodperson_mask", "fg": 1056 },
- { "id": "foodperson_mask_on", "fg": 1057 },
- { "id": "ballistic_vest_esapi", "fg": 1055 },
+ "fg": [ { "weight": 1, "sprite": 1049 }, { "weight": 1, "sprite": 1048 }, { "weight": 1, "sprite": 1050 } ]
+ },
+ { "id": "makeshift_crowbar", "fg": 1051 },
+ { "id": "esbit_stove", "fg": 1043 },
+ { "id": "usb_drive", "fg": 1055 },
+ { "id": "cash_card", "fg": 1059 },
+ { "id": "file", "fg": 1060 },
+ { "id": "fp_loyalty_card", "fg": 1061 },
+ { "id": "id_industrial", "fg": 1062 },
+ { "id": "id_military", "fg": 1063 },
+ { "id": "id_science", "fg": 1064 },
+ { "id": "bowl_plastic", "fg": 1065 },
+ { "id": "cup_plastic", "fg": 1066 },
+ { "id": "fork", "fg": 1067 },
+ { "id": "knife_butter", "fg": 1068 },
+ { "id": "washboard", "fg": 1075 },
+ { "id": "wash_kit", "fg": 1074 },
+ { "id": "helmet_army", "fg": 1080 },
+ { "id": "foodperson_mask", "fg": 1078 },
+ { "id": "foodperson_mask_on", "fg": 1079 },
+ { "id": "ballistic_vest_esapi", "fg": 1077 },
{ "id": "saddle", "fg": 1 },
{ "id": "blt", "fg": 4 },
{ "id": "brain_cooked", "fg": 5 },
@@ -594,836 +598,841 @@
{ "id": "b_paint", "fg": 97 },
{ "id": "bandana", "fg": 98 },
{ "id": "barley", "fg": 99 },
- { "id": "birchbark", "fg": 100 },
- { "id": "boltcutters", "fg": 101 },
- { "id": "bottle_opener", "fg": 102 },
- { "id": "bow_saw", "fg": 103 },
- { "id": "briefcase", "fg": 104 },
- { "id": "cable_instrument", "fg": 105 },
- { "id": "cable_xlr", "fg": 106 },
- { "id": "can_opener", "fg": 107 },
- { "id": "candle", "fg": 108 },
- { "id": "candlestick", "fg": 109 },
- { "id": "cannonball_4lb", "fg": 110 },
- { "id": "carving_fork", "fg": 111 },
- { "id": "ceramic_armor", "fg": 112 },
- { "id": "chain_link", "fg": 114 },
- { "id": "chainmail_arms", "fg": 115 },
- { "id": "chainmail_hood", "fg": 116 },
- { "id": "chainmail_legs", "fg": 117 },
- { "id": "chainmail_suit_faraday", "fg": 118 },
- { "id": "charcoal", "fg": 119 },
- { "id": "chess", "fg": 120 },
- { "id": "chipper", "fg": 121 },
- { "id": "chisel", "fg": 122 },
- { "id": "clarinet", "fg": 123 },
- { "id": "clay_pot_flower", "fg": 124 },
- { "id": "colander_steel", "fg": 125 },
- { "id": "copper_pan", "fg": 126 },
- { "id": "cordless_drill", "fg": 127 },
- { "id": "corkscrew", "fg": 128 },
- { "id": "cow_bell", "fg": 129 },
- { "id": "crown_golden", "fg": 130 },
- { "id": "data_card", "fg": 131 },
- { "id": "diazepam", "fg": 132 },
- { "id": "dish_towel", "fg": 133 },
- { "id": "esapi_plate", "fg": 134 },
- { "id": "esbi_plate", "fg": 135 },
- { "id": "eyedrops", "fg": 136 },
- { "id": "feather", "fg": 138 },
- { "id": "felt_patch", "fg": 139 },
- { "id": "fishing_hook_basic", "fg": 140 },
- { "id": "flask_yeast", "fg": 141 },
- { "id": "flint_steel", "fg": 142 },
- { "id": "flute", "fg": 143 },
- { "id": "folding_poncho", "fg": 144 },
- { "id": "food_processor", "fg": 145 },
- { "id": "footrags", "fg": 146 },
- { "id": "footrags_fur", "fg": 147 },
- { "id": "footrags_leather", "fg": 148 },
- { "id": "footrags_wool", "fg": 149 },
- { "id": "frisbee", "fg": 150 },
- { "id": "g_paint", "fg": 151 },
- { "id": "garlic", "fg": 152 },
- { "id": "garlic_press", "fg": 153 },
- { "id": "glass_plate", "fg": 154 },
- { "id": "glass_tinted", "fg": 155 },
- { "id": "glasses_bifocal", "fg": 156 },
- { "id": "gloves_light", "fg": 158 },
- { "id": "hair_dryer", "fg": 159 },
- { "id": "hammer_sledge", "fg": 160 },
- { "id": "hammer_sledge_engineer", "fg": 161 },
- { "id": "hammer_sledge_heavy", "fg": 162 },
- { "id": "hammer_sledge_short", "fg": 163 },
- { "id": "hand_axe", "fg": 164 },
- { "id": "hand_drill", "fg": 165 },
- { "id": "hand_rims", "fg": 166 },
- { "id": "handrolled_cig", "fg": 167 },
- { "id": "hard_steel_armor", "fg": 168 },
- { "id": "harmonica_holder", "fg": 169 },
- { "id": "hat_chef", "fg": 170 },
- { "id": "iron_pot", "fg": 171 },
- { "id": "jack", "fg": 172 },
- { "id": "jack_makeshift", "fg": 173 },
- { "id": "jack_small", "fg": 174 },
- { "id": "kettle", "fg": 176 },
- { "id": "ladle", "fg": 177 },
- { "id": "laptop", "fg": 178 },
- { "id": "leg_warmers", "fg": 179 },
- { "id": "link_sheet", "fg": 180 },
- { "id": "machete", "fg": 181 },
- { "id": "makeshift_bayonet", "fg": 182 },
- { "id": "makeshift_hammer", "fg": 183 },
- { "id": "makeshift_machete", "fg": 184 },
- { "id": "makeshift_stethoscope", "fg": 185 },
- { "id": "matches", "fg": 186 },
- { "id": "material_shrd_limestone", "fg": 187 },
- { "id": "mbag", "fg": 188 },
- { "id": "mess_tin", "fg": 189 },
- { "id": "meth", "fg": 190 },
- { "id": "morphine", "fg": 191 },
- { "id": "mortar_pestle", "fg": 192 },
- { "id": "motor_tiny", "fg": 193 },
- { "id": "mouthpiece", "fg": 194 },
- { "id": "office_holepunch", "fg": 195 },
- { "id": "omnicamera", "fg": 196 },
- { "id": "p_paint", "fg": 197 },
- { "id": "paint_brush", "fg": 198 },
- { "id": "pan", "fg": 199 },
- { "id": "paper", "fg": 200 },
- { "id": "peeler", "fg": 201 },
- { "id": "pipe_fittings", "fg": 202 },
- { "id": "plastic_pot_flower", "fg": 203 },
- { "id": "pliers", "fg": 204 },
- { "id": "plums", "fg": 205 },
- { "id": "pot", "fg": 206 },
- { "id": "pot_canning", "fg": 207 },
- { "id": "pot_copper", "fg": 208 },
- { "id": "pot_helmet", "fg": 209 },
- { "id": "pot_makeshift", "fg": 210 },
- { "id": "pot_makeshift_copper", "fg": 211 },
- { "id": "potato_masher", "fg": 212 },
- { "id": "r_paint", "fg": 213 },
- { "id": "reading_light", "fg": 214 },
- { "id": "reading_light_on", "fg": 215 },
- { "id": "receiver", "fg": 216 },
- { "id": "reinforced_glass_pane", "fg": 217 },
- { "id": "rolling_pin", "fg": 218 },
- { "id": "scrap_bronze", "fg": 219 },
- { "id": "scrap_felt", "fg": 220 },
- { "id": "sheet_felt", "fg": 221 },
- { "id": "sheet_felt_patchwork", "fg": 222 },
- { "id": "shocktonfa_off", "fg": 223 },
- { "id": "shocktonfa_on", "fg": 224 },
- { "id": "slingpack", "fg": 225 },
- { "id": "smart_phone", "fg": 226 },
- { "id": "soap", "fg": 227 },
- { "id": "solder_wire", "fg": 228 },
- { "id": "spatula", "fg": 229 },
- { "id": "spider_egg", "fg": 230 },
- { "id": "spike", "fg": 231 },
- { "id": "steel_armor", "fg": 232 },
- { "id": "steel_pan", "fg": 233 },
- { "id": "stethoscope", "fg": 234 },
- { "id": "stock_pot", "fg": 235 },
- { "id": "swage", "fg": 237 },
- { "id": "tazer", "fg": 238 },
- { "id": "teleumbrella", "fg": 239 },
- { "id": "tinder", "fg": 240 },
- { "id": "tinderbox", "fg": 241 },
- { "id": "tinfoil_hat", "fg": 242 },
- { "id": "tonfa", "fg": 243 },
- { "id": "tonfa_wood", "fg": 244 },
- { "id": "tongs", "fg": 245 },
- { "id": "unfinished_charcoal", "fg": 246 },
- { "id": "w_paint", "fg": 247 },
- { "id": "water_purifier", "fg": 248 },
- { "id": "wheel", "fg": 249 },
- { "id": "wheel_10", "fg": 250 },
- { "id": "wheel_barrow", "fg": 251 },
- { "id": "wheel_bicycle", "fg": 252 },
- { "id": "wheel_bicycle_or", "fg": 253 },
- { "id": "wheel_motorbike", "fg": 254 },
- { "id": "wheel_motorbike_or", "fg": 255 },
- { "id": "wheel_skate", "fg": 256 },
- { "id": "wheel_slick", "fg": 257 },
- { "id": "wheel_small", "fg": 258 },
- { "id": "wheel_tricycle", "fg": 259 },
- { "id": "wheel_wheelchair", "fg": 260 },
- { "id": "whisk", "fg": 261 },
- { "id": "wine_glass", "fg": 262 },
- { "id": "wire_barbed", "fg": 263 },
- { "id": "y_paint", "fg": 264 },
- { "id": "halligan", "fg": 265 },
- { "id": "cig", "fg": 291 },
- { "id": "cig_lit", "fg": 292 },
- { "id": "copper_ring", "fg": 293 },
- { "id": "g_shovel", "fg": 294 },
- { "id": "lsd", "fg": 295 },
- { "id": "silver_ring", "fg": 296 },
- { "id": "thermal_mask", "fg": 297 },
- { "id": "thermal_socks", "fg": 298 },
- { "id": "tie_clipon", "fg": 299 },
- { "id": "whistle", "fg": 300 },
- { "id": "2_shot_special", "fg": 301 },
- { "id": "90two", "fg": 302 },
- { "id": "90two40", "fg": 303 },
- { "id": "LAW_Packed", "fg": 304 },
- { "id": "af2011a1_38super", "fg": 306 },
- { "id": "ar_pistol", "fg": 307 },
- { "id": "ashot", "fg": 308 },
- { "id": "bfr", "fg": 309 },
- { "id": "bigun", "fg": 310 },
- { "id": "bond_410", "fg": 311 },
- { "id": "bt_apc9k", "fg": 312 },
- { "id": "colt_army", "fg": 313 },
- { "id": "colt_navy", "fg": 314 },
- { "id": "colt_saa", "fg": 315 },
- { "id": "cop_38", "fg": 316 },
- { "id": "cz75", "fg": 317 },
- { "id": "deagle_44", "fg": 318 },
- { "id": "draco", "fg": 319 },
- { "id": "flamethrower_crude", "fg": 320 },
- { "id": "flamethrower_simple", "fg": 321 },
- { "id": "fn1910", "fg": 322 },
- { "id": "fn57", "fg": 323 },
- { "id": "fn_p90", "fg": 324 },
- { "id": "glock_17", "fg": 325 },
- { "id": "glock_18c", "fg": 326 },
- { "id": "glock_19", "fg": 327 },
- { "id": "glock_20", "fg": 328 },
- { "id": "glock_20_var_glock_40", "fg": 329 },
- { "id": "glock_21", "fg": 330 },
- { "id": "glock_22", "fg": 331 },
- { "id": "glock_29", "fg": 332 },
- { "id": "glock_31", "fg": 333 },
- { "id": "hi_power_40", "fg": 334 },
- { "id": "hi_power_9mm", "fg": 335 },
- { "id": "hk_mp5_semi_pistol", "fg": 337 },
- { "id": "hk_mp7", "fg": 338 },
- { "id": "hk_ump45", "fg": 339 },
- { "id": "hptc9", "fg": 340 },
- { "id": "hptcf380", "fg": 341 },
- { "id": "kp32", "fg": 343 },
- { "id": "kp3at", "fg": 344 },
- { "id": "kpf9", "fg": 345 },
- { "id": "l_bak_223", "fg": 346 },
- { "id": "launcher_simple", "fg": 347 },
- { "id": "lemat_revolver", "fg": 348 },
- { "id": "m11", "fg": 349 },
- { "id": "m17", "fg": 350 },
- { "id": "m18", "fg": 351 },
- { "id": "m1911-460", "fg": 352 },
- { "id": "m1911_10", "fg": 354 },
- { "id": "m1911_var_m1911_MEU", "fg": 355 },
- { "id": "m320", "fg": 356 },
- { "id": "m4_carbine_var_m4_cqbr", "fg": 357 },
- { "id": "m9", "fg": 358 },
- { "id": "mac_10", "fg": 359 },
- { "id": "mac_11", "fg": 360 },
- { "id": "makarov", "fg": 361 },
- { "id": "mauser_c96", "fg": 362 },
- { "id": "mauser_m714", "fg": 363 },
- { "id": "mgl", "fg": 364 },
- { "id": "minispeargun", "fg": 365 },
- { "id": "model_10_revolver", "fg": 366 },
- { "id": "moss_brownie", "fg": 367 },
- { "id": "nailgun", "fg": 368 },
- { "id": "nailrifle", "fg": 369 },
- { "id": "needlepistol", "fg": 370 },
- { "id": "oa93", "fg": 371 },
- { "id": "p08", "fg": 372 },
- { "id": "p220_10", "fg": 373 },
- { "id": "p226_357sig", "fg": 374 },
- { "id": "p226_9mm", "fg": 375 },
- { "id": "p320_357sig", "fg": 376 },
- { "id": "paintballgun", "fg": 377 },
- { "id": "pipe_double_shotgun", "fg": 378 },
- { "id": "pistol_flintlock", "fg": 379 },
- { "id": "px4", "fg": 380 },
- { "id": "px4_40", "fg": 381 },
- { "id": "raging_bull", "fg": 382 },
- { "id": "raging_judge", "fg": 383 },
- { "id": "revolver_shotgun", "fg": 384 },
- { "id": "rm103a_pistol", "fg": 385 },
- { "id": "rm2000_smg", "fg": 386 },
- { "id": "rm228", "fg": 387 },
- { "id": "ruger_lcr_22", "fg": 388 },
- { "id": "ruger_lcr_38", "fg": 389 },
- { "id": "ruger_redhawk", "fg": 390 },
- { "id": "rugerlcp", "fg": 391 },
- { "id": "sig_40", "fg": 392 },
- { "id": "sig_mosquito", "fg": 393 },
- { "id": "sig_p230", "fg": 394 },
- { "id": "skorpion_61", "fg": 395 },
- { "id": "smg_40", "fg": 396 },
- { "id": "smg_45", "fg": 397 },
- { "id": "sp2022", "fg": 398 },
- { "id": "streetsweeper", "fg": 399 },
- { "id": "surv_hand_cannon", "fg": 400 },
- { "id": "surv_six_shooter", "fg": 401 },
- { "id": "sw629", "fg": 402 },
- { "id": "sw_22", "fg": 403 },
- { "id": "sw_500", "fg": 404 },
- { "id": "sw_610", "fg": 405 },
- { "id": "sw_619", "fg": 406 },
- { "id": "taurus_spectrum", "fg": 407 },
- { "id": "tec9", "fg": 408 },
- { "id": "tokarev", "fg": 409 },
- { "id": "triple_launcher_simple", "fg": 410 },
- { "id": "unbio_blaster_gun", "fg": 411 },
- { "id": "usp_45", "fg": 412 },
- { "id": "usp_45_var_mk23", "fg": 413 },
- { "id": "usp_9mm", "fg": 414 },
- { "id": "uzi", "fg": 415 },
- { "id": "v29", "fg": 416 },
- { "id": "v29_cheap", "fg": 417 },
- { "id": "walther_ccp", "fg": 418 },
- { "id": "walther_p22", "fg": 419 },
- { "id": "walther_p38", "fg": 420 },
- { "id": "walther_ppq_40", "fg": 421 },
- { "id": "walther_ppq_45", "fg": 422 },
- { "id": "walther_ppq_9mm", "fg": 423 },
- { "id": "witness_10", "fg": 424 },
- { "id": "xd_10", "fg": 425 },
- { "id": "antenna", "fg": 478 },
- { "id": "badge_deputy", "fg": 479 },
- { "id": "coconut", "fg": 480 },
- { "id": "directional_antenna", "fg": 481 },
- { "id": "halter_top", "fg": 482 },
- { "id": "hand_crank_charger", "fg": 483 },
- { "id": "hops", "fg": 484 },
- { "id": "kidney", "fg": 485 },
- { "id": "lettuce", "fg": 486 },
- { "id": "lily_flower", "fg": 487 },
- { "id": "scorecard", "fg": 488 },
- { "id": "spinach", "fg": 489 },
- { "id": "altered_comb", "fg": 490 },
- { "id": "gasdiscount_gold", "fg": 491 },
- { "id": "gasdiscount_platinum", "fg": 492 },
- { "id": "gasdiscount_silver", "fg": 493 },
- { "id": "gold_hairpin", "fg": 494 },
- { "id": "nanoskirt", "fg": 495 },
- { "id": "pearl", "fg": 496 },
- { "id": "platinum_ring", "fg": 497 },
- { "id": "skirt_grass", "fg": 498 },
- { "id": "skirt_leather", "fg": 499 },
- { "id": "wallet_leather", "fg": 500 },
- { "id": "copper_necklace", "fg": 501 },
- { "id": "pearl_collar", "fg": 502 },
- { "id": "alexandrite_gold_pendant_necklace", "fg": 503 },
- { "id": "amethyst_gold_pendant_necklace", "fg": 504 },
- { "id": "aquamarine_gold_pendant_necklace", "fg": 505 },
- { "id": "blue_topaz_gold_pendant_necklace", "fg": 506 },
- { "id": "citrine_gold_pendant_necklace", "fg": 507 },
- { "id": "diamond_gold_pendant_necklace", "fg": 508 },
- { "id": "emerald_gold_pendant_necklace", "fg": 509 },
- { "id": "garnet_gold_pendant_necklace", "fg": 510 },
- { "id": "gold_necklace", "fg": 511 },
- { "id": "opal_gold_pendant_necklace", "fg": 512 },
- { "id": "pearl_gold_pendant_necklace", "fg": 513 },
- { "id": "peridot_gold_pendant_necklace", "fg": 514 },
- { "id": "ruby_gold_pendant_necklace", "fg": 515 },
- { "id": "sapphire_gold_pendant_necklace", "fg": 516 },
- { "id": "tourmaline_gold_pendant_necklace", "fg": 517 },
- { "id": "alexandrite_platinum_pendant_necklace", "fg": 518 },
- { "id": "amethyst_platinum_pendant_necklace", "fg": 519 },
- { "id": "aquamarine_platinum_pendant_necklace", "fg": 520 },
- { "id": "blue_topaz_platinum_pendant_necklace", "fg": 521 },
- { "id": "citrine_platinum_pendant_necklace", "fg": 522 },
- { "id": "diamond_platinum_pendant_necklace", "fg": 523 },
- { "id": "emerald_platinum_pendant_necklace", "fg": 524 },
- { "id": "garnet_platinum_pendant_necklace", "fg": 525 },
- { "id": "opal_platinum_pendant_necklace", "fg": 526 },
- { "id": "pearl_platinum_pendant_necklace", "fg": 527 },
- { "id": "peridot_platinum_pendant_necklace", "fg": 528 },
- { "id": "platinum_necklace", "fg": 529 },
- { "id": "ruby_platinum_pendant_necklace", "fg": 530 },
- { "id": "sapphire_platinum_pendant_necklace", "fg": 531 },
- { "id": "tourmaline_platinum_pendant_necklace", "fg": 532 },
- { "id": "alexandrite_silver_pendant_necklace", "fg": 533 },
- { "id": "amethyst_silver_pendant_necklace", "fg": 534 },
- { "id": "aquamarine_silver_pendant_necklace", "fg": 535 },
- { "id": "blue_topaz_silver_pendant_necklace", "fg": 536 },
- { "id": "citrine_silver_pendant_necklace", "fg": 537 },
- { "id": "diamond_silver_pendant_necklace", "fg": 538 },
- { "id": "emerald_silver_pendant_necklace", "fg": 539 },
- { "id": "garnet_silver_pendant_necklace", "fg": 540 },
- { "id": "opal_silver_pendant_necklace", "fg": 541 },
- { "id": "pearl_silver_pendant_necklace", "fg": 542 },
- { "id": "peridot_silver_pendant_necklace", "fg": 543 },
- { "id": "ruby_silver_pendant_necklace", "fg": 544 },
- { "id": "sapphire_silver_pendant_necklace", "fg": 545 },
- { "id": "silver_necklace", "fg": 546 },
- { "id": "tourmaline_silver_pendant_necklace", "fg": 547 },
- { "id": "barrette", "fg": 548 },
- { "id": "cattail_stalk", "fg": 549 },
- { "id": "golf_tee", "fg": 550 },
- { "id": "magnifying_glass", "fg": 551 },
- { "id": "mininuke", "fg": 552 },
- { "id": "mininuke_act", "fg": 553 },
- { "id": "rolling_paper", "fg": 554 },
- { "id": "deck_of_cards", "fg": 557 },
- { "id": "hairpin", "fg": 558 },
- { "id": "weed", "fg": 559 },
- { "id": "ceramic_bowl", "fg": 560 },
- { "id": "chestrig", "fg": 561 },
- { "id": "radio_car", "fg": 562 },
- { "id": "radio_car_box", "fg": 563 },
- { "id": "radio_car_on", "fg": 564 },
- { "id": "radio_car_wheel", "fg": 565 },
- { "id": "radiocontrol", "fg": 566 },
- { "id": "rc_car_box", "fg": 567 },
- { "id": "toaster", "fg": 568 },
- { "id": "xl_chestrig", "fg": 569 },
- { "id": "alternator_truck", "fg": 571 },
- { "id": "ammolink", "fg": 572 },
- { "id": "angle_grinder", "fg": 573 },
- { "id": "atomic_lamp", "fg": 574 },
- { "id": "atomic_lamp_off", "fg": 575 },
- { "id": "barometer", "fg": 576 },
- { "id": "birdfood", "fg": 577 },
- { "id": "bismuth", "fg": 578 },
- { "id": "brick_kiln", "fg": 579 },
- { "id": "caffeine", "fg": 580 },
- { "id": "chem_citric_acid", "fg": 581 },
- { "id": "chem_sulphur", "fg": 582 },
- { "id": "chunk_sulfur", "fg": 583 },
- { "id": "circsaw_off", "fg": 584 },
- { "id": "circsaw_on", "fg": 585 },
- { "id": "coal_lump", "fg": 586 },
- { "id": "con_mix", "fg": 587 },
- { "id": "disc_golf", "fg": 588 },
- { "id": "drivebelt", "fg": 589 },
- { "id": "eink_tablet_pc", "fg": 590 },
- { "id": "flatbread", "fg": 591 },
- { "id": "gelbox", "fg": 593 },
- { "id": "generator_7500w", "fg": 594 },
- { "id": "glowstick", "fg": 595 },
- { "id": "glowstick_dead", "fg": 596 },
- { "id": "glowstick_lit", "fg": 597 },
- { "id": "gold_small", "fg": 598 },
- { "id": "golf_club", "fg": 599 },
- { "id": "handflare", "fg": 600 },
- { "id": "heatpack", "fg": 601 },
- { "id": "heatpack_used", "fg": 602 },
- { "id": "hoe", "fg": 603 },
- { "id": "homeopathic_pills", "fg": 604 },
- { "id": "horn_bicycle", "fg": 605 },
- { "id": "jumper_cable", "fg": 606 },
- { "id": "kiln", "fg": 607 },
- { "id": "lead", "fg": 608 },
- { "id": "leather", "fg": 609 },
- { "id": "lightstrip", "fg": 610 },
- { "id": "material_aluminium_ingot", "fg": 611 },
- { "id": "material_limestone", "fg": 612 },
- { "id": "material_rhodonite", "fg": 613 },
- { "id": "material_rocksalt", "fg": 614 },
- { "id": "material_zincite", "fg": 615 },
- { "id": "metal_smoother", "fg": 616 },
- { "id": "multitool", "fg": 618 },
- { "id": "nic_gum", "fg": 619 },
- { "id": "pencil", "fg": 620 },
- { "id": "pipe_cleaner", "fg": 621 },
- { "id": "pipe_glass", "fg": 622 },
- { "id": "platinum_small", "fg": 624 },
- { "id": "polisher", "fg": 625 },
- { "id": "press", "fg": 626 },
- { "id": "puller", "fg": 627 },
- { "id": "rake", "fg": 628 },
- { "id": "razorclaw_roe", "fg": 629 },
- { "id": "sickle", "fg": 630 },
- { "id": "silver_small", "fg": 631 },
- { "id": "small_repairkit", "fg": 632 },
- { "id": "tanned_hide", "fg": 633 },
- { "id": "tanned_pelt", "fg": 634 },
- { "id": "tourist_table", "fg": 635 },
- { "id": "zinc_metal", "fg": 636 },
- { "id": "beartrap", "fg": 637 },
- { "id": "tr_beartrap", "fg": 638 },
- { "id": "wire_mesh", "fg": 639 },
- { "id": "cannabis", "fg": 640 },
- { "id": "dnd_handbook", "fg": 642 },
- { "id": "holybook_bible1", "fg": 643 },
- { "id": "holybook_bible3", "fg": 644 },
- { "id": "l-stick", "fg": 645 },
- { "id": "l-stick_on", "fg": 646 },
- { "id": "makarovmag", "fg": 647 },
- { "id": "manual_brawl", "fg": 648 },
- { "id": "manual_carpentry", "fg": 649 },
- { "id": "manual_dodge_kid", "fg": 650 },
- { "id": "manual_driving", "fg": 651 },
- { "id": "manual_melee", "fg": 652 },
- { "id": "philosophy_book", "fg": 653 },
- { "id": "phonebook", "fg": 654 },
- { "id": "photo_album", "fg": 655 },
- { "id": "plastic_bucket", "fg": 656 },
- { "id": "record_weather", "fg": 657 },
- { "id": "straw_fedora", "fg": 658 },
- { "id": "textbook_computer", "fg": 659 },
- { "id": "textbook_fabrication", "fg": 660 },
- { "id": "textbook_survival", "fg": 661 },
- { "id": "water_faucet", "fg": 662 },
- { "id": "can_food", "fg": 663 },
- { "id": "can_food_big", "fg": 664 },
- { "id": "can_food_big_unsealed", "fg": 665 },
- { "id": "can_food_unsealed", "fg": 666 },
- { "id": "can_medium", "fg": 667 },
- { "id": "can_medium_unsealed", "fg": 668 },
- { "id": "clamp", "fg": 669 },
- { "id": "crude_picklock", "fg": 670 },
- { "id": "cured_hide", "fg": 671 },
- { "id": "cured_pelt", "fg": 672 },
- { "id": "demihuman_fat", "fg": 673 },
- { "id": "fat", "fg": 674 },
- { "id": "fat_tainted", "fg": 675 },
- { "id": "headscarf", "fg": 676 },
- { "id": "human_fat", "fg": 677 },
- { "id": "marloss_scarf", "fg": 682 },
- { "id": "meat", "fg": 683 },
- { "id": "meat_tainted", "fg": 684 },
- { "id": "mutant_fat", "fg": 685 },
- { "id": "mutant_human_fat", "fg": 686 },
- { "id": "mutant_human_flesh", "fg": 687 },
- { "id": "mutant_meat", "fg": 688 },
- { "id": "raw_fur", "fg": 692 },
- { "id": "raw_leather", "fg": 693 },
- { "id": "tanning_hide", "fg": 698 },
- { "id": "tanning_pelt", "fg": 699 },
- { "id": "analytical_set_basic", "fg": 700 },
- { "id": "balance_small", "fg": 701 },
- { "id": "beaker", "fg": 702 },
- { "id": "flask_glass", "fg": 703 },
- { "id": "gradcylinder", "fg": 704 },
- { "id": "ph_meter", "fg": 705 },
- { "id": "spectrophotometer", "fg": 706 },
- { "id": "test_tube", "fg": 707 },
- { "id": "voltmeter", "fg": 708 },
- { "id": "acidchitin_piece", "fg": 713 },
- { "id": "chitin_piece", "fg": 714 },
- { "id": "alexandrite_gold_earring", "fg": 733 },
- { "id": "alexandrite_platinum_earring", "fg": 734 },
- { "id": "alexandrite_silver_earring", "fg": 735 },
- { "id": "amethyst_gold_earring", "fg": 736 },
- { "id": "amethyst_platinum_earring", "fg": 737 },
- { "id": "amethyst_silver_earring", "fg": 738 },
- { "id": "aquamarine_gold_earring", "fg": 739 },
- { "id": "aquamarine_platinum_earring", "fg": 740 },
- { "id": "aquamarine_silver_earring", "fg": 741 },
- { "id": "bead_ear", "fg": 742 },
- { "id": "blue_topaz_gold_earring", "fg": 743 },
- { "id": "blue_topaz_platinum_earring", "fg": 744 },
- { "id": "blue_topaz_silver_earring", "fg": 745 },
- { "id": "citrine_gold_earring", "fg": 746 },
- { "id": "citrine_platinum_earring", "fg": 747 },
- { "id": "citrine_silver_earring", "fg": 748 },
- { "id": "copper_ear", "fg": 749 },
- { "id": "diamond_gold_earring", "fg": 750 },
- { "id": "diamond_platinum_earring", "fg": 751 },
- { "id": "diamond_silver_earring", "fg": 752 },
- { "id": "emerald_gold_earring", "fg": 753 },
- { "id": "emerald_platinum_earring", "fg": 754 },
- { "id": "emerald_silver_earring", "fg": 755 },
- { "id": "garnet_gold_earring", "fg": 756 },
- { "id": "garnet_platinum_earring", "fg": 757 },
- { "id": "garnet_silver_earring", "fg": 758 },
- { "id": "gold_ear", "fg": 759 },
- { "id": "opal_gold_earring", "fg": 760 },
- { "id": "opal_platinum_earring", "fg": 761 },
- { "id": "opal_silver_earring", "fg": 762 },
- { "id": "pearl_gold_earring", "fg": 763 },
- { "id": "pearl_platinum_earring", "fg": 764 },
- { "id": "pearl_silver_earring", "fg": 765 },
- { "id": "peridot_gold_earring", "fg": 766 },
- { "id": "peridot_platinum_earring", "fg": 767 },
- { "id": "peridot_silver_earring", "fg": 768 },
- { "id": "platinum_ear", "fg": 769 },
- { "id": "ruby_gold_earring", "fg": 770 },
- { "id": "ruby_platinum_earring", "fg": 771 },
- { "id": "ruby_silver_earring", "fg": 772 },
- { "id": "sapphire_gold_earring", "fg": 773 },
- { "id": "sapphire_platinum_earring", "fg": 774 },
- { "id": "sapphire_silver_earring", "fg": 775 },
- { "id": "silver_ear", "fg": 776 },
- { "id": "tourmaline_gold_earring", "fg": 777 },
- { "id": "tourmaline_platinum_earring", "fg": 778 },
- { "id": "tourmaline_silver_earring", "fg": 779 },
- { "id": "flaregun", "fg": 780 },
- { "id": "signal_flare", "fg": 781 },
- { "id": "bread", "fg": 782 },
- { "id": "brioche", "fg": 783 },
- { "id": "brown_bread", "fg": 784 },
- { "id": "brownie", "fg": 785 },
- { "id": "cornbread", "fg": 788 },
- { "id": "jihelucake", "fg": 789 },
- { "id": "pancakes", "fg": 790 },
- { "id": "sourdough_bread", "fg": 792 },
- { "id": "sponge_cake", "fg": 793 },
- { "id": "tortilla_corn", "fg": 794 },
- { "id": "wastebread", "fg": 796 },
- { "id": "airhorn", "fg": 797 },
- { "id": "aluminum_foil", "fg": 798 },
- { "id": "bowling_pin", "fg": 799 },
- { "id": "boxing_gloves", "fg": 800 },
- { "id": "chopsticks", "fg": 801 },
- { "id": "comb_pocket", "fg": 802 },
- { "id": "copper", "fg": 803 },
- { "id": "eclipse_glasses", "fg": 804 },
- { "id": "fish", "fg": 805 },
- { "id": "licorice", "fg": 806 },
- { "id": "metal_tank", "fg": 807 },
- { "id": "metal_tank_little", "fg": 808 },
- { "id": "nanomaterial", "fg": 809 },
- { "id": "plut_cell", "fg": 810 },
- { "id": "rebreather_filter", "fg": 811 },
- { "id": "rock_sock", "fg": 812 },
- { "id": "rollerskates", "fg": 813 },
- { "id": "sandpaper", "fg": 814 },
- { "id": "throwing_stick", "fg": 815 },
- { "id": "waterproof_gunmod", "fg": 816 },
- { "id": "circsaw_blade", "fg": 817 },
- { "id": "mirror", "fg": 818 },
- { "id": "glass_bowl", "fg": 819 },
- { "id": "plastic_bowl_kids", "fg": 820 },
- { "id": "blue_pen", "fg": 821 },
- { "id": "green_pen", "fg": 822 },
- { "id": "pen", "fg": 823 },
- { "id": "red_pen", "fg": 824 },
- { "id": "soldering_iron", "fg": 825 },
- { "id": "superglue", "fg": 826 },
- { "id": "grenade", "fg": 827 },
- { "id": "grenade_act", "fg": 828 },
- { "id": "grenade_emp", "fg": 829 },
- { "id": "grenade_emp_act", "fg": 830 },
- { "id": "grenade_inc", "fg": 831 },
- { "id": "grenade_inc_act", "fg": 832 },
- { "id": "pipebomb", "fg": 833 },
- { "id": "pipebomb_act", "fg": 834 },
- { "id": "scrambler", "fg": 835 },
- { "id": "scrambler_act", "fg": 836 },
- { "id": "smokebomb", "fg": 837 },
- { "id": "smokebomb_act", "fg": 838 },
- { "id": "boxcutter", "fg": 842 },
- { "id": "copper_knife", "fg": 843 },
- { "id": "diveknife", "fg": 844 },
- { "id": "knife_bread", "fg": 845 },
- { "id": "knife_butcher", "fg": 846 },
- { "id": "knife_carving", "fg": 847 },
- { "id": "knife_chef", "fg": 848 },
- { "id": "knife_combat", "fg": 849 },
- { "id": "knife_folding", "fg": 850 },
- { "id": "knife_hunting", "fg": 851 },
- { "id": "knife_paring", "fg": 852 },
- { "id": "knife_rambo", "fg": 853 },
- { "id": "knife_rm42", "fg": 854 },
- { "id": "knife_steak", "fg": 855 },
- { "id": "knife_swissarmy", "fg": 856 },
- { "id": "knife_trench", "fg": 857 },
- { "id": "makeshift_knife", "fg": 858 },
- { "id": "pockknife", "fg": 859 },
- { "id": "primitive_knife", "fg": 860 },
- { "id": "throwing_knife", "fg": 861 },
- { "id": "baseball", "fg": 883 },
- { "id": "basketball", "fg": 884 },
- { "id": "battery_car", "fg": 885 },
- { "id": "beach_volleyball", "fg": 886 },
- { "id": "bowling_ball", "fg": 887 },
- { "id": "cell_phone", "fg": 888 },
- { "id": "cell_phone_flashlight", "fg": 889 },
- { "id": "cigar", "fg": 890 },
- { "id": "cigar_butt", "fg": 891 },
- { "id": "cigar_lit", "fg": 892 },
- { "id": "ear_plugs", "fg": 894 },
- { "id": "fiddlehead_boiled", "fg": 895 },
- { "id": "fiddlehead_raw", "fg": 896 },
- { "id": "fiddlehead_sauteed", "fg": 897 },
- { "id": "flask_hip", "fg": 898 },
- { "id": "football", "fg": 899 },
- { "id": "golf_ball", "fg": 900 },
- { "id": "holo_sight", "fg": 901 },
- { "id": "indoor_volleyball", "fg": 902 },
- { "id": "misc_repairkit", "fg": 903 },
- { "id": "mre_beef_box", "fg": 904 },
- { "id": "peephole", "fg": 905 },
- { "id": "portable_game", "fg": 906 },
- { "id": "puck", "fg": 907 },
- { "id": "purse", "fg": 908 },
- { "id": "suppressor", "fg": 909 },
- { "id": "tourniquet_upper", "fg": 910 },
- { "id": "two_way_radio", "fg": 911 },
- { "id": "wristwatch", "fg": 912 },
- { "id": "mushroom", "fg": 913 },
- { "id": "rad_badge", "fg": 954 },
- { "id": "alexandrite_gold_ring", "fg": 956 },
- { "id": "alexandrite_platinum_ring", "fg": 957 },
- { "id": "alexandrite_silver_ring", "fg": 958 },
- { "id": "amethyst_gold_ring", "fg": 959 },
- { "id": "amethyst_platinum_ring", "fg": 960 },
- { "id": "amethyst_silver_ring", "fg": 961 },
- { "id": "aquamarine_gold_ring", "fg": 962 },
- { "id": "aquamarine_platinum_ring", "fg": 963 },
- { "id": "aquamarine_silver_ring", "fg": 964 },
- { "id": "blue_topaz_gold_ring", "fg": 965 },
- { "id": "blue_topaz_platinum_ring", "fg": 966 },
- { "id": "blue_topaz_silver_ring", "fg": 967 },
- { "id": "citrine_gold_ring", "fg": 968 },
- { "id": "citrine_platinum_ring", "fg": 969 },
- { "id": "citrine_silver_ring", "fg": 970 },
- { "id": "diamond_platinum_ring", "fg": 971 },
- { "id": "diamond_ring", "fg": 972 },
- { "id": "diamond_silver_ring", "fg": 973 },
- { "id": "emerald_gold_ring", "fg": 974 },
- { "id": "emerald_platinum_ring", "fg": 975 },
- { "id": "emerald_silver_ring", "fg": 976 },
- { "id": "garnet_gold_ring", "fg": 977 },
- { "id": "garnet_platinum_ring", "fg": 978 },
- { "id": "garnet_silver_ring", "fg": 979 },
- { "id": "gold_ring", "fg": 980 },
- { "id": "opal_gold_ring", "fg": 981 },
- { "id": "opal_platinum_ring", "fg": 982 },
- { "id": "opal_silver_ring", "fg": 983 },
- { "id": "pearl_gold_ring", "fg": 984 },
- { "id": "pearl_platinum_ring", "fg": 985 },
- { "id": "pearl_silver_ring", "fg": 986 },
- { "id": "peridot_gold_ring", "fg": 987 },
- { "id": "peridot_platinum_ring", "fg": 988 },
- { "id": "peridot_silver_ring", "fg": 989 },
- { "id": "ring_engagement", "fg": 990 },
- { "id": "ruby_gold_ring", "fg": 991 },
- { "id": "ruby_platinum_ring", "fg": 992 },
- { "id": "ruby_silver_ring", "fg": 993 },
- { "id": "sapphire_gold_ring", "fg": 994 },
- { "id": "sapphire_platinum_ring", "fg": 995 },
- { "id": "sapphire_silver_ring", "fg": 996 },
- { "id": "tourmaline_gold_ring", "fg": 997 },
- { "id": "tourmaline_platinum_ring", "fg": 998 },
- { "id": "tourmaline_silver_ring", "fg": 999 },
- { "id": "pebble", "fg": 1000 },
- { "id": "pebble_clay", "fg": 1001 },
- { "id": "rock", "fg": 1002 },
- { "id": "rock_flaking", "fg": 1003 },
- { "id": "rock_large", "fg": 1004 },
- { "id": "slime_scrap", "fg": 1013 },
- { "id": "clay_teapot", "fg": 1017 },
- { "id": "crucible", "fg": 1020 },
- { "id": "tire_iron", "fg": 1033 },
- { "id": "towel", "fg": 1048 },
- { "id": "towel_soiled", "fg": 1049 },
- { "id": "towel_wet", "fg": 1050 },
- { "id": "battery_charger", "fg": 1051 },
- { "id": "recharge_station", "fg": 1052 }
+ { "id": "boltcutters", "fg": 100 },
+ { "id": "bottle_opener", "fg": 101 },
+ { "id": "bow_saw", "fg": 102 },
+ { "id": "briefcase", "fg": 103 },
+ { "id": "cable_instrument", "fg": 104 },
+ { "id": "cable_xlr", "fg": 105 },
+ { "id": "can_opener", "fg": 106 },
+ { "id": "candle", "fg": 107 },
+ { "id": "candlestick", "fg": 108 },
+ { "id": "cannonball_4lb", "fg": 109 },
+ { "id": "carving_fork", "fg": 110 },
+ { "id": "ceramic_armor", "fg": 111 },
+ { "id": "chain_link", "fg": 113 },
+ { "id": "chainmail_arms", "fg": 114 },
+ { "id": "chainmail_hood", "fg": 115 },
+ { "id": "chainmail_legs", "fg": 116 },
+ { "id": "chainmail_suit_faraday", "fg": 117 },
+ { "id": "charcoal", "fg": 118 },
+ { "id": "chess", "fg": 119 },
+ { "id": "chipper", "fg": 120 },
+ { "id": "chisel", "fg": 121 },
+ { "id": "clarinet", "fg": 122 },
+ { "id": "clay_pot_flower", "fg": 123 },
+ { "id": "colander_steel", "fg": 124 },
+ { "id": "copper_pan", "fg": 125 },
+ { "id": "cordless_drill", "fg": 126 },
+ { "id": "corkscrew", "fg": 127 },
+ { "id": "cow_bell", "fg": 128 },
+ { "id": "crown_golden", "fg": 129 },
+ { "id": "data_card", "fg": 130 },
+ { "id": "diazepam", "fg": 131 },
+ { "id": "dish_towel", "fg": 132 },
+ { "id": "esapi_plate", "fg": 133 },
+ { "id": "esbi_plate", "fg": 134 },
+ { "id": "eyedrops", "fg": 135 },
+ { "id": "feather", "fg": 137 },
+ { "id": "felt_patch", "fg": 138 },
+ { "id": "fishing_hook_basic", "fg": 139 },
+ { "id": "flask_yeast", "fg": 140 },
+ { "id": "flint_steel", "fg": 141 },
+ { "id": "flute", "fg": 142 },
+ { "id": "folding_poncho", "fg": 143 },
+ { "id": "food_processor", "fg": 144 },
+ { "id": "footrags", "fg": 145 },
+ { "id": "footrags_fur", "fg": 146 },
+ { "id": "footrags_leather", "fg": 147 },
+ { "id": "footrags_wool", "fg": 148 },
+ { "id": "frisbee", "fg": 149 },
+ { "id": "g_paint", "fg": 150 },
+ { "id": "garlic", "fg": 151 },
+ { "id": "garlic_press", "fg": 152 },
+ { "id": "glass_plate", "fg": 153 },
+ { "id": "glass_tinted", "fg": 154 },
+ { "id": "glasses_bifocal", "fg": 155 },
+ { "id": "gloves_light", "fg": 157 },
+ { "id": "hair_dryer", "fg": 158 },
+ { "id": "hammer_sledge", "fg": 159 },
+ { "id": "hammer_sledge_engineer", "fg": 160 },
+ { "id": "hammer_sledge_heavy", "fg": 161 },
+ { "id": "hammer_sledge_short", "fg": 162 },
+ { "id": "hand_axe", "fg": 163 },
+ { "id": "hand_drill", "fg": 164 },
+ { "id": "hand_rims", "fg": 165 },
+ { "id": "handrolled_cig", "fg": 166 },
+ { "id": "hard_steel_armor", "fg": 167 },
+ { "id": "harmonica_holder", "fg": 168 },
+ { "id": "hat_chef", "fg": 169 },
+ { "id": "iron_pot", "fg": 170 },
+ { "id": "jack", "fg": 171 },
+ { "id": "jack_makeshift", "fg": 172 },
+ { "id": "jack_small", "fg": 173 },
+ { "id": "kettle", "fg": 175 },
+ { "id": "ladle", "fg": 176 },
+ { "id": "laptop", "fg": 177 },
+ { "id": "leg_warmers", "fg": 178 },
+ { "id": "link_sheet", "fg": 179 },
+ { "id": "machete", "fg": 180 },
+ { "id": "makeshift_bayonet", "fg": 181 },
+ { "id": "makeshift_hammer", "fg": 182 },
+ { "id": "makeshift_machete", "fg": 183 },
+ { "id": "makeshift_stethoscope", "fg": 184 },
+ { "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": "button_plastic", "fg": 476 },
+ { "id": "button_steel", "fg": 477 },
+ { "id": "button_wood", "fg": 478 },
+ { "id": "antenna", "fg": 479 },
+ { "id": "badge_deputy", "fg": 480 },
+ { "id": "coconut", "fg": 481 },
+ { "id": "directional_antenna", "fg": 482 },
+ { "id": "halter_top", "fg": 483 },
+ { "id": "hand_crank_charger", "fg": 484 },
+ { "id": "hops", "fg": 485 },
+ { "id": "kidney", "fg": 486 },
+ { "id": "lettuce", "fg": 487 },
+ { "id": "lily_flower", "fg": 488 },
+ { "id": "scorecard", "fg": 489 },
+ { "id": "spinach", "fg": 490 },
+ { "id": "altered_comb", "fg": 491 },
+ { "id": "gasdiscount_gold", "fg": 492 },
+ { "id": "gasdiscount_platinum", "fg": 493 },
+ { "id": "gasdiscount_silver", "fg": 494 },
+ { "id": "gold_hairpin", "fg": 495 },
+ { "id": "nanoskirt", "fg": 496 },
+ { "id": "pearl", "fg": 497 },
+ { "id": "platinum_ring", "fg": 498 },
+ { "id": "skirt_grass", "fg": 499 },
+ { "id": "skirt_leather", "fg": 500 },
+ { "id": "wallet_leather", "fg": 501 },
+ { "id": "copper_necklace", "fg": 502 },
+ { "id": "pearl_collar", "fg": 503 },
+ { "id": "alexandrite_gold_pendant_necklace", "fg": 504 },
+ { "id": "amethyst_gold_pendant_necklace", "fg": 505 },
+ { "id": "aquamarine_gold_pendant_necklace", "fg": 506 },
+ { "id": "blue_topaz_gold_pendant_necklace", "fg": 507 },
+ { "id": "citrine_gold_pendant_necklace", "fg": 508 },
+ { "id": "diamond_gold_pendant_necklace", "fg": 509 },
+ { "id": "emerald_gold_pendant_necklace", "fg": 510 },
+ { "id": "garnet_gold_pendant_necklace", "fg": 511 },
+ { "id": "gold_necklace", "fg": 512 },
+ { "id": "opal_gold_pendant_necklace", "fg": 513 },
+ { "id": "pearl_gold_pendant_necklace", "fg": 514 },
+ { "id": "peridot_gold_pendant_necklace", "fg": 515 },
+ { "id": "ruby_gold_pendant_necklace", "fg": 516 },
+ { "id": "sapphire_gold_pendant_necklace", "fg": 517 },
+ { "id": "tourmaline_gold_pendant_necklace", "fg": 518 },
+ { "id": "alexandrite_platinum_pendant_necklace", "fg": 519 },
+ { "id": "amethyst_platinum_pendant_necklace", "fg": 520 },
+ { "id": "aquamarine_platinum_pendant_necklace", "fg": 521 },
+ { "id": "blue_topaz_platinum_pendant_necklace", "fg": 522 },
+ { "id": "citrine_platinum_pendant_necklace", "fg": 523 },
+ { "id": "diamond_platinum_pendant_necklace", "fg": 524 },
+ { "id": "emerald_platinum_pendant_necklace", "fg": 525 },
+ { "id": "garnet_platinum_pendant_necklace", "fg": 526 },
+ { "id": "opal_platinum_pendant_necklace", "fg": 527 },
+ { "id": "pearl_platinum_pendant_necklace", "fg": 528 },
+ { "id": "peridot_platinum_pendant_necklace", "fg": 529 },
+ { "id": "platinum_necklace", "fg": 530 },
+ { "id": "ruby_platinum_pendant_necklace", "fg": 531 },
+ { "id": "sapphire_platinum_pendant_necklace", "fg": 532 },
+ { "id": "tourmaline_platinum_pendant_necklace", "fg": 533 },
+ { "id": "alexandrite_silver_pendant_necklace", "fg": 534 },
+ { "id": "amethyst_silver_pendant_necklace", "fg": 535 },
+ { "id": "aquamarine_silver_pendant_necklace", "fg": 536 },
+ { "id": "blue_topaz_silver_pendant_necklace", "fg": 537 },
+ { "id": "citrine_silver_pendant_necklace", "fg": 538 },
+ { "id": "diamond_silver_pendant_necklace", "fg": 539 },
+ { "id": "emerald_silver_pendant_necklace", "fg": 540 },
+ { "id": "garnet_silver_pendant_necklace", "fg": 541 },
+ { "id": "opal_silver_pendant_necklace", "fg": 542 },
+ { "id": "pearl_silver_pendant_necklace", "fg": 543 },
+ { "id": "peridot_silver_pendant_necklace", "fg": 544 },
+ { "id": "ruby_silver_pendant_necklace", "fg": 545 },
+ { "id": "sapphire_silver_pendant_necklace", "fg": 546 },
+ { "id": "silver_necklace", "fg": 547 },
+ { "id": "tourmaline_silver_pendant_necklace", "fg": 548 },
+ { "id": "alder_bark", "fg": 549 },
+ { "id": "barrette", "fg": 550 },
+ { "id": "birchbark", "fg": 551 },
+ { "id": "caff_gum", "fg": 552 },
+ { "id": "cattail_stalk", "fg": 553 },
+ { "id": "golf_tee", "fg": 554 },
+ { "id": "gum", "fg": 555 },
+ { "id": "hand_pump", "fg": 556 },
+ { "id": "ifak_pouch", "fg": 557 },
+ { "id": "knitting_needles", "fg": 558 },
+ { "id": "lasagne", "fg": 559 },
+ { "id": "magnifying_glass", "fg": 560 },
+ { "id": "mininuke", "fg": 561 },
+ { "id": "mininuke_act", "fg": 562 },
+ { "id": "net", "fg": 563 },
+ { "id": "rolling_paper", "fg": 564 },
+ { "id": "tanbark", "fg": 565 },
+ { "id": "willowbark", "fg": 568 },
+ { "id": "deck_of_cards", "fg": 569 },
+ { "id": "hairpin", "fg": 570 },
+ { "id": "weed", "fg": 571 },
+ { "id": "ceramic_bowl", "fg": 572 },
+ { "id": "chestrig", "fg": 573 },
+ { "id": "radio_car", "fg": 574 },
+ { "id": "radio_car_box", "fg": 575 },
+ { "id": "radio_car_on", "fg": 576 },
+ { "id": "radio_car_wheel", "fg": 577 },
+ { "id": "radiocontrol", "fg": 578 },
+ { "id": "rc_car_box", "fg": 579 },
+ { "id": "toaster", "fg": 580 },
+ { "id": "xl_chestrig", "fg": 581 },
+ { "id": "alternator_truck", "fg": 583 },
+ { "id": "ammolink", "fg": 584 },
+ { "id": "angle_grinder", "fg": 585 },
+ { "id": "atomic_lamp", "fg": 586 },
+ { "id": "atomic_lamp_off", "fg": 587 },
+ { "id": "barometer", "fg": 588 },
+ { "id": "birdfood", "fg": 589 },
+ { "id": "bismuth", "fg": 590 },
+ { "id": "brick_kiln", "fg": 591 },
+ { "id": "caffeine", "fg": 592 },
+ { "id": "camera", "fg": 593 },
+ { "id": "chem_citric_acid", "fg": 594 },
+ { "id": "chem_sulphur", "fg": 595 },
+ { "id": "chunk_sulfur", "fg": 596 },
+ { "id": "circsaw_off", "fg": 597 },
+ { "id": "circsaw_on", "fg": 598 },
+ { "id": "coal_lump", "fg": 599 },
+ { "id": "con_mix", "fg": 600 },
+ { "id": "disc_golf", "fg": 601 },
+ { "id": "drivebelt", "fg": 602 },
+ { "id": "eink_tablet_pc", "fg": 603 },
+ { "id": "flatbread", "fg": 604 },
+ { "id": "gelbox", "fg": 606 },
+ { "id": "generator_7500w", "fg": 607 },
+ { "id": "glowstick", "fg": 608 },
+ { "id": "glowstick_dead", "fg": 609 },
+ { "id": "glowstick_lit", "fg": 610 },
+ { "id": "gold_small", "fg": 611 },
+ { "id": "golf_club", "fg": 612 },
+ { "id": "handflare", "fg": 613 },
+ { "id": "heatpack", "fg": 614 },
+ { "id": "heatpack_used", "fg": 615 },
+ { "id": "hoe", "fg": 616 },
+ { "id": "homeopathic_pills", "fg": 617 },
+ { "id": "horn_bicycle", "fg": 618 },
+ { "id": "jumper_cable", "fg": 619 },
+ { "id": "kiln", "fg": 620 },
+ { "id": "lead", "fg": 621 },
+ { "id": "leather", "fg": 622 },
+ { "id": "lightstrip", "fg": 623 },
+ { "id": "material_aluminium_ingot", "fg": 624 },
+ { "id": "material_limestone", "fg": 625 },
+ { "id": "material_rhodonite", "fg": 626 },
+ { "id": "material_rocksalt", "fg": 627 },
+ { "id": "material_zincite", "fg": 628 },
+ { "id": "metal_smoother", "fg": 629 },
+ { "id": "multitool", "fg": 631 },
+ { "id": "nic_gum", "fg": 632 },
+ { "id": "pencil", "fg": 633 },
+ { "id": "pipe_cleaner", "fg": 634 },
+ { "id": "pipe_glass", "fg": 635 },
+ { "id": "platinum_small", "fg": 637 },
+ { "id": "polisher", "fg": 638 },
+ { "id": "press", "fg": 639 },
+ { "id": "puller", "fg": 640 },
+ { "id": "rake", "fg": 641 },
+ { "id": "razorclaw_roe", "fg": 642 },
+ { "id": "sickle", "fg": 643 },
+ { "id": "silver_small", "fg": 644 },
+ { "id": "small_repairkit", "fg": 645 },
+ { "id": "tanned_hide", "fg": 646 },
+ { "id": "tanned_pelt", "fg": 647 },
+ { "id": "tourist_table", "fg": 648 },
+ { "id": "zinc_metal", "fg": 649 },
+ { "id": "beartrap", "fg": 650 },
+ { "id": "tr_beartrap", "fg": 651 },
+ { "id": "wire_mesh", "fg": 652 },
+ { "id": "cannabis", "fg": 653 },
+ { "id": "dnd_handbook", "fg": 655 },
+ { "id": "holybook_bible1", "fg": 656 },
+ { "id": "holybook_bible3", "fg": 657 },
+ { "id": "l-stick", "fg": 658 },
+ { "id": "l-stick_on", "fg": 659 },
+ { "id": "makarovmag", "fg": 660 },
+ { "id": "manual_brawl", "fg": 661 },
+ { "id": "manual_carpentry", "fg": 662 },
+ { "id": "manual_dodge_kid", "fg": 663 },
+ { "id": "manual_driving", "fg": 664 },
+ { "id": "manual_melee", "fg": 665 },
+ { "id": "philosophy_book", "fg": 666 },
+ { "id": "phonebook", "fg": 667 },
+ { "id": "photo_album", "fg": 668 },
+ { "id": "plastic_bucket", "fg": 669 },
+ { "id": "record_weather", "fg": 670 },
+ { "id": "straw_fedora", "fg": 671 },
+ { "id": "textbook_computer", "fg": 672 },
+ { "id": "textbook_fabrication", "fg": 673 },
+ { "id": "textbook_survival", "fg": 674 },
+ { "id": "water_faucet", "fg": 675 },
+ { "id": "can_food", "fg": 676 },
+ { "id": "can_food_big", "fg": 677 },
+ { "id": "can_food_big_unsealed", "fg": 678 },
+ { "id": "can_food_unsealed", "fg": 679 },
+ { "id": "can_medium", "fg": 680 },
+ { "id": "can_medium_unsealed", "fg": 681 },
+ { "id": "clamp", "fg": 682 },
+ { "id": "crude_picklock", "fg": 683 },
+ { "id": "cured_hide", "fg": 684 },
+ { "id": "cured_pelt", "fg": 685 },
+ { "id": "demihuman_fat", "fg": 686 },
+ { "id": "fat", "fg": 687 },
+ { "id": "fat_tainted", "fg": 688 },
+ { "id": "headscarf", "fg": 689 },
+ { "id": "human_fat", "fg": 691 },
+ { "id": "marloss_scarf", "fg": 696 },
+ { "id": "meat", "fg": 697 },
+ { "id": "meat_tainted", "fg": 698 },
+ { "id": "mutant_fat", "fg": 699 },
+ { "id": "mutant_human_fat", "fg": 700 },
+ { "id": "mutant_human_flesh", "fg": 701 },
+ { "id": "mutant_meat", "fg": 702 },
+ { "id": "pipe_tobacco", "fg": 704 },
+ { "id": "raw_fur", "fg": 707 },
+ { "id": "raw_leather", "fg": 708 },
+ { "id": "tanning_hide", "fg": 714 },
+ { "id": "tanning_pelt", "fg": 715 },
+ { "id": "analytical_set_basic", "fg": 717 },
+ { "id": "balance_small", "fg": 718 },
+ { "id": "beaker", "fg": 719 },
+ { "id": "flask_glass", "fg": 720 },
+ { "id": "gradcylinder", "fg": 721 },
+ { "id": "ph_meter", "fg": 722 },
+ { "id": "spectrophotometer", "fg": 723 },
+ { "id": "test_tube", "fg": 724 },
+ { "id": "voltmeter", "fg": 725 },
+ { "id": "acidchitin_piece", "fg": 730 },
+ { "id": "chitin_piece", "fg": 731 },
+ { "id": "alexandrite_gold_earring", "fg": 750 },
+ { "id": "alexandrite_platinum_earring", "fg": 751 },
+ { "id": "alexandrite_silver_earring", "fg": 752 },
+ { "id": "amethyst_gold_earring", "fg": 753 },
+ { "id": "amethyst_platinum_earring", "fg": 754 },
+ { "id": "amethyst_silver_earring", "fg": 755 },
+ { "id": "aquamarine_gold_earring", "fg": 756 },
+ { "id": "aquamarine_platinum_earring", "fg": 757 },
+ { "id": "aquamarine_silver_earring", "fg": 758 },
+ { "id": "bead_ear", "fg": 759 },
+ { "id": "blue_topaz_gold_earring", "fg": 760 },
+ { "id": "blue_topaz_platinum_earring", "fg": 761 },
+ { "id": "blue_topaz_silver_earring", "fg": 762 },
+ { "id": "citrine_gold_earring", "fg": 763 },
+ { "id": "citrine_platinum_earring", "fg": 764 },
+ { "id": "citrine_silver_earring", "fg": 765 },
+ { "id": "copper_ear", "fg": 766 },
+ { "id": "diamond_gold_earring", "fg": 767 },
+ { "id": "diamond_platinum_earring", "fg": 768 },
+ { "id": "diamond_silver_earring", "fg": 769 },
+ { "id": "emerald_gold_earring", "fg": 770 },
+ { "id": "emerald_platinum_earring", "fg": 771 },
+ { "id": "emerald_silver_earring", "fg": 772 },
+ { "id": "garnet_gold_earring", "fg": 773 },
+ { "id": "garnet_platinum_earring", "fg": 774 },
+ { "id": "garnet_silver_earring", "fg": 775 },
+ { "id": "gold_ear", "fg": 776 },
+ { "id": "opal_gold_earring", "fg": 777 },
+ { "id": "opal_platinum_earring", "fg": 778 },
+ { "id": "opal_silver_earring", "fg": 779 },
+ { "id": "pearl_gold_earring", "fg": 780 },
+ { "id": "pearl_platinum_earring", "fg": 781 },
+ { "id": "pearl_silver_earring", "fg": 782 },
+ { "id": "peridot_gold_earring", "fg": 783 },
+ { "id": "peridot_platinum_earring", "fg": 784 },
+ { "id": "peridot_silver_earring", "fg": 785 },
+ { "id": "platinum_ear", "fg": 786 },
+ { "id": "ruby_gold_earring", "fg": 787 },
+ { "id": "ruby_platinum_earring", "fg": 788 },
+ { "id": "ruby_silver_earring", "fg": 789 },
+ { "id": "sapphire_gold_earring", "fg": 790 },
+ { "id": "sapphire_platinum_earring", "fg": 791 },
+ { "id": "sapphire_silver_earring", "fg": 792 },
+ { "id": "silver_ear", "fg": 793 },
+ { "id": "tourmaline_gold_earring", "fg": 794 },
+ { "id": "tourmaline_platinum_earring", "fg": 795 },
+ { "id": "tourmaline_silver_earring", "fg": 796 },
+ { "id": "flaregun", "fg": 797 },
+ { "id": "signal_flare", "fg": 798 },
+ { "id": "bread", "fg": 799 },
+ { "id": "brioche", "fg": 800 },
+ { "id": "brown_bread", "fg": 801 },
+ { "id": "brownie", "fg": 802 },
+ { "id": "cornbread", "fg": 805 },
+ { "id": "jihelucake", "fg": 806 },
+ { "id": "pancakes", "fg": 807 },
+ { "id": "sourdough_bread", "fg": 809 },
+ { "id": "sponge_cake", "fg": 810 },
+ { "id": "tortilla_corn", "fg": 811 },
+ { "id": "wastebread", "fg": 813 },
+ { "id": "airhorn", "fg": 814 },
+ { "id": "aluminum_foil", "fg": 815 },
+ { "id": "bowling_pin", "fg": 816 },
+ { "id": "boxing_gloves", "fg": 817 },
+ { "id": "chopsticks", "fg": 818 },
+ { "id": "comb_pocket", "fg": 819 },
+ { "id": "copper", "fg": 820 },
+ { "id": "eclipse_glasses", "fg": 821 },
+ { "id": "fish", "fg": 822 },
+ { "id": "licorice", "fg": 823 },
+ { "id": "metal_tank", "fg": 824 },
+ { "id": "metal_tank_little", "fg": 825 },
+ { "id": "nanomaterial", "fg": 826 },
+ { "id": "plut_cell", "fg": 827 },
+ { "id": "rebreather_filter", "fg": 828 },
+ { "id": "rock_sock", "fg": 829 },
+ { "id": "rollerskates", "fg": 830 },
+ { "id": "sandpaper", "fg": 831 },
+ { "id": "throwing_stick", "fg": 832 },
+ { "id": "waterproof_gunmod", "fg": 833 },
+ { "id": "circsaw_blade", "fg": 834 },
+ { "id": "mirror", "fg": 835 },
+ { "id": "glass_bowl", "fg": 836 },
+ { "id": "plastic_bowl_kids", "fg": 837 },
+ { "id": "blue_pen", "fg": 838 },
+ { "id": "green_pen", "fg": 839 },
+ { "id": "pen", "fg": 840 },
+ { "id": "red_pen", "fg": 841 },
+ { "id": "soldering_iron", "fg": 842 },
+ { "id": "superglue", "fg": 843 },
+ { "id": "grenade", "fg": 844 },
+ { "id": "grenade_act", "fg": 845 },
+ { "id": "grenade_emp", "fg": 846 },
+ { "id": "grenade_emp_act", "fg": 847 },
+ { "id": "grenade_inc", "fg": 848 },
+ { "id": "grenade_inc_act", "fg": 849 },
+ { "id": "pipebomb", "fg": 850 },
+ { "id": "pipebomb_act", "fg": 851 },
+ { "id": "scrambler", "fg": 852 },
+ { "id": "scrambler_act", "fg": 853 },
+ { "id": "smokebomb", "fg": 854 },
+ { "id": "smokebomb_act", "fg": 855 },
+ { "id": "boxcutter", "fg": 859 },
+ { "id": "copper_knife", "fg": 860 },
+ { "id": "diveknife", "fg": 861 },
+ { "id": "knife_bread", "fg": 862 },
+ { "id": "knife_butcher", "fg": 863 },
+ { "id": "knife_carving", "fg": 864 },
+ { "id": "knife_chef", "fg": 865 },
+ { "id": "knife_combat", "fg": 866 },
+ { "id": "knife_folding", "fg": 867 },
+ { "id": "knife_hunting", "fg": 868 },
+ { "id": "knife_paring", "fg": 869 },
+ { "id": "knife_rambo", "fg": 870 },
+ { "id": "knife_rm42", "fg": 871 },
+ { "id": "knife_steak", "fg": 872 },
+ { "id": "knife_swissarmy", "fg": 873 },
+ { "id": "knife_trench", "fg": 874 },
+ { "id": "makeshift_knife", "fg": 875 },
+ { "id": "pockknife", "fg": 876 },
+ { "id": "primitive_knife", "fg": 877 },
+ { "id": "throwing_knife", "fg": 878 },
+ { "id": "baseball", "fg": 900 },
+ { "id": "basketball", "fg": 901 },
+ { "id": "battery_car", "fg": 902 },
+ { "id": "beach_volleyball", "fg": 903 },
+ { "id": "bowling_ball", "fg": 904 },
+ { "id": "cell_phone", "fg": 905 },
+ { "id": "cell_phone_flashlight", "fg": 906 },
+ { "id": "cigar", "fg": 907 },
+ { "id": "cigar_butt", "fg": 908 },
+ { "id": "cigar_lit", "fg": 909 },
+ { "id": "ear_plugs", "fg": 911 },
+ { "id": "fiddlehead_boiled", "fg": 912 },
+ { "id": "fiddlehead_raw", "fg": 913 },
+ { "id": "fiddlehead_sauteed", "fg": 914 },
+ { "id": "flask_hip", "fg": 915 },
+ { "id": "football", "fg": 916 },
+ { "id": "golf_ball", "fg": 917 },
+ { "id": "holo_sight", "fg": 918 },
+ { "id": "indoor_volleyball", "fg": 919 },
+ { "id": "misc_repairkit", "fg": 920 },
+ { "id": "mre_beef_box", "fg": 921 },
+ { "id": "peephole", "fg": 922 },
+ { "id": "portable_game", "fg": 923 },
+ { "id": "puck", "fg": 924 },
+ { "id": "purse", "fg": 925 },
+ { "id": "suppressor", "fg": 926 },
+ { "id": "tourniquet_upper", "fg": 927 },
+ { "id": "two_way_radio", "fg": 928 },
+ { "id": "wristwatch", "fg": 929 },
+ { "id": "mushroom", "fg": 930 },
+ { "id": "cable_speaker", "fg": 931 },
+ { "id": "headphones_circumaural", "fg": 932 },
+ { "id": "microphone_xlr_generic", "fg": 933 },
+ { "id": "popcan_stove", "fg": 974 },
+ { "id": "rad_badge", "fg": 975 },
+ { "id": "alexandrite_gold_ring", "fg": 977 },
+ { "id": "alexandrite_platinum_ring", "fg": 978 },
+ { "id": "alexandrite_silver_ring", "fg": 979 },
+ { "id": "amethyst_gold_ring", "fg": 980 },
+ { "id": "amethyst_platinum_ring", "fg": 981 },
+ { "id": "amethyst_silver_ring", "fg": 982 },
+ { "id": "aquamarine_gold_ring", "fg": 983 },
+ { "id": "aquamarine_platinum_ring", "fg": 984 },
+ { "id": "aquamarine_silver_ring", "fg": 985 },
+ { "id": "blue_topaz_gold_ring", "fg": 986 },
+ { "id": "blue_topaz_platinum_ring", "fg": 987 },
+ { "id": "blue_topaz_silver_ring", "fg": 988 },
+ { "id": "citrine_gold_ring", "fg": 989 },
+ { "id": "citrine_platinum_ring", "fg": 990 },
+ { "id": "citrine_silver_ring", "fg": 991 },
+ { "id": "diamond_platinum_ring", "fg": 992 },
+ { "id": "diamond_ring", "fg": 993 },
+ { "id": "diamond_silver_ring", "fg": 994 },
+ { "id": "emerald_gold_ring", "fg": 995 },
+ { "id": "emerald_platinum_ring", "fg": 996 },
+ { "id": "emerald_silver_ring", "fg": 997 },
+ { "id": "garnet_gold_ring", "fg": 998 },
+ { "id": "garnet_platinum_ring", "fg": 999 },
+ { "id": "garnet_silver_ring", "fg": 1000 },
+ { "id": "gold_ring", "fg": 1001 },
+ { "id": "opal_gold_ring", "fg": 1002 },
+ { "id": "opal_platinum_ring", "fg": 1003 },
+ { "id": "opal_silver_ring", "fg": 1004 },
+ { "id": "pearl_gold_ring", "fg": 1005 },
+ { "id": "pearl_platinum_ring", "fg": 1006 },
+ { "id": "pearl_silver_ring", "fg": 1007 },
+ { "id": "peridot_gold_ring", "fg": 1008 },
+ { "id": "peridot_platinum_ring", "fg": 1009 },
+ { "id": "peridot_silver_ring", "fg": 1010 },
+ { "id": "ring_engagement", "fg": 1011 },
+ { "id": "ruby_gold_ring", "fg": 1012 },
+ { "id": "ruby_platinum_ring", "fg": 1013 },
+ { "id": "ruby_silver_ring", "fg": 1014 },
+ { "id": "sapphire_gold_ring", "fg": 1015 },
+ { "id": "sapphire_platinum_ring", "fg": 1016 },
+ { "id": "sapphire_silver_ring", "fg": 1017 },
+ { "id": "tourmaline_gold_ring", "fg": 1018 },
+ { "id": "tourmaline_platinum_ring", "fg": 1019 },
+ { "id": "tourmaline_silver_ring", "fg": 1020 },
+ { "id": "pebble", "fg": 1021 },
+ { "id": "pebble_clay", "fg": 1022 },
+ { "id": "rock", "fg": 1023 },
+ { "id": "rock_flaking", "fg": 1024 },
+ { "id": "rock_large", "fg": 1025 },
+ { "id": "slime_scrap", "fg": 1034 },
+ { "id": "clay_teapot", "fg": 1038 },
+ { "id": "crucible", "fg": 1041 },
+ { "id": "tire_iron", "fg": 1054 },
+ { "id": "towel", "fg": 1069 },
+ { "id": "towel_soiled", "fg": 1070 },
+ { "id": "towel_wet", "fg": 1071 },
+ { "id": "battery_charger", "fg": 1072 },
+ { "id": "recharge_station", "fg": 1073 },
+ { "id": "wax", "fg": 1076 }
]
},
{
"file": "normal.png",
- "//": "range 1072 to 4127",
+ "//": "range 1088 to 4255",
"tiles": [
{
"id": "fd_acid",
- "fg": 1090,
+ "fg": 1106,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"animated": true,
"fg": [
- { "weight": 8, "sprite": 1075 },
{ "weight": 8, "sprite": 1091 },
{ "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": 1187 },
+ { "weight": 8, "sprite": 1203 }
]
},
{
"id": "corner",
"animated": true,
"fg": [
- { "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 ] },
- { "weight": 8, "sprite": [ 1189, 1191, 1190, 1188 ] }
+ { "weight": 8, "sprite": [ 1189, 1191, 1190, 1188 ] },
+ { "weight": 8, "sprite": [ 1205, 1207, 1206, 1204 ] }
]
},
{
"id": "t_connection",
"animated": true,
"fg": [
- { "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 ] },
{ "weight": 8, "sprite": [ 1183, 1185, 1184, 1182 ] },
- { "weight": 8, "sprite": [ 1199, 1201, 1200, 1198 ] }
+ { "weight": 8, "sprite": [ 1199, 1201, 1200, 1198 ] },
+ { "weight": 8, "sprite": [ 1215, 1217, 1216, 1214 ] }
]
},
{
"id": "edge",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1081, 1080 ] },
{ "weight": 8, "sprite": [ 1097, 1096 ] },
{ "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": [ 1193, 1192 ] },
+ { "weight": 8, "sprite": [ 1209, 1208 ] }
]
},
{
"id": "end_piece",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1083, 1085, 1084, 1082 ] },
{ "weight": 8, "sprite": [ 1099, 1101, 1100, 1098 ] },
{ "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": [ 1195, 1197, 1196, 1194 ] },
+ { "weight": 8, "sprite": [ 1211, 1213, 1212, 1210 ] }
]
},
{
"id": "unconnected",
"animated": true,
"fg": [
- { "weight": 8, "sprite": [ 1090, 1090 ] },
{ "weight": 8, "sprite": [ 1106, 1106 ] },
{ "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": [ 1202, 1202 ] },
+ { "weight": 8, "sprite": [ 1218, 1218 ] }
]
}
]
},
{
"id": "fd_bile",
- "fg": 1218,
- "multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 1203 },
- { "id": "corner", "fg": [ 1205, 1207, 1206, 1204 ] },
- { "id": "t_connection", "fg": [ 1215, 1217, 1216, 1214 ] },
- { "id": "edge", "fg": [ 1209, 1208 ] },
- { "id": "end_piece", "fg": [ 1211, 1213, 1212, 1210 ] },
- { "id": "unconnected", "fg": [ 1218, 1218 ] }
- ]
- },
- {
- "id": "fd_sludge",
"fg": 1234,
"multitile": true,
"additional_tiles": [
@@ -1435,432 +1444,483 @@
{ "id": "unconnected", "fg": [ 1234, 1234 ] }
]
},
- { "id": "f_plant_seed", "fg": 1244, "rotates": false },
- { "id": "f_plant_seedling", "fg": 1245, "rotates": false },
- { "id": "f_plant_mature", "fg": 1243, "rotates": false },
- { "id": "f_plant_harvest", "fg": 1242, "rotates": false },
- { "id": "tr_rollmat", "fg": 1247 },
- { "id": "tr_fur_rollmat", "fg": 1246 },
- { "id": "f_air_conditioner", "fg": 1248 },
- { "id": "f_armchair", "rotates": true, "fg": [ 1251, 1252, 1250, 1249 ] },
- { "id": "f_ash", "fg": 1253 },
- { "id": "f_barricade_road", "fg": 1254 },
+ {
+ "id": "fd_sludge",
+ "fg": 1282,
+ "multitile": true,
+ "additional_tiles": [
+ {
+ "id": "center",
+ "fg": [ { "weight": 1, "sprite": 1235 }, { "weight": 1, "sprite": 1251 }, { "weight": 1, "sprite": 1267 } ]
+ },
+ {
+ "id": "corner",
+ "fg": [
+ { "weight": 1, "sprite": [ 1237, 1239, 1238, 1236 ] },
+ { "weight": 1, "sprite": [ 1253, 1255, 1254, 1252 ] },
+ { "weight": 1, "sprite": [ 1269, 1271, 1270, 1268 ] }
+ ]
+ },
+ {
+ "id": "t_connection",
+ "fg": [
+ { "weight": 1, "sprite": [ 1247, 1249, 1248, 1246 ] },
+ { "weight": 1, "sprite": [ 1263, 1265, 1264, 1262 ] },
+ { "weight": 1, "sprite": [ 1279, 1281, 1280, 1278 ] }
+ ]
+ },
+ {
+ "id": "edge",
+ "fg": [
+ { "weight": 1, "sprite": [ 1241, 1240 ] },
+ { "weight": 1, "sprite": [ 1257, 1256 ] },
+ { "weight": 1, "sprite": [ 1273, 1272 ] }
+ ]
+ },
+ {
+ "id": "end_piece",
+ "fg": [
+ { "weight": 1, "sprite": [ 1243, 1245, 1244, 1242 ] },
+ { "weight": 1, "sprite": [ 1259, 1261, 1260, 1258 ] },
+ { "weight": 1, "sprite": [ 1275, 1277, 1276, 1274 ] }
+ ]
+ },
+ {
+ "id": "unconnected",
+ "fg": [
+ { "weight": 1, "sprite": [ 1250, 1250 ] },
+ { "weight": 1, "sprite": [ 1266, 1266 ] },
+ { "weight": 1, "sprite": [ 1282, 1282 ] }
+ ]
+ }
+ ]
+ },
+ { "id": "f_plant_seed", "fg": 1292, "rotates": false },
+ { "id": "f_plant_seedling", "fg": 1293, "rotates": false },
+ { "id": "f_plant_mature", "fg": 1291, "rotates": false },
+ { "id": "f_plant_harvest", "fg": 1290, "rotates": false },
+ { "id": "tr_rollmat", "fg": 1295 },
+ { "id": "tr_fur_rollmat", "fg": 1294 },
+ { "id": "f_air_conditioner", "fg": 1296 },
+ { "id": "f_armchair", "rotates": true, "fg": [ 1299, 1300, 1298, 1297 ] },
+ { "id": "f_ash", "fg": 1301 },
+ { "id": "f_barricade_road", "fg": 1302 },
{
"id": "f_bathtub",
"multitile": true,
- "fg": 1270,
+ "fg": 1318,
"additional_tiles": [
- { "id": "center", "fg": 1255 },
- { "id": "corner", "fg": [ 1257, 1259, 1258, 1256 ] },
- { "id": "t_connection", "fg": [ 1267, 1269, 1268, 1266 ] },
- { "id": "edge", "fg": [ 1261, 1260 ] },
- { "id": "end_piece", "fg": [ 1263, 1265, 1264, 1262 ] },
- { "id": "unconnected", "fg": [ 1270, 1270 ] }
+ { "id": "center", "fg": 1303 },
+ { "id": "corner", "fg": [ 1305, 1307, 1306, 1304 ] },
+ { "id": "t_connection", "fg": [ 1315, 1317, 1316, 1314 ] },
+ { "id": "edge", "fg": [ 1309, 1308 ] },
+ { "id": "end_piece", "fg": [ 1311, 1313, 1312, 1310 ] },
+ { "id": "unconnected", "fg": [ 1318, 1318 ] }
]
},
{
"id": "f_bed",
"multitile": true,
- "fg": 1288,
+ "fg": 1336,
"additional_tiles": [
- { "id": "center", "fg": 1273 },
- { "id": "corner", "fg": [ 1275, 1277, 1276, 1274 ] },
- { "id": "t_connection", "fg": [ 1285, 1287, 1286, 1284 ] },
- { "id": "edge", "fg": [ 1279, 1278 ] },
- { "id": "end_piece", "fg": [ 1281, 1283, 1282, 1280 ] },
- { "id": "unconnected", "fg": [ 1288, 1288 ] }
+ { "id": "center", "fg": 1321 },
+ { "id": "corner", "fg": [ 1323, 1325, 1324, 1322 ] },
+ { "id": "t_connection", "fg": [ 1333, 1335, 1334, 1332 ] },
+ { "id": "edge", "fg": [ 1327, 1326 ] },
+ { "id": "end_piece", "fg": [ 1329, 1331, 1330, 1328 ] },
+ { "id": "unconnected", "fg": [ 1336, 1336 ] }
]
},
{
"id": "f_bench",
"multitile": true,
- "fg": 1304,
+ "fg": 1352,
"additional_tiles": [
- { "id": "center", "fg": 1289 },
- { "id": "corner", "fg": [ 1291, 1293, 1292, 1290 ] },
- { "id": "t_connection", "fg": [ 1301, 1303, 1302, 1300 ] },
- { "id": "edge", "fg": [ 1295, 1294 ] },
- { "id": "end_piece", "fg": [ 1297, 1299, 1298, 1296 ] },
- { "id": "unconnected", "fg": [ 1304, 1304 ] }
+ { "id": "center", "fg": 1337 },
+ { "id": "corner", "fg": [ 1339, 1341, 1340, 1338 ] },
+ { "id": "t_connection", "fg": [ 1349, 1351, 1350, 1348 ] },
+ { "id": "edge", "fg": [ 1343, 1342 ] },
+ { "id": "end_piece", "fg": [ 1345, 1347, 1346, 1344 ] },
+ { "id": "unconnected", "fg": [ 1352, 1352 ] }
]
},
- { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 1306 }, { "weight": 2, "sprite": 1307 } ] },
- { "id": "f_boulder_medium", "fg": 1308 },
- { "id": "f_boulder_small", "fg": 1309 },
- { "id": "f_generator_broken", "fg": 1310 },
- { "id": "t_generator_broken", "fg": 1310, "bg": 2815 },
- { "id": "f_bulletin", "fg": 1311 },
- { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 1312 },
- { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 1313 },
+ { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 1354 }, { "weight": 2, "sprite": 1355 } ] },
+ { "id": "f_boulder_medium", "fg": 1356 },
+ { "id": "f_boulder_small", "fg": 1357 },
+ { "id": "f_generator_broken", "fg": 1358 },
+ { "id": "t_generator_broken", "fg": 1358, "bg": 2915 },
+ { "id": "f_bulletin", "fg": 1359 },
+ { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 1360 },
+ { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 1361 },
{
"id": [ "f_canvas_wall", "f_large_canvas_wall" ],
"multitile": true,
- "fg": 1329,
+ "fg": 1377,
"additional_tiles": [
- { "id": "center", "fg": 1314 },
- { "id": "corner", "fg": [ 1316, 1318, 1317, 1315 ] },
- { "id": "t_connection", "fg": [ 1326, 1328, 1327, 1325 ] },
- { "id": "edge", "fg": [ 1320, 1319 ] },
- { "id": "end_piece", "fg": [ 1322, 1324, 1323, 1321 ] },
- { "id": "unconnected", "fg": 1329 }
+ { "id": "center", "fg": 1362 },
+ { "id": "corner", "fg": [ 1364, 1366, 1365, 1363 ] },
+ { "id": "t_connection", "fg": [ 1374, 1376, 1375, 1373 ] },
+ { "id": "edge", "fg": [ 1368, 1367 ] },
+ { "id": "end_piece", "fg": [ 1370, 1372, 1371, 1369 ] },
+ { "id": "unconnected", "fg": 1377 }
]
},
- { "id": "f_cardboard_box", "fg": 1330 },
- { "id": "f_centrifuge", "fg": 1331 },
- { "id": "t_centrifuge", "fg": 1331, "bg": 3060 },
- { "id": "f_chair", "rotates": true, "fg": [ 1334, 1335, 1333, 1332 ] },
- { "id": "f_chamomile", "fg": 1336 },
- { "id": "f_compact_ASRG_containment", "fg": 1338 },
+ { "id": "f_cardboard_box", "fg": 1378 },
+ { "id": "f_centrifuge", "fg": 1379 },
+ { "id": "t_centrifuge", "fg": 1379, "bg": 3160 },
+ { "id": "f_chair", "rotates": true, "fg": [ 1382, 1383, 1381, 1380 ] },
+ { "id": "f_chamomile", "fg": 1384 },
+ { "id": "f_compact_ASRG_containment", "fg": 1386 },
{
"id": "f_counter",
"multitile": true,
- "fg": 1354,
+ "fg": 1402,
"additional_tiles": [
- { "id": "center", "fg": 1339 },
- { "id": "corner", "fg": [ 1341, 1343, 1342, 1340 ] },
- { "id": "t_connection", "fg": [ 1351, 1353, 1352, 1350 ] },
- { "id": "edge", "fg": [ 1345, 1344 ] },
- { "id": "end_piece", "fg": [ 1347, 1349, 1348, 1346 ] },
- { "id": "unconnected", "fg": [ 1354, 1354 ] }
+ { "id": "center", "fg": 1387 },
+ { "id": "corner", "fg": [ 1389, 1391, 1390, 1388 ] },
+ { "id": "t_connection", "fg": [ 1399, 1401, 1400, 1398 ] },
+ { "id": "edge", "fg": [ 1393, 1392 ] },
+ { "id": "end_piece", "fg": [ 1395, 1397, 1396, 1394 ] },
+ { "id": "unconnected", "fg": [ 1402, 1402 ] }
]
},
{
"id": "f_cupboard",
"multitile": true,
- "fg": 1370,
+ "fg": 1418,
"additional_tiles": [
- { "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": "center", "fg": 1403 },
+ { "id": "corner", "fg": [ 1405, 1407, 1406, 1404 ] },
+ { "id": "t_connection", "fg": [ 1415, 1417, 1416, 1414 ] },
+ { "id": "edge", "fg": [ 1409, 1408 ] },
+ { "id": "end_piece", "fg": [ 1411, 1413, 1412, 1410 ] },
+ { "id": "unconnected", "fg": [ 1418, 1418 ] }
]
},
- { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 1373 }, { "weight": 2, "sprite": 1374 } ] },
- { "id": "f_dandelion_season_spring", "fg": 1375 },
- { "id": "f_dandelion_season_summer", "fg": 1377 },
- { "id": "f_dandelion_season_autumn", "fg": 1376 },
- { "id": "f_dandelion_season_winter", "fg": 1378 },
- { "id": "f_datura", "fg": 1379 },
+ { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 1421 }, { "weight": 2, "sprite": 1422 } ] },
+ { "id": "f_dandelion_season_spring", "fg": 1423 },
+ { "id": "f_dandelion_season_summer", "fg": 1425 },
+ { "id": "f_dandelion_season_autumn", "fg": 1424 },
+ { "id": "f_dandelion_season_winter", "fg": 1426 },
+ { "id": "f_datura", "fg": 1427 },
{
"id": "f_desk",
"multitile": true,
- "fg": 1395,
+ "fg": 1443,
"additional_tiles": [
- { "id": "center", "fg": 1380 },
- { "id": "corner", "fg": [ 1382, 1384, 1383, 1381 ] },
- { "id": "t_connection", "fg": [ 1392, 1394, 1393, 1391 ] },
- { "id": "edge", "fg": [ 1386, 1385 ] },
- { "id": "end_piece", "fg": [ 1388, 1390, 1389, 1387 ] },
- { "id": "unconnected", "fg": [ 1395, 1395 ] }
+ { "id": "center", "fg": 1428 },
+ { "id": "corner", "fg": [ 1430, 1432, 1431, 1429 ] },
+ { "id": "t_connection", "fg": [ 1440, 1442, 1441, 1439 ] },
+ { "id": "edge", "fg": [ 1434, 1433 ] },
+ { "id": "end_piece", "fg": [ 1436, 1438, 1437, 1435 ] },
+ { "id": "unconnected", "fg": [ 1443, 1443 ] }
]
},
- { "id": "f_displaycase", "fg": 1396 },
- { "id": "f_entertainment_center", "fg": 1397 },
- { "id": "f_filing_cabinet", "fg": 1398 },
- { "id": "f_firering", "fg": 1399 },
- { "id": "f_flower_spurge", "fg": 1400 },
- { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 1401 }, { "weight": 2, "sprite": 1402 } ] },
+ { "id": "f_displaycase", "fg": 1444 },
+ { "id": "f_entertainment_center", "fg": 1445 },
+ { "id": "f_filing_cabinet", "fg": 1446 },
+ { "id": "f_firering", "fg": 1447 },
+ { "id": "f_flower_spurge", "fg": 1448 },
+ { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 1449 }, { "weight": 2, "sprite": 1450 } ] },
{
"id": [ "f_grave_stone", "f_grave_head" ],
- "fg": [ { "weight": 1, "sprite": 1403 }, { "weight": 1, "sprite": 1404 } ]
- },
- { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 1405 }, { "weight": 1, "sprite": 1406 } ] },
- { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 1407 },
- { "id": "f_gunsafe_ml", "fg": 1410 },
- { "id": "f_gunsafe_mj", "fg": 1409 },
- { "id": "f_gun_safe_el", "fg": 1408 },
- { "id": "f_hay", "fg": 1411 },
- { "id": "f_indoor_plant", "fg": 1412 },
- { "id": "f_indoor_plant_y", "fg": 1413 },
- { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 1414 },
- { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 1415 },
- { "id": "f_leather_tarp", "fg": 1416 },
- { "id": "f_mailbox", "fg": 1418 },
- { "id": "f_metal_crate_r", "fg": 1421 },
- { "id": "f_metal_crate_c", "fg": 1419 },
- { "id": "f_metal_crate_o", "fg": 1420 },
+ "fg": [ { "weight": 1, "sprite": 1451 }, { "weight": 1, "sprite": 1452 } ]
+ },
+ { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 1453 }, { "weight": 1, "sprite": 1454 } ] },
+ { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 1455 },
+ { "id": "f_gunsafe_ml", "fg": 1458 },
+ { "id": "f_gunsafe_mj", "fg": 1457 },
+ { "id": "f_gun_safe_el", "fg": 1456 },
+ { "id": "f_hay", "fg": 1459 },
+ { "id": "f_indoor_plant", "fg": 1460 },
+ { "id": "f_indoor_plant_y", "fg": 1461 },
+ { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 1462 },
+ { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 1463 },
+ { "id": "f_leather_tarp", "fg": 1464 },
+ { "id": "f_mailbox", "fg": 1466 },
+ { "id": "f_metal_crate_r", "fg": 1469 },
+ { "id": "f_metal_crate_c", "fg": 1467 },
+ { "id": "f_metal_crate_o", "fg": 1468 },
{
"id": "f_metal_table",
"multitile": true,
- "fg": 1437,
+ "fg": 1485,
"additional_tiles": [
- { "id": "center", "fg": 1422 },
- { "id": "corner", "fg": [ 1424, 1426, 1425, 1423 ] },
- { "id": "t_connection", "fg": [ 1434, 1436, 1435, 1433 ] },
- { "id": "edge", "fg": [ 1428, 1427 ] },
- { "id": "end_piece", "fg": [ 1430, 1432, 1431, 1429 ] },
- { "id": "unconnected", "fg": [ 1437, 1437 ] }
+ { "id": "center", "fg": 1470 },
+ { "id": "corner", "fg": [ 1472, 1474, 1473, 1471 ] },
+ { "id": "t_connection", "fg": [ 1482, 1484, 1483, 1481 ] },
+ { "id": "edge", "fg": [ 1476, 1475 ] },
+ { "id": "end_piece", "fg": [ 1478, 1480, 1479, 1477 ] },
+ { "id": "unconnected", "fg": [ 1485, 1485 ] }
]
},
- { "id": "f_alien_anemone", "fg": 1438 },
- { "id": "f_alien_table", "fg": 1439 },
- { "id": "f_mustard_season_spring", "fg": 1441, "rotates": false },
- { "id": "f_mustard_season_summer", "fg": 1442, "rotates": false },
- { "id": "f_mustard_season_autumn", "fg": 1440, "rotates": false },
- { "id": "f_mustard_season_winter", "fg": 1443, "rotates": false },
- { "id": "f_mutpoppy", "fg": 1444 },
+ { "id": "f_alien_anemone", "fg": 1486 },
+ { "id": "f_alien_table", "fg": 1487 },
+ { "id": "f_mustard_season_spring", "fg": 1489, "rotates": false },
+ { "id": "f_mustard_season_summer", "fg": 1490, "rotates": false },
+ { "id": "f_mustard_season_autumn", "fg": 1488, "rotates": false },
+ { "id": "f_mustard_season_winter", "fg": 1491, "rotates": false },
+ { "id": "f_mutpoppy", "fg": 1492 },
{
"id": "f_planter",
"multitile": true,
- "fg": 1460,
+ "fg": 1508,
"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": 1493 },
+ { "id": "corner", "fg": [ 1495, 1497, 1496, 1494 ] },
+ { "id": "t_connection", "fg": [ 1505, 1507, 1506, 1504 ] },
+ { "id": "edge", "fg": [ 1499, 1498 ] },
+ { "id": "end_piece", "fg": [ 1501, 1503, 1502, 1500 ] },
+ { "id": "unconnected", "fg": [ 1508, 1508 ] }
]
},
{
"id": "f_planter_harvest",
"multitile": true,
- "fg": 1476,
+ "fg": 1524,
"additional_tiles": [
- { "id": "center", "fg": 1461 },
- { "id": "corner", "fg": [ 1463, 1465, 1464, 1462 ] },
- { "id": "t_connection", "fg": [ 1473, 1475, 1474, 1472 ] },
- { "id": "edge", "fg": [ 1467, 1466 ] },
- { "id": "end_piece", "fg": [ 1469, 1471, 1470, 1468 ] },
- { "id": "unconnected", "fg": [ 1476, 1476 ] }
+ { "id": "center", "fg": 1509 },
+ { "id": "corner", "fg": [ 1511, 1513, 1512, 1510 ] },
+ { "id": "t_connection", "fg": [ 1521, 1523, 1522, 1520 ] },
+ { "id": "edge", "fg": [ 1515, 1514 ] },
+ { "id": "end_piece", "fg": [ 1517, 1519, 1518, 1516 ] },
+ { "id": "unconnected", "fg": [ 1524, 1524 ] }
]
},
{
"id": "f_planter_mature",
"multitile": true,
- "fg": 1492,
+ "fg": 1540,
"additional_tiles": [
- { "id": "center", "fg": 1477 },
- { "id": "corner", "fg": [ 1479, 1481, 1480, 1478 ] },
- { "id": "t_connection", "fg": [ 1489, 1491, 1490, 1488 ] },
- { "id": "edge", "fg": [ 1483, 1482 ] },
- { "id": "end_piece", "fg": [ 1485, 1487, 1486, 1484 ] },
- { "id": "unconnected", "fg": [ 1492, 1492 ] }
+ { "id": "center", "fg": 1525 },
+ { "id": "corner", "fg": [ 1527, 1529, 1528, 1526 ] },
+ { "id": "t_connection", "fg": [ 1537, 1539, 1538, 1536 ] },
+ { "id": "edge", "fg": [ 1531, 1530 ] },
+ { "id": "end_piece", "fg": [ 1533, 1535, 1534, 1532 ] },
+ { "id": "unconnected", "fg": [ 1540, 1540 ] }
]
},
{
"id": "f_planter_seedling",
"multitile": true,
- "fg": 1508,
+ "fg": 1556,
"additional_tiles": [
- { "id": "center", "fg": 1493 },
- { "id": "corner", "fg": [ 1495, 1497, 1496, 1494 ] },
- { "id": "t_connection", "fg": [ 1505, 1507, 1506, 1504 ] },
- { "id": "edge", "fg": [ 1499, 1498 ] },
- { "id": "end_piece", "fg": [ 1501, 1503, 1502, 1500 ] },
- { "id": "unconnected", "fg": [ 1508, 1508 ] }
+ { "id": "center", "fg": 1541 },
+ { "id": "corner", "fg": [ 1543, 1545, 1544, 1542 ] },
+ { "id": "t_connection", "fg": [ 1553, 1555, 1554, 1552 ] },
+ { "id": "edge", "fg": [ 1547, 1546 ] },
+ { "id": "end_piece", "fg": [ 1549, 1551, 1550, 1548 ] },
+ { "id": "unconnected", "fg": [ 1556, 1556 ] }
]
},
- { "id": "f_plastic_groundsheet", "fg": 1509 },
+ { "id": "f_plastic_groundsheet", "fg": 1557 },
{
"id": "f_pool_table",
"multitile": true,
- "fg": 1525,
+ "fg": 1573,
"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 }
+ { "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 }
]
},
- { "id": "f_rack", "fg": 1526 },
- { "id": "f_rack_wood", "fg": 1527 },
- { "id": "f_recycle_bin", "fg": 1528 },
- { "id": "f_rubble", "fg": 1529 },
- { "id": "f_rubble_rock", "fg": 1530 },
- { "id": "f_sign", "fg": 1531 },
- { "id": "f_skin_door", "fg": 1532 },
- { "id": "f_skin_door_o", "fg": 1533 },
+ { "id": "f_rack", "fg": 1574 },
+ { "id": "f_rack_wood", "fg": 1575 },
+ { "id": "f_recycle_bin", "fg": 1576 },
+ { "id": "f_rubble", "fg": 1577 },
+ { "id": "f_rubble_rock", "fg": 1578 },
+ { "id": "f_sign", "fg": 1579 },
+ { "id": "f_skin_door", "fg": 1580 },
+ { "id": "f_skin_door_o", "fg": 1581 },
{
"id": "f_skin_wall",
- "fg": 1550,
+ "fg": 1598,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 1535 },
- { "id": "corner", "fg": [ 1537, 1539, 1538, 1536 ] },
- { "id": "t_connection", "fg": [ 1547, 1549, 1548, 1546 ] },
- { "id": "edge", "fg": [ 1541, 1540 ] },
- { "id": "end_piece", "fg": [ 1543, 1545, 1544, 1542 ] },
- { "id": "unconnected", "fg": 1550 }
+ { "id": "center", "fg": 1583 },
+ { "id": "corner", "fg": [ 1585, 1587, 1586, 1584 ] },
+ { "id": "t_connection", "fg": [ 1595, 1597, 1596, 1594 ] },
+ { "id": "edge", "fg": [ 1589, 1588 ] },
+ { "id": "end_piece", "fg": [ 1591, 1593, 1592, 1590 ] },
+ { "id": "unconnected", "fg": 1598 }
]
},
{
"id": "f_sofa",
"multitile": true,
- "fg": 1566,
+ "fg": 1614,
"additional_tiles": [
- { "id": "center", "fg": 1551 },
- { "id": "corner", "fg": [ 1553, 1555, 1554, 1552 ] },
- { "id": "t_connection", "fg": [ 1563, 1565, 1564, 1562 ] },
- { "id": "edge", "fg": [ 1557, 1556 ] },
- { "id": "end_piece", "fg": [ 1559, 1561, 1560, 1558 ] },
- { "id": "unconnected", "fg": [ 1566, 1566 ] }
+ { "id": "center", "fg": 1599 },
+ { "id": "corner", "fg": [ 1601, 1603, 1602, 1600 ] },
+ { "id": "t_connection", "fg": [ 1611, 1613, 1612, 1610 ] },
+ { "id": "edge", "fg": [ 1605, 1604 ] },
+ { "id": "end_piece", "fg": [ 1607, 1609, 1608, 1606 ] },
+ { "id": "unconnected", "fg": [ 1614, 1614 ] }
]
},
- { "id": "f_stool", "fg": 1567 },
- { "id": "f_sunflower_season_spring", "fg": 1568 },
- { "id": "f_sunflower_season_winter", "fg": 1569 },
+ { "id": "f_stool", "fg": 1615 },
+ { "id": "f_sunflower_season_spring", "fg": 1616 },
+ { "id": "f_sunflower_season_winter", "fg": 1617 },
{
"id": "f_table",
"multitile": true,
- "fg": 1585,
+ "fg": 1633,
"additional_tiles": [
- { "id": "center", "fg": 1570 },
- { "id": "corner", "fg": [ 1572, 1574, 1573, 1571 ] },
- { "id": "t_connection", "fg": [ 1582, 1584, 1583, 1581 ] },
- { "id": "edge", "fg": [ 1576, 1575 ] },
- { "id": "end_piece", "fg": [ 1578, 1580, 1579, 1577 ] },
- { "id": "unconnected", "fg": [ 1585, 1585 ] }
+ { "id": "center", "fg": 1618 },
+ { "id": "corner", "fg": [ 1620, 1622, 1621, 1619 ] },
+ { "id": "t_connection", "fg": [ 1630, 1632, 1631, 1629 ] },
+ { "id": "edge", "fg": [ 1624, 1623 ] },
+ { "id": "end_piece", "fg": [ 1626, 1628, 1627, 1625 ] },
+ { "id": "unconnected", "fg": [ 1633, 1633 ] }
]
},
- { "id": "f_toilet", "fg": 1586 },
- { "id": "f_trashcan", "fg": 1587 },
- { "id": "f_wreckage", "fg": 1588 },
- { "id": "f_lilypad", "fg": 1589 },
- { "id": "f_small_satelitte_dish", "fg": 1593 },
- { "id": "f_TV_antenna", "fg": 1590 },
- { "id": "f_cellphone_booster", "fg": 1591 },
- { "id": "f_vent_pipe", "fg": 1594 },
- { "id": "f_roof_turbine_vent", "fg": 1592 },
+ { "id": "f_toilet", "fg": 1634 },
+ { "id": "f_trashcan", "fg": 1635 },
+ { "id": "f_wreckage", "fg": 1636 },
+ { "id": "f_lilypad", "fg": 1637 },
+ { "id": "f_small_satelitte_dish", "fg": 1641 },
+ { "id": "f_TV_antenna", "fg": 1638 },
+ { "id": "f_cellphone_booster", "fg": 1639 },
+ { "id": "f_vent_pipe", "fg": 1642 },
+ { "id": "f_roof_turbine_vent", "fg": 1640 },
{
"id": "f_sandbag_half",
"multitile": true,
- "fg": 1610,
- "additional_tiles": [
- { "id": "center", "fg": 1595 },
- { "id": "corner", "fg": [ 1597, 1599, 1598, 1596 ] },
- { "id": "t_connection", "fg": [ 1607, 1609, 1608, 1606 ] },
- { "id": "edge", "fg": [ 1601, 1600 ] },
- { "id": "end_piece", "fg": [ 1603, 1605, 1604, 1602 ] },
- { "id": "unconnected", "fg": [ 1610, 1610 ] }
- ]
- },
- { "id": "1st_aid", "fg": 1611 },
- { "id": "2x4", "fg": 1612 },
- { "id": "halberd", "fg": 1633 },
- { "id": "halberd_fake", "fg": 1633 },
- { "id": "nodachi", "fg": 1641 },
- { "id": "nodachi_fake", "fg": 1641 },
- { "id": "nodachi_inferior", "fg": 1641 },
- { "id": "arming_sword", "fg": 1777 },
- { "id": "art_sphere", "fg": 1792 },
- { "id": "art_rod", "fg": 1790 },
- { "id": "art_teardrop", "fg": 1794 },
- { "id": "art_lamp", "fg": 1786 },
- { "id": "art_snake", "fg": 1791 },
- { "id": "art_disc", "fg": 1783 },
- { "id": "art_beads", "fg": 1780 },
- { "id": "art_napkin", "fg": 1787 },
- { "id": "art_urchin", "fg": 1796 },
- { "id": "art_jelly", "fg": 1784 },
- { "id": "art_spiral", "fg": 1793 },
- { "id": "art_pin", "fg": 1788 },
- { "id": "art_tube", "fg": 1795 },
- { "id": "art_pyramid", "fg": 1789 },
- { "id": "art_crystal", "fg": 1782 },
- { "id": "art_knot", "fg": 1785 },
- { "id": "art_crescent", "fg": 1781 },
- { "id": "altered_teapot", "fg": 1778 },
- { "id": "architect_cube", "fg": 1779 },
- { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 1854 },
- { "id": [ "ak47", "aksemi" ], "fg": 1804 },
- { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 1818 },
- { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 1855 },
- { "id": [ "m249", "m249_semi" ], "fg": 1862 },
- { "id": [ "m60", "m60_semi" ], "fg": 1872 },
- { "id": [ "mp40", "mp40semi" ], "fg": 1888 },
- { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 1927 },
- { "id": "fire_ax", "fg": 1943 },
- { "id": "ax", "fg": 1946 },
- { "id": "hatchet", "fg": 1944 },
- { "id": "backpack", "fg": 1947 },
- { "id": "duffelbag", "fg": 1948 },
- { "id": "molle_pack", "fg": 1949 },
- { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 1952 },
- { "id": "bag_canvas", "fg": 1955 },
- { "id": "bat", "fg": 1956 },
- { "id": "bat_metal", "fg": 1957 },
- { "id": "blanket", "fg": 1958 },
- { "id": "down_blanket", "fg": 1959 },
- { "id": "electric_blanket", "fg": 1960 },
- { "id": "board_trap", "fg": 1961 },
- { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 1962 },
- { "id": "box_large", "fg": 1973 },
- { "id": "box_medium", "fg": 1974 },
- { "id": "broom", "fg": 1975 },
- { "id": "bwirebat", "fg": 1976 },
- { "id": "cattlefodder", "fg": 1995 },
- { "id": "chainsaw_off", "fg": 1996 },
- { "id": "axe_ring", "fg": 2003 },
- { "id": "balclava", "fg": 2004 },
- { "id": "beret", "fg": 2005 },
- { "id": "boots", "fg": 2006 },
- { "id": "boxer_briefs", "fg": 2007 },
- { "id": "boxer_shorts", "fg": 2008 },
- { "id": "boy_shorts", "fg": 2009 },
- { "id": "bra", "fg": 2010 },
- { "id": "briefs", "fg": 2011 },
- { "id": "bscabbard", "fg": 2012 },
- { "id": "corset", "fg": 2015 },
- { "id": "cowboy_hat", "fg": 2016 },
- { "id": "dress_shoes", "fg": 2017 },
- { "id": "hat_ball", "fg": 2018 },
- { "id": "hat_cotton", "fg": 2019 },
- { "id": "hat_fur", "fg": 2020 },
- { "id": "hat_knit", "fg": 2022 },
- { "id": "hat_noise_cancelling", "fg": 2023 },
- { "id": "helmet_barbute", "fg": 2024 },
- { "id": "helmet_chitin", "fg": 2025 },
- { "id": "helmet_kabuto", "fg": 2026 },
- { "id": "holster", "fg": 2027 },
- { "id": "hoodie", "fg": 2028 },
- { "id": "jeans", "fg": 2031 },
- { "id": "leather_belt", "fg": 2032 },
- { "id": "longshirt", "fg": 2033 },
- { "id": "maid_dress", "fg": 2034 },
- { "id": "maid_hat", "fg": 2035 },
- { "id": "mask_dust", "fg": 2036 },
- { "id": "panties", "fg": 2037 },
- { "id": "pants", "fg": 2038 },
- { "id": "pants_cargo", "fg": 2039 },
- { "id": "polo_shirt", "fg": 2040 },
- { "id": "ragpouch", "fg": 2041 },
- { "id": "scabbard", "fg": 2042 },
- { "id": "sneakers", "fg": 2044 },
- { "id": "socks", "fg": 2045 },
- { "id": "spearsling", "fg": 2046 },
- { "id": "stockings", "fg": 2048 },
- { "id": "sweater", "fg": 2051 },
- { "id": "sweatshirt", "fg": 2052 },
- { "id": "tank_top", "fg": 2053 },
- { "id": "tool_belt", "fg": 2054 },
- { "id": "tshirt", "fg": 2055 },
- { "id": "turban", "fg": 2056 },
- { "id": "undershirt", "fg": 2057 },
- { "id": "coat_lab", "fg": 2013 },
- { "id": "coat_rain", "fg": 2014 },
- { "id": "sports_bra", "fg": 2047 },
- { "id": "skirt", "fg": 2043 },
- { "id": "jacket_light", "fg": 2030 },
- { "id": "jacket_army", "fg": 2029 },
- { "id": "hat_hard", "fg": 2021 },
- { "id": "striped_pants", "fg": 2049 },
- { "id": "striped_shirt", "fg": 2050 },
- { "id": "cloak", "fg": 2058 },
- { "id": "cloak_wool", "fg": 2061 },
- { "id": "cloak_leather", "fg": 2060 },
- { "id": "cloak_fur", "fg": 2059 },
- { "id": "coffeemaker", "fg": 2062 },
- { "id": "contacts", "fg": 2063 },
- { "id": "corpse", "fg": 2064 },
- { "id": "corpse_generic_human", "fg": 2065 },
- { "id": "crowbar", "fg": 2073 },
- { "id": "filter_air", "fg": 2076 },
- { "id": "fish_bait", "fg": 2077 },
+ "fg": 1658,
+ "additional_tiles": [
+ { "id": "center", "fg": 1643 },
+ { "id": "corner", "fg": [ 1645, 1647, 1646, 1644 ] },
+ { "id": "t_connection", "fg": [ 1655, 1657, 1656, 1654 ] },
+ { "id": "edge", "fg": [ 1649, 1648 ] },
+ { "id": "end_piece", "fg": [ 1651, 1653, 1652, 1650 ] },
+ { "id": "unconnected", "fg": [ 1658, 1658 ] }
+ ]
+ },
+ { "id": "1st_aid", "fg": 1659 },
+ { "id": "2x4", "fg": 1660 },
+ { "id": "halberd", "fg": 1681 },
+ { "id": "halberd_fake", "fg": 1681 },
+ { "id": "nodachi", "fg": 1689 },
+ { "id": "nodachi_fake", "fg": 1689 },
+ { "id": "nodachi_inferior", "fg": 1689 },
+ { "id": "arming_sword", "fg": 1825 },
+ { "id": "art_sphere", "fg": 1840 },
+ { "id": "art_rod", "fg": 1838 },
+ { "id": "art_teardrop", "fg": 1842 },
+ { "id": "art_lamp", "fg": 1834 },
+ { "id": "art_snake", "fg": 1839 },
+ { "id": "art_disc", "fg": 1831 },
+ { "id": "art_beads", "fg": 1828 },
+ { "id": "art_napkin", "fg": 1835 },
+ { "id": "art_urchin", "fg": 1844 },
+ { "id": "art_jelly", "fg": 1832 },
+ { "id": "art_spiral", "fg": 1841 },
+ { "id": "art_pin", "fg": 1836 },
+ { "id": "art_tube", "fg": 1843 },
+ { "id": "art_pyramid", "fg": 1837 },
+ { "id": "art_crystal", "fg": 1830 },
+ { "id": "art_knot", "fg": 1833 },
+ { "id": "art_crescent", "fg": 1829 },
+ { "id": "altered_teapot", "fg": 1826 },
+ { "id": "architect_cube", "fg": 1827 },
+ { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 1902 },
+ { "id": [ "ak47", "aksemi" ], "fg": 1852 },
+ { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 1866 },
+ { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 1903 },
+ { "id": [ "m249", "m249_semi" ], "fg": 1911 },
+ { "id": [ "m60", "m60_semi" ], "fg": 1921 },
+ { "id": [ "mp40", "mp40semi" ], "fg": 1937 },
+ { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 1976 },
+ { "id": "fire_ax", "fg": 1992 },
+ { "id": "ax", "fg": 1995 },
+ { "id": "hatchet", "fg": 1993 },
+ { "id": "backpack", "fg": 1996 },
+ { "id": "duffelbag", "fg": 1997 },
+ { "id": "molle_pack", "fg": 1998 },
+ { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 2001 },
+ { "id": "bag_canvas", "fg": 2004 },
+ { "id": "bat", "fg": 2005 },
+ { "id": "bat_metal", "fg": 2006 },
+ { "id": "blanket", "fg": 2007 },
+ { "id": "down_blanket", "fg": 2008 },
+ { "id": "electric_blanket", "fg": 2009 },
+ { "id": "board_trap", "fg": 2010 },
+ { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 2011 },
+ { "id": "box_large", "fg": 2022 },
+ { "id": "box_medium", "fg": 2023 },
+ { "id": "broom", "fg": 2024 },
+ { "id": "bwirebat", "fg": 2025 },
+ { "id": "cattlefodder", "fg": 2044 },
+ { "id": "chainsaw_off", "fg": 2045 },
+ { "id": "axe_ring", "fg": 2052 },
+ { "id": "balclava", "fg": 2053 },
+ { "id": "beret", "fg": 2054 },
+ { "id": "boots", "fg": 2055 },
+ { "id": "boxer_briefs", "fg": 2056 },
+ { "id": "boxer_shorts", "fg": 2057 },
+ { "id": "boy_shorts", "fg": 2058 },
+ { "id": "bra", "fg": 2059 },
+ { "id": "briefs", "fg": 2060 },
+ { "id": "bscabbard", "fg": 2061 },
+ { "id": "corset", "fg": 2064 },
+ { "id": "cowboy_hat", "fg": 2065 },
+ { "id": "dress_shoes", "fg": 2066 },
+ { "id": "hat_ball", "fg": 2067 },
+ { "id": "hat_cotton", "fg": 2068 },
+ { "id": "hat_fur", "fg": 2069 },
+ { "id": "hat_knit", "fg": 2071 },
+ { "id": "hat_noise_cancelling", "fg": 2072 },
+ { "id": "helmet_barbute", "fg": 2073 },
+ { "id": "helmet_chitin", "fg": 2074 },
+ { "id": "helmet_kabuto", "fg": 2075 },
+ { "id": "holster", "fg": 2076 },
+ { "id": "hoodie", "fg": 2077 },
+ { "id": "jeans", "fg": 2080 },
+ { "id": "leather_belt", "fg": 2081 },
+ { "id": "longshirt", "fg": 2082 },
+ { "id": "maid_dress", "fg": 2083 },
+ { "id": "maid_hat", "fg": 2084 },
+ { "id": "mask_dust", "fg": 2085 },
+ { "id": "panties", "fg": 2086 },
+ { "id": "pants", "fg": 2087 },
+ { "id": "pants_cargo", "fg": 2088 },
+ { "id": "polo_shirt", "fg": 2089 },
+ { "id": "ragpouch", "fg": 2090 },
+ { "id": "scabbard", "fg": 2091 },
+ { "id": "sneakers", "fg": 2093 },
+ { "id": "socks", "fg": 2094 },
+ { "id": "spearsling", "fg": 2095 },
+ { "id": "stockings", "fg": 2097 },
+ { "id": "sweater", "fg": 2100 },
+ { "id": "sweatshirt", "fg": 2101 },
+ { "id": "tank_top", "fg": 2102 },
+ { "id": "tool_belt", "fg": 2103 },
+ { "id": "tshirt", "fg": 2104 },
+ { "id": "turban", "fg": 2105 },
+ { "id": "undershirt", "fg": 2106 },
+ { "id": "coat_lab", "fg": 2062 },
+ { "id": "coat_rain", "fg": 2063 },
+ { "id": "sports_bra", "fg": 2096 },
+ { "id": "skirt", "fg": 2092 },
+ { "id": "jacket_light", "fg": 2079 },
+ { "id": "jacket_army", "fg": 2078 },
+ { "id": "hat_hard", "fg": 2070 },
+ { "id": "striped_pants", "fg": 2098 },
+ { "id": "striped_shirt", "fg": 2099 },
+ { "id": "cloak", "fg": 2107 },
+ { "id": "cloak_wool", "fg": 2110 },
+ { "id": "cloak_leather", "fg": 2109 },
+ { "id": "cloak_fur", "fg": 2108 },
+ { "id": "coffeemaker", "fg": 2111 },
+ { "id": "contacts", "fg": 2112 },
+ { "id": "corpse", "fg": 2113 },
+ { "id": "corpse_generic_human", "fg": 2114 },
+ { "id": "crowbar", "fg": 2122 },
+ { "id": "filter_air", "fg": 2125 },
+ { "id": "fish_bait", "fg": 2126 },
{
"id": [
"corpse_mon_fish_white_bass",
@@ -1874,7 +1934,7 @@
"corpse_mon_fish_white_catfish",
"corpse_mon_fish_pickerel"
],
- "fg": 2081
+ "fg": 2130
},
{
"id": [
@@ -1886,7 +1946,7 @@
"corpse_mon_fish_white_sucker",
"corpse_mon_fish_fallfish"
],
- "fg": 2080
+ "fg": 2129
},
{
"id": [
@@ -1901,7 +1961,7 @@
"corpse_mon_fish_bullhead",
"corpse_mon_fish_carp"
],
- "fg": 2079
+ "fg": 2128
},
{
"id": [
@@ -1917,340 +1977,382 @@
"corpse_mon_fish_grass_carp",
"corpse_mon_fish_bowfin"
],
- "fg": 2078
- },
- { "id": "fish_trap", "fg": 2082 },
- { "id": "fishing_rod_basic", "fg": 2083 },
- { "id": "fishing_rod_professional", "fg": 2084 },
- { "id": "forge", "fg": 2086 },
- { "id": "char_forge", "fg": 2085 },
- { "id": "glass_shard", "fg": 2110 },
- { "id": "hoboreel", "fg": 2111 },
- { "id": "hydrogen_tank", "fg": 2112 },
- { "id": "leather_tarp", "fg": 2113 },
- { "id": "water", "fg": 2124 },
- { "id": "water_clean", "fg": 2125 },
- { "id": "gasoline", "fg": 2119 },
- { "id": "diesel", "fg": 2117 },
- { "id": "biodiesel", "fg": 2115 },
- { "id": "flamethrower_fuel", "fg": 2118 },
- { "id": "avgas", "fg": 2114 },
- { "id": "lamp_oil", "fg": 2121 },
- { "id": "motor_oil", "fg": 2122 },
- { "id": "napalm", "fg": 2123 },
- { "id": "gelled_gasoline", "fg": 2120 },
- { "id": "blood", "fg": 2116 },
- { "id": "log", "fg": 2126 },
- { "id": "lucern_hammer", "fg": 2127 },
- { "id": "marble", "fg": 2128 },
- { "id": "microwave", "fg": 2129 },
- { "id": "mjolnir", "fg": 2130 },
- { "id": "mop", "fg": 2131 },
- { "id": "mp5mag", "fg": 2132 },
- { "id": "nail", "fg": 2137 },
- { "id": "nailbat", "fg": 2138 },
- { "id": "nailboard", "fg": 2139 },
- { "id": "needle_bone", "fg": 2140 },
- { "id": "needle_curved", "fg": 2141 },
- { "id": "needle_wood", "fg": 2142 },
- { "id": "many_years_old_newspaper", "fg": 2143 },
- { "id": "years_old_newspaper", "fg": 2148 },
- { "id": "months_old_newspaper", "fg": 2144 },
- { "id": "newest_newspaper", "fg": 2145 },
- { "id": "one_year_old_newspaper", "fg": 2146 },
- { "id": "weeks_old_newspaper", "fg": 2147 },
- { "id": "2h_flail_wood", "fg": 2149 },
- { "id": "pillow", "fg": 2151 },
- { "id": "down_pillow", "fg": 2150 },
- { "id": "pine_bough", "fg": 2152 },
- { "id": "pinecone", "fg": 2153 },
+ "fg": 2127
+ },
+ { "id": "fish_trap", "fg": 2131 },
+ { "id": "fishing_rod_basic", "fg": 2132 },
+ { "id": "fishing_rod_professional", "fg": 2133 },
+ { "id": "forge", "fg": 2135 },
+ { "id": "char_forge", "fg": 2134 },
+ { "id": "glass_shard", "fg": 2159 },
+ { "id": "hoboreel", "fg": 2160 },
+ { "id": "hydrogen_tank", "fg": 2161 },
+ { "id": "leather_tarp", "fg": 2162 },
+ { "id": "water", "fg": 2173 },
+ { "id": "water_clean", "fg": 2174 },
+ { "id": "gasoline", "fg": 2168 },
+ { "id": "diesel", "fg": 2166 },
+ { "id": "biodiesel", "fg": 2164 },
+ { "id": "flamethrower_fuel", "fg": 2167 },
+ { "id": "avgas", "fg": 2163 },
+ { "id": "lamp_oil", "fg": 2170 },
+ { "id": "motor_oil", "fg": 2171 },
+ { "id": "napalm", "fg": 2172 },
+ { "id": "gelled_gasoline", "fg": 2169 },
+ { "id": "blood", "fg": 2165 },
+ { "id": "log", "fg": 2175 },
+ { "id": "lucern_hammer", "fg": 2176 },
+ { "id": "marble", "fg": 2178 },
+ { "id": "microwave", "fg": 2179 },
+ { "id": "mjolnir", "fg": 2180 },
+ { "id": "mop", "fg": 2181 },
+ { "id": "mp5mag", "fg": 2182 },
+ { "id": "nail", "fg": 2190 },
+ { "id": "nailbat", "fg": 2191 },
+ { "id": "nailboard", "fg": 2192 },
+ { "id": "needle_bone", "fg": 2193 },
+ { "id": "needle_curved", "fg": 2194 },
+ { "id": "needle_wood", "fg": 2195 },
+ { "id": "many_years_old_newspaper", "fg": 2196 },
+ { "id": "years_old_newspaper", "fg": 2201 },
+ { "id": "months_old_newspaper", "fg": 2197 },
+ { "id": "newest_newspaper", "fg": 2198 },
+ { "id": "one_year_old_newspaper", "fg": 2199 },
+ { "id": "weeks_old_newspaper", "fg": 2200 },
+ { "id": "2h_flail_wood", "fg": 2202 },
+ { "id": "pillow", "fg": 2204 },
+ { "id": "down_pillow", "fg": 2203 },
+ { "id": "pine_bough", "fg": 2205 },
+ { "id": "pinecone", "fg": 2206 },
{
"id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ],
- "fg": 2154
- },
- { "id": "plastic_sheet", "fg": 2156 },
- { "id": "plastic_shopping_bag", "fg": 2157 },
- { "id": "pneumatic_shotgun", "fg": 2158 },
- { "id": "pool_ball", "fg": 2159 },
- { "id": "powder_candy", "fg": 2161 },
- { "id": "rag", "fg": 2162 },
- { "id": "rebar", "fg": 2163 },
- { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 2164 },
- { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 2165 },
- { "id": "scissors", "fg": 2166 },
- { "id": "screwdriver", "fg": 2167 },
- { "id": "sewing_kit", "fg": 2168 },
- { "id": "sharp_rock", "fg": 2169 },
- { "id": "sheet_metal", "fg": 2170 },
- { "id": "sheet_metal_small", "fg": 2171 },
- { "id": "shovel", "fg": 2172 },
- { "id": "slingshot", "fg": 2173 },
- { "id": "solar_panel", "fg": 2175 },
- { "id": "solar_cell", "fg": 2174 },
- { "id": "pointy_stick", "fg": 2176 },
- { "id": "spear_wood", "fg": 2184 },
- { "id": "spear_spike", "fg": 2182 },
- { "id": "spear_knife", "fg": 2178 },
- { "id": "spear_knife_superior", "fg": 2179 },
- { "id": "spear_pipe", "fg": 2180 },
- { "id": "spear_rebar", "fg": 2181 },
- { "id": "spear_steel", "fg": 2183 },
- { "id": "spear_copper", "fg": 2177 },
- { "id": "splinter", "fg": 2185 },
- { "id": "sponge", "fg": 2186 },
- { "id": "spoon", "fg": 2187 },
- { "id": "stick", "fg": 2188 },
- { "id": "stick_long", "fg": 2189 },
- { "id": "primitive_hammer", "fg": 2190 },
- { "id": "string_36", "fg": 2191 },
- { "id": "string_6", "fg": 2192 },
- { "id": "tailors_kit", "fg": 2194 },
- { "id": "tarp", "fg": 2195 },
- { "id": "television", "fg": 2196 },
- { "id": "thermos", "fg": 2197 },
- { "id": "thread", "fg": 2198 },
- { "id": "2h_flail_steel", "fg": 2203 },
- { "id": "welder", "fg": 2204 },
- { "id": "welder_crude", "fg": 2205 },
- { "id": "wood_panel", "fg": 2206 },
- { "id": "wood_sheet", "fg": 2207 },
- { "id": "corpse_mon_troll", "fg": 2208 },
- { "id": "mon_bat", "fg": 2212, "bg": 2370 },
- { "id": "mon_crow", "fg": 2213, "bg": 2370 },
- { "id": "mon_duck", "fg": 2214, "bg": 2370 },
- { "id": "mon_robin", "fg": 2216, "bg": 2370 },
- { "id": "mon_pigeon", "fg": 2215, "bg": 2370 },
- { "id": "mon_turkey", "fg": 2217, "bg": 2369 },
- { "id": "mon_fish_blinky", "fg": 2218 },
+ "fg": 2207
+ },
+ { "id": "plastic_sheet", "fg": 2209 },
+ { "id": "plastic_shopping_bag", "fg": 2210 },
+ { "id": "pneumatic_shotgun", "fg": 2211 },
+ { "id": "pool_ball", "fg": 2212 },
+ { "id": "powder_candy", "fg": 2214 },
+ { "id": "rag", "fg": 2215 },
+ { "id": "rebar", "fg": 2216 },
+ { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 2217 },
+ { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 2218 },
+ { "id": "scissors", "fg": 2219 },
+ { "id": "screwdriver", "fg": 2220 },
+ { "id": "sewing_kit", "fg": 2221 },
+ { "id": "sharp_rock", "fg": 2222 },
+ { "id": "sheet_metal", "fg": 2223 },
+ { "id": "sheet_metal_small", "fg": 2224 },
+ { "id": "shovel", "fg": 2225 },
+ { "id": "slingshot", "fg": 2226 },
+ { "id": "solar_panel", "fg": 2228 },
+ { "id": "solar_cell", "fg": 2227 },
+ { "id": "pointy_stick", "fg": 2229 },
+ { "id": "spear_wood", "fg": 2237 },
+ { "id": "spear_spike", "fg": 2235 },
+ { "id": "spear_knife", "fg": 2231 },
+ { "id": "spear_knife_superior", "fg": 2232 },
+ { "id": "spear_pipe", "fg": 2233 },
+ { "id": "spear_rebar", "fg": 2234 },
+ { "id": "spear_steel", "fg": 2236 },
+ { "id": "spear_copper", "fg": 2230 },
+ { "id": "splinter", "fg": 2238 },
+ { "id": "sponge", "fg": 2239 },
+ { "id": "spoon", "fg": 2240 },
+ { "id": "stick", "fg": 2241 },
+ { "id": "stick_long", "fg": 2242 },
+ { "id": "primitive_hammer", "fg": 2243 },
+ { "id": "string_36", "fg": 2244 },
+ { "id": "string_6", "fg": 2245 },
+ { "id": "tailors_kit", "fg": 2247 },
+ { "id": "tarp", "fg": 2248 },
+ { "id": "television", "fg": 2249 },
+ { "id": "thermos", "fg": 2250 },
+ { "id": "thread", "fg": 2251 },
+ { "id": "2h_flail_steel", "fg": 2256 },
+ { "id": "welder", "fg": 2257 },
+ { "id": "welder_crude", "fg": 2258 },
+ { "id": "wood_panel", "fg": 2259 },
+ { "id": "wood_sheet", "fg": 2260 },
+ { "id": "corpse_mon_troll", "fg": 2261 },
+ { "id": "mon_bat", "fg": 2265, "bg": 2397 },
+ { "id": "mon_crow", "fg": 2266, "bg": 2397 },
+ { "id": "mon_duck", "fg": 2267, "bg": 2397 },
+ { "id": "mon_robin", "fg": 2269, "bg": 2397 },
+ { "id": "mon_pigeon", "fg": 2268, "bg": 2397 },
+ { "id": "mon_turkey", "fg": 2270, "bg": 2396 },
+ { "id": "mon_fish_blinky", "fg": 2271 },
{
"id": "mon_cat",
"fg": [
- { "weight": 1, "sprite": 2219 },
- { "weight": 1, "sprite": 2220 },
- { "weight": 1, "sprite": 2244 },
- { "weight": 1, "sprite": 2243 }
+ { "weight": 1, "sprite": 2272 },
+ { "weight": 1, "sprite": 2273 },
+ { "weight": 1, "sprite": 2297 },
+ { "weight": 1, "sprite": 2296 }
],
- "bg": 2370
+ "bg": 2397
},
{
"id": "mon_cat_bengal",
- "fg": [ { "weight": 1, "sprite": 2223 }, { "weight": 1, "sprite": 2222 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2276 }, { "weight": 1, "sprite": 2275 } ],
+ "bg": 2397
},
{
"id": "mon_cat_calico",
- "fg": [ { "weight": 1, "sprite": 2226 }, { "weight": 1, "sprite": 2225 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2279 }, { "weight": 1, "sprite": 2278 } ],
+ "bg": 2397
},
{
"id": "mon_cat_chonker",
- "fg": [ { "weight": 1, "sprite": 2229 }, { "weight": 1, "sprite": 2228 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2282 }, { "weight": 1, "sprite": 2281 } ],
+ "bg": 2397
},
{
"id": "mon_cat_devon_rex",
- "fg": [ { "weight": 1, "sprite": 2232 }, { "weight": 1, "sprite": 2231 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2285 }, { "weight": 1, "sprite": 2284 } ],
+ "bg": 2397
},
{
"id": "mon_cat_longhair",
- "fg": [ { "weight": 1, "sprite": 2235 }, { "weight": 1, "sprite": 2234 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2288 }, { "weight": 1, "sprite": 2287 } ],
+ "bg": 2397
},
{
"id": "mon_cat_maine_coon",
- "fg": [ { "weight": 1, "sprite": 2238 }, { "weight": 1, "sprite": 2237 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2291 }, { "weight": 1, "sprite": 2290 } ],
+ "bg": 2397
},
{
"id": "mon_cat_persian",
- "fg": [ { "weight": 1, "sprite": 2241 }, { "weight": 1, "sprite": 2240 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2294 }, { "weight": 1, "sprite": 2293 } ],
+ "bg": 2397
},
{
"id": "mon_cat_siamese",
- "fg": [ { "weight": 1, "sprite": 2247 }, { "weight": 1, "sprite": 2246 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2300 }, { "weight": 1, "sprite": 2299 } ],
+ "bg": 2397
},
{
"id": "mon_cat_sphynx",
- "fg": [ { "weight": 1, "sprite": 2250 }, { "weight": 1, "sprite": 2249 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2303 }, { "weight": 1, "sprite": 2302 } ],
+ "bg": 2397
},
{
"id": "mon_cat_tabby",
- "fg": [ { "weight": 1, "sprite": 2253 }, { "weight": 1, "sprite": 2252 } ],
- "bg": 2370
- },
- { "id": "mon_cat_kitten", "fg": 2242, "bg": 2370 },
- { "id": "mon_cat_bengal_kitten", "fg": 2221, "bg": 2370 },
- { "id": "mon_cat_calico_kitten", "fg": 2224, "bg": 2370 },
- { "id": "mon_cat_chonker_kitten", "fg": 2227, "bg": 2370 },
- { "id": "mon_cat_devon_rex_kitten", "fg": 2230, "bg": 2370 },
- { "id": "mon_cat_longhair_kitten", "fg": 2233, "bg": 2370 },
- { "id": "mon_cat_maine_coon_kitten", "fg": 2236, "bg": 2370 },
- { "id": "mon_cat_persian_kitten", "fg": 2239, "bg": 2370 },
- { "id": "mon_cat_siamese_kitten", "fg": 2245, "bg": 2370 },
- { "id": "mon_cat_sphynx_kitten", "fg": 2248, "bg": 2370 },
- { "id": "mon_cat_tabby_kitten", "fg": 2251, "bg": 2370 },
- { "id": "mon_coyote", "fg": 2254, "bg": 2369 },
- { "id": "mon_coyote_wolf", "fg": 2255, "bg": 2369 },
- { "id": "mon_dog", "fg": 2256, "bg": 2369 },
- { "id": "mon_dog_skeleton", "fg": 2282, "bg": 2369 },
+ "fg": [ { "weight": 1, "sprite": 2306 }, { "weight": 1, "sprite": 2305 } ],
+ "bg": 2397
+ },
+ { "id": "mon_cat_kitten", "fg": 2295, "bg": 2397 },
+ { "id": "mon_cat_bengal_kitten", "fg": 2274, "bg": 2397 },
+ { "id": "mon_cat_calico_kitten", "fg": 2277, "bg": 2397 },
+ { "id": "mon_cat_chonker_kitten", "fg": 2280, "bg": 2397 },
+ { "id": "mon_cat_devon_rex_kitten", "fg": 2283, "bg": 2397 },
+ { "id": "mon_cat_longhair_kitten", "fg": 2286, "bg": 2397 },
+ { "id": "mon_cat_maine_coon_kitten", "fg": 2289, "bg": 2397 },
+ { "id": "mon_cat_persian_kitten", "fg": 2292, "bg": 2397 },
+ { "id": "mon_cat_siamese_kitten", "fg": 2298, "bg": 2397 },
+ { "id": "mon_cat_sphynx_kitten", "fg": 2301, "bg": 2397 },
+ { "id": "mon_cat_tabby_kitten", "fg": 2304, "bg": 2397 },
+ { "id": "mon_coyote", "fg": 2307, "bg": 2396 },
+ { "id": "mon_coyote_wolf", "fg": 2308, "bg": 2396 },
+ { "id": "mon_dog", "fg": 2309, "bg": 2396 },
+ { "id": "mon_dog_skeleton", "fg": 2335, "bg": 2396 },
{
"id": "mon_zombie_dog",
- "fg": [ { "weight": 1, "sprite": 2283 }, { "weight": 1, "sprite": 2284 } ],
- "bg": 2369
- },
- { "id": "mon_dog_beagle", "fg": 2261, "bg": 2370 },
- { "id": "mon_dog_gshepherd", "fg": 2273, "bg": 2369 },
- { "id": "mon_dog_boxer", "fg": 2263, "bg": 2369 },
- { "id": "mon_dog_dachshund", "fg": 2269, "bg": 2369 },
- { "id": "mon_dog_auscattle", "fg": 2257, "bg": 2369 },
- { "id": "mon_dog_bcollie", "fg": 2259, "bg": 2369 },
- { "id": "mon_dog_bull", "fg": 2265, "bg": 2370 },
- { "id": "mon_dog_chihuahua", "fg": 2267, "bg": 2370 },
- { "id": "mon_dog_gpyrenees", "fg": 2271, "bg": 2369 },
- { "id": "mon_dog_pitbullmix", "fg": 2275, "bg": 2369 },
- { "id": "mon_dog_samoyed", "fg": 2280, "bg": 2369 },
- { "id": "mon_dog_rottweiler", "fg": 2278, "bg": 2369 },
- { "id": "mon_dog_auscattle_pup", "fg": 2258, "bg": 2370 },
- { "id": "mon_dog_bcollie_pup", "fg": 2260, "bg": 2370 },
- { "id": "mon_dog_beagle_pup", "fg": 2262, "bg": 2370 },
- { "id": "mon_dog_boxer_pup", "fg": 2264, "bg": 2370 },
- { "id": "mon_dog_bull_pup", "fg": 2266, "bg": 2370 },
- { "id": "mon_dog_chihuahua_pup", "fg": 2268, "bg": 2370 },
- { "id": "mon_dog_dachshund_pup", "fg": 2270, "bg": 2370 },
- { "id": "mon_dog_gpyrenees_pup", "fg": 2272, "bg": 2370 },
- { "id": "mon_dog_gshepherd_pup", "fg": 2274, "bg": 2370 },
- { "id": "mon_dog_pitbullmix_pup", "fg": 2276, "bg": 2370 },
- { "id": "mon_dog_pup", "fg": 2277, "bg": 2370 },
- { "id": "mon_dog_rottweiler_pup", "fg": 2279, "bg": 2370 },
- { "id": "mon_dog_samoyed_pup", "fg": 2281, "bg": 2370 },
- { "id": "mon_fish_tiny", "fg": 2288 },
- { "id": "mon_fish_small", "fg": 2287 },
- { "id": "mon_fish_medium", "fg": 2286 },
- { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 2285 },
- { "id": "mon_sewer_fish", "fg": 2289 },
- { "id": "mon_goose_canadian", "fg": 2290, "bg": 2370 },
+ "fg": [ { "weight": 1, "sprite": 2336 }, { "weight": 1, "sprite": 2337 } ],
+ "bg": 2396
+ },
+ { "id": "mon_dog_beagle", "fg": 2314, "bg": 2397 },
+ { "id": "mon_dog_gshepherd", "fg": 2326, "bg": 2396 },
+ { "id": "mon_dog_boxer", "fg": 2316, "bg": 2396 },
+ { "id": "mon_dog_dachshund", "fg": 2322, "bg": 2396 },
+ { "id": "mon_dog_auscattle", "fg": 2310, "bg": 2396 },
+ { "id": "mon_dog_bcollie", "fg": 2312, "bg": 2396 },
+ { "id": "mon_dog_bull", "fg": 2318, "bg": 2397 },
+ { "id": "mon_dog_chihuahua", "fg": 2320, "bg": 2397 },
+ { "id": "mon_dog_gpyrenees", "fg": 2324, "bg": 2396 },
+ { "id": "mon_dog_pitbullmix", "fg": 2328, "bg": 2396 },
+ { "id": "mon_dog_samoyed", "fg": 2333, "bg": 2396 },
+ { "id": "mon_dog_rottweiler", "fg": 2331, "bg": 2396 },
+ { "id": "mon_dog_auscattle_pup", "fg": 2311, "bg": 2397 },
+ { "id": "mon_dog_bcollie_pup", "fg": 2313, "bg": 2397 },
+ { "id": "mon_dog_beagle_pup", "fg": 2315, "bg": 2397 },
+ { "id": "mon_dog_boxer_pup", "fg": 2317, "bg": 2397 },
+ { "id": "mon_dog_bull_pup", "fg": 2319, "bg": 2397 },
+ { "id": "mon_dog_chihuahua_pup", "fg": 2321, "bg": 2397 },
+ { "id": "mon_dog_dachshund_pup", "fg": 2323, "bg": 2397 },
+ { "id": "mon_dog_gpyrenees_pup", "fg": 2325, "bg": 2397 },
+ { "id": "mon_dog_gshepherd_pup", "fg": 2327, "bg": 2397 },
+ { "id": "mon_dog_pitbullmix_pup", "fg": 2329, "bg": 2397 },
+ { "id": "mon_dog_pup", "fg": 2330, "bg": 2397 },
+ { "id": "mon_dog_rottweiler_pup", "fg": 2332, "bg": 2397 },
+ { "id": "mon_dog_samoyed_pup", "fg": 2334, "bg": 2397 },
+ { "id": "mon_fish_tiny", "fg": 2341 },
+ { "id": "mon_fish_small", "fg": 2340 },
+ { "id": "mon_fish_medium", "fg": 2339 },
+ { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 2338 },
+ { "id": "mon_sewer_fish", "fg": 2342 },
+ { "id": "mon_goose_canadian", "fg": 2343, "bg": 2397 },
{
"id": "mon_pig",
- "fg": [ { "weight": 8, "sprite": 2293 }, { "weight": 3, "sprite": 2291 }, { "weight": 1, "sprite": 2292 } ],
- "bg": 2369
- },
- { "id": "mon_pig_piglet", "fg": 2294, "bg": 2370 },
- { "id": "mon_mink", "fg": 2295, "bg": 2370 },
- { "id": "mon_duck_chick", "fg": 2296, "bg": 2370 },
- { "id": "mon_goose_canadian_chick", "fg": 2297, "bg": 2370 },
- { "id": "mon_cockatrice_chick", "fg": 2299, "bg": 2370 },
- { "id": "mon_cockatrice", "fg": 2298, "bg": 2370 },
- { "id": "mon_sewer_rat", "fg": 2300, "bg": 2370 },
- { "id": "mon_bear_cub", "fg": 2301, "bg": 2370 },
- { "id": [ "mon_fox", "mon_fox_red", "mon_fox_gray" ], "fg": 2302, "bg": 2369 },
- { "id": "mon_wolf", "fg": 2303, "bg": 2369 },
- { "id": "mon_rattlesnake_giant", "fg": 2305, "bg": 2369 },
- { "id": "mon_rattlesnake", "fg": 2304, "bg": 2370 },
- { "id": "mon_sewer_snake", "fg": 2306, "bg": 2370 },
- { "id": "mon_chipmunk", "fg": 2311, "bg": 2370 },
- { "id": "mon_groundhog", "fg": 2313, "bg": 2370 },
- { "id": "mon_lemming", "fg": 2307, "bg": 2308 },
- { "id": "mon_beaver", "fg": 2309, "bg": 2370 },
- { "id": "mon_black_rat", "fg": 2310, "bg": 2370 },
- { "id": "mon_deer_mouse", "fg": 2312, "bg": 2370 },
- { "id": "mon_muskrat", "fg": 2314, "bg": 2370 },
- { "id": "mon_otter", "fg": 2316, "bg": 2370 },
- { "id": "mon_rabbit", "fg": 2317, "bg": 2370 },
- { "id": "mon_squirrel", "fg": 2318, "bg": 2370 },
- { "id": "mon_squirrel_red", "fg": 2319, "bg": 2370 },
- { "id": "mon_opossum", "fg": 2315, "bg": 2370 },
- { "id": "mon_centipede_giant", "fg": 2320, "bg": 2369 },
- { "id": "mon_dragonfly", "fg": 2321, "bg": 2370 },
- { "id": "mon_locust", "fg": 2322, "bg": 2369 },
- { "id": "mon_locust_nymph", "fg": 2323, "bg": 2370 },
- { "id": "mon_mosquito", "fg": 2324, "bg": 2370 },
- { "id": "mon_ant", "fg": 2329, "bg": 2369 },
- { "id": "mon_ant_acid", "fg": 2330, "bg": 2369 },
- { "id": "corpse_mon_ant", "fg": 2325 },
- { "id": "corpse_mon_ant_acid", "fg": 2326 },
- { "id": "mon_ant_larva", "fg": 2332, "bg": 2370 },
- { "id": "mon_ant_acid_larva", "fg": 2331, "bg": 2370 },
- { "id": "corpse_mon_ant_larva", "fg": 2328 },
- { "id": "corpse_mon_ant_acid_larva", "fg": 2327 },
- { "id": "mon_dermatik_larva", "fg": 2333, "bg": 2370 },
- { "id": "mon_wasp_small", "fg": 2334, "bg": 2370 },
- { "id": "mon_giant_cockroach", "fg": 2335, "bg": 2369 },
- { "id": "mon_giant_cockroach_nymph", "fg": 2336, "bg": 2370 },
- { "id": "mon_plague_nymph", "fg": 2337, "bg": 2370 },
- { "id": "mon_plague_vector", "fg": 2338, "bg": 2369 },
- { "id": "mon_pregnant_giant_cockroach", "fg": 2339, "bg": 2369 },
- { "id": "mon_skittering_plague", "fg": 2340, "bg": 2369 },
- { "id": "mon_eyebot", "fg": 2341, "bg": 2370 },
- { "id": "mon_firefly", "fg": 2342, "bg": 2370 },
- { "id": "mon_kreck", "fg": 2345, "bg": 2369 },
- { "id": "mon_blob", "fg": 2346, "bg": 2369 },
+ "fg": [ { "weight": 8, "sprite": 2346 }, { "weight": 3, "sprite": 2344 }, { "weight": 1, "sprite": 2345 } ],
+ "bg": 2396
+ },
+ { "id": "mon_pig_piglet", "fg": 2347, "bg": 2397 },
+ { "id": "mon_mink", "fg": 2348, "bg": 2397 },
+ { "id": "mon_crow_chick", "fg": 2349, "bg": 2397 },
+ { "id": "mon_duck_chick", "fg": 2350, "bg": 2397 },
+ { "id": "mon_goose_canadian_chick", "fg": 2351, "bg": 2397 },
+ { "id": "mon_cockatrice_chick", "fg": 2353, "bg": 2397 },
+ { "id": "mon_cockatrice", "fg": 2352, "bg": 2397 },
+ { "id": "mon_sewer_rat", "fg": 2354, "bg": 2397 },
+ { "id": "mon_bear_cub", "fg": 2355, "bg": 2397 },
+ { "id": [ "mon_fox", "mon_fox_red", "mon_fox_gray" ], "fg": 2356, "bg": 2396 },
+ { "id": "mon_wolf", "fg": 2357, "bg": 2396 },
+ { "id": "mon_rattlesnake_giant", "fg": 2359, "bg": 2396 },
+ { "id": "mon_rattlesnake", "fg": 2358, "bg": 2397 },
+ { "id": "mon_sewer_snake", "fg": 2360, "bg": 2397 },
+ { "id": "mon_chipmunk", "fg": 2365, "bg": 2397 },
+ { "id": "mon_groundhog", "fg": 2367, "bg": 2397 },
+ { "id": "mon_lemming", "fg": 2361, "bg": 2362 },
+ { "id": "mon_beaver", "fg": 2363, "bg": 2397 },
+ { "id": "mon_black_rat", "fg": 2364, "bg": 2397 },
+ { "id": "mon_deer_mouse", "fg": 2366, "bg": 2397 },
+ { "id": "mon_muskrat", "fg": 2368, "bg": 2397 },
+ { "id": "mon_otter", "fg": 2370, "bg": 2397 },
+ { "id": "mon_rabbit", "fg": 2371, "bg": 2397 },
+ { "id": "mon_squirrel", "fg": 2372, "bg": 2397 },
+ { "id": "mon_squirrel_red", "fg": 2373, "bg": 2397 },
+ { "id": "mon_opossum", "fg": 2369, "bg": 2397 },
+ { "id": "mon_centipede_giant", "fg": 2374, "bg": 2396 },
+ { "id": "mon_dragonfly_small", "fg": 2375, "bg": 2397 },
+ { "id": "mon_locust", "fg": 2376, "bg": 2396 },
+ { "id": "mon_locust_nymph", "fg": 2377, "bg": 2397 },
+ { "id": "mon_mosquito", "fg": 2378, "bg": 2397 },
+ { "id": "mon_ant", "fg": 2383, "bg": 2396 },
+ { "id": "mon_ant_acid", "fg": 2384, "bg": 2396 },
+ { "id": "corpse_mon_ant", "fg": 2379 },
+ { "id": "corpse_mon_ant_acid", "fg": 2380 },
+ { "id": "mon_ant_larva", "fg": 2387, "bg": 2397 },
+ { "id": "mon_ant_acid_larva", "fg": 2385, "bg": 2397 },
+ { "id": "corpse_mon_ant_larva", "fg": 2382 },
+ { "id": "corpse_mon_ant_acid_larva", "fg": 2381 },
+ { "id": "mon_ant_fungus", "fg": 2386, "bg": 2396 },
+ { "id": "mon_dermatik_larva", "fg": 2388, "bg": 2397 },
+ { "id": "mon_wasp_small", "fg": 2389, "bg": 2397 },
+ { "id": "mon_giant_cockroach", "fg": 2390, "bg": 2396 },
+ { "id": "mon_giant_cockroach_nymph", "fg": 2391, "bg": 2397 },
+ { "id": "mon_plague_nymph", "fg": 2392, "bg": 2397 },
+ { "id": "mon_plague_vector", "fg": 2393, "bg": 2396 },
+ { "id": "mon_pregnant_giant_cockroach", "fg": 2394, "bg": 2396 },
+ { "id": "mon_skittering_plague", "fg": 2395, "bg": 2396 },
+ { "id": "mon_eyebot", "fg": 2398, "bg": 2397 },
+ { "id": "mon_firefly", "fg": 2399, "bg": 2397 },
+ { "id": "mon_kreck", "fg": 2402, "bg": 2396 },
+ {
+ "id": "mon_aphid_small",
+ "fg": [ { "weight": 1, "sprite": 2403 }, { "weight": 1, "sprite": 2404 }, { "weight": 1, "sprite": 2405 } ],
+ "bg": 2397
+ },
+ { "id": "mon_blob", "fg": 2406, "bg": 2396 },
{
"id": "mon_blob_small",
- "fg": [ { "weight": 1, "sprite": 2347 }, { "weight": 1, "sprite": 2348 } ],
- "bg": 2370
+ "fg": [ { "weight": 1, "sprite": 2407 }, { "weight": 1, "sprite": 2408 } ],
+ "bg": 2397
},
{
"id": "mon_chicken",
- "fg": [ { "weight": 2, "sprite": 2349 }, { "weight": 1, "sprite": 2350 } ],
- "bg": 2370
- },
- { "id": "mon_chicken_chick", "fg": 2351, "bg": 2370 },
- { "id": "mon_cow_calf", "fg": 2352, "bg": 2369 },
- { "id": "mon_frog", "fg": 2353, "bg": 2370 },
- { "id": "mon_halfworm", "fg": 2355, "bg": 2370 },
- { "id": "mon_shadow_snake", "fg": 2356, "bg": 2370 },
- { "id": "mon_spawn_raptor", "fg": 2357, "bg": 2369 },
- { "id": "mon_tazer_hack", "fg": 2362, "bg": 2370 },
- { "id": "mon_zolf", "fg": 2363, "bg": 2369 },
- { "id": "mon_zombeaver", "fg": 2364, "bg": 2370 },
- { "id": "mon_zombie_pig", "fg": 2365, "bg": 2369 },
- { "id": "mon_crow_mutant_small", "fg": 2366, "bg": 2369 },
- { "id": "mon_hare", "fg": 2367, "bg": 2370 },
- { "id": "mon_dog_zombie_rot", "fg": 2368, "bg": 2369 },
- { "id": "mon_skitterbot", "fg": 2371, "bg": 2369 },
- { "id": "mon_dog_zombie_cop", "fg": 2372, "bg": 2369 },
+ "fg": [ { "weight": 2, "sprite": 2409 }, { "weight": 1, "sprite": 2410 } ],
+ "bg": 2397
+ },
+ { "id": "mon_chicken_chick", "fg": 2411, "bg": 2397 },
+ { "id": "mon_cow_calf", "fg": 2412, "bg": 2396 },
+ { "id": "mon_frog", "fg": 2414, "bg": 2397 },
+ { "id": "mon_fungaloid_young", "fg": 2415, "bg": 2397 },
+ { "id": "mon_grasshopper_small", "fg": 2417, "bg": 2397 },
+ { "id": "mon_halfworm", "fg": 2418, "bg": 2397 },
+ {
+ "id": [ "mon_hound_tindalos", "mon_hound_tindalos_afterimage" ],
+ "fg": [
+ { "weight": 1, "sprite": 2419 },
+ { "weight": 1, "sprite": 2420 },
+ { "weight": 1, "sprite": 2421 },
+ { "weight": 1, "sprite": 2422 },
+ { "weight": 1, "sprite": 2423 },
+ { "weight": 1, "sprite": 2424 },
+ { "weight": 1, "sprite": 2425 },
+ { "weight": 1, "sprite": 2426 },
+ { "weight": 1, "sprite": 2427 }
+ ]
+ },
+ { "id": "mon_shadow_snake", "fg": 2428, "bg": 2397 },
+ { "id": "mon_spawn_raptor", "fg": 2429, "bg": 2396 },
+ { "id": "mon_spore", "fg": 2433, "bg": 2396 },
+ { "id": "mon_tazer_hack", "fg": 2435, "bg": 2397 },
+ { "id": "mon_zolf", "fg": 2437, "bg": 2396 },
+ { "id": "mon_zombeaver", "fg": 2438, "bg": 2397 },
+ { "id": "mon_zombie_crawler", "fg": 2439, "bg": 2396 },
+ { "id": "mon_zombie_hollow", "fg": 2440, "bg": 2396 },
+ { "id": "mon_zombie_pig", "fg": 2441, "bg": 2396 },
+ { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 2442, "bg": 2396 },
+ { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 2443, "bg": 2396 },
+ { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 2444, "bg": 2396 },
+ { "id": "mon_zombie_rot", "fg": 2446, "bg": 2396 },
+ { "id": "corpse_mon_zombie_rot", "fg": 2445 },
+ { "id": "mon_crow_mutant_small", "fg": 2447, "bg": 2396 },
+ { "id": "mon_hare", "fg": 2448, "bg": 2397 },
+ { "id": "mon_dog_zombie_rot", "fg": 2449, "bg": 2396 },
+ { "id": "mon_skitterbot", "fg": 2450, "bg": 2396 },
+ { "id": "mon_spider_cellar_small", "fg": 2452, "bg": 2397 },
+ { "id": "mon_spider_jumping_small", "fg": 2453, "bg": 2397 },
+ { "id": "mon_spider_trapdoor_small", "fg": 2454, "bg": 2397 },
+ { "id": "mon_spider_web_small", "fg": 2456, "bg": 2397 },
+ { "id": "mon_spider_wolf_small", "fg": 2459, "bg": 2397 },
+ { "id": "mon_spider_web_s", "fg": 2455, "bg": 2397 },
+ { "id": "mon_spider_widow_giant_s", "fg": 2457, "bg": 2397 },
+ { "id": "mon_spider_cellar_giant_s", "fg": 2451, "bg": 2397 },
+ { "id": "mon_zpider_mass", "fg": 2460, "bg": 2397 },
+ { "id": "mon_spider_widow_small", "fg": 2458, "bg": 2397 },
+ { "id": "mon_dog_zombie_cop", "fg": 2461, "bg": 2396 },
{
"id": "mon_zombie_child",
"fg": [
- { "weight": 1, "sprite": 2375 },
- { "weight": 1, "sprite": 2377 },
- { "weight": 5, "sprite": 2376 },
- { "weight": 5, "sprite": 2378 }
+ { "weight": 1, "sprite": 2464 },
+ { "weight": 1, "sprite": 2466 },
+ { "weight": 5, "sprite": 2465 },
+ { "weight": 5, "sprite": 2467 }
],
- "bg": 2370
- },
- { "id": "mon_zombie_anklebiter", "fg": 2374, "bg": 2370 },
- { "id": "mon_zombie_creepy", "fg": 2380, "bg": 2370 },
- { "id": "mon_zombie_shriekling", "fg": 2381, "bg": 2370 },
- { "id": "mon_zombie_snotgobbler", "fg": 2382, "bg": 2370 },
- { "id": "mon_zombie_sproglodyte", "fg": 2383, "bg": 2370 },
- { "id": "mon_zombie_waif", "fg": 2373, "bg": 2370 },
- { "id": "mon_zombie_child_scorched", "fg": 2379, "bg": 2370 },
- { "id": "lighting_lowlight_dark", "fg": 2389 },
- { "id": "lighting_boomered_dark", "fg": 2384 },
+ "bg": 2397
+ },
+ { "id": "mon_zombie_anklebiter", "fg": 2463, "bg": 2397 },
+ { "id": "mon_zombie_creepy", "fg": 2470, "bg": 2397 },
+ { "id": "mon_zombie_shriekling", "fg": 2471, "bg": 2397 },
+ { "id": "mon_zombie_snotgobbler", "fg": 2472, "bg": 2397 },
+ { "id": "mon_zombie_sproglodyte", "fg": 2473, "bg": 2397 },
+ { "id": "mon_zombie_waif", "fg": 2462, "bg": 2397 },
+ { "id": "mon_zombie_child_scorched", "fg": 2469, "bg": 2397 },
+ { "id": "mon_zombie_child_fungus", "fg": 2468, "bg": 2397 },
+ { "id": "lighting_lowlight_dark", "fg": 2479 },
+ { "id": "lighting_boomered_dark", "fg": 2474 },
{
"id": "lighting_hidden",
"fg": [
- { "weight": 100, "sprite": 2385 },
- { "weight": 100, "sprite": 2386 },
- { "weight": 100, "sprite": 2387 },
- { "weight": 100, "sprite": 2388 }
- ]
- },
- { "id": "animation_hit", "fg": 2407 },
- { "id": "cursor", "fg": 2409 },
- { "id": "highlight", "fg": 2411 },
- { "id": "highlight_item", "fg": 2412 },
- { "id": "line_target", "fg": 2410 },
- { "id": "line_trail", "fg": 2413 },
- { "id": "animation_line", "fg": 2408 },
- { "id": "overlay_effect_common_cold", "fg": 2422 },
- { "id": "overlay_effect_flu", "fg": 2422 },
- { "id": "generic_city_building", "fg": 2435, "bg": 2432 },
+ { "weight": 100, "sprite": 2475 },
+ { "weight": 100, "sprite": 2476 },
+ { "weight": 100, "sprite": 2477 },
+ { "weight": 100, "sprite": 2478 }
+ ]
+ },
+ { "id": "animation_hit", "fg": 2497 },
+ { "id": "cursor", "fg": 2499 },
+ { "id": "highlight", "fg": 2501 },
+ { "id": "highlight_item", "fg": 2502 },
+ { "id": "line_target", "fg": 2500 },
+ { "id": "line_trail", "fg": 2503 },
+ { "id": "animation_line", "fg": 2498 },
+ { "id": "overlay_effect_common_cold", "fg": 2512 },
+ { "id": "overlay_effect_flu", "fg": 2512 },
+ { "id": "generic_city_building", "fg": 2533, "bg": 2530 },
{
"id": [
"abstorefront_1",
@@ -2279,25 +2381,25 @@
"s_sports",
"veterinarian"
],
- "fg": 2435,
- "bg": 2432
+ "fg": 2533,
+ "bg": 2530
},
- { "id": "forest_water", "fg": 2440 },
- { "id": [ "forest", "special_forest" ], "fg": 2433, "bg": 2432 },
- { "id": [ "field", "special_field" ], "fg": 2432 },
- { "id": "open_air", "fg": 2434 },
+ { "id": "forest_water", "fg": 2538 },
+ { "id": [ "forest", "special_forest" ], "fg": 2531, "bg": 2530 },
+ { "id": [ "field", "special_field" ], "fg": 2530 },
+ { "id": "open_air", "fg": 2532 },
{
"id": "railroad",
- "fg": 3457,
- "bg": 3434,
+ "fg": 3560,
+ "bg": 3537,
"multitile": true,
"additional_tiles": [
- { "id": "center", "bg": 3434, "fg": 3451 },
- { "id": "corner", "bg": 3434, "fg": [ 3453, 3455, 3454, 3452 ] },
- { "id": "t_connection", "bg": 3434, "fg": [ 3459, 3461, 3460, 3458 ] },
- { "id": "edge", "bg": 3434, "fg": [ 3457, 3456 ] },
- { "id": "end_piece", "bg": 3434, "fg": [ 3457, 3456, 3457, 3456 ] },
- { "id": "unconnected", "bg": 3434, "fg": [ 3457, 3456 ] }
+ { "id": "center", "bg": 3537, "fg": 3554 },
+ { "id": "corner", "bg": 3537, "fg": [ 3556, 3558, 3557, 3555 ] },
+ { "id": "t_connection", "bg": 3537, "fg": [ 3562, 3564, 3563, 3561 ] },
+ { "id": "edge", "bg": 3537, "fg": [ 3560, 3559 ] },
+ { "id": "end_piece", "bg": 3537, "fg": [ 3560, 3559, 3560, 3559 ] },
+ { "id": "unconnected", "bg": 3537, "fg": [ 3560, 3559 ] }
]
},
{
@@ -2520,19 +2622,19 @@
"urban_13_11",
"urban_13_12"
],
- "fg": [ 2437, 2436, 2438, 2439 ],
- "bg": 2432,
+ "fg": [ 2535, 2534, 2536, 2537 ],
+ "bg": 2530,
"rotates": true
},
- { "id": "anthill", "fg": 2442, "bg": 2432, "rotates": false },
- { "id": "acid_anthill", "fg": 2441, "bg": 2432, "rotates": false },
+ { "id": "anthill", "fg": 2540, "bg": 2530, "rotates": false },
+ { "id": "acid_anthill", "fg": 2539, "bg": 2530, "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": [ 2444, 2443, 2444, 2443 ],
- "bg": 2432,
+ "fg": [ 2542, 2541, 2542, 2541 ],
+ "bg": 2530,
"rotates": true
},
- { "id": [ "desolatebarn", "barn_aban1" ], "fg": 2445, "bg": 2432 },
+ { "id": [ "desolatebarn", "barn_aban1" ], "fg": 2543, "bg": 2530 },
{
"id": [
"2farm_loft_3",
@@ -2545,8 +2647,8 @@
"ranch_camp_66_roof",
"dairy_farm_SE_roof"
],
- "fg": [ 2444, 2443, 2444, 2443 ],
- "bg": 2434,
+ "fg": [ 2542, 2541, 2542, 2541 ],
+ "bg": 2532,
"rotates": true
},
{
@@ -2568,8 +2670,8 @@
"cabin_strange_b",
"riverside_dwelling"
],
- "fg": [ 2447, 2446, 2448, 2449 ],
- "bg": 2432,
+ "fg": [ 2545, 2544, 2546, 2547 ],
+ "bg": 2530,
"rotates": true
},
{
@@ -2587,8 +2689,8 @@
"cabin_lake_roof",
"lake_cabin_boathouse_roof"
],
- "fg": [ 2447, 2446, 2448, 2449 ],
- "bg": 2434,
+ "fg": [ 2545, 2544, 2546, 2547 ],
+ "bg": 2532,
"rotates": true
},
{
@@ -2604,12 +2706,12 @@
"ws_survivor_camp",
"homelesscamp"
],
- "fg": 2450,
- "bg": 2432
+ "fg": 2548,
+ "bg": 2530
},
- { "id": "cave", "fg": 2451, "bg": 2432 },
- { "id": "cave_underground", "fg": 2451 },
- { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 2453, "rotates": false },
+ { "id": "cave", "fg": 2549, "bg": 2530 },
+ { "id": "cave_underground", "fg": 2549 },
+ { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 2551, "rotates": false },
{
"id": [
"airliner_1a",
@@ -2642,26 +2744,26 @@
"airliner_2j",
"airliner_3j"
],
- "fg": 2454
+ "fg": 2552
},
- { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 2434 },
- { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 2461, 2460 ], "rotates": true },
- { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 2467, 2466, 2468, 2469 ], "rotates": true },
- { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 2456, 2458, 2459, 2457 ], "rotates": true },
- { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 2457, 2456, 2458, 2459 ], "rotates": true },
+ { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 2532 },
+ { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 2559, 2558 ], "rotates": true },
+ { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 2565, 2564, 2566, 2567 ], "rotates": true },
+ { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 2554, 2556, 2557, 2555 ], "rotates": true },
+ { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 2555, 2554, 2556, 2557 ], "rotates": true },
{
"id": [ "shelter", "shelter_1", "shelter_2", "shelter_vandal", "shelter_1_vandal", "shelter_2_vandal" ],
- "fg": [ 2472, 2471, 2473, 2474 ],
- "bg": 2432,
+ "fg": [ 2570, 2569, 2571, 2572 ],
+ "bg": 2530,
"rotates": true
},
{
"id": [ "shelter_roof", "shelter_roof_1", "shelter_roof_2" ],
- "fg": [ 2472, 2471, 2473, 2474 ],
- "bg": 2434,
+ "fg": [ 2570, 2569, 2571, 2572 ],
+ "bg": 2532,
"rotates": true
},
- { "id": "shelter_under", "fg": [ 2472, 2471, 2473, 2474 ], "rotates": true },
+ { "id": "shelter_under", "fg": [ 2570, 2569, 2571, 2572 ], "rotates": true },
{
"id": [
"2farm_1",
@@ -2730,19 +2832,19 @@
"horse_farm_isherwood_2",
"yard"
],
- "fg": 2475
+ "fg": 2573
},
{
"id": "forest_trail",
- "fg": 2491,
+ "fg": 2589,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2476 },
- { "id": "corner", "fg": [ 2478, 2480, 2479, 2477 ] },
- { "id": "t_connection", "fg": [ 2488, 2490, 2489, 2487 ] },
- { "id": "edge", "fg": [ 2482, 2481 ] },
- { "id": "end_piece", "fg": [ 2484, 2486, 2485, 2483 ] },
- { "id": "unconnected", "fg": [ 2491, 2491 ] }
+ { "id": "center", "fg": 2574 },
+ { "id": "corner", "fg": [ 2576, 2578, 2577, 2575 ] },
+ { "id": "t_connection", "fg": [ 2586, 2588, 2587, 2585 ] },
+ { "id": "edge", "fg": [ 2580, 2579 ] },
+ { "id": "end_piece", "fg": [ 2582, 2584, 2583, 2581 ] },
+ { "id": "unconnected", "fg": [ 2589, 2589 ] }
]
},
{
@@ -2759,47 +2861,46 @@
"garage_gas_roof_2",
"garage_gas_roof_3"
],
- "fg": [ 2493, 2492, 2494, 2495 ],
- "bg": 2432
- },
- { "id": "2farm_7", "fg": 2476 },
- { "id": "crater", "fg": 3385, "bg": 2432 },
- { "id": "ranch_camp_17", "fg": 4077, "bg": 2523 },
- { "id": "ranch_camp_76", "fg": 2476 },
- { "id": "ranch_camp_77", "fg": [ 2577, 2576, 2578, 2579 ], "bg": 2432, "rotates": true },
- { "id": [ "slimepit_down", "slimepit" ], "fg": 3705 },
- { "id": "lighthouse_z2", "fg": 2503, "bg": 2434 },
- { "id": "lighthouse_z3", "fg": 2504, "bg": 2434 },
- { "id": "lighthouse_z4", "fg": 2505, "bg": 2434 },
- { "id": "lighthouse_z5", "fg": 2506, "bg": 2434 },
- { "id": "lighthouse_roof", "fg": 2502, "bg": 2434 },
- { "id": "note_!_black", "fg": 2507 },
- { "id": "note_!_red", "fg": 2520 },
- { "id": "note_!_green", "fg": 2512 },
- { "id": "note_!_brown", "fg": 2509 },
- { "id": "note_!_blue", "fg": 2508 },
- { "id": "note_!_magenta", "fg": 2518 },
- { "id": "note_!_cyan", "fg": 2510 },
- { "id": "note_!_light_gray", "fg": 2515 },
- { "id": "note_!_dark_gray", "fg": 2511 },
- { "id": "note_!_light_red", "fg": 2517 },
- { "id": "note_!_light_green", "fg": 2516 },
- { "id": "note_!_yellow", "fg": 2522 },
- { "id": "note_!_light_blue", "fg": 2513 },
- { "id": "note_!_pink", "fg": 2519 },
- { "id": "note_!_light_cyan", "fg": 2514 },
- { "id": "note_!_white", "fg": 2521 },
- { "id": "2farm_4", "fg": [ 2531, 2530, 2532, 2533 ], "rotates": true },
- { "id": "2farm_8", "fg": [ 2532, 2533, 2531, 2530 ], "rotates": true },
- { "id": "dairy_farm_NW", "fg": [ 2533, 2531, 2530, 2532 ], "rotates": true },
- { "id": "dairy_farm_NE", "fg": [ 2530, 2532, 2533, 2531 ], "rotates": true },
- { "id": "ranch_camp_1", "fg": [ 2527, 2526, 2528, 2529 ], "rotates": true },
+ "fg": [ 2591, 2590, 2592, 2593 ],
+ "bg": 2530
+ },
+ { "id": "2farm_7", "fg": 2574 },
+ { "id": "crater", "fg": 3488, "bg": 2530 },
+ { "id": "ranch_camp_17", "fg": 4196, "bg": 2621 },
+ { "id": "ranch_camp_76", "fg": 2574 },
+ { "id": "ranch_camp_77", "fg": [ 2675, 2674, 2676, 2677 ], "bg": 2530, "rotates": true },
+ { "id": "lighthouse_z2", "fg": 2601, "bg": 2532 },
+ { "id": "lighthouse_z3", "fg": 2602, "bg": 2532 },
+ { "id": "lighthouse_z4", "fg": 2603, "bg": 2532 },
+ { "id": "lighthouse_z5", "fg": 2604, "bg": 2532 },
+ { "id": "lighthouse_roof", "fg": 2600, "bg": 2532 },
+ { "id": "note_!_black", "fg": 2605 },
+ { "id": "note_!_red", "fg": 2618 },
+ { "id": "note_!_green", "fg": 2610 },
+ { "id": "note_!_brown", "fg": 2607 },
+ { "id": "note_!_blue", "fg": 2606 },
+ { "id": "note_!_magenta", "fg": 2616 },
+ { "id": "note_!_cyan", "fg": 2608 },
+ { "id": "note_!_light_gray", "fg": 2613 },
+ { "id": "note_!_dark_gray", "fg": 2609 },
+ { "id": "note_!_light_red", "fg": 2615 },
+ { "id": "note_!_light_green", "fg": 2614 },
+ { "id": "note_!_yellow", "fg": 2620 },
+ { "id": "note_!_light_blue", "fg": 2611 },
+ { "id": "note_!_pink", "fg": 2617 },
+ { "id": "note_!_light_cyan", "fg": 2612 },
+ { "id": "note_!_white", "fg": 2619 },
+ { "id": "2farm_4", "fg": [ 2629, 2628, 2630, 2631 ], "rotates": true },
+ { "id": "2farm_8", "fg": [ 2630, 2631, 2629, 2628 ], "rotates": true },
+ { "id": "dairy_farm_NW", "fg": [ 2631, 2629, 2628, 2630 ], "rotates": true },
+ { "id": "dairy_farm_NE", "fg": [ 2628, 2630, 2631, 2629 ], "rotates": true },
+ { "id": "ranch_camp_1", "fg": [ 2625, 2624, 2626, 2627 ], "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": [ 2535, 2534, 2536, 2537 ],
+ "fg": [ 2633, 2632, 2634, 2635 ],
"rotates": true
},
- { "id": "ranch_camp_9", "fg": [ 2526, 2528, 2529, 2527 ], "rotates": true },
+ { "id": "ranch_camp_9", "fg": [ 2624, 2626, 2627, 2625 ], "rotates": true },
{
"id": [
"ranch_camp_10",
@@ -2810,7 +2911,7 @@
"ranch_camp_55",
"ranch_camp_64"
],
- "fg": [ 2537, 2535, 2534, 2536 ],
+ "fg": [ 2635, 2633, 2632, 2634 ],
"rotates": true
},
{
@@ -2860,7 +2961,7 @@
"ranch_camp_70",
"ranch_camp_71"
],
- "fg": 2523,
+ "fg": 2621,
"rotates": true
},
{
@@ -2873,741 +2974,744 @@
"ranch_camp_63",
"ranch_camp_72"
],
- "fg": [ 2534, 2536, 2537, 2535 ],
+ "fg": [ 2632, 2634, 2635, 2633 ],
"rotates": true
},
- { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 2529, 2527, 2526, 2528 ], "rotates": true },
+ { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 2627, 2625, 2624, 2626 ], "rotates": true },
{
"id": [ "ranch_camp_74", "ranch_camp_79", "ranch_camp_80" ],
- "fg": [ 2536, 2537, 2535, 2534 ],
+ "fg": [ 2634, 2635, 2633, 2632 ],
"rotates": true
},
- { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 2528, 2529, 2527, 2526 ], "rotates": true },
- { "id": "pond_field", "fg": 2540, "bg": 2432, "rotates": false },
- { "id": "pond_forest", "fg": 2541, "bg": 2432, "rotates": false },
- { "id": "pond_swamp", "fg": 2542, "bg": 2432, "rotates": false },
- { "id": "hot_springs", "fg": 2539, "bg": 2432, "rotates": false },
+ { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 2626, 2627, 2625, 2624 ], "rotates": true },
+ { "id": "pond_field", "fg": 2638, "bg": 2530, "rotates": false },
+ { "id": "pond_forest", "fg": 2639, "bg": 2530, "rotates": false },
+ { "id": "pond_swamp", "fg": 2640, "bg": 2530, "rotates": false },
+ { "id": "hot_springs", "fg": 2637, "bg": 2530, "rotates": false },
{
"id": [ "pool", "pool_1", "pool_2", "pool_3", "pool_4" ],
- "fg": [ 2544, 2543, 2545, 2546 ],
- "bg": 2432,
+ "fg": [ 2642, 2641, 2643, 2644 ],
+ "bg": 2530,
"rotates": true
},
- { "id": [ "pool_5", "pool_6" ], "fg": [ 2548, 2547, 2549, 2550 ], "bg": 2432, "rotates": true },
+ { "id": [ "pool_5", "pool_6" ], "fg": [ 2646, 2645, 2647, 2648 ], "bg": 2530, "rotates": true },
{
"id": [ "pool_roof", "pool_roof_1", "pool_roof_2", "pool_roof_3", "pool_roof_4" ],
- "fg": [ 2544, 2543, 2545, 2546 ],
- "bg": 2434,
+ "fg": [ 2642, 2641, 2643, 2644 ],
+ "bg": 2532,
"rotates": true
},
- { "id": "publicgarden", "fg": 2551 },
- { "id": "PublicPond_1a", "fg": [ 2555, 2553, 2552, 2554 ], "rotates": true },
- { "id": "PublicPond_1b", "fg": [ 2552, 2554, 2555, 2553 ], "rotates": true },
- { "id": "river_nw", "fg": 2564, "bg": 2432, "rotates": false },
- { "id": "river_sw", "fg": 2567, "bg": 2432, "rotates": false },
- { "id": "river_se", "fg": 2565, "bg": 2432, "rotates": false },
- { "id": "river_ne", "fg": 2562, "bg": 2432, "rotates": false },
- { "id": "river_north", "fg": 2563, "bg": 2432, "rotates": false },
- { "id": "river_west", "fg": 2568, "bg": 2432, "rotates": false },
- { "id": "river_east", "fg": 2561, "bg": 2432, "rotates": false },
- { "id": "river_south", "fg": 2566, "bg": 2432, "rotates": false },
- { "id": "river_center", "fg": 2560, "bg": 2432, "rotates": false },
- { "id": "river", "fg": [ 2563, 2561, 2566, 2568 ], "bg": 2432, "rotates": true },
- { "id": "river_c_not_nw", "fg": 2557, "bg": 2432, "rotates": false },
- { "id": "river_c_not_ne", "fg": 2556, "bg": 2432, "rotates": false },
- { "id": "river_c_not_sw", "fg": 2559, "bg": 2432, "rotates": false },
- { "id": "river_c_not_se", "fg": 2558, "bg": 2432, "rotates": false },
+ { "id": "publicgarden", "fg": 2649 },
+ { "id": "PublicPond_1a", "fg": [ 2653, 2651, 2650, 2652 ], "rotates": true },
+ { "id": "PublicPond_1b", "fg": [ 2650, 2652, 2653, 2651 ], "rotates": true },
+ { "id": "river_nw", "fg": 2662, "bg": 2530, "rotates": false },
+ { "id": "river_sw", "fg": 2665, "bg": 2530, "rotates": false },
+ { "id": "river_se", "fg": 2663, "bg": 2530, "rotates": false },
+ { "id": "river_ne", "fg": 2660, "bg": 2530, "rotates": false },
+ { "id": "river_north", "fg": 2661, "bg": 2530, "rotates": false },
+ { "id": "river_west", "fg": 2666, "bg": 2530, "rotates": false },
+ { "id": "river_east", "fg": 2659, "bg": 2530, "rotates": false },
+ { "id": "river_south", "fg": 2664, "bg": 2530, "rotates": false },
+ { "id": "river_center", "fg": 2658, "bg": 2530, "rotates": false },
+ { "id": "river", "fg": [ 2661, 2659, 2664, 2666 ], "bg": 2530, "rotates": true },
+ { "id": "river_c_not_nw", "fg": 2655, "bg": 2530, "rotates": false },
+ { "id": "river_c_not_ne", "fg": 2654, "bg": 2530, "rotates": false },
+ { "id": "river_c_not_sw", "fg": 2657, "bg": 2530, "rotates": false },
+ { "id": "river_c_not_se", "fg": 2656, "bg": 2530, "rotates": false },
{
"id": "road",
- "fg": 2584,
+ "fg": 2682,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2569 },
- { "id": "corner", "fg": [ 2571, 2573, 2572, 2570 ] },
- { "id": "t_connection", "fg": [ 2581, 2583, 2582, 2580 ] },
- { "id": "edge", "fg": [ 2575, 2574 ] },
- { "id": "end_piece", "fg": [ 2577, 2579, 2578, 2576 ] },
- { "id": "unconnected", "fg": [ 2584, 2584 ] }
+ { "id": "center", "fg": 2667 },
+ { "id": "corner", "fg": [ 2669, 2671, 2670, 2668 ], "bg": 2530 },
+ { "id": "t_connection", "fg": [ 2679, 2681, 2680, 2678 ] },
+ { "id": "edge", "fg": [ 2673, 2672 ] },
+ { "id": "end_piece", "fg": [ 2675, 2677, 2676, 2674 ] },
+ { "id": "unconnected", "fg": [ 2682, 2682 ], "bg": 2530 }
]
},
+ { "id": "road_nesw_manhole", "fg": 2683, "bg": 2667 },
{
"id": [ "house_farm", "farm_2", "farm_isherwood_2", "2farm_11" ],
- "fg": [ 2586, 2585, 2587, 2588 ],
- "bg": 2432,
+ "fg": [ 2685, 2684, 2686, 2687 ],
+ "bg": 2530,
"rotates": true
},
- { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 2587, 2588, 2586, 2585 ], "bg": 2432, "rotates": true },
+ { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 2686, 2687, 2685, 2684 ], "bg": 2530, "rotates": true },
{
"id": [ "house_farm_roof", "farm_2_roof", "farm_isherwood_2_roof", "2farm_roof_11" ],
- "fg": [ 2586, 2585, 2587, 2588 ],
- "bg": 2434,
+ "fg": [ 2685, 2684, 2686, 2687 ],
+ "bg": 2532,
"rotates": true
},
{
"id": [ "dairy_farm_SW_roof", "ranch_camp_68_roof" ],
- "fg": [ 2587, 2588, 2586, 2585 ],
- "bg": 2434,
+ "fg": [ 2686, 2687, 2685, 2684 ],
+ "bg": 2532,
"rotates": true
},
- { "id": "farm_isherwood_2_cellar", "fg": [ 2586, 2585, 2587, 2588 ], "rotates": true },
- { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 2590, 2589, 2590, 2589 ], "bg": 2432, "rotates": true },
+ { "id": "farm_isherwood_2_cellar", "fg": [ 2685, 2684, 2686, 2687 ], "rotates": true },
+ { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 2689, 2688, 2689, 2688 ], "bg": 2530, "rotates": true },
{
"id": [ "2silos_1", "2silos_2", "2silos_roof" ],
- "fg": [ 2590, 2589, 2590, 2589 ],
- "bg": 2434,
+ "fg": [ 2689, 2688, 2689, 2688 ],
+ "bg": 2532,
"rotates": true
},
- { "id": "hunter_shack", "fg": [ 2596, 2595, 2597, 2598 ], "bg": 2432, "rotates": true },
- { "id": "hunter_shack_1", "fg": [ 2593, 2591, 2592, 2594 ], "bg": 2432, "rotates": true },
- { "id": "hunter_shack_roof", "fg": [ 2596, 2595, 2597, 2598 ], "bg": 2434, "rotates": true },
- { "id": "hunter_shack_roof_1", "fg": [ 2593, 2591, 2592, 2594 ], "bg": 2434, "rotates": true },
- { "id": "ws_fire_lookout_tower_base", "fg": 2599, "bg": 2432, "rotates": false },
- { "id": "ws_fire_lookout_tower_f1", "fg": 2599, "bg": 2434 },
- { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 2600, "bg": 2434 },
- { "id": "t_reb_cage", "fg": 2602, "bg": 3514 },
+ { "id": "slimepit_top", "fg": 2690, "bg": 2530 },
+ { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 3808 },
+ { "id": "hunter_shack", "fg": [ 2696, 2695, 2697, 2698 ], "bg": 2530, "rotates": true },
+ { "id": "hunter_shack_1", "fg": [ 2693, 2691, 2692, 2694 ], "bg": 2530, "rotates": true },
+ { "id": "hunter_shack_roof", "fg": [ 2696, 2695, 2697, 2698 ], "bg": 2532, "rotates": true },
+ { "id": "hunter_shack_roof_1", "fg": [ 2693, 2691, 2692, 2694 ], "bg": 2532, "rotates": true },
+ { "id": "ws_fire_lookout_tower_base", "fg": 2699, "bg": 2530, "rotates": false },
+ { "id": "ws_fire_lookout_tower_f1", "fg": 2699, "bg": 2532 },
+ { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 2700, "bg": 2532 },
+ { "id": "t_reb_cage", "fg": 2702, "bg": 3617 },
{
"id": "f_earthbag_half",
"multitile": true,
- "fg": 2618,
- "bg": 3163,
+ "fg": 2718,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "fg": 2603 },
- { "id": "corner", "fg": [ 2605, 2607, 2606, 2604 ] },
- { "id": "t_connection", "fg": [ 2615, 2617, 2616, 2614 ] },
- { "id": "edge", "fg": [ 2609, 2608 ] },
- { "id": "end_piece", "fg": [ 2611, 2613, 2612, 2610 ] },
- { "id": "unconnected", "fg": [ 2618, 2618 ] }
+ { "id": "center", "fg": 2703 },
+ { "id": "corner", "fg": [ 2705, 2707, 2706, 2704 ] },
+ { "id": "t_connection", "fg": [ 2715, 2717, 2716, 2714 ] },
+ { "id": "edge", "fg": [ 2709, 2708 ] },
+ { "id": "end_piece", "fg": [ 2711, 2713, 2712, 2710 ] },
+ { "id": "unconnected", "fg": [ 2718, 2718 ] }
]
},
- { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 3365 },
- { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 3689 },
+ { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 3468 },
+ { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 3792 },
{
"id": "t_splitrail_fence",
"multitile": true,
- "fg": 2661,
- "bg": 3163,
+ "fg": 2761,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 2646 },
- { "id": "corner", "bg": 3163, "fg": [ 2648, 2650, 2649, 2647 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 2658, 2660, 2659, 2657 ] },
- { "id": "edge", "bg": 3163, "fg": [ 2652, 2651 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 2654, 2656, 2655, 2653 ] },
- { "bg": 3163, "id": "unconnected", "fg": [ 2661, 2661 ] }
+ { "id": "center", "bg": 3263, "fg": 2746 },
+ { "id": "corner", "bg": 3263, "fg": [ 2748, 2750, 2749, 2747 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 2758, 2760, 2759, 2757 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 2752, 2751 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 2754, 2756, 2755, 2753 ] },
+ { "bg": 3263, "id": "unconnected", "fg": [ 2761, 2761 ] }
]
},
{
"id": "t_splitrail_fence_season_summer",
"multitile": true,
- "fg": 2661,
- "bg": 3173,
+ "fg": 2761,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": 2646 },
- { "id": "corner", "bg": 3173, "fg": [ 2648, 2650, 2649, 2647 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 2658, 2660, 2659, 2657 ] },
- { "id": "edge", "bg": 3173, "fg": [ 2652, 2651 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 2654, 2656, 2655, 2653 ] },
- { "bg": 3173, "id": "unconnected", "fg": [ 2661, 2661 ] }
+ { "id": "center", "bg": 3273, "fg": 2746 },
+ { "id": "corner", "bg": 3273, "fg": [ 2748, 2750, 2749, 2747 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 2758, 2760, 2759, 2757 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 2752, 2751 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 2754, 2756, 2755, 2753 ] },
+ { "bg": 3273, "id": "unconnected", "fg": [ 2761, 2761 ] }
]
},
{
"id": "t_splitrail_fence_season_autumn",
"multitile": true,
- "fg": 2661,
- "bg": 3168,
+ "fg": 2761,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": 2646 },
- { "id": "corner", "bg": 3168, "fg": [ 2648, 2650, 2649, 2647 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 2658, 2660, 2659, 2657 ] },
- { "id": "edge", "bg": 3168, "fg": [ 2652, 2651 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 2654, 2656, 2655, 2653 ] },
- { "bg": 3168, "id": "unconnected", "fg": [ 2661, 2661 ] }
+ { "id": "center", "bg": 3268, "fg": 2746 },
+ { "id": "corner", "bg": 3268, "fg": [ 2748, 2750, 2749, 2747 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 2758, 2760, 2759, 2757 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 2752, 2751 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 2754, 2756, 2755, 2753 ] },
+ { "bg": 3268, "id": "unconnected", "fg": [ 2761, 2761 ] }
]
},
{
"id": "t_splitrail_fence_season_winter",
"multitile": true,
- "fg": 2661,
- "bg": 2627,
+ "fg": 2761,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": 2646 },
- { "id": "corner", "bg": 2627, "fg": [ 2648, 2650, 2649, 2647 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 2658, 2660, 2659, 2657 ] },
- { "id": "edge", "bg": 2627, "fg": [ 2652, 2651 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 2654, 2656, 2655, 2653 ] },
- { "bg": 2627, "id": "unconnected", "fg": [ 2661, 2661 ] }
+ { "id": "center", "bg": 2727, "fg": 2746 },
+ { "id": "corner", "bg": 2727, "fg": [ 2748, 2750, 2749, 2747 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 2758, 2760, 2759, 2757 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 2752, 2751 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 2754, 2756, 2755, 2753 ] },
+ { "bg": 2727, "id": "unconnected", "fg": [ 2761, 2761 ] }
]
},
- { "id": "t_stairs_down", "fg": 2662 },
- { "id": "t_wood_stairs_down", "fg": 2663 },
+ { "id": "t_stairs_down", "fg": 2762 },
+ { "id": "t_wood_stairs_down", "fg": 2763 },
{
"id": "t_adobe_brick_wall",
"multitile": true,
- "fg": 2679,
+ "fg": 2779,
"additional_tiles": [
- { "id": "center", "fg": 2664 },
- { "id": "corner", "fg": [ 2666, 2668, 2667, 2665 ] },
- { "id": "t_connection", "fg": [ 2676, 2678, 2677, 2675 ] },
- { "id": "edge", "fg": [ 2670, 2669 ] },
- { "id": "end_piece", "fg": [ 2672, 2674, 2673, 2671 ] },
- { "id": "unconnected", "fg": [ 2679, 2679 ] }
+ { "id": "center", "fg": 2764 },
+ { "id": "corner", "fg": [ 2766, 2768, 2767, 2765 ] },
+ { "id": "t_connection", "fg": [ 2776, 2778, 2777, 2775 ] },
+ { "id": "edge", "fg": [ 2770, 2769 ] },
+ { "id": "end_piece", "fg": [ 2772, 2774, 2773, 2771 ] },
+ { "id": "unconnected", "fg": [ 2779, 2779 ] }
]
},
- { "id": "t_bars", "fg": 2680 },
+ { "id": "t_bars", "fg": 2780 },
{
"id": "t_brick_wall",
"multitile": true,
- "fg": 2696,
+ "fg": 2796,
"additional_tiles": [
- { "id": "center", "fg": 2681 },
- { "id": "corner", "fg": [ 2683, 2685, 2684, 2682 ] },
- { "id": "t_connection", "fg": [ 2693, 2695, 2694, 2692 ] },
- { "id": "edge", "fg": [ 2687, 2686 ] },
- { "id": "end_piece", "fg": [ 2689, 2691, 2690, 2688 ] },
- { "id": "unconnected", "fg": 2696 }
+ { "id": "center", "fg": 2781 },
+ { "id": "corner", "fg": [ 2783, 2785, 2784, 2782 ] },
+ { "id": "t_connection", "fg": [ 2793, 2795, 2794, 2792 ] },
+ { "id": "edge", "fg": [ 2787, 2786 ] },
+ { "id": "end_piece", "fg": [ 2789, 2791, 2790, 2788 ] },
+ { "id": "unconnected", "fg": 2796 }
]
},
{
"id": "t_bridge",
"multitile": true,
- "fg": 2712,
+ "fg": 2812,
"additional_tiles": [
- { "id": "center", "fg": 2697 },
- { "id": "corner", "fg": [ 2699, 2701, 2700, 2698 ] },
- { "id": "t_connection", "fg": [ 2709, 2711, 2710, 2708 ] },
- { "id": "edge", "fg": [ 2703, 2702 ] },
- { "id": "end_piece", "fg": [ 2705, 2707, 2706, 2704 ] },
- { "id": "unconnected", "fg": [ 2712, 2712 ] }
+ { "id": "center", "fg": 2797 },
+ { "id": "corner", "fg": [ 2799, 2801, 2800, 2798 ] },
+ { "id": "t_connection", "fg": [ 2809, 2811, 2810, 2808 ] },
+ { "id": "edge", "fg": [ 2803, 2802 ] },
+ { "id": "end_piece", "fg": [ 2805, 2807, 2806, 2804 ] },
+ { "id": "unconnected", "fg": [ 2812, 2812 ] }
]
},
{
"id": "t_carpet_green",
"multitile": true,
- "fg": 2731,
+ "fg": 2831,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 2713 },
- { "weight": 1, "sprite": 2714 },
- { "weight": 1, "sprite": 2715 },
- { "weight": 1, "sprite": 2716 }
+ { "weight": 1, "sprite": 2813 },
+ { "weight": 1, "sprite": 2814 },
+ { "weight": 1, "sprite": 2815 },
+ { "weight": 1, "sprite": 2816 }
]
},
- { "id": "corner", "fg": [ 2718, 2720, 2719, 2717 ] },
- { "id": "t_connection", "fg": [ 2728, 2730, 2729, 2727 ] },
- { "id": "edge", "fg": [ 2722, 2721 ] },
- { "id": "end_piece", "fg": [ 2724, 2726, 2725, 2723 ] },
- { "id": "unconnected", "fg": 2731 }
+ { "id": "corner", "fg": [ 2818, 2820, 2819, 2817 ] },
+ { "id": "t_connection", "fg": [ 2828, 2830, 2829, 2827 ] },
+ { "id": "edge", "fg": [ 2822, 2821 ] },
+ { "id": "end_piece", "fg": [ 2824, 2826, 2825, 2823 ] },
+ { "id": "unconnected", "fg": 2831 }
]
},
{
"id": "t_carpet_purple",
"multitile": true,
- "fg": 2750,
+ "fg": 2850,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 2732 },
- { "weight": 1, "sprite": 2733 },
- { "weight": 1, "sprite": 2734 },
- { "weight": 1, "sprite": 2735 }
+ { "weight": 1, "sprite": 2832 },
+ { "weight": 1, "sprite": 2833 },
+ { "weight": 1, "sprite": 2834 },
+ { "weight": 1, "sprite": 2835 }
]
},
- { "id": "corner", "fg": [ 2737, 2739, 2738, 2736 ] },
- { "id": "t_connection", "fg": [ 2747, 2749, 2748, 2746 ] },
- { "id": "edge", "fg": [ 2741, 2740 ] },
- { "id": "end_piece", "fg": [ 2743, 2745, 2744, 2742 ] },
- { "id": "unconnected", "fg": 2750 }
+ { "id": "corner", "fg": [ 2837, 2839, 2838, 2836 ] },
+ { "id": "t_connection", "fg": [ 2847, 2849, 2848, 2846 ] },
+ { "id": "edge", "fg": [ 2841, 2840 ] },
+ { "id": "end_piece", "fg": [ 2843, 2845, 2844, 2842 ] },
+ { "id": "unconnected", "fg": 2850 }
]
},
{
"id": "t_carpet_red",
"multitile": true,
- "fg": 2766,
+ "fg": 2866,
"additional_tiles": [
- { "id": "center", "fg": 2751 },
- { "id": "corner", "fg": [ 2753, 2755, 2754, 2752 ] },
- { "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 }
+ { "id": "center", "fg": 2851 },
+ { "id": "corner", "fg": [ 2853, 2855, 2854, 2852 ] },
+ { "id": "t_connection", "fg": [ 2863, 2865, 2864, 2862 ] },
+ { "id": "edge", "fg": [ 2857, 2856 ] },
+ { "id": "end_piece", "fg": [ 2859, 2861, 2860, 2858 ] },
+ { "id": "unconnected", "fg": 2866 }
]
},
{
"id": "t_carpet_yellow",
"multitile": true,
- "fg": 2782,
+ "fg": 2882,
"additional_tiles": [
- { "id": "center", "fg": 2767 },
- { "id": "corner", "fg": [ 2769, 2771, 2770, 2768 ] },
- { "id": "t_connection", "fg": [ 2779, 2781, 2780, 2778 ] },
- { "id": "edge", "fg": [ 2773, 2772 ] },
- { "id": "end_piece", "fg": [ 2775, 2777, 2776, 2774 ] },
- { "id": "unconnected", "fg": 2782 }
+ { "id": "center", "fg": 2867 },
+ { "id": "corner", "fg": [ 2869, 2871, 2870, 2868 ] },
+ { "id": "t_connection", "fg": [ 2879, 2881, 2880, 2878 ] },
+ { "id": "edge", "fg": [ 2873, 2872 ] },
+ { "id": "end_piece", "fg": [ 2875, 2877, 2876, 2874 ] },
+ { "id": "unconnected", "fg": 2882 }
]
},
{
"id": "t_chainfence",
- "fg": 2798,
+ "fg": 2898,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2783, "bg": 3365 },
- { "id": "corner", "fg": [ 2785, 2787, 2786, 2784 ], "bg": 3365 },
- { "id": "t_connection", "fg": [ 2795, 2797, 2796, 2794 ], "bg": 3365 },
- { "id": "edge", "fg": [ 2789, 2788 ], "bg": 3365 },
- { "id": "end_piece", "fg": [ 2791, 2793, 2792, 2790 ], "bg": 3365 },
- { "id": "unconnected", "fg": [ 2798, 2798 ], "bg": 3365 }
+ { "id": "center", "fg": 2883, "bg": 3468 },
+ { "id": "corner", "fg": [ 2885, 2887, 2886, 2884 ], "bg": 3468 },
+ { "id": "t_connection", "fg": [ 2895, 2897, 2896, 2894 ], "bg": 3468 },
+ { "id": "edge", "fg": [ 2889, 2888 ], "bg": 3468 },
+ { "id": "end_piece", "fg": [ 2891, 2893, 2892, 2890 ], "bg": 3468 },
+ { "id": "unconnected", "fg": [ 2898, 2898 ], "bg": 3468 }
],
- "bg": 3365
+ "bg": 3468
},
{
"id": "t_chainfence_season_winter",
- "fg": 2798,
+ "fg": 2898,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2783, "bg": 2627 },
- { "id": "corner", "fg": [ 2785, 2787, 2786, 2784 ], "bg": 2627 },
- { "id": "t_connection", "fg": [ 2795, 2797, 2796, 2794 ], "bg": 2627 },
- { "id": "edge", "fg": [ 2789, 2788 ], "bg": 2627 },
- { "id": "end_piece", "fg": [ 2791, 2793, 2792, 2790 ], "bg": 2627 },
- { "id": "unconnected", "fg": [ 2798, 2798 ], "bg": 2627 }
+ { "id": "center", "fg": 2883, "bg": 2727 },
+ { "id": "corner", "fg": [ 2885, 2887, 2886, 2884 ], "bg": 2727 },
+ { "id": "t_connection", "fg": [ 2895, 2897, 2896, 2894 ], "bg": 2727 },
+ { "id": "edge", "fg": [ 2889, 2888 ], "bg": 2727 },
+ { "id": "end_piece", "fg": [ 2891, 2893, 2892, 2890 ], "bg": 2727 },
+ { "id": "unconnected", "fg": [ 2898, 2898 ], "bg": 2727 }
],
- "bg": 2627
+ "bg": 2727
},
{
"id": "t_clay",
"multitile": true,
- "fg": 2814,
- "bg": 3163,
+ "fg": 2914,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 2799 },
- { "id": "corner", "bg": 3163, "fg": [ 2801, 2803, 2802, 2800 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 2811, 2813, 2812, 2810 ] },
- { "id": "edge", "bg": 3163, "fg": [ 2805, 2804 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 2807, 2809, 2808, 2806 ] },
- { "bg": 3163, "id": "unconnected", "fg": 2814 }
+ { "id": "center", "bg": 3263, "fg": 2899 },
+ { "id": "corner", "bg": 3263, "fg": [ 2901, 2903, 2902, 2900 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 2911, 2913, 2912, 2910 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 2905, 2904 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 2907, 2909, 2908, 2906 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 2914 }
]
},
{
"id": "t_clay_season_summer",
"multitile": true,
- "fg": 2814,
- "bg": 3173,
+ "fg": 2914,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": 2799 },
- { "id": "corner", "bg": 3173, "fg": [ 2801, 2803, 2802, 2800 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 2811, 2813, 2812, 2810 ] },
- { "id": "edge", "bg": 3173, "fg": [ 2805, 2804 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 2807, 2809, 2808, 2806 ] },
- { "bg": 3173, "id": "unconnected", "fg": 2814 }
+ { "id": "center", "bg": 3273, "fg": 2899 },
+ { "id": "corner", "bg": 3273, "fg": [ 2901, 2903, 2902, 2900 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 2911, 2913, 2912, 2910 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 2905, 2904 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 2907, 2909, 2908, 2906 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 2914 }
]
},
{
"id": "t_clay_season_autumn",
"multitile": true,
- "fg": 2814,
- "bg": 3168,
+ "fg": 2914,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": 2799 },
- { "id": "corner", "bg": 3168, "fg": [ 2801, 2803, 2802, 2800 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 2811, 2813, 2812, 2810 ] },
- { "id": "edge", "bg": 3168, "fg": [ 2805, 2804 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 2807, 2809, 2808, 2806 ] },
- { "bg": 3168, "id": "unconnected", "fg": 2814 }
+ { "id": "center", "bg": 3268, "fg": 2899 },
+ { "id": "corner", "bg": 3268, "fg": [ 2901, 2903, 2902, 2900 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 2911, 2913, 2912, 2910 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 2905, 2904 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 2907, 2909, 2908, 2906 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 2914 }
]
},
{
"id": "t_clay_season_winter",
"multitile": true,
- "fg": 2814,
- "bg": 2627,
+ "fg": 2914,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": 2799 },
- { "id": "corner", "bg": 2627, "fg": [ 2801, 2803, 2802, 2800 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 2811, 2813, 2812, 2810 ] },
- { "id": "edge", "bg": 2627, "fg": [ 2805, 2804 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 2807, 2809, 2808, 2806 ] },
- { "bg": 2627, "id": "unconnected", "fg": 2814 }
+ { "id": "center", "bg": 2727, "fg": 2899 },
+ { "id": "corner", "bg": 2727, "fg": [ 2901, 2903, 2902, 2900 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 2911, 2913, 2912, 2910 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 2905, 2904 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 2907, 2909, 2908, 2906 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 2914 }
]
},
{
"id": "t_concrete",
"multitile": true,
- "fg": 2830,
+ "fg": 2930,
"additional_tiles": [
- { "id": "center", "fg": 2815 },
- { "id": "corner", "fg": [ 2817, 2819, 2818, 2816 ] },
- { "id": "t_connection", "fg": [ 2827, 2829, 2828, 2826 ] },
- { "id": "edge", "fg": [ 2821, 2820 ] },
- { "id": "end_piece", "fg": [ 2823, 2825, 2824, 2822 ] },
- { "id": "unconnected", "fg": 2830 }
+ { "id": "center", "fg": 2915 },
+ { "id": "corner", "fg": [ 2917, 2919, 2918, 2916 ] },
+ { "id": "t_connection", "fg": [ 2927, 2929, 2928, 2926 ] },
+ { "id": "edge", "fg": [ 2921, 2920 ] },
+ { "id": "end_piece", "fg": [ 2923, 2925, 2924, 2922 ] },
+ { "id": "unconnected", "fg": 2930 }
]
},
- { "id": "t_concrete_season_winter", "fg": 2627 },
+ { "id": "t_concrete_season_winter", "fg": 2727 },
{
"id": "t_concrete_wall",
"multitile": true,
- "fg": 2846,
+ "fg": 2946,
"additional_tiles": [
- { "id": "center", "fg": 2831 },
- { "id": "corner", "fg": [ 2833, 2835, 2834, 2832 ] },
- { "id": "t_connection", "fg": [ 2843, 2845, 2844, 2842 ] },
- { "id": "edge", "fg": [ 2837, 2836 ] },
- { "id": "end_piece", "fg": [ 2839, 2841, 2840, 2838 ] },
- { "id": "unconnected", "fg": 2846 }
+ { "id": "center", "fg": 2931 },
+ { "id": "corner", "fg": [ 2933, 2935, 2934, 2932 ] },
+ { "id": "t_connection", "fg": [ 2943, 2945, 2944, 2942 ] },
+ { "id": "edge", "fg": [ 2937, 2936 ] },
+ { "id": "end_piece", "fg": [ 2939, 2941, 2940, 2938 ] },
+ { "id": "unconnected", "fg": 2946 }
]
},
{
"id": "t_concrete_wall_flesh",
- "fg": 2862,
+ "fg": 2962,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 2847 },
- { "id": "corner", "fg": [ 2849, 2851, 2850, 2848 ] },
- { "id": "t_connection", "fg": [ 2859, 2861, 2860, 2858 ] },
- { "id": "edge", "fg": [ 2853, 2852 ] },
- { "id": "end_piece", "fg": [ 2855, 2857, 2856, 2854 ] },
- { "id": "unconnected", "fg": [ 2862, 2862 ] }
+ { "id": "center", "fg": 2947 },
+ { "id": "corner", "fg": [ 2949, 2951, 2950, 2948 ] },
+ { "id": "t_connection", "fg": [ 2959, 2961, 2960, 2958 ] },
+ { "id": "edge", "fg": [ 2953, 2952 ] },
+ { "id": "end_piece", "fg": [ 2955, 2957, 2956, 2954 ] },
+ { "id": "unconnected", "fg": [ 2962, 2962 ] }
]
},
{
"id": "t_concrete_y",
"multitile": true,
- "fg": 2878,
+ "fg": 2978,
"additional_tiles": [
- { "id": "center", "fg": 2863 },
- { "id": "corner", "fg": [ 2865, 2867, 2866, 2864 ] },
- { "id": "t_connection", "fg": [ 2875, 2877, 2876, 2874 ] },
- { "id": "edge", "fg": [ 2869, 2868 ] },
- { "id": "end_piece", "fg": [ 2871, 2873, 2872, 2870 ] },
- { "id": "unconnected", "fg": 2878 }
+ { "id": "center", "fg": 2963 },
+ { "id": "corner", "fg": [ 2965, 2967, 2966, 2964 ] },
+ { "id": "t_connection", "fg": [ 2975, 2977, 2976, 2974 ] },
+ { "id": "edge", "fg": [ 2969, 2968 ] },
+ { "id": "end_piece", "fg": [ 2971, 2973, 2972, 2970 ] },
+ { "id": "unconnected", "fg": 2978 }
]
},
- { "id": "t_concrete_y_season_winter", "fg": 2627 },
+ { "id": "t_concrete_y_season_winter", "fg": 2727 },
{
"id": "t_conveyor",
"multitile": true,
- "fg": 2894,
- "bg": 3743,
+ "fg": 2994,
+ "bg": 3846,
"additional_tiles": [
- { "id": "center", "bg": 3743, "fg": 2879 },
- { "id": "corner", "bg": 3743, "fg": [ 2881, 2883, 2882, 2880 ] },
- { "id": "t_connection", "bg": 3743, "fg": [ 2891, 2893, 2892, 2890 ] },
- { "id": "edge", "bg": 3743, "fg": [ 2885, 2884 ] },
- { "id": "end_piece", "bg": 3743, "fg": [ 2887, 2889, 2888, 2886 ] },
- { "bg": 3743, "id": "unconnected", "fg": [ 2894, 2894 ] }
+ { "id": "center", "bg": 3846, "fg": 2979 },
+ { "id": "corner", "bg": 3846, "fg": [ 2981, 2983, 2982, 2980 ] },
+ { "id": "t_connection", "bg": 3846, "fg": [ 2991, 2993, 2992, 2990 ] },
+ { "id": "edge", "bg": 3846, "fg": [ 2985, 2984 ] },
+ { "id": "end_piece", "bg": 3846, "fg": [ 2987, 2989, 2988, 2986 ] },
+ { "bg": 3846, "id": "unconnected", "fg": [ 2994, 2994 ] }
]
},
- { "id": "t_curtains", "fg": 2895 },
+ { "id": "t_curtains", "fg": 2995 },
{
"id": "t_dirt",
- "fg": 2914,
+ "fg": 3014,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 100, "sprite": 2896 },
- { "weight": 100, "sprite": 2897 },
- { "weight": 100, "sprite": 2898 },
- { "weight": 100, "sprite": 2899 }
+ { "weight": 100, "sprite": 2996 },
+ { "weight": 100, "sprite": 2997 },
+ { "weight": 100, "sprite": 2998 },
+ { "weight": 100, "sprite": 2999 }
]
},
- { "id": "corner", "fg": [ 2901, 2903, 2902, 2900 ] },
- { "id": "t_connection", "fg": [ 2911, 2913, 2912, 2910 ] },
- { "id": "edge", "fg": [ 2905, 2904 ] },
- { "id": "end_piece", "fg": [ 2907, 2909, 2908, 2906 ] },
- { "id": "unconnected", "fg": [ 2914, 2914 ] }
+ { "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, 3014 ] }
]
},
{
"id": "t_dirt_season_autumn",
- "fg": 2933,
+ "fg": 3033,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": [ 2915, 2916, 2917, 2918 ] },
- { "id": "corner", "fg": [ 2920, 2922, 2921, 2919 ] },
- { "id": "t_connection", "fg": [ 2930, 2932, 2931, 2929 ] },
- { "id": "edge", "fg": [ 2924, 2923 ] },
- { "id": "end_piece", "fg": [ 2926, 2928, 2927, 2925 ] },
- { "id": "unconnected", "fg": [ 2933, 2933 ] }
+ { "id": "center", "fg": [ 3015, 3016, 3017, 3018 ] },
+ { "id": "corner", "fg": [ 3020, 3022, 3021, 3019 ] },
+ { "id": "t_connection", "fg": [ 3030, 3032, 3031, 3029 ] },
+ { "id": "edge", "fg": [ 3024, 3023 ] },
+ { "id": "end_piece", "fg": [ 3026, 3028, 3027, 3025 ] },
+ { "id": "unconnected", "fg": [ 3033, 3033 ] }
]
},
{
"id": "t_dirt_season_summer",
- "fg": 2952,
+ "fg": 3052,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": [ 2934, 2935, 2936, 2937 ] },
- { "id": "corner", "fg": [ 2939, 2941, 2940, 2938 ] },
- { "id": "t_connection", "fg": [ 2949, 2951, 2950, 2948 ] },
- { "id": "edge", "fg": [ 2943, 2942 ] },
- { "id": "end_piece", "fg": [ 2945, 2947, 2946, 2944 ] },
- { "id": "unconnected", "fg": [ 2952, 2952 ] }
+ { "id": "center", "fg": [ 3034, 3035, 3036, 3037 ] },
+ { "id": "corner", "fg": [ 3039, 3041, 3040, 3038 ] },
+ { "id": "t_connection", "fg": [ 3049, 3051, 3050, 3048 ] },
+ { "id": "edge", "fg": [ 3043, 3042 ] },
+ { "id": "end_piece", "fg": [ 3045, 3047, 3046, 3044 ] },
+ { "id": "unconnected", "fg": [ 3052, 3052 ] }
]
},
{
"id": "t_dirt_season_winter",
"fg": [
- { "weight": 100, "sprite": 2953 },
- { "weight": 100, "sprite": 2954 },
- { "weight": 100, "sprite": 2955 },
- { "weight": 100, "sprite": 2956 }
+ { "weight": 100, "sprite": 3053 },
+ { "weight": 100, "sprite": 3054 },
+ { "weight": 100, "sprite": 3055 },
+ { "weight": 100, "sprite": 3056 }
]
},
{
"id": "t_dirtfloor",
"multitile": true,
- "fg": 2972,
- "additional_tiles": [
- { "id": "center", "fg": 2957 },
- { "id": "corner", "fg": [ 2959, 2961, 2960, 2958 ] },
- { "id": "t_connection", "fg": [ 2969, 2971, 2970, 2968 ] },
- { "id": "edge", "fg": [ 2963, 2962 ] },
- { "id": "end_piece", "fg": [ 2965, 2967, 2966, 2964 ] },
- { "id": "unconnected", "fg": 2972 }
- ]
- },
- { "id": "t_door_c", "fg": 2974 },
- { "id": "t_door_locked", "fg": 2975 },
- { "id": "t_door_o", "fg": 2976 },
- { "id": "t_door_b", "fg": 2973 },
- { "id": "t_door_boarded", "fg": 2977 },
- { "id": "t_door_boarded_damaged", "fg": 2978 },
- { "id": "t_door_glass_c", "fg": 2979 },
- { "id": "t_door_glass_o", "fg": 2980 },
- { "id": "t_door_lab_c", "fg": 2981 },
- { "id": "t_door_lab_o", "fg": 2982 },
- { "id": "t_door_metal_c_peep", "fg": 2983 },
- { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 2984 },
- { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 2991 }, { "weight": 100, "sprite": 2992 } ] },
+ "fg": 3072,
+ "additional_tiles": [
+ { "id": "center", "fg": 3057 },
+ { "id": "corner", "fg": [ 3059, 3061, 3060, 3058 ] },
+ { "id": "t_connection", "fg": [ 3069, 3071, 3070, 3068 ] },
+ { "id": "edge", "fg": [ 3063, 3062 ] },
+ { "id": "end_piece", "fg": [ 3065, 3067, 3066, 3064 ] },
+ { "id": "unconnected", "fg": 3072 }
+ ]
+ },
+ { "id": "t_door_c", "fg": 3074 },
+ { "id": "t_door_locked", "fg": 3075 },
+ { "id": "t_door_o", "fg": 3076 },
+ { "id": "t_door_b", "fg": 3073 },
+ { "id": "t_door_boarded", "fg": 3077 },
+ { "id": "t_door_boarded_damaged", "fg": 3078 },
+ { "id": "t_door_glass_c", "fg": 3079 },
+ { "id": "t_door_glass_o", "fg": 3080 },
+ { "id": "t_door_lab_c", "fg": 3081 },
+ { "id": "t_door_lab_o", "fg": 3082 },
+ { "id": "t_door_metal_c_peep", "fg": 3083 },
+ { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 3084 },
+ { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 3091 }, { "weight": 100, "sprite": 3092 } ] },
{
"id": "t_fence_season_spring",
"multitile": true,
- "fg": 3008,
- "bg": 3163,
+ "fg": 3108,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 2993 },
- { "id": "corner", "bg": 3163, "fg": [ 2995, 2997, 2996, 2994 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3005, 3007, 3006, 3004 ] },
- { "id": "edge", "bg": 3163, "fg": [ 2999, 2998 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3001, 3003, 3002, 3000 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3008 }
+ { "id": "center", "bg": 3263, "fg": 3093 },
+ { "id": "corner", "bg": 3263, "fg": [ 3095, 3097, 3096, 3094 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3105, 3107, 3106, 3104 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3099, 3098 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3101, 3103, 3102, 3100 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3108 }
]
},
{
"id": "t_fence_season_summer",
"multitile": true,
- "fg": 3008,
- "bg": 3173,
+ "fg": 3108,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": 2993 },
- { "id": "corner", "bg": 3173, "fg": [ 2995, 2997, 2996, 2994 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3005, 3007, 3006, 3004 ] },
- { "id": "edge", "bg": 3173, "fg": [ 2999, 2998 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3001, 3003, 3002, 3000 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3008 }
+ { "id": "center", "bg": 3273, "fg": 3093 },
+ { "id": "corner", "bg": 3273, "fg": [ 3095, 3097, 3096, 3094 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 3105, 3107, 3106, 3104 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 3099, 3098 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 3101, 3103, 3102, 3100 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 3108 }
]
},
{
"id": "t_fence_season_autumn",
"multitile": true,
- "fg": 3008,
- "bg": 3168,
+ "fg": 3108,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": 2993 },
- { "id": "corner", "bg": 3168, "fg": [ 2995, 2997, 2996, 2994 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3005, 3007, 3006, 3004 ] },
- { "id": "edge", "bg": 3168, "fg": [ 2999, 2998 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3001, 3003, 3002, 3000 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3008 }
+ { "id": "center", "bg": 3268, "fg": 3093 },
+ { "id": "corner", "bg": 3268, "fg": [ 3095, 3097, 3096, 3094 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 3105, 3107, 3106, 3104 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 3099, 3098 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 3101, 3103, 3102, 3100 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 3108 }
]
},
{
"id": "t_fence_season_winter",
"multitile": true,
- "fg": 3008,
- "bg": 2627,
- "additional_tiles": [
- { "id": "center", "bg": 2627, "fg": 2993 },
- { "id": "corner", "bg": 2627, "fg": [ 2995, 2997, 2996, 2994 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3005, 3007, 3006, 3004 ] },
- { "id": "edge", "bg": 2627, "fg": [ 2999, 2998 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3001, 3003, 3002, 3000 ] },
- { "bg": 2627, "id": "unconnected", "fg": 3008 }
- ]
- },
- { "id": "t_fencegate_c_season_spring", "fg": 3009, "bg": 3163 },
- { "id": "t_fencegate_c_season_summer", "fg": 3009, "bg": 3173 },
- { "id": "t_fencegate_c_season_autumn", "fg": 3009, "bg": 3168 },
- { "id": "t_fencegate_c_season_winter", "fg": 3009, "bg": 2627 },
- { "id": "t_fencegate_o_season_spring", "fg": 3010, "bg": 3163 },
- { "id": "t_fencegate_o_season_summer", "fg": 3010, "bg": 3173 },
- { "id": "t_fencegate_o_season_autumn", "fg": 3010, "bg": 3168 },
- { "id": "t_fencegate_o_season_winter", "fg": 3010, "bg": 2627 },
- { "id": "t_fence_post_season_spring", "fg": 3008, "bg": 3163 },
- { "id": "t_fence_post_season_summer", "fg": 3008, "bg": 3173 },
- { "id": "t_fence_post_season_autumn", "fg": 3008, "bg": 3168 },
- { "id": "t_fence_post_season_winter", "fg": 3008, "bg": 2627 },
+ "fg": 3108,
+ "bg": 2727,
+ "additional_tiles": [
+ { "id": "center", "bg": 2727, "fg": 3093 },
+ { "id": "corner", "bg": 2727, "fg": [ 3095, 3097, 3096, 3094 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 3105, 3107, 3106, 3104 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 3099, 3098 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 3101, 3103, 3102, 3100 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 3108 }
+ ]
+ },
+ { "id": "t_fencegate_c_season_spring", "fg": 3109, "bg": 3263 },
+ { "id": "t_fencegate_c_season_summer", "fg": 3109, "bg": 3273 },
+ { "id": "t_fencegate_c_season_autumn", "fg": 3109, "bg": 3268 },
+ { "id": "t_fencegate_c_season_winter", "fg": 3109, "bg": 2727 },
+ { "id": "t_fencegate_o_season_spring", "fg": 3110, "bg": 3263 },
+ { "id": "t_fencegate_o_season_summer", "fg": 3110, "bg": 3273 },
+ { "id": "t_fencegate_o_season_autumn", "fg": 3110, "bg": 3268 },
+ { "id": "t_fencegate_o_season_winter", "fg": 3110, "bg": 2727 },
+ { "id": "t_fence_post_season_spring", "fg": 3108, "bg": 3263 },
+ { "id": "t_fence_post_season_summer", "fg": 3108, "bg": 3273 },
+ { "id": "t_fence_post_season_autumn", "fg": 3108, "bg": 3268 },
+ { "id": "t_fence_post_season_winter", "fg": 3108, "bg": 2727 },
{
"id": "t_fence_barbed_season_spring",
"multitile": true,
- "fg": 3026,
- "bg": 3163,
+ "fg": 3126,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 3011 },
- { "id": "corner", "bg": 3163, "fg": [ 3013, 3015, 3014, 3012 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3023, 3025, 3024, 3022 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3017, 3016 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3019, 3021, 3020, 3018 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3026 }
+ { "id": "center", "bg": 3263, "fg": 3111 },
+ { "id": "corner", "bg": 3263, "fg": [ 3113, 3115, 3114, 3112 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3123, 3125, 3124, 3122 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3117, 3116 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3119, 3121, 3120, 3118 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3126 }
]
},
{
"id": "t_fence_barbed_season_summer",
"multitile": true,
- "fg": 3026,
- "bg": 3173,
+ "fg": 3126,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": 3011 },
- { "id": "corner", "bg": 3173, "fg": [ 3013, 3015, 3014, 3012 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3023, 3025, 3024, 3022 ] },
- { "id": "edge", "bg": 3173, "fg": [ 3017, 3016 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3019, 3021, 3020, 3018 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3026 }
+ { "id": "center", "bg": 3273, "fg": 3111 },
+ { "id": "corner", "bg": 3273, "fg": [ 3113, 3115, 3114, 3112 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 3123, 3125, 3124, 3122 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 3117, 3116 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 3119, 3121, 3120, 3118 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 3126 }
]
},
{
"id": "t_fence_barbed_season_autumn",
"multitile": true,
- "fg": 3026,
- "bg": 3168,
+ "fg": 3126,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": 3011 },
- { "id": "corner", "bg": 3168, "fg": [ 3013, 3015, 3014, 3012 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3023, 3025, 3024, 3022 ] },
- { "id": "edge", "bg": 3168, "fg": [ 3017, 3016 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3019, 3021, 3020, 3018 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3026 }
+ { "id": "center", "bg": 3268, "fg": 3111 },
+ { "id": "corner", "bg": 3268, "fg": [ 3113, 3115, 3114, 3112 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 3123, 3125, 3124, 3122 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 3117, 3116 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 3119, 3121, 3120, 3118 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 3126 }
]
},
{
"id": "t_fence_barbed_season_winter",
"multitile": true,
- "fg": 3026,
- "bg": 2627,
+ "fg": 3126,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": 3011 },
- { "id": "corner", "bg": 2627, "fg": [ 3013, 3015, 3014, 3012 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3023, 3025, 3024, 3022 ] },
- { "id": "edge", "bg": 2627, "fg": [ 3017, 3016 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3019, 3021, 3020, 3018 ] },
- { "bg": 2627, "id": "unconnected", "fg": 3026 }
+ { "id": "center", "bg": 2727, "fg": 3111 },
+ { "id": "corner", "bg": 2727, "fg": [ 3113, 3115, 3114, 3112 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 3123, 3125, 3124, 3122 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 3117, 3116 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 3119, 3121, 3120, 3118 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 3126 }
]
},
{
"id": "t_fence_rope_season_spring",
- "fg": 3043,
+ "fg": 3143,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3028, "bg": 2896 },
- { "id": "corner", "fg": [ 3030, 3032, 3031, 3029 ], "bg": [ 2901, 2903, 2902, 2900 ] },
- { "id": "t_connection", "fg": [ 3040, 3042, 3041, 3039 ], "bg": [ 2911, 2913, 2912, 2910 ] },
- { "id": "edge", "fg": [ 3034, 3033 ], "bg": [ 2905, 2904 ] },
- { "id": "end_piece", "fg": [ 3036, 3038, 3037, 3035 ], "bg": [ 2907, 2909, 2908, 2906 ] },
- { "id": "unconnected", "fg": [ 3043, 3043 ], "bg": [ 2914, 2914 ] }
+ { "id": "center", "fg": 3128, "bg": 2996 },
+ { "id": "corner", "fg": [ 3130, 3132, 3131, 3129 ], "bg": [ 3001, 3003, 3002, 3000 ] },
+ { "id": "t_connection", "fg": [ 3140, 3142, 3141, 3139 ], "bg": [ 3011, 3013, 3012, 3010 ] },
+ { "id": "edge", "fg": [ 3134, 3133 ], "bg": [ 3005, 3004 ] },
+ { "id": "end_piece", "fg": [ 3136, 3138, 3137, 3135 ], "bg": [ 3007, 3009, 3008, 3006 ] },
+ { "id": "unconnected", "fg": [ 3143, 3143 ], "bg": [ 3014, 3014 ] }
]
},
{
"id": "t_fence_rope_season_summer",
- "fg": 3043,
+ "fg": 3143,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3028, "bg": 2934 },
- { "id": "corner", "fg": [ 3030, 3032, 3031, 3029 ], "bg": [ 2939, 2941, 2940, 2938 ] },
- { "id": "t_connection", "fg": [ 3040, 3042, 3041, 3039 ], "bg": [ 2949, 2951, 2950, 2948 ] },
- { "id": "edge", "fg": [ 3034, 3033 ], "bg": [ 2943, 2942 ] },
- { "id": "end_piece", "fg": [ 3036, 3038, 3037, 3035 ], "bg": [ 2945, 2947, 2946, 2944 ] },
- { "id": "unconnected", "fg": [ 3043, 3043 ], "bg": [ 2952, 2952 ] }
+ { "id": "center", "fg": 3128, "bg": 3034 },
+ { "id": "corner", "fg": [ 3130, 3132, 3131, 3129 ], "bg": [ 3039, 3041, 3040, 3038 ] },
+ { "id": "t_connection", "fg": [ 3140, 3142, 3141, 3139 ], "bg": [ 3049, 3051, 3050, 3048 ] },
+ { "id": "edge", "fg": [ 3134, 3133 ], "bg": [ 3043, 3042 ] },
+ { "id": "end_piece", "fg": [ 3136, 3138, 3137, 3135 ], "bg": [ 3045, 3047, 3046, 3044 ] },
+ { "id": "unconnected", "fg": [ 3143, 3143 ], "bg": [ 3052, 3052 ] }
]
},
{
"id": "t_fence_rope_season_autumn",
- "fg": 3043,
+ "fg": 3143,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3028, "bg": 2915 },
- { "id": "corner", "fg": [ 3030, 3032, 3031, 3029 ], "bg": [ 2920, 2922, 2921, 2919 ] },
- { "id": "t_connection", "fg": [ 3040, 3042, 3041, 3039 ], "bg": [ 2930, 2932, 2931, 2929 ] },
- { "id": "edge", "fg": [ 3034, 3033 ], "bg": [ 2924, 2923 ] },
- { "id": "end_piece", "fg": [ 3036, 3038, 3037, 3035 ], "bg": [ 2926, 2928, 2927, 2925 ] },
- { "id": "unconnected", "fg": [ 3043, 3043 ], "bg": [ 2933, 2933 ] }
+ { "id": "center", "fg": 3128, "bg": 3015 },
+ { "id": "corner", "fg": [ 3130, 3132, 3131, 3129 ], "bg": [ 3020, 3022, 3021, 3019 ] },
+ { "id": "t_connection", "fg": [ 3140, 3142, 3141, 3139 ], "bg": [ 3030, 3032, 3031, 3029 ] },
+ { "id": "edge", "fg": [ 3134, 3133 ], "bg": [ 3024, 3023 ] },
+ { "id": "end_piece", "fg": [ 3136, 3138, 3137, 3135 ], "bg": [ 3026, 3028, 3027, 3025 ] },
+ { "id": "unconnected", "fg": [ 3143, 3143 ], "bg": [ 3033, 3033 ] }
]
},
{
"id": "t_fence_rope_season_winter",
- "fg": 3043,
+ "fg": 3143,
"multitile": true,
"additional_tiles": [
{
"id": "center",
- "fg": 3028,
+ "fg": 3128,
"bg": [
- { "weight": 100, "sprite": 2953 },
- { "weight": 100, "sprite": 2954 },
- { "weight": 100, "sprite": 2955 },
- { "weight": 100, "sprite": 2956 }
+ { "weight": 100, "sprite": 3053 },
+ { "weight": 100, "sprite": 3054 },
+ { "weight": 100, "sprite": 3055 },
+ { "weight": 100, "sprite": 3056 }
]
},
{
"id": "corner",
- "fg": [ 3030, 3032, 3031, 3029 ],
+ "fg": [ 3130, 3132, 3131, 3129 ],
"bg": [
- { "weight": 100, "sprite": 2953 },
- { "weight": 100, "sprite": 2954 },
- { "weight": 100, "sprite": 2955 },
- { "weight": 100, "sprite": 2956 }
+ { "weight": 100, "sprite": 3053 },
+ { "weight": 100, "sprite": 3054 },
+ { "weight": 100, "sprite": 3055 },
+ { "weight": 100, "sprite": 3056 }
]
},
{
"id": "t_connection",
- "fg": [ 3040, 3042, 3041, 3039 ],
+ "fg": [ 3140, 3142, 3141, 3139 ],
"bg": [
- { "weight": 100, "sprite": 2953 },
- { "weight": 100, "sprite": 2954 },
- { "weight": 100, "sprite": 2955 },
- { "weight": 100, "sprite": 2956 }
+ { "weight": 100, "sprite": 3053 },
+ { "weight": 100, "sprite": 3054 },
+ { "weight": 100, "sprite": 3055 },
+ { "weight": 100, "sprite": 3056 }
]
},
{
"id": "edge",
- "fg": [ 3034, 3033 ],
+ "fg": [ 3134, 3133 ],
"bg": [
- { "weight": 100, "sprite": 2953 },
- { "weight": 100, "sprite": 2954 },
- { "weight": 100, "sprite": 2955 },
- { "weight": 100, "sprite": 2956 }
+ { "weight": 100, "sprite": 3053 },
+ { "weight": 100, "sprite": 3054 },
+ { "weight": 100, "sprite": 3055 },
+ { "weight": 100, "sprite": 3056 }
]
},
{
"id": "end_piece",
- "fg": [ 3036, 3038, 3037, 3035 ],
+ "fg": [ 3136, 3138, 3137, 3135 ],
"bg": [
- { "weight": 100, "sprite": 2953 },
- { "weight": 100, "sprite": 2954 },
- { "weight": 100, "sprite": 2955 },
- { "weight": 100, "sprite": 2956 }
+ { "weight": 100, "sprite": 3053 },
+ { "weight": 100, "sprite": 3054 },
+ { "weight": 100, "sprite": 3055 },
+ { "weight": 100, "sprite": 3056 }
]
},
{
"id": "unconnected",
- "fg": [ 3043, 3043 ],
+ "fg": [ 3143, 3143 ],
"bg": [
- { "weight": 100, "sprite": 2953 },
- { "weight": 100, "sprite": 2954 },
- { "weight": 100, "sprite": 2955 },
- { "weight": 100, "sprite": 2956 }
+ { "weight": 100, "sprite": 3053 },
+ { "weight": 100, "sprite": 3054 },
+ { "weight": 100, "sprite": 3055 },
+ { "weight": 100, "sprite": 3056 }
]
}
]
@@ -3615,2632 +3719,2451 @@
{
"id": "t_fence_wire_season_spring",
"multitile": true,
- "fg": 3059,
- "bg": 3163,
+ "fg": 3159,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 3044 },
- { "id": "corner", "bg": 3163, "fg": [ 3046, 3048, 3047, 3045 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3056, 3058, 3057, 3055 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3050, 3049 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3052, 3054, 3053, 3051 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3059 }
+ { "id": "center", "bg": 3263, "fg": 3144 },
+ { "id": "corner", "bg": 3263, "fg": [ 3146, 3148, 3147, 3145 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3156, 3158, 3157, 3155 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3150, 3149 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3152, 3154, 3153, 3151 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3159 }
]
},
{
"id": "t_fence_wire_season_summer",
"multitile": true,
- "fg": 3059,
- "bg": 3173,
+ "fg": 3159,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": 3044 },
- { "id": "corner", "bg": 3173, "fg": [ 3046, 3048, 3047, 3045 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3056, 3058, 3057, 3055 ] },
- { "id": "edge", "bg": 3173, "fg": [ 3050, 3049 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3052, 3054, 3053, 3051 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3059 }
+ { "id": "center", "bg": 3273, "fg": 3144 },
+ { "id": "corner", "bg": 3273, "fg": [ 3146, 3148, 3147, 3145 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 3156, 3158, 3157, 3155 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 3150, 3149 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 3152, 3154, 3153, 3151 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 3159 }
]
},
{
"id": "t_fence_wire_season_autumn",
"multitile": true,
- "fg": 3059,
- "bg": 3168,
+ "fg": 3159,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": 3044 },
- { "id": "corner", "bg": 3168, "fg": [ 3046, 3048, 3047, 3045 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3056, 3058, 3057, 3055 ] },
- { "id": "edge", "bg": 3168, "fg": [ 3050, 3049 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3052, 3054, 3053, 3051 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3059 }
+ { "id": "center", "bg": 3268, "fg": 3144 },
+ { "id": "corner", "bg": 3268, "fg": [ 3146, 3148, 3147, 3145 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 3156, 3158, 3157, 3155 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 3150, 3149 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 3152, 3154, 3153, 3151 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 3159 }
]
},
{
"id": "t_fence_wire_season_winter",
"multitile": true,
- "fg": 3059,
- "bg": 2627,
+ "fg": 3159,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": 3044 },
- { "id": "corner", "bg": 2627, "fg": [ 3046, 3048, 3047, 3045 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3056, 3058, 3057, 3055 ] },
- { "id": "edge", "bg": 2627, "fg": [ 3050, 3049 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3052, 3054, 3053, 3051 ] },
- { "bg": 2627, "id": "unconnected", "fg": 3059 }
+ { "id": "center", "bg": 2727, "fg": 3144 },
+ { "id": "corner", "bg": 2727, "fg": [ 3146, 3148, 3147, 3145 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 3156, 3158, 3157, 3155 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 3150, 3149 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 3152, 3154, 3153, 3151 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 3159 }
]
},
{
"id": "t_floor",
"multitile": true,
- "fg": 3077,
+ "fg": 3177,
"additional_tiles": [
{
"id": "center",
- "fg": [ { "weight": 1, "sprite": 3060 }, { "weight": 1, "sprite": 3061 }, { "weight": 1, "sprite": 3062 } ]
+ "fg": [ { "weight": 1, "sprite": 3160 }, { "weight": 1, "sprite": 3161 }, { "weight": 1, "sprite": 3162 } ]
},
- { "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 }
+ { "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 }
]
},
{
"id": "t_floor_resin",
"multitile": true,
- "fg": 3093,
+ "fg": 3193,
"additional_tiles": [
- { "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 }
+ { "id": "center", "fg": 3178 },
+ { "id": "corner", "fg": [ 3180, 3182, 3181, 3179 ] },
+ { "id": "t_connection", "fg": [ 3190, 3192, 3191, 3189 ] },
+ { "id": "edge", "fg": [ 3184, 3183 ] },
+ { "id": "end_piece", "fg": [ 3186, 3188, 3187, 3185 ] },
+ { "id": "unconnected", "fg": 3193 }
]
},
{
"id": "t_floor_wax",
"multitile": true,
- "fg": 3109,
+ "fg": 3209,
"additional_tiles": [
- { "id": "center", "fg": 3094 },
- { "id": "corner", "fg": [ 3096, 3098, 3097, 3095 ] },
- { "id": "t_connection", "fg": [ 3106, 3108, 3107, 3105 ] },
- { "id": "edge", "fg": [ 3100, 3099 ] },
- { "id": "end_piece", "fg": [ 3102, 3104, 3103, 3101 ] },
- { "id": "unconnected", "fg": 3109 }
+ { "id": "center", "fg": 3194 },
+ { "id": "corner", "fg": [ 3196, 3198, 3197, 3195 ] },
+ { "id": "t_connection", "fg": [ 3206, 3208, 3207, 3205 ] },
+ { "id": "edge", "fg": [ 3200, 3199 ] },
+ { "id": "end_piece", "fg": [ 3202, 3204, 3203, 3201 ] },
+ { "id": "unconnected", "fg": 3209 }
]
},
{
"id": "t_floor_waxed",
"multitile": true,
- "fg": 3125,
+ "fg": 3225,
"additional_tiles": [
- { "id": "center", "fg": 3110 },
- { "id": "corner", "fg": [ 3112, 3114, 3113, 3111 ] },
- { "id": "t_connection", "fg": [ 3122, 3124, 3123, 3121 ] },
- { "id": "edge", "fg": [ 3116, 3115 ] },
- { "id": "end_piece", "fg": [ 3118, 3120, 3119, 3117 ] },
- { "id": "unconnected", "fg": 3125 }
+ { "id": "center", "fg": 3210 },
+ { "id": "corner", "fg": [ 3212, 3214, 3213, 3211 ] },
+ { "id": "t_connection", "fg": [ 3222, 3224, 3223, 3221 ] },
+ { "id": "edge", "fg": [ 3216, 3215 ] },
+ { "id": "end_piece", "fg": [ 3218, 3220, 3219, 3217 ] },
+ { "id": "unconnected", "fg": 3225 }
]
},
{
"id": "t_floor_waxed_y",
"multitile": true,
- "fg": 3141,
+ "fg": 3241,
"additional_tiles": [
- { "id": "center", "fg": 3126 },
- { "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 }
+ { "id": "center", "fg": 3226 },
+ { "id": "corner", "fg": [ 3228, 3230, 3229, 3227 ] },
+ { "id": "t_connection", "fg": [ 3238, 3240, 3239, 3237 ] },
+ { "id": "edge", "fg": [ 3232, 3231 ] },
+ { "id": "end_piece", "fg": [ 3234, 3236, 3235, 3233 ] },
+ { "id": "unconnected", "fg": 3241 }
]
},
{
"id": [ "t_fungus", "t_fungus_floor_out" ],
"multitile": true,
- "fg": 3157,
- "bg": 3163,
+ "fg": 3257,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 3142 },
- { "id": "corner", "bg": 3163, "fg": [ 3144, 3146, 3145, 3143 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3154, 3156, 3155, 3153 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3148, 3147 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3150, 3152, 3151, 3149 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3157 }
+ { "id": "center", "bg": 3263, "fg": 3242 },
+ { "id": "corner", "bg": 3263, "fg": [ 3244, 3246, 3245, 3243 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3254, 3256, 3255, 3253 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3248, 3247 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3250, 3252, 3251, 3249 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3257 }
]
},
{
"id": "t_fungus_season_summer",
"multitile": true,
- "fg": 3157,
- "bg": 3173,
+ "fg": 3257,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": 3142 },
- { "id": "corner", "bg": 3173, "fg": [ 3144, 3146, 3145, 3143 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3154, 3156, 3155, 3153 ] },
- { "id": "edge", "bg": 3173, "fg": [ 3148, 3147 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3150, 3152, 3151, 3149 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3157 }
+ { "id": "center", "bg": 3273, "fg": 3242 },
+ { "id": "corner", "bg": 3273, "fg": [ 3244, 3246, 3245, 3243 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 3254, 3256, 3255, 3253 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 3248, 3247 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 3250, 3252, 3251, 3249 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 3257 }
]
},
{
"id": "t_fungus_season_autumn",
"multitile": true,
- "fg": 3157,
- "bg": 3168,
+ "fg": 3257,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": 3142 },
- { "id": "corner", "bg": 3168, "fg": [ 3144, 3146, 3145, 3143 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3154, 3156, 3155, 3153 ] },
- { "id": "edge", "bg": 3168, "fg": [ 3148, 3147 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3150, 3152, 3151, 3149 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3157 }
+ { "id": "center", "bg": 3268, "fg": 3242 },
+ { "id": "corner", "bg": 3268, "fg": [ 3244, 3246, 3245, 3243 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 3254, 3256, 3255, 3253 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 3248, 3247 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 3250, 3252, 3251, 3249 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 3257 }
]
},
{
"id": "t_fungus_season_winter",
"multitile": true,
- "fg": 3157,
- "bg": 2627,
+ "fg": 3257,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": 3142 },
- { "id": "corner", "bg": 2627, "fg": [ 3144, 3146, 3145, 3143 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3154, 3156, 3155, 3153 ] },
- { "id": "edge", "bg": 2627, "fg": [ 3148, 3147 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3150, 3152, 3151, 3149 ] },
- { "bg": 2627, "id": "unconnected", "fg": 3157 }
+ { "id": "center", "bg": 2727, "fg": 3242 },
+ { "id": "corner", "bg": 2727, "fg": [ 3244, 3246, 3245, 3243 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 3254, 3256, 3255, 3253 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 3248, 3247 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 3250, 3252, 3251, 3249 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 3257 }
]
},
{
"id": [ "t_fungus_floor_in", "t_fungus_floor_sup" ],
"multitile": true,
- "fg": 3157,
- "bg": 3743,
- "additional_tiles": [
- { "id": "center", "bg": 3743, "fg": 3142 },
- { "id": "corner", "bg": 3743, "fg": [ 3144, 3146, 3145, 3143 ] },
- { "id": "t_connection", "bg": 3743, "fg": [ 3154, 3156, 3155, 3153 ] },
- { "id": "edge", "bg": 3743, "fg": [ 3148, 3147 ] },
- { "id": "end_piece", "bg": 3743, "fg": [ 3150, 3152, 3151, 3149 ] },
- { "bg": 3743, "id": "unconnected", "fg": [ 3157, 3157 ] }
- ]
- },
- { "id": "t_shrub_fungal", "fg": 3648, "bg": 3142 },
- { "id": "t_gates_mech_control", "fg": 3158, "bg": 3743 },
- { "id": "t_gates_mech_control_lab", "fg": 3159, "bg": 3743 },
- { "id": "t_gates_control_concrete", "fg": 3160, "bg": 2846 },
- { "id": "t_gates_control_concrete_lab", "fg": 3159, "bg": 6831 },
- { "id": "t_gates_control_brick", "fg": 3160, "bg": 2696 },
- { "id": "t_gates_control_brick_lab", "fg": 3159, "bg": 2696 },
- { "id": "t_gates_control_metal", "fg": 3160, "bg": 3847 },
- { "id": "t_gates_control_metal_lab", "fg": 3159, "bg": 3847 },
- { "id": "t_elevator_control", "fg": 3161, "bg": 3743 },
- { "id": "t_elevator_control_off", "fg": 3162, "bg": 3743 },
+ "fg": 3257,
+ "bg": 3846,
+ "additional_tiles": [
+ { "id": "center", "bg": 3846, "fg": 3242 },
+ { "id": "corner", "bg": 3846, "fg": [ 3244, 3246, 3245, 3243 ] },
+ { "id": "t_connection", "bg": 3846, "fg": [ 3254, 3256, 3255, 3253 ] },
+ { "id": "edge", "bg": 3846, "fg": [ 3248, 3247 ] },
+ { "id": "end_piece", "bg": 3846, "fg": [ 3250, 3252, 3251, 3249 ] },
+ { "bg": 3846, "id": "unconnected", "fg": [ 3257, 3257 ] }
+ ]
+ },
+ { "id": "t_shrub_fungal", "fg": 3751, "bg": 3242 },
+ { "id": "t_gates_mech_control", "fg": 3258, "bg": 3846 },
+ { "id": "t_gates_mech_control_lab", "fg": 3259, "bg": 3846 },
+ { "id": "t_gates_control_concrete", "fg": 3260, "bg": 2946 },
+ { "id": "t_gates_control_concrete_lab", "fg": 3259, "bg": 7422 },
+ { "id": "t_gates_control_brick", "fg": 3260, "bg": 2796 },
+ { "id": "t_gates_control_brick_lab", "fg": 3259, "bg": 2796 },
+ { "id": "t_gates_control_metal", "fg": 3260, "bg": 3950 },
+ { "id": "t_gates_control_metal_lab", "fg": 3259, "bg": 3950 },
+ { "id": "t_elevator_control", "fg": 3261, "bg": 3846 },
+ { "id": "t_elevator_control_off", "fg": 3262, "bg": 3846 },
{
"id": "t_grass",
"fg": [
- { "weight": 1, "sprite": 3164 },
- { "weight": 1, "sprite": 3165 },
- { "weight": 1, "sprite": 3166 },
- { "weight": 1, "sprite": 3167 }
+ { "weight": 1, "sprite": 3264 },
+ { "weight": 1, "sprite": 3265 },
+ { "weight": 1, "sprite": 3266 },
+ { "weight": 1, "sprite": 3267 }
]
},
{
"id": "t_grass_season_summer",
"fg": [
- { "weight": 1, "sprite": 3174 },
- { "weight": 1, "sprite": 3175 },
- { "weight": 1, "sprite": 3176 },
- { "weight": 1, "sprite": 3177 }
+ { "weight": 1, "sprite": 3274 },
+ { "weight": 1, "sprite": 3275 },
+ { "weight": 1, "sprite": 3276 },
+ { "weight": 1, "sprite": 3277 }
]
},
{
"id": "t_grass_season_autumn",
"fg": [
- { "weight": 1, "sprite": 3169 },
- { "weight": 1, "sprite": 3170 },
- { "weight": 1, "sprite": 3171 },
- { "weight": 1, "sprite": 3172 }
+ { "weight": 1, "sprite": 3269 },
+ { "weight": 1, "sprite": 3270 },
+ { "weight": 1, "sprite": 3271 },
+ { "weight": 1, "sprite": 3272 }
]
},
{
"id": "t_grass_season_winter",
- "fg": 2645,
- "bg": 2627,
+ "fg": 2745,
+ "bg": 2727,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 2627 },
- { "weight": 1, "sprite": 2628 },
- { "weight": 1, "sprite": 2629 },
- { "weight": 1, "sprite": 2630 }
+ { "weight": 1, "sprite": 2727 },
+ { "weight": 1, "sprite": 2728 },
+ { "weight": 1, "sprite": 2729 },
+ { "weight": 1, "sprite": 2730 }
]
},
- { "id": "corner", "bg": 2627, "fg": [ 2632, 2634, 2633, 2631 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 2642, 2644, 2643, 2641 ] },
- { "id": "edge", "bg": 2627, "fg": [ 2636, 2635 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 2638, 2640, 2639, 2637 ] },
- { "bg": 2627, "id": "unconnected", "fg": 2645 }
+ { "id": "corner", "bg": 2727, "fg": [ 2732, 2734, 2733, 2731 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 2742, 2744, 2743, 2741 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 2736, 2735 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 2738, 2740, 2739, 2737 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 2745 }
]
},
{
"id": "t_grass_dead",
"multitile": true,
- "fg": 3193,
- "bg": 3163,
+ "fg": 3293,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 3178 },
- { "id": "corner", "bg": 3163, "fg": [ 3180, 3182, 3181, 3179 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3190, 3192, 3191, 3189 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3184, 3183 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3186, 3188, 3187, 3185 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3193 }
+ { "id": "center", "bg": 3263, "fg": 3278 },
+ { "id": "corner", "bg": 3263, "fg": [ 3280, 3282, 3281, 3279 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3290, 3292, 3291, 3289 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3284, 3283 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3286, 3288, 3287, 3285 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3293 }
]
},
{
"id": "t_grass_dead_season_summer",
"multitile": true,
- "fg": 3225,
- "bg": 3173,
+ "fg": 3325,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": 3210 },
- { "id": "corner", "bg": 3173, "fg": [ 3212, 3214, 3213, 3211 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3222, 3224, 3223, 3221 ] },
- { "id": "edge", "bg": 3173, "fg": [ 3216, 3215 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3218, 3220, 3219, 3217 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3225 }
+ { "id": "center", "bg": 3273, "fg": 3310 },
+ { "id": "corner", "bg": 3273, "fg": [ 3312, 3314, 3313, 3311 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 3322, 3324, 3323, 3321 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 3316, 3315 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 3318, 3320, 3319, 3317 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 3325 }
]
},
{
"id": "t_grass_dead_season_autumn",
"multitile": true,
- "fg": 3209,
- "bg": 3168,
+ "fg": 3309,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": 3194 },
- { "id": "corner", "bg": 3168, "fg": [ 3196, 3198, 3197, 3195 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3206, 3208, 3207, 3205 ] },
- { "id": "edge", "bg": 3168, "fg": [ 3200, 3199 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3202, 3204, 3203, 3201 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3209 }
+ { "id": "center", "bg": 3268, "fg": 3294 },
+ { "id": "corner", "bg": 3268, "fg": [ 3296, 3298, 3297, 3295 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 3306, 3308, 3307, 3305 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 3300, 3299 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 3302, 3304, 3303, 3301 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 3309 }
]
},
{
"id": "t_grass_dead_season_winter",
"multitile": true,
- "fg": 2645,
- "bg": 2627,
+ "fg": 2745,
+ "bg": 2727,
"additional_tiles": [
{
"id": "center",
- "bg": 2627,
+ "bg": 2727,
"fg": [
- { "weight": 1, "sprite": 2627 },
- { "weight": 1, "sprite": 2628 },
- { "weight": 1, "sprite": 2629 },
- { "weight": 1, "sprite": 2630 }
+ { "weight": 1, "sprite": 2727 },
+ { "weight": 1, "sprite": 2728 },
+ { "weight": 1, "sprite": 2729 },
+ { "weight": 1, "sprite": 2730 }
]
},
- { "id": "corner", "bg": 2627, "fg": [ 2632, 2634, 2633, 2631 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 2642, 2644, 2643, 2641 ] },
- { "id": "edge", "bg": 2627, "fg": [ 2636, 2635 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 2638, 2640, 2639, 2637 ] },
- { "bg": 2627, "id": "unconnected", "fg": 2645 }
+ { "id": "corner", "bg": 2727, "fg": [ 2732, 2734, 2733, 2731 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 2742, 2744, 2743, 2741 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 2736, 2735 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 2738, 2740, 2739, 2737 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 2745 }
]
},
{
"id": "t_grate",
"multitile": true,
- "fg": 3241,
+ "fg": 3341,
"additional_tiles": [
- { "id": "center", "fg": 3226 },
- { "id": "corner", "fg": [ 3228, 3230, 3229, 3227 ] },
- { "id": "t_connection", "fg": [ 3238, 3240, 3239, 3237 ] },
- { "id": "edge", "fg": [ 3232, 3231 ] },
- { "id": "end_piece", "fg": [ 3234, 3236, 3235, 3233 ] },
- { "id": "unconnected", "fg": [ 3241, 3241 ] }
+ { "id": "center", "fg": 3326 },
+ { "id": "corner", "fg": [ 3328, 3330, 3329, 3327 ] },
+ { "id": "t_connection", "fg": [ 3338, 3340, 3339, 3337 ] },
+ { "id": "edge", "fg": [ 3332, 3331 ] },
+ { "id": "end_piece", "fg": [ 3334, 3336, 3335, 3333 ] },
+ { "id": "unconnected", "fg": [ 3341, 3341 ] }
]
},
{
"id": [ "t_guardrail", "t_guardrail_bg_dp", "t_guardrail_hw_air" ],
"multitile": true,
- "fg": 3248,
- "bg": 3689,
+ "fg": 3348,
+ "bg": 3792,
"additional_tiles": [
- { "id": "edge", "bg": 3689, "fg": [ 3243, 3242 ] },
- { "id": "end_piece", "bg": 3689, "fg": [ 3245, 3247, 3246, 3244 ] },
- { "bg": 3689, "id": "unconnected", "fg": 3248 }
+ { "id": "edge", "bg": 3792, "fg": [ 3343, 3342 ] },
+ { "id": "end_piece", "bg": 3792, "fg": [ 3345, 3347, 3346, 3344 ] },
+ { "bg": 3792, "id": "unconnected", "fg": 3348 }
]
},
- { "id": "t_ladder_down", "fg": 3249 },
{
"id": "t_lava",
- "fg": 3265,
- "bg": 3497,
+ "fg": 3365,
+ "bg": 3600,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3250, "bg": 3497 },
- { "id": "corner", "fg": [ 3252, 3254, 3253, 3251 ], "bg": 3497 },
- { "id": "t_connection", "fg": [ 3262, 3264, 3263, 3261 ], "bg": 3497 },
- { "id": "edge", "fg": [ 3256, 3255 ], "bg": 3497 },
- { "id": "end_piece", "fg": [ 3258, 3260, 3259, 3257 ], "bg": 3497 },
- { "id": "unconnected", "fg": [ 3265, 3265 ], "bg": 3497 }
+ { "id": "center", "fg": 3350, "bg": 3600 },
+ { "id": "corner", "fg": [ 3352, 3354, 3353, 3351 ], "bg": 3600 },
+ { "id": "t_connection", "fg": [ 3362, 3364, 3363, 3361 ], "bg": 3600 },
+ { "id": "edge", "fg": [ 3356, 3355 ], "bg": 3600 },
+ { "id": "end_piece", "fg": [ 3358, 3360, 3359, 3357 ], "bg": 3600 },
+ { "id": "unconnected", "fg": [ 3365, 3365 ], "bg": 3600 }
]
},
{
"id": [ "t_linoleum_gray", "t_linoleum_gray_no_roof" ],
"multitile": true,
- "fg": 3281,
+ "fg": 3381,
"additional_tiles": [
- { "id": "center", "fg": 3266 },
- { "id": "corner", "fg": [ 3268, 3270, 3269, 3267 ] },
- { "id": "t_connection", "fg": [ 3278, 3280, 3279, 3277 ] },
- { "id": "edge", "fg": [ 3272, 3271 ] },
- { "id": "end_piece", "fg": [ 3274, 3276, 3275, 3273 ] },
- { "id": "unconnected", "fg": 3281 }
+ { "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 }
]
},
{
"id": [ "t_linoleum_white", "t_linoleum_white_no_roof" ],
"multitile": true,
- "fg": 3297,
+ "fg": 3397,
"additional_tiles": [
- { "id": "center", "fg": 3282 },
- { "id": "corner", "fg": [ 3284, 3286, 3285, 3283 ] },
- { "id": "t_connection", "fg": [ 3294, 3296, 3295, 3293 ] },
- { "id": "edge", "fg": [ 3288, 3287 ] },
- { "id": "end_piece", "fg": [ 3290, 3292, 3291, 3289 ] },
- { "id": "unconnected", "fg": 3297 }
+ { "id": "center", "fg": 3382 },
+ { "id": "corner", "fg": [ 3384, 3386, 3385, 3383 ] },
+ { "id": "t_connection", "fg": [ 3394, 3396, 3395, 3393 ] },
+ { "id": "edge", "fg": [ 3388, 3387 ] },
+ { "id": "end_piece", "fg": [ 3390, 3392, 3391, 3389 ] },
+ { "id": "unconnected", "fg": 3397 }
]
},
+ { "id": "t_manhole", "fg": 3398, "bg": 3468 },
+ { "id": "t_manhole_cover", "fg": 3399, "bg": 3468 },
{
"id": "t_metal_floor",
"multitile": true,
- "fg": 3313,
+ "fg": 3415,
"additional_tiles": [
- { "id": "center", "fg": 3298 },
- { "id": "corner", "fg": [ 3300, 3302, 3301, 3299 ] },
- { "id": "t_connection", "fg": [ 3310, 3312, 3311, 3309 ] },
- { "id": "edge", "fg": [ 3304, 3303 ] },
- { "id": "end_piece", "fg": [ 3306, 3308, 3307, 3305 ] },
- { "id": "unconnected", "fg": 3313 }
+ { "id": "center", "fg": 3400 },
+ { "id": "corner", "fg": [ 3402, 3404, 3403, 3401 ] },
+ { "id": "t_connection", "fg": [ 3412, 3414, 3413, 3411 ] },
+ { "id": "edge", "fg": [ 3406, 3405 ] },
+ { "id": "end_piece", "fg": [ 3408, 3410, 3409, 3407 ] },
+ { "id": "unconnected", "fg": 3415 }
]
},
{
"id": "t_moss",
"multitile": true,
- "fg": 3330,
- "bg": 3164,
+ "fg": 3432,
+ "bg": 3264,
"additional_tiles": [
- { "id": "center", "bg": 3164, "fg": [ { "weight": 1, "sprite": 3314 }, { "weight": 1, "sprite": 3315 } ] },
- { "id": "corner", "bg": 3164, "fg": [ 3317, 3319, 3318, 3316 ] },
- { "id": "t_connection", "bg": 3164, "fg": [ 3327, 3329, 3328, 3326 ] },
- { "id": "edge", "bg": 3164, "fg": [ 3321, 3320 ] },
- { "id": "end_piece", "bg": 3164, "fg": [ 3323, 3325, 3324, 3322 ] },
- { "bg": 3164, "id": "unconnected", "fg": 3330 }
+ { "id": "center", "bg": 3264, "fg": [ { "weight": 1, "sprite": 3416 }, { "weight": 1, "sprite": 3417 } ] },
+ { "id": "corner", "bg": 3264, "fg": [ 3419, 3421, 3420, 3418 ] },
+ { "id": "t_connection", "bg": 3264, "fg": [ 3429, 3431, 3430, 3428 ] },
+ { "id": "edge", "bg": 3264, "fg": [ 3423, 3422 ] },
+ { "id": "end_piece", "bg": 3264, "fg": [ 3425, 3427, 3426, 3424 ] },
+ { "bg": 3264, "id": "unconnected", "fg": 3432 }
]
},
{
"id": "t_moss_season_summer",
"multitile": true,
- "fg": 3364,
- "bg": 3174,
+ "fg": 3466,
+ "bg": 3274,
"additional_tiles": [
- { "id": "center", "bg": 3174, "fg": [ { "weight": 1, "sprite": 3348 }, { "weight": 1, "sprite": 3349 } ] },
- { "id": "corner", "bg": 3174, "fg": [ 3351, 3353, 3352, 3350 ] },
- { "id": "t_connection", "bg": 3174, "fg": [ 3361, 3363, 3362, 3360 ] },
- { "id": "edge", "bg": 3174, "fg": [ 3355, 3354 ] },
- { "id": "end_piece", "bg": 3174, "fg": [ 3357, 3359, 3358, 3356 ] },
- { "bg": 3174, "id": "unconnected", "fg": 3364 }
+ { "id": "center", "bg": 3274, "fg": [ { "weight": 1, "sprite": 3450 }, { "weight": 1, "sprite": 3451 } ] },
+ { "id": "corner", "bg": 3274, "fg": [ 3453, 3455, 3454, 3452 ] },
+ { "id": "t_connection", "bg": 3274, "fg": [ 3463, 3465, 3464, 3462 ] },
+ { "id": "edge", "bg": 3274, "fg": [ 3457, 3456 ] },
+ { "id": "end_piece", "bg": 3274, "fg": [ 3459, 3461, 3460, 3458 ] },
+ { "bg": 3274, "id": "unconnected", "fg": 3466 }
]
},
{
"id": "t_moss_season_autumn",
"multitile": true,
- "fg": 3347,
- "bg": 3169,
+ "fg": 3449,
+ "bg": 3269,
"additional_tiles": [
- { "id": "center", "bg": 3169, "fg": [ { "weight": 1, "sprite": 3331 }, { "weight": 1, "sprite": 3332 } ] },
- { "id": "corner", "bg": 3169, "fg": [ 3334, 3336, 3335, 3333 ] },
- { "id": "t_connection", "bg": 3169, "fg": [ 3344, 3346, 3345, 3343 ] },
- { "id": "edge", "bg": 3169, "fg": [ 3338, 3337 ] },
- { "id": "end_piece", "bg": 3169, "fg": [ 3340, 3342, 3341, 3339 ] },
- { "bg": 3169, "id": "unconnected", "fg": 3347 }
+ { "id": "center", "bg": 3269, "fg": [ { "weight": 1, "sprite": 3433 }, { "weight": 1, "sprite": 3434 } ] },
+ { "id": "corner", "bg": 3269, "fg": [ 3436, 3438, 3437, 3435 ] },
+ { "id": "t_connection", "bg": 3269, "fg": [ 3446, 3448, 3447, 3445 ] },
+ { "id": "edge", "bg": 3269, "fg": [ 3440, 3439 ] },
+ { "id": "end_piece", "bg": 3269, "fg": [ 3442, 3444, 3443, 3441 ] },
+ { "bg": 3269, "id": "unconnected", "fg": 3449 }
]
},
{
"id": "t_moss_season_winter",
"multitile": true,
- "fg": 2645,
- "bg": 2627,
+ "fg": 2745,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": [ { "weight": 1, "sprite": 2627 }, { "weight": 1, "sprite": 2628 } ] },
- { "id": "corner", "bg": 2627, "fg": [ 2632, 2634, 2633, 2631 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 2642, 2644, 2643, 2641 ] },
- { "id": "edge", "bg": 2627, "fg": [ 2636, 2635 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 2638, 2640, 2639, 2637 ] },
- { "bg": 2627, "id": "unconnected", "fg": 2645 }
+ { "id": "center", "bg": 2727, "fg": [ { "weight": 1, "sprite": 2727 }, { "weight": 1, "sprite": 2728 } ] },
+ { "id": "corner", "bg": 2727, "fg": [ 2732, 2734, 2733, 2731 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 2742, 2744, 2743, 2741 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 2736, 2735 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 2738, 2740, 2739, 2737 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 2745 }
]
},
{
"id": "t_pavement",
"multitile": true,
- "fg": 3365,
+ "fg": 3468,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 3365 },
- { "weight": 1, "sprite": 3366 },
- { "weight": 1, "sprite": 3367 },
- { "weight": 1, "sprite": 3368 }
+ { "weight": 1, "sprite": 3468 },
+ { "weight": 1, "sprite": 3469 },
+ { "weight": 1, "sprite": 3470 },
+ { "weight": 1, "sprite": 3471 }
]
},
- { "id": "corner", "bg": 3163, "fg": [ 3377, 3380, 3379, 3376 ] },
- { "id": "t_connection", "fg": [ 3375, 3383, 3378, 3369 ] },
- { "id": "edge", "fg": [ 3382, 3374 ] },
- { "id": "end_piece", "fg": [ 3371, 3373, 3372, 3370 ] },
- { "id": "unconnected", "fg": 3381 }
+ { "id": "corner", "bg": 3263, "fg": [ 3480, 3483, 3482, 3479 ] },
+ { "id": "t_connection", "fg": [ 3478, 3486, 3481, 3472 ] },
+ { "id": "edge", "fg": [ 3485, 3477 ] },
+ { "id": "end_piece", "fg": [ 3474, 3476, 3475, 3473 ] },
+ { "id": "unconnected", "fg": 3484 }
]
},
{
"id": "t_pavement_season_summer",
"multitile": true,
- "fg": 3365,
+ "fg": 3468,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 3365 },
- { "weight": 1, "sprite": 3366 },
- { "weight": 1, "sprite": 3367 },
- { "weight": 1, "sprite": 3368 }
+ { "weight": 1, "sprite": 3468 },
+ { "weight": 1, "sprite": 3469 },
+ { "weight": 1, "sprite": 3470 },
+ { "weight": 1, "sprite": 3471 }
]
},
- { "id": "corner", "bg": 3173, "fg": [ 3377, 3380, 3379, 3376 ] },
- { "id": "t_connection", "fg": [ 3375, 3383, 3378, 3369 ] },
- { "id": "edge", "fg": [ 3382, 3374 ] },
- { "id": "end_piece", "fg": [ 3371, 3373, 3372, 3370 ] },
- { "id": "unconnected", "fg": 3381 }
+ { "id": "corner", "bg": 3273, "fg": [ 3480, 3483, 3482, 3479 ] },
+ { "id": "t_connection", "fg": [ 3478, 3486, 3481, 3472 ] },
+ { "id": "edge", "fg": [ 3485, 3477 ] },
+ { "id": "end_piece", "fg": [ 3474, 3476, 3475, 3473 ] },
+ { "id": "unconnected", "fg": 3484 }
]
},
{
"id": "t_pavement_season_autumn",
"multitile": true,
- "fg": 3365,
+ "fg": 3468,
"additional_tiles": [
{
"id": "center",
"fg": [
- { "weight": 1, "sprite": 3365 },
- { "weight": 1, "sprite": 3366 },
- { "weight": 1, "sprite": 3367 },
- { "weight": 1, "sprite": 3368 }
+ { "weight": 1, "sprite": 3468 },
+ { "weight": 1, "sprite": 3469 },
+ { "weight": 1, "sprite": 3470 },
+ { "weight": 1, "sprite": 3471 }
]
},
- { "id": "corner", "bg": 3168, "fg": [ 3377, 3380, 3379, 3376 ] },
- { "id": "t_connection", "fg": [ 3375, 3383, 3378, 3369 ] },
- { "id": "edge", "fg": [ 3382, 3374 ] },
- { "id": "end_piece", "fg": [ 3371, 3373, 3372, 3370 ] },
- { "id": "unconnected", "fg": 3381 }
+ { "id": "corner", "bg": 3268, "fg": [ 3480, 3483, 3482, 3479 ] },
+ { "id": "t_connection", "fg": [ 3478, 3486, 3481, 3472 ] },
+ { "id": "edge", "fg": [ 3485, 3477 ] },
+ { "id": "end_piece", "fg": [ 3474, 3476, 3475, 3473 ] },
+ { "id": "unconnected", "fg": 3484 }
]
},
- { "id": "t_pavement_season_winter", "fg": 2626 },
- { "id": "t_pavement_y", "fg": 3384 },
- { "id": "t_pavement_y_season_winter", "fg": 2626 },
- { "id": "t_pit", "fg": 3385, "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ] },
+ { "id": "t_pavement_season_winter", "fg": 2726 },
+ { "id": "t_pavement_y", "fg": 3487 },
+ { "id": "t_pavement_y_season_winter", "fg": 2726 },
+ { "id": "t_pit", "fg": 3488, "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ] },
{
"id": "t_pit_season_summer",
- "fg": 3385,
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "fg": 3488,
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
},
{
"id": "t_pit_season_autumn",
- "fg": 3385,
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "fg": 3488,
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
},
- { "id": "t_pit_season_winter", "fg": 3385, "bg": 2627 },
+ { "id": "t_pit_season_winter", "fg": 3488, "bg": 2727 },
{
"id": "t_pit_shallow",
- "fg": 3401,
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ],
+ "fg": 3504,
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3386, "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ] },
+ { "id": "center", "fg": 3489, "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ] },
{
"id": "corner",
- "fg": [ 3388, 3390, 3389, 3387 ],
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ]
+ "fg": [ 3491, 3493, 3492, 3490 ],
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ]
},
{
"id": "t_connection",
- "fg": [ 3398, 3400, 3399, 3397 ],
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ]
+ "fg": [ 3501, 3503, 3502, 3500 ],
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ]
},
{
"id": "edge",
- "fg": [ 3392, 3391 ],
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ]
+ "fg": [ 3495, 3494 ],
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ]
},
{
"id": "end_piece",
- "fg": [ 3394, 3396, 3395, 3393 ],
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ]
+ "fg": [ 3497, 3499, 3498, 3496 ],
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ]
},
{
"id": "unconnected",
- "fg": [ 3401, 3401 ],
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ]
+ "fg": [ 3504, 3504 ],
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ]
}
]
},
{
"id": "t_pit_shallow_season_summer",
- "fg": 3401,
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ],
+ "fg": 3504,
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3386, "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ] },
+ { "id": "center", "fg": 3489, "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ] },
{
"id": "corner",
- "fg": [ 3388, 3390, 3389, 3387 ],
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "fg": [ 3491, 3493, 3492, 3490 ],
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
},
{
"id": "t_connection",
- "fg": [ 3398, 3400, 3399, 3397 ],
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "fg": [ 3501, 3503, 3502, 3500 ],
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
},
{
"id": "edge",
- "fg": [ 3392, 3391 ],
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "fg": [ 3495, 3494 ],
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
},
{
"id": "end_piece",
- "fg": [ 3394, 3396, 3395, 3393 ],
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "fg": [ 3497, 3499, 3498, 3496 ],
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
},
{
"id": "unconnected",
- "fg": [ 3401, 3401 ],
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "fg": [ 3504, 3504 ],
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
}
]
},
{
"id": "t_pit_shallow_season_autumn",
- "fg": 3401,
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ],
+ "fg": 3504,
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3386, "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ] },
+ { "id": "center", "fg": 3489, "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ] },
{
"id": "corner",
- "fg": [ 3388, 3390, 3389, 3387 ],
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "fg": [ 3491, 3493, 3492, 3490 ],
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
},
{
"id": "t_connection",
- "fg": [ 3398, 3400, 3399, 3397 ],
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "fg": [ 3501, 3503, 3502, 3500 ],
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
},
{
"id": "edge",
- "fg": [ 3392, 3391 ],
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "fg": [ 3495, 3494 ],
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
},
{
"id": "end_piece",
- "fg": [ 3394, 3396, 3395, 3393 ],
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "fg": [ 3497, 3499, 3498, 3496 ],
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
},
{
"id": "unconnected",
- "fg": [ 3401, 3401 ],
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "fg": [ 3504, 3504 ],
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
}
]
},
{
"id": "t_pit_shallow_season_winter",
- "fg": 3401,
- "bg": [ { "weight": 100, "sprite": 2627 }, { "weight": 100, "sprite": 2628 } ],
+ "fg": 3504,
+ "bg": [ { "weight": 100, "sprite": 2727 }, { "weight": 100, "sprite": 2728 } ],
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3386, "bg": [ { "weight": 100, "sprite": 2627 }, { "weight": 100, "sprite": 2628 } ] },
+ { "id": "center", "fg": 3489, "bg": [ { "weight": 100, "sprite": 2727 }, { "weight": 100, "sprite": 2728 } ] },
{
"id": "corner",
- "fg": [ 3388, 3390, 3389, 3387 ],
- "bg": [ { "weight": 100, "sprite": 2627 }, { "weight": 100, "sprite": 2628 } ]
+ "fg": [ 3491, 3493, 3492, 3490 ],
+ "bg": [ { "weight": 100, "sprite": 2727 }, { "weight": 100, "sprite": 2728 } ]
},
{
"id": "t_connection",
- "fg": [ 3398, 3400, 3399, 3397 ],
- "bg": [ { "weight": 100, "sprite": 2627 }, { "weight": 100, "sprite": 2628 } ]
+ "fg": [ 3501, 3503, 3502, 3500 ],
+ "bg": [ { "weight": 100, "sprite": 2727 }, { "weight": 100, "sprite": 2728 } ]
},
{
"id": "edge",
- "fg": [ 3392, 3391 ],
- "bg": [ { "weight": 100, "sprite": 2627 }, { "weight": 100, "sprite": 2628 } ]
+ "fg": [ 3495, 3494 ],
+ "bg": [ { "weight": 100, "sprite": 2727 }, { "weight": 100, "sprite": 2728 } ]
},
{
"id": "end_piece",
- "fg": [ 3394, 3396, 3395, 3393 ],
- "bg": [ { "weight": 100, "sprite": 2627 }, { "weight": 100, "sprite": 2628 } ]
+ "fg": [ 3497, 3499, 3498, 3496 ],
+ "bg": [ { "weight": 100, "sprite": 2727 }, { "weight": 100, "sprite": 2728 } ]
},
{
"id": "unconnected",
- "fg": [ 3401, 3401 ],
- "bg": [ { "weight": 100, "sprite": 2627 }, { "weight": 100, "sprite": 2628 } ]
+ "fg": [ 3504, 3504 ],
+ "bg": [ { "weight": 100, "sprite": 2727 }, { "weight": 100, "sprite": 2728 } ]
}
]
},
{
"id": "t_privacy_fence",
"multitile": true,
- "fg": 3417,
- "bg": 3163,
+ "fg": 3520,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": 3402 },
- { "id": "corner", "bg": 3163, "fg": [ 3404, 3406, 3405, 3403 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3414, 3416, 3415, 3413 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3408, 3407 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3410, 3412, 3411, 3409 ] },
- { "bg": 3163, "id": "unconnected", "fg": [ 3417, 3417 ] }
+ { "id": "center", "bg": 3263, "fg": 3505 },
+ { "id": "corner", "bg": 3263, "fg": [ 3507, 3509, 3508, 3506 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3517, 3519, 3518, 3516 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3511, 3510 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3513, 3515, 3514, 3512 ] },
+ { "bg": 3263, "id": "unconnected", "fg": [ 3520, 3520 ] }
]
},
{
"id": "t_privacy_fence_season_winter",
"multitile": true,
- "fg": 3417,
- "bg": 2627,
+ "fg": 3520,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": 3402 },
- { "id": "corner", "bg": 2627, "fg": [ 3404, 3406, 3405, 3403 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3414, 3416, 3415, 3413 ] },
- { "id": "edge", "bg": 2627, "fg": [ 3408, 3407 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3410, 3412, 3411, 3409 ] },
- { "bg": 2627, "id": "unconnected", "fg": [ 3417, 3417 ] }
+ { "id": "center", "bg": 2727, "fg": 3505 },
+ { "id": "corner", "bg": 2727, "fg": [ 3507, 3509, 3508, 3506 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 3517, 3519, 3518, 3516 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 3511, 3510 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 3513, 3515, 3514, 3512 ] },
+ { "bg": 2727, "id": "unconnected", "fg": [ 3520, 3520 ] }
]
},
{
"id": "t_railing",
"multitile": true,
- "fg": 3433,
- "bg": 2830,
+ "fg": 3536,
+ "bg": 2930,
"additional_tiles": [
- { "id": "center", "bg": 2830, "fg": 3418 },
- { "id": "corner", "bg": 2830, "fg": [ 3420, 3422, 3421, 3419 ] },
- { "id": "t_connection", "bg": 2830, "fg": [ 3430, 3432, 3431, 3429 ] },
- { "id": "edge", "bg": 2830, "fg": [ 3424, 3423 ] },
- { "id": "end_piece", "bg": 2830, "fg": [ 3426, 3428, 3427, 3425 ] },
- { "bg": 2830, "id": "unconnected", "fg": [ 3433, 3433 ] }
+ { "id": "center", "bg": 2930, "fg": 3521 },
+ { "id": "corner", "bg": 2930, "fg": [ 3523, 3525, 3524, 3522 ] },
+ { "id": "t_connection", "bg": 2930, "fg": [ 3533, 3535, 3534, 3532 ] },
+ { "id": "edge", "bg": 2930, "fg": [ 3527, 3526 ] },
+ { "id": "end_piece", "bg": 2930, "fg": [ 3529, 3531, 3530, 3528 ] },
+ { "bg": 2930, "id": "unconnected", "fg": [ 3536, 3536 ] }
]
},
{
"id": "t_railroad_rubble",
"multitile": true,
- "fg": 3450,
- "bg": 3163,
+ "fg": 3553,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": [ { "weight": 1, "sprite": 3434 }, { "weight": 1, "sprite": 3435 } ] },
- { "id": "corner", "bg": 3163, "fg": [ 3437, 3439, 3438, 3436 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3447, 3449, 3448, 3446 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3441, 3440 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3443, 3445, 3444, 3442 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3450 }
+ { "id": "center", "bg": 3263, "fg": [ { "weight": 1, "sprite": 3537 }, { "weight": 1, "sprite": 3538 } ] },
+ { "id": "corner", "bg": 3263, "fg": [ 3540, 3542, 3541, 3539 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3550, 3552, 3551, 3549 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3544, 3543 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3546, 3548, 3547, 3545 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3553 }
]
},
{
"id": "t_railroad_rubble_season_summer",
"multitile": true,
- "fg": 3450,
- "bg": 3173,
+ "fg": 3553,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": [ { "weight": 1, "sprite": 3434 }, { "weight": 1, "sprite": 3435 } ] },
- { "id": "corner", "bg": 3173, "fg": [ 3437, 3439, 3438, 3436 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3447, 3449, 3448, 3446 ] },
- { "id": "edge", "bg": 3173, "fg": [ 3441, 3440 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3443, 3445, 3444, 3442 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3450 }
+ { "id": "center", "bg": 3273, "fg": [ { "weight": 1, "sprite": 3537 }, { "weight": 1, "sprite": 3538 } ] },
+ { "id": "corner", "bg": 3273, "fg": [ 3540, 3542, 3541, 3539 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 3550, 3552, 3551, 3549 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 3544, 3543 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 3546, 3548, 3547, 3545 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 3553 }
]
},
{
"id": "t_railroad_rubble_season_autumn",
"multitile": true,
- "fg": 3450,
- "bg": 3168,
+ "fg": 3553,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": [ { "weight": 1, "sprite": 3434 }, { "weight": 1, "sprite": 3435 } ] },
- { "id": "corner", "bg": 3168, "fg": [ 3437, 3439, 3438, 3436 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3447, 3449, 3448, 3446 ] },
- { "id": "edge", "bg": 3168, "fg": [ 3441, 3440 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3443, 3445, 3444, 3442 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3450 }
+ { "id": "center", "bg": 3268, "fg": [ { "weight": 1, "sprite": 3537 }, { "weight": 1, "sprite": 3538 } ] },
+ { "id": "corner", "bg": 3268, "fg": [ 3540, 3542, 3541, 3539 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 3550, 3552, 3551, 3549 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 3544, 3543 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 3546, 3548, 3547, 3545 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 3553 }
]
},
{
"id": "t_railroad_rubble_season_winter",
"multitile": true,
- "fg": 3450,
- "bg": 2627,
+ "fg": 3553,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": [ { "weight": 1, "sprite": 3434 }, { "weight": 1, "sprite": 3435 } ] },
- { "id": "corner", "bg": 2627, "fg": [ 3437, 3439, 3438, 3436 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3447, 3449, 3448, 3446 ] },
- { "id": "edge", "bg": 2627, "fg": [ 3441, 3440 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3443, 3445, 3444, 3442 ] },
- { "bg": 2627, "id": "unconnected", "fg": 3450 }
+ { "id": "center", "bg": 2727, "fg": [ { "weight": 1, "sprite": 3537 }, { "weight": 1, "sprite": 3538 } ] },
+ { "id": "corner", "bg": 2727, "fg": [ 3540, 3542, 3541, 3539 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 3550, 3552, 3551, 3549 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 3544, 3543 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 3546, 3548, 3547, 3545 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 3553 }
]
},
{
"id": "t_railroad_track_small",
- "fg": 3457,
- "bg": 3434,
+ "fg": 3560,
+ "bg": 3537,
"multitile": true,
"additional_tiles": [
- { "id": "center", "bg": 3434, "fg": 3451 },
- { "id": "corner", "bg": 3434, "fg": [ 3453, 3455, 3454, 3452 ] },
- { "id": "t_connection", "bg": 3434, "fg": [ 3459, 3461, 3460, 3458 ] },
- { "id": "edge", "bg": 3434, "fg": [ 3457, 3456 ] },
- { "id": "end_piece", "bg": 3434, "fg": [ 3457, 3456, 3457, 3456 ] },
- { "id": "unconnected", "bg": 3434, "fg": [ 3457, 3456 ] }
+ { "id": "center", "bg": 3537, "fg": 3554 },
+ { "id": "corner", "bg": 3537, "fg": [ 3556, 3558, 3557, 3555 ] },
+ { "id": "t_connection", "bg": 3537, "fg": [ 3562, 3564, 3563, 3561 ] },
+ { "id": "edge", "bg": 3537, "fg": [ 3560, 3559 ] },
+ { "id": "end_piece", "bg": 3537, "fg": [ 3560, 3559, 3560, 3559 ] },
+ { "id": "unconnected", "bg": 3537, "fg": [ 3560, 3559 ] }
]
},
- { "id": "t_rdoor_c", "fg": 3463 },
- { "id": "t_rdoor_o", "fg": 3464 },
- { "id": "t_rdoor_b", "fg": 3462 },
+ { "id": "t_rdoor_c", "fg": 3566 },
+ { "id": "t_rdoor_o", "fg": 3567 },
+ { "id": "t_rdoor_b", "fg": 3565 },
{
"id": "t_reinforced_glass",
"multitile": true,
- "fg": 3480,
+ "fg": 3583,
"additional_tiles": [
- { "id": "center", "fg": 3465 },
- { "id": "corner", "fg": [ 3467, 3469, 3468, 3466 ] },
- { "id": "t_connection", "fg": [ 3477, 3479, 3478, 3476 ] },
- { "id": "edge", "fg": [ 3471, 3470 ] },
- { "id": "end_piece", "fg": [ 3473, 3475, 3474, 3472 ] },
- { "id": "unconnected", "fg": 3480 }
+ { "id": "center", "fg": 3568 },
+ { "id": "corner", "fg": [ 3570, 3572, 3571, 3569 ] },
+ { "id": "t_connection", "fg": [ 3580, 3582, 3581, 3579 ] },
+ { "id": "edge", "fg": [ 3574, 3573 ] },
+ { "id": "end_piece", "fg": [ 3576, 3578, 3577, 3575 ] },
+ { "id": "unconnected", "fg": 3583 }
]
},
{
"id": "t_rock",
"multitile": true,
- "fg": 3496,
+ "fg": 3599,
"additional_tiles": [
- { "id": "center", "fg": 3481 },
- { "id": "corner", "fg": [ 3483, 3485, 3484, 3482 ] },
- { "id": "t_connection", "fg": [ 3493, 3495, 3494, 3492 ] },
- { "id": "edge", "fg": [ 3487, 3486 ] },
- { "id": "end_piece", "fg": [ 3489, 3491, 3490, 3488 ] },
- { "id": "unconnected", "fg": 3496 }
+ { "id": "center", "fg": 3584 },
+ { "id": "corner", "fg": [ 3586, 3588, 3587, 3585 ] },
+ { "id": "t_connection", "fg": [ 3596, 3598, 3597, 3595 ] },
+ { "id": "edge", "fg": [ 3590, 3589 ] },
+ { "id": "end_piece", "fg": [ 3592, 3594, 3593, 3591 ] },
+ { "id": "unconnected", "fg": 3599 }
]
},
{
"id": "t_rock_floor",
"multitile": true,
- "fg": 3514,
+ "fg": 3617,
"additional_tiles": [
{
"id": "center",
- "fg": [ { "weight": 1, "sprite": 3497 }, { "weight": 1, "sprite": 3498 }, { "weight": 1, "sprite": 3499 } ]
+ "fg": [ { "weight": 1, "sprite": 3600 }, { "weight": 1, "sprite": 3601 }, { "weight": 1, "sprite": 3602 } ]
},
- { "id": "corner", "fg": [ 3501, 3503, 3502, 3500 ] },
- { "id": "t_connection", "fg": [ 3511, 3513, 3512, 3510 ] },
- { "id": "edge", "fg": [ 3505, 3504 ] },
- { "id": "end_piece", "fg": [ 3507, 3509, 3508, 3506 ] },
- { "id": "unconnected", "fg": 3514 }
+ { "id": "corner", "fg": [ 3604, 3606, 3605, 3603 ] },
+ { "id": "t_connection", "fg": [ 3614, 3616, 3615, 3613 ] },
+ { "id": "edge", "fg": [ 3608, 3607 ] },
+ { "id": "end_piece", "fg": [ 3610, 3612, 3611, 3609 ] },
+ { "id": "unconnected", "fg": 3617 }
]
},
{
"id": "t_rock_wall",
"multitile": true,
- "fg": 3530,
+ "fg": 3633,
"additional_tiles": [
- { "id": "center", "fg": 3515 },
- { "id": "corner", "fg": [ 3517, 3519, 3518, 3516 ] },
- { "id": "t_connection", "fg": [ 3527, 3529, 3528, 3526 ] },
- { "id": "edge", "fg": [ 3521, 3520 ] },
- { "id": "end_piece", "fg": [ 3523, 3525, 3524, 3522 ] },
- { "id": "unconnected", "fg": 3530 }
+ { "id": "center", "fg": 3618 },
+ { "id": "corner", "fg": [ 3620, 3622, 3621, 3619 ] },
+ { "id": "t_connection", "fg": [ 3630, 3632, 3631, 3629 ] },
+ { "id": "edge", "fg": [ 3624, 3623 ] },
+ { "id": "end_piece", "fg": [ 3626, 3628, 3627, 3625 ] },
+ { "id": "unconnected", "fg": 3633 }
]
},
{
"id": "t_sand",
"multitile": true,
- "fg": 3549,
- "bg": 3163,
+ "fg": 3652,
+ "bg": 3263,
"additional_tiles": [
{
"id": "center",
- "bg": 3163,
+ "bg": 3263,
"fg": [
- { "weight": 1, "sprite": 3531 },
- { "weight": 1, "sprite": 3532 },
- { "weight": 1, "sprite": 3533 },
- { "weight": 1, "sprite": 3534 }
+ { "weight": 1, "sprite": 3634 },
+ { "weight": 1, "sprite": 3635 },
+ { "weight": 1, "sprite": 3636 },
+ { "weight": 1, "sprite": 3637 }
]
},
- { "id": "corner", "bg": 3163, "fg": [ 3536, 3538, 3537, 3535 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3546, 3548, 3547, 3545 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3540, 3539 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3542, 3544, 3543, 3541 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3549 }
+ { "id": "corner", "bg": 3263, "fg": [ 3639, 3641, 3640, 3638 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 3649, 3651, 3650, 3648 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3643, 3642 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3645, 3647, 3646, 3644 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3652 }
]
},
{
"id": "t_sand_season_summer",
"multitile": true,
- "fg": 3549,
- "bg": 3173,
+ "fg": 3652,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": [ { "weight": 1, "sprite": 3531 }, { "weight": 1, "sprite": 3532 } ] },
- { "id": "corner", "bg": 3173, "fg": [ 3536, 3538, 3537, 3535 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3546, 3548, 3547, 3545 ] },
- { "id": "edge", "bg": 3173, "fg": [ 3540, 3539 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3542, 3544, 3543, 3541 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3549 }
+ { "id": "center", "bg": 3273, "fg": [ { "weight": 1, "sprite": 3634 }, { "weight": 1, "sprite": 3635 } ] },
+ { "id": "corner", "bg": 3273, "fg": [ 3639, 3641, 3640, 3638 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 3649, 3651, 3650, 3648 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 3643, 3642 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 3645, 3647, 3646, 3644 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 3652 }
]
},
{
"id": "t_sand_season_autumn",
"multitile": true,
- "fg": 3549,
- "bg": 3168,
+ "fg": 3652,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": [ { "weight": 1, "sprite": 3531 }, { "weight": 1, "sprite": 3532 } ] },
- { "id": "corner", "bg": 3168, "fg": [ 3536, 3538, 3537, 3535 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3546, 3548, 3547, 3545 ] },
- { "id": "edge", "bg": 3168, "fg": [ 3540, 3539 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3542, 3544, 3543, 3541 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3549 }
+ { "id": "center", "bg": 3268, "fg": [ { "weight": 1, "sprite": 3634 }, { "weight": 1, "sprite": 3635 } ] },
+ { "id": "corner", "bg": 3268, "fg": [ 3639, 3641, 3640, 3638 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 3649, 3651, 3650, 3648 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 3643, 3642 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 3645, 3647, 3646, 3644 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 3652 }
]
},
{
"id": "t_sand_season_winter",
"multitile": true,
- "fg": 3549,
- "bg": 2627,
+ "fg": 3652,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": [ { "weight": 1, "sprite": 3531 }, { "weight": 1, "sprite": 3532 } ] },
- { "id": "corner", "bg": 2627, "fg": [ 3536, 3538, 3537, 3535 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3546, 3548, 3547, 3545 ] },
- { "id": "edge", "bg": 2627, "fg": [ 3540, 3539 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3542, 3544, 3543, 3541 ] },
- { "bg": 2627, "id": "unconnected", "fg": 3549 }
+ { "id": "center", "bg": 2727, "fg": [ { "weight": 1, "sprite": 3634 }, { "weight": 1, "sprite": 3635 } ] },
+ { "id": "corner", "bg": 2727, "fg": [ 3639, 3641, 3640, 3638 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 3649, 3651, 3650, 3648 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 3643, 3642 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 3645, 3647, 3646, 3644 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 3652 }
]
},
{
"id": [ "t_sandmound_season_spring", "t_sandmound_season_summer", "t_sandmound_season_autumn" ],
- "fg": 3550
+ "fg": 3653
},
- { "id": "t_sandmound_season_winter", "fg": 6769 },
+ { "id": "t_sandmound_season_winter", "fg": 7360 },
{
"id": "t_scrap_floor",
"multitile": true,
- "fg": 3566,
+ "fg": 3669,
"additional_tiles": [
- { "id": "center", "fg": 3551 },
- { "id": "corner", "fg": [ 3553, 3555, 3554, 3552 ] },
- { "id": "t_connection", "fg": [ 3563, 3565, 3564, 3562 ] },
- { "id": "edge", "fg": [ 3557, 3556 ] },
- { "id": "end_piece", "fg": [ 3559, 3561, 3560, 3558 ] },
- { "id": "unconnected", "fg": 3566 }
+ { "id": "center", "fg": 3654 },
+ { "id": "corner", "fg": [ 3656, 3658, 3657, 3655 ] },
+ { "id": "t_connection", "fg": [ 3666, 3668, 3667, 3665 ] },
+ { "id": "edge", "fg": [ 3660, 3659 ] },
+ { "id": "end_piece", "fg": [ 3662, 3664, 3663, 3661 ] },
+ { "id": "unconnected", "fg": 3669 }
]
},
{
"id": "t_scrap_wall",
"multitile": true,
- "fg": 3582,
+ "fg": 3685,
"additional_tiles": [
- { "id": "center", "fg": 3567 },
- { "id": "corner", "fg": [ 3569, 3571, 3570, 3568 ] },
- { "id": "t_connection", "fg": [ 3579, 3581, 3580, 3578 ] },
- { "id": "edge", "fg": [ 3573, 3572 ] },
- { "id": "end_piece", "fg": [ 3575, 3577, 3576, 3574 ] },
- { "id": "unconnected", "fg": 3582 }
+ { "id": "center", "fg": 3670 },
+ { "id": "corner", "fg": [ 3672, 3674, 3673, 3671 ] },
+ { "id": "t_connection", "fg": [ 3682, 3684, 3683, 3681 ] },
+ { "id": "edge", "fg": [ 3676, 3675 ] },
+ { "id": "end_piece", "fg": [ 3678, 3680, 3679, 3677 ] },
+ { "id": "unconnected", "fg": 3685 }
]
},
{
"id": "t_screened_porch_wall",
"multitile": true,
- "fg": 3598,
- "bg": 3060,
+ "fg": 3701,
+ "bg": 3160,
"additional_tiles": [
- { "id": "center", "bg": 3060, "fg": 3583 },
- { "id": "corner", "bg": 3060, "fg": [ 3585, 3587, 3586, 3584 ] },
- { "id": "t_connection", "bg": 3060, "fg": [ 3595, 3597, 3596, 3594 ] },
- { "id": "edge", "bg": 3060, "fg": [ 3589, 3588 ] },
- { "id": "end_piece", "bg": 3060, "fg": [ 3591, 3593, 3592, 3590 ] },
- { "bg": 3060, "id": "unconnected", "fg": [ 3598, 3598 ] }
+ { "id": "center", "bg": 3160, "fg": 3686 },
+ { "id": "corner", "bg": 3160, "fg": [ 3688, 3690, 3689, 3687 ] },
+ { "id": "t_connection", "bg": 3160, "fg": [ 3698, 3700, 3699, 3697 ] },
+ { "id": "edge", "bg": 3160, "fg": [ 3692, 3691 ] },
+ { "id": "end_piece", "bg": 3160, "fg": [ 3694, 3696, 3695, 3693 ] },
+ { "bg": 3160, "id": "unconnected", "fg": [ 3701, 3701 ] }
]
},
{
"id": "t_sewage",
"multitile": true,
- "fg": 3614,
+ "fg": 3717,
"additional_tiles": [
- { "id": "center", "fg": 3599 },
- { "id": "corner", "fg": [ 3601, 3603, 3602, 3600 ] },
- { "id": "t_connection", "fg": [ 3611, 3613, 3612, 3610 ] },
- { "id": "edge", "fg": [ 3605, 3604 ] },
- { "id": "end_piece", "fg": [ 3607, 3609, 3608, 3606 ] },
- { "id": "unconnected", "fg": [ 3614, 3614 ] }
+ { "id": "center", "fg": 3702 },
+ { "id": "corner", "fg": [ 3704, 3706, 3705, 3703 ] },
+ { "id": "t_connection", "fg": [ 3714, 3716, 3715, 3713 ] },
+ { "id": "edge", "fg": [ 3708, 3707 ] },
+ { "id": "end_piece", "fg": [ 3710, 3712, 3711, 3709 ] },
+ { "id": "unconnected", "fg": [ 3717, 3717 ] }
]
},
{
"id": "t_sewage_pipe",
"multitile": true,
- "fg": 3630,
+ "fg": 3733,
"additional_tiles": [
- { "id": "center", "fg": 3615 },
- { "id": "corner", "fg": [ 3617, 3619, 3618, 3616 ] },
- { "id": "t_connection", "fg": [ 3627, 3629, 3628, 3626 ] },
- { "id": "edge", "fg": [ 3621, 3620 ] },
- { "id": "end_piece", "fg": [ 3623, 3625, 3624, 3622 ] },
- { "id": "unconnected", "fg": [ 3630, 3630 ] }
+ { "id": "center", "fg": 3718 },
+ { "id": "corner", "fg": [ 3720, 3722, 3721, 3719 ] },
+ { "id": "t_connection", "fg": [ 3730, 3732, 3731, 3729 ] },
+ { "id": "edge", "fg": [ 3724, 3723 ] },
+ { "id": "end_piece", "fg": [ 3726, 3728, 3727, 3725 ] },
+ { "id": "unconnected", "fg": [ 3733, 3733 ] }
]
},
{
"id": "t_shingle_flat_roof",
"multitile": true,
- "fg": 3646,
- "additional_tiles": [
- { "id": "center", "fg": 3631 },
- { "id": "corner", "fg": [ 3633, 3635, 3634, 3632 ] },
- { "id": "t_connection", "fg": [ 3643, 3645, 3644, 3642 ] },
- { "id": "edge", "fg": [ 3637, 3636 ] },
- { "id": "end_piece", "fg": [ 3639, 3641, 3640, 3638 ] },
- { "id": "unconnected", "fg": 3646 }
- ]
- },
- { "id": "t_shrub", "fg": 3647, "bg": 3163 },
- { "id": "t_shrub_season_summer", "fg": 3647, "bg": 3173 },
- { "id": "t_shrub_season_autumn", "fg": 3647, "bg": 3168 },
- { "id": "t_shrub_season_winter", "fg": 3649, "bg": 2625 },
- { "id": "t_shrub_blackberry", "fg": 3650, "bg": 3163 },
- { "id": "t_shrub_blackberry_harvested", "fg": 3651, "bg": 3173 },
- { "id": "t_shrub_blackberry_season_summer", "fg": 3652, "bg": 3173 },
- { "id": "t_shrub_blackberry_season_autumn", "fg": 3650, "bg": 3168 },
- { "id": "t_shrub_blackberry_season_winter", "fg": 3653, "bg": 2625 },
- { "id": "t_shrub_blueberry", "fg": 3654, "bg": 3163 },
- { "id": "t_shrub_blueberry_harvested", "fg": 3655, "bg": 3173 },
- { "id": "t_shrub_blueberry_season_summer", "fg": 3656, "bg": 3173 },
- { "id": "t_shrub_blueberry_season_autumn", "fg": 3654, "bg": 3168 },
- { "id": "t_shrub_blueberry_season_winter", "fg": 3657, "bg": 2625 },
- { "id": "t_shrub_grape", "fg": 3658, "bg": 3163 },
- { "id": "t_shrub_grape_harvested", "fg": 3659, "bg": 3173 },
- { "id": "t_shrub_grape_season_summer", "fg": 3660, "bg": 3173 },
- { "id": "t_shrub_grape_season_autumn", "fg": 3658, "bg": 3168 },
- { "id": "t_shrub_grape_season_winter", "fg": 3661, "bg": 2625 },
- { "id": "t_shrub_huckleberry", "fg": 3662, "bg": 3163 },
- { "id": "t_shrub_huckleberry_harvested", "fg": 3663, "bg": 3173 },
- { "id": "t_shrub_huckleberry_season_summer", "fg": 3664, "bg": 3173 },
- { "id": "t_shrub_huckleberry_season_autumn", "fg": 3662, "bg": 3168 },
- { "id": "t_shrub_huckleberry_season_winter", "fg": 3665, "bg": 2625 },
- { "id": "t_shrub_hydrangea", "fg": 3667, "bg": 3163 },
- { "id": "t_shrub_hydrangea_harvested", "fg": 3666, "bg": 3163 },
- { "id": "t_shrub_hydrangea_season_summer", "fg": 3668, "bg": 3173 },
- { "id": "t_shrub_hydrangea_season_autumn", "fg": 3667, "bg": 3168 },
- { "id": "t_shrub_hydrangea_season_winter", "fg": 3669, "bg": 2625 },
- { "id": "t_shrub_lilac", "fg": 3671, "bg": 3163 },
- { "id": "t_shrub_lilac_harvested", "fg": 3670, "bg": 3163 },
- { "id": "t_shrub_lilac_season_summer", "fg": 3672, "bg": 3173 },
- { "id": "t_shrub_lilac_season_autumn", "fg": 3670, "bg": 3168 },
- { "id": "t_shrub_lilac_season_winter", "fg": 3673, "bg": 2625 },
- { "id": "t_shrub_peanut", "fg": 3674, "bg": 3163 },
- { "id": "t_shrub_peanut_harvested", "fg": 3676, "bg": 3168 },
- { "id": "t_shrub_peanut_season_summer", "fg": 3674, "bg": 3173 },
- { "id": "t_shrub_peanut_season_autumn", "fg": 3675, "bg": 3168 },
- { "id": "t_shrub_peanut_season_winter", "fg": 3677, "bg": 2625 },
- { "id": "t_shrub_raspberry", "fg": 3678, "bg": 3163 },
- { "id": "t_shrub_raspberry_harvested", "fg": 3679, "bg": 3173 },
- { "id": "t_shrub_raspberry_season_summer", "fg": 3680, "bg": 3173 },
- { "id": "t_shrub_raspberry_season_autumn", "fg": 3678, "bg": 3168 },
- { "id": "t_shrub_raspberry_season_winter", "fg": 3681, "bg": 2625 },
- { "id": "t_shrub_rose", "fg": 3683, "bg": 3163 },
- { "id": "t_shrub_rose_season_summer", "fg": 3683, "bg": 3173 },
- { "id": "t_shrub_rose_harvested", "fg": 3683, "bg": 3168 },
- { "id": "t_shrub_rose_season_autumn", "fg": 3682, "bg": 3168 },
- { "id": "t_shrub_rose_season_winter", "fg": 3684, "bg": 2625 },
- { "id": "t_shrub_strawberry", "fg": 3685, "bg": 3163 },
- { "id": "t_shrub_strawberry_harvested", "fg": 3686, "bg": 3173 },
- { "id": "t_shrub_strawberry_season_summer", "fg": 3687, "bg": 3173 },
- { "id": "t_shrub_strawberry_season_autumn", "fg": 3685, "bg": 3168 },
- { "id": "t_shrub_strawberry_season_winter", "fg": 3688, "bg": 2625 },
+ "fg": 3749,
+ "additional_tiles": [
+ { "id": "center", "fg": 3734 },
+ { "id": "corner", "fg": [ 3736, 3738, 3737, 3735 ] },
+ { "id": "t_connection", "fg": [ 3746, 3748, 3747, 3745 ] },
+ { "id": "edge", "fg": [ 3740, 3739 ] },
+ { "id": "end_piece", "fg": [ 3742, 3744, 3743, 3741 ] },
+ { "id": "unconnected", "fg": 3749 }
+ ]
+ },
+ { "id": "t_shrub", "fg": 3750, "bg": 3263 },
+ { "id": "t_shrub_season_summer", "fg": 3750, "bg": 3273 },
+ { "id": "t_shrub_season_autumn", "fg": 3750, "bg": 3268 },
+ { "id": "t_shrub_season_winter", "fg": 3752, "bg": 2725 },
+ { "id": "t_shrub_blackberry", "fg": 3753, "bg": 3263 },
+ { "id": "t_shrub_blackberry_harvested", "fg": 3754, "bg": 3273 },
+ { "id": "t_shrub_blackberry_season_summer", "fg": 3755, "bg": 3273 },
+ { "id": "t_shrub_blackberry_season_autumn", "fg": 3753, "bg": 3268 },
+ { "id": "t_shrub_blackberry_season_winter", "fg": 3756, "bg": 2725 },
+ { "id": "t_shrub_blueberry", "fg": 3757, "bg": 3263 },
+ { "id": "t_shrub_blueberry_harvested", "fg": 3758, "bg": 3273 },
+ { "id": "t_shrub_blueberry_season_summer", "fg": 3759, "bg": 3273 },
+ { "id": "t_shrub_blueberry_season_autumn", "fg": 3757, "bg": 3268 },
+ { "id": "t_shrub_blueberry_season_winter", "fg": 3760, "bg": 2725 },
+ { "id": "t_shrub_grape", "fg": 3761, "bg": 3263 },
+ { "id": "t_shrub_grape_harvested", "fg": 3762, "bg": 3273 },
+ { "id": "t_shrub_grape_season_summer", "fg": 3763, "bg": 3273 },
+ { "id": "t_shrub_grape_season_autumn", "fg": 3761, "bg": 3268 },
+ { "id": "t_shrub_grape_season_winter", "fg": 3764, "bg": 2725 },
+ { "id": "t_shrub_huckleberry", "fg": 3765, "bg": 3263 },
+ { "id": "t_shrub_huckleberry_harvested", "fg": 3766, "bg": 3273 },
+ { "id": "t_shrub_huckleberry_season_summer", "fg": 3767, "bg": 3273 },
+ { "id": "t_shrub_huckleberry_season_autumn", "fg": 3765, "bg": 3268 },
+ { "id": "t_shrub_huckleberry_season_winter", "fg": 3768, "bg": 2725 },
+ { "id": "t_shrub_hydrangea", "fg": 3770, "bg": 3263 },
+ { "id": "t_shrub_hydrangea_harvested", "fg": 3769, "bg": 3263 },
+ { "id": "t_shrub_hydrangea_season_summer", "fg": 3771, "bg": 3273 },
+ { "id": "t_shrub_hydrangea_season_autumn", "fg": 3770, "bg": 3268 },
+ { "id": "t_shrub_hydrangea_season_winter", "fg": 3772, "bg": 2725 },
+ { "id": "t_shrub_lilac", "fg": 3774, "bg": 3263 },
+ { "id": "t_shrub_lilac_harvested", "fg": 3773, "bg": 3263 },
+ { "id": "t_shrub_lilac_season_summer", "fg": 3775, "bg": 3273 },
+ { "id": "t_shrub_lilac_season_autumn", "fg": 3773, "bg": 3268 },
+ { "id": "t_shrub_lilac_season_winter", "fg": 3776, "bg": 2725 },
+ { "id": "t_shrub_peanut", "fg": 3777, "bg": 3263 },
+ { "id": "t_shrub_peanut_harvested", "fg": 3779, "bg": 3268 },
+ { "id": "t_shrub_peanut_season_summer", "fg": 3777, "bg": 3273 },
+ { "id": "t_shrub_peanut_season_autumn", "fg": 3778, "bg": 3268 },
+ { "id": "t_shrub_peanut_season_winter", "fg": 3780, "bg": 2725 },
+ { "id": "t_shrub_raspberry", "fg": 3781, "bg": 3263 },
+ { "id": "t_shrub_raspberry_harvested", "fg": 3782, "bg": 3273 },
+ { "id": "t_shrub_raspberry_season_summer", "fg": 3783, "bg": 3273 },
+ { "id": "t_shrub_raspberry_season_autumn", "fg": 3781, "bg": 3268 },
+ { "id": "t_shrub_raspberry_season_winter", "fg": 3784, "bg": 2725 },
+ { "id": "t_shrub_rose", "fg": 3786, "bg": 3263 },
+ { "id": "t_shrub_rose_season_summer", "fg": 3786, "bg": 3273 },
+ { "id": "t_shrub_rose_harvested", "fg": 3786, "bg": 3268 },
+ { "id": "t_shrub_rose_season_autumn", "fg": 3785, "bg": 3268 },
+ { "id": "t_shrub_rose_season_winter", "fg": 3787, "bg": 2725 },
+ { "id": "t_shrub_strawberry", "fg": 3788, "bg": 3263 },
+ { "id": "t_shrub_strawberry_harvested", "fg": 3789, "bg": 3273 },
+ { "id": "t_shrub_strawberry_season_summer", "fg": 3790, "bg": 3273 },
+ { "id": "t_shrub_strawberry_season_autumn", "fg": 3788, "bg": 3268 },
+ { "id": "t_shrub_strawberry_season_winter", "fg": 3791, "bg": 2725 },
{
"id": [ "t_sidewalk", "t_sidewalk_bg_dp" ],
"multitile": true,
- "fg": 3704,
+ "fg": 3807,
"additional_tiles": [
- { "id": "center", "fg": 3689 },
- { "id": "corner", "fg": [ 3691, 3693, 3692, 3690 ] },
- { "id": "t_connection", "fg": [ 3701, 3703, 3702, 3700 ] },
- { "id": "edge", "fg": [ 3695, 3694 ] },
- { "id": "end_piece", "fg": [ 3697, 3699, 3698, 3696 ] },
- { "id": "unconnected", "fg": 3704 }
+ { "id": "center", "fg": 3792 },
+ { "id": "corner", "fg": [ 3794, 3796, 3795, 3793 ] },
+ { "id": "t_connection", "fg": [ 3804, 3806, 3805, 3803 ] },
+ { "id": "edge", "fg": [ 3798, 3797 ] },
+ { "id": "end_piece", "fg": [ 3800, 3802, 3801, 3799 ] },
+ { "id": "unconnected", "fg": 3807 }
]
},
- { "id": "t_sidewalk_season_winter", "fg": 2627 },
- { "id": "t_slime", "fg": 3705 },
+ { "id": "t_sidewalk_season_winter", "fg": 2727 },
+ { "id": "t_slime", "fg": 3808 },
{
"id": "t_soil",
- "fg": 3721,
+ "fg": 3824,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3706 },
- { "id": "corner", "fg": [ 3708, 3710, 3709, 3707 ] },
- { "id": "t_connection", "fg": [ 3718, 3720, 3719, 3717 ] },
- { "id": "edge", "fg": [ 3712, 3711 ] },
- { "id": "end_piece", "fg": [ 3714, 3716, 3715, 3713 ] },
- { "id": "unconnected", "fg": [ 3721, 3721 ] }
+ { "id": "center", "fg": 3809 },
+ { "id": "corner", "fg": [ 3811, 3813, 3812, 3810 ] },
+ { "id": "t_connection", "fg": [ 3821, 3823, 3822, 3820 ] },
+ { "id": "edge", "fg": [ 3815, 3814 ] },
+ { "id": "end_piece", "fg": [ 3817, 3819, 3818, 3816 ] },
+ { "id": "unconnected", "fg": [ 3824, 3824 ] }
]
},
- { "id": "t_splitrail_fencegate_c", "fg": 3722, "bg": 3163 },
- { "id": "t_splitrail_fencegate_o", "fg": 3723, "bg": 3163 },
- { "id": "t_splitrail_fencegate_c_season_summer", "fg": 3722, "bg": 3173 },
- { "id": "t_splitrail_fencegate_o_season_summer", "fg": 3723, "bg": 3173 },
- { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 3722, "bg": 3168 },
- { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 3723, "bg": 3168 },
- { "id": "t_splitrail_fencegate_c_season_winter", "fg": 3722, "bg": 2627 },
- { "id": "t_splitrail_fencegate_o_season_winter", "fg": 3723, "bg": 2627 },
+ { "id": "t_splitrail_fencegate_c", "fg": 3825, "bg": 3263 },
+ { "id": "t_splitrail_fencegate_o", "fg": 3826, "bg": 3263 },
+ { "id": "t_splitrail_fencegate_c_season_summer", "fg": 3825, "bg": 3273 },
+ { "id": "t_splitrail_fencegate_o_season_summer", "fg": 3826, "bg": 3273 },
+ { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 3825, "bg": 3268 },
+ { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 3826, "bg": 3268 },
+ { "id": "t_splitrail_fencegate_c_season_winter", "fg": 3825, "bg": 2727 },
+ { "id": "t_splitrail_fencegate_o_season_winter", "fg": 3826, "bg": 2727 },
{
"id": "t_strconc_floor",
"multitile": true,
- "fg": 3739,
+ "fg": 3842,
"additional_tiles": [
- { "id": "center", "fg": 3724 },
- { "id": "corner", "fg": [ 3726, 3728, 3727, 3725 ] },
- { "id": "t_connection", "fg": [ 3736, 3738, 3737, 3735 ] },
- { "id": "edge", "fg": [ 3730, 3729 ] },
- { "id": "end_piece", "fg": [ 3732, 3734, 3733, 3731 ] },
- { "id": "unconnected", "fg": 3739 }
+ { "id": "center", "fg": 3827 },
+ { "id": "corner", "fg": [ 3829, 3831, 3830, 3828 ] },
+ { "id": "t_connection", "fg": [ 3839, 3841, 3840, 3838 ] },
+ { "id": "edge", "fg": [ 3833, 3832 ] },
+ { "id": "end_piece", "fg": [ 3835, 3837, 3836, 3834 ] },
+ { "id": "unconnected", "fg": 3842 }
]
},
- { "id": "t_stump", "fg": 3740, "bg": 3163 },
- { "id": "t_stump_season_summer", "fg": 3740, "bg": 3173 },
- { "id": "t_stump_season_autumn", "fg": 3740, "bg": 3168 },
- { "id": "t_stump_season_winter", "fg": 3740, "bg": 2625 },
- { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 3741 }, { "weight": 100, "sprite": 3742 } ] },
+ { "id": "t_stump", "fg": 3843, "bg": 3263 },
+ { "id": "t_stump_season_summer", "fg": 3843, "bg": 3273 },
+ { "id": "t_stump_season_autumn", "fg": 3843, "bg": 3268 },
+ { "id": "t_stump_season_winter", "fg": 3843, "bg": 2725 },
+ { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 3844 }, { "weight": 100, "sprite": 3845 } ] },
{
"id": "t_thconc_floor",
"multitile": true,
- "fg": 3758,
+ "fg": 3861,
"additional_tiles": [
- { "id": "center", "fg": 3743 },
- { "id": "corner", "fg": [ 3745, 3747, 3746, 3744 ] },
- { "id": "t_connection", "fg": [ 3755, 3757, 3756, 3754 ] },
- { "id": "edge", "fg": [ 3749, 3748 ] },
- { "id": "end_piece", "fg": [ 3751, 3753, 3752, 3750 ] },
- { "id": "unconnected", "fg": 3758 }
+ { "id": "center", "fg": 3846 },
+ { "id": "corner", "fg": [ 3848, 3850, 3849, 3847 ] },
+ { "id": "t_connection", "fg": [ 3858, 3860, 3859, 3857 ] },
+ { "id": "edge", "fg": [ 3852, 3851 ] },
+ { "id": "end_piece", "fg": [ 3854, 3856, 3855, 3853 ] },
+ { "id": "unconnected", "fg": 3861 }
]
},
- { "id": "t_underbrush", "fg": 3760, "bg": 3163 },
- { "id": "t_underbrush_harvested_spring", "fg": 3761, "bg": 3163 },
- { "id": "t_underbrush_season_summer", "fg": 3760, "bg": 3173 },
- { "id": "t_underbrush_harvested_summer", "fg": 3761, "bg": 3173 },
- { "id": "t_underbrush_season_autumn", "fg": 3760, "bg": 3168 },
- { "id": "t_underbrush_harvested_autumn", "fg": 3761, "bg": 3168 },
- { "id": "t_underbrush_harvested_winter", "fg": 3761, "bg": 2625 },
- { "id": "t_underbrush_season_winter", "fg": 3760, "bg": 2625 },
+ { "id": "t_underbrush", "fg": 3863, "bg": 3263 },
+ { "id": "t_underbrush_harvested_spring", "fg": 3864, "bg": 3263 },
+ { "id": "t_underbrush_season_summer", "fg": 3863, "bg": 3273 },
+ { "id": "t_underbrush_harvested_summer", "fg": 3864, "bg": 3273 },
+ { "id": "t_underbrush_season_autumn", "fg": 3863, "bg": 3268 },
+ { "id": "t_underbrush_harvested_autumn", "fg": 3864, "bg": 3268 },
+ { "id": "t_underbrush_harvested_winter", "fg": 3864, "bg": 2725 },
+ { "id": "t_underbrush_season_winter", "fg": 3863, "bg": 2725 },
{
"id": "t_wall",
"multitile": true,
- "fg": 3777,
+ "fg": 3880,
"additional_tiles": [
- { "id": "center", "fg": 3762 },
- { "id": "corner", "fg": [ 3764, 3766, 3765, 3763 ] },
- { "id": "t_connection", "fg": [ 3774, 3776, 3775, 3773 ] },
- { "id": "edge", "fg": [ 3768, 3767 ] },
- { "id": "end_piece", "fg": [ 3770, 3772, 3771, 3769 ] },
- { "id": "unconnected", "fg": 3777 }
+ { "id": "center", "fg": 3865 },
+ { "id": "corner", "fg": [ 3867, 3869, 3868, 3866 ] },
+ { "id": "t_connection", "fg": [ 3877, 3879, 3878, 3876 ] },
+ { "id": "edge", "fg": [ 3871, 3870 ] },
+ { "id": "end_piece", "fg": [ 3873, 3875, 3874, 3872 ] },
+ { "id": "unconnected", "fg": 3880 }
]
},
{
"id": "t_wall_b",
"multitile": true,
- "fg": 3793,
+ "fg": 3896,
"additional_tiles": [
- { "id": "center", "fg": 3778 },
- { "id": "corner", "fg": [ 3780, 3782, 3781, 3779 ] },
- { "id": "t_connection", "fg": [ 3790, 3792, 3791, 3789 ] },
- { "id": "edge", "fg": [ 3784, 3783 ] },
- { "id": "end_piece", "fg": [ 3786, 3788, 3787, 3785 ] },
- { "id": "unconnected", "fg": 3793 }
+ { "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 }
]
},
{
"id": "t_wall_g",
"multitile": true,
- "fg": 3809,
+ "fg": 3912,
"additional_tiles": [
- { "id": "center", "fg": 3794 },
- { "id": "corner", "fg": [ 3796, 3798, 3797, 3795 ] },
- { "id": "t_connection", "fg": [ 3806, 3808, 3807, 3805 ] },
- { "id": "edge", "fg": [ 3800, 3799 ] },
- { "id": "end_piece", "fg": [ 3802, 3804, 3803, 3801 ] },
- { "id": "unconnected", "fg": 3809 }
+ { "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 }
]
},
{
"id": [ "t_wall_glass", "t_wall_glass_alarm" ],
"multitile": true,
- "fg": 3825,
+ "fg": 3928,
"additional_tiles": [
- { "id": "center", "fg": 3810 },
- { "id": "corner", "fg": [ 3812, 3814, 3813, 3811 ] },
- { "id": "t_connection", "fg": [ 3822, 3824, 3823, 3821 ] },
- { "id": "edge", "fg": [ 3816, 3815 ] },
- { "id": "end_piece", "fg": [ 3818, 3820, 3819, 3817 ] },
- { "id": "unconnected", "fg": 3825 }
+ { "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_wall_log",
"multitile": true,
- "fg": 3841,
- "bg": 3163,
+ "fg": 3944,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "fg": 3826 },
- { "id": "corner", "fg": [ 3828, 3830, 3829, 3827 ] },
- { "id": "t_connection", "fg": [ 3838, 3840, 3839, 3837 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3832, 3831 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3834, 3836, 3835, 3833 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3841 }
+ { "id": "center", "fg": 3929 },
+ { "id": "corner", "fg": [ 3931, 3933, 3932, 3930 ] },
+ { "id": "t_connection", "fg": [ 3941, 3943, 3942, 3940 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 3935, 3934 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 3937, 3939, 3938, 3936 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 3944 }
]
},
{
"id": "t_wall_metal",
- "fg": 3857,
+ "fg": 3960,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3842 },
- { "id": "corner", "fg": [ 3844, 3846, 3845, 3843 ] },
- { "id": "t_connection", "fg": [ 3854, 3856, 3855, 3853 ] },
- { "id": "edge", "fg": [ 3848, 3847 ] },
- { "id": "end_piece", "fg": [ 3850, 3852, 3851, 3849 ] },
- { "id": "unconnected", "fg": [ 3857, 3857 ] }
+ { "id": "center", "fg": 3945 },
+ { "id": "corner", "fg": [ 3947, 3949, 3948, 3946 ] },
+ { "id": "t_connection", "fg": [ 3957, 3959, 3958, 3956 ] },
+ { "id": "edge", "fg": [ 3951, 3950 ] },
+ { "id": "end_piece", "fg": [ 3953, 3955, 3954, 3952 ] },
+ { "id": "unconnected", "fg": [ 3960, 3960 ] }
]
},
{
"id": "t_wall_metal_corrugated",
- "fg": 3873,
+ "fg": 3976,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3858 },
- { "id": "corner", "fg": [ 3860, 3862, 3861, 3859 ] },
- { "id": "t_connection", "fg": [ 3870, 3872, 3871, 3869 ] },
- { "id": "edge", "fg": [ 3864, 3863 ] },
- { "id": "end_piece", "fg": [ 3866, 3868, 3867, 3865 ] },
- { "id": "unconnected", "fg": [ 3873, 3873 ] }
+ { "id": "center", "fg": 3961 },
+ { "id": "corner", "fg": [ 3963, 3965, 3964, 3962 ] },
+ { "id": "t_connection", "fg": [ 3973, 3975, 3974, 3972 ] },
+ { "id": "edge", "fg": [ 3967, 3966 ] },
+ { "id": "end_piece", "fg": [ 3969, 3971, 3970, 3968 ] },
+ { "id": "unconnected", "fg": [ 3976, 3976 ] }
]
},
{
"id": "t_wall_p",
"multitile": true,
- "fg": 3889,
+ "fg": 3992,
"additional_tiles": [
- { "id": "center", "fg": 3874 },
- { "id": "corner", "fg": [ 3876, 3878, 3877, 3875 ] },
- { "id": "t_connection", "fg": [ 3886, 3888, 3887, 3885 ] },
- { "id": "edge", "fg": [ 3880, 3879 ] },
- { "id": "end_piece", "fg": [ 3882, 3884, 3883, 3881 ] },
- { "id": "unconnected", "fg": 3889 }
+ { "id": "center", "fg": 3977 },
+ { "id": "corner", "fg": [ 3979, 3981, 3980, 3978 ] },
+ { "id": "t_connection", "fg": [ 3989, 3991, 3990, 3988 ] },
+ { "id": "edge", "fg": [ 3983, 3982 ] },
+ { "id": "end_piece", "fg": [ 3985, 3987, 3986, 3984 ] },
+ { "id": "unconnected", "fg": 3992 }
]
},
{
"id": "t_wall_r",
"multitile": true,
- "fg": 3905,
+ "fg": 4008,
+ "additional_tiles": [
+ { "id": "center", "fg": 3993 },
+ { "id": "corner", "fg": [ 3995, 3997, 3996, 3994 ] },
+ { "id": "t_connection", "fg": [ 4005, 4007, 4006, 4004 ] },
+ { "id": "edge", "fg": [ 3999, 3998 ] },
+ { "id": "end_piece", "fg": [ 4001, 4003, 4002, 4000 ] },
+ { "id": "unconnected", "fg": 4008 }
+ ]
+ },
+ {
+ "id": "t_wall_rammed_earth",
+ "fg": 4024,
+ "multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3890 },
- { "id": "corner", "fg": [ 3892, 3894, 3893, 3891 ] },
- { "id": "t_connection", "fg": [ 3902, 3904, 3903, 3901 ] },
- { "id": "edge", "fg": [ 3896, 3895 ] },
- { "id": "end_piece", "fg": [ 3898, 3900, 3899, 3897 ] },
- { "id": "unconnected", "fg": 3905 }
+ { "id": "center", "fg": 4009 },
+ { "id": "corner", "fg": [ 4011, 4013, 4012, 4010 ] },
+ { "id": "t_connection", "fg": [ 4021, 4023, 4022, 4020 ] },
+ { "id": "edge", "fg": [ 4015, 4014 ] },
+ { "id": "end_piece", "fg": [ 4017, 4019, 4018, 4016 ] },
+ { "id": "unconnected", "fg": [ 4024, 4024 ] }
]
},
{
"id": "t_wall_resin",
"multitile": true,
- "fg": 3923,
+ "fg": 4042,
"additional_tiles": [
- { "id": "center", "fg": 3908 },
- { "id": "corner", "fg": [ 3910, 3912, 3911, 3909 ] },
- { "id": "t_connection", "fg": [ 3920, 3922, 3921, 3919 ] },
- { "id": "edge", "fg": [ 3914, 3913 ] },
- { "id": "end_piece", "fg": [ 3916, 3918, 3917, 3915 ] },
- { "id": "unconnected", "fg": 3923 }
+ { "id": "center", "fg": 4027 },
+ { "id": "corner", "fg": [ 4029, 4031, 4030, 4028 ] },
+ { "id": "t_connection", "fg": [ 4039, 4041, 4040, 4038 ] },
+ { "id": "edge", "fg": [ 4033, 4032 ] },
+ { "id": "end_piece", "fg": [ 4035, 4037, 4036, 4034 ] },
+ { "id": "unconnected", "fg": 4042 }
]
},
- { "id": "t_resin_hole_c", "fg": 3906 },
- { "id": "t_resin_hole_o", "fg": 3907 },
+ { "id": "t_resin_hole_c", "fg": 4025 },
+ { "id": "t_resin_hole_o", "fg": 4026 },
{
"id": "t_wall_w",
"multitile": true,
- "fg": 3940,
+ "fg": 4059,
"additional_tiles": [
- { "id": "center", "fg": 3925 },
- { "id": "corner", "fg": [ 3927, 3929, 3928, 3926 ] },
- { "id": "t_connection", "fg": [ 3937, 3939, 3938, 3936 ] },
- { "id": "edge", "fg": [ 3931, 3930 ] },
- { "id": "end_piece", "fg": [ 3933, 3935, 3934, 3932 ] },
- { "id": "unconnected", "fg": 3940 }
+ { "id": "center", "fg": 4044 },
+ { "id": "corner", "fg": [ 4046, 4048, 4047, 4045 ] },
+ { "id": "t_connection", "fg": [ 4056, 4058, 4057, 4055 ] },
+ { "id": "edge", "fg": [ 4050, 4049 ] },
+ { "id": "end_piece", "fg": [ 4052, 4054, 4053, 4051 ] },
+ { "id": "unconnected", "fg": 4059 }
]
},
{
"id": [ "t_wall_wood", "t_wall_wood_chipped", "t_wall_wood_broken" ],
"multitile": true,
- "fg": 3956,
+ "fg": 4075,
"additional_tiles": [
- { "id": "center", "fg": 3941 },
- { "id": "corner", "fg": [ 3943, 3945, 3944, 3942 ] },
- { "id": "t_connection", "fg": [ 3953, 3955, 3954, 3952 ] },
- { "id": "edge", "fg": [ 3947, 3946 ] },
- { "id": "end_piece", "fg": [ 3949, 3951, 3950, 3948 ] },
- { "id": "unconnected", "fg": 3956 }
+ { "id": "center", "fg": 4060 },
+ { "id": "corner", "fg": [ 4062, 4064, 4063, 4061 ] },
+ { "id": "t_connection", "fg": [ 4072, 4074, 4073, 4071 ] },
+ { "id": "edge", "fg": [ 4066, 4065 ] },
+ { "id": "end_piece", "fg": [ 4068, 4070, 4069, 4067 ] },
+ { "id": "unconnected", "fg": 4075 }
]
},
{
"id": "t_wall_y",
"multitile": true,
- "fg": 3972,
+ "fg": 4091,
"additional_tiles": [
- { "id": "center", "fg": 3957 },
- { "id": "corner", "fg": [ 3959, 3961, 3960, 3958 ] },
- { "id": "t_connection", "fg": [ 3969, 3971, 3970, 3968 ] },
- { "id": "edge", "fg": [ 3963, 3962 ] },
- { "id": "end_piece", "fg": [ 3965, 3967, 3966, 3964 ] },
- { "id": "unconnected", "fg": 3972 }
+ { "id": "center", "fg": 4076 },
+ { "id": "corner", "fg": [ 4078, 4080, 4079, 4077 ] },
+ { "id": "t_connection", "fg": [ 4088, 4090, 4089, 4087 ] },
+ { "id": "edge", "fg": [ 4082, 4081 ] },
+ { "id": "end_piece", "fg": [ 4084, 4086, 4085, 4083 ] },
+ { "id": "unconnected", "fg": 4091 }
]
},
{
"id": [ "t_water_dp", "t_swater_dp" ],
"multitile": true,
- "fg": 3991,
- "bg": 3163,
+ "fg": 4110,
+ "bg": 3263,
"additional_tiles": [
{
"id": "center",
- "bg": 3163,
+ "bg": 3263,
"fg": [
- { "weight": 1, "sprite": 3973 },
- { "weight": 1, "sprite": 3974 },
- { "weight": 1, "sprite": 3975 },
- { "weight": 1, "sprite": 3976 }
+ { "weight": 1, "sprite": 4092 },
+ { "weight": 1, "sprite": 4093 },
+ { "weight": 1, "sprite": 4094 },
+ { "weight": 1, "sprite": 4095 }
]
},
- { "id": "corner", "bg": 3163, "fg": [ 3978, 3980, 3979, 3977 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 3988, 3990, 3989, 3987 ] },
- { "id": "edge", "bg": 3163, "fg": [ 3982, 3981 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 3984, 3986, 3985, 3983 ] },
- { "bg": 3163, "id": "unconnected", "fg": 3991 }
+ { "id": "corner", "bg": 3263, "fg": [ 4097, 4099, 4098, 4096 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 4107, 4109, 4108, 4106 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 4101, 4100 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 4103, 4105, 4104, 4102 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 4110 }
]
},
{
"id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ],
"multitile": true,
- "fg": 3991,
- "bg": 3173,
+ "fg": 4110,
+ "bg": 3273,
"additional_tiles": [
{
"id": "center",
- "bg": 3173,
- "fg": [ { "weight": 1, "sprite": 3973 }, { "weight": 1, "sprite": 3974 }, { "weight": 1, "sprite": 3975 } ]
+ "bg": 3273,
+ "fg": [ { "weight": 1, "sprite": 4092 }, { "weight": 1, "sprite": 4093 }, { "weight": 1, "sprite": 4094 } ]
},
- { "id": "corner", "bg": 3173, "fg": [ 3978, 3980, 3979, 3977 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 3988, 3990, 3989, 3987 ] },
- { "id": "edge", "bg": 3173, "fg": [ 3982, 3981 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 3984, 3986, 3985, 3983 ] },
- { "bg": 3173, "id": "unconnected", "fg": 3991 }
+ { "id": "corner", "bg": 3273, "fg": [ 4097, 4099, 4098, 4096 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 4107, 4109, 4108, 4106 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 4101, 4100 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 4103, 4105, 4104, 4102 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 4110 }
]
},
{
"id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ],
"multitile": true,
- "fg": 3991,
- "bg": 3168,
+ "fg": 4110,
+ "bg": 3268,
"additional_tiles": [
{
"id": "center",
- "bg": 3168,
- "fg": [ { "weight": 1, "sprite": 3973 }, { "weight": 1, "sprite": 3974 }, { "weight": 1, "sprite": 3975 } ]
+ "bg": 3268,
+ "fg": [ { "weight": 1, "sprite": 4092 }, { "weight": 1, "sprite": 4093 }, { "weight": 1, "sprite": 4094 } ]
},
- { "id": "corner", "bg": 3168, "fg": [ 3978, 3980, 3979, 3977 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 3988, 3990, 3989, 3987 ] },
- { "id": "edge", "bg": 3168, "fg": [ 3982, 3981 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 3984, 3986, 3985, 3983 ] },
- { "bg": 3168, "id": "unconnected", "fg": 3991 }
+ { "id": "corner", "bg": 3268, "fg": [ 4097, 4099, 4098, 4096 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 4107, 4109, 4108, 4106 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 4101, 4100 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 4103, 4105, 4104, 4102 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 4110 }
]
},
{
"id": [ "t_water_dp_season_winter", "t_swater_dp_season_winter" ],
"multitile": true,
- "fg": 3991,
- "bg": 2627,
+ "fg": 4110,
+ "bg": 2727,
"additional_tiles": [
{
"id": "center",
- "bg": 2627,
- "fg": [ { "weight": 1, "sprite": 3973 }, { "weight": 1, "sprite": 3974 }, { "weight": 1, "sprite": 3975 } ]
+ "bg": 2727,
+ "fg": [ { "weight": 1, "sprite": 4092 }, { "weight": 1, "sprite": 4093 }, { "weight": 1, "sprite": 4094 } ]
},
- { "id": "corner", "bg": 2627, "fg": [ 3978, 3980, 3979, 3977 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 3988, 3990, 3989, 3987 ] },
- { "id": "edge", "bg": 2627, "fg": [ 3982, 3981 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 3984, 3986, 3985, 3983 ] },
- { "bg": 2627, "id": "unconnected", "fg": 3991 }
+ { "id": "corner", "bg": 2727, "fg": [ 4097, 4099, 4098, 4096 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 4107, 4109, 4108, 4106 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 4101, 4100 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 4103, 4105, 4104, 4102 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 4110 }
]
},
{
"id": "t_water_hot",
- "fg": 4007,
- "bg": 3163,
+ "fg": 4126,
+ "bg": 3263,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3992, "bg": 3163 },
- { "id": "corner", "fg": [ 3994, 3996, 3995, 3993 ], "bg": 3163 },
- { "id": "t_connection", "fg": [ 4004, 4006, 4005, 4003 ], "bg": 3163 },
- { "id": "edge", "fg": [ 3998, 3997 ], "bg": 3163 },
- { "id": "end_piece", "fg": [ 4000, 4002, 4001, 3999 ], "bg": 3163 },
- { "id": "unconnected", "fg": [ 4007, 4007 ], "bg": 3163 }
+ { "id": "center", "fg": 4111, "bg": 3263 },
+ { "id": "corner", "fg": [ 4113, 4115, 4114, 4112 ], "bg": 3263 },
+ { "id": "t_connection", "fg": [ 4123, 4125, 4124, 4122 ], "bg": 3263 },
+ { "id": "edge", "fg": [ 4117, 4116 ], "bg": 3263 },
+ { "id": "end_piece", "fg": [ 4119, 4121, 4120, 4118 ], "bg": 3263 },
+ { "id": "unconnected", "fg": [ 4126, 4126 ], "bg": 3263 }
]
},
{
"id": "t_water_hot_season_summer",
- "fg": 4007,
- "bg": 3173,
+ "fg": 4126,
+ "bg": 3273,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3992, "bg": 3173 },
- { "id": "corner", "fg": [ 3994, 3996, 3995, 3993 ], "bg": 3173 },
- { "id": "t_connection", "fg": [ 4004, 4006, 4005, 4003 ], "bg": 3173 },
- { "id": "edge", "fg": [ 3998, 3997 ], "bg": 3173 },
- { "id": "end_piece", "fg": [ 4000, 4002, 4001, 3999 ], "bg": 3173 },
- { "id": "unconnected", "fg": [ 4007, 4007 ], "bg": 3173 }
+ { "id": "center", "fg": 4111, "bg": 3273 },
+ { "id": "corner", "fg": [ 4113, 4115, 4114, 4112 ], "bg": 3273 },
+ { "id": "t_connection", "fg": [ 4123, 4125, 4124, 4122 ], "bg": 3273 },
+ { "id": "edge", "fg": [ 4117, 4116 ], "bg": 3273 },
+ { "id": "end_piece", "fg": [ 4119, 4121, 4120, 4118 ], "bg": 3273 },
+ { "id": "unconnected", "fg": [ 4126, 4126 ], "bg": 3273 }
]
},
{
"id": "t_water_hot_season_autumn",
- "fg": 4007,
- "bg": 3168,
+ "fg": 4126,
+ "bg": 3268,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3992, "bg": 3168 },
- { "id": "corner", "fg": [ 3994, 3996, 3995, 3993 ], "bg": 3168 },
- { "id": "t_connection", "fg": [ 4004, 4006, 4005, 4003 ], "bg": 3168 },
- { "id": "edge", "fg": [ 3998, 3997 ], "bg": 3168 },
- { "id": "end_piece", "fg": [ 4000, 4002, 4001, 3999 ], "bg": 3168 },
- { "id": "unconnected", "fg": [ 4007, 4007 ], "bg": 3168 }
+ { "id": "center", "fg": 4111, "bg": 3268 },
+ { "id": "corner", "fg": [ 4113, 4115, 4114, 4112 ], "bg": 3268 },
+ { "id": "t_connection", "fg": [ 4123, 4125, 4124, 4122 ], "bg": 3268 },
+ { "id": "edge", "fg": [ 4117, 4116 ], "bg": 3268 },
+ { "id": "end_piece", "fg": [ 4119, 4121, 4120, 4118 ], "bg": 3268 },
+ { "id": "unconnected", "fg": [ 4126, 4126 ], "bg": 3268 }
]
},
{
"id": "t_water_hot_season_winter",
- "fg": 4007,
- "bg": 2627,
+ "fg": 4126,
+ "bg": 2727,
"multitile": true,
"additional_tiles": [
- { "id": "center", "fg": 3992, "bg": 2627 },
- { "id": "corner", "fg": [ 3994, 3996, 3995, 3993 ], "bg": 2627 },
- { "id": "t_connection", "fg": [ 4004, 4006, 4005, 4003 ], "bg": 2627 },
- { "id": "edge", "fg": [ 3998, 3997 ], "bg": 2627 },
- { "id": "end_piece", "fg": [ 4000, 4002, 4001, 3999 ], "bg": 2627 },
- { "id": "unconnected", "fg": [ 4007, 4007 ], "bg": 2627 }
+ { "id": "center", "fg": 4111, "bg": 2727 },
+ { "id": "corner", "fg": [ 4113, 4115, 4114, 4112 ], "bg": 2727 },
+ { "id": "t_connection", "fg": [ 4123, 4125, 4124, 4122 ], "bg": 2727 },
+ { "id": "edge", "fg": [ 4117, 4116 ], "bg": 2727 },
+ { "id": "end_piece", "fg": [ 4119, 4121, 4120, 4118 ], "bg": 2727 },
+ { "id": "unconnected", "fg": [ 4126, 4126 ], "bg": 2727 }
]
},
{
"id": [ "t_water_moving_dp", "t_swater_moving_dp" ],
"multitile": true,
- "fg": 4024,
- "bg": 3163,
+ "fg": 4143,
+ "bg": 3263,
"additional_tiles": [
- { "id": "center", "bg": 3163, "fg": [ { "weight": 1, "sprite": 4008 }, { "weight": 1, "sprite": 4009 } ] },
- { "id": "corner", "bg": 3163, "fg": [ 4011, 4013, 4012, 4010 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 4021, 4023, 4022, 4020 ] },
- { "id": "edge", "bg": 3163, "fg": [ 4015, 4014 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 4017, 4019, 4018, 4016 ] },
- { "bg": 3163, "id": "unconnected", "fg": 4024 }
+ { "id": "center", "bg": 3263, "fg": [ { "weight": 1, "sprite": 4127 }, { "weight": 1, "sprite": 4128 } ] },
+ { "id": "corner", "bg": 3263, "fg": [ 4130, 4132, 4131, 4129 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 4140, 4142, 4141, 4139 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 4134, 4133 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 4136, 4138, 4137, 4135 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 4143 }
]
},
{
"id": [ "t_water_moving_dp_season_summer", "t_swater_moving_dp_season_summer" ],
"multitile": true,
- "fg": 4024,
- "bg": 3173,
+ "fg": 4143,
+ "bg": 3273,
"additional_tiles": [
- { "id": "center", "bg": 3173, "fg": [ { "weight": 1, "sprite": 4008 }, { "weight": 1, "sprite": 4009 } ] },
- { "id": "corner", "bg": 3173, "fg": [ 4011, 4013, 4012, 4010 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 4021, 4023, 4022, 4020 ] },
- { "id": "edge", "bg": 3173, "fg": [ 4015, 4014 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 4017, 4019, 4018, 4016 ] },
- { "bg": 3173, "id": "unconnected", "fg": 4024 }
+ { "id": "center", "bg": 3273, "fg": [ { "weight": 1, "sprite": 4127 }, { "weight": 1, "sprite": 4128 } ] },
+ { "id": "corner", "bg": 3273, "fg": [ 4130, 4132, 4131, 4129 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 4140, 4142, 4141, 4139 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 4134, 4133 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 4136, 4138, 4137, 4135 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 4143 }
]
},
{
"id": [ "t_water_moving_dp_season_autumn", "t_swater_moving_dp_season_autumn" ],
"multitile": true,
- "fg": 4024,
- "bg": 3168,
+ "fg": 4143,
+ "bg": 3268,
"additional_tiles": [
- { "id": "center", "bg": 3168, "fg": [ { "weight": 1, "sprite": 4008 }, { "weight": 1, "sprite": 4009 } ] },
- { "id": "corner", "bg": 3168, "fg": [ 4011, 4013, 4012, 4010 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 4021, 4023, 4022, 4020 ] },
- { "id": "edge", "bg": 3168, "fg": [ 4015, 4014 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 4017, 4019, 4018, 4016 ] },
- { "bg": 3168, "id": "unconnected", "fg": 4024 }
+ { "id": "center", "bg": 3268, "fg": [ { "weight": 1, "sprite": 4127 }, { "weight": 1, "sprite": 4128 } ] },
+ { "id": "corner", "bg": 3268, "fg": [ 4130, 4132, 4131, 4129 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 4140, 4142, 4141, 4139 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 4134, 4133 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 4136, 4138, 4137, 4135 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 4143 }
]
},
{
"id": [ "t_water_moving_dp_season_winter", "t_swater_moving_dp_season_winter" ],
"multitile": true,
- "fg": 4024,
- "bg": 2627,
+ "fg": 4143,
+ "bg": 2727,
"additional_tiles": [
- { "id": "center", "bg": 2627, "fg": [ { "weight": 1, "sprite": 4008 }, { "weight": 1, "sprite": 4009 } ] },
- { "id": "corner", "bg": 2627, "fg": [ 4011, 4013, 4012, 4010 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 4021, 4023, 4022, 4020 ] },
- { "id": "edge", "bg": 2627, "fg": [ 4015, 4014 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 4017, 4019, 4018, 4016 ] },
- { "bg": 2627, "id": "unconnected", "fg": 4024 }
+ { "id": "center", "bg": 2727, "fg": [ { "weight": 1, "sprite": 4127 }, { "weight": 1, "sprite": 4128 } ] },
+ { "id": "corner", "bg": 2727, "fg": [ 4130, 4132, 4131, 4129 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 4140, 4142, 4141, 4139 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 4134, 4133 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 4136, 4138, 4137, 4135 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 4143 }
]
},
{
"id": [ "t_water_moving_sh", "t_swater_moving_sh" ],
"multitile": true,
- "fg": 4043,
- "bg": 3163,
+ "fg": 4162,
+ "bg": 3263,
"additional_tiles": [
{
"id": "center",
- "bg": 3163,
+ "bg": 3263,
"fg": [
- { "weight": 1, "sprite": 4025 },
- { "weight": 1, "sprite": 4026 },
- { "weight": 1, "sprite": 4027 },
- { "weight": 1, "sprite": 4028 }
+ { "weight": 1, "sprite": 4144 },
+ { "weight": 1, "sprite": 4145 },
+ { "weight": 1, "sprite": 4146 },
+ { "weight": 1, "sprite": 4147 }
]
},
- { "id": "corner", "bg": 3163, "fg": [ 4030, 4032, 4031, 4029 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 4040, 4042, 4041, 4039 ] },
- { "id": "edge", "bg": 3163, "fg": [ 4034, 4033 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 4036, 4038, 4037, 4035 ] },
- { "bg": 3163, "id": "unconnected", "fg": 4043 }
+ { "id": "corner", "bg": 3263, "fg": [ 4149, 4151, 4150, 4148 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 4159, 4161, 4160, 4158 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 4153, 4152 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 4155, 4157, 4156, 4154 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 4162 }
]
},
{
"id": [ "t_water_moving_sh_season_summer", "t_swater_moving_sh_season_summer" ],
"multitile": true,
- "fg": 4043,
- "bg": 3173,
+ "fg": 4162,
+ "bg": 3273,
"additional_tiles": [
{
"id": "center",
- "bg": 3173,
+ "bg": 3273,
"fg": [
- { "weight": 1, "sprite": 4025 },
- { "weight": 1, "sprite": 4026 },
- { "weight": 1, "sprite": 4027 },
- { "weight": 1, "sprite": 4028 }
+ { "weight": 1, "sprite": 4144 },
+ { "weight": 1, "sprite": 4145 },
+ { "weight": 1, "sprite": 4146 },
+ { "weight": 1, "sprite": 4147 }
]
},
- { "id": "corner", "bg": 3173, "fg": [ 4030, 4032, 4031, 4029 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 4040, 4042, 4041, 4039 ] },
- { "id": "edge", "bg": 3173, "fg": [ 4034, 4033 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 4036, 4038, 4037, 4035 ] },
- { "bg": 3173, "id": "unconnected", "fg": 4043 }
+ { "id": "corner", "bg": 3273, "fg": [ 4149, 4151, 4150, 4148 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 4159, 4161, 4160, 4158 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 4153, 4152 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 4155, 4157, 4156, 4154 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 4162 }
]
},
{
"id": [ "t_water_moving_sh_season_autumn", "t_swater_moving_sh_season_autumn" ],
"multitile": true,
- "fg": 4043,
- "bg": 3168,
+ "fg": 4162,
+ "bg": 3268,
"additional_tiles": [
{
"id": "center",
- "bg": 3168,
+ "bg": 3268,
"fg": [
- { "weight": 1, "sprite": 4025 },
- { "weight": 1, "sprite": 4026 },
- { "weight": 1, "sprite": 4027 },
- { "weight": 1, "sprite": 4028 }
+ { "weight": 1, "sprite": 4144 },
+ { "weight": 1, "sprite": 4145 },
+ { "weight": 1, "sprite": 4146 },
+ { "weight": 1, "sprite": 4147 }
]
},
- { "id": "corner", "bg": 3168, "fg": [ 4030, 4032, 4031, 4029 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 4040, 4042, 4041, 4039 ] },
- { "id": "edge", "bg": 3168, "fg": [ 4034, 4033 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 4036, 4038, 4037, 4035 ] },
- { "bg": 3168, "id": "unconnected", "fg": 4043 }
+ { "id": "corner", "bg": 3268, "fg": [ 4149, 4151, 4150, 4148 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 4159, 4161, 4160, 4158 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 4153, 4152 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 4155, 4157, 4156, 4154 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 4162 }
]
},
{
"id": [ "t_water_moving_sh_season_winter", "t_swater_moving_sh_season_winter" ],
"multitile": true,
- "fg": 4043,
- "bg": 2627,
+ "fg": 4162,
+ "bg": 2727,
"additional_tiles": [
{
"id": "center",
- "bg": 2627,
+ "bg": 2727,
"fg": [
- { "weight": 1, "sprite": 4025 },
- { "weight": 1, "sprite": 4026 },
- { "weight": 1, "sprite": 4027 },
- { "weight": 1, "sprite": 4028 }
+ { "weight": 1, "sprite": 4144 },
+ { "weight": 1, "sprite": 4145 },
+ { "weight": 1, "sprite": 4146 },
+ { "weight": 1, "sprite": 4147 }
]
},
- { "id": "corner", "bg": 2627, "fg": [ 4030, 4032, 4031, 4029 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 4040, 4042, 4041, 4039 ] },
- { "id": "edge", "bg": 2627, "fg": [ 4034, 4033 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 4036, 4038, 4037, 4035 ] },
- { "bg": 2627, "id": "unconnected", "fg": 4043 }
+ { "id": "corner", "bg": 2727, "fg": [ 4149, 4151, 4150, 4148 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 4159, 4161, 4160, 4158 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 4153, 4152 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 4155, 4157, 4156, 4154 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 4162 }
]
},
{
"id": [ "t_water_pool", "t_water_pool_shallow" ],
"multitile": true,
- "fg": 4058,
+ "fg": 4177,
"additional_tiles": [
{
"id": "center",
- "fg": [ { "weight": 1, "sprite": 4059 }, { "weight": 1, "sprite": 4060 }, { "weight": 1, "sprite": 4061 } ]
+ "fg": [ { "weight": 1, "sprite": 4178 }, { "weight": 1, "sprite": 4179 }, { "weight": 1, "sprite": 4180 } ]
},
- { "id": "corner", "fg": [ 4045, 4047, 4046, 4044 ] },
- { "id": "t_connection", "fg": [ 4055, 4057, 4056, 4054 ] },
- { "id": "edge", "fg": [ 4049, 4048 ] },
- { "id": "end_piece", "fg": [ 4051, 4053, 4052, 4050 ] },
- { "id": "unconnected", "fg": [ 4058, 4058 ] }
+ { "id": "corner", "fg": [ 4164, 4166, 4165, 4163 ] },
+ { "id": "t_connection", "fg": [ 4174, 4176, 4175, 4173 ] },
+ { "id": "edge", "fg": [ 4168, 4167 ] },
+ { "id": "end_piece", "fg": [ 4170, 4172, 4171, 4169 ] },
+ { "id": "unconnected", "fg": [ 4177, 4177 ] }
]
},
{
"id": [ "t_water_sh", "t_swater_sh" ],
"multitile": true,
- "fg": 4077,
- "bg": 3163,
+ "fg": 4196,
+ "bg": 3263,
"additional_tiles": [
{
"id": "center",
- "bg": 3163,
+ "bg": 3263,
"fg": [
- { "weight": 1, "sprite": 4059 },
- { "weight": 1, "sprite": 4060 },
- { "weight": 1, "sprite": 4061 },
- { "weight": 1, "sprite": 4062 }
+ { "weight": 1, "sprite": 4178 },
+ { "weight": 1, "sprite": 4179 },
+ { "weight": 1, "sprite": 4180 },
+ { "weight": 1, "sprite": 4181 }
]
},
- { "id": "corner", "bg": 3163, "fg": [ 4064, 4066, 4065, 4063 ] },
- { "id": "t_connection", "bg": 3163, "fg": [ 4074, 4076, 4075, 4073 ] },
- { "id": "edge", "bg": 3163, "fg": [ 4068, 4067 ] },
- { "id": "end_piece", "bg": 3163, "fg": [ 4070, 4072, 4071, 4069 ] },
- { "bg": 3163, "id": "unconnected", "fg": 4077 }
+ { "id": "corner", "bg": 3263, "fg": [ 4183, 4185, 4184, 4182 ] },
+ { "id": "t_connection", "bg": 3263, "fg": [ 4193, 4195, 4194, 4192 ] },
+ { "id": "edge", "bg": 3263, "fg": [ 4187, 4186 ] },
+ { "id": "end_piece", "bg": 3263, "fg": [ 4189, 4191, 4190, 4188 ] },
+ { "bg": 3263, "id": "unconnected", "fg": 4196 }
]
},
{
"id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ],
"multitile": true,
- "fg": 4077,
- "bg": 3173,
+ "fg": 4196,
+ "bg": 3273,
"additional_tiles": [
{
"id": "center",
- "bg": 3173,
- "fg": [ { "weight": 1, "sprite": 4059 }, { "weight": 1, "sprite": 4060 }, { "weight": 1, "sprite": 4061 } ]
+ "bg": 3273,
+ "fg": [ { "weight": 1, "sprite": 4178 }, { "weight": 1, "sprite": 4179 }, { "weight": 1, "sprite": 4180 } ]
},
- { "id": "corner", "bg": 3173, "fg": [ 4064, 4066, 4065, 4063 ] },
- { "id": "t_connection", "bg": 3173, "fg": [ 4074, 4076, 4075, 4073 ] },
- { "id": "edge", "bg": 3173, "fg": [ 4068, 4067 ] },
- { "id": "end_piece", "bg": 3173, "fg": [ 4070, 4072, 4071, 4069 ] },
- { "bg": 3173, "id": "unconnected", "fg": 4077 }
+ { "id": "corner", "bg": 3273, "fg": [ 4183, 4185, 4184, 4182 ] },
+ { "id": "t_connection", "bg": 3273, "fg": [ 4193, 4195, 4194, 4192 ] },
+ { "id": "edge", "bg": 3273, "fg": [ 4187, 4186 ] },
+ { "id": "end_piece", "bg": 3273, "fg": [ 4189, 4191, 4190, 4188 ] },
+ { "bg": 3273, "id": "unconnected", "fg": 4196 }
]
},
{
"id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ],
"multitile": true,
- "fg": 4077,
- "bg": 3168,
+ "fg": 4196,
+ "bg": 3268,
"additional_tiles": [
{
"id": "center",
- "bg": 3168,
- "fg": [ { "weight": 1, "sprite": 4059 }, { "weight": 1, "sprite": 4060 }, { "weight": 1, "sprite": 4061 } ]
+ "bg": 3268,
+ "fg": [ { "weight": 1, "sprite": 4178 }, { "weight": 1, "sprite": 4179 }, { "weight": 1, "sprite": 4180 } ]
},
- { "id": "corner", "bg": 3168, "fg": [ 4064, 4066, 4065, 4063 ] },
- { "id": "t_connection", "bg": 3168, "fg": [ 4074, 4076, 4075, 4073 ] },
- { "id": "edge", "bg": 3168, "fg": [ 4068, 4067 ] },
- { "id": "end_piece", "bg": 3168, "fg": [ 4070, 4072, 4071, 4069 ] },
- { "bg": 3168, "id": "unconnected", "fg": 4077 }
+ { "id": "corner", "bg": 3268, "fg": [ 4183, 4185, 4184, 4182 ] },
+ { "id": "t_connection", "bg": 3268, "fg": [ 4193, 4195, 4194, 4192 ] },
+ { "id": "edge", "bg": 3268, "fg": [ 4187, 4186 ] },
+ { "id": "end_piece", "bg": 3268, "fg": [ 4189, 4191, 4190, 4188 ] },
+ { "bg": 3268, "id": "unconnected", "fg": 4196 }
]
},
{
"id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ],
"multitile": true,
- "fg": 4077,
- "bg": 2627,
+ "fg": 4196,
+ "bg": 2727,
"additional_tiles": [
{
"id": "center",
- "bg": 2627,
- "fg": [ { "weight": 1, "sprite": 4059 }, { "weight": 1, "sprite": 4060 }, { "weight": 1, "sprite": 4061 } ]
+ "bg": 2727,
+ "fg": [ { "weight": 1, "sprite": 4178 }, { "weight": 1, "sprite": 4179 }, { "weight": 1, "sprite": 4180 } ]
},
- { "id": "corner", "bg": 2627, "fg": [ 4064, 4066, 4065, 4063 ] },
- { "id": "t_connection", "bg": 2627, "fg": [ 4074, 4076, 4075, 4073 ] },
- { "id": "edge", "bg": 2627, "fg": [ 4068, 4067 ] },
- { "id": "end_piece", "bg": 2627, "fg": [ 4070, 4072, 4071, 4069 ] },
- { "bg": 2627, "id": "unconnected", "fg": 4077 }
- ]
- },
- { "id": [ "t_window", "t_window_alarm" ], "fg": 4078 },
- { "id": "t_window_empty", "fg": 4081 },
- { "id": "t_window_domestic", "fg": 4079 },
- { "id": "t_window_open", "fg": 4085 },
- { "id": "t_window_no_curtains", "fg": 4082 },
- { "id": "t_window_no_curtains_open", "fg": 4083 },
- { "id": "t_woodchips", "fg": 4087 },
- { "id": "t_woodchips_season_winter", "fg": 2627 },
+ { "id": "corner", "bg": 2727, "fg": [ 4183, 4185, 4184, 4182 ] },
+ { "id": "t_connection", "bg": 2727, "fg": [ 4193, 4195, 4194, 4192 ] },
+ { "id": "edge", "bg": 2727, "fg": [ 4187, 4186 ] },
+ { "id": "end_piece", "bg": 2727, "fg": [ 4189, 4191, 4190, 4188 ] },
+ { "bg": 2727, "id": "unconnected", "fg": 4196 }
+ ]
+ },
+ { "id": [ "t_window", "t_window_alarm" ], "fg": 4197 },
+ { "id": "t_window_empty", "fg": 4200 },
+ { "id": "t_window_domestic", "fg": 4198 },
+ { "id": "t_window_open", "fg": 4204 },
+ { "id": "t_window_no_curtains", "fg": 4201 },
+ { "id": "t_window_no_curtains_open", "fg": 4202 },
+ { "id": "t_woodchips", "fg": 4206 },
+ { "id": "t_woodchips_season_winter", "fg": 2727 },
{
"id": [ "tr_downspout_funnel", "tr_pit", "tr_lava", "tr_ledge", "tr_glass_pit", "tr_spike_pit" ],
- "fg": 1072
+ "fg": 1088
},
- { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 4092 }, { "weight": 1, "sprite": 4093 } ] },
- { "id": "tr_nailboard", "fg": 4088, "bg": 1961 },
- { "id": "tr_portal", "fg": 4096 },
- { "id": "tr_tripwire", "fg": 4098 },
+ { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 4211 }, { "weight": 1, "sprite": 4212 } ] },
+ { "id": "tr_nailboard", "fg": 4207, "bg": 2010 },
+ { "id": "tr_portal", "fg": 4215 },
+ { "id": "tr_tripwire", "fg": 4217 },
{
"id": [ "vp_forklift_fork" ],
- "fg": [ 4101, 4103, 4102, 4100 ],
+ "fg": [ 4220, 4222, 4221, 4219 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 4101, 4103, 4102, 4100 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4220, 4222, 4221, 4219 ] } ]
},
{
"id": [ "vp_forklift_fork_horizontal_front" ],
- "fg": [ 4102, 4100, 4101, 4103 ],
+ "fg": [ 4221, 4219, 4220, 4222 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 4102, 4100, 4101, 4103 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4221, 4219, 4220, 4222 ] } ]
},
{
"id": "vp_saddle_motor",
- "fg": [ 4105, 4107, 4106, 4104 ],
+ "fg": [ 4224, 4226, 4225, 4223 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 4105, 4107, 4106, 4104 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4224, 4226, 4225, 4223 ] } ]
},
{
"id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ],
- "fg": [ 4113, 4115, 4114, 4112 ],
+ "fg": [ 4232, 4234, 4233, 4231 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 4113, 4115, 4114, 4112 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4232, 4234, 4233, 4231 ] } ]
},
{
"id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ],
- "fg": [ 4109, 4111, 4110, 4108 ],
+ "fg": [ 4228, 4230, 4229, 4227 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 4109, 4111, 4110, 4108 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4228, 4230, 4229, 4227 ] } ]
},
{
"id": [ "vp_wheel_small_scooter", "vp_wheel_small_scooter_steerable" ],
- "fg": [ 4121, 4123, 4122, 4120 ],
+ "fg": [ 4240, 4242, 4241, 4239 ],
"rotates": true
},
- { "id": "vp_wheel_small_scooter_rear", "fg": [ 4117, 4119, 4118, 4116 ], "rotates": true },
+ { "id": "vp_wheel_small_scooter_rear", "fg": [ 4236, 4238, 4237, 4235 ], "rotates": true },
{
"id": "vp_battery_charger",
- "fg": 4124,
- "bg": 7010,
+ "fg": [ 4243, 4243, 4243, 4243 ],
+ "bg": 7601,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 4124 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4243, 4243, 4243, 4243 ] } ]
},
{
"id": "vp_recharge_station",
- "fg": 4125,
- "bg": 7010,
+ "fg": [ 4244, 4244, 4244, 4244 ],
+ "bg": 7601,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 4125 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4244, 4244, 4244, 4244 ] } ]
},
{
"id": "vp_spike_wood",
- "fg": 4126,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 4126 } ]
- },
- { "id": "fd_fire", "fg": 1073 },
- { "id": "fd_hot_air_sauna", "fg": 1074 },
- { "id": "f_target", "fg": 1235 },
- { "id": "f_chest", "fg": 1236 },
- { "id": "f_dive_block", "fg": 1237 },
- { "id": "f_foot_locker", "fg": 1238 },
- { "id": "f_sand_castle", "fg": 1239 },
- { "id": "f_shredder", "fg": 1240 },
- { "id": "f_tourist_table", "fg": 1241 },
- { "id": "f_beaded_door", "fg": 1271 },
- { "id": "f_beaded_door_o", "fg": 1272 },
- { "id": "f_black_eyed_susan", "fg": 1305 },
- { "id": "f_chimney", "fg": 1337 },
- { "id": "f_curtain", "fg": 1371 },
- { "id": "f_curtain_open", "fg": 1372 },
- { "id": "f_lily", "fg": 1417 },
- { "id": "f_skin_groundsheet", "fg": 1534 },
- { "id": "acidchitin_plate", "fg": 1613 },
- { "id": "acoustic_guitar", "fg": 1614 },
- { "id": "alloy_plate", "fg": 1615 },
- { "id": "armor_lorica", "fg": 1616 },
- { "id": "banjo", "fg": 1617 },
- { "id": "bionic_general", "fg": 1618 },
- { "id": "bodypillow", "fg": 1619 },
- { "id": "bookplate", "fg": 1620 },
- { "id": "bot_copbot", "fg": 1621 },
- { "id": "bot_riotbot", "fg": 1622 },
- { "id": "broken_copbot", "fg": 1623 },
- { "id": "broken_riotbot", "fg": 1624 },
- { "id": "chainmail_hauberk", "fg": 1625 },
- { "id": "char_smoker", "fg": 1626 },
- { "id": "dehydrator", "fg": 1627 },
- { "id": "folding_poncho_on", "fg": 1628 },
- { "id": "gambeson", "fg": 1629 },
- { "id": "glass_sheet", "fg": 1630 },
- { "id": "gown", "fg": 1631 },
- { "id": "guitar_electric", "fg": 1632 },
- { "id": "hand_paddles", "fg": 1634 },
- { "id": "i4_combustion", "fg": 1635 },
- { "id": "inflatable_boat", "fg": 1636 },
- { "id": "inflatable_section", "fg": 1637 },
- { "id": "lawnmower", "fg": 1638 },
- { "id": "mattress", "fg": 1639 },
- { "id": "mil_plate", "fg": 1640 },
- { "id": "rake_plastic", "fg": 1642 },
- { "id": "reinforced_glass_sheet", "fg": 1643 },
- { "id": "robe", "fg": 1644 },
- { "id": "rock_quern", "fg": 1645 },
- { "id": "saxophone", "fg": 1646 },
- { "id": "sheet", "fg": 1647 },
- { "id": "steel_plate", "fg": 1648 },
- { "id": "telepad", "fg": 1649 },
- { "id": "trumpet", "fg": 1650 },
- { "id": "tuba", "fg": 1651 },
- { "id": "tunic", "fg": 1652 },
- { "id": "tunic_rag", "fg": 1653 },
- { "id": "umbrella", "fg": 1654 },
- { "id": "wheel_armor", "fg": 1655 },
- { "id": "wheel_wide", "fg": 1656 },
- { "id": "wheel_wide_or", "fg": 1657 },
- { "id": "10mm_fmj", "fg": 1658 },
- { "id": "120mm_HEAT", "fg": 1659 },
- { "id": "123ln", "fg": 1660 },
- { "id": "12mm", "fg": 1661 },
- { "id": "20x66_beanbag", "fg": 1662 },
- { "id": "20x66_flare", "fg": 1663 },
- { "id": "20x66_flechette", "fg": 1664 },
- { "id": "20x66_frag", "fg": 1665 },
- { "id": "20x66_inc", "fg": 1666 },
- { "id": "20x66_shot", "fg": 1667 },
- { "id": "20x66_slug", "fg": 1668 },
- { "id": "223", "fg": 1669 },
- { "id": "22_cb", "fg": 1670 },
- { "id": "22_fmj", "fg": 1671 },
- { "id": "22_lr", "fg": 1672 },
- { "id": "22_ratshot", "fg": 1673 },
- { "id": "270win_jsp", "fg": 1674 },
- { "id": "3006", "fg": 1675 },
- { "id": "3006_incendiary", "fg": 1676 },
- { "id": "3006fmj", "fg": 1677 },
- { "id": "300_winmag", "fg": 1678 },
- { "id": "300blk", "fg": 1679 },
- { "id": "300blk_ss", "fg": 1680 },
- { "id": "308", "fg": 1681 },
- { "id": "32_acp", "fg": 1682 },
- { "id": "357mag_fmj", "fg": 1683 },
- { "id": "357mag_jhp", "fg": 1684 },
- { "id": "357sig_fmj", "fg": 1685 },
- { "id": "357sig_jhp", "fg": 1686 },
- { "id": "380_FMJ", "fg": 1687 },
- { "id": "380_JHP", "fg": 1688 },
- { "id": "380_p", "fg": 1689 },
- { "id": "38_fmj", "fg": 1690 },
- { "id": "38_special", "fg": 1691 },
- { "id": "38_super", "fg": 1692 },
- { "id": "38super_fmj", "fg": 1693 },
- { "id": "40fmj", "fg": 1694 },
- { "id": "40mm_flashbang", "fg": 1695 },
- { "id": "40mm_incendiary", "fg": 1696 },
- { "id": "40mm_slug", "fg": 1697 },
- { "id": "40sw", "fg": 1698 },
- { "id": "40x46mm_grenade", "fg": 1699 },
- { "id": "40x46mm_m1006", "fg": 1700 },
- { "id": "40x46mm_m433", "fg": 1701 },
- { "id": "40x46mm_m576", "fg": 1702 },
- { "id": "40x46mm_m651", "fg": 1703 },
- { "id": "40x53mm_buckshot_m169", "fg": 1704 },
- { "id": "40x53mm_flechette_m169", "fg": 1705 },
- { "id": "40x53mm_grenade", "fg": 1706 },
- { "id": "40x53mm_m1001", "fg": 1707 },
- { "id": "40x53mm_m430a1", "fg": 1708 },
- { "id": "40x53mm_slug_m169", "fg": 1709 },
- { "id": "410shot_000", "fg": 1710 },
- { "id": "44fmj", "fg": 1711 },
- { "id": "44magnum", "fg": 1712 },
- { "id": "454_Casull", "fg": 1713 },
- { "id": "4570_low", "fg": 1714 },
- { "id": "4570_pen", "fg": 1715 },
- { "id": "4570_sp", "fg": 1716 },
- { "id": "45_acp", "fg": 1717 },
- { "id": "45_jhp", "fg": 1718 },
- { "id": "45_super", "fg": 1719 },
- { "id": "45colt_jhp", "fg": 1720 },
- { "id": "460_fmj", "fg": 1721 },
- { "id": "460_rowland", "fg": 1722 },
- { "id": "46mm", "fg": 1723 },
- { "id": "500_Magnum", "fg": 1724 },
- { "id": "50_incendiary", "fg": 1725 },
- { "id": "50_mk211", "fg": 1726 },
- { "id": "50bmg", "fg": 1727 },
- { "id": "50match", "fg": 1728 },
- { "id": "50ss", "fg": 1729 },
- { "id": "545", "fg": 1730 },
- { "id": "545_ap", "fg": 1731 },
- { "id": "556", "fg": 1732 },
- { "id": "556_incendiary", "fg": 1733 },
- { "id": "57mm", "fg": 1734 },
- { "id": "5x50dart", "fg": 1735 },
- { "id": "5x50heavy", "fg": 1736 },
- { "id": "66mm_HEAT", "fg": 1737 },
- { "id": "700nx", "fg": 1738 },
- { "id": "762_25", "fg": 1739 },
- { "id": "762_25hot", "fg": 1740 },
- { "id": "762_25typeP", "fg": 1741 },
- { "id": "762_51", "fg": 1742 },
- { "id": "762_51_incendiary", "fg": 1743 },
- { "id": "762_54R", "fg": 1744 },
- { "id": "762_m43", "fg": 1745 },
- { "id": "762_m87", "fg": 1746 },
- { "id": "84x246mm_he", "fg": 1747 },
- { "id": "84x246mm_hedp", "fg": 1748 },
- { "id": "84x246mm_smoke", "fg": 1749 },
- { "id": "8mm_bootleg", "fg": 1750 },
- { "id": "8mm_caseless", "fg": 1751 },
- { "id": "8mm_civilian", "fg": 1752 },
- { "id": "8mm_fmj", "fg": 1753 },
- { "id": "8mm_hvp", "fg": 1754 },
- { "id": "8mm_inc", "fg": 1755 },
- { "id": "8mm_jhp", "fg": 1756 },
- { "id": "9mm", "fg": 1757 },
- { "id": "9mmP", "fg": 1758 },
- { "id": "9mmfmj", "fg": 1759 },
- { "id": "9x18mm", "fg": 1760 },
- { "id": "9x18mmP2", "fg": 1761 },
- { "id": "9x18mmfmj", "fg": 1762 },
- { "id": "RPG-7_ammo", "fg": 1763 },
- { "id": "RPG-7_og7v", "fg": 1764 },
- { "id": "RPG-7_pg7vr", "fg": 1765 },
- { "id": "RPG-7_tbg7v", "fg": 1766 },
- { "id": "atgm_heat", "fg": 1767 },
- { "id": "m235tpa", "fg": 1768 },
- { "id": "shot_00", "fg": 1769 },
- { "id": "shot_beanbag", "fg": 1770 },
- { "id": "shot_bird", "fg": 1771 },
- { "id": "shot_dragon", "fg": 1772 },
- { "id": "shot_flechette", "fg": 1773 },
- { "id": "shot_he", "fg": 1774 },
- { "id": "shot_scrap", "fg": 1775 },
- { "id": "shot_slug", "fg": 1776 },
- { "id": "1895sbl", "fg": 1797 },
- { "id": "AT4", "fg": 1798 },
- { "id": "LAW", "fg": 1799 },
- { "id": "M24", "fg": 1800 },
- { "id": "RPG", "fg": 1801 },
- { "id": "USAS_12", "fg": 1802 },
- { "id": "airspeargun", "fg": 1803 },
- { "id": "ak74", "fg": 1805 },
- { "id": "american_180", "fg": 1806 },
- { "id": "an94", "fg": 1807 },
- { "id": "ar10", "fg": 1808 },
- { "id": "ar15", "fg": 1809 },
- { "id": "arx160", "fg": 1810 },
- { "id": "as50", "fg": 1811 },
- { "id": "atgm_launcher", "fg": 1812 },
- { "id": "bbgun", "fg": 1813 },
- { "id": "bfg50", "fg": 1814 },
- { "id": "bh_m89", "fg": 1815 },
- { "id": "blunderbuss", "fg": 1816 },
- { "id": "browning_blr", "fg": 1817 },
- { "id": "chemical_thrower", "fg": 1819 },
- { "id": "coilgun", "fg": 1820 },
- { "id": "colt_lightning", "fg": 1821 },
- { "id": "colt_ro635", "fg": 1822 },
- { "id": "combination_gun", "fg": 1823 },
- { "id": "cx4", "fg": 1824 },
- { "id": "doublespeargun", "fg": 1825 },
- { "id": "emp_gun", "fg": 1826 },
- { "id": "famas", "fg": 1827 },
- { "id": "flamethrower", "fg": 1828 },
- { "id": "fn_fal", "fg": 1829 },
- { "id": "fs2000", "fg": 1830 },
- { "id": "ftk93", "fg": 1831 },
- { "id": "garand", "fg": 1832 },
- { "id": "heavy_rail_rifle", "fg": 1833 },
- { "id": "helsing", "fg": 1834 },
- { "id": "henry_big_boy", "fg": 1835 },
- { "id": "hk417_13", "fg": 1836 },
- { "id": "hk_g3", "fg": 1837 },
- { "id": "hk_g36", "fg": 1838 },
- { "id": "hk_g80", "fg": 1839 },
- { "id": "hk_mp5k", "fg": 1840 },
- { "id": "hk_mp5sd", "fg": 1841 },
- { "id": "iwi_tavor_x95_300blk", "fg": 1842 },
- { "id": "ksg-25", "fg": 1843 },
- { "id": "ksg", "fg": 1844 },
- { "id": "ksub2000", "fg": 1845 },
- { "id": "laser_cannon", "fg": 1846 },
- { "id": "laser_rifle", "fg": 1847 },
- { "id": "lever_shotgun", "fg": 1848 },
- { "id": "longrifle_flintlock", "fg": 1849 },
- { "id": "m107a1", "fg": 1850 },
- { "id": "m110a1", "fg": 1851 },
- { "id": "m134", "fg": 1852 },
- { "id": "m14ebr", "fg": 1853 },
- { "id": "m1903", "fg": 1856 },
- { "id": "m1918", "fg": 1857 },
- { "id": "m1a", "fg": 1858 },
- { "id": "m2010", "fg": 1859 },
- { "id": "m231pfw", "fg": 1860 },
- { "id": "m240", "fg": 1861 },
- { "id": "m27_assault_rifle_var_h&k416a5", "fg": 1863 },
- { "id": "m27_assault_rifle_var_m27iar", "fg": 1864 },
- { "id": "m27_assault_rifle_var_m38dmr", "fg": 1865 },
- { "id": "m27_assault_rifle_var_scar_l", "fg": 1866 },
- { "id": "m2browning", "fg": 1867 },
- { "id": "m2browning_sawn", "fg": 1868 },
- { "id": "m3_carlgustav", "fg": 1869 },
- { "id": "m4_carbine_var_m4a1", "fg": 1870 },
- { "id": "m4_carlgustav", "fg": 1871 },
- { "id": "m79", "fg": 1873 },
- { "id": "mark19", "fg": 1874 },
- { "id": "marlin_9a", "fg": 1875 },
- { "id": "mininuke_launcher", "fg": 1876 },
- { "id": "mosin44", "fg": 1877 },
- { "id": "mosin44_ebr", "fg": 1878 },
- { "id": "mosin91_30", "fg": 1879 },
- { "id": "mosin91_30_ebr", "fg": 1880 },
- { "id": "mossberg_500", "fg": 1881 },
- { "id": "mossberg_500_var_mossberg_500_security", "fg": 1882 },
- { "id": "mossberg_590", "fg": 1883 },
- { "id": "mossberg_590_var_SPAS_12", "fg": 1884 },
- { "id": "mossberg_930", "fg": 1885 },
- { "id": "mossberg_930_var_m1014", "fg": 1886 },
- { "id": "mp18", "fg": 1887 },
- { "id": "needlegun", "fg": 1889 },
- { "id": "pamd68", "fg": 1890 },
- { "id": "pamd71z", "fg": 1891 },
- { "id": "pipe_combination_gun", "fg": 1892 },
- { "id": "plasma_gun", "fg": 1893 },
- { "id": "plasma_rifle", "fg": 1894 },
- { "id": "ppsh", "fg": 1895 },
- { "id": "rebar_rifle", "fg": 1896 },
- { "id": "remington700_270", "fg": 1897 },
- { "id": "remington_700", "fg": 1898 },
- { "id": "remington_870", "fg": 1899 },
- { "id": "remington_870_breacher", "fg": 1900 },
- { "id": "remington_870_express", "fg": 1901 },
- { "id": "remington_870_var_browning_a5", "fg": 1902 },
- { "id": "remington_870_var_remington_1100", "fg": 1903 },
- { "id": "rifle_flintlock", "fg": 1904 },
- { "id": "rm120c", "fg": 1905 },
- { "id": "rm20", "fg": 1906 },
- { "id": "rm298", "fg": 1907 },
- { "id": "rm451_flamethrower", "fg": 1908 },
- { "id": "rm51_assault_rifle", "fg": 1909 },
- { "id": "rm614_lmg", "fg": 1910 },
- { "id": "rm802", "fg": 1911 },
- { "id": "rm88_battle_rifle", "fg": 1912 },
- { "id": "ruger_1022", "fg": 1913 },
- { "id": "ruger_mini", "fg": 1914 },
- { "id": "saiga_12", "fg": 1915 },
- { "id": "saiga_410", "fg": 1916 },
- { "id": "savage_111f", "fg": 1917 },
- { "id": "scar_h", "fg": 1918 },
- { "id": "sharps", "fg": 1919 },
- { "id": "shotgun_410", "fg": 1920 },
- { "id": "shotgun_d", "fg": 1921 },
- { "id": "shotgun_s", "fg": 1922 },
- { "id": "sig552", "fg": 1923 },
- { "id": "sig_mcx_rattler_sbr", "fg": 1924 },
- { "id": "skorpion_82", "fg": 1925 },
- { "id": "sks", "fg": 1926 },
- { "id": "smg_9mm", "fg": 1928 },
- { "id": "speargun", "fg": 1929 },
- { "id": "sten", "fg": 1930 },
- { "id": "steyr_aug", "fg": 1931 },
- { "id": "surv_rocket_launcher", "fg": 1932 },
- { "id": "survivor_special_700", "fg": 1933 },
- { "id": "tac50", "fg": 1934 },
- { "id": "tavor_12", "fg": 1935 },
- { "id": "tihar", "fg": 1936 },
- { "id": "tommygun", "fg": 1937 },
- { "id": "trex_gun", "fg": 1938 },
- { "id": "weatherby_5", "fg": 1939 },
- { "id": "win70", "fg": 1940 },
- { "id": "winchester_1887", "fg": 1941 },
- { "id": "winchester_1897", "fg": 1942 },
- { "id": "iceaxe", "fg": 1945 },
- { "id": "rifle_case_soft", "fg": 1950 },
- { "id": "rifle_case_soft_2", "fg": 1951 },
- { "id": "rifle_case_soft_leather_2", "fg": 1953 },
- { "id": "rucksack", "fg": 1954 },
- { "id": "compgreatbow", "fg": 1963 },
- { "id": "compositebow", "fg": 1964 },
- { "id": "hybridbow", "fg": 1965 },
- { "id": "longbow", "fg": 1966 },
- { "id": "recurbow", "fg": 1967 },
- { "id": "reflexbow", "fg": 1968 },
- { "id": "reflexrecurvebow", "fg": 1969 },
- { "id": "selfbow", "fg": 1970 },
- { "id": "shortbow", "fg": 1971 },
- { "id": "woodgreatbow", "fg": 1972 },
- { "id": "oxygen_cylinder", "fg": 1977 },
- { "id": "oxygen_tank", "fg": 1978 },
- { "id": "tinyweldtank", "fg": 1979 },
- { "id": "weldtank", "fg": 1980 },
- { "id": "cot", "fg": 1981 },
- { "id": "armguard_soft", "fg": 1982 },
- { "id": "chestwrap_leather", "fg": 1983 },
- { "id": "trenchcoat_leather", "fg": 1984 },
- { "id": "bat_nerf", "fg": 1985 },
- { "id": "golf_bag", "fg": 1986 },
- { "id": "polycarbonate_sheet", "fg": 1987 },
- { "id": "screen_mesh", "fg": 1988 },
- { "id": "bagpipes", "fg": 1989 },
- { "id": "caltrops", "fg": 1990 },
- { "id": "jumper_cable_heavy", "fg": 1991 },
- { "id": "scythe", "fg": 1992 },
- { "id": "motorbike_armor", "fg": 1993 },
- { "id": "rack_test_tube", "fg": 1994 },
- { "id": "bowl_clay", "fg": 1997 },
- { "id": "clay_hydria", "fg": 1998 },
- { "id": "clay_pot", "fg": 1999 },
- { "id": "clay_quern", "fg": 2000 },
- { "id": "clay_watercont", "fg": 2001 },
- { "id": "jug_clay", "fg": 2002 },
- { "id": "bullet_crossbow", "fg": 2066 },
- { "id": "compcrossbow", "fg": 2067 },
- { "id": "compositecrossbow", "fg": 2068 },
- { "id": "crossbow", "fg": 2069 },
- { "id": "hand_crossbow", "fg": 2070 },
- { "id": "huge_crossbow", "fg": 2071 },
- { "id": "rep_crossbow", "fg": 2072 },
- { "id": "bot_eyebot", "fg": 2074 },
- { "id": "broken_eyebot", "fg": 2075 },
- { "id": "amplifier_head", "fg": 2087 },
- { "id": "bindle", "fg": 2088 },
- { "id": "broken_dimensional_anchor", "fg": 2089 },
- { "id": "chainmail_vest", "fg": 2090 },
- { "id": "concrete", "fg": 2091 },
- { "id": "cs_lajatang_off", "fg": 2092 },
- { "id": "dimensional_anchor", "fg": 2093 },
- { "id": "dimensional_anchor_on", "fg": 2094 },
- { "id": "dnd", "fg": 2095 },
- { "id": "g_carpet", "fg": 2096 },
- { "id": "grapnel", "fg": 2097 },
- { "id": "optical_cloak", "fg": 2098 },
- { "id": "p_carpet", "fg": 2099 },
- { "id": "r_carpet", "fg": 2100 },
- { "id": "trimmer_off", "fg": 2101 },
- { "id": "trimmer_on", "fg": 2102 },
- { "id": "tux", "fg": 2103 },
- { "id": "v_scoop_item", "fg": 2104 },
- { "id": "wool_suit", "fg": 2105 },
- { "id": "y_carpet", "fg": 2106 },
- { "id": "multi_cooker", "fg": 2107 },
- { "id": "multi_cooker_filled", "fg": 2108 },
- { "id": "pet_carrier", "fg": 2109 },
- { "id": "PR24-extended", "fg": 2133 },
- { "id": "PR24-retracted", "fg": 2134 },
- { "id": "baton-extended", "fg": 2135 },
- { "id": "baton", "fg": 2136 },
- { "id": "pipe_shotgun", "fg": 2155 },
- { "id": "pool_cue", "fg": 2160 },
- { "id": "bokken", "fg": 2193 },
- { "id": "UPS_off", "fg": 2199 },
- { "id": "hose", "fg": 2200 },
- { "id": "oxy_torch", "fg": 2201 },
- { "id": "picklocks", "fg": 2202 },
- { "id": "f_magic_circle", "fg": 2209 },
- { "id": "mon_breather", "fg": 2210 },
- { "id": "mon_breather_hub", "fg": 2211 },
- { "id": "mon_fish_eel", "fg": 2343 },
- { "id": "mon_dragonfly_naiad", "fg": 2344 },
- { "id": "mon_generator", "fg": 2354 },
- { "id": "mon_spawn_raptor_electric", "fg": 2358 },
- { "id": "mon_spawn_raptor_shady", "fg": 2359 },
- { "id": "mon_spawn_raptor_unstable", "fg": 2360 },
- { "id": "mon_tadpole_grabber", "fg": 2361 },
- { "id": "footstep", "fg": 2390 },
- { "id": "footstep_above", "fg": 2391 },
- { "id": "footstep_below", "fg": 2392 },
- { "id": "unknown_field", "fg": 2393 },
- { "id": "unknown_furniture", "fg": 2394 },
- { "id": "unknown_item", "fg": 2395 },
- { "id": "unknown_item_AMMO", "fg": 2396 },
- { "id": "unknown_item_ARMOR", "fg": 2397 },
- { "id": "unknown_item_BIONIC", "fg": 2398 },
- { "id": "unknown_item_BOOK", "fg": 2399 },
- { "id": "unknown_item_FOOD", "fg": 2400 },
- { "id": "unknown_item_GUN", "fg": 2401 },
- { "id": "unknown_item_TOOL", "fg": 2402 },
- { "id": "unknown_item_misc", "fg": 2403 },
- { "id": "unknown_terrain", "fg": 2404 },
- { "id": "unknown_trap", "fg": 2405 },
- { "id": "unknown_vehicle_part", "fg": 2406 },
- { "id": "overlay_crouch", "fg": 2414 },
- { "id": "overlay_effect_badpoison", "fg": 2415 },
- { "id": "overlay_effect_bleed", "fg": 2416 },
- { "id": "overlay_effect_cold", "fg": 2417 },
- { "id": "overlay_effect_deaf", "fg": 2418 },
- { "id": "overlay_effect_downed", "fg": 2419 },
- { "id": "overlay_effect_grabbed", "fg": 2420 },
- { "id": "overlay_effect_hot", "fg": 2421 },
- { "id": "overlay_effect_poison", "fg": 2423 },
- { "id": "overlay_effect_winded", "fg": 2424 },
- { "id": "overlay_friendly_sees_player", "fg": 2425 },
- { "id": "overlay_hostile_sees_player", "fg": 2426 },
- { "id": "overlay_neutral_sees_player", "fg": 2427 },
- { "id": "overlay_other_sees_player", "fg": 2428 },
- { "id": "overlay_prone", "fg": 2429 },
- { "id": "overlay_run", "fg": 2430 },
- { "id": "zombie_revival_indicator", "fg": 2431 },
- { "id": "cemetery_small", "fg": 2452 },
- { "id": "dirt_road_center", "fg": 2455 },
- { "id": "dirt_road_end_piece_e", "fg": 2462 },
- { "id": "dirt_road_end_piece_n", "fg": 2463 },
- { "id": "dirt_road_end_piece_s", "fg": 2464 },
- { "id": "dirt_road_end_piece_w", "fg": 2465 },
- { "id": "dirt_road_unconnected", "fg": 2470 },
- { "id": "hunting_blind", "fg": 2496 },
- { "id": "overmap_horde_3", "fg": 2497 },
- { "id": "overmap_horde_4", "fg": 2498 },
- { "id": "overmap_horde_5", "fg": 2499 },
- { "id": "overmap_horde_6", "fg": 2500 },
- { "id": "overmap_remembered_vehicle", "fg": 2501 },
- { "id": "pasture_connection_ew", "fg": 2524 },
- { "id": "pasture_connection_ns", "fg": 2525 },
- { "id": "pasture_unconnected", "fg": 2538 },
- { "id": "t_metal_ventilation_shutter", "fg": 2601 },
- { "id": "t_ramp_down_high", "fg": 2619 },
- { "id": "t_ramp_up_high", "fg": 2620 },
- { "id": "t_sidewalk_ramp_down_high", "fg": 2621 },
- { "id": "t_sidewalk_ramp_up_high", "fg": 2622 },
- { "id": "t_slope_down", "fg": 2623 },
- { "id": "t_slope_up", "fg": 2624 },
- { "id": "t_door_b_peep", "fg": 2985 },
- { "id": "t_door_boarded_damaged_peep", "fg": 2986 },
- { "id": "t_door_boarded_peep", "fg": 2987 },
- { "id": "t_door_c_peep", "fg": 2988 },
- { "id": "t_door_locked_peep", "fg": 2989 },
- { "id": "t_door_o_peep", "fg": 2990 },
- { "id": "t_fence_post", "fg": 3027 },
- { "id": "t_thconc_floor_flesh", "fg": 3759 },
- { "id": "t_wall_resin_cage", "fg": 3924 },
- { "id": "t_window_domestic_taped", "fg": 4080 },
- { "id": "t_window_no_curtains_taped", "fg": 4084 },
- { "id": "t_window_taped", "fg": 4086 },
- { "id": "tr_cot", "fg": 4089 },
- { "id": "tr_caltrops", "fg": 4090 },
- { "id": "tr_telepad", "fg": 4091 },
- { "id": "tr_landmine", "fg": 4094 },
- { "id": "tr_landmine_buried", "fg": 4095 },
- { "id": "tr_practice_target", "fg": 4097 },
- { "id": "metal_boat_hull", "fg": 4099 }
+ "fg": 4245,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 4245 } ]
+ },
+ { "id": "fd_fire", "fg": 1089 },
+ { "id": "fd_hot_air_sauna", "fg": 1090 },
+ { "id": "f_target", "fg": 1283 },
+ { "id": "f_chest", "fg": 1284 },
+ { "id": "f_dive_block", "fg": 1285 },
+ { "id": "f_foot_locker", "fg": 1286 },
+ { "id": "f_sand_castle", "fg": 1287 },
+ { "id": "f_shredder", "fg": 1288 },
+ { "id": "f_tourist_table", "fg": 1289 },
+ { "id": "f_beaded_door", "fg": 1319 },
+ { "id": "f_beaded_door_o", "fg": 1320 },
+ { "id": "f_black_eyed_susan", "fg": 1353 },
+ { "id": "f_chimney", "fg": 1385 },
+ { "id": "f_curtain", "fg": 1419 },
+ { "id": "f_curtain_open", "fg": 1420 },
+ { "id": "f_lily", "fg": 1465 },
+ { "id": "f_skin_groundsheet", "fg": 1582 },
+ { "id": "acidchitin_plate", "fg": 1661 },
+ { "id": "acoustic_guitar", "fg": 1662 },
+ { "id": "alloy_plate", "fg": 1663 },
+ { "id": "armor_lorica", "fg": 1664 },
+ { "id": "banjo", "fg": 1665 },
+ { "id": "bionic_general", "fg": 1666 },
+ { "id": "bodypillow", "fg": 1667 },
+ { "id": "bookplate", "fg": 1668 },
+ { "id": "bot_copbot", "fg": 1669 },
+ { "id": "bot_riotbot", "fg": 1670 },
+ { "id": "broken_copbot", "fg": 1671 },
+ { "id": "broken_riotbot", "fg": 1672 },
+ { "id": "chainmail_hauberk", "fg": 1673 },
+ { "id": "char_smoker", "fg": 1674 },
+ { "id": "dehydrator", "fg": 1675 },
+ { "id": "folding_poncho_on", "fg": 1676 },
+ { "id": "gambeson", "fg": 1677 },
+ { "id": "glass_sheet", "fg": 1678 },
+ { "id": "gown", "fg": 1679 },
+ { "id": "guitar_electric", "fg": 1680 },
+ { "id": "hand_paddles", "fg": 1682 },
+ { "id": "i4_combustion", "fg": 1683 },
+ { "id": "inflatable_boat", "fg": 1684 },
+ { "id": "inflatable_section", "fg": 1685 },
+ { "id": "lawnmower", "fg": 1686 },
+ { "id": "mattress", "fg": 1687 },
+ { "id": "mil_plate", "fg": 1688 },
+ { "id": "rake_plastic", "fg": 1690 },
+ { "id": "reinforced_glass_sheet", "fg": 1691 },
+ { "id": "robe", "fg": 1692 },
+ { "id": "rock_quern", "fg": 1693 },
+ { "id": "saxophone", "fg": 1694 },
+ { "id": "sheet", "fg": 1695 },
+ { "id": "steel_plate", "fg": 1696 },
+ { "id": "telepad", "fg": 1697 },
+ { "id": "trumpet", "fg": 1698 },
+ { "id": "tuba", "fg": 1699 },
+ { "id": "tunic", "fg": 1700 },
+ { "id": "tunic_rag", "fg": 1701 },
+ { "id": "umbrella", "fg": 1702 },
+ { "id": "wheel_armor", "fg": 1703 },
+ { "id": "wheel_wide", "fg": 1704 },
+ { "id": "wheel_wide_or", "fg": 1705 },
+ { "id": "10mm_fmj", "fg": 1706 },
+ { "id": "120mm_HEAT", "fg": 1707 },
+ { "id": "123ln", "fg": 1708 },
+ { "id": "12mm", "fg": 1709 },
+ { "id": "20x66_beanbag", "fg": 1710 },
+ { "id": "20x66_flare", "fg": 1711 },
+ { "id": "20x66_flechette", "fg": 1712 },
+ { "id": "20x66_frag", "fg": 1713 },
+ { "id": "20x66_inc", "fg": 1714 },
+ { "id": "20x66_shot", "fg": 1715 },
+ { "id": "20x66_slug", "fg": 1716 },
+ { "id": "223", "fg": 1717 },
+ { "id": "22_cb", "fg": 1718 },
+ { "id": "22_fmj", "fg": 1719 },
+ { "id": "22_lr", "fg": 1720 },
+ { "id": "22_ratshot", "fg": 1721 },
+ { "id": "270win_jsp", "fg": 1722 },
+ { "id": "3006", "fg": 1723 },
+ { "id": "3006_incendiary", "fg": 1724 },
+ { "id": "3006fmj", "fg": 1725 },
+ { "id": "300_winmag", "fg": 1726 },
+ { "id": "300blk", "fg": 1727 },
+ { "id": "300blk_ss", "fg": 1728 },
+ { "id": "308", "fg": 1729 },
+ { "id": "32_acp", "fg": 1730 },
+ { "id": "357mag_fmj", "fg": 1731 },
+ { "id": "357mag_jhp", "fg": 1732 },
+ { "id": "357sig_fmj", "fg": 1733 },
+ { "id": "357sig_jhp", "fg": 1734 },
+ { "id": "380_FMJ", "fg": 1735 },
+ { "id": "380_JHP", "fg": 1736 },
+ { "id": "380_p", "fg": 1737 },
+ { "id": "38_fmj", "fg": 1738 },
+ { "id": "38_special", "fg": 1739 },
+ { "id": "38_super", "fg": 1740 },
+ { "id": "38super_fmj", "fg": 1741 },
+ { "id": "40fmj", "fg": 1742 },
+ { "id": "40mm_flashbang", "fg": 1743 },
+ { "id": "40mm_incendiary", "fg": 1744 },
+ { "id": "40mm_slug", "fg": 1745 },
+ { "id": "40sw", "fg": 1746 },
+ { "id": "40x46mm_grenade", "fg": 1747 },
+ { "id": "40x46mm_m1006", "fg": 1748 },
+ { "id": "40x46mm_m433", "fg": 1749 },
+ { "id": "40x46mm_m576", "fg": 1750 },
+ { "id": "40x46mm_m651", "fg": 1751 },
+ { "id": "40x53mm_buckshot_m169", "fg": 1752 },
+ { "id": "40x53mm_flechette_m169", "fg": 1753 },
+ { "id": "40x53mm_grenade", "fg": 1754 },
+ { "id": "40x53mm_m1001", "fg": 1755 },
+ { "id": "40x53mm_m430a1", "fg": 1756 },
+ { "id": "40x53mm_slug_m169", "fg": 1757 },
+ { "id": "410shot_000", "fg": 1758 },
+ { "id": "44fmj", "fg": 1759 },
+ { "id": "44magnum", "fg": 1760 },
+ { "id": "454_Casull", "fg": 1761 },
+ { "id": "4570_low", "fg": 1762 },
+ { "id": "4570_pen", "fg": 1763 },
+ { "id": "4570_sp", "fg": 1764 },
+ { "id": "45_acp", "fg": 1765 },
+ { "id": "45_jhp", "fg": 1766 },
+ { "id": "45_super", "fg": 1767 },
+ { "id": "45colt_jhp", "fg": 1768 },
+ { "id": "460_fmj", "fg": 1769 },
+ { "id": "460_rowland", "fg": 1770 },
+ { "id": "46mm", "fg": 1771 },
+ { "id": "500_Magnum", "fg": 1772 },
+ { "id": "50_incendiary", "fg": 1773 },
+ { "id": "50_mk211", "fg": 1774 },
+ { "id": "50bmg", "fg": 1775 },
+ { "id": "50match", "fg": 1776 },
+ { "id": "50ss", "fg": 1777 },
+ { "id": "545", "fg": 1778 },
+ { "id": "545_ap", "fg": 1779 },
+ { "id": "556", "fg": 1780 },
+ { "id": "556_incendiary", "fg": 1781 },
+ { "id": "57mm", "fg": 1782 },
+ { "id": "5x50dart", "fg": 1783 },
+ { "id": "5x50heavy", "fg": 1784 },
+ { "id": "66mm_HEAT", "fg": 1785 },
+ { "id": "700nx", "fg": 1786 },
+ { "id": "762_25", "fg": 1787 },
+ { "id": "762_25hot", "fg": 1788 },
+ { "id": "762_25typeP", "fg": 1789 },
+ { "id": "762_51", "fg": 1790 },
+ { "id": "762_51_incendiary", "fg": 1791 },
+ { "id": "762_54R", "fg": 1792 },
+ { "id": "762_m43", "fg": 1793 },
+ { "id": "762_m87", "fg": 1794 },
+ { "id": "84x246mm_he", "fg": 1795 },
+ { "id": "84x246mm_hedp", "fg": 1796 },
+ { "id": "84x246mm_smoke", "fg": 1797 },
+ { "id": "8mm_bootleg", "fg": 1798 },
+ { "id": "8mm_caseless", "fg": 1799 },
+ { "id": "8mm_civilian", "fg": 1800 },
+ { "id": "8mm_fmj", "fg": 1801 },
+ { "id": "8mm_hvp", "fg": 1802 },
+ { "id": "8mm_inc", "fg": 1803 },
+ { "id": "8mm_jhp", "fg": 1804 },
+ { "id": "9mm", "fg": 1805 },
+ { "id": "9mmP", "fg": 1806 },
+ { "id": "9mmfmj", "fg": 1807 },
+ { "id": "9x18mm", "fg": 1808 },
+ { "id": "9x18mmP2", "fg": 1809 },
+ { "id": "9x18mmfmj", "fg": 1810 },
+ { "id": "RPG-7_ammo", "fg": 1811 },
+ { "id": "RPG-7_og7v", "fg": 1812 },
+ { "id": "RPG-7_pg7vr", "fg": 1813 },
+ { "id": "RPG-7_tbg7v", "fg": 1814 },
+ { "id": "atgm_heat", "fg": 1815 },
+ { "id": "m235tpa", "fg": 1816 },
+ { "id": "shot_00", "fg": 1817 },
+ { "id": "shot_beanbag", "fg": 1818 },
+ { "id": "shot_bird", "fg": 1819 },
+ { "id": "shot_dragon", "fg": 1820 },
+ { "id": "shot_flechette", "fg": 1821 },
+ { "id": "shot_he", "fg": 1822 },
+ { "id": "shot_scrap", "fg": 1823 },
+ { "id": "shot_slug", "fg": 1824 },
+ { "id": "1895sbl", "fg": 1845 },
+ { "id": "AT4", "fg": 1846 },
+ { "id": "LAW", "fg": 1847 },
+ { "id": "M24", "fg": 1848 },
+ { "id": "RPG", "fg": 1849 },
+ { "id": "USAS_12", "fg": 1850 },
+ { "id": "airspeargun", "fg": 1851 },
+ { "id": "ak74", "fg": 1853 },
+ { "id": "american_180", "fg": 1854 },
+ { "id": "an94", "fg": 1855 },
+ { "id": "ar10", "fg": 1856 },
+ { "id": "ar15", "fg": 1857 },
+ { "id": "arx160", "fg": 1858 },
+ { "id": "as50", "fg": 1859 },
+ { "id": "atgm_launcher", "fg": 1860 },
+ { "id": "bbgun", "fg": 1861 },
+ { "id": "bfg50", "fg": 1862 },
+ { "id": "bh_m89", "fg": 1863 },
+ { "id": "blunderbuss", "fg": 1864 },
+ { "id": "browning_blr", "fg": 1865 },
+ { "id": "chemical_thrower", "fg": 1867 },
+ { "id": "coilgun", "fg": 1868 },
+ { "id": "colt_lightning", "fg": 1869 },
+ { "id": "colt_ro635", "fg": 1870 },
+ { "id": "combination_gun", "fg": 1871 },
+ { "id": "cx4", "fg": 1872 },
+ { "id": "doublespeargun", "fg": 1873 },
+ { "id": "emp_gun", "fg": 1874 },
+ { "id": "famas", "fg": 1875 },
+ { "id": "flamethrower", "fg": 1876 },
+ { "id": "fn_fal", "fg": 1877 },
+ { "id": "fs2000", "fg": 1878 },
+ { "id": "ftk93", "fg": 1879 },
+ { "id": "garand", "fg": 1880 },
+ { "id": "heavy_rail_rifle", "fg": 1881 },
+ { "id": "helsing", "fg": 1882 },
+ { "id": "henry_big_boy", "fg": 1883 },
+ { "id": "hk417_13", "fg": 1884 },
+ { "id": "hk_g3", "fg": 1885 },
+ { "id": "hk_g36", "fg": 1886 },
+ { "id": "hk_g80", "fg": 1887 },
+ { "id": "hk_mp5k", "fg": 1888 },
+ { "id": "hk_mp5sd", "fg": 1889 },
+ { "id": "iwi_tavor_x95_300blk", "fg": 1890 },
+ { "id": "ksg-25", "fg": 1891 },
+ { "id": "ksg", "fg": 1892 },
+ { "id": "ksub2000", "fg": 1893 },
+ { "id": "laser_cannon", "fg": 1894 },
+ { "id": "laser_rifle", "fg": 1895 },
+ { "id": "lever_shotgun", "fg": 1896 },
+ { "id": "longrifle_flintlock", "fg": 1897 },
+ { "id": "m107a1", "fg": 1898 },
+ { "id": "m110a1", "fg": 1899 },
+ { "id": "m134", "fg": 1900 },
+ { "id": "m14ebr", "fg": 1901 },
+ { "id": "m1903", "fg": 1904 },
+ { "id": "m1918", "fg": 1905 },
+ { "id": "m1a", "fg": 1906 },
+ { "id": "m2010", "fg": 1907 },
+ { "id": "m202_flash", "fg": 1908 },
+ { "id": "m231pfw", "fg": 1909 },
+ { "id": "m240", "fg": 1910 },
+ { "id": "m27_assault_rifle_var_h&k416a5", "fg": 1912 },
+ { "id": "m27_assault_rifle_var_m27iar", "fg": 1913 },
+ { "id": "m27_assault_rifle_var_m38dmr", "fg": 1914 },
+ { "id": "m27_assault_rifle_var_scar_l", "fg": 1915 },
+ { "id": "m2browning", "fg": 1916 },
+ { "id": "m2browning_sawn", "fg": 1917 },
+ { "id": "m3_carlgustav", "fg": 1918 },
+ { "id": "m4_carbine_var_m4a1", "fg": 1919 },
+ { "id": "m4_carlgustav", "fg": 1920 },
+ { "id": "m79", "fg": 1922 },
+ { "id": "mark19", "fg": 1923 },
+ { "id": "marlin_9a", "fg": 1924 },
+ { "id": "mininuke_launcher", "fg": 1925 },
+ { "id": "mosin44", "fg": 1926 },
+ { "id": "mosin44_ebr", "fg": 1927 },
+ { "id": "mosin91_30", "fg": 1928 },
+ { "id": "mosin91_30_ebr", "fg": 1929 },
+ { "id": "mossberg_500", "fg": 1930 },
+ { "id": "mossberg_500_var_mossberg_500_security", "fg": 1931 },
+ { "id": "mossberg_590", "fg": 1932 },
+ { "id": "mossberg_590_var_SPAS_12", "fg": 1933 },
+ { "id": "mossberg_930", "fg": 1934 },
+ { "id": "mossberg_930_var_m1014", "fg": 1935 },
+ { "id": "mp18", "fg": 1936 },
+ { "id": "needlegun", "fg": 1938 },
+ { "id": "pamd68", "fg": 1939 },
+ { "id": "pamd71z", "fg": 1940 },
+ { "id": "pipe_combination_gun", "fg": 1941 },
+ { "id": "plasma_gun", "fg": 1942 },
+ { "id": "plasma_rifle", "fg": 1943 },
+ { "id": "ppsh", "fg": 1944 },
+ { "id": "rebar_rifle", "fg": 1945 },
+ { "id": "remington700_270", "fg": 1946 },
+ { "id": "remington_700", "fg": 1947 },
+ { "id": "remington_870", "fg": 1948 },
+ { "id": "remington_870_breacher", "fg": 1949 },
+ { "id": "remington_870_express", "fg": 1950 },
+ { "id": "remington_870_var_browning_a5", "fg": 1951 },
+ { "id": "remington_870_var_remington_1100", "fg": 1952 },
+ { "id": "rifle_flintlock", "fg": 1953 },
+ { "id": "rm120c", "fg": 1954 },
+ { "id": "rm20", "fg": 1955 },
+ { "id": "rm298", "fg": 1956 },
+ { "id": "rm451_flamethrower", "fg": 1957 },
+ { "id": "rm51_assault_rifle", "fg": 1958 },
+ { "id": "rm614_lmg", "fg": 1959 },
+ { "id": "rm802", "fg": 1960 },
+ { "id": "rm88_battle_rifle", "fg": 1961 },
+ { "id": "ruger_1022", "fg": 1962 },
+ { "id": "ruger_mini", "fg": 1963 },
+ { "id": "saiga_12", "fg": 1964 },
+ { "id": "saiga_410", "fg": 1965 },
+ { "id": "savage_111f", "fg": 1966 },
+ { "id": "scar_h", "fg": 1967 },
+ { "id": "sharps", "fg": 1968 },
+ { "id": "shotgun_410", "fg": 1969 },
+ { "id": "shotgun_d", "fg": 1970 },
+ { "id": "shotgun_s", "fg": 1971 },
+ { "id": "sig552", "fg": 1972 },
+ { "id": "sig_mcx_rattler_sbr", "fg": 1973 },
+ { "id": "skorpion_82", "fg": 1974 },
+ { "id": "sks", "fg": 1975 },
+ { "id": "smg_9mm", "fg": 1977 },
+ { "id": "speargun", "fg": 1978 },
+ { "id": "sten", "fg": 1979 },
+ { "id": "steyr_aug", "fg": 1980 },
+ { "id": "surv_rocket_launcher", "fg": 1981 },
+ { "id": "survivor_special_700", "fg": 1982 },
+ { "id": "tac50", "fg": 1983 },
+ { "id": "tavor_12", "fg": 1984 },
+ { "id": "tihar", "fg": 1985 },
+ { "id": "tommygun", "fg": 1986 },
+ { "id": "trex_gun", "fg": 1987 },
+ { "id": "weatherby_5", "fg": 1988 },
+ { "id": "win70", "fg": 1989 },
+ { "id": "winchester_1887", "fg": 1990 },
+ { "id": "winchester_1897", "fg": 1991 },
+ { "id": "iceaxe", "fg": 1994 },
+ { "id": "rifle_case_soft", "fg": 1999 },
+ { "id": "rifle_case_soft_2", "fg": 2000 },
+ { "id": "rifle_case_soft_leather_2", "fg": 2002 },
+ { "id": "rucksack", "fg": 2003 },
+ { "id": "compgreatbow", "fg": 2012 },
+ { "id": "compositebow", "fg": 2013 },
+ { "id": "hybridbow", "fg": 2014 },
+ { "id": "longbow", "fg": 2015 },
+ { "id": "recurbow", "fg": 2016 },
+ { "id": "reflexbow", "fg": 2017 },
+ { "id": "reflexrecurvebow", "fg": 2018 },
+ { "id": "selfbow", "fg": 2019 },
+ { "id": "shortbow", "fg": 2020 },
+ { "id": "woodgreatbow", "fg": 2021 },
+ { "id": "oxygen_cylinder", "fg": 2026 },
+ { "id": "oxygen_tank", "fg": 2027 },
+ { "id": "tinyweldtank", "fg": 2028 },
+ { "id": "weldtank", "fg": 2029 },
+ { "id": "cot", "fg": 2030 },
+ { "id": "armguard_soft", "fg": 2031 },
+ { "id": "chestwrap_leather", "fg": 2032 },
+ { "id": "trenchcoat_leather", "fg": 2033 },
+ { "id": "bat_nerf", "fg": 2034 },
+ { "id": "golf_bag", "fg": 2035 },
+ { "id": "polycarbonate_sheet", "fg": 2036 },
+ { "id": "screen_mesh", "fg": 2037 },
+ { "id": "bagpipes", "fg": 2038 },
+ { "id": "caltrops", "fg": 2039 },
+ { "id": "jumper_cable_heavy", "fg": 2040 },
+ { "id": "scythe", "fg": 2041 },
+ { "id": "motorbike_armor", "fg": 2042 },
+ { "id": "rack_test_tube", "fg": 2043 },
+ { "id": "bowl_clay", "fg": 2046 },
+ { "id": "clay_hydria", "fg": 2047 },
+ { "id": "clay_pot", "fg": 2048 },
+ { "id": "clay_quern", "fg": 2049 },
+ { "id": "clay_watercont", "fg": 2050 },
+ { "id": "jug_clay", "fg": 2051 },
+ { "id": "bullet_crossbow", "fg": 2115 },
+ { "id": "compcrossbow", "fg": 2116 },
+ { "id": "compositecrossbow", "fg": 2117 },
+ { "id": "crossbow", "fg": 2118 },
+ { "id": "hand_crossbow", "fg": 2119 },
+ { "id": "huge_crossbow", "fg": 2120 },
+ { "id": "rep_crossbow", "fg": 2121 },
+ { "id": "bot_eyebot", "fg": 2123 },
+ { "id": "broken_eyebot", "fg": 2124 },
+ { "id": "amplifier_head", "fg": 2136 },
+ { "id": "bindle", "fg": 2137 },
+ { "id": "broken_dimensional_anchor", "fg": 2138 },
+ { "id": "chainmail_vest", "fg": 2139 },
+ { "id": "concrete", "fg": 2140 },
+ { "id": "cs_lajatang_off", "fg": 2141 },
+ { "id": "dimensional_anchor", "fg": 2142 },
+ { "id": "dimensional_anchor_on", "fg": 2143 },
+ { "id": "dnd", "fg": 2144 },
+ { "id": "g_carpet", "fg": 2145 },
+ { "id": "grapnel", "fg": 2146 },
+ { "id": "optical_cloak", "fg": 2147 },
+ { "id": "p_carpet", "fg": 2148 },
+ { "id": "r_carpet", "fg": 2149 },
+ { "id": "trimmer_off", "fg": 2150 },
+ { "id": "trimmer_on", "fg": 2151 },
+ { "id": "tux", "fg": 2152 },
+ { "id": "v_scoop_item", "fg": 2153 },
+ { "id": "wool_suit", "fg": 2154 },
+ { "id": "y_carpet", "fg": 2155 },
+ { "id": "multi_cooker", "fg": 2156 },
+ { "id": "multi_cooker_filled", "fg": 2157 },
+ { "id": "pet_carrier", "fg": 2158 },
+ { "id": "manhole_cover", "fg": 2177 },
+ { "id": "PR24-extended", "fg": 2183 },
+ { "id": "PR24-retracted", "fg": 2184 },
+ { "id": "baton-extended", "fg": 2185 },
+ { "id": "baton", "fg": 2186 },
+ { "id": "guitar_stand", "fg": 2187 },
+ { "id": "mic_stand_tall", "fg": 2188 },
+ { "id": "mixer_music", "fg": 2189 },
+ { "id": "pipe_shotgun", "fg": 2208 },
+ { "id": "pool_cue", "fg": 2213 },
+ { "id": "bokken", "fg": 2246 },
+ { "id": "UPS_off", "fg": 2252 },
+ { "id": "hose", "fg": 2253 },
+ { "id": "oxy_torch", "fg": 2254 },
+ { "id": "picklocks", "fg": 2255 },
+ { "id": "f_magic_circle", "fg": 2262 },
+ { "id": "mon_breather", "fg": 2263 },
+ { "id": "mon_breather_hub", "fg": 2264 },
+ { "id": "mon_fish_eel", "fg": 2400 },
+ { "id": "mon_dragonfly_naiad", "fg": 2401 },
+ { "id": "debug_mon", "fg": 2413 },
+ { "id": "mon_generator", "fg": 2416 },
+ { "id": "mon_spawn_raptor_electric", "fg": 2430 },
+ { "id": "mon_spawn_raptor_shady", "fg": 2431 },
+ { "id": "mon_spawn_raptor_unstable", "fg": 2432 },
+ { "id": "mon_tadpole_grabber", "fg": 2434 },
+ { "id": "mon_turret_riot", "fg": 2436 },
+ { "id": "footstep", "fg": 2480 },
+ { "id": "footstep_above", "fg": 2481 },
+ { "id": "footstep_below", "fg": 2482 },
+ { "id": "unknown_field", "fg": 2483 },
+ { "id": "unknown_furniture", "fg": 2484 },
+ { "id": "unknown_item", "fg": 2485 },
+ { "id": "unknown_item_AMMO", "fg": 2486 },
+ { "id": "unknown_item_ARMOR", "fg": 2487 },
+ { "id": "unknown_item_BIONIC", "fg": 2488 },
+ { "id": "unknown_item_BOOK", "fg": 2489 },
+ { "id": "unknown_item_FOOD", "fg": 2490 },
+ { "id": "unknown_item_GUN", "fg": 2491 },
+ { "id": "unknown_item_TOOL", "fg": 2492 },
+ { "id": "unknown_item_misc", "fg": 2493 },
+ { "id": "unknown_terrain", "fg": 2494 },
+ { "id": "unknown_trap", "fg": 2495 },
+ { "id": "unknown_vehicle_part", "fg": 2496 },
+ { "id": "overlay_crouch", "fg": 2504 },
+ { "id": "overlay_effect_badpoison", "fg": 2505 },
+ { "id": "overlay_effect_bleed", "fg": 2506 },
+ { "id": "overlay_effect_cold", "fg": 2507 },
+ { "id": "overlay_effect_deaf", "fg": 2508 },
+ { "id": "overlay_effect_downed", "fg": 2509 },
+ { "id": "overlay_effect_grabbed", "fg": 2510 },
+ { "id": "overlay_effect_hot", "fg": 2511 },
+ { "id": "overlay_effect_poison", "fg": 2513 },
+ { "id": "overlay_effect_slimed", "fg": 2514 },
+ { "id": "overlay_effect_wet", "fg": 2515 },
+ { "id": "overlay_effect_winded", "fg": 2516 },
+ { "id": "overlay_friendly_sees_player", "fg": 2517 },
+ { "id": "overlay_hostile_sees_player", "fg": 2518 },
+ { "id": "overlay_neutral_sees_player", "fg": 2519 },
+ { "id": "overlay_other_sees_player", "fg": 2520 },
+ { "id": "overlay_prone", "fg": 2521 },
+ { "id": "overlay_run", "fg": 2522 },
+ { "id": "zombie_revival_indicator", "fg": 2523 },
+ { "id": "overlay_female_mutation_HOOVES", "fg": 2524 },
+ { "id": "overlay_male_mutation_HOOVES", "fg": 2525 },
+ { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 2526 },
+ { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 2527 },
+ { "id": "overlay_wielded_bfg50", "fg": 2528 },
+ { "id": "overlay_worn_swim_fins", "fg": 2529 },
+ { "id": "cemetery_small", "fg": 2550 },
+ { "id": "dirt_road_center", "fg": 2553 },
+ { "id": "dirt_road_end_piece_e", "fg": 2560 },
+ { "id": "dirt_road_end_piece_n", "fg": 2561 },
+ { "id": "dirt_road_end_piece_s", "fg": 2562 },
+ { "id": "dirt_road_end_piece_w", "fg": 2563 },
+ { "id": "dirt_road_unconnected", "fg": 2568 },
+ { "id": "hunting_blind", "fg": 2594 },
+ { "id": "overmap_horde_3", "fg": 2595 },
+ { "id": "overmap_horde_4", "fg": 2596 },
+ { "id": "overmap_horde_5", "fg": 2597 },
+ { "id": "overmap_horde_6", "fg": 2598 },
+ { "id": "overmap_remembered_vehicle", "fg": 2599 },
+ { "id": "pasture_connection_ew", "fg": 2622 },
+ { "id": "pasture_connection_ns", "fg": 2623 },
+ { "id": "pasture_unconnected", "fg": 2636 },
+ { "id": "t_metal_ventilation_shutter", "fg": 2701 },
+ { "id": "t_ramp_down_high", "fg": 2719 },
+ { "id": "t_ramp_up_high", "fg": 2720 },
+ { "id": "t_sidewalk_ramp_down_high", "fg": 2721 },
+ { "id": "t_sidewalk_ramp_up_high", "fg": 2722 },
+ { "id": "t_slope_down", "fg": 2723 },
+ { "id": "t_slope_up", "fg": 2724 },
+ { "id": "t_door_b_peep", "fg": 3085 },
+ { "id": "t_door_boarded_damaged_peep", "fg": 3086 },
+ { "id": "t_door_boarded_peep", "fg": 3087 },
+ { "id": "t_door_c_peep", "fg": 3088 },
+ { "id": "t_door_locked_peep", "fg": 3089 },
+ { "id": "t_door_o_peep", "fg": 3090 },
+ { "id": "t_fence_post", "fg": 3127 },
+ { "id": "t_ladder_down", "fg": 3349 },
+ { "id": "t_mud", "fg": 3467 },
+ { "id": "t_thconc_floor_flesh", "fg": 3862 },
+ { "id": "t_wall_resin_cage", "fg": 4043 },
+ { "id": "t_window_domestic_taped", "fg": 4199 },
+ { "id": "t_window_no_curtains_taped", "fg": 4203 },
+ { "id": "t_window_taped", "fg": 4205 },
+ { "id": "tr_cot", "fg": 4208 },
+ { "id": "tr_caltrops", "fg": 4209 },
+ { "id": "tr_telepad", "fg": 4210 },
+ { "id": "tr_landmine", "fg": 4213 },
+ { "id": "tr_landmine_buried", "fg": 4214 },
+ { "id": "tr_practice_target", "fg": 4216 },
+ { "id": "metal_boat_hull", "fg": 4218 }
]
},
{
"file": "tall.png",
- "//": "range 4128 to 4607",
+ "//": "range 4256 to 4655",
"sprite_width": 32,
"sprite_height": 64,
"sprite_offset_x": 0,
"sprite_offset_y": -32,
"tiles": [
- { "id": "npc_female", "fg": 4402, "bg": 4436 },
- { "id": "npc_male", "fg": 4403, "bg": 4436 },
- { "id": "player_female", "fg": 4402, "bg": 4436 },
- { "id": "player_male", "fg": 4403, "bg": 4436 },
{
"id": "f_deckchair",
- "fg": [ { "weight": 1, "sprite": 4128 }, { "weight": 1, "sprite": 4129 }, { "weight": 1, "sprite": 4130 } ]
+ "fg": [ { "weight": 1, "sprite": 4256 }, { "weight": 1, "sprite": 4257 }, { "weight": 1, "sprite": 4258 } ]
},
- { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 4132 },
- { "id": "f_punching_bag", "fg": 4136 },
- { "id": "f_exercise", "fg": 4135 },
- { "id": "f_ergometer", "fg": 4134 },
- { "id": "f_IV_pole", "fg": 4138 },
- { "id": "f_arcade_machine", "fg": 4139 },
- { "id": "f_autodoc_couch", "fg": 4140 },
- { "id": "f_birdbath", "fg": 4143 },
+ { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 4260 },
+ { "id": "f_punching_bag", "fg": 4264 },
+ { "id": "f_exercise", "fg": 4263 },
+ { "id": "f_ergometer", "fg": 4262 },
+ { "id": "f_IV_pole", "fg": 4266 },
+ { "id": "f_arcade_machine", "fg": 4267 },
+ { "id": "f_autodoc_couch", "fg": 4268 },
+ { "id": "f_birdbath", "fg": 4271 },
{
"id": "f_bookcase",
"multitile": true,
"rotates": false,
- "fg": 4144,
+ "fg": 4272,
"additional_tiles": [
- { "id": "center", "fg": 4144 },
- { "id": "corner", "fg": [ 4146, 4147, 4147, 4146 ] },
- { "id": "t_connection", "fg": [ 4144, 4145, 4144, 4145 ] },
- { "id": "edge", "fg": [ 4145, 4144 ] },
- { "id": "end_piece", "fg": [ 4146, 4144, 4147, 4144 ] },
- { "id": "unconnected", "fg": [ 4144, 4144 ] }
+ { "id": "center", "fg": 4272 },
+ { "id": "corner", "fg": [ 4274, 4275, 4275, 4274 ] },
+ { "id": "t_connection", "fg": [ 4272, 4273, 4272, 4273 ] },
+ { "id": "edge", "fg": [ 4273, 4272 ] },
+ { "id": "end_piece", "fg": [ 4274, 4272, 4275, 4272 ] },
+ { "id": "unconnected", "fg": [ 4272, 4272 ] }
]
},
- { "id": "f_boulder_large", "fg": 4148 },
- { "id": "f_cattails_season_spring", "fg": 4150, "rotates": false },
- { "id": "f_cattails_season_summer", "fg": 4151, "rotates": false },
- { "id": "f_cattails_season_autumn", "fg": 4149, "rotates": false },
- { "id": "f_cattails_season_winter", "fg": 4152, "rotates": false },
+ { "id": "f_boulder_large", "fg": 4276 },
+ { "id": "f_cattails_season_spring", "fg": 4279, "rotates": false },
+ { "id": "f_cattails_season_summer", "fg": 4280, "rotates": false },
+ { "id": "f_cattails_season_autumn", "fg": 4278, "rotates": false },
+ { "id": "f_cattails_season_winter", "fg": 4281, "rotates": false },
{
"id": "f_console",
"multitile": true,
- "fg": 4186,
+ "fg": 4315,
"additional_tiles": [
- { "id": "center", "fg": 4171 },
- { "id": "corner", "fg": [ 4173, 4175, 4174, 4172 ] },
- { "id": "t_connection", "fg": [ 4183, 4185, 4184, 4182 ] },
- { "id": "edge", "fg": [ 4177, 4176 ] },
- { "id": "end_piece", "fg": [ 4179, 4181, 4180, 4178 ] },
- { "id": "unconnected", "fg": [ 4186, 4188, 4186, 4187 ] }
+ { "id": "center", "fg": 4300 },
+ { "id": "corner", "fg": [ 4302, 4304, 4303, 4301 ] },
+ { "id": "t_connection", "fg": [ 4312, 4314, 4313, 4311 ] },
+ { "id": "edge", "fg": [ 4306, 4305 ] },
+ { "id": "end_piece", "fg": [ 4308, 4310, 4309, 4307 ] },
+ { "id": "unconnected", "fg": [ 4315, 4317, 4315, 4316 ] }
]
},
{
"id": "f_console_broken",
"multitile": true,
- "fg": 4169,
+ "fg": 4298,
"additional_tiles": [
- { "id": "center", "fg": 4153 },
- { "id": "corner", "fg": [ 4155, 4157, 4156, 4154 ] },
- { "id": "t_connection", "fg": [ 4165, 4167, 4166, 4164 ] },
- { "id": "edge", "fg": [ 4159, 4158 ] },
- { "id": "end_piece", "fg": [ 4161, 4163, 4162, 4160 ] },
- { "id": "unconnected", "fg": [ 4169, 4170, 4169, 4168 ] }
+ { "id": "center", "fg": 4282 },
+ { "id": "corner", "fg": [ 4284, 4286, 4285, 4283 ] },
+ { "id": "t_connection", "fg": [ 4294, 4296, 4295, 4293 ] },
+ { "id": "edge", "fg": [ 4288, 4287 ] },
+ { "id": "end_piece", "fg": [ 4290, 4292, 4291, 4289 ] },
+ { "id": "unconnected", "fg": [ 4298, 4299, 4298, 4297 ] }
]
},
- { "id": "f_crate_c", "fg": 4189 },
- { "id": "f_crate_o", "fg": 4190 },
- { "id": "f_dialysis", "fg": 4191 },
- { "id": "f_dresser", "rotates": true, "fg": [ 4194, 4195, 4193, 4192 ] },
- { "id": "f_dryer", "fg": 4196 },
+ { "id": "f_crate_c", "fg": 4318 },
+ { "id": "f_crate_o", "fg": 4319 },
+ { "id": "f_dialysis", "fg": 4320 },
+ { "id": "f_dresser", "rotates": true, "fg": [ 4323, 4324, 4322, 4321 ] },
+ { "id": "f_dryer", "fg": 4325 },
{
"id": "f_dumpster",
- "fg": 4203,
- "multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 4197 },
- { "id": "corner", "fg": [ 4202, 4202, 4199, 4199 ] },
- { "id": "t_connection", "fg": [ 4197, 4202, 4197, 4199 ] },
- { "id": "edge", "fg": [ 4198, 4197 ] },
- { "id": "end_piece", "fg": [ 4200, 4202, 4201, 4199 ] },
- { "id": "unconnected", "fg": [ 4203, 4203 ] }
- ]
- },
- { "id": "f_fireplace", "fg": 4204 },
- { "id": "f_floor_lamp", "fg": 4205 },
- { "id": "f_fridge", "rotates": true, "fg": [ 4208, 4209, 4207, 4206 ] },
- { "id": "t_gas_pump", "fg": 4210, "bg": 4444 },
- { "id": "f_gas_pump", "fg": 4210 },
- { "id": "f_glass_cabinet", "fg": 4211 },
- { "id": "f_glass_fridge", "fg": 4212 },
- { "id": "f_home_furnace", "fg": 4213 },
- { "id": "f_locker", "fg": 4215 },
- { "id": "f_machinery_old", "fg": 4222 },
- { "id": "t_machinery_old", "fg": 4222, "bg": 4440 },
- { "id": "f_machinery_electronic", "fg": 4216 },
- { "id": "t_machinery_electronic", "fg": 4216, "bg": 4440 },
+ "fg": 4332,
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "center", "fg": 4326 },
+ { "id": "corner", "fg": [ 4331, 4331, 4328, 4328 ] },
+ { "id": "t_connection", "fg": [ 4326, 4331, 4326, 4328 ] },
+ { "id": "edge", "fg": [ 4327, 4326 ] },
+ { "id": "end_piece", "fg": [ 4329, 4331, 4330, 4328 ] },
+ { "id": "unconnected", "fg": [ 4332, 4332 ] }
+ ]
+ },
+ { "id": "f_fireplace", "fg": 4333 },
+ { "id": "f_floor_lamp", "fg": 4334 },
+ { "id": "f_fridge", "rotates": true, "fg": [ 4337, 4338, 4336, 4335 ] },
+ { "id": "t_gas_pump", "fg": 4339, "bg": 4453 },
+ { "id": "f_gas_pump", "fg": 4339 },
+ { "id": "f_glass_cabinet", "fg": 4340 },
+ { "id": "f_glass_fridge", "fg": 4341 },
+ { "id": "f_home_furnace", "fg": 4342 },
+ { "id": "f_locker", "fg": 4344 },
+ { "id": "f_machinery_old", "fg": 4351 },
+ { "id": "t_machinery_old", "fg": 4351, "bg": 4449 },
+ { "id": "f_machinery_electronic", "fg": 4345 },
+ { "id": "t_machinery_electronic", "fg": 4345, "bg": 4449 },
{
"id": "f_machinery_heavy",
- "fg": [ { "weight": 20, "sprite": 4217 }, { "weight": 150, "sprite": 4218 }, { "weight": 100, "sprite": 4219 } ]
+ "fg": [ { "weight": 20, "sprite": 4346 }, { "weight": 150, "sprite": 4347 }, { "weight": 100, "sprite": 4348 } ]
},
{
"id": "t_machinery_heavy",
- "fg": [ { "weight": 20, "sprite": 4217 }, { "weight": 150, "sprite": 4218 }, { "weight": 100, "sprite": 4219 } ],
- "bg": 4440
+ "fg": [ { "weight": 20, "sprite": 4346 }, { "weight": 150, "sprite": 4347 }, { "weight": 100, "sprite": 4348 } ],
+ "bg": 4449
},
- { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 4221 }, { "weight": 100, "sprite": 4220 } ] },
+ { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 4350 }, { "weight": 100, "sprite": 4349 } ] },
{
"id": "t_machinery_light",
- "fg": [ { "weight": 100, "sprite": 4221 }, { "weight": 100, "sprite": 4220 } ],
- "bg": 4440
- },
- { "id": "f_mannequin", "fg": 4223 },
- { "id": "f_alien_tendril", "fg": 4227 },
- { "id": "f_alien_zapper", "fg": 4228 },
- { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 4225 },
- { "id": "f_alien_pod_resin", "fg": 4226 },
- { "id": "f_oven", "rotates": true, "fg": [ 4231, 4232, 4230, 4229 ] },
- { "id": "f_rack_coat", "fg": 4233 },
- { "id": "f_scan_bed", "fg": 4234 },
+ "fg": [ { "weight": 100, "sprite": 4350 }, { "weight": 100, "sprite": 4349 } ],
+ "bg": 4449
+ },
+ { "id": "f_mannequin", "fg": 4352 },
+ { "id": "f_alien_tendril", "fg": 4356 },
+ { "id": "f_alien_zapper", "fg": 4357 },
+ { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 4354 },
+ { "id": "f_alien_pod_resin", "fg": 4355 },
+ { "id": "f_oven", "rotates": true, "fg": [ 4360, 4361, 4359, 4358 ] },
+ { "id": "f_rack_coat", "fg": 4362 },
+ { "id": "f_scan_bed", "fg": 4363 },
{
"id": "f_scrap_antenna",
"animated": true,
"fg": [
- { "weight": 15, "sprite": 4235 },
- { "weight": 15, "sprite": 4236 },
- { "weight": 15, "sprite": 4237 },
- { "weight": 15, "sprite": 4238 },
- { "weight": 15, "sprite": 4239 },
- { "weight": 15, "sprite": 4240 }
+ { "weight": 15, "sprite": 4364 },
+ { "weight": 15, "sprite": 4365 },
+ { "weight": 15, "sprite": 4366 },
+ { "weight": 15, "sprite": 4367 },
+ { "weight": 15, "sprite": 4368 },
+ { "weight": 15, "sprite": 4369 }
],
"rotates": false
},
- { "id": "f_shower", "fg": 4241 },
- { "id": "f_standing_tank", "fg": 4242 },
- { "id": "f_statue", "fg": 4243 },
- { "id": "f_sunflower_season_summer", "fg": 4245 },
- { "id": "f_sunflower_season_autumn", "fg": 4244 },
- { "id": "f_vending_c", "fg": 4246 },
- { "id": "f_vending_reinforced", "fg": 4248 },
- { "id": "f_vending_o", "fg": 4247 },
- { "id": "f_ventilator", "fg": 4249 },
- { "id": "f_washer", "fg": 4250 },
- { "id": "f_water_heater", "fg": 4251 },
- { "id": "f_water_pump", "fg": 4252 },
- { "id": "t_water_pump", "fg": 4252, "bg": 4440 },
- { "id": "f_wind_mill", "fg": 4253 },
- { "id": "f_woodstove", "fg": 4254 },
- { "id": "f_workbench", "fg": 4255 },
- { "id": "mon_zombie_phase_skulker", "fg": 4259, "bg": 4436 },
- { "id": "mon_zombie_phase_shrike", "fg": 4258, "bg": 4436 },
- { "id": "mon_broken_cyborg", "fg": 4260, "bg": 4436 },
- { "id": "mon_prototype_cyborg", "fg": 4261, "bg": 4436 },
- { "id": "mon_biollante", "fg": 4263, "bg": 4436 },
- {
- "id": "mon_zombie_reenactor",
- "fg": [ { "weight": 2, "sprite": 4269 }, { "weight": 2, "sprite": 4268 }, { "weight": 1, "sprite": 4270 } ],
- "bg": 4436
- },
- { "id": "mon_zombie_prisoner_tough", "fg": 4267, "bg": 4436 },
- { "id": "mon_zombie_prisoner_fat", "fg": 4266, "bg": 4436 },
- { "id": "mon_zombie_prisoner_brute", "fg": 4265, "bg": 4436 },
- {
- "id": [ "mon_irradiated_wanderer_1", "mon_irradiated_wanderer_2", "mon_irradiated_wanderer_3", "mon_irradiated_wanderer_4" ],
- "fg": 4264,
- "bg": 4436
- },
+ { "id": "f_shower", "fg": 4370 },
+ { "id": "f_standing_tank", "fg": 4371 },
+ { "id": "f_statue", "fg": 4372 },
+ { "id": "f_sunflower_season_summer", "fg": 4374 },
+ { "id": "f_sunflower_season_autumn", "fg": 4373 },
+ { "id": "f_vending_c", "fg": 4375 },
+ { "id": "f_vending_reinforced", "fg": 4377 },
+ { "id": "f_vending_o", "fg": 4376 },
+ { "id": "f_ventilator", "fg": 4378 },
+ { "id": "f_washer", "fg": 4379 },
+ { "id": "f_water_heater", "fg": 4380 },
+ { "id": "f_water_pump", "fg": 4381 },
+ { "id": "t_water_pump", "fg": 4381, "bg": 4449 },
+ { "id": "f_wind_mill", "fg": 4382 },
+ { "id": "f_woodstove", "fg": 4383 },
+ { "id": "f_workbench", "fg": 4384 },
+ { "id": "mon_biollante", "fg": 4389, "bg": 4394 },
{
"id": "mon_exodii_worker",
"fg": [
- { "weight": 15, "sprite": 4273 },
- { "weight": 15, "sprite": 4274 },
- { "weight": 10, "sprite": 4275 },
- { "weight": 10, "sprite": 4276 }
- ],
- "bg": 4436
- },
- {
- "id": "mon_feral_human_crowbar",
- "fg": [ { "weight": 100, "sprite": 4279 }, { "weight": 50, "sprite": 4280 } ],
- "bg": 4436
- },
- {
- "id": "mon_feral_human_pipe",
- "fg": [ { "weight": 100, "sprite": 4283 }, { "weight": 50, "sprite": 4284 } ],
- "bg": 4436
- },
- {
- "id": "mon_feral_human_axe",
- "fg": [ { "weight": 100, "sprite": 4277 }, { "weight": 50, "sprite": 4278 } ],
- "bg": 4436
- },
- { "id": "mon_feral_labsecurity_9mm", "fg": 4281, "bg": 4436 },
- { "id": "mon_feral_labsecurity_flashlight", "fg": 4282, "bg": 4436 },
- { "id": "mon_feral_scientist_scalpel", "fg": 4285, "bg": 4436 },
- { "id": "mon_zombie_grabber", "fg": 4286, "bg": 4436 },
- { "id": "mon_turret_searchlight", "fg": 4288, "bg": 4436 },
- { "id": "mon_bee", "fg": 4289, "bg": 4436 },
- { "id": "mon_blank", "fg": 4290, "bg": 4436 },
- { "id": "mon_cougar", "fg": 4291, "bg": 4436 },
- { "id": "mon_dermatik", "fg": 4292, "bg": 4436 },
- { "id": "mon_dispatch", "fg": 4293, "bg": 4436 },
- { "id": "mon_dispatch_military", "fg": 4294, "bg": 4436 },
- { "id": "mon_dragonfly_giant", "fg": 4295, "bg": 4436 },
- { "id": "mon_fly", "fg": 4296, "bg": 4436 },
- { "id": "mon_fungal_tendril", "fg": 4297, "bg": 4436 },
- { "id": "mon_fungaloid", "fg": 4298, "bg": 4436 },
- { "id": "mon_gozu", "fg": 4299, "bg": 4436 },
- {
- "id": "mon_hunting_horror",
- "fg": [ { "weight": 1, "sprite": 4300 }, { "weight": 1, "sprite": 4301 }, { "weight": 1, "sprite": 4302 } ],
- "bg": 4436
- },
- { "id": "mon_mosquito_giant", "fg": 4303, "bg": 4436 },
- { "id": "mon_mutant_experimental", "fg": 4304, "bg": 4436 },
- { "id": "mon_riotbot", "fg": 4305, "bg": 4436 },
- { "id": "mon_skeleton", "fg": 4306, "bg": 4436 },
- { "id": "mon_skeleton_brute", "fg": 4307, "bg": 4436 },
- { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 4335 },
- { "id": "mon_spore", "fg": 4308, "bg": 4436 },
- { "id": "mon_turret_rifle", "fg": 4309, "bg": 4436 },
- { "id": "mon_turret_riot", "fg": 4310, "bg": 4436 },
- { "id": "mon_zombie_acidic", "fg": 4311, "bg": 4436 },
- { "id": "mon_zombie_corrosive", "fg": 4312, "bg": 4436 },
- { "id": "mon_zombie_spitter", "fg": 4313, "bg": 4436 },
- { "id": "mon_zombie_bio_op", "fg": 4314, "bg": 4436 },
- { "id": "mon_zombie_bio_op2", "fg": 4315, "bg": 4436 },
- { "id": "mon_zombie_crawler", "fg": 4316, "bg": 4436 },
- {
- "id": "mon_zombie_fat",
- "fg": [ { "weight": 1, "sprite": 4317 }, { "weight": 1, "sprite": 4318 } ],
- "bg": 4436
- },
- { "id": "mon_zombie_fiend", "fg": 4319, "bg": 4436 },
- {
- "id": "mon_zombie_brainless",
- "fg": [ { "weight": 100, "sprite": 4321 }, { "weight": 100, "sprite": 4322 } ],
- "bg": 4436
- },
- { "id": "mon_zombie_hollow", "fg": 4323, "bg": 4436 },
- { "id": "mon_zombie_hunter", "fg": 4324, "bg": 4436 },
- { "id": "mon_zombie_predator", "fg": 4325, "bg": 4436 },
- {
- "id": "mon_zombie_mancroc",
- "fg": [ { "weight": 100, "sprite": 4326 }, { "weight": 100, "sprite": 4327 } ],
- "bg": 4436
- },
- { "id": "mon_zombie_necro", "fg": 4330, "bg": 4436 },
- { "id": "mon_zombie_master", "fg": 4329, "bg": 4436 },
- { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 4328 },
- { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 4332, "bg": 4436 },
- { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 4333, "bg": 4436 },
- { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 4334, "bg": 4436 },
- { "id": "mon_zombie_rot", "fg": 4336, "bg": 4436 },
- { "id": "corpse_mon_zombie_rot", "fg": 4335 },
- { "id": "mon_zombie_rust", "fg": 4337, "bg": 4436 },
- { "id": "mon_zombie_scorched", "fg": 4338, "bg": 4436 },
- { "id": "mon_zombie_skull", "fg": 4339, "bg": 4436 },
- {
- "id": "mon_zombie_soldier",
- "fg": [ { "weight": 100, "sprite": 4344 }, { "weight": 100, "sprite": 4345 } ],
- "bg": 4436
- },
- { "id": "mon_zombie_military_pilot", "fg": 4343, "bg": 4436 },
- { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 4341 },
- { "id": "mon_zombie_static", "fg": 4346, "bg": 4436 },
- {
- "id": [ "mon_zombie_swimmer_base", "mon_zombie_swimmer" ],
- "fg": [ { "weight": 1000, "sprite": 4348 }, { "weight": 1, "sprite": 4347 } ],
- "bg": 4436
- },
- {
- "id": "mon_zombie",
- "fg": [
- { "weight": 100, "sprite": 4355 },
- { "weight": 150, "sprite": 4356 },
- { "weight": 100, "sprite": 4357 },
- { "weight": 100, "sprite": 4358 },
- { "weight": 150, "sprite": 4359 }
- ],
- "bg": 4436
- },
- { "id": "mon_zombie_hazmat", "fg": 4362, "bg": 4436 },
- { "id": "mon_zombie_fireman", "fg": 4361, "bg": 4436 },
- {
- "id": "mon_zombie_scientist",
- "fg": [ { "weight": 1, "sprite": 4364 }, { "weight": 1, "sprite": 4365 } ],
- "bg": 4436
- },
- { "id": "mon_zombie_cop", "fg": 4360, "bg": 4436 },
- { "id": "mon_zombie_labsecurity", "fg": 4363, "bg": 4436 },
- {
- "id": "mon_zombie_tough",
- "fg": [ { "weight": 1, "sprite": 4368 }, { "weight": 1, "sprite": 4369 } ],
- "bg": 4436
- },
- {
- "id": "mon_zombie_technician",
- "fg": [ { "weight": 1, "sprite": 4366 }, { "weight": 1, "sprite": 4367 } ],
- "bg": 4436
- },
- {
- "id": [
- "corpse_mon_zombie",
- "corpse_mon_zombie_grappler",
- "corpse_mon_zombie_biter",
- "corpse_mon_zombie_hunter",
- "corpse_mon_zombie_predator",
- "corpse_mon_zombie_thorny",
- "corpse_mon_zombie_smoker",
- "corpse_mon_zombie_shady",
- "corpse_mon_zombie_acidic",
- "corpse_mon_zombie_fat",
- "corpse_mon_zombie_corrosive",
- "corpse_mon_zombie_screecher",
- "corpse_mon_zombie_runner",
- "corpse_mon_zombie_child",
- "corpse_mon_zombie_electric",
- "corpse_mon_zombie_fungus",
- "corpse_mon_zombie_child_fungus",
- "corpse_mon_zombie_swimmer",
- "corpse_mon_zombie_mancroc",
- "corpse_mon_zombie_skull",
- "corpse_mon_zombie_survivor",
- "corpse_mon_zombie_soldier_acid_1",
- "corpse_mon_zombie_soldier_acid_2",
- "corpse_mon_zombie_shriekling",
- "corpse_mon_zombie_ears",
- "corpse_mon_zombie_nullfield",
- "corpse_mon_zombie_waif",
- "corpse_mon_zombie_sproglodyte",
- "corpse_mon_zombie_creepy",
- "corpse_mon_zombie_anklebiter",
- "corpse_mon_zombie_bio_op",
- "corpse_mon_zombie_prisoner",
- "corpse_mon_zombie_winged"
- ],
- "fg": 4349
- },
- { "id": "corpse_mon_zombie_scientist", "fg": 4351 },
- { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 4352 },
- { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 4350 },
- {
- "id": [
- "corpse_mon_zombie_tough",
- "corpse_mon_zombie_brute",
- "corpse_mon_zombie_hulk",
- "corpse_mon_zombie_brute_grappler",
- "corpse_mon_zombie_brute_ninja",
- "corpse_mon_zombie_kevlar_2",
- "corpse_mon_zombie_kevlar_1",
- "corpse_mon_zombie_armored",
- "corpse_mon_zombie_brute_shocker",
- "corpse_mon_zombie_brute_winged",
- "corpse_mon_zombie_soldier_blackops_2",
- "corpse_mon_zombie_soldier_blackops_1"
+ { "weight": 15, "sprite": 4395 },
+ { "weight": 15, "sprite": 4396 },
+ { "weight": 10, "sprite": 4397 },
+ { "weight": 10, "sprite": 4398 }
],
- "fg": 4353
- },
- { "id": "mon_zombie_winged", "fg": 4370, "bg": 4436 },
- { "id": "mon_zougar", "fg": 4371, "bg": 4436 },
- { "id": "mon_copbot", "fg": 4372, "bg": 4436 },
- { "id": "mon_zombie_screecher", "fg": 4374, "bg": 4436 },
- { "id": "mon_zombie_shrieker", "fg": 4375, "bg": 4436 },
- { "id": "mon_zombie_survivor", "fg": 4376, "bg": 4436 },
- { "id": "mon_zombie_swat", "fg": 4377, "bg": 4436 },
- { "id": "mon_zombie_thorny", "fg": 4378, "bg": 4436 },
+ "bg": 4394
+ },
+ { "id": "mon_turret_searchlight", "fg": 4400, "bg": 4394 },
+ { "id": "mon_dispatch", "fg": 4401, "bg": 4394 },
+ { "id": "mon_dispatch_military", "fg": 4402, "bg": 4394 },
+ { "id": "mon_fungal_tendril", "fg": 4403, "bg": 4394 },
+ { "id": "mon_fungaloid", "fg": 4404, "bg": 4394 },
+ { "id": "mon_laserturret", "fg": 4405, "bg": 4394 },
+ { "id": "mon_mosquito_giant", "fg": 4406, "bg": 4394 },
+ { "id": "mon_robofac_laserturret_mk1", "fg": 4407, "bg": 4394 },
+ { "id": "mon_turret", "fg": 4408, "bg": 4394 },
+ { "id": "mon_zombie_fungus", "fg": 4409, "bg": 4394 },
+ { "id": "mon_zombie_gasbag_fungus", "fg": 4410, "bg": 4394 },
+ { "id": "mon_zombie_necro", "fg": 4413, "bg": 4394 },
+ { "id": "mon_zombie_master", "fg": 4412, "bg": 4394 },
+ { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 4411 },
{
"id": "mon_triffid",
- "fg": [ { "weight": 100, "sprite": 4379 }, { "weight": 50, "sprite": 4380 } ],
- "bg": 4436
- },
- { "id": "mon_triffid_sprig", "fg": 4381, "bg": 4436 },
- { "id": "mon_triffid_young", "fg": 4382, "bg": 4436 },
- { "id": "mon_zombie_flamer", "fg": 4383, "bg": 4436 },
- {
- "id": "mon_zombie_prisoner",
- "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 }, { "weight": 1, "sprite": 4386 } ],
- "bg": 4436
- },
- { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 4402 },
- { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 4403 },
- { "id": "overlay_wielded_long_pole", "fg": 4408 },
- { "id": "overlay_wielded_pike_copper", "fg": 4409 },
- { "id": "overlay_wielded_pike", "fg": 4410 },
- { "id": "overlay_wielded_pike_wood", "fg": 4411 },
- { "id": "overlay_female_wielded_teleumbrella", "fg": 4412 },
- { "id": "overlay_male_wielded_teleumbrella", "fg": 4413 },
- { "id": "overlay_female_wielded_umbrella", "fg": 4412 },
- { "id": "overlay_male_wielded_umbrella", "fg": 4413 },
- { "id": "overlay_female_wielded_wood_panel", "fg": 4414 },
- { "id": "overlay_male_wielded_wood_panel", "fg": 4415 },
- { "id": "overlay_female_wielded_wood_sheet", "fg": 4416 },
- { "id": "overlay_male_wielded_wood_sheet", "fg": 4417 },
- { "id": "overlay_male_worn_welding_mask_raised", "fg": 4420 },
- { "id": "overlay_female_worn_mossberg_500", "fg": 4421 },
- { "id": "overlay_male_worn_mossberg_500", "fg": 4422 },
- { "id": "airliner_2b_1", "fg": 4427, "bg": 4424, "rotates": false },
- { "id": "airliner_2b", "fg": 4426, "bg": 4428 },
- { "id": "lighthouse_ground", "fg": 4429, "bg": 4425 },
- { "id": "lighthouse_z1", "fg": 4430, "bg": 4424 },
- { "id": "park", "fg": 4431, "bg": 4423 },
+ "fg": [ { "weight": 100, "sprite": 4417 }, { "weight": 50, "sprite": 4418 } ],
+ "bg": 4394
+ },
+ { "id": "mon_triffid_sprig", "fg": 4419, "bg": 4394 },
+ { "id": "mon_triffid_young", "fg": 4420, "bg": 4394 },
+ { "id": "overlay_wielded_long_pole", "fg": 4425 },
+ { "id": "overlay_wielded_pike_copper", "fg": 4426 },
+ { "id": "overlay_wielded_pike", "fg": 4427 },
+ { "id": "overlay_wielded_pike_wood", "fg": 4428 },
+ { "id": "overlay_female_wielded_wood_panel", "fg": 4429 },
+ { "id": "overlay_male_wielded_wood_panel", "fg": 4430 },
+ { "id": "overlay_female_wielded_wood_sheet", "fg": 4431 },
+ { "id": "overlay_male_wielded_wood_sheet", "fg": 4432 },
+ { "id": "airliner_2b_1", "fg": 4437, "bg": 4434, "rotates": false },
+ { "id": "airliner_2b", "fg": 4436, "bg": 4438 },
+ { "id": "lighthouse_ground", "fg": 4439, "bg": 4435 },
+ { "id": "lighthouse_z1", "fg": 4440, "bg": 4434 },
+ { "id": "park", "fg": 4441, "bg": 4433 },
{
"id": [ "horse_farm_isherwood_13", "horse_farm_13", "farm_dairy_twd_4", "farm_stills_3" ],
- "fg": [ 4433, 4432, 4434, 4435 ],
- "bg": 4423,
+ "fg": [ 4443, 4442, 4444, 4445 ],
+ "bg": 4433,
"rotates": true
},
{
@@ -6254,41 +6177,41 @@
"farm_stills_3_2nd",
"farm_stills_3_roof"
],
- "fg": [ 4433, 4432, 4434, 4435 ],
- "bg": 4424,
+ "fg": [ 4443, 4442, 4444, 4445 ],
+ "bg": 4434,
"rotates": true
},
- { "id": "t_atm", "fg": 4445, "bg": 4440 },
- { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 4446, "bg": 4437 },
- { "id": "t_column", "fg": 4447, "bg": 4440 },
+ { "id": "t_atm", "fg": 4456, "bg": 4449 },
+ { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 4457, "bg": 4446 },
+ { "id": "t_column", "fg": 4458, "bg": 4449 },
{
"id": "t_grass_long",
"multitile": true,
- "fg": 4466,
- "bg": 4443,
+ "fg": 4477,
+ "bg": 4452,
"additional_tiles": [
{
"id": "center",
- "bg": 4443,
+ "bg": 4452,
"fg": [
- { "weight": 100, "sprite": 4448 },
- { "weight": 100, "sprite": 4449 },
- { "weight": 100, "sprite": 4450 },
- { "weight": 100, "sprite": 4451 }
+ { "weight": 100, "sprite": 4459 },
+ { "weight": 100, "sprite": 4460 },
+ { "weight": 100, "sprite": 4461 },
+ { "weight": 100, "sprite": 4462 }
]
},
- { "id": "corner", "bg": 4443, "fg": [ 4453, 4455, 4454, 4452 ] },
- { "id": "t_connection", "bg": 4443, "fg": [ 4463, 4465, 4464, 4462 ] },
- { "id": "edge", "bg": 4443, "fg": [ 4457, 4456 ] },
- { "id": "end_piece", "bg": 4443, "fg": [ 4459, 4461, 4460, 4458 ] },
+ { "id": "corner", "bg": 4452, "fg": [ 4464, 4466, 4465, 4463 ] },
+ { "id": "t_connection", "bg": 4452, "fg": [ 4474, 4476, 4475, 4473 ] },
+ { "id": "edge", "bg": 4452, "fg": [ 4468, 4467 ] },
+ { "id": "end_piece", "bg": 4452, "fg": [ 4470, 4472, 4471, 4469 ] },
{
"id": "unconnected",
- "bg": 4443,
+ "bg": 4452,
"fg": [
- { "weight": 100, "sprite": 4466 },
- { "weight": 100, "sprite": 4467 },
- { "weight": 100, "sprite": 4468 },
- { "weight": 100, "sprite": 4469 }
+ { "weight": 100, "sprite": 4477 },
+ { "weight": 100, "sprite": 4478 },
+ { "weight": 100, "sprite": 4479 },
+ { "weight": 100, "sprite": 4480 }
]
}
]
@@ -6296,31 +6219,31 @@
{
"id": "t_grass_long_season_summer",
"multitile": true,
- "fg": 4510,
- "bg": 4442,
+ "fg": 4521,
+ "bg": 4451,
"additional_tiles": [
{
"id": "center",
- "bg": 4442,
+ "bg": 4451,
"fg": [
- { "weight": 100, "sprite": 4492 },
- { "weight": 100, "sprite": 4493 },
- { "weight": 100, "sprite": 4494 },
- { "weight": 100, "sprite": 4495 }
+ { "weight": 100, "sprite": 4503 },
+ { "weight": 100, "sprite": 4504 },
+ { "weight": 100, "sprite": 4505 },
+ { "weight": 100, "sprite": 4506 }
]
},
- { "id": "corner", "bg": 4442, "fg": [ 4497, 4499, 4498, 4496 ] },
- { "id": "t_connection", "bg": 4442, "fg": [ 4507, 4509, 4508, 4506 ] },
- { "id": "edge", "bg": 4442, "fg": [ 4501, 4500 ] },
- { "id": "end_piece", "bg": 4442, "fg": [ 4503, 4505, 4504, 4502 ] },
+ { "id": "corner", "bg": 4451, "fg": [ 4508, 4510, 4509, 4507 ] },
+ { "id": "t_connection", "bg": 4451, "fg": [ 4518, 4520, 4519, 4517 ] },
+ { "id": "edge", "bg": 4451, "fg": [ 4512, 4511 ] },
+ { "id": "end_piece", "bg": 4451, "fg": [ 4514, 4516, 4515, 4513 ] },
{
"id": "unconnected",
- "bg": 4442,
+ "bg": 4451,
"fg": [
- { "weight": 100, "sprite": 4510 },
- { "weight": 100, "sprite": 4511 },
- { "weight": 100, "sprite": 4512 },
- { "weight": 100, "sprite": 4513 }
+ { "weight": 100, "sprite": 4521 },
+ { "weight": 100, "sprite": 4522 },
+ { "weight": 100, "sprite": 4523 },
+ { "weight": 100, "sprite": 4524 }
]
}
]
@@ -6328,64 +6251,64 @@
{
"id": "t_grass_long_season_autumn",
"multitile": true,
- "fg": 4488,
- "bg": 4441,
+ "fg": 4499,
+ "bg": 4450,
"additional_tiles": [
{
"id": "center",
- "bg": 4441,
+ "bg": 4450,
"fg": [
- { "weight": 100, "sprite": 4470 },
- { "weight": 100, "sprite": 4471 },
- { "weight": 100, "sprite": 4472 },
- { "weight": 100, "sprite": 4473 }
+ { "weight": 100, "sprite": 4481 },
+ { "weight": 100, "sprite": 4482 },
+ { "weight": 100, "sprite": 4483 },
+ { "weight": 100, "sprite": 4484 }
]
},
- { "id": "corner", "bg": 4441, "fg": [ 4475, 4477, 4476, 4474 ] },
- { "id": "t_connection", "bg": 4441, "fg": [ 4485, 4487, 4486, 4484 ] },
- { "id": "edge", "bg": 4441, "fg": [ 4479, 4478 ] },
- { "id": "end_piece", "bg": 4441, "fg": [ 4481, 4483, 4482, 4480 ] },
+ { "id": "corner", "bg": 4450, "fg": [ 4486, 4488, 4487, 4485 ] },
+ { "id": "t_connection", "bg": 4450, "fg": [ 4496, 4498, 4497, 4495 ] },
+ { "id": "edge", "bg": 4450, "fg": [ 4490, 4489 ] },
+ { "id": "end_piece", "bg": 4450, "fg": [ 4492, 4494, 4493, 4491 ] },
{
"id": "unconnected",
- "bg": 4441,
+ "bg": 4450,
"fg": [
- { "weight": 100, "sprite": 4488 },
- { "weight": 100, "sprite": 4489 },
- { "weight": 100, "sprite": 4490 },
- { "weight": 100, "sprite": 4491 }
+ { "weight": 100, "sprite": 4499 },
+ { "weight": 100, "sprite": 4500 },
+ { "weight": 100, "sprite": 4501 },
+ { "weight": 100, "sprite": 4502 }
]
}
]
},
- { "id": "t_grass_long_season_winter", "fg": 4438 },
+ { "id": "t_grass_long_season_winter", "fg": 4447 },
{
"id": "t_grass_tall",
"multitile": true,
- "fg": 4532,
- "bg": 4443,
+ "fg": 4543,
+ "bg": 4452,
"additional_tiles": [
{
"id": "center",
- "bg": 4443,
+ "bg": 4452,
"fg": [
- { "weight": 100, "sprite": 4514 },
- { "weight": 100, "sprite": 4515 },
- { "weight": 100, "sprite": 4516 },
- { "weight": 100, "sprite": 4517 }
+ { "weight": 100, "sprite": 4525 },
+ { "weight": 100, "sprite": 4526 },
+ { "weight": 100, "sprite": 4527 },
+ { "weight": 100, "sprite": 4528 }
]
},
- { "id": "corner", "bg": 4443, "fg": [ 4519, 4521, 4520, 4518 ] },
- { "id": "t_connection", "bg": 4443, "fg": [ 4529, 4531, 4530, 4528 ] },
- { "id": "edge", "bg": 4443, "fg": [ 4523, 4522 ] },
- { "id": "end_piece", "bg": 4443, "fg": [ 4525, 4527, 4526, 4524 ] },
+ { "id": "corner", "bg": 4452, "fg": [ 4530, 4532, 4531, 4529 ] },
+ { "id": "t_connection", "bg": 4452, "fg": [ 4540, 4542, 4541, 4539 ] },
+ { "id": "edge", "bg": 4452, "fg": [ 4534, 4533 ] },
+ { "id": "end_piece", "bg": 4452, "fg": [ 4536, 4538, 4537, 4535 ] },
{
"id": "unconnected",
- "bg": 4443,
+ "bg": 4452,
"fg": [
- { "weight": 100, "sprite": 4532 },
- { "weight": 100, "sprite": 4533 },
- { "weight": 100, "sprite": 4534 },
- { "weight": 100, "sprite": 4535 }
+ { "weight": 100, "sprite": 4543 },
+ { "weight": 100, "sprite": 4544 },
+ { "weight": 100, "sprite": 4545 },
+ { "weight": 100, "sprite": 4546 }
]
}
]
@@ -6393,31 +6316,31 @@
{
"id": "t_grass_tall_season_summer",
"multitile": true,
- "fg": 4576,
- "bg": 4442,
+ "fg": 4587,
+ "bg": 4451,
"additional_tiles": [
{
"id": "center",
- "bg": 4442,
+ "bg": 4451,
"fg": [
- { "weight": 100, "sprite": 4558 },
- { "weight": 100, "sprite": 4559 },
- { "weight": 100, "sprite": 4560 },
- { "weight": 100, "sprite": 4561 }
+ { "weight": 100, "sprite": 4569 },
+ { "weight": 100, "sprite": 4570 },
+ { "weight": 100, "sprite": 4571 },
+ { "weight": 100, "sprite": 4572 }
]
},
- { "id": "corner", "bg": 4442, "fg": [ 4563, 4565, 4564, 4562 ] },
- { "id": "t_connection", "bg": 4442, "fg": [ 4573, 4575, 4574, 4572 ] },
- { "id": "edge", "bg": 4442, "fg": [ 4567, 4566 ] },
- { "id": "end_piece", "bg": 4442, "fg": [ 4569, 4571, 4570, 4568 ] },
+ { "id": "corner", "bg": 4451, "fg": [ 4574, 4576, 4575, 4573 ] },
+ { "id": "t_connection", "bg": 4451, "fg": [ 4584, 4586, 4585, 4583 ] },
+ { "id": "edge", "bg": 4451, "fg": [ 4578, 4577 ] },
+ { "id": "end_piece", "bg": 4451, "fg": [ 4580, 4582, 4581, 4579 ] },
{
"id": "unconnected",
- "bg": 4442,
+ "bg": 4451,
"fg": [
- { "weight": 100, "sprite": 4576 },
- { "weight": 100, "sprite": 4577 },
- { "weight": 100, "sprite": 4578 },
- { "weight": 100, "sprite": 4579 }
+ { "weight": 100, "sprite": 4587 },
+ { "weight": 100, "sprite": 4588 },
+ { "weight": 100, "sprite": 4589 },
+ { "weight": 100, "sprite": 4590 }
]
}
]
@@ -6425,448 +6348,530 @@
{
"id": "t_grass_tall_season_autumn",
"multitile": true,
- "fg": 4554,
- "bg": 4441,
+ "fg": 4565,
+ "bg": 4450,
"additional_tiles": [
{
"id": "center",
- "bg": 4441,
+ "bg": 4450,
"fg": [
- { "weight": 100, "sprite": 4536 },
- { "weight": 100, "sprite": 4537 },
- { "weight": 100, "sprite": 4538 },
- { "weight": 100, "sprite": 4539 }
+ { "weight": 100, "sprite": 4547 },
+ { "weight": 100, "sprite": 4548 },
+ { "weight": 100, "sprite": 4549 },
+ { "weight": 100, "sprite": 4550 }
]
},
- { "id": "corner", "bg": 4441, "fg": [ 4541, 4543, 4542, 4540 ] },
- { "id": "t_connection", "bg": 4441, "fg": [ 4551, 4553, 4552, 4550 ] },
- { "id": "edge", "bg": 4441, "fg": [ 4545, 4544 ] },
- { "id": "end_piece", "bg": 4441, "fg": [ 4547, 4549, 4548, 4546 ] },
+ { "id": "corner", "bg": 4450, "fg": [ 4552, 4554, 4553, 4551 ] },
+ { "id": "t_connection", "bg": 4450, "fg": [ 4562, 4564, 4563, 4561 ] },
+ { "id": "edge", "bg": 4450, "fg": [ 4556, 4555 ] },
+ { "id": "end_piece", "bg": 4450, "fg": [ 4558, 4560, 4559, 4557 ] },
{
"id": "unconnected",
- "bg": 4441,
+ "bg": 4450,
"fg": [
- { "weight": 100, "sprite": 4554 },
- { "weight": 100, "sprite": 4555 },
- { "weight": 100, "sprite": 4556 },
- { "weight": 100, "sprite": 4557 }
+ { "weight": 100, "sprite": 4565 },
+ { "weight": 100, "sprite": 4566 },
+ { "weight": 100, "sprite": 4567 },
+ { "weight": 100, "sprite": 4568 }
]
}
]
},
- { "id": "t_grass_tall_season_winter", "fg": 4438 },
- { "id": "t_gutter_downspout", "fg": 4580, "bg": 4443 },
- { "id": "t_gutter_downspout_season_autumn", "fg": 4580, "bg": 4441 },
- { "id": "t_gutter_downspout_season_summer", "fg": 4580, "bg": 4442 },
- { "id": "t_gutter_downspout_season_winter", "fg": 4580, "bg": 4439 },
- { "id": "t_ladder_up", "fg": 4581 },
- { "id": "t_little_column", "fg": 4582, "bg": 4440 },
- { "id": "t_stairs_up", "fg": 4584 },
- { "id": "t_wood_stairs_up", "fg": 4585 },
- { "id": "t_utility_light", "fg": 4586 },
+ { "id": "t_grass_tall_season_winter", "fg": 4447 },
+ { "id": "t_gutter_downspout", "fg": 4591, "bg": 4452 },
+ { "id": "t_gutter_downspout_season_autumn", "fg": 4591, "bg": 4450 },
+ { "id": "t_gutter_downspout_season_summer", "fg": 4591, "bg": 4451 },
+ { "id": "t_gutter_downspout_season_winter", "fg": 4591, "bg": 4448 },
+ { "id": "t_little_column", "fg": 4592, "bg": 4449 },
+ { "id": "t_stairs_up", "fg": 4594 },
+ { "id": "t_wood_stairs_up", "fg": 4595 },
+ { "id": "t_utility_light", "fg": 4596 },
{
"id": "vp_frame_handle",
- "fg": [ 4591, 4593, 4592, 4590 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 4591, 4593, 4592, 4590 ] } ]
- },
- { "id": "vp_saddle_scooter", "fg": [ 4595, 4597, 4596, 4594 ], "rotates": true },
- { "id": "f_dishwasher", "fg": 4131 },
- { "id": "f_wardrobe", "fg": 4133 },
- { "id": "f_treadmill", "fg": 4137 },
- { "id": "f_bigmirror", "fg": 4141 },
- { "id": "f_bigmirror_b", "fg": 4142 },
- { "id": "f_ladder", "fg": 4214 },
- { "id": "f_alien_gasper", "fg": 4224 },
- { "id": "f_glow_boulder", "fg": 4256 },
- { "id": "f_magic_bench", "fg": 4257 },
- { "id": "mon_shadow", "fg": 4262 },
- { "id": "mon_mech_recon", "fg": 4271 },
- { "id": "rid_mon_mech_recon", "fg": 4272 },
- { "id": "mon_gracke", "fg": 4287 },
- { "id": "corpse_mon_zombie_brainless", "fg": 4320 },
- { "id": "mon_zombie_necro_boomer", "fg": 4331 },
- { "id": "mon_zombie_soldier_blackops_1", "fg": 4340 },
- { "id": "mon_zombie_armored", "fg": 4342 },
- { "id": "mon_beekeeper", "fg": 4354 },
- { "id": "mon_robofac_prototype", "fg": 4373 },
- { "id": "overlay_effect_attention", "fg": 4387 },
- { "id": "overlay_effect_boomered", "fg": 4388 },
- { "id": "overlay_effect_earphones", "fg": 4389 },
- { "id": "overlay_effect_evil", "fg": 4390 },
- { "id": "overlay_effect_glare", "fg": 4391 },
- { "id": "overlay_effect_laserlocked", "fg": 4392 },
- { "id": "overlay_effect_playing_instrument", "fg": 4393 },
- { "id": "overlay_effect_sleep", "fg": 4394 },
- { "id": "overlay_effect_slimed", "fg": 4395 },
- { "id": "overlay_effect_teleglow", "fg": 4396 },
- { "id": "overlay_effect_wet", "fg": 4397 },
- { "id": "overlay_female_mutation_HOOVES", "fg": 4398 },
- { "id": "overlay_male_mutation_HOOVES", "fg": 4399 },
- { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 4400 },
- { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 4401 },
- { "id": "overlay_wielded_mattress", "fg": 4404 },
- { "id": "overlay_wielded_fishing_rod_basic", "fg": 4406 },
- { "id": "overlay_wielded_fishing_rod_professional", "fg": 4407 },
- { "id": "overlay_worn_swim_fins", "fg": 4418 },
- { "id": "t_radio_tower", "fg": 4583 },
- { "id": "t_window_stained_blue", "fg": 4587 },
- { "id": "t_window_stained_green", "fg": 4588 },
- { "id": "t_window_stained_red", "fg": 4589 }
- ]
- },
- {
- "file": "human_body.png",
- "//": "range 4608 to 6223",
- "sprite_width": 32,
- "sprite_height": 36,
- "sprite_offset_x": 0,
- "sprite_offset_y": -8,
- "tiles": [
- { "id": "overlay_female_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4609 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4610 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_ANCHOR", "fg": 4611 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_ANCHOR", "fg": 4612 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_BEARD", "fg": 4613 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_BEARD", "fg": 4614 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_CHEVRON", "fg": 4615 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_CHEVRON", "fg": 4616 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4617 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4618 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4619 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4620 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4621 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4622 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_CIRCLE", "fg": 4623 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_CIRCLE", "fg": 4624 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_GOATEE", "fg": 4625 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_GOATEE", "fg": 4626 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4627 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4628 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4629 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4630 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4631 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4632 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4637 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4638 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4633 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4634 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4635 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4636 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_PENCIL", "fg": 4639 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_PENCIL", "fg": 4640 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_ROYALE", "fg": 4641 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_ROYALE", "fg": 4642 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4643 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4644 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4645 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4646 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4647 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4648 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4649 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4650 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4653 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4654 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_VANDYKE", "fg": 4655 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_VANDYKE", "fg": 4656 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_WALRUS", "fg": 4657 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_WALRUS", "fg": 4658 },
- { "id": "overlay_female_mutation_FACIAL_HAIR_ZAPPA", "fg": 4651 },
- { "id": "overlay_male_mutation_FACIAL_HAIR_ZAPPA", "fg": 4652 },
- { "id": "overlay_male_mutation_hair_black_crewcut", "fg": 4660 },
- { "id": "overlay_female_mutation_hair_black_crewcut", "fg": 4659 },
- { "id": "overlay_male_mutation_hair_black_fro", "fg": 4662 },
- { "id": "overlay_female_mutation_hair_black_fro", "fg": 4661 },
- { "id": "overlay_male_mutation_hair_black_long", "fg": 4664 },
- { "id": "overlay_female_mutation_hair_black_long", "fg": 4663 },
- { "id": "overlay_male_mutation_hair_black_medium", "fg": 4666 },
- { "id": "overlay_female_mutation_hair_black_medium", "fg": 4665 },
- { "id": "overlay_male_mutation_hair_black_mohawk", "fg": 4668 },
- { "id": "overlay_female_mutation_hair_black_mohawk", "fg": 4667 },
- { "id": "overlay_male_mutation_hair_black_short", "fg": 4670 },
- { "id": "overlay_female_mutation_hair_black_short", "fg": 4669 },
- { "id": "overlay_male_mutation_hair_blond_crewcut", "fg": 4672 },
- { "id": "overlay_female_mutation_hair_blond_crewcut", "fg": 4671 },
- { "id": "overlay_male_mutation_hair_blond_fro", "fg": 4674 },
- { "id": "overlay_female_mutation_hair_blond_fro", "fg": 4673 },
- { "id": "overlay_male_mutation_hair_blond_long", "fg": 4676 },
- { "id": "overlay_female_mutation_hair_blond_long", "fg": 4675 },
- { "id": "overlay_male_mutation_hair_blond_medium", "fg": 4678 },
- { "id": "overlay_female_mutation_hair_blond_medium", "fg": 4677 },
- { "id": "overlay_male_mutation_hair_blond_mohawk", "fg": 4680 },
- { "id": "overlay_female_mutation_hair_blond_mohawk", "fg": 4679 },
- { "id": "overlay_male_mutation_hair_blond_short", "fg": 4682 },
- { "id": "overlay_female_mutation_hair_blond_short", "fg": 4681 },
- { "id": "overlay_male_mutation_hair_brown_crewcut", "fg": 4684 },
- { "id": "overlay_female_mutation_hair_brown_crewcut", "fg": 4683 },
- { "id": "overlay_male_mutation_hair_brown_fro", "fg": 4686 },
- { "id": "overlay_female_mutation_hair_brown_fro", "fg": 4685 },
- { "id": "overlay_male_mutation_hair_brown_long", "fg": 4688 },
- { "id": "overlay_female_mutation_hair_brown_long", "fg": 4687 },
- { "id": "overlay_male_mutation_hair_brown_medium", "fg": 4690 },
- { "id": "overlay_female_mutation_hair_brown_medium", "fg": 4689 },
- { "id": "overlay_male_mutation_hair_brown_mohawk", "fg": 4692 },
- { "id": "overlay_female_mutation_hair_brown_mohawk", "fg": 4691 },
- { "id": "overlay_male_mutation_hair_brown_short", "fg": 4694 },
- { "id": "overlay_female_mutation_hair_brown_short", "fg": 4693 },
- { "id": "overlay_male_mutation_hair_gray_crewcut", "fg": 4696 },
- { "id": "overlay_female_mutation_hair_gray_crewcut", "fg": 4695 },
- { "id": "overlay_male_mutation_hair_gray_fro", "fg": 4698 },
- { "id": "overlay_female_mutation_hair_gray_fro", "fg": 4697 },
- { "id": "overlay_male_mutation_hair_gray_long", "fg": 4700 },
- { "id": "overlay_female_mutation_hair_gray_long", "fg": 4699 },
- { "id": "overlay_male_mutation_hair_gray_medium", "fg": 4702 },
- { "id": "overlay_female_mutation_hair_gray_medium", "fg": 4701 },
- { "id": "overlay_male_mutation_hair_gray_mohawk", "fg": 4704 },
- { "id": "overlay_female_mutation_hair_gray_mohawk", "fg": 4703 },
- { "id": "overlay_male_mutation_hair_gray_short", "fg": 4706 },
- { "id": "overlay_female_mutation_hair_gray_short", "fg": 4705 },
- { "id": "overlay_male_mutation_hair_red_crewcut", "fg": 4708 },
- { "id": "overlay_female_mutation_hair_red_crewcut", "fg": 4707 },
- { "id": "overlay_male_mutation_hair_red_fro", "fg": 4710 },
- { "id": "overlay_female_mutation_hair_red_fro", "fg": 4709 },
- { "id": "overlay_male_mutation_hair_red_long", "fg": 4712 },
- { "id": "overlay_female_mutation_hair_red_long", "fg": 4711 },
- { "id": "overlay_male_mutation_hair_red_medium", "fg": 4714 },
- { "id": "overlay_female_mutation_hair_red_medium", "fg": 4713 },
- { "id": "overlay_male_mutation_hair_red_mohawk", "fg": 4716 },
- { "id": "overlay_female_mutation_hair_red_mohawk", "fg": 4715 },
- { "id": "overlay_male_mutation_hair_red_short", "fg": 4718 },
- { "id": "overlay_female_mutation_hair_red_short", "fg": 4717 },
- { "id": "overlay_male_mutation_hair_white_crewcut", "fg": 4720 },
- { "id": "overlay_female_mutation_hair_white_crewcut", "fg": 4719 },
- { "id": "overlay_male_mutation_hair_white_fro", "fg": 4722 },
- { "id": "overlay_female_mutation_hair_white_fro", "fg": 4721 },
- { "id": "overlay_male_mutation_hair_white_long", "fg": 4724 },
- { "id": "overlay_female_mutation_hair_white_long", "fg": 4723 },
- { "id": "overlay_male_mutation_hair_white_medium", "fg": 4726 },
- { "id": "overlay_female_mutation_hair_white_medium", "fg": 4725 },
- { "id": "overlay_male_mutation_hair_white_mohawk", "fg": 4728 },
- { "id": "overlay_female_mutation_hair_white_mohawk", "fg": 4727 },
- { "id": "overlay_male_mutation_hair_white_short", "fg": 4730 },
- { "id": "overlay_female_mutation_hair_white_short", "fg": 4729 },
- { "id": "overlay_female_mutation_ARACHNID_ARMS", "fg": 4731 },
- { "id": "overlay_male_mutation_ARACHNID_ARMS", "fg": 4732 },
- { "id": "overlay_female_mutation_BEAK", "fg": 4739 },
- { "id": "overlay_male_mutation_BEAK", "fg": 4740 },
- { "id": "overlay_female_mutation_BEAK_HUM", "fg": 4741 },
- { "id": "overlay_male_mutation_BEAK_HUM", "fg": 4742 },
- { "id": "overlay_female_mutation_BEAK_PECK", "fg": 4743 },
- { "id": "overlay_male_mutation_BEAK_PECK", "fg": 4744 },
- { "id": "overlay_female_mutation_BIRD_EYE", "fg": 4745 },
- { "id": "overlay_male_mutation_BIRD_EYE", "fg": 4746 },
- { "id": "overlay_female_mutation_FANGS", "fg": 4749 },
- { "id": "overlay_male_mutation_FANGS", "fg": 4750 },
- { "id": "overlay_female_mutation_LEAVES", "fg": 4755 },
- { "id": "overlay_male_mutation_LEAVES", "fg": 4756 },
- { "id": "overlay_female_mutation_LIZ_EYE", "fg": 4757 },
- { "id": "overlay_male_mutation_LIZ_EYE", "fg": 4758 },
- { "id": "overlay_female_mutation_MUZZLE_LONG", "fg": 4763 },
- { "id": "overlay_male_mutation_MUZZLE_LONG", "fg": 4764 },
- { "id": "overlay_female_mutation_TAIL_THICK", "fg": 4771 },
- { "id": "overlay_male_mutation_TAIL_THICK", "fg": 4772 },
- { "id": "overlay_female_mutation_TALONS", "fg": 4773 },
- { "id": "overlay_male_mutation_TALONS", "fg": 4774 },
- { "id": "overlay_female_mutation_VINES1", "fg": 4775 },
- { "id": "overlay_male_mutation_VINES1", "fg": 4776 },
- { "id": "overlay_female_mutation_WINGS_BIRD", "fg": 4777 },
- { "id": "overlay_male_mutation_WINGS_BIRD", "fg": 4778 },
- { "id": "overlay_female_mutation_CHITIN", "fg": 4781 },
- { "id": "overlay_male_mutation_CHITIN", "fg": 4782 },
- { "id": "overlay_female_mutation_CHITIN2", "fg": 4779 },
- { "id": "overlay_male_mutation_CHITIN2", "fg": 4780 },
- { "id": "overlay_female_mutation_FEATHERS", "fg": 4783 },
- { "id": "overlay_male_mutation_FEATHERS", "fg": 4784 },
- { "id": "overlay_female_mutation_SCALES", "fg": 4793 },
- { "id": "overlay_male_mutation_SCALES", "fg": 4794 },
- { "id": "overlay_female_mutation_PLANTSKIN", "fg": 4791 },
- { "id": "overlay_male_mutation_PLANTSKIN", "fg": 4792 },
- { "id": "overlay_female_mutation_SKIN_DARK", "fg": 4795 },
- { "id": "overlay_male_mutation_SKIN_DARK", "fg": 4796 },
- { "id": "overlay_female_mutation_SKIN_LIGHT", "fg": 4797 },
- { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 4798 },
- { "id": "overlay_female_mutation_SKIN_PINK", "fg": 4799 },
- { "id": "overlay_male_mutation_SKIN_PINK", "fg": 4800 },
- { "id": "overlay_female_mutation_SKIN_TAN", "fg": 4801 },
- { "id": "overlay_male_mutation_SKIN_TAN", "fg": 4802 },
- { "id": "overlay_female_mutation_PALE", "fg": 4789 },
- { "id": "overlay_male_mutation_PALE", "fg": 4790 },
- { "id": "overlay_female_mutation_ALBINO", "fg": 4785 },
- { "id": "overlay_male_mutation_ALBINO", "fg": 4787 },
- { "id": "overlay_wielded_arming_sword_fake", "fg": 4859 },
- { "id": "overlay_wielded_arming_sword_inferior", "fg": 4859 },
- { "id": "overlay_wielded_battleaxe_inferior", "fg": 4808 },
- { "id": "overlay_wielded_battleaxe_fake", "fg": 4808 },
- { "id": "overlay_wielded_broadsword_inferior", "fg": 5157 },
- { "id": "overlay_wielded_broadsword_fake", "fg": 5157 },
- { "id": "overlay_wielded_cavalry_sabre_fake", "fg": 4812 },
- { "id": "overlay_wielded_cutlass_fake", "fg": 4814 },
- { "id": "overlay_wielded_cutlass_inferior", "fg": 4814 },
- { "id": "overlay_wielded_estoc_inferior", "fg": 5206 },
- { "id": "overlay_wielded_estoc_fake", "fg": 5206 },
- { "id": "overlay_female_wielded_halberd_fake", "fg": 5234 },
- { "id": "overlay_male_wielded_halberd_fake", "fg": 5235 },
- { "id": "overlay_wielded_jian_fake", "fg": 4820 },
- { "id": "overlay_wielded_jian_inferior", "fg": 4820 },
- { "id": "overlay_wielded_katana_fake", "fg": 5254 },
- { "id": "overlay_wielded_katana_inferior", "fg": 5254 },
- { "id": "overlay_wielded_kris_fake", "fg": 5260 },
- { "id": "overlay_wielded_longsword_fake", "fg": 5263 },
- { "id": "overlay_wielded_longsword_inferior", "fg": 5263 },
- { "id": "overlay_female_wielded_lucern_hammerfake", "fg": 5264 },
- { "id": "overlay_male_wielded_lucern_hammerfake", "fg": 5265 },
- { "id": "overlay_wielded_mace_inferior", "fg": 5266 },
- { "id": "overlay_wielded_mace_fake", "fg": 5266 },
- { "id": "overlay_wielded_morningstar_fake", "fg": 5267 },
- { "id": "overlay_wielded_morningstar_inferior", "fg": 5267 },
- { "id": "overlay_female_wielded_naginata_fake", "fg": 4831 },
- { "id": "overlay_male_wielded_naginata_fake", "fg": 4832 },
- { "id": "overlay_female_wielded_naginata_inferior", "fg": 4831 },
- { "id": "overlay_male_wielded_naginata_inferior", "fg": 4832 },
- { "id": "overlay_wielded_nodachi_inferior", "fg": 5318 },
- { "id": "overlay_wielded_nodachi_fake", "fg": 5318 },
- { "id": "overlay_wielded_pike_fake", "fg": 4410 },
- { "id": "overlay_wielded_pike_inferior", "fg": 4410 },
- { "id": "overlay_wielded_rapier_fake", "fg": 5346 },
- { "id": "overlay_wielded_tanto_inferior", "fg": 5446 },
- { "id": "overlay_wielded_tanto_fake", "fg": 5446 },
- { "id": "overlay_wielded_wakizashi_fake", "fg": 5470 },
- { "id": "overlay_wielded_wakizashi_inferior", "fg": 5470 },
- { "id": "overlay_wielded_zweihander_fake", "fg": 5492 },
- { "id": "overlay_wielded_zweihander_inferior", "fg": 5492 },
- { "id": "overlay_female_wielded_1st_aid", "fg": 4803 },
- { "id": "overlay_male_wielded_1st_aid", "fg": 4804 },
- { "id": "overlay_female_wielded_2x4", "fg": 4805 },
- { "id": "overlay_male_wielded_2x4", "fg": 4806 },
- { "id": "overlay_wielded_bowling_axe", "fg": 4807 },
- { "id": "overlay_wielded_battleaxe", "fg": 4808 },
- { "id": "overlay_wielded_knife_butcher", "fg": 4809 },
- { "id": "overlay_female_wielded_butterfly_swords", "fg": 4810 },
- { "id": "overlay_male_wielded_butterfly_swords", "fg": 4811 },
- { "id": "overlay_wielded_cavalry_sabre", "fg": 4812 },
- { "id": "overlay_wielded_sword_crude", "fg": 4813 },
- { "id": "overlay_wielded_cutlass", "fg": 4814 },
- { "id": "overlay_wielded_dao", "fg": 4815 },
- { "id": "overlay_wielded_diveknife", "fg": 4816 },
- { "id": "overlay_female_wielded_glaive", "fg": 4817 },
- { "id": "overlay_male_wielded_glaive", "fg": 4818 },
- { "id": "overlay_wielded_glass_shiv", "fg": 4819 },
- { "id": "overlay_wielded_jian", "fg": 4820 },
- { "id": "overlay_wielded_khopesh", "fg": 4821 },
- { "id": "overlay_wielded_kukri", "fg": 4822 },
- { "id": "overlay_wielded_lajatang", "fg": 4823 },
- { "id": "overlay_wielded_machete", "fg": 4824 },
- { "id": "overlay_female_wielded_makeshift_halberd", "fg": 4825 },
- { "id": "overlay_male_wielded_makeshift_halberd", "fg": 4826 },
- { "id": "overlay_wielded_makeshift_machete", "fg": 4827 },
- { "id": "overlay_wielded_glass_macuahuitl", "fg": 4828 },
- { "id": "overlay_female_wielded_makeshift_scythe_war", "fg": 4829 },
- { "id": "overlay_male_wielded_makeshift_scythe_war", "fg": 4830 },
- { "id": "overlay_female_wielded_naginata", "fg": 4831 },
- { "id": "overlay_male_wielded_naginata", "fg": 4832 },
- { "id": "overlay_wielded_knuckle_katar", "fg": 4833 },
- { "id": "overlay_wielded_scimitar", "fg": 4834 },
- { "id": "overlay_wielded_scythe", "fg": 4835 },
- { "id": "overlay_wielded_survivor_machete", "fg": 4836 },
- { "id": "overlay_wielded_sword_bayonet", "fg": 4837 },
- { "id": "overlay_female_wielded_bagh_nakha", "fg": 4838 },
- { "id": "overlay_male_wielded_bagh_nakha", "fg": 4839 },
- { "id": "overlay_female_wielded_scythe_war", "fg": 4840 },
- { "id": "overlay_male_wielded_scythe_war", "fg": 4841 },
- { "id": "overlay_wielded_sword_xiphos", "fg": 4842 },
- { "id": "overlay_wielded_acoustic_guitar", "fg": 4847 },
- { "id": "overlay_worn_acoustic_guitar", "fg": 4847 },
- { "id": "overlay_female_wielded_stepladder", "fg": 4857 },
- { "id": "overlay_male_wielded_stepladder", "fg": 4858 },
- { "id": "overlay_wielded_arming_sword", "fg": 4859 },
- { "id": [ "overlay_wielded_m16_auto_rifle_var_acr", "overlay_wielded_acr_300blk" ], "fg": 4963 },
- { "id": [ "overlay_wielded_ak47", "overlay_wielded_aksemi" ], "fg": 4873 },
- { "id": [ "overlay_wielded_carbine_flintlock", "overlay_wielded_carbine_flintlock_double" ], "fg": 4891 },
- { "id": [ "overlay_wielded_hk_mp5", "overlay_wielded_hk_mp5_10_semi" ], "fg": 4937 },
- { "id": [ "overlay_wielded_hptjcp", "overlay_wielded_hptjhp" ], "fg": 4945 },
- { "id": [ "overlay_wielded_longrifle_flintlock", "overlay_wielded_rifle_flintlock" ], "fg": 4959 },
- { "id": [ "overlay_wielded_m16a4", "overlay_wielded_m16_auto_rifle_var_m16a3" ], "fg": 4964 },
- { "id": [ "overlay_wielded_m1911", "overlay_wielded_m1911a1_38super" ], "fg": 4969 },
- { "id": [ "overlay_wielded_m249", "overlay_wielded_m249_semi" ], "fg": 4977 },
- { "id": [ "overlay_wielded_m60", "overlay_wielded_m60_semi" ], "fg": 4988 },
- { "id": [ "overlay_wielded_mp40", "overlay_wielded_mp40semi" ], "fg": 5013 },
+ "fg": [ 4605, 4607, 4606, 4604 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4605, 4607, 4606, 4604 ] } ]
+ },
{
- "id": [
- "overlay_wielded_rifle_9mm",
- "overlay_wielded_rifle_3006",
- "overlay_wielded_rifle_45",
- "overlay_wielded_rifle_22",
- "overlay_wielded_rifle_40",
- "overlay_wielded_rifle_44",
- "overlay_wielded_rifle_38",
- "overlay_wielded_rifle_223"
- ],
- "fg": 5029
- },
- { "id": [ "overlay_wielded_slamfire_shotgun", "overlay_wielded_slamfire_shotgun_d" ], "fg": 5081 },
- { "id": "overlay_wielded_fire_ax", "fg": 5128 },
- { "id": "overlay_wielded_ax", "fg": 5130 },
- { "id": "overlay_wielded_hatchet", "fg": 5129 },
- { "id": "overlay_wielded_bag_canvas", "fg": 5131 },
- { "id": "overlay_wielded_bag_plastic", "fg": 5132 },
- { "id": "overlay_wielded_knife_baselard", "fg": 5133 },
- { "id": "overlay_female_wielded_bat", "fg": 5134 },
- { "id": "overlay_male_wielded_bat", "fg": 5135 },
- { "id": "overlay_female_wielded_bat_metal", "fg": 5136 },
- { "id": "overlay_male_wielded_bat_metal", "fg": 5137 },
- { "id": "overlay_wielded_bone_knife", "fg": 5138 },
- { "id": "overlay_wielded_bottle_glass", "fg": 5139 },
- { "id": "overlay_wielded_bottle_plastic", "fg": 5140 },
- { "id": "overlay_wielded_bottle_plastic_small", "fg": 5141 },
- { "id": "overlay_wielded_compositebow", "fg": 5142 },
- { "id": "overlay_wielded_reflexbow", "fg": 5143 },
- { "id": "overlay_wielded_compgreatbow", "fg": 5144 },
- { "id": "overlay_wielded_compbow", "fg": 5145 },
- { "id": "overlay_wielded_compbow_high", "fg": 5145 },
- { "id": "overlay_wielded_compbow_low", "fg": 5145 },
- { "id": "overlay_wielded_hybridbow", "fg": 5146 },
- { "id": "overlay_wielded_longbow", "fg": 5147 },
- { "id": "overlay_wielded_recurbow", "fg": 5148 },
- { "id": "overlay_wielded_reflexrecurvebow", "fg": 5149 },
- { "id": "overlay_wielded_shortbow", "fg": 5150 },
- { "id": "overlay_wielded_selfbow", "fg": 5151 },
- { "id": "overlay_wielded_woodgreatbow", "fg": 4405 },
- { "id": "overlay_wielded_box_large", "fg": 5152 },
- { "id": "overlay_wielded_box_medium", "fg": 5153 },
- { "id": "overlay_wielded_box_small", "fg": 5154 },
- { "id": "overlay_wielded_brick", "fg": 5156 },
- { "id": "overlay_wielded_broadsword", "fg": 5157 },
- { "id": "overlay_wielded_broom", "fg": 5158 },
- { "id": "overlay_female_wielded_bwirebat", "fg": 5159 },
- { "id": "overlay_male_wielded_bwirebat", "fg": 5160 },
- { "id": [ "overlay_female_wielded_cestus", "overlay_female_worn_cestus" ], "fg": 5183 },
- { "id": [ "overlay_male_wielded_cestus", "overlay_male_worn_cestus" ], "fg": 5184 },
- { "id": "overlay_female_wielded_chainsaw_off", "fg": 5185 },
- { "id": "overlay_male_wielded_chainsaw_off", "fg": 5186 },
- { "id": "overlay_wielded_coffeemaker", "fg": 5187 },
- { "id": "overlay_wielded_knife_combat", "fg": 5188 },
- { "id": "overlay_wielded_knife_combat_mod", "fg": 5188 },
- { "id": "overlay_wielded_copper_knife", "fg": 5189 },
- { "id": "overlay_female_wielded_corpse_generic_human", "fg": 5190 },
- { "id": "overlay_male_wielded_corpse_generic_human", "fg": 5191 },
+ "id": "vp_stowboard_ne",
+ "fg": [ 4613, 4616, 4615, 4614 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4613, 4616, 4615, 4614 ] } ]
+ },
{
- "id": [ "overlay_wielded_corpse_mon_ant", "overlay_wielded_corpse_mon_ant_soldier", "overlay_wielded_corpse_mon_ant_queen" ],
- "fg": 5193
+ "id": "vp_stowboard_nw",
+ "fg": [ 4617, 4620, 4619, 4618 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4617, 4620, 4619, 4618 ] } ]
},
{
- "id": [
- "overlay_wielded_corpse_mon_ant_acid",
- "overlay_wielded_corpse_mon_ant_acid_soldier",
- "overlay_wielded_corpse_mon_ant_acid_queen"
- ],
- "fg": 5192
+ "id": "vp_stowboard_se",
+ "fg": [ 4621, 4623, 4617, 4622 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4621, 4623, 4617, 4622 ] } ]
},
{
- "id": [
- "overlay_male_wielded_corpse_mon_zombie",
- "overlay_male_wielded_corpse_mon_zombie_grappler",
- "overlay_male_wielded_corpse_mon_zombie_biter",
- "overlay_male_wielded_corpse_mon_zombie_tough",
+ "id": "vp_stowboard_sw",
+ "fg": [ 4624, 4626, 4613, 4625 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4624, 4626, 4613, 4625 ] } ]
+ },
+ {
+ "id": "vp_stowboard_vertical_left",
+ "fg": [ 4627, 4629, 4630, 4628 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4627, 4629, 4630, 4628 ] } ]
+ },
+ {
+ "id": "vp_stowboard_vertical_right",
+ "fg": [ 4630, 4628, 4627, 4629 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4630, 4628, 4627, 4629 ] } ]
+ },
+ {
+ "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ],
+ "fg": [ 4608, 4631, 4608, 4631 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4608, 4631, 4608, 4631 ] } ]
+ },
+ {
+ "id": "vp_stowboard_horizontal_front",
+ "fg": [ 4608, 4611, 4610, 4609 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4608, 4611, 4610, 4609 ] } ]
+ },
+ {
+ "id": "vp_stowboard_horizontal_rear",
+ "fg": [ 4612, 4609, 4608, 4611 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4612, 4609, 4608, 4611 ] } ]
+ },
+ {
+ "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ],
+ "fg": [ 4631, 4608, 4631, 4608 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4631, 4608, 4631, 4608 ] } ]
+ },
+ {
+ "id": "vp_stowboard_wheel_left",
+ "fg": [ 4611, 4632, 4609, 4628 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4611, 4632, 4609, 4628 ] } ]
+ },
+ {
+ "id": "vp_stowboard_wheel_right",
+ "fg": [ 4609, 4628, 4611, 4632 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 4609, 4628, 4611, 4632 ] } ]
+ },
+ {
+ "id": "vp_door_trunk",
+ "fg": [ 4633, 4640, 4639, 4638 ],
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "open", "fg": [ 4634, 4637, 4636, 4635 ] },
+ { "id": "broken", "fg": [ 4603, 4603, 4603, 4603 ], "bg": [ 4634, 4637, 4636, 4635 ] }
+ ]
+ },
+ {
+ "id": "vp_door_trunk_horizontal_2",
+ "fg": [ 4641, 4648, 4647, 4646 ],
+ "multitile": true,
+ "additional_tiles": [
+ { "id": "open", "fg": [ 4642, 4645, 4644, 4643 ] },
+ { "id": "broken", "fg": [ 4603, 4603, 4603, 4603 ], "bg": [ 4642, 4645, 4644, 4643 ] }
+ ]
+ },
+ { "id": "f_dishwasher", "fg": 4259 },
+ { "id": "f_wardrobe", "fg": 4261 },
+ { "id": "f_treadmill", "fg": 4265 },
+ { "id": "f_bigmirror", "fg": 4269 },
+ { "id": "f_bigmirror_b", "fg": 4270 },
+ { "id": "f_canvas_floor", "fg": 4277 },
+ { "id": "f_ladder", "fg": 4343 },
+ { "id": "f_alien_gasper", "fg": 4353 },
+ { "id": "f_street_light", "fg": 4385 },
+ { "id": "f_traffic_light", "fg": 4386 },
+ { "id": "f_glow_boulder", "fg": 4387 },
+ { "id": "f_magic_bench", "fg": 4388 },
+ { "id": "mon_mech_combat", "fg": 4390 },
+ { "id": "mon_mech_recon", "fg": 4391 },
+ { "id": "rid_mon_mech_combat", "fg": 4392 },
+ { "id": "rid_mon_mech_recon", "fg": 4393 },
+ { "id": "mon_gracke", "fg": 4399 },
+ { "id": "mon_zombie_necro_boomer", "fg": 4414 },
+ { "id": "mon_zombie_soldier_blackops_1", "fg": 4415 },
+ { "id": "mon_robofac_prototype", "fg": 4416 },
+ { "id": "overlay_effect_playing_instrument", "fg": 4421 },
+ { "id": "overlay_wielded_mattress", "fg": 4422 },
+ { "id": "overlay_wielded_fishing_rod_basic", "fg": 4423 },
+ { "id": "overlay_wielded_fishing_rod_professional", "fg": 4424 },
+ { "id": "t_ladder_up", "fg": 4454 },
+ { "id": "t_ladder_up_down", "fg": 4455 },
+ { "id": "t_radio_tower", "fg": 4593 },
+ { "id": "t_window_stained_blue", "fg": 4597 },
+ { "id": "t_window_stained_green", "fg": 4598 },
+ { "id": "t_window_stained_red", "fg": 4599 },
+ { "id": "crack_glass_center_tall", "fg": 4600 },
+ { "id": "crack_glass_left_tall", "fg": 4601 },
+ { "id": "crack_glass_right_tall", "fg": 4602 },
+ { "id": "vp_travois", "fg": 4649 }
+ ]
+ },
+ {
+ "file": "human_body.png",
+ "//": "range 4656 to 6287",
+ "sprite_width": 32,
+ "sprite_height": 36,
+ "sprite_offset_x": 0,
+ "sprite_offset_y": -8,
+ "tiles": [
+ { "id": "overlay_female_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4661 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4662 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_ANCHOR", "fg": 4663 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_ANCHOR", "fg": 4664 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_BEARD", "fg": 4665 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_BEARD", "fg": 4666 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_CHEVRON", "fg": 4667 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_CHEVRON", "fg": 4668 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4669 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4670 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4671 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4672 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4673 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4674 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_CIRCLE", "fg": 4675 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_CIRCLE", "fg": 4676 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_GOATEE", "fg": 4677 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_GOATEE", "fg": 4678 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4679 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4680 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4681 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4682 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4683 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4684 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4689 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4690 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4685 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4686 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4687 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4688 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_PENCIL", "fg": 4691 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_PENCIL", "fg": 4692 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_ROYALE", "fg": 4693 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_ROYALE", "fg": 4694 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4695 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4696 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4697 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4698 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4699 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4700 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4701 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4702 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4705 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4706 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_VANDYKE", "fg": 4707 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_VANDYKE", "fg": 4708 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_WALRUS", "fg": 4709 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_WALRUS", "fg": 4710 },
+ { "id": "overlay_female_mutation_FACIAL_HAIR_ZAPPA", "fg": 4703 },
+ { "id": "overlay_male_mutation_FACIAL_HAIR_ZAPPA", "fg": 4704 },
+ { "id": "overlay_male_mutation_hair_black_crewcut", "fg": 4712 },
+ { "id": "overlay_female_mutation_hair_black_crewcut", "fg": 4711 },
+ { "id": "overlay_male_mutation_hair_black_fro", "fg": 4714 },
+ { "id": "overlay_female_mutation_hair_black_fro", "fg": 4713 },
+ { "id": "overlay_male_mutation_hair_black_long", "fg": 4716 },
+ { "id": "overlay_female_mutation_hair_black_long", "fg": 4715 },
+ { "id": "overlay_male_mutation_hair_black_medium", "fg": 4718 },
+ { "id": "overlay_female_mutation_hair_black_medium", "fg": 4717 },
+ { "id": "overlay_male_mutation_hair_black_mohawk", "fg": 4720 },
+ { "id": "overlay_female_mutation_hair_black_mohawk", "fg": 4719 },
+ { "id": "overlay_male_mutation_hair_black_short", "fg": 4722 },
+ { "id": "overlay_female_mutation_hair_black_short", "fg": 4721 },
+ { "id": "overlay_male_mutation_hair_blond_crewcut", "fg": 4724 },
+ { "id": "overlay_female_mutation_hair_blond_crewcut", "fg": 4723 },
+ { "id": "overlay_male_mutation_hair_blond_fro", "fg": 4726 },
+ { "id": "overlay_female_mutation_hair_blond_fro", "fg": 4725 },
+ { "id": "overlay_male_mutation_hair_blond_long", "fg": 4728 },
+ { "id": "overlay_female_mutation_hair_blond_long", "fg": 4727 },
+ { "id": "overlay_male_mutation_hair_blond_medium", "fg": 4730 },
+ { "id": "overlay_female_mutation_hair_blond_medium", "fg": 4729 },
+ { "id": "overlay_male_mutation_hair_blond_mohawk", "fg": 4732 },
+ { "id": "overlay_female_mutation_hair_blond_mohawk", "fg": 4731 },
+ { "id": "overlay_male_mutation_hair_blond_short", "fg": 4734 },
+ { "id": "overlay_female_mutation_hair_blond_short", "fg": 4733 },
+ { "id": "overlay_male_mutation_hair_brown_crewcut", "fg": 4736 },
+ { "id": "overlay_female_mutation_hair_brown_crewcut", "fg": 4735 },
+ { "id": "overlay_male_mutation_hair_brown_fro", "fg": 4738 },
+ { "id": "overlay_female_mutation_hair_brown_fro", "fg": 4737 },
+ { "id": "overlay_male_mutation_hair_brown_long", "fg": 4740 },
+ { "id": "overlay_female_mutation_hair_brown_long", "fg": 4739 },
+ { "id": "overlay_male_mutation_hair_brown_medium", "fg": 4742 },
+ { "id": "overlay_female_mutation_hair_brown_medium", "fg": 4741 },
+ { "id": "overlay_male_mutation_hair_brown_mohawk", "fg": 4744 },
+ { "id": "overlay_female_mutation_hair_brown_mohawk", "fg": 4743 },
+ { "id": "overlay_male_mutation_hair_brown_short", "fg": 4746 },
+ { "id": "overlay_female_mutation_hair_brown_short", "fg": 4745 },
+ { "id": "overlay_male_mutation_hair_gray_crewcut", "fg": 4748 },
+ { "id": "overlay_female_mutation_hair_gray_crewcut", "fg": 4747 },
+ { "id": "overlay_male_mutation_hair_gray_fro", "fg": 4750 },
+ { "id": "overlay_female_mutation_hair_gray_fro", "fg": 4749 },
+ { "id": "overlay_male_mutation_hair_gray_long", "fg": 4752 },
+ { "id": "overlay_female_mutation_hair_gray_long", "fg": 4751 },
+ { "id": "overlay_male_mutation_hair_gray_medium", "fg": 4754 },
+ { "id": "overlay_female_mutation_hair_gray_medium", "fg": 4753 },
+ { "id": "overlay_male_mutation_hair_gray_mohawk", "fg": 4756 },
+ { "id": "overlay_female_mutation_hair_gray_mohawk", "fg": 4755 },
+ { "id": "overlay_male_mutation_hair_gray_short", "fg": 4758 },
+ { "id": "overlay_female_mutation_hair_gray_short", "fg": 4757 },
+ { "id": "overlay_male_mutation_hair_red_crewcut", "fg": 4760 },
+ { "id": "overlay_female_mutation_hair_red_crewcut", "fg": 4759 },
+ { "id": "overlay_male_mutation_hair_red_fro", "fg": 4762 },
+ { "id": "overlay_female_mutation_hair_red_fro", "fg": 4761 },
+ { "id": "overlay_male_mutation_hair_red_long", "fg": 4764 },
+ { "id": "overlay_female_mutation_hair_red_long", "fg": 4763 },
+ { "id": "overlay_male_mutation_hair_red_medium", "fg": 4766 },
+ { "id": "overlay_female_mutation_hair_red_medium", "fg": 4765 },
+ { "id": "overlay_male_mutation_hair_red_mohawk", "fg": 4768 },
+ { "id": "overlay_female_mutation_hair_red_mohawk", "fg": 4767 },
+ { "id": "overlay_male_mutation_hair_red_short", "fg": 4770 },
+ { "id": "overlay_female_mutation_hair_red_short", "fg": 4769 },
+ { "id": "overlay_male_mutation_hair_white_crewcut", "fg": 4772 },
+ { "id": "overlay_female_mutation_hair_white_crewcut", "fg": 4771 },
+ { "id": "overlay_male_mutation_hair_white_fro", "fg": 4774 },
+ { "id": "overlay_female_mutation_hair_white_fro", "fg": 4773 },
+ { "id": "overlay_male_mutation_hair_white_long", "fg": 4776 },
+ { "id": "overlay_female_mutation_hair_white_long", "fg": 4775 },
+ { "id": "overlay_male_mutation_hair_white_medium", "fg": 4778 },
+ { "id": "overlay_female_mutation_hair_white_medium", "fg": 4777 },
+ { "id": "overlay_male_mutation_hair_white_mohawk", "fg": 4780 },
+ { "id": "overlay_female_mutation_hair_white_mohawk", "fg": 4779 },
+ { "id": "overlay_male_mutation_hair_white_short", "fg": 4782 },
+ { "id": "overlay_female_mutation_hair_white_short", "fg": 4781 },
+ { "id": "overlay_female_mutation_ARACHNID_ARMS", "fg": 4783 },
+ { "id": "overlay_male_mutation_ARACHNID_ARMS", "fg": 4784 },
+ { "id": "overlay_female_mutation_BEAK", "fg": 4791 },
+ { "id": "overlay_male_mutation_BEAK", "fg": 4792 },
+ { "id": "overlay_female_mutation_BEAK_HUM", "fg": 4793 },
+ { "id": "overlay_male_mutation_BEAK_HUM", "fg": 4794 },
+ { "id": "overlay_female_mutation_BEAK_PECK", "fg": 4795 },
+ { "id": "overlay_male_mutation_BEAK_PECK", "fg": 4796 },
+ { "id": "overlay_female_mutation_BIRD_EYE", "fg": 4797 },
+ { "id": "overlay_male_mutation_BIRD_EYE", "fg": 4798 },
+ { "id": "overlay_female_mutation_FANGS", "fg": 4801 },
+ { "id": "overlay_male_mutation_FANGS", "fg": 4802 },
+ { "id": "overlay_female_mutation_LEAVES", "fg": 4807 },
+ { "id": "overlay_male_mutation_LEAVES", "fg": 4808 },
+ { "id": "overlay_female_mutation_LIZ_EYE", "fg": 4809 },
+ { "id": "overlay_male_mutation_LIZ_EYE", "fg": 4810 },
+ { "id": "overlay_female_mutation_MUZZLE_LONG", "fg": 4815 },
+ { "id": "overlay_male_mutation_MUZZLE_LONG", "fg": 4816 },
+ { "id": "overlay_female_mutation_TAIL_THICK", "fg": 4823 },
+ { "id": "overlay_male_mutation_TAIL_THICK", "fg": 4824 },
+ { "id": "overlay_female_mutation_TALONS", "fg": 4825 },
+ { "id": "overlay_male_mutation_TALONS", "fg": 4826 },
+ { "id": "overlay_female_mutation_VINES1", "fg": 4827 },
+ { "id": "overlay_male_mutation_VINES1", "fg": 4828 },
+ { "id": "overlay_female_mutation_WINGS_BIRD", "fg": 4829 },
+ { "id": "overlay_male_mutation_WINGS_BIRD", "fg": 4830 },
+ { "id": "overlay_female_mutation_CHITIN", "fg": 4833 },
+ { "id": "overlay_male_mutation_CHITIN", "fg": 4834 },
+ { "id": "overlay_female_mutation_CHITIN2", "fg": 4831 },
+ { "id": "overlay_male_mutation_CHITIN2", "fg": 4832 },
+ { "id": "overlay_female_mutation_FEATHERS", "fg": 4835 },
+ { "id": "overlay_male_mutation_FEATHERS", "fg": 4836 },
+ { "id": "overlay_female_mutation_SCALES", "fg": 4845 },
+ { "id": "overlay_male_mutation_SCALES", "fg": 4846 },
+ { "id": "overlay_female_mutation_PLANTSKIN", "fg": 4843 },
+ { "id": "overlay_male_mutation_PLANTSKIN", "fg": 4844 },
+ { "id": "overlay_female_mutation_SKIN_DARK", "fg": 4847 },
+ { "id": "overlay_male_mutation_SKIN_DARK", "fg": 4848 },
+ { "id": "overlay_female_mutation_SKIN_LIGHT", "fg": 4849 },
+ { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 4850 },
+ { "id": "overlay_female_mutation_SKIN_PINK", "fg": 4851 },
+ { "id": "overlay_male_mutation_SKIN_PINK", "fg": 4852 },
+ { "id": "overlay_female_mutation_SKIN_TAN", "fg": 4853 },
+ { "id": "overlay_male_mutation_SKIN_TAN", "fg": 4854 },
+ { "id": "overlay_female_mutation_PALE", "fg": 4841 },
+ { "id": "overlay_male_mutation_PALE", "fg": 4842 },
+ { "id": "overlay_female_mutation_ALBINO", "fg": 4837 },
+ { "id": "overlay_male_mutation_ALBINO", "fg": 4839 },
+ { "id": "overlay_wielded_arming_sword_fake", "fg": 4911 },
+ { "id": "overlay_wielded_arming_sword_inferior", "fg": 4911 },
+ { "id": "overlay_wielded_battleaxe_inferior", "fg": 4860 },
+ { "id": "overlay_wielded_battleaxe_fake", "fg": 4860 },
+ { "id": "overlay_wielded_broadsword_inferior", "fg": 5210 },
+ { "id": "overlay_wielded_broadsword_fake", "fg": 5210 },
+ { "id": "overlay_wielded_cavalry_sabre_fake", "fg": 4864 },
+ { "id": "overlay_wielded_cutlass_fake", "fg": 4866 },
+ { "id": "overlay_wielded_cutlass_inferior", "fg": 4866 },
+ { "id": "overlay_wielded_estoc_inferior", "fg": 5262 },
+ { "id": "overlay_wielded_estoc_fake", "fg": 5262 },
+ { "id": "overlay_female_wielded_halberd_fake", "fg": 5290 },
+ { "id": "overlay_male_wielded_halberd_fake", "fg": 5291 },
+ { "id": "overlay_wielded_jian_fake", "fg": 4872 },
+ { "id": "overlay_wielded_jian_inferior", "fg": 4872 },
+ { "id": "overlay_wielded_katana_fake", "fg": 5309 },
+ { "id": "overlay_wielded_katana_inferior", "fg": 5309 },
+ { "id": "overlay_wielded_kris_fake", "fg": 5315 },
+ { "id": "overlay_wielded_longsword_fake", "fg": 5318 },
+ { "id": "overlay_wielded_longsword_inferior", "fg": 5318 },
+ { "id": "overlay_female_wielded_lucern_hammerfake", "fg": 5319 },
+ { "id": "overlay_male_wielded_lucern_hammerfake", "fg": 5320 },
+ { "id": "overlay_wielded_mace_inferior", "fg": 5321 },
+ { "id": "overlay_wielded_mace_fake", "fg": 5321 },
+ { "id": "overlay_wielded_morningstar_fake", "fg": 5322 },
+ { "id": "overlay_wielded_morningstar_inferior", "fg": 5322 },
+ { "id": "overlay_female_wielded_naginata_fake", "fg": 4883 },
+ { "id": "overlay_male_wielded_naginata_fake", "fg": 4884 },
+ { "id": "overlay_female_wielded_naginata_inferior", "fg": 4883 },
+ { "id": "overlay_male_wielded_naginata_inferior", "fg": 4884 },
+ { "id": "overlay_wielded_nodachi_inferior", "fg": 5375 },
+ { "id": "overlay_wielded_nodachi_fake", "fg": 5375 },
+ { "id": "overlay_wielded_pike_fake", "fg": 4427 },
+ { "id": "overlay_wielded_pike_inferior", "fg": 4427 },
+ { "id": "overlay_wielded_rapier_fake", "fg": 5403 },
+ { "id": "overlay_wielded_tanto_inferior", "fg": 5516 },
+ { "id": "overlay_wielded_tanto_fake", "fg": 5516 },
+ { "id": "overlay_wielded_wakizashi_fake", "fg": 5540 },
+ { "id": "overlay_wielded_wakizashi_inferior", "fg": 5540 },
+ { "id": "overlay_wielded_zweihander_fake", "fg": 5562 },
+ { "id": "overlay_wielded_zweihander_inferior", "fg": 5562 },
+ { "id": "overlay_female_wielded_1st_aid", "fg": 4855 },
+ { "id": "overlay_male_wielded_1st_aid", "fg": 4856 },
+ { "id": "overlay_female_wielded_2x4", "fg": 4857 },
+ { "id": "overlay_male_wielded_2x4", "fg": 4858 },
+ { "id": "overlay_wielded_bowling_axe", "fg": 4859 },
+ { "id": "overlay_wielded_battleaxe", "fg": 4860 },
+ { "id": "overlay_wielded_knife_butcher", "fg": 4861 },
+ { "id": "overlay_female_wielded_butterfly_swords", "fg": 4862 },
+ { "id": "overlay_male_wielded_butterfly_swords", "fg": 4863 },
+ { "id": "overlay_wielded_cavalry_sabre", "fg": 4864 },
+ { "id": "overlay_wielded_sword_crude", "fg": 4865 },
+ { "id": "overlay_wielded_cutlass", "fg": 4866 },
+ { "id": "overlay_wielded_dao", "fg": 4867 },
+ { "id": "overlay_wielded_diveknife", "fg": 4868 },
+ { "id": "overlay_female_wielded_glaive", "fg": 4869 },
+ { "id": "overlay_male_wielded_glaive", "fg": 4870 },
+ { "id": "overlay_wielded_glass_shiv", "fg": 4871 },
+ { "id": "overlay_wielded_jian", "fg": 4872 },
+ { "id": "overlay_wielded_khopesh", "fg": 4873 },
+ { "id": "overlay_wielded_kukri", "fg": 4874 },
+ { "id": "overlay_wielded_lajatang", "fg": 4875 },
+ { "id": "overlay_wielded_machete", "fg": 4876 },
+ { "id": "overlay_female_wielded_makeshift_halberd", "fg": 4877 },
+ { "id": "overlay_male_wielded_makeshift_halberd", "fg": 4878 },
+ { "id": "overlay_wielded_makeshift_machete", "fg": 4879 },
+ { "id": "overlay_wielded_glass_macuahuitl", "fg": 4880 },
+ { "id": "overlay_female_wielded_makeshift_scythe_war", "fg": 4881 },
+ { "id": "overlay_male_wielded_makeshift_scythe_war", "fg": 4882 },
+ { "id": "overlay_female_wielded_naginata", "fg": 4883 },
+ { "id": "overlay_male_wielded_naginata", "fg": 4884 },
+ { "id": "overlay_wielded_knuckle_katar", "fg": 4885 },
+ { "id": "overlay_wielded_scimitar", "fg": 4886 },
+ { "id": "overlay_wielded_scythe", "fg": 4887 },
+ { "id": "overlay_wielded_survivor_machete", "fg": 4888 },
+ { "id": "overlay_wielded_sword_bayonet", "fg": 4889 },
+ { "id": "overlay_female_wielded_bagh_nakha", "fg": 4890 },
+ { "id": "overlay_male_wielded_bagh_nakha", "fg": 4891 },
+ { "id": "overlay_female_wielded_scythe_war", "fg": 4892 },
+ { "id": "overlay_male_wielded_scythe_war", "fg": 4893 },
+ { "id": "overlay_wielded_sword_xiphos", "fg": 4894 },
+ { "id": "overlay_wielded_acoustic_guitar", "fg": 4899 },
+ { "id": "overlay_worn_acoustic_guitar", "fg": 4899 },
+ { "id": "overlay_female_wielded_stepladder", "fg": 4909 },
+ { "id": "overlay_male_wielded_stepladder", "fg": 4910 },
+ { "id": "overlay_wielded_arming_sword", "fg": 4911 },
+ { "id": [ "overlay_wielded_m16_auto_rifle_var_acr", "overlay_wielded_acr_300blk" ], "fg": 5015 },
+ { "id": [ "overlay_wielded_ak47", "overlay_wielded_aksemi" ], "fg": 4925 },
+ { "id": [ "overlay_wielded_carbine_flintlock", "overlay_wielded_carbine_flintlock_double" ], "fg": 4943 },
+ { "id": [ "overlay_wielded_hk_mp5", "overlay_wielded_hk_mp5_10_semi" ], "fg": 4989 },
+ { "id": [ "overlay_wielded_hptjcp", "overlay_wielded_hptjhp" ], "fg": 4997 },
+ { "id": [ "overlay_wielded_longrifle_flintlock", "overlay_wielded_rifle_flintlock" ], "fg": 5011 },
+ { "id": [ "overlay_wielded_m16a4", "overlay_wielded_m16_auto_rifle_var_m16a3" ], "fg": 5016 },
+ { "id": [ "overlay_wielded_m1911", "overlay_wielded_m1911a1_38super" ], "fg": 5021 },
+ { "id": [ "overlay_wielded_m249", "overlay_wielded_m249_semi" ], "fg": 5030 },
+ { "id": [ "overlay_wielded_m60", "overlay_wielded_m60_semi" ], "fg": 5041 },
+ { "id": [ "overlay_wielded_mp40", "overlay_wielded_mp40semi" ], "fg": 5066 },
+ {
+ "id": [
+ "overlay_wielded_rifle_9mm",
+ "overlay_wielded_rifle_3006",
+ "overlay_wielded_rifle_45",
+ "overlay_wielded_rifle_22",
+ "overlay_wielded_rifle_40",
+ "overlay_wielded_rifle_44",
+ "overlay_wielded_rifle_38",
+ "overlay_wielded_rifle_223"
+ ],
+ "fg": 5082
+ },
+ { "id": [ "overlay_wielded_slamfire_shotgun", "overlay_wielded_slamfire_shotgun_d" ], "fg": 5134 },
+ { "id": "overlay_wielded_fire_ax", "fg": 5181 },
+ { "id": "overlay_wielded_ax", "fg": 5183 },
+ { "id": "overlay_wielded_hatchet", "fg": 5182 },
+ { "id": "overlay_wielded_bag_canvas", "fg": 5184 },
+ { "id": "overlay_wielded_bag_plastic", "fg": 5185 },
+ { "id": "overlay_wielded_knife_baselard", "fg": 5186 },
+ { "id": "overlay_female_wielded_bat", "fg": 5187 },
+ { "id": "overlay_male_wielded_bat", "fg": 5188 },
+ { "id": "overlay_female_wielded_bat_metal", "fg": 5189 },
+ { "id": "overlay_male_wielded_bat_metal", "fg": 5190 },
+ { "id": "overlay_wielded_bone_knife", "fg": 5191 },
+ { "id": "overlay_wielded_bottle_glass", "fg": 5192 },
+ { "id": "overlay_wielded_bottle_plastic", "fg": 5193 },
+ { "id": "overlay_wielded_bottle_plastic_small", "fg": 5194 },
+ { "id": "overlay_wielded_compositebow", "fg": 5195 },
+ { "id": "overlay_wielded_reflexbow", "fg": 5196 },
+ { "id": "overlay_wielded_compgreatbow", "fg": 5197 },
+ { "id": "overlay_wielded_compbow", "fg": 5198 },
+ { "id": "overlay_wielded_compbow_high", "fg": 5198 },
+ { "id": "overlay_wielded_compbow_low", "fg": 5198 },
+ { "id": "overlay_wielded_hybridbow", "fg": 5199 },
+ { "id": "overlay_wielded_longbow", "fg": 5200 },
+ { "id": "overlay_wielded_recurbow", "fg": 5201 },
+ { "id": "overlay_wielded_reflexrecurvebow", "fg": 5202 },
+ { "id": "overlay_wielded_shortbow", "fg": 5203 },
+ { "id": "overlay_wielded_selfbow", "fg": 5204 },
+ { "id": "overlay_wielded_box_large", "fg": 5205 },
+ { "id": "overlay_wielded_box_medium", "fg": 5206 },
+ { "id": "overlay_wielded_box_small", "fg": 5207 },
+ { "id": "overlay_wielded_brick", "fg": 5209 },
+ { "id": "overlay_wielded_broadsword", "fg": 5210 },
+ { "id": "overlay_wielded_broom", "fg": 5211 },
+ { "id": "overlay_female_wielded_bwirebat", "fg": 5212 },
+ { "id": "overlay_male_wielded_bwirebat", "fg": 5213 },
+ { "id": "overlay_wielded_sword_cane", "fg": 5236 },
+ { "id": "overlay_wielded_hollow_cane", "fg": 5235 },
+ { "id": "overlay_wielded_cane", "fg": 5237 },
+ { "id": [ "overlay_female_wielded_cestus", "overlay_female_worn_cestus" ], "fg": 5239 },
+ { "id": [ "overlay_male_wielded_cestus", "overlay_male_worn_cestus" ], "fg": 5240 },
+ { "id": "overlay_female_wielded_chainsaw_off", "fg": 5241 },
+ { "id": "overlay_male_wielded_chainsaw_off", "fg": 5242 },
+ { "id": "overlay_wielded_coffeemaker", "fg": 5243 },
+ { "id": "overlay_wielded_knife_combat", "fg": 5244 },
+ { "id": "overlay_wielded_knife_combat_mod", "fg": 5244 },
+ { "id": "overlay_wielded_copper_knife", "fg": 5245 },
+ { "id": "overlay_female_wielded_corpse_generic_human", "fg": 5246 },
+ { "id": "overlay_male_wielded_corpse_generic_human", "fg": 5247 },
+ {
+ "id": [ "overlay_wielded_corpse_mon_ant", "overlay_wielded_corpse_mon_ant_soldier", "overlay_wielded_corpse_mon_ant_queen" ],
+ "fg": 5249
+ },
+ {
+ "id": [
+ "overlay_wielded_corpse_mon_ant_acid",
+ "overlay_wielded_corpse_mon_ant_acid_soldier",
+ "overlay_wielded_corpse_mon_ant_acid_queen"
+ ],
+ "fg": 5248
+ },
+ {
+ "id": [
+ "overlay_male_wielded_corpse_mon_zombie",
+ "overlay_male_wielded_corpse_mon_zombie_grappler",
+ "overlay_male_wielded_corpse_mon_zombie_biter",
+ "overlay_male_wielded_corpse_mon_zombie_tough",
"overlay_male_wielded_corpse_mon_zombie_hunter",
"overlay_male_wielded_corpse_mon_zombie_brute",
"overlay_male_wielded_corpse_mon_zombie_predator",
@@ -6918,7 +6923,7 @@
"overlay_male_wielded_corpse_mon_zombie_prisoner",
"overlay_male_wielded_corpse_mon_zombie_military_pilot"
],
- "fg": 5195
+ "fg": 5251
},
{
"id": [
@@ -6977,78 +6982,77 @@
"overlay_female_wielded_corpse_mon_zombie_prisoner",
"overlay_female_wielded_corpse_mon_zombie_military_pilot"
],
- "fg": 5194
- },
- { "id": "overlay_wielded_cudgel", "fg": 5203 },
- { "id": "overlay_female_wielded_spear_dory", "fg": 5204 },
- { "id": "overlay_male_wielded_spear_dory", "fg": 5205 },
- { "id": "overlay_wielded_estoc", "fg": 5206 },
- { "id": "overlay_wielded_shock_epee", "fg": 5207 },
- { "id": "overlay_wielded_shock_foil", "fg": 5208 },
- { "id": "overlay_wielded_shock_sabre", "fg": 5209 },
- { "id": "overlay_wielded_fencing_epee", "fg": 5210 },
- { "id": "overlay_wielded_fencing_foil", "fg": 5211 },
- { "id": "overlay_wielded_fencing_sabre", "fg": 5212 },
- { "id": "overlay_wielded_fencing_epee_sharpened", "fg": 5213 },
- { "id": "overlay_wielded_fencing_foil_sharpened", "fg": 5214 },
- { "id": "overlay_wielded_fencing_sabre_sharpened", "fg": 5215 },
- { "id": "overlay_wielded_flashlight", "fg": 5217 },
- { "id": "overlay_wielded_heavy_flashlight", "fg": 5218 },
- { "id": "overlay_wielded_spear_forked", "fg": 5219 },
- { "id": "overlay_wielded_glass_shard", "fg": 5220 },
- { "id": "overlay_wielded_grip_hook", "fg": 5233 },
- { "id": "overlay_male_wielded_halberd", "fg": 5235 },
- { "id": "overlay_female_wielded_halberd", "fg": 5234 },
- { "id": "overlay_wielded_crowbar", "fg": 5236 },
- { "id": "overlay_male_wielded_screwdriver", "fg": 5239 },
- { "id": "overlay_female_wielded_screwdriver", "fg": 5238 },
- { "id": "overlay_wielded_shovel", "fg": 5240 },
- { "id": "overlay_wielded_wrench", "fg": 5241 },
- { "id": "overlay_wielded_hammer", "fg": 5237 },
- { "id": "overlay_wielded_hollow_cane", "fg": 5242 },
- { "id": "overlay_female_wielded_spear_homemade_halfpike", "fg": 5243 },
- { "id": "overlay_male_wielded_spear_homemade_halfpike", "fg": 5244 },
- { "id": "overlay_wielded_jar_3l_glass", "fg": 5245 },
- { "id": "overlay_wielded_jar_3l_glass_sealed", "fg": 5246 },
- { "id": "overlay_wielded_jar_glass", "fg": 5247 },
- { "id": "overlay_wielded_jar_glass_sealed", "fg": 5248 },
- { "id": "overlay_wielded_javelin", "fg": 5250 },
- { "id": "overlay_wielded_javelin_iron", "fg": 5249 },
- { "id": "overlay_female_wielded_ji", "fg": 5251 },
- { "id": "overlay_male_wielded_ji", "fg": 5252 },
- { "id": "overlay_wielded_jug_plastic", "fg": 5253 },
- { "id": "overlay_wielded_katana", "fg": 5254 },
- { "id": "overlay_wielded_kirpan", "fg": 5255 },
- { "id": "overlay_female_wielded_knuckle_nail", "fg": 5256 },
- { "id": "overlay_male_wielded_knuckle_nail", "fg": 5257 },
- { "id": "overlay_female_wielded_knuckle_steel", "fg": 5258 },
- { "id": "overlay_male_wielded_knuckle_steel", "fg": 5259 },
- { "id": "overlay_wielded_kris", "fg": 5260 },
- { "id": "overlay_wielded_shillelagh_weighted", "fg": 5261 },
- { "id": "overlay_wielded_log", "fg": 5262 },
- { "id": "overlay_wielded_longsword", "fg": 5263 },
- { "id": "overlay_male_wielded_lucern_hammer", "fg": 5265 },
- { "id": "overlay_female_wielded_lucern_hammer", "fg": 5264 },
- { "id": "overlay_wielded_mace", "fg": 5266 },
- { "id": "overlay_wielded_morningstar", "fg": 5267 },
- { "id": "overlay_wielded_makeshift_crowbar", "fg": 5268 },
- { "id": "overlay_wielded_makeshift_knife", "fg": 5269 },
- { "id": "overlay_wielded_makeshift_sap", "fg": 5270 },
- { "id": "overlay_wielded_antibiotics", "fg": 5271 },
- { "id": "overlay_wielded_weak_antibiotic", "fg": 5283 },
- { "id": "overlay_wielded_strong_antibiotic", "fg": 5280 },
- { "id": "overlay_wielded_calcium_tablet", "fg": 5274 },
- { "id": "overlay_wielded_vitamins", "fg": 5282 },
- { "id": "overlay_wielded_gummy_vitamins", "fg": 5275 },
- { "id": "overlay_wielded_antifungal", "fg": 5272 },
- { "id": "overlay_wielded_antiparasitic", "fg": 5273 },
- { "id": "overlay_wielded_iodine", "fg": 5276 },
- { "id": "overlay_wielded_prussian_blue", "fg": 5279 },
- { "id": "overlay_wielded_tramadol", "fg": 5281 },
- { "id": "overlay_wielded_oxycodone", "fg": 5278 },
- { "id": "overlay_female_wielded_mjolnir", "fg": 5284 },
- { "id": "overlay_male_wielded_mjolnir", "fg": 5285 },
- { "id": "overlay_wielded_mop", "fg": 5286 },
+ "fg": 5250
+ },
+ { "id": "overlay_wielded_cudgel", "fg": 5259 },
+ { "id": "overlay_female_wielded_spear_dory", "fg": 5260 },
+ { "id": "overlay_male_wielded_spear_dory", "fg": 5261 },
+ { "id": "overlay_wielded_estoc", "fg": 5262 },
+ { "id": "overlay_wielded_shock_epee", "fg": 5263 },
+ { "id": "overlay_wielded_shock_foil", "fg": 5264 },
+ { "id": "overlay_wielded_shock_sabre", "fg": 5265 },
+ { "id": "overlay_wielded_fencing_epee", "fg": 5266 },
+ { "id": "overlay_wielded_fencing_foil", "fg": 5267 },
+ { "id": "overlay_wielded_fencing_sabre", "fg": 5268 },
+ { "id": "overlay_wielded_fencing_epee_sharpened", "fg": 5269 },
+ { "id": "overlay_wielded_fencing_foil_sharpened", "fg": 5270 },
+ { "id": "overlay_wielded_fencing_sabre_sharpened", "fg": 5271 },
+ { "id": "overlay_wielded_flashlight", "fg": 5273 },
+ { "id": "overlay_wielded_heavy_flashlight", "fg": 5274 },
+ { "id": "overlay_wielded_spear_forked", "fg": 5275 },
+ { "id": "overlay_wielded_glass_shard", "fg": 5276 },
+ { "id": "overlay_wielded_grip_hook", "fg": 5289 },
+ { "id": "overlay_male_wielded_halberd", "fg": 5291 },
+ { "id": "overlay_female_wielded_halberd", "fg": 5290 },
+ { "id": "overlay_wielded_crowbar", "fg": 5292 },
+ { "id": "overlay_male_wielded_screwdriver", "fg": 5295 },
+ { "id": "overlay_female_wielded_screwdriver", "fg": 5294 },
+ { "id": "overlay_wielded_shovel", "fg": 5296 },
+ { "id": "overlay_wielded_wrench", "fg": 5297 },
+ { "id": "overlay_wielded_hammer", "fg": 5293 },
+ { "id": "overlay_female_wielded_spear_homemade_halfpike", "fg": 5298 },
+ { "id": "overlay_male_wielded_spear_homemade_halfpike", "fg": 5299 },
+ { "id": "overlay_wielded_jar_3l_glass", "fg": 5300 },
+ { "id": "overlay_wielded_jar_3l_glass_sealed", "fg": 5301 },
+ { "id": "overlay_wielded_jar_glass", "fg": 5302 },
+ { "id": "overlay_wielded_jar_glass_sealed", "fg": 5303 },
+ { "id": "overlay_wielded_javelin", "fg": 5305 },
+ { "id": "overlay_wielded_javelin_iron", "fg": 5304 },
+ { "id": "overlay_female_wielded_ji", "fg": 5306 },
+ { "id": "overlay_male_wielded_ji", "fg": 5307 },
+ { "id": "overlay_wielded_jug_plastic", "fg": 5308 },
+ { "id": "overlay_wielded_katana", "fg": 5309 },
+ { "id": "overlay_wielded_kirpan", "fg": 5310 },
+ { "id": "overlay_female_wielded_knuckle_nail", "fg": 5311 },
+ { "id": "overlay_male_wielded_knuckle_nail", "fg": 5312 },
+ { "id": "overlay_female_wielded_knuckle_steel", "fg": 5313 },
+ { "id": "overlay_male_wielded_knuckle_steel", "fg": 5314 },
+ { "id": "overlay_wielded_kris", "fg": 5315 },
+ { "id": "overlay_wielded_shillelagh_weighted", "fg": 5316 },
+ { "id": "overlay_wielded_log", "fg": 5317 },
+ { "id": "overlay_wielded_longsword", "fg": 5318 },
+ { "id": "overlay_male_wielded_lucern_hammer", "fg": 5320 },
+ { "id": "overlay_female_wielded_lucern_hammer", "fg": 5319 },
+ { "id": "overlay_wielded_mace", "fg": 5321 },
+ { "id": "overlay_wielded_morningstar", "fg": 5322 },
+ { "id": "overlay_wielded_makeshift_crowbar", "fg": 5323 },
+ { "id": "overlay_wielded_makeshift_knife", "fg": 5324 },
+ { "id": "overlay_wielded_makeshift_sap", "fg": 5325 },
+ { "id": "overlay_wielded_antibiotics", "fg": 5328 },
+ { "id": "overlay_wielded_weak_antibiotic", "fg": 5340 },
+ { "id": "overlay_wielded_strong_antibiotic", "fg": 5337 },
+ { "id": "overlay_wielded_calcium_tablet", "fg": 5331 },
+ { "id": "overlay_wielded_vitamins", "fg": 5339 },
+ { "id": "overlay_wielded_gummy_vitamins", "fg": 5332 },
+ { "id": "overlay_wielded_antifungal", "fg": 5329 },
+ { "id": "overlay_wielded_antiparasitic", "fg": 5330 },
+ { "id": "overlay_wielded_iodine", "fg": 5333 },
+ { "id": "overlay_wielded_prussian_blue", "fg": 5336 },
+ { "id": "overlay_wielded_tramadol", "fg": 5338 },
+ { "id": "overlay_wielded_oxycodone", "fg": 5335 },
+ { "id": "overlay_female_wielded_mjolnir", "fg": 5341 },
+ { "id": "overlay_male_wielded_mjolnir", "fg": 5342 },
+ { "id": "overlay_wielded_mop", "fg": 5343 },
{
"id": [
"overlay_wielded_tourniquet_upper",
@@ -7056,567 +7060,592 @@
"overlay_wielded_tourniquet_lower",
"overlay_wielded_tourniquet_lower_XL"
],
- "fg": 5312
- },
- { "id": "overlay_female_wielded_nailbat", "fg": 5314 },
- { "id": "overlay_male_wielded_nailbat", "fg": 5315 },
- { "id": "overlay_female_wielded_nailboard", "fg": 5316 },
- { "id": "overlay_male_wielded_nailboard", "fg": 5317 },
- { "id": "overlay_wielded_nodachi", "fg": 5318 },
- { "id": "overlay_male_wielded_2h_flail_wood", "fg": 5320 },
- { "id": "overlay_female_wielded_2h_flail_wood", "fg": 5319 },
- { "id": "overlay_male_wielded_pillow", "fg": 5324 },
- { "id": "overlay_female_wielded_pillow", "fg": 5323 },
- { "id": "overlay_male_wielded_down_pillow", "fg": 5322 },
- { "id": "overlay_female_wielded_down_pillow", "fg": 5321 },
- { "id": "overlay_wielded_pipe", "fg": 5325 },
- { "id": "overlay_wielded_pitchfork", "fg": 5326 },
- { "id": "overlay_wielded_sharp_toothbrush", "fg": 5327 },
- { "id": "overlay_wielded_pockknife", "fg": 5328 },
- { "id": "overlay_female_wielded_pot", "fg": 5331 },
- { "id": "overlay_male_wielded_pot", "fg": 5332 },
- { "id": "overlay_female_wielded_pot_copper", "fg": 5333 },
- { "id": "overlay_male_wielded_pot_copper", "fg": 5334 },
- { "id": "overlay_wielded_punch_dagger", "fg": 5335 },
- { "id": "overlay_female_wielded_qiang", "fg": 5336 },
- { "id": "overlay_male_wielded_qiang", "fg": 5337 },
- { "id": "overlay_female_wielded_rag", "fg": 5344 },
- { "id": "overlay_male_wielded_rag", "fg": 5345 },
- { "id": "overlay_wielded_rapier", "fg": 5346 },
- { "id": "overlay_wielded_rebar", "fg": 5347 },
- { "id": "overlay_wielded_knife_rm42", "fg": 5348 },
- { "id": "overlay_wielded_rock", "fg": 5349 },
- { "id": "overlay_wielded_rock_sock", "fg": 5350 },
- { "id": "overlay_wielded_rolling_pin", "fg": 5351 },
- { "id": "overlay_wielded_scissors", "fg": 5352 },
- { "id": "overlay_wielded_sharp_rock", "fg": 5353 },
- { "id": "overlay_wielded_shillelagh", "fg": 5354 },
+ "fg": 5369
+ },
+ { "id": "overlay_female_wielded_nailbat", "fg": 5371 },
+ { "id": "overlay_male_wielded_nailbat", "fg": 5372 },
+ { "id": "overlay_female_wielded_nailboard", "fg": 5373 },
+ { "id": "overlay_male_wielded_nailboard", "fg": 5374 },
+ { "id": "overlay_wielded_nodachi", "fg": 5375 },
+ { "id": "overlay_male_wielded_2h_flail_wood", "fg": 5377 },
+ { "id": "overlay_female_wielded_2h_flail_wood", "fg": 5376 },
+ { "id": "overlay_male_wielded_pillow", "fg": 5381 },
+ { "id": "overlay_female_wielded_pillow", "fg": 5380 },
+ { "id": "overlay_male_wielded_down_pillow", "fg": 5379 },
+ { "id": "overlay_female_wielded_down_pillow", "fg": 5378 },
+ { "id": "overlay_wielded_pipe", "fg": 5382 },
+ { "id": "overlay_wielded_pitchfork", "fg": 5383 },
+ { "id": "overlay_wielded_sharp_toothbrush", "fg": 5384 },
+ { "id": "overlay_wielded_pockknife", "fg": 5385 },
+ { "id": "overlay_female_wielded_pot", "fg": 5388 },
+ { "id": "overlay_male_wielded_pot", "fg": 5389 },
+ { "id": "overlay_female_wielded_pot_copper", "fg": 5390 },
+ { "id": "overlay_male_wielded_pot_copper", "fg": 5391 },
+ { "id": "overlay_wielded_punch_dagger", "fg": 5392 },
+ { "id": "overlay_female_wielded_qiang", "fg": 5393 },
+ { "id": "overlay_male_wielded_qiang", "fg": 5394 },
+ { "id": "overlay_female_wielded_rag", "fg": 5401 },
+ { "id": "overlay_male_wielded_rag", "fg": 5402 },
+ { "id": "overlay_wielded_rapier", "fg": 5403 },
+ { "id": "overlay_wielded_rebar", "fg": 5404 },
+ { "id": "overlay_wielded_knife_rm42", "fg": 5405 },
+ { "id": "overlay_wielded_rock", "fg": 5406 },
+ { "id": "overlay_wielded_rock_sock", "fg": 5407 },
+ { "id": "overlay_wielded_rolling_pin", "fg": 5408 },
+ { "id": "overlay_wielded_scissors", "fg": 5409 },
+ { "id": "overlay_wielded_sharp_rock", "fg": 5410 },
+ { "id": "overlay_wielded_shillelagh", "fg": 5411 },
{
"id": "overlay_female_wielded_cigar_lit",
"fg": [
- { "weight": 14, "sprite": 5357 },
- { "weight": 14, "sprite": 5358 },
- { "weight": 14, "sprite": 5359 },
- { "weight": 14, "sprite": 5360 },
- { "weight": 14, "sprite": 5361 },
- { "weight": 14, "sprite": 5362 },
- { "weight": 14, "sprite": 5363 }
+ { "weight": 14, "sprite": 5414 },
+ { "weight": 14, "sprite": 5415 },
+ { "weight": 14, "sprite": 5416 },
+ { "weight": 14, "sprite": 5417 },
+ { "weight": 14, "sprite": 5418 },
+ { "weight": 14, "sprite": 5419 },
+ { "weight": 14, "sprite": 5420 }
],
"animated": true
},
{
"id": "overlay_male_wielded_cigar_lit",
"fg": [
- { "weight": 14, "sprite": 5366 },
- { "weight": 14, "sprite": 5367 },
- { "weight": 14, "sprite": 5368 },
- { "weight": 14, "sprite": 5369 },
- { "weight": 14, "sprite": 5370 },
- { "weight": 14, "sprite": 5371 },
- { "weight": 14, "sprite": 5372 }
+ { "weight": 14, "sprite": 5423 },
+ { "weight": 14, "sprite": 5424 },
+ { "weight": 14, "sprite": 5425 },
+ { "weight": 14, "sprite": 5426 },
+ { "weight": 14, "sprite": 5427 },
+ { "weight": 14, "sprite": 5428 },
+ { "weight": 14, "sprite": 5429 }
],
"animated": true
},
{
"id": "overlay_female_wielded_cig_lit",
"fg": [
- { "weight": 14, "sprite": 5375 },
- { "weight": 14, "sprite": 5376 },
- { "weight": 14, "sprite": 5377 },
- { "weight": 14, "sprite": 5378 },
- { "weight": 14, "sprite": 5379 },
- { "weight": 14, "sprite": 5380 },
- { "weight": 14, "sprite": 5381 }
+ { "weight": 14, "sprite": 5432 },
+ { "weight": 14, "sprite": 5433 },
+ { "weight": 14, "sprite": 5434 },
+ { "weight": 14, "sprite": 5435 },
+ { "weight": 14, "sprite": 5436 },
+ { "weight": 14, "sprite": 5437 },
+ { "weight": 14, "sprite": 5438 }
],
"animated": true
},
{
"id": "overlay_male_wielded_cig_lit",
"fg": [
- { "weight": 14, "sprite": 5384 },
- { "weight": 14, "sprite": 5385 },
- { "weight": 14, "sprite": 5386 },
- { "weight": 14, "sprite": 5387 },
- { "weight": 14, "sprite": 5388 },
- { "weight": 14, "sprite": 5389 },
- { "weight": 14, "sprite": 5390 }
+ { "weight": 14, "sprite": 5441 },
+ { "weight": 14, "sprite": 5442 },
+ { "weight": 14, "sprite": 5443 },
+ { "weight": 14, "sprite": 5444 },
+ { "weight": 14, "sprite": 5445 },
+ { "weight": 14, "sprite": 5446 },
+ { "weight": 14, "sprite": 5447 }
],
"animated": true
},
{
"id": "overlay_female_wielded_joint_lit",
"fg": [
- { "weight": 14, "sprite": 5392 },
- { "weight": 14, "sprite": 5393 },
- { "weight": 14, "sprite": 5394 },
- { "weight": 14, "sprite": 5395 },
- { "weight": 14, "sprite": 5396 },
- { "weight": 14, "sprite": 5397 },
- { "weight": 14, "sprite": 5398 }
+ { "weight": 14, "sprite": 5449 },
+ { "weight": 14, "sprite": 5450 },
+ { "weight": 14, "sprite": 5451 },
+ { "weight": 14, "sprite": 5452 },
+ { "weight": 14, "sprite": 5453 },
+ { "weight": 14, "sprite": 5454 },
+ { "weight": 14, "sprite": 5455 }
],
"animated": true
},
{
"id": "overlay_male_wielded_joint_lit",
"fg": [
- { "weight": 14, "sprite": 5401 },
- { "weight": 14, "sprite": 5402 },
- { "weight": 14, "sprite": 5403 },
- { "weight": 14, "sprite": 5404 },
- { "weight": 14, "sprite": 5405 },
- { "weight": 14, "sprite": 5406 },
- { "weight": 14, "sprite": 5407 }
+ { "weight": 14, "sprite": 5458 },
+ { "weight": 14, "sprite": 5459 },
+ { "weight": 14, "sprite": 5460 },
+ { "weight": 14, "sprite": 5461 },
+ { "weight": 14, "sprite": 5462 },
+ { "weight": 14, "sprite": 5463 },
+ { "weight": 14, "sprite": 5464 }
+ ],
+ "animated": true
+ },
+ {
+ "id": "overlay_female_wielded_pipe_tobacco",
+ "fg": [
+ { "weight": 14, "sprite": 5466 },
+ { "weight": 14, "sprite": 5467 },
+ { "weight": 14, "sprite": 5468 },
+ { "weight": 14, "sprite": 5469 },
+ { "weight": 14, "sprite": 5470 },
+ { "weight": 14, "sprite": 5471 },
+ { "weight": 14, "sprite": 5472 }
+ ],
+ "animated": true
+ },
+ {
+ "id": "overlay_male_wielded_pipe_tobacco",
+ "fg": [
+ { "weight": 14, "sprite": 5473 },
+ { "weight": 14, "sprite": 5474 },
+ { "weight": 14, "sprite": 5475 },
+ { "weight": 14, "sprite": 5476 },
+ { "weight": 14, "sprite": 5477 },
+ { "weight": 14, "sprite": 5478 },
+ { "weight": 14, "sprite": 5479 }
],
"animated": true
},
- { "id": "overlay_male_wielded_pointy_stick", "fg": 5410 },
- { "id": "overlay_female_wielded_pointy_stick", "fg": 5409 },
- { "id": "overlay_male_wielded_spear_wood", "fg": 5426 },
- { "id": "overlay_female_wielded_spear_wood", "fg": 5425 },
- { "id": "overlay_male_wielded_spear_spike", "fg": 5422 },
- { "id": "overlay_female_wielded_spear_spike", "fg": 5421 },
- { "id": "overlay_male_wielded_spear_knife", "fg": 5414 },
- { "id": "overlay_female_wielded_spear_knife", "fg": 5413 },
- { "id": "overlay_male_wielded_spear_knife_superior", "fg": 5416 },
- { "id": "overlay_female_wielded_spear_knife_superior", "fg": 5415 },
- { "id": "overlay_male_wielded_spear_rebar", "fg": 5420 },
- { "id": "overlay_female_wielded_spear_rebar", "fg": 5419 },
- { "id": "overlay_male_wielded_spear_pipe", "fg": 5418 },
- { "id": "overlay_female_wielded_spear_pipe", "fg": 5417 },
- { "id": "overlay_male_wielded_spear_steel", "fg": 5424 },
- { "id": "overlay_female_wielded_spear_steel", "fg": 5423 },
- { "id": "overlay_male_wielded_spear_copper", "fg": 5412 },
- { "id": "overlay_female_wielded_spear_copper", "fg": 5411 },
- { "id": "overlay_female_wielded_splinter", "fg": 5427 },
- { "id": "overlay_male_wielded_splinter", "fg": 5428 },
- { "id": "overlay_wielded_knife_steak", "fg": 5429 },
- { "id": "overlay_wielded_steel_chunk", "fg": 5430 },
- { "id": "overlay_wielded_steel_lump", "fg": 5431 },
- { "id": "overlay_female_wielded_stick", "fg": 5432 },
- { "id": "overlay_male_wielded_stick", "fg": 5433 },
- { "id": "overlay_female_wielded_stick_long", "fg": 5434 },
- { "id": "overlay_male_wielded_stick_long", "fg": 5435 },
- { "id": "overlay_female_wielded_primitive_hammer", "fg": 5436 },
- { "id": "overlay_male_wielded_primitive_hammer", "fg": 5437 },
- { "id": "overlay_female_wielded_spear_stone", "fg": 5438 },
- { "id": "overlay_male_wielded_spear_stone", "fg": 5439 },
- { "id": "overlay_wielded_knife_rambo", "fg": 5440 },
- { "id": "overlay_female_wielded_spear_survivor", "fg": 5441 },
- { "id": "overlay_male_wielded_spear_survivor", "fg": 5442 },
- { "id": "overlay_wielded_switchblade", "fg": 5443 },
- { "id": "overlay_wielded_sword_cane", "fg": 5444 },
- { "id": "overlay_wielded_tanto", "fg": 5446 },
- { "id": "overlay_female_wielded_teapot", "fg": 5447 },
- { "id": "overlay_male_wielded_teapot", "fg": 5448 },
- { "id": "overlay_female_wielded_television", "fg": 5449 },
- { "id": "overlay_male_wielded_television", "fg": 5450 },
- { "id": "overlay_female_wielded_thermos", "fg": 5451 },
- { "id": "overlay_male_wielded_thermos", "fg": 5452 },
- { "id": "overlay_wielded_boltcutters", "fg": 5453 },
- { "id": "overlay_wielded_e_tool", "fg": 5455 },
- { "id": "overlay_wielded_halligan", "fg": 5456 },
- { "id": "overlay_wielded_jackhammer", "fg": 5458 },
- { "id": "overlay_wielded_elec_jackhammer", "fg": 5458 },
- { "id": "overlay_wielded_lobotomizer", "fg": 5459 },
- { "id": "overlay_wielded_makeshift_axe", "fg": 5460 },
- { "id": "overlay_wielded_ny_hook", "fg": 5461 },
- { "id": "overlay_wielded_pickaxe", "fg": 5462 },
- { "id": "overlay_wielded_hammer_sledge_engineer", "fg": 5463 },
- { "id": "overlay_wielded_hammer_sledge_heavy", "fg": 5464 },
- { "id": "overlay_wielded_hammer_sledge_short", "fg": 5465 },
- { "id": "overlay_wielded_hammer_sledge", "fg": 5466 },
- { "id": "overlay_wielded_g_shovel", "fg": 5467 },
- { "id": "overlay_wielded_primitive_shovel", "fg": 5468 },
- { "id": "overlay_wielded_knife_trench", "fg": 5469 },
- { "id": "overlay_wielded_wakizashi", "fg": 5470 },
- { "id": "overlay_male_wielded_2h_flail_steel", "fg": 5472 },
- { "id": "overlay_female_wielded_2h_flail_steel", "fg": 5471 },
- { "id": "overlay_wielded_warhammer", "fg": 5473 },
- { "id": "overlay_wielded_bolas", "fg": 5474 },
- { "id": "overlay_wielded_bullwhip", "fg": 5475 },
- { "id": "overlay_female_wielded_homewrecker", "fg": 5476 },
- { "id": "overlay_male_wielded_homewrecker", "fg": 5477 },
- { "id": "overlay_wielded_lawn_dart", "fg": 5478 },
- { "id": "overlay_wielded_net", "fg": 5479 },
- { "id": "overlay_wielded_bullwhip_razor", "fg": 5480 },
- { "id": "overlay_wielded_sling", "fg": 5481 },
- { "id": "overlay_wielded_staff_sling", "fg": 5482 },
- { "id": "overlay_wielded_throwing_axe", "fg": 5483 },
- { "id": "overlay_female_wielded_throwing_knife", "fg": 5484 },
- { "id": "overlay_male_wielded_throwing_knife", "fg": 5485 },
- { "id": "overlay_wielded_throwing_stick", "fg": 5486 },
- { "id": "overlay_wielded_shocktonfa_off", "fg": 5487 },
- { "id": "overlay_wielded_shocktonfa_on", "fg": 5487 },
- { "id": "overlay_wielded_tonfa", "fg": 5488 },
- { "id": "overlay_wielded_tonfa_wood", "fg": 5489 },
- { "id": "overlay_wielded_sword_wood", "fg": 5490 },
- { "id": "overlay_wielded_sword_nail", "fg": 5491 },
- { "id": "overlay_wielded_zweihander", "fg": 5492 },
- { "id": "overlay_female_worn_armor_samurai", "fg": 5493 },
- { "id": "overlay_male_worn_armor_samurai", "fg": 5494 },
- { "id": "overlay_female_worn_chainmail_suit", "fg": 5503 },
- { "id": "overlay_male_worn_chainmail_suit", "fg": 5504 },
- { "id": "overlay_female_worn_chainmail_feet", "fg": 5505 },
- { "id": "overlay_male_worn_chainmail_feet", "fg": 5506 },
- { "id": "overlay_female_worn_chainmail_hood", "fg": 5507 },
- { "id": "overlay_male_worn_chainmail_hood", "fg": 5508 },
- { "id": "overlay_female_worn_chainmail_hands", "fg": 5509 },
- { "id": "overlay_male_worn_chainmail_hands", "fg": 5510 },
- { "id": "overlay_female_worn_chainmail_hauberk", "fg": 5511 },
- { "id": "overlay_male_worn_chainmail_hauberk", "fg": 5512 },
- { "id": "overlay_female_worn_chainmail_legs", "fg": 5513 },
- { "id": "overlay_male_worn_chainmail_legs", "fg": 5514 },
- { "id": "overlay_female_worn_chainmail_arms", "fg": 5515 },
- { "id": "overlay_male_worn_chainmail_arms", "fg": 5516 },
- { "id": "overlay_female_worn_chainmail_vest", "fg": 5517 },
- { "id": "overlay_male_worn_chainmail_vest", "fg": 5518 },
- { "id": "overlay_female_worn_vest_leather_mod", "fg": 5499 },
- { "id": "overlay_male_worn_vest_leather_mod", "fg": 5500 },
- { "id": "overlay_female_worn_armor_blarmor", "fg": 5501 },
- { "id": "overlay_male_worn_armor_blarmor", "fg": 5502 },
- { "id": "overlay_female_worn_armguard_larmor", "fg": 5523 },
- { "id": "overlay_male_worn_armguard_larmor", "fg": 5524 },
- { "id": "overlay_female_worn_boots_larmor", "fg": 5525 },
- { "id": "overlay_male_worn_boots_larmor", "fg": 5526 },
- { "id": "overlay_male_worn_gauntlets_larmor", "fg": 5527 },
- { "id": "overlay_female_worn_gauntlets_larmor", "fg": 5528 },
- { "id": "overlay_male_worn_helmet_larmor", "fg": 5530 },
- { "id": "overlay_female_worn_helmet_larmor", "fg": 5529 },
- { "id": "overlay_female_worn_armor_larmor", "fg": 5531 },
- { "id": "overlay_male_worn_armor_larmor", "fg": 5532 },
- { "id": "overlay_female_worn_footrags_leather", "fg": 5533 },
- { "id": "overlay_male_worn_footrags_leather", "fg": 5534 },
- { "id": "overlay_female_worn_gloves_wraps_leather", "fg": 5535 },
- { "id": "overlay_male_worn_gloves_wraps_leather", "fg": 5536 },
- { "id": "overlay_female_worn_vambrace_larmor", "fg": 5537 },
- { "id": "overlay_male_worn_vambrace_larmor", "fg": 5538 },
- { "id": "overlay_female_worn_vest_leather", "fg": 5539 },
- { "id": "overlay_male_worn_vest_leather", "fg": 5540 },
- { "id": "overlay_female_worn_armor_plarmor", "fg": 5543 },
- { "id": "overlay_male_worn_armor_plarmor", "fg": 5544 },
- { "id": "overlay_female_worn_gloves_studded", "fg": 5551 },
- { "id": "overlay_male_worn_gloves_studded", "fg": 5552 },
- { "id": "overlay_male_worn_helmet_plate", "fg": 5522 },
- { "id": "overlay_male_worn_armor_lightplate", "fg": 5542 },
- { "id": "overlay_male_worn_gloves_plate", "fg": 5498 },
- { "id": "overlay_male_worn_boots_plate", "fg": 5496 },
- { "id": "overlay_male_worn_cuirass_lightplate", "fg": 5520 },
- { "id": "overlay_male_worn_armguard_lightplate", "fg": 5548 },
- { "id": "overlay_male_worn_legguard_lightplate", "fg": 5550 },
- { "id": "overlay_female_worn_helmet_plate", "fg": 5521 },
- { "id": "overlay_female_worn_armor_lightplate", "fg": 5541 },
- { "id": "overlay_female_worn_gloves_plate", "fg": 5497 },
- { "id": "overlay_female_worn_boots_plate", "fg": 5495 },
- { "id": "overlay_female_worn_cuirass_lightplate", "fg": 5519 },
- { "id": "overlay_female_worn_armguard_lightplate", "fg": 5547 },
- { "id": "overlay_female_worn_legguard_lightplate", "fg": 5549 },
- { "id": "overlay_female_worn_armguard_hard", "fg": 5553 },
- { "id": "overlay_male_worn_armguard_hard", "fg": 5554 },
- { "id": "overlay_female_worn_armor_riot", "fg": 5555 },
- { "id": "overlay_male_worn_armor_riot", "fg": 5556 },
- { "id": "overlay_female_worn_ballistic_vest_esapi", "fg": 5557 },
- { "id": "overlay_male_worn_ballistic_vest_esapi", "fg": 5558 },
- { "id": "overlay_female_worn_helmet_riot", "fg": 5559 },
- { "id": "overlay_male_worn_helmet_riot", "fg": 5560 },
- { "id": "overlay_female_worn_kevlar", "fg": 5561 },
- { "id": "overlay_male_worn_kevlar", "fg": 5562 },
- { "id": "overlay_female_worn_legguard_hard", "fg": 5563 },
- { "id": "overlay_male_worn_legguard_hard", "fg": 5564 },
- { "id": "overlay_female_worn_swat_armor", "fg": 5583 },
- { "id": "overlay_male_worn_swat_armor", "fg": 5584 },
- { "id": "overlay_female_worn_tac_fullhelmet", "fg": 5585 },
- { "id": "overlay_male_worn_tac_fullhelmet", "fg": 5586 },
- { "id": "overlay_female_worn_tac_helmet", "fg": 5587 },
- { "id": "overlay_male_worn_tac_helmet", "fg": 5588 },
- { "id": "overlay_female_worn_2byarm_guard", "fg": 5589 },
- { "id": "overlay_male_worn_2byarm_guard", "fg": 5590 },
- { "id": "overlay_female_worn_2byshin_guard", "fg": 5591 },
- { "id": "overlay_male_worn_2byshin_guard", "fg": 5592 },
- { "id": "overlay_female_worn_legguard_metal", "fg": 5593 },
- { "id": "overlay_male_worn_legguard_metal", "fg": 5594 },
- { "id": "overlay_female_worn_armguard_metal", "fg": 5595 },
- { "id": "overlay_male_worn_armguard_metal", "fg": 5596 },
- { "id": "overlay_male_worn_helmet_scrap", "fg": 5606 },
- { "id": "overlay_male_worn_armor_scrapsuit", "fg": 5610 },
- { "id": "overlay_male_worn_boots_scrap", "fg": 5602 },
- { "id": "overlay_male_worn_cuirass_scrap", "fg": 5604 },
- { "id": "overlay_male_worn_armguard_scrap", "fg": 5546 },
- { "id": "overlay_male_worn_legguard_scrap", "fg": 5608 },
- { "id": "overlay_female_worn_helmet_scrap", "fg": 5605 },
- { "id": "overlay_female_worn_armor_scrapsuit", "fg": 5609 },
- { "id": "overlay_female_worn_boots_scrap", "fg": 5601 },
- { "id": "overlay_female_worn_cuirass_scrap", "fg": 5603 },
- { "id": "overlay_female_worn_armguard_scrap", "fg": 5545 },
- { "id": "overlay_female_worn_legguard_scrap", "fg": 5607 },
- { "id": "overlay_male_worn_backpack", "fg": 5616 },
- { "id": "overlay_female_worn_backpack", "fg": 5611 },
- { "id": "overlay_male_worn_backpack_hiking", "fg": 5613 },
- { "id": "overlay_female_worn_backpack_hiking", "fg": 5612 },
- { "id": "overlay_female_worn_backpack_leather", "fg": 5614 },
- { "id": "overlay_male_worn_backpack_leather", "fg": 5615 },
- { "id": "overlay_male_worn_backpack_tactical_large", "fg": 5618 },
- { "id": "overlay_female_worn_backpack_tactical_large", "fg": 5617 },
- { "id": "overlay_male_worn_molle_pack", "fg": 5620 },
- { "id": "overlay_female_worn_molle_pack", "fg": 5619 },
- { "id": [ "overlay_female_worn_rifle_case_soft", "overlay_female_worn_rifle_case_soft_2" ], "fg": 5622 },
+ { "id": "overlay_male_wielded_pointy_stick", "fg": 5481 },
+ { "id": "overlay_female_wielded_pointy_stick", "fg": 5480 },
+ { "id": "overlay_male_wielded_spear_wood", "fg": 5497 },
+ { "id": "overlay_female_wielded_spear_wood", "fg": 5496 },
+ { "id": "overlay_male_wielded_spear_spike", "fg": 5493 },
+ { "id": "overlay_female_wielded_spear_spike", "fg": 5492 },
+ { "id": "overlay_male_wielded_spear_knife", "fg": 5485 },
+ { "id": "overlay_female_wielded_spear_knife", "fg": 5484 },
+ { "id": "overlay_male_wielded_spear_knife_superior", "fg": 5487 },
+ { "id": "overlay_female_wielded_spear_knife_superior", "fg": 5486 },
+ { "id": "overlay_male_wielded_spear_rebar", "fg": 5491 },
+ { "id": "overlay_female_wielded_spear_rebar", "fg": 5490 },
+ { "id": "overlay_male_wielded_spear_pipe", "fg": 5489 },
+ { "id": "overlay_female_wielded_spear_pipe", "fg": 5488 },
+ { "id": "overlay_male_wielded_spear_steel", "fg": 5495 },
+ { "id": "overlay_female_wielded_spear_steel", "fg": 5494 },
+ { "id": "overlay_male_wielded_spear_copper", "fg": 5483 },
+ { "id": "overlay_female_wielded_spear_copper", "fg": 5482 },
+ { "id": "overlay_female_wielded_splinter", "fg": 5498 },
+ { "id": "overlay_male_wielded_splinter", "fg": 5499 },
+ { "id": "overlay_wielded_knife_steak", "fg": 5500 },
+ { "id": "overlay_wielded_steel_chunk", "fg": 5501 },
+ { "id": "overlay_wielded_steel_lump", "fg": 5502 },
+ { "id": "overlay_female_wielded_stick", "fg": 5503 },
+ { "id": "overlay_male_wielded_stick", "fg": 5504 },
+ { "id": "overlay_female_wielded_stick_long", "fg": 5505 },
+ { "id": "overlay_male_wielded_stick_long", "fg": 5506 },
+ { "id": "overlay_female_wielded_primitive_hammer", "fg": 5507 },
+ { "id": "overlay_male_wielded_primitive_hammer", "fg": 5508 },
+ { "id": "overlay_female_wielded_spear_stone", "fg": 5509 },
+ { "id": "overlay_male_wielded_spear_stone", "fg": 5510 },
+ { "id": "overlay_wielded_knife_rambo", "fg": 5511 },
+ { "id": "overlay_female_wielded_spear_survivor", "fg": 5512 },
+ { "id": "overlay_male_wielded_spear_survivor", "fg": 5513 },
+ { "id": "overlay_wielded_switchblade", "fg": 5514 },
+ { "id": "overlay_wielded_tanto", "fg": 5516 },
+ { "id": "overlay_female_wielded_teapot", "fg": 5517 },
+ { "id": "overlay_male_wielded_teapot", "fg": 5518 },
+ { "id": "overlay_female_wielded_television", "fg": 5519 },
+ { "id": "overlay_male_wielded_television", "fg": 5520 },
+ { "id": "overlay_female_wielded_thermos", "fg": 5521 },
+ { "id": "overlay_male_wielded_thermos", "fg": 5522 },
+ { "id": "overlay_wielded_boltcutters", "fg": 5523 },
+ { "id": "overlay_wielded_e_tool", "fg": 5525 },
+ { "id": "overlay_wielded_halligan", "fg": 5526 },
+ { "id": "overlay_wielded_jackhammer", "fg": 5528 },
+ { "id": "overlay_wielded_elec_jackhammer", "fg": 5528 },
+ { "id": "overlay_wielded_lobotomizer", "fg": 5529 },
+ { "id": "overlay_wielded_makeshift_axe", "fg": 5530 },
+ { "id": "overlay_wielded_ny_hook", "fg": 5531 },
+ { "id": "overlay_wielded_pickaxe", "fg": 5532 },
+ { "id": "overlay_wielded_hammer_sledge_engineer", "fg": 5533 },
+ { "id": "overlay_wielded_hammer_sledge_heavy", "fg": 5534 },
+ { "id": "overlay_wielded_hammer_sledge_short", "fg": 5535 },
+ { "id": "overlay_wielded_hammer_sledge", "fg": 5536 },
+ { "id": "overlay_wielded_g_shovel", "fg": 5537 },
+ { "id": "overlay_wielded_primitive_shovel", "fg": 5538 },
+ { "id": "overlay_wielded_knife_trench", "fg": 5539 },
+ { "id": "overlay_wielded_wakizashi", "fg": 5540 },
+ { "id": "overlay_male_wielded_2h_flail_steel", "fg": 5542 },
+ { "id": "overlay_female_wielded_2h_flail_steel", "fg": 5541 },
+ { "id": "overlay_wielded_warhammer", "fg": 5543 },
+ { "id": "overlay_wielded_bolas", "fg": 5544 },
+ { "id": "overlay_wielded_bullwhip", "fg": 5545 },
+ { "id": "overlay_female_wielded_homewrecker", "fg": 5546 },
+ { "id": "overlay_male_wielded_homewrecker", "fg": 5547 },
+ { "id": "overlay_wielded_lawn_dart", "fg": 5548 },
+ { "id": "overlay_wielded_net", "fg": 5549 },
+ { "id": "overlay_wielded_bullwhip_razor", "fg": 5550 },
+ { "id": "overlay_wielded_sling", "fg": 5551 },
+ { "id": "overlay_wielded_staff_sling", "fg": 5552 },
+ { "id": "overlay_wielded_throwing_axe", "fg": 5553 },
+ { "id": "overlay_female_wielded_throwing_knife", "fg": 5554 },
+ { "id": "overlay_male_wielded_throwing_knife", "fg": 5555 },
+ { "id": "overlay_wielded_throwing_stick", "fg": 5556 },
+ { "id": "overlay_wielded_shocktonfa_off", "fg": 5557 },
+ { "id": "overlay_wielded_shocktonfa_on", "fg": 5557 },
+ { "id": "overlay_wielded_tonfa", "fg": 5558 },
+ { "id": "overlay_wielded_tonfa_wood", "fg": 5559 },
+ { "id": "overlay_wielded_sword_wood", "fg": 5560 },
+ { "id": "overlay_wielded_sword_nail", "fg": 5561 },
+ { "id": "overlay_wielded_zweihander", "fg": 5562 },
+ { "id": "overlay_female_worn_armor_samurai", "fg": 5563 },
+ { "id": "overlay_male_worn_armor_samurai", "fg": 5564 },
+ { "id": "overlay_female_worn_chainmail_suit", "fg": 5573 },
+ { "id": "overlay_male_worn_chainmail_suit", "fg": 5574 },
+ { "id": "overlay_female_worn_chainmail_feet", "fg": 5575 },
+ { "id": "overlay_male_worn_chainmail_feet", "fg": 5576 },
+ { "id": "overlay_female_worn_chainmail_hood", "fg": 5577 },
+ { "id": "overlay_male_worn_chainmail_hood", "fg": 5578 },
+ { "id": "overlay_female_worn_chainmail_hands", "fg": 5579 },
+ { "id": "overlay_male_worn_chainmail_hands", "fg": 5580 },
+ { "id": "overlay_female_worn_chainmail_hauberk", "fg": 5581 },
+ { "id": "overlay_male_worn_chainmail_hauberk", "fg": 5582 },
+ { "id": "overlay_female_worn_chainmail_legs", "fg": 5583 },
+ { "id": "overlay_male_worn_chainmail_legs", "fg": 5584 },
+ { "id": "overlay_female_worn_chainmail_arms", "fg": 5585 },
+ { "id": "overlay_male_worn_chainmail_arms", "fg": 5586 },
+ { "id": "overlay_female_worn_chainmail_vest", "fg": 5587 },
+ { "id": "overlay_male_worn_chainmail_vest", "fg": 5588 },
+ { "id": "overlay_female_worn_vest_leather_mod", "fg": 5569 },
+ { "id": "overlay_male_worn_vest_leather_mod", "fg": 5570 },
+ { "id": "overlay_female_worn_armor_blarmor", "fg": 5571 },
+ { "id": "overlay_male_worn_armor_blarmor", "fg": 5572 },
+ { "id": "overlay_female_worn_armguard_larmor", "fg": 5593 },
+ { "id": "overlay_male_worn_armguard_larmor", "fg": 5594 },
+ { "id": "overlay_female_worn_boots_larmor", "fg": 5595 },
+ { "id": "overlay_male_worn_boots_larmor", "fg": 5596 },
+ { "id": "overlay_male_worn_gauntlets_larmor", "fg": 5597 },
+ { "id": "overlay_female_worn_gauntlets_larmor", "fg": 5598 },
+ { "id": "overlay_male_worn_helmet_larmor", "fg": 5600 },
+ { "id": "overlay_female_worn_helmet_larmor", "fg": 5599 },
+ { "id": "overlay_female_worn_armor_larmor", "fg": 5601 },
+ { "id": "overlay_male_worn_armor_larmor", "fg": 5602 },
+ { "id": "overlay_female_worn_footrags_leather", "fg": 5603 },
+ { "id": "overlay_male_worn_footrags_leather", "fg": 5604 },
+ { "id": "overlay_female_worn_gloves_wraps_leather", "fg": 5605 },
+ { "id": "overlay_male_worn_gloves_wraps_leather", "fg": 5606 },
+ { "id": "overlay_female_worn_vambrace_larmor", "fg": 5607 },
+ { "id": "overlay_male_worn_vambrace_larmor", "fg": 5608 },
+ { "id": "overlay_female_worn_vest_leather", "fg": 5609 },
+ { "id": "overlay_male_worn_vest_leather", "fg": 5610 },
+ { "id": "overlay_female_worn_armor_plarmor", "fg": 5613 },
+ { "id": "overlay_male_worn_armor_plarmor", "fg": 5614 },
+ { "id": "overlay_female_worn_gloves_studded", "fg": 5621 },
+ { "id": "overlay_male_worn_gloves_studded", "fg": 5622 },
+ { "id": "overlay_male_worn_helmet_plate", "fg": 5592 },
+ { "id": "overlay_male_worn_armor_lightplate", "fg": 5612 },
+ { "id": "overlay_male_worn_gloves_plate", "fg": 5568 },
+ { "id": "overlay_male_worn_boots_plate", "fg": 5566 },
+ { "id": "overlay_male_worn_cuirass_lightplate", "fg": 5590 },
+ { "id": "overlay_male_worn_armguard_lightplate", "fg": 5618 },
+ { "id": "overlay_male_worn_legguard_lightplate", "fg": 5620 },
+ { "id": "overlay_female_worn_helmet_plate", "fg": 5591 },
+ { "id": "overlay_female_worn_armor_lightplate", "fg": 5611 },
+ { "id": "overlay_female_worn_gloves_plate", "fg": 5567 },
+ { "id": "overlay_female_worn_boots_plate", "fg": 5565 },
+ { "id": "overlay_female_worn_cuirass_lightplate", "fg": 5589 },
+ { "id": "overlay_female_worn_armguard_lightplate", "fg": 5617 },
+ { "id": "overlay_female_worn_legguard_lightplate", "fg": 5619 },
+ { "id": "overlay_female_worn_armguard_hard", "fg": 5623 },
+ { "id": "overlay_male_worn_armguard_hard", "fg": 5624 },
+ { "id": "overlay_female_worn_armor_riot", "fg": 5625 },
+ { "id": "overlay_male_worn_armor_riot", "fg": 5626 },
+ { "id": "overlay_female_worn_ballistic_vest_esapi", "fg": 5627 },
+ { "id": "overlay_male_worn_ballistic_vest_esapi", "fg": 5628 },
+ { "id": "overlay_female_worn_helmet_riot", "fg": 5629 },
+ { "id": "overlay_male_worn_helmet_riot", "fg": 5630 },
+ { "id": "overlay_female_worn_kevlar", "fg": 5631 },
+ { "id": "overlay_male_worn_kevlar", "fg": 5632 },
+ { "id": "overlay_female_worn_legguard_hard", "fg": 5633 },
+ { "id": "overlay_male_worn_legguard_hard", "fg": 5634 },
+ { "id": "overlay_female_worn_swat_armor", "fg": 5653 },
+ { "id": "overlay_male_worn_swat_armor", "fg": 5654 },
+ { "id": "overlay_female_worn_tac_fullhelmet", "fg": 5655 },
+ { "id": "overlay_male_worn_tac_fullhelmet", "fg": 5656 },
+ { "id": "overlay_female_worn_tac_helmet", "fg": 5657 },
+ { "id": "overlay_male_worn_tac_helmet", "fg": 5658 },
+ { "id": "overlay_female_worn_2byarm_guard", "fg": 5659 },
+ { "id": "overlay_male_worn_2byarm_guard", "fg": 5660 },
+ { "id": "overlay_female_worn_2byshin_guard", "fg": 5661 },
+ { "id": "overlay_male_worn_2byshin_guard", "fg": 5662 },
+ { "id": "overlay_female_worn_legguard_metal", "fg": 5663 },
+ { "id": "overlay_male_worn_legguard_metal", "fg": 5664 },
+ { "id": "overlay_female_worn_armguard_metal", "fg": 5665 },
+ { "id": "overlay_male_worn_armguard_metal", "fg": 5666 },
+ { "id": "overlay_male_worn_helmet_scrap", "fg": 5676 },
+ { "id": "overlay_male_worn_armor_scrapsuit", "fg": 5680 },
+ { "id": "overlay_male_worn_boots_scrap", "fg": 5672 },
+ { "id": "overlay_male_worn_cuirass_scrap", "fg": 5674 },
+ { "id": "overlay_male_worn_armguard_scrap", "fg": 5616 },
+ { "id": "overlay_male_worn_legguard_scrap", "fg": 5678 },
+ { "id": "overlay_female_worn_helmet_scrap", "fg": 5675 },
+ { "id": "overlay_female_worn_armor_scrapsuit", "fg": 5679 },
+ { "id": "overlay_female_worn_boots_scrap", "fg": 5671 },
+ { "id": "overlay_female_worn_cuirass_scrap", "fg": 5673 },
+ { "id": "overlay_female_worn_armguard_scrap", "fg": 5615 },
+ { "id": "overlay_female_worn_legguard_scrap", "fg": 5677 },
+ { "id": "overlay_male_worn_backpack", "fg": 5686 },
+ { "id": "overlay_female_worn_backpack", "fg": 5681 },
+ { "id": "overlay_male_worn_backpack_hiking", "fg": 5683 },
+ { "id": "overlay_female_worn_backpack_hiking", "fg": 5682 },
+ { "id": "overlay_female_worn_backpack_leather", "fg": 5684 },
+ { "id": "overlay_male_worn_backpack_leather", "fg": 5685 },
+ { "id": "overlay_male_worn_backpack_tactical_large", "fg": 5688 },
+ { "id": "overlay_female_worn_backpack_tactical_large", "fg": 5687 },
+ { "id": "overlay_male_worn_molle_pack", "fg": 5690 },
+ { "id": "overlay_female_worn_molle_pack", "fg": 5689 },
+ { "id": [ "overlay_female_worn_rifle_case_soft", "overlay_female_worn_rifle_case_soft_2" ], "fg": 5692 },
{
"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": 5623
+ "fg": 5693
},
- { "id": [ "overlay_male_worn_rifle_case_soft", "overlay_male_worn_rifle_case_soft_2" ], "fg": 5626 },
+ { "id": [ "overlay_male_worn_rifle_case_soft", "overlay_male_worn_rifle_case_soft_2" ], "fg": 5696 },
{
"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": 5627
- },
- { "id": "overlay_female_worn_rucksack", "fg": 5629 },
- { "id": "overlay_male_worn_rucksack", "fg": 5630 },
- { "id": "overlay_worn_bead_necklace", "fg": 5632 },
- { "id": "overlay_worn_bead_bracelet", "fg": 5631 },
- { "id": "overlay_worn_leather_belt", "fg": 5642 },
- { "id": "overlay_worn_police_belt", "fg": 5656 },
- { "id": "overlay_worn_tool_belt", "fg": 5661 },
- { "id": "overlay_worn_webbing_belt", "fg": 5663 },
- { "id": "overlay_worn_briefcase", "fg": 5635 },
- { "id": "overlay_wielded_briefcase", "fg": 5635 },
- { "id": "overlay_worn_briefcase_smg", "fg": 5635 },
- { "id": "overlay_wielded_briefcase_smg", "fg": 5635 },
- { "id": "overlay_worn_hk_briefcase", "fg": 5635 },
- { "id": "overlay_wielded_hk_briefcase", "fg": 5635 },
- { "id": "overlay_female_worn_wearable_light", "fg": 5638 },
- { "id": "overlay_male_worn_wearable_light", "fg": 5639 },
- { "id": "overlay_female_worn_wearable_light_on", "fg": 5638 },
- { "id": "overlay_male_worn_wearable_light_on", "fg": 5639 },
- { "id": "overlay_female_worn_survivor_light", "fg": 5638 },
- { "id": "overlay_male_worn_survivor_light", "fg": 5639 },
- { "id": "overlay_female_worn_survivor_light_on", "fg": 5638 },
- { "id": "overlay_male_worn_survivor_light_on", "fg": 5639 },
- { "id": "overlay_female_worn_holster", "fg": 5640 },
- { "id": "overlay_male_worn_holster", "fg": 5641 },
- { "id": "overlay_female_worn_legpouch_large", "fg": 5643 },
- { "id": "overlay_male_worn_legpouch_large", "fg": 5644 },
- { "id": "overlay_female_worn_legrig", "fg": 5645 },
- { "id": "overlay_male_worn_legrig", "fg": 5646 },
- { "id": "overlay_worn_judo_belt_black", "fg": 5633 },
- { "id": "overlay_worn_judo_belt_blue", "fg": 5634 },
- { "id": "overlay_worn_judo_belt_brown", "fg": 5636 },
- { "id": "overlay_worn_judo_belt_green", "fg": 5637 },
- { "id": "overlay_worn_judo_belt_orange", "fg": 5647 },
- { "id": "overlay_worn_judo_belt_white", "fg": 5664 },
- { "id": "overlay_worn_judo_belt_yellow", "fg": 5665 },
- { "id": "overlay_female_worn_ragpouch", "fg": 5657 },
- { "id": "overlay_male_worn_ragpouch", "fg": 5658 },
- { "id": "overlay_female_worn_tacvest", "fg": 5659 },
- { "id": "overlay_male_worn_tacvest", "fg": 5660 },
- { "id": "overlay_worn_wearable_light", "fg": 5662 },
- { "id": "overlay_female_worn_dinosuit", "fg": 5666 },
- { "id": "overlay_male_worn_dinosuit", "fg": 5667 },
- { "id": "overlay_female_worn_hazmat_suit", "fg": 5668 },
- { "id": "overlay_male_worn_hazmat_suit", "fg": 5669 },
- { "id": "overlay_female_worn_judo_gi", "fg": 5670 },
- { "id": "overlay_male_worn_judo_gi", "fg": 5671 },
- { "id": "overlay_female_worn_jumpsuit", "fg": 5672 },
- { "id": "overlay_male_worn_jumpsuit", "fg": 5673 },
- { "id": "overlay_female_worn_karate_gi", "fg": 5674 },
- { "id": "overlay_male_worn_karate_gi", "fg": 5675 },
- { "id": "overlay_female_worn_robofac_jumpsuit", "fg": 5677 },
- { "id": "overlay_male_worn_robofac_jumpsuit", "fg": 5678 },
- { "id": "overlay_female_worn_subject_suit", "fg": 5679 },
- { "id": "overlay_male_worn_subject_suit", "fg": 5680 },
- { "id": "overlay_female_worn_suit", "fg": 5681 },
- { "id": "overlay_male_worn_suit", "fg": 5682 },
- { "id": "overlay_female_worn_touring_suit", "fg": 5683 },
- { "id": "overlay_male_worn_touring_suit", "fg": 5684 },
- { "id": "overlay_female_worn_boots", "fg": 5688 },
- { "id": "overlay_male_worn_boots", "fg": 5693 },
- { "id": "overlay_female_worn_boots_bunker", "fg": 5685 },
- { "id": "overlay_male_worn_boots_bunker", "fg": 5686 },
- { "id": "overlay_female_worn_boots_fur", "fg": 5689 },
- { "id": "overlay_male_worn_boots_fur", "fg": 5690 },
- { "id": "overlay_female_worn_boots_hiking", "fg": 5691 },
- { "id": "overlay_male_worn_boots_hiking", "fg": 5692 },
- { "id": "overlay_female_worn_boots_rubber", "fg": 5694 },
- { "id": "overlay_male_worn_boots_rubber", "fg": 5695 },
- { "id": "overlay_female_worn_boots_steel", "fg": 5696 },
- { "id": "overlay_male_worn_boots_steel", "fg": 5697 },
- { "id": "overlay_female_worn_boots_western", "fg": 5698 },
- { "id": "overlay_male_worn_boots_western", "fg": 5699 },
- { "id": "overlay_female_worn_boots_winter", "fg": 5700 },
- { "id": "overlay_male_worn_boots_winter", "fg": 5701 },
- { "id": "overlay_female_worn_motorbike_boots", "fg": 5702 },
- { "id": "overlay_male_worn_motorbike_boots", "fg": 5703 },
- { "id": "overlay_worn_boots_combat", "fg": 5687 },
- { "id": "overlay_male_worn_cape_fp", "fg": 5738 },
- { "id": "overlay_female_worn_cape_fp", "fg": 5737 },
- { "id": "overlay_male_worn_cloak", "fg": 5744 },
- { "id": "overlay_female_worn_cloak", "fg": 5739 },
- { "id": "overlay_male_worn_cloak_wool", "fg": 5746 },
- { "id": "overlay_female_worn_cloak_wool", "fg": 5745 },
- { "id": "overlay_male_worn_cloak_leather", "fg": 5743 },
- { "id": "overlay_female_worn_cloak_leather", "fg": 5742 },
- { "id": "overlay_male_worn_cloak_fur", "fg": 5741 },
- { "id": "overlay_female_worn_cloak_fur", "fg": 5740 },
- { "id": "overlay_female_worn_dress", "fg": 5764 },
- { "id": "overlay_male_worn_dress", "fg": 5765 },
- { "id": "overlay_female_worn_sundress", "fg": 5772 },
- { "id": "overlay_male_worn_sundress", "fg": 5773 },
- { "id": "overlay_female_worn_maid_hat", "fg": 5863 },
- { "id": "overlay_female_worn_maid_dress", "fg": 5766 },
- { "id": "overlay_male_worn_maid_hat", "fg": 5864 },
- { "id": "overlay_male_worn_maid_dress", "fg": 5767 },
- { "id": "overlay_female_worn_skirt", "fg": 5768 },
- { "id": "overlay_male_worn_skirt", "fg": 5771 },
- { "id": "overlay_female_worn_skirt_leather", "fg": 5769 },
- { "id": "overlay_male_worn_skirt_leather", "fg": 5770 },
- { "id": "overlay_worn_elbow_pads", "fg": 5774 },
- { "id": "overlay_female_worn_glasses_bal", "fg": 5775 },
- { "id": "overlay_male_worn_glasses_bal", "fg": 5776 },
- { "id": "overlay_female_worn_glasses_bifocal", "fg": 5777 },
- { "id": "overlay_male_worn_glasses_bifocal", "fg": 5778 },
- { "id": "overlay_female_worn_glasses_eye", "fg": 5779 },
- { "id": "overlay_male_worn_glasses_eye", "fg": 5780 },
- { "id": "overlay_female_worn_glasses_monocle", "fg": 5781 },
- { "id": "overlay_male_worn_glasses_monocle", "fg": 5782 },
- { "id": "overlay_female_worn_glasses_reading", "fg": 5783 },
- { "id": "overlay_male_worn_glasses_reading", "fg": 5784 },
- { "id": "overlay_female_worn_glasses_safety", "fg": 5785 },
- { "id": "overlay_male_worn_glasses_safety", "fg": 5786 },
- { "id": "overlay_female_worn_mask_ski", "fg": 5787 },
- { "id": "overlay_male_worn_mask_ski", "fg": 5790 },
- { "id": "overlay_female_worn_mask_ski_loose", "fg": 5788 },
- { "id": "overlay_male_worn_mask_ski_loose", "fg": 5789 },
- { "id": "overlay_female_worn_sunglasses", "fg": 5793 },
- { "id": "overlay_male_worn_sunglasses", "fg": 5794 },
- { "id": "overlay_female_worn_goggles_welding", "fg": 5795 },
- { "id": "overlay_male_worn_goggles_welding", "fg": 5796 },
- { "id": "overlay_female_worn_glove_jackson", "fg": 5797 },
- { "id": "overlay_male_worn_glove_jackson", "fg": 5798 },
- { "id": "overlay_female_worn_gloves_liner", "fg": 5811 },
- { "id": "overlay_male_worn_gloves_liner", "fg": 5812 },
- { "id": "overlay_female_worn_gloves_medical", "fg": 5813 },
- { "id": "overlay_male_worn_gloves_medical", "fg": 5814 },
- { "id": "overlay_female_worn_gloves_rubber", "fg": 5815 },
- { "id": "overlay_male_worn_gloves_rubber", "fg": 5816 },
- { "id": "overlay_female_worn_gloves_tactical", "fg": 5817 },
- { "id": "overlay_male_worn_gloves_tactical", "fg": 5818 },
- { "id": "overlay_female_worn_gloves_winter", "fg": 5819 },
- { "id": "overlay_male_worn_gloves_winter", "fg": 5820 },
- { "id": "overlay_female_worn_gloves_wool", "fg": 5821 },
- { "id": "overlay_male_worn_gloves_wool", "fg": 5822 },
- { "id": "overlay_female_worn_gloves_work", "fg": 5823 },
- { "id": "overlay_male_worn_gloves_work", "fg": 5824 },
- { "id": "overlay_female_worn_gloves_cut_resistant", "fg": 5799 },
- { "id": "overlay_male_worn_gloves_cut_resistant", "fg": 5800 },
- { "id": "overlay_female_worn_gloves_fingerless", "fg": 5801 },
- { "id": "overlay_male_worn_gloves_fingerless", "fg": 5802 },
- { "id": "overlay_female_worn_gloves_fur", "fg": 5803 },
- { "id": "overlay_male_worn_gloves_fur", "fg": 5804 },
- { "id": "overlay_female_worn_gloves_golf", "fg": 5805 },
- { "id": "overlay_male_worn_gloves_golf", "fg": 5806 },
- { "id": "overlay_female_worn_gloves_leather", "fg": 5807 },
- { "id": "overlay_male_worn_gloves_leather", "fg": 5808 },
- { "id": "overlay_female_worn_gloves_light", "fg": 5809 },
- { "id": "overlay_male_worn_gloves_light", "fg": 5810 },
- { "id": "overlay_male_worn_long_glove_white", "fg": 5826 },
- { "id": "overlay_female_worn_long_glove_white", "fg": 5825 },
- { "id": "overlay_female_worn_mittens", "fg": 5827 },
- { "id": "overlay_male_worn_mittens", "fg": 5828 },
- { "id": "overlay_female_worn_beret", "fg": 5829 },
- { "id": "overlay_male_worn_beret", "fg": 5830 },
- { "id": "overlay_female_worn_bowhat", "fg": 5831 },
- { "id": "overlay_male_worn_bowhat", "fg": 5832 },
- { "id": "overlay_female_worn_cowboy_hat", "fg": 5833 },
- { "id": "overlay_male_worn_cowboy_hat", "fg": 5834 },
- { "id": "overlay_female_worn_fedora", "fg": 5835 },
- { "id": "overlay_male_worn_fedora", "fg": 5836 },
- { "id": "overlay_female_worn_firehelmet", "fg": 5837 },
- { "id": "overlay_male_worn_firehelmet", "fg": 5838 },
- { "id": "overlay_female_worn_hat_ball", "fg": 5839 },
- { "id": "overlay_male_worn_hat_ball", "fg": 5840 },
- { "id": "overlay_male_worn_hat_cotton", "fg": 5842 },
- { "id": "overlay_female_worn_hat_cotton", "fg": 5841 },
- { "id": "overlay_male_worn_hat_fur", "fg": 5844 },
- { "id": "overlay_female_worn_hat_fur", "fg": 5843 },
- { "id": "overlay_female_worn_hat_hard", "fg": 5845 },
- { "id": "overlay_male_worn_hat_hard", "fg": 5846 },
- { "id": "overlay_female_worn_hat_noise_cancelling", "fg": 5849 },
- { "id": "overlay_male_worn_hat_noise_cancelling", "fg": 5850 },
- { "id": "overlay_female_worn_helmet_army", "fg": 5851 },
- { "id": "overlay_male_worn_helmet_army", "fg": 5852 },
- { "id": "overlay_female_worn_helmet_barbute", "fg": 5853 },
- { "id": "overlay_male_worn_helmet_barbute", "fg": 5854 },
- { "id": "overlay_female_worn_helmet_bike", "fg": 5855 },
- { "id": "overlay_male_worn_helmet_bike", "fg": 5856 },
- { "id": "overlay_female_worn_helmet_chitin", "fg": 5857 },
- { "id": "overlay_male_worn_helmet_chitin", "fg": 5858 },
- { "id": "overlay_female_worn_helmet_kabuto", "fg": 5859 },
- { "id": "overlay_male_worn_helmet_kabuto", "fg": 5860 },
- { "id": "overlay_female_worn_helmet_motor", "fg": 5861 },
- { "id": "overlay_male_worn_helmet_motor", "fg": 5862 },
- { "id": "overlay_female_worn_hat_knit", "fg": 5847 },
- { "id": "overlay_male_worn_hat_knit", "fg": 5848 },
- { "id": "overlay_female_worn_straw_fedora", "fg": 5867 },
- { "id": "overlay_male_worn_straw_fedora", "fg": 5868 },
- { "id": "overlay_female_worn_straw_hat", "fg": 5869 },
- { "id": "overlay_male_worn_straw_hat", "fg": 5870 },
- { "id": "overlay_female_worn_10gal_hat", "fg": 5871 },
- { "id": "overlay_male_worn_10gal_hat", "fg": 5872 },
- { "id": "overlay_female_worn_tophat", "fg": 5873 },
- { "id": "overlay_male_worn_tophat", "fg": 5874 },
- { "id": "overlay_male_worn_turban", "fg": 5876 },
- { "id": "overlay_female_worn_turban", "fg": 5875 },
- { "id": "overlay_female_worn_blazer", "fg": 5879 },
- { "id": "overlay_male_worn_blazer", "fg": 5880 },
- { "id": "overlay_female_worn_bunker_coat", "fg": 5881 },
- { "id": "overlay_male_worn_bunker_coat", "fg": 5882 },
- { "id": "overlay_female_worn_coat_lab", "fg": 5883 },
- { "id": "overlay_male_worn_coat_lab", "fg": 5884 },
- { "id": "overlay_female_worn_coat_rain", "fg": 5885 },
- { "id": "overlay_male_worn_coat_rain", "fg": 5886 },
- { "id": "overlay_female_worn_coat_winter", "fg": 5887 },
- { "id": "overlay_male_worn_coat_winter", "fg": 5888 },
- { "id": "overlay_female_worn_duster", "fg": 5889 },
- { "id": "overlay_male_worn_duster", "fg": 5890 },
- { "id": "overlay_female_worn_jacket_flannel", "fg": 5895 },
- { "id": "overlay_male_worn_jacket_flannel", "fg": 5896 },
- { "id": "overlay_female_worn_jacket_jean", "fg": 5897 },
- { "id": "overlay_male_worn_jacket_jean", "fg": 5898 },
- { "id": "overlay_female_worn_jacket_light", "fg": 5901 },
- { "id": "overlay_male_worn_jacket_light", "fg": 5902 },
- { "id": "overlay_female_worn_jacket_evac", "fg": 5893 },
- { "id": "overlay_male_worn_jacket_evac", "fg": 5894 },
- { "id": "overlay_female_worn_jacket_leather", "fg": 5903 },
- { "id": "overlay_male_worn_jacket_leather", "fg": 5904 },
- { "id": "overlay_female_worn_jacket_leather_red", "fg": 5899 },
- { "id": "overlay_male_worn_jacket_leather_red", "fg": 5900 },
- { "id": "overlay_female_worn_ski_jacket", "fg": 5905 },
- { "id": "overlay_male_worn_ski_jacket", "fg": 5906 },
- { "id": "overlay_female_worn_jacket_windbreaker", "fg": 5911 },
- { "id": "overlay_male_worn_jacket_windbreaker", "fg": 5912 },
- { "id": "overlay_female_worn_winter_jacket_army", "fg": 5877 },
- { "id": "overlay_male_worn_winter_jacket_army", "fg": 5878 },
- { "id": "overlay_female_worn_jacket_army", "fg": 5891 },
- { "id": "overlay_male_worn_jacket_army", "fg": 5892 },
- { "id": "overlay_female_worn_trenchcoat", "fg": 5907 },
- { "id": "overlay_male_worn_trenchcoat", "fg": 5908 },
- { "id": "overlay_female_worn_waistcoat", "fg": 5909 },
- { "id": "overlay_male_worn_waistcoat", "fg": 5910 },
- { "id": "overlay_female_worn_peacoat", "fg": 5913 },
- { "id": "overlay_male_worn_peacoat", "fg": 5914 },
- { "id": "overlay_female_worn_poncho", "fg": 5915 },
- { "id": "overlay_male_worn_poncho", "fg": 5916 },
- { "id": "overlay_worn_badge_swat", "fg": 5917 },
- { "id": "overlay_female_worn_barrette", "fg": 5918 },
- { "id": "overlay_male_worn_barrette", "fg": 5919 },
- { "id": "overlay_female_worn_badge_deputy", "fg": 5920 },
- { "id": "overlay_male_worn_badge_deputy", "fg": 5921 },
+ "fg": 5697
+ },
+ { "id": "overlay_female_worn_rucksack", "fg": 5699 },
+ { "id": "overlay_male_worn_rucksack", "fg": 5700 },
+ { "id": "overlay_worn_bead_necklace", "fg": 5702 },
+ { "id": "overlay_worn_bead_bracelet", "fg": 5701 },
+ { "id": "overlay_worn_leather_belt", "fg": 5712 },
+ { "id": "overlay_worn_police_belt", "fg": 5726 },
+ { "id": "overlay_worn_tool_belt", "fg": 5731 },
+ { "id": "overlay_worn_webbing_belt", "fg": 5733 },
+ { "id": "overlay_worn_briefcase", "fg": 5705 },
+ { "id": "overlay_wielded_briefcase", "fg": 5705 },
+ { "id": "overlay_worn_briefcase_smg", "fg": 5705 },
+ { "id": "overlay_wielded_briefcase_smg", "fg": 5705 },
+ { "id": "overlay_worn_hk_briefcase", "fg": 5705 },
+ { "id": "overlay_wielded_hk_briefcase", "fg": 5705 },
+ { "id": "overlay_female_worn_wearable_light", "fg": 5708 },
+ { "id": "overlay_male_worn_wearable_light", "fg": 5709 },
+ { "id": "overlay_female_worn_wearable_light_on", "fg": 5708 },
+ { "id": "overlay_male_worn_wearable_light_on", "fg": 5709 },
+ { "id": "overlay_female_worn_survivor_light", "fg": 5708 },
+ { "id": "overlay_male_worn_survivor_light", "fg": 5709 },
+ { "id": "overlay_female_worn_survivor_light_on", "fg": 5708 },
+ { "id": "overlay_male_worn_survivor_light_on", "fg": 5709 },
+ { "id": "overlay_female_worn_holster", "fg": 5710 },
+ { "id": "overlay_male_worn_holster", "fg": 5711 },
+ { "id": "overlay_female_worn_legpouch_large", "fg": 5713 },
+ { "id": "overlay_male_worn_legpouch_large", "fg": 5714 },
+ { "id": "overlay_female_worn_legrig", "fg": 5715 },
+ { "id": "overlay_male_worn_legrig", "fg": 5716 },
+ { "id": "overlay_worn_judo_belt_black", "fg": 5703 },
+ { "id": "overlay_worn_judo_belt_blue", "fg": 5704 },
+ { "id": "overlay_worn_judo_belt_brown", "fg": 5706 },
+ { "id": "overlay_worn_judo_belt_green", "fg": 5707 },
+ { "id": "overlay_worn_judo_belt_orange", "fg": 5717 },
+ { "id": "overlay_worn_judo_belt_white", "fg": 5734 },
+ { "id": "overlay_worn_judo_belt_yellow", "fg": 5735 },
+ { "id": "overlay_female_worn_ragpouch", "fg": 5727 },
+ { "id": "overlay_male_worn_ragpouch", "fg": 5728 },
+ { "id": "overlay_female_worn_tacvest", "fg": 5729 },
+ { "id": "overlay_male_worn_tacvest", "fg": 5730 },
+ { "id": "overlay_worn_wearable_light", "fg": 5732 },
+ { "id": "overlay_female_worn_dinosuit", "fg": 5736 },
+ { "id": "overlay_male_worn_dinosuit", "fg": 5737 },
+ { "id": "overlay_female_worn_hazmat_suit", "fg": 5738 },
+ { "id": "overlay_male_worn_hazmat_suit", "fg": 5739 },
+ { "id": "overlay_female_worn_judo_gi", "fg": 5740 },
+ { "id": "overlay_male_worn_judo_gi", "fg": 5741 },
+ { "id": "overlay_female_worn_jumpsuit", "fg": 5742 },
+ { "id": "overlay_male_worn_jumpsuit", "fg": 5743 },
+ { "id": "overlay_female_worn_karate_gi", "fg": 5744 },
+ { "id": "overlay_male_worn_karate_gi", "fg": 5745 },
+ { "id": "overlay_female_worn_robofac_jumpsuit", "fg": 5747 },
+ { "id": "overlay_male_worn_robofac_jumpsuit", "fg": 5748 },
+ { "id": "overlay_female_worn_subject_suit", "fg": 5749 },
+ { "id": "overlay_male_worn_subject_suit", "fg": 5750 },
+ { "id": "overlay_female_worn_suit", "fg": 5751 },
+ { "id": "overlay_male_worn_suit", "fg": 5752 },
+ { "id": "overlay_female_worn_touring_suit", "fg": 5753 },
+ { "id": "overlay_male_worn_touring_suit", "fg": 5754 },
+ { "id": "overlay_female_worn_boots", "fg": 5758 },
+ { "id": "overlay_male_worn_boots", "fg": 5763 },
+ { "id": "overlay_female_worn_boots_bunker", "fg": 5755 },
+ { "id": "overlay_male_worn_boots_bunker", "fg": 5756 },
+ { "id": "overlay_female_worn_boots_fur", "fg": 5759 },
+ { "id": "overlay_male_worn_boots_fur", "fg": 5760 },
+ { "id": "overlay_female_worn_boots_hiking", "fg": 5761 },
+ { "id": "overlay_male_worn_boots_hiking", "fg": 5762 },
+ { "id": "overlay_female_worn_boots_rubber", "fg": 5764 },
+ { "id": "overlay_male_worn_boots_rubber", "fg": 5765 },
+ { "id": "overlay_female_worn_boots_steel", "fg": 5766 },
+ { "id": "overlay_male_worn_boots_steel", "fg": 5767 },
+ { "id": "overlay_female_worn_boots_western", "fg": 5768 },
+ { "id": "overlay_male_worn_boots_western", "fg": 5769 },
+ { "id": "overlay_female_worn_boots_winter", "fg": 5770 },
+ { "id": "overlay_male_worn_boots_winter", "fg": 5771 },
+ { "id": "overlay_female_worn_motorbike_boots", "fg": 5772 },
+ { "id": "overlay_male_worn_motorbike_boots", "fg": 5773 },
+ { "id": "overlay_worn_boots_combat", "fg": 5757 },
+ { "id": "overlay_male_worn_cape_fp", "fg": 5806 },
+ { "id": "overlay_female_worn_cape_fp", "fg": 5805 },
+ { "id": "overlay_male_worn_cloak", "fg": 5812 },
+ { "id": "overlay_female_worn_cloak", "fg": 5807 },
+ { "id": "overlay_male_worn_cloak_wool", "fg": 5814 },
+ { "id": "overlay_female_worn_cloak_wool", "fg": 5813 },
+ { "id": "overlay_male_worn_cloak_leather", "fg": 5811 },
+ { "id": "overlay_female_worn_cloak_leather", "fg": 5810 },
+ { "id": "overlay_male_worn_cloak_fur", "fg": 5809 },
+ { "id": "overlay_female_worn_cloak_fur", "fg": 5808 },
+ { "id": "overlay_female_worn_dress", "fg": 5832 },
+ { "id": "overlay_male_worn_dress", "fg": 5833 },
+ { "id": "overlay_female_worn_sundress", "fg": 5840 },
+ { "id": "overlay_male_worn_sundress", "fg": 5841 },
+ { "id": "overlay_female_worn_maid_hat", "fg": 5933 },
+ { "id": "overlay_female_worn_maid_dress", "fg": 5834 },
+ { "id": "overlay_male_worn_maid_hat", "fg": 5934 },
+ { "id": "overlay_male_worn_maid_dress", "fg": 5835 },
+ { "id": "overlay_female_worn_skirt", "fg": 5836 },
+ { "id": "overlay_male_worn_skirt", "fg": 5839 },
+ { "id": "overlay_female_worn_skirt_leather", "fg": 5837 },
+ { "id": "overlay_male_worn_skirt_leather", "fg": 5838 },
+ { "id": "overlay_worn_elbow_pads", "fg": 5842 },
+ { "id": "overlay_female_worn_glasses_bal", "fg": 5843 },
+ { "id": "overlay_male_worn_glasses_bal", "fg": 5844 },
+ { "id": "overlay_female_worn_glasses_bifocal", "fg": 5845 },
+ { "id": "overlay_male_worn_glasses_bifocal", "fg": 5846 },
+ { "id": "overlay_female_worn_glasses_eye", "fg": 5847 },
+ { "id": "overlay_male_worn_glasses_eye", "fg": 5848 },
+ { "id": "overlay_female_worn_glasses_monocle", "fg": 5849 },
+ { "id": "overlay_male_worn_glasses_monocle", "fg": 5850 },
+ { "id": "overlay_female_worn_glasses_reading", "fg": 5851 },
+ { "id": "overlay_male_worn_glasses_reading", "fg": 5852 },
+ { "id": "overlay_female_worn_glasses_safety", "fg": 5853 },
+ { "id": "overlay_male_worn_glasses_safety", "fg": 5854 },
+ { "id": "overlay_female_worn_mask_ski", "fg": 5855 },
+ { "id": "overlay_male_worn_mask_ski", "fg": 5858 },
+ { "id": "overlay_female_worn_mask_ski_loose", "fg": 5856 },
+ { "id": "overlay_male_worn_mask_ski_loose", "fg": 5857 },
+ { "id": "overlay_female_worn_sunglasses", "fg": 5861 },
+ { "id": "overlay_male_worn_sunglasses", "fg": 5862 },
+ { "id": "overlay_female_worn_goggles_welding", "fg": 5863 },
+ { "id": "overlay_male_worn_goggles_welding", "fg": 5864 },
+ { "id": "overlay_female_worn_glove_jackson", "fg": 5865 },
+ { "id": "overlay_male_worn_glove_jackson", "fg": 5866 },
+ { "id": "overlay_female_worn_gloves_liner", "fg": 5879 },
+ { "id": "overlay_male_worn_gloves_liner", "fg": 5880 },
+ { "id": "overlay_female_worn_gloves_medical", "fg": 5881 },
+ { "id": "overlay_male_worn_gloves_medical", "fg": 5882 },
+ { "id": "overlay_female_worn_gloves_rubber", "fg": 5883 },
+ { "id": "overlay_male_worn_gloves_rubber", "fg": 5884 },
+ { "id": "overlay_female_worn_gloves_tactical", "fg": 5885 },
+ { "id": "overlay_male_worn_gloves_tactical", "fg": 5886 },
+ { "id": "overlay_female_worn_gloves_winter", "fg": 5887 },
+ { "id": "overlay_male_worn_gloves_winter", "fg": 5888 },
+ { "id": "overlay_female_worn_gloves_wool", "fg": 5889 },
+ { "id": "overlay_male_worn_gloves_wool", "fg": 5890 },
+ { "id": "overlay_female_worn_gloves_work", "fg": 5891 },
+ { "id": "overlay_male_worn_gloves_work", "fg": 5892 },
+ { "id": "overlay_female_worn_gloves_cut_resistant", "fg": 5867 },
+ { "id": "overlay_male_worn_gloves_cut_resistant", "fg": 5868 },
+ { "id": "overlay_female_worn_gloves_fingerless", "fg": 5869 },
+ { "id": "overlay_male_worn_gloves_fingerless", "fg": 5870 },
+ { "id": "overlay_female_worn_gloves_fur", "fg": 5871 },
+ { "id": "overlay_male_worn_gloves_fur", "fg": 5872 },
+ { "id": "overlay_female_worn_gloves_golf", "fg": 5873 },
+ { "id": "overlay_male_worn_gloves_golf", "fg": 5874 },
+ { "id": "overlay_female_worn_gloves_leather", "fg": 5875 },
+ { "id": "overlay_male_worn_gloves_leather", "fg": 5876 },
+ { "id": "overlay_female_worn_gloves_light", "fg": 5877 },
+ { "id": "overlay_male_worn_gloves_light", "fg": 5878 },
+ { "id": "overlay_male_worn_long_glove_white", "fg": 5894 },
+ { "id": "overlay_female_worn_long_glove_white", "fg": 5893 },
+ { "id": "overlay_female_worn_mittens", "fg": 5895 },
+ { "id": "overlay_male_worn_mittens", "fg": 5896 },
+ { "id": "overlay_female_worn_beret", "fg": 5899 },
+ { "id": "overlay_male_worn_beret", "fg": 5900 },
+ { "id": "overlay_female_worn_bowhat", "fg": 5901 },
+ { "id": "overlay_male_worn_bowhat", "fg": 5902 },
+ { "id": "overlay_female_worn_cowboy_hat", "fg": 5903 },
+ { "id": "overlay_male_worn_cowboy_hat", "fg": 5904 },
+ { "id": "overlay_female_worn_fedora", "fg": 5905 },
+ { "id": "overlay_male_worn_fedora", "fg": 5906 },
+ { "id": "overlay_female_worn_firehelmet", "fg": 5907 },
+ { "id": "overlay_male_worn_firehelmet", "fg": 5908 },
+ { "id": "overlay_female_worn_hat_ball", "fg": 5909 },
+ { "id": "overlay_male_worn_hat_ball", "fg": 5910 },
+ { "id": "overlay_male_worn_hat_cotton", "fg": 5912 },
+ { "id": "overlay_female_worn_hat_cotton", "fg": 5911 },
+ { "id": "overlay_male_worn_hat_fur", "fg": 5914 },
+ { "id": "overlay_female_worn_hat_fur", "fg": 5913 },
+ { "id": "overlay_female_worn_hat_hard", "fg": 5915 },
+ { "id": "overlay_male_worn_hat_hard", "fg": 5916 },
+ { "id": "overlay_female_worn_hat_noise_cancelling", "fg": 5919 },
+ { "id": "overlay_male_worn_hat_noise_cancelling", "fg": 5920 },
+ { "id": "overlay_female_worn_helmet_army", "fg": 5921 },
+ { "id": "overlay_male_worn_helmet_army", "fg": 5922 },
+ { "id": "overlay_female_worn_helmet_barbute", "fg": 5923 },
+ { "id": "overlay_male_worn_helmet_barbute", "fg": 5924 },
+ { "id": "overlay_female_worn_helmet_bike", "fg": 5925 },
+ { "id": "overlay_male_worn_helmet_bike", "fg": 5926 },
+ { "id": "overlay_female_worn_helmet_chitin", "fg": 5927 },
+ { "id": "overlay_male_worn_helmet_chitin", "fg": 5928 },
+ { "id": "overlay_female_worn_helmet_kabuto", "fg": 5929 },
+ { "id": "overlay_male_worn_helmet_kabuto", "fg": 5930 },
+ { "id": "overlay_female_worn_helmet_motor", "fg": 5931 },
+ { "id": "overlay_male_worn_helmet_motor", "fg": 5932 },
+ { "id": "overlay_female_worn_hat_knit", "fg": 5917 },
+ { "id": "overlay_male_worn_hat_knit", "fg": 5918 },
+ { "id": "overlay_female_worn_straw_fedora", "fg": 5937 },
+ { "id": "overlay_male_worn_straw_fedora", "fg": 5938 },
+ { "id": "overlay_female_worn_straw_hat", "fg": 5939 },
+ { "id": "overlay_male_worn_straw_hat", "fg": 5940 },
+ { "id": "overlay_female_worn_10gal_hat", "fg": 5941 },
+ { "id": "overlay_male_worn_10gal_hat", "fg": 5942 },
+ { "id": "overlay_female_worn_tophat", "fg": 5943 },
+ { "id": "overlay_male_worn_tophat", "fg": 5944 },
+ { "id": "overlay_male_worn_turban", "fg": 5946 },
+ { "id": "overlay_female_worn_turban", "fg": 5945 },
+ { "id": "overlay_female_worn_blazer", "fg": 5949 },
+ { "id": "overlay_male_worn_blazer", "fg": 5950 },
+ { "id": "overlay_female_worn_bunker_coat", "fg": 5951 },
+ { "id": "overlay_male_worn_bunker_coat", "fg": 5952 },
+ { "id": "overlay_female_worn_coat_lab", "fg": 5953 },
+ { "id": "overlay_male_worn_coat_lab", "fg": 5954 },
+ { "id": "overlay_female_worn_coat_rain", "fg": 5955 },
+ { "id": "overlay_male_worn_coat_rain", "fg": 5956 },
+ { "id": "overlay_female_worn_coat_winter", "fg": 5957 },
+ { "id": "overlay_male_worn_coat_winter", "fg": 5958 },
+ { "id": "overlay_female_worn_duster", "fg": 5959 },
+ { "id": "overlay_male_worn_duster", "fg": 5960 },
+ { "id": "overlay_female_worn_jacket_flannel", "fg": 5965 },
+ { "id": "overlay_male_worn_jacket_flannel", "fg": 5966 },
+ { "id": "overlay_female_worn_jacket_jean", "fg": 5967 },
+ { "id": "overlay_male_worn_jacket_jean", "fg": 5968 },
+ { "id": "overlay_female_worn_jacket_light", "fg": 5971 },
+ { "id": "overlay_male_worn_jacket_light", "fg": 5972 },
+ { "id": "overlay_female_worn_jacket_evac", "fg": 5963 },
+ { "id": "overlay_male_worn_jacket_evac", "fg": 5964 },
+ { "id": "overlay_female_worn_jacket_leather", "fg": 5973 },
+ { "id": "overlay_male_worn_jacket_leather", "fg": 5974 },
+ { "id": "overlay_female_worn_jacket_leather_red", "fg": 5969 },
+ { "id": "overlay_male_worn_jacket_leather_red", "fg": 5970 },
+ { "id": "overlay_female_worn_ski_jacket", "fg": 5975 },
+ { "id": "overlay_male_worn_ski_jacket", "fg": 5976 },
+ { "id": "overlay_female_worn_jacket_windbreaker", "fg": 5981 },
+ { "id": "overlay_male_worn_jacket_windbreaker", "fg": 5982 },
+ { "id": "overlay_female_worn_winter_jacket_army", "fg": 5947 },
+ { "id": "overlay_male_worn_winter_jacket_army", "fg": 5948 },
+ { "id": "overlay_female_worn_jacket_army", "fg": 5961 },
+ { "id": "overlay_male_worn_jacket_army", "fg": 5962 },
+ { "id": "overlay_female_worn_trenchcoat", "fg": 5977 },
+ { "id": "overlay_male_worn_trenchcoat", "fg": 5978 },
+ { "id": "overlay_female_worn_waistcoat", "fg": 5979 },
+ { "id": "overlay_male_worn_waistcoat", "fg": 5980 },
+ { "id": "overlay_female_worn_peacoat", "fg": 5983 },
+ { "id": "overlay_male_worn_peacoat", "fg": 5984 },
+ { "id": "overlay_female_worn_poncho", "fg": 5985 },
+ { "id": "overlay_male_worn_poncho", "fg": 5986 },
+ { "id": "overlay_worn_badge_swat", "fg": 5987 },
+ { "id": "overlay_female_worn_barrette", "fg": 5988 },
+ { "id": "overlay_male_worn_barrette", "fg": 5989 },
+ { "id": "overlay_female_worn_badge_deputy", "fg": 5990 },
+ { "id": "overlay_male_worn_badge_deputy", "fg": 5991 },
{
"id": [
"overlay_female_worn_gold_ear",
@@ -7635,7 +7664,7 @@
"overlay_female_worn_sapphire_gold_earring",
"overlay_female_worn_tourmaline_gold_earring"
],
- "fg": 5924
+ "fg": 5994
},
{
"id": [
@@ -7655,7 +7684,7 @@
"overlay_female_worn_sapphire_platinum_earring",
"overlay_female_worn_tourmaline_platinum_earring"
],
- "fg": 5926
+ "fg": 5996
},
{
"id": [
@@ -7675,7 +7704,7 @@
"overlay_female_worn_sapphire_silver_earring",
"overlay_female_worn_tourmaline_silver_earring"
],
- "fg": 5927
+ "fg": 5997
},
{
"id": [
@@ -7695,7 +7724,7 @@
"overlay_male_worn_sapphire_gold_earring",
"overlay_male_worn_tourmaline_gold_earring"
],
- "fg": 5930
+ "fg": 6000
},
{
"id": [
@@ -7715,7 +7744,7 @@
"overlay_male_worn_sapphire_platinum_earring",
"overlay_male_worn_tourmaline_platinum_earring"
],
- "fg": 5932
+ "fg": 6002
},
{
"id": [
@@ -7735,7 +7764,7 @@
"overlay_male_worn_sapphire_silver_earring",
"overlay_male_worn_tourmaline_silver_earring"
],
- "fg": 5933
+ "fg": 6003
},
{
"id": [
@@ -7755,7 +7784,7 @@
"overlay_worn_sapphire_gold_ring",
"overlay_worn_tourmaline_gold_ring"
],
- "fg": 5934
+ "fg": 6004
},
{
"id": [
@@ -7775,7 +7804,7 @@
"overlay_worn_sapphire_platinum_ring",
"overlay_worn_tourmaline_platinum_ring"
],
- "fg": 5935
+ "fg": 6005
},
{
"id": [
@@ -7795,4864 +7824,5019 @@
"overlay_worn_sapphire_silver_ring",
"overlay_worn_tourmaline_silver_ring"
],
- "fg": 5936
- },
- { "id": "overlay_female_worn_knee_pads", "fg": 5945 },
- { "id": "overlay_male_worn_knee_pads", "fg": 5946 },
- { "id": "overlay_male_worn_arm_warmers", "fg": 5948 },
- { "id": "overlay_female_worn_arm_warmers", "fg": 5947 },
- { "id": "overlay_male_worn_leg_warmers", "fg": 5950 },
- { "id": "overlay_female_worn_leg_warmers", "fg": 5949 },
- { "id": "overlay_female_worn_armguard_soft", "fg": 5951 },
- { "id": "overlay_male_worn_armguard_soft", "fg": 5952 },
- { "id": "overlay_female_worn_balclava", "fg": 5953 },
- { "id": "overlay_male_worn_balclava", "fg": 5954 },
- { "id": "overlay_female_worn_bandana", "fg": 5955 },
- { "id": "overlay_male_worn_bandana", "fg": 5956 },
- { "id": "overlay_female_worn_beekeeping_hood", "fg": 5957 },
- { "id": "overlay_male_worn_beekeeping_hood", "fg": 5958 },
- { "id": "overlay_male_worn_foodperson_mask", "fg": 5960 },
- { "id": "overlay_female_worn_foodperson_mask", "fg": 5959 },
- { "id": "overlay_male_worn_foodperson_mask_on", "fg": 5962 },
- { "id": "overlay_female_worn_foodperson_mask_on", "fg": 5961 },
- { "id": "overlay_female_worn_mask_dust", "fg": 5963 },
- { "id": "overlay_male_worn_mask_dust", "fg": 5964 },
- { "id": "overlay_female_worn_mask_gas", "fg": 5965 },
- { "id": "overlay_male_worn_mask_gas", "fg": 5966 },
- { "id": "overlay_female_worn_welding_mask_crude", "fg": 5967 },
- { "id": "overlay_male_worn_welding_mask_crude", "fg": 5968 },
- { "id": "overlay_female_worn_welding_mask_crude_raised", "fg": 5969 },
- { "id": "overlay_male_worn_welding_mask_crude_raised", "fg": 4419 },
- { "id": "overlay_female_worn_welding_mask", "fg": 5970 },
- { "id": "overlay_male_worn_welding_mask", "fg": 5971 },
- { "id": "overlay_female_worn_welding_mask_raised", "fg": 5972 },
- { "id": "overlay_female_worn_mask_bal", "fg": 5973 },
- { "id": "overlay_male_worn_mask_bal", "fg": 5974 },
- { "id": "overlay_female_worn_fencing_mask", "fg": 5975 },
- { "id": "overlay_male_worn_fencing_mask", "fg": 5976 },
- { "id": "overlay_female_worn_mask_filter", "fg": 5977 },
- { "id": "overlay_male_worn_mask_filter", "fg": 5978 },
- { "id": "overlay_female_worn_mask_bunker", "fg": 5979 },
- { "id": "overlay_male_worn_mask_bunker", "fg": 5980 },
- { "id": "overlay_female_worn_mask_guy_fawkes", "fg": 5981 },
- { "id": "overlay_male_worn_mask_guy_fawkes", "fg": 5982 },
- { "id": "overlay_female_worn_mask_hockey", "fg": 5983 },
- { "id": "overlay_male_worn_mask_hockey", "fg": 5984 },
- { "id": "overlay_female_worn_mask_rioter", "fg": 5985 },
- { "id": "overlay_male_worn_mask_rioter", "fg": 5986 },
- { "id": "overlay_male_worn_robe", "fg": 5998 },
- { "id": "overlay_female_worn_robe", "fg": 5997 },
- { "id": "overlay_male_worn_house_coat", "fg": 5996 },
- { "id": "overlay_female_worn_house_coat", "fg": 5995 },
- { "id": "overlay_worn_binoculars", "fg": 5999 },
- { "id": "overlay_female_worn_knit_scarf", "fg": 6002 },
- { "id": "overlay_male_worn_knit_scarf", "fg": 6003 },
- { "id": "overlay_female_worn_scarf", "fg": 6005 },
- { "id": "overlay_female_worn_scarf_loose", "fg": 6005 },
- { "id": "overlay_male_worn_scarf", "fg": 6006 },
- { "id": "overlay_male_worn_scarf_loose", "fg": 6006 },
- { "id": "overlay_worn_tie_bow", "fg": 6000 },
- { "id": "overlay_worn_tie_clipon", "fg": 6001 },
- { "id": "overlay_worn_tie_necktie", "fg": 6004 },
- { "id": "overlay_worn_tie_skinny", "fg": 6007 },
- { "id": "overlay_female_worn_army_top", "fg": 6008 },
- { "id": "overlay_male_worn_army_top", "fg": 6009 },
- { "id": "overlay_female_worn_camisole", "fg": 6010 },
- { "id": "overlay_male_worn_camisole", "fg": 6011 },
- { "id": "overlay_female_worn_under_armor", "fg": 6012 },
- { "id": "overlay_male_worn_under_armor", "fg": 6013 },
- { "id": "overlay_female_worn_dress_shirt", "fg": 6014 },
- { "id": "overlay_male_worn_dress_shirt", "fg": 6015 },
- { "id": "overlay_female_worn_halter_top", "fg": 6016 },
- { "id": "overlay_male_worn_halter_top", "fg": 6017 },
- { "id": "overlay_female_worn_hoodie", "fg": 6018 },
- { "id": "overlay_male_worn_hoodie", "fg": 6019 },
- { "id": "overlay_female_worn_jersey", "fg": 6020 },
- { "id": "overlay_male_worn_jersey", "fg": 6021 },
- { "id": "overlay_female_worn_linuxtshirt", "fg": 6022 },
- { "id": "overlay_male_worn_linuxtshirt", "fg": 6023 },
- { "id": "overlay_female_worn_longshirt", "fg": 6024 },
- { "id": "overlay_male_worn_longshirt", "fg": 6025 },
- { "id": "overlay_female_worn_striped_shirt", "fg": 6026 },
- { "id": "overlay_male_worn_striped_shirt", "fg": 6027 },
- { "id": "overlay_female_worn_sweater", "fg": 6028 },
- { "id": "overlay_male_worn_sweater", "fg": 6029 },
- { "id": "overlay_female_worn_sweatshirt", "fg": 6030 },
- { "id": "overlay_male_worn_sweatshirt", "fg": 6031 },
- { "id": "overlay_female_worn_tank_top", "fg": 6032 },
- { "id": "overlay_male_worn_tank_top", "fg": 6033 },
- { "id": "overlay_female_worn_tshirt", "fg": 6034 },
- { "id": "overlay_male_worn_tshirt", "fg": 6035 },
- { "id": "overlay_female_worn_technician_shirt_gray", "fg": 6036 },
- { "id": "overlay_male_worn_technician_shirt_gray", "fg": 6037 },
- { "id": "overlay_worn_dress_shoes", "fg": 6038 },
- { "id": "overlay_female_worn_flip_flops", "fg": 6039 },
- { "id": "overlay_male_worn_flip_flops", "fg": 6040 },
- { "id": "overlay_female_worn_geta", "fg": 6041 },
- { "id": "overlay_male_worn_geta", "fg": 6042 },
- { "id": "overlay_worn_heels", "fg": 6043 },
- { "id": "overlay_worn_leathersandals", "fg": 6044 },
- { "id": "overlay_worn_lowtops", "fg": 6045 },
- { "id": "overlay_worn_roller_blades", "fg": 6046 },
- { "id": "overlay_female_worn_shoes_bowling", "fg": 6047 },
- { "id": "overlay_male_worn_shoes_bowling", "fg": 6048 },
- { "id": "overlay_female_worn_sneakers", "fg": 6049 },
- { "id": "overlay_male_worn_sneakers", "fg": 6050 },
- { "id": "overlay_female_worn_clogs", "fg": 6051 },
- { "id": "overlay_male_worn_clogs", "fg": 6052 },
- { "id": "overlay_female_worn_b_shorts", "fg": 6053 },
- { "id": "overlay_male_worn_b_shorts", "fg": 6054 },
- { "id": "overlay_female_worn_boy_shorts", "fg": 6055 },
- { "id": "overlay_male_worn_boy_shorts", "fg": 6056 },
- { "id": "overlay_female_worn_under_armor_shorts", "fg": 6057 },
- { "id": "overlay_male_worn_under_armor_shorts", "fg": 6058 },
- { "id": "overlay_female_worn_shorts_cargo", "fg": 6059 },
- { "id": "overlay_male_worn_shorts_cargo", "fg": 6060 },
- { "id": "overlay_female_worn_shorts_denim", "fg": 6061 },
- { "id": "overlay_male_worn_shorts_denim", "fg": 6062 },
- { "id": "overlay_female_worn_shorts", "fg": 6063 },
- { "id": "overlay_male_worn_shorts", "fg": 6064 },
- { "id": "overlay_worn_boots_survivor", "fg": 6065 },
- { "id": "overlay_worn_boots_xlsurvivor", "fg": 6065 },
- { "id": "overlay_female_worn_sleeveless_duster_survivor", "fg": 6068 },
- { "id": "overlay_male_worn_sleeveless_duster_survivor", "fg": 6069 },
- { "id": "overlay_female_worn_sleeveless_trenchcoat_survivor", "fg": 6070 },
- { "id": "overlay_male_worn_sleeveless_trenchcoat_survivor", "fg": 6071 },
- { "id": "overlay_female_worn_survivor_belt_notools", "fg": 6134 },
- { "id": "overlay_male_worn_survivor_belt_notools", "fg": 6135 },
- { "id": "overlay_female_worn_duster_survivor", "fg": 6074 },
- { "id": "overlay_male_worn_duster_survivor", "fg": 6075 },
- { "id": "overlay_female_worn_xl_duster_survivor", "fg": 6074 },
- { "id": "overlay_male_worn_xl_duster_survivor", "fg": 6075 },
- { "id": "overlay_female_worn_gloves_survivor", "fg": 6078 },
- { "id": "overlay_male_worn_gloves_survivor", "fg": 6079 },
- { "id": "overlay_female_worn_gloves_xlsurvivor", "fg": 6078 },
- { "id": "overlay_male_worn_gloves_xlsurvivor", "fg": 6079 },
- { "id": "overlay_female_worn_survivor_vest", "fg": 6136 },
- { "id": "overlay_male_worn_survivor_vest", "fg": 6137 },
- { "id": "overlay_female_worn_xl_survivor_vest", "fg": 6136 },
- { "id": "overlay_male_worn_xl_survivor_vest", "fg": 6137 },
- { "id": "overlay_female_worn_hood_survivor", "fg": 6080 },
- { "id": "overlay_male_worn_hood_survivor", "fg": 6081 },
- { "id": "overlay_female_worn_hood_xlsurvivor", "fg": 6080 },
- { "id": "overlay_male_worn_hood_xlsurvivor", "fg": 6081 },
- { "id": "overlay_female_worn_survivor_suit", "fg": 6082 },
- { "id": "overlay_male_worn_survivor_suit", "fg": 6083 },
- { "id": "overlay_female_worn_xlsurvivor_suit", "fg": 6082 },
- { "id": "overlay_male_worn_xlsurvivor_suit", "fg": 6083 },
- { "id": "overlay_female_worn_trenchcoat_survivor", "fg": 6084 },
- { "id": "overlay_male_worn_trenchcoat_survivor", "fg": 6085 },
- { "id": "overlay_worn_boots_hsurvivor", "fg": 6100 },
- { "id": "overlay_worn_xl_boots_hsurvivor", "fg": 6100 },
- { "id": "overlay_female_worn_gloves_hsurvivor", "fg": 6101 },
- { "id": "overlay_male_worn_gloves_hsurvivor", "fg": 6102 },
- { "id": "overlay_female_worn_xl_gloves_hsurvivor", "fg": 6101 },
- { "id": "overlay_male_worn_xl_gloves_hsurvivor", "fg": 6102 },
- { "id": "overlay_female_worn_hsurvivor_suit", "fg": 6103 },
- { "id": "overlay_male_worn_hsurvivor_suit", "fg": 6104 },
- { "id": "overlay_female_worn_xlhsurvivor_suit", "fg": 6103 },
- { "id": "overlay_male_worn_xlhsurvivor_suit", "fg": 6104 },
- { "id": "overlay_worn_boots_fsurvivor", "fg": 6093 },
- { "id": "overlay_worn_xl_boots_fsurvivor", "fg": 6093 },
- { "id": "overlay_female_worn_gloves_fsurvivor", "fg": 6094 },
- { "id": "overlay_male_worn_gloves_fsurvivor", "fg": 6095 },
- { "id": "overlay_female_worn_xl_gloves_fsurvivor", "fg": 6094 },
- { "id": "overlay_male_worn_xl_gloves_fsurvivor", "fg": 6095 },
- { "id": "overlay_female_worn_hood_fsurvivor", "fg": 6096 },
- { "id": "overlay_male_worn_hood_fsurvivor", "fg": 6097 },
- { "id": "overlay_female_worn_xl_hood_fsurvivor", "fg": 6096 },
- { "id": "overlay_male_worn_xl_hood_fsurvivor", "fg": 6097 },
- { "id": "overlay_female_worn_fsurvivor_suit", "fg": 6098 },
- { "id": "overlay_male_worn_fsurvivor_suit", "fg": 6099 },
- { "id": "overlay_female_worn_xl_fsurvivor_suit", "fg": 6098 },
- { "id": "overlay_male_worn_xl_fsurvivor_suit", "fg": 6099 },
- { "id": [ "overlay_female_worn_pants_survivor", "overlay_female_worn_xl_pants_survivor" ], "fg": 6072 },
- { "id": [ "overlay_male_worn_pants_survivor", "overlay_male_worn_xl_pants_survivor" ], "fg": 6073 },
+ "fg": 6006
+ },
+ { "id": "overlay_female_worn_knee_pads", "fg": 6015 },
+ { "id": "overlay_male_worn_knee_pads", "fg": 6016 },
+ { "id": "overlay_male_worn_arm_warmers", "fg": 6018 },
+ { "id": "overlay_female_worn_arm_warmers", "fg": 6017 },
+ { "id": "overlay_male_worn_leg_warmers", "fg": 6020 },
+ { "id": "overlay_female_worn_leg_warmers", "fg": 6019 },
+ { "id": "overlay_female_worn_armguard_soft", "fg": 6021 },
+ { "id": "overlay_male_worn_armguard_soft", "fg": 6022 },
+ { "id": "overlay_female_worn_balclava", "fg": 6023 },
+ { "id": "overlay_male_worn_balclava", "fg": 6024 },
+ { "id": "overlay_female_worn_bandana", "fg": 6025 },
+ { "id": "overlay_male_worn_bandana", "fg": 6026 },
+ { "id": "overlay_female_worn_beekeeping_hood", "fg": 6027 },
+ { "id": "overlay_male_worn_beekeeping_hood", "fg": 6028 },
+ { "id": "overlay_male_worn_foodperson_mask", "fg": 6030 },
+ { "id": "overlay_female_worn_foodperson_mask", "fg": 6029 },
+ { "id": "overlay_male_worn_foodperson_mask_on", "fg": 6032 },
+ { "id": "overlay_female_worn_foodperson_mask_on", "fg": 6031 },
+ { "id": "overlay_female_worn_mask_dust", "fg": 6033 },
+ { "id": "overlay_male_worn_mask_dust", "fg": 6034 },
+ { "id": "overlay_female_worn_mask_gas", "fg": 6035 },
+ { "id": "overlay_male_worn_mask_gas", "fg": 6036 },
+ { "id": "overlay_female_worn_welding_mask_crude", "fg": 6037 },
+ { "id": "overlay_male_worn_welding_mask_crude", "fg": 6038 },
+ { "id": "overlay_female_worn_welding_mask_crude_raised", "fg": 6039 },
+ { "id": "overlay_male_worn_welding_mask_crude_raised", "fg": 6408 },
+ { "id": "overlay_female_worn_welding_mask", "fg": 6040 },
+ { "id": "overlay_male_worn_welding_mask", "fg": 6041 },
+ { "id": "overlay_female_worn_welding_mask_raised", "fg": 6042 },
+ { "id": "overlay_female_worn_mask_bal", "fg": 6043 },
+ { "id": "overlay_male_worn_mask_bal", "fg": 6044 },
+ { "id": "overlay_female_worn_fencing_mask", "fg": 6045 },
+ { "id": "overlay_male_worn_fencing_mask", "fg": 6046 },
+ { "id": "overlay_female_worn_mask_filter", "fg": 6047 },
+ { "id": "overlay_male_worn_mask_filter", "fg": 6048 },
+ { "id": "overlay_female_worn_mask_bunker", "fg": 6049 },
+ { "id": "overlay_male_worn_mask_bunker", "fg": 6050 },
+ { "id": "overlay_female_worn_mask_guy_fawkes", "fg": 6051 },
+ { "id": "overlay_male_worn_mask_guy_fawkes", "fg": 6052 },
+ { "id": "overlay_female_worn_mask_hockey", "fg": 6053 },
+ { "id": "overlay_male_worn_mask_hockey", "fg": 6054 },
+ { "id": "overlay_female_worn_mask_rioter", "fg": 6055 },
+ { "id": "overlay_male_worn_mask_rioter", "fg": 6056 },
+ { "id": "overlay_male_worn_robe", "fg": 6068 },
+ { "id": "overlay_female_worn_robe", "fg": 6067 },
+ { "id": "overlay_male_worn_house_coat", "fg": 6066 },
+ { "id": "overlay_female_worn_house_coat", "fg": 6065 },
+ { "id": "overlay_worn_binoculars", "fg": 6069 },
+ { "id": "overlay_female_worn_knit_scarf", "fg": 6072 },
+ { "id": "overlay_male_worn_knit_scarf", "fg": 6073 },
+ { "id": "overlay_female_worn_scarf", "fg": 6075 },
+ { "id": "overlay_female_worn_scarf_loose", "fg": 6075 },
+ { "id": "overlay_male_worn_scarf", "fg": 6076 },
+ { "id": "overlay_male_worn_scarf_loose", "fg": 6076 },
+ { "id": "overlay_worn_tie_bow", "fg": 6070 },
+ { "id": "overlay_worn_tie_clipon", "fg": 6071 },
+ { "id": "overlay_worn_tie_necktie", "fg": 6074 },
+ { "id": "overlay_worn_tie_skinny", "fg": 6077 },
+ { "id": "overlay_female_worn_army_top", "fg": 6078 },
+ { "id": "overlay_male_worn_army_top", "fg": 6079 },
+ { "id": "overlay_female_worn_camisole", "fg": 6080 },
+ { "id": "overlay_male_worn_camisole", "fg": 6081 },
+ { "id": "overlay_female_worn_under_armor", "fg": 6082 },
+ { "id": "overlay_male_worn_under_armor", "fg": 6083 },
+ { "id": "overlay_female_worn_dress_shirt", "fg": 6084 },
+ { "id": "overlay_male_worn_dress_shirt", "fg": 6085 },
+ { "id": "overlay_female_worn_halter_top", "fg": 6086 },
+ { "id": "overlay_male_worn_halter_top", "fg": 6087 },
+ { "id": "overlay_female_worn_hoodie", "fg": 6088 },
+ { "id": "overlay_male_worn_hoodie", "fg": 6089 },
+ { "id": "overlay_female_worn_jersey", "fg": 6090 },
+ { "id": "overlay_male_worn_jersey", "fg": 6091 },
+ { "id": "overlay_female_worn_linuxtshirt", "fg": 6092 },
+ { "id": "overlay_male_worn_linuxtshirt", "fg": 6093 },
+ { "id": "overlay_female_worn_longshirt", "fg": 6094 },
+ { "id": "overlay_male_worn_longshirt", "fg": 6095 },
+ { "id": "overlay_female_worn_striped_shirt", "fg": 6096 },
+ { "id": "overlay_male_worn_striped_shirt", "fg": 6097 },
+ { "id": "overlay_female_worn_sweater", "fg": 6098 },
+ { "id": "overlay_male_worn_sweater", "fg": 6099 },
+ { "id": "overlay_female_worn_sweatshirt", "fg": 6100 },
+ { "id": "overlay_male_worn_sweatshirt", "fg": 6101 },
+ { "id": "overlay_female_worn_tank_top", "fg": 6102 },
+ { "id": "overlay_male_worn_tank_top", "fg": 6103 },
+ { "id": "overlay_female_worn_tshirt", "fg": 6104 },
+ { "id": "overlay_male_worn_tshirt", "fg": 6105 },
+ { "id": "overlay_female_worn_technician_shirt_gray", "fg": 6106 },
+ { "id": "overlay_male_worn_technician_shirt_gray", "fg": 6107 },
+ { "id": "overlay_worn_dress_shoes", "fg": 6108 },
+ { "id": "overlay_female_worn_flip_flops", "fg": 6109 },
+ { "id": "overlay_male_worn_flip_flops", "fg": 6110 },
+ { "id": "overlay_female_worn_geta", "fg": 6111 },
+ { "id": "overlay_male_worn_geta", "fg": 6112 },
+ { "id": "overlay_worn_heels", "fg": 6113 },
+ { "id": "overlay_worn_leathersandals", "fg": 6114 },
+ { "id": "overlay_worn_lowtops", "fg": 6115 },
+ { "id": "overlay_worn_roller_blades", "fg": 6116 },
+ { "id": "overlay_female_worn_shoes_bowling", "fg": 6117 },
+ { "id": "overlay_male_worn_shoes_bowling", "fg": 6118 },
+ { "id": "overlay_female_worn_sneakers", "fg": 6119 },
+ { "id": "overlay_male_worn_sneakers", "fg": 6120 },
+ { "id": "overlay_female_worn_clogs", "fg": 6121 },
+ { "id": "overlay_male_worn_clogs", "fg": 6122 },
+ { "id": "overlay_female_worn_b_shorts", "fg": 6123 },
+ { "id": "overlay_male_worn_b_shorts", "fg": 6124 },
+ { "id": "overlay_female_worn_boy_shorts", "fg": 6125 },
+ { "id": "overlay_male_worn_boy_shorts", "fg": 6126 },
+ { "id": "overlay_female_worn_under_armor_shorts", "fg": 6127 },
+ { "id": "overlay_male_worn_under_armor_shorts", "fg": 6128 },
+ { "id": "overlay_female_worn_shorts_cargo", "fg": 6129 },
+ { "id": "overlay_male_worn_shorts_cargo", "fg": 6130 },
+ { "id": "overlay_female_worn_shorts_denim", "fg": 6131 },
+ { "id": "overlay_male_worn_shorts_denim", "fg": 6132 },
+ { "id": "overlay_female_worn_shorts", "fg": 6133 },
+ { "id": "overlay_male_worn_shorts", "fg": 6134 },
+ { "id": "overlay_worn_boots_survivor", "fg": 6135 },
+ { "id": "overlay_worn_boots_xlsurvivor", "fg": 6135 },
+ { "id": "overlay_female_worn_sleeveless_duster_survivor", "fg": 6138 },
+ { "id": "overlay_male_worn_sleeveless_duster_survivor", "fg": 6139 },
+ { "id": "overlay_female_worn_sleeveless_trenchcoat_survivor", "fg": 6140 },
+ { "id": "overlay_male_worn_sleeveless_trenchcoat_survivor", "fg": 6141 },
+ { "id": "overlay_female_worn_survivor_belt_notools", "fg": 6204 },
+ { "id": "overlay_male_worn_survivor_belt_notools", "fg": 6205 },
+ { "id": "overlay_female_worn_duster_survivor", "fg": 6144 },
+ { "id": "overlay_male_worn_duster_survivor", "fg": 6145 },
+ { "id": "overlay_female_worn_xl_duster_survivor", "fg": 6144 },
+ { "id": "overlay_male_worn_xl_duster_survivor", "fg": 6145 },
+ { "id": "overlay_female_worn_gloves_survivor", "fg": 6148 },
+ { "id": "overlay_male_worn_gloves_survivor", "fg": 6149 },
+ { "id": "overlay_female_worn_gloves_xlsurvivor", "fg": 6148 },
+ { "id": "overlay_male_worn_gloves_xlsurvivor", "fg": 6149 },
+ { "id": "overlay_female_worn_survivor_vest", "fg": 6206 },
+ { "id": "overlay_male_worn_survivor_vest", "fg": 6207 },
+ { "id": "overlay_female_worn_xl_survivor_vest", "fg": 6206 },
+ { "id": "overlay_male_worn_xl_survivor_vest", "fg": 6207 },
+ { "id": "overlay_female_worn_hood_survivor", "fg": 6150 },
+ { "id": "overlay_male_worn_hood_survivor", "fg": 6151 },
+ { "id": "overlay_female_worn_hood_xlsurvivor", "fg": 6150 },
+ { "id": "overlay_male_worn_hood_xlsurvivor", "fg": 6151 },
+ { "id": "overlay_female_worn_survivor_suit", "fg": 6152 },
+ { "id": "overlay_male_worn_survivor_suit", "fg": 6153 },
+ { "id": "overlay_female_worn_xlsurvivor_suit", "fg": 6152 },
+ { "id": "overlay_male_worn_xlsurvivor_suit", "fg": 6153 },
+ { "id": "overlay_female_worn_trenchcoat_survivor", "fg": 6154 },
+ { "id": "overlay_male_worn_trenchcoat_survivor", "fg": 6155 },
+ { "id": "overlay_worn_boots_hsurvivor", "fg": 6170 },
+ { "id": "overlay_worn_xl_boots_hsurvivor", "fg": 6170 },
+ { "id": "overlay_female_worn_gloves_hsurvivor", "fg": 6171 },
+ { "id": "overlay_male_worn_gloves_hsurvivor", "fg": 6172 },
+ { "id": "overlay_female_worn_xl_gloves_hsurvivor", "fg": 6171 },
+ { "id": "overlay_male_worn_xl_gloves_hsurvivor", "fg": 6172 },
+ { "id": "overlay_female_worn_hsurvivor_suit", "fg": 6173 },
+ { "id": "overlay_male_worn_hsurvivor_suit", "fg": 6174 },
+ { "id": "overlay_female_worn_xlhsurvivor_suit", "fg": 6173 },
+ { "id": "overlay_male_worn_xlhsurvivor_suit", "fg": 6174 },
+ { "id": "overlay_worn_boots_fsurvivor", "fg": 6163 },
+ { "id": "overlay_worn_xl_boots_fsurvivor", "fg": 6163 },
+ { "id": "overlay_female_worn_gloves_fsurvivor", "fg": 6164 },
+ { "id": "overlay_male_worn_gloves_fsurvivor", "fg": 6165 },
+ { "id": "overlay_female_worn_xl_gloves_fsurvivor", "fg": 6164 },
+ { "id": "overlay_male_worn_xl_gloves_fsurvivor", "fg": 6165 },
+ { "id": "overlay_female_worn_hood_fsurvivor", "fg": 6166 },
+ { "id": "overlay_male_worn_hood_fsurvivor", "fg": 6167 },
+ { "id": "overlay_female_worn_xl_hood_fsurvivor", "fg": 6166 },
+ { "id": "overlay_male_worn_xl_hood_fsurvivor", "fg": 6167 },
+ { "id": "overlay_female_worn_fsurvivor_suit", "fg": 6168 },
+ { "id": "overlay_male_worn_fsurvivor_suit", "fg": 6169 },
+ { "id": "overlay_female_worn_xl_fsurvivor_suit", "fg": 6168 },
+ { "id": "overlay_male_worn_xl_fsurvivor_suit", "fg": 6169 },
+ { "id": [ "overlay_female_worn_pants_survivor", "overlay_female_worn_xl_pants_survivor" ], "fg": 6142 },
+ { "id": [ "overlay_male_worn_pants_survivor", "overlay_male_worn_xl_pants_survivor" ], "fg": 6143 },
{
"id": [ "overlay_female_worn_gloves_survivor_fingerless", "overlay_female_worn_xl_gloves_survivor_fingerless" ],
- "fg": 6076
+ "fg": 6146
},
{
"id": [ "overlay_male_worn_gloves_survivor_fingerless", "overlay_male_worn_xl_gloves_survivor_fingerless" ],
- "fg": 6077
- },
- { "id": "overlay_worn_boots_h20survivor", "fg": 6086 },
- { "id": "overlay_female_worn_gloves_h20survivor", "fg": 6087 },
- { "id": "overlay_male_worn_gloves_h20survivor", "fg": 6088 },
- { "id": "overlay_female_worn_hood_h20survivor", "fg": 6089 },
- { "id": "overlay_male_worn_hood_h20survivor", "fg": 6090 },
- { "id": "overlay_female_worn_h20survivor_suit", "fg": 6091 },
- { "id": "overlay_male_worn_h20survivor_suit", "fg": 6092 },
- { "id": [ "overlay_worn_boots_lsurvivor", "overlay_worn_xl_boots_lsurvivor" ], "fg": 6105 },
- { "id": [ "overlay_female_worn_gloves_lsurvivor", "overlay_female_worn_xl_gloves_lsurvivor" ], "fg": 6110 },
- { "id": [ "overlay_male_worn_gloves_lsurvivor", "overlay_male_worn_xl_gloves_lsurvivor" ], "fg": 6111 },
- { "id": [ "overlay_female_worn_hood_lsurvivor", "overlay_female_worn_xl_hood_lsurvivor" ], "fg": 6112 },
- { "id": [ "overlay_male_worn_hood_lsurvivor", "overlay_male_worn_xl_hood_lsurvivor" ], "fg": 6113 },
- { "id": [ "overlay_female_worn_lsurvivor_suit", "overlay_female_worn_xl_lsurvivor_suit" ], "fg": 6114 },
- { "id": [ "overlay_male_worn_lsurvivor_suit", "overlay_male_worn_xl_lsurvivor_suit" ], "fg": 6115 },
- { "id": [ "overlay_female_worn_lsurvivor_armor", "overlay_female_worn_xl_lsurvivor_armor" ], "fg": 6106 },
- { "id": [ "overlay_male_worn_lsurvivor_armor", "overlay_male_worn_xl_lsurvivor_armor" ], "fg": 6107 },
- { "id": [ "overlay_female_worn_lsurvivor_pants", "overlay_female_worn_xl_lsurvivor_pants" ], "fg": 6108 },
- { "id": [ "overlay_male_worn_lsurvivor_pants", "overlay_male_worn_xl_lsurvivor_pants" ], "fg": 6109 },
- { "id": "overlay_female_worn_mask_hsurvivor", "fg": 6116 },
- { "id": "overlay_male_worn_mask_hsurvivor", "fg": 6117 },
- { "id": "overlay_female_worn_mask_lsurvivor", "fg": 6118 },
- { "id": "overlay_male_worn_mask_lsurvivor", "fg": 6119 },
- { "id": "overlay_female_worn_mask_fsurvivor", "fg": 6120 },
- { "id": "overlay_male_worn_mask_fsurvivor", "fg": 6121 },
- { "id": "overlay_female_worn_mask_fsurvivorxl", "fg": 6120 },
- { "id": "overlay_male_worn_mask_fsurvivorxl", "fg": 6121 },
- { "id": "overlay_female_worn_mask_survivor", "fg": 6122 },
- { "id": "overlay_male_worn_mask_survivor", "fg": 6123 },
- { "id": "overlay_female_worn_mask_survivorxl", "fg": 6122 },
- { "id": "overlay_male_worn_mask_survivorxl", "fg": 6123 },
- { "id": "overlay_female_worn_mask_wsurvivor", "fg": 6124 },
- { "id": "overlay_male_worn_mask_wsurvivor", "fg": 6125 },
- { "id": "overlay_female_worn_mask_wsurvivorxl", "fg": 6124 },
- { "id": "overlay_male_worn_mask_wsurvivorxl", "fg": 6125 },
- { "id": [ "overlay_worn_boots_wsurvivor", "overlay_worn_xl_boots_wsurvivor" ], "fg": 6138 },
- { "id": [ "overlay_female_worn_gloves_wsurvivor", "overlay_female_worn_xl_gloves_wsurvivor" ], "fg": 6139 },
- { "id": [ "overlay_male_worn_gloves_wsurvivor", "overlay_male_worn_xl_gloves_wsurvivor" ], "fg": 6140 },
- { "id": [ "overlay_female_worn_hood_wsurvivor", "overlay_female_worn_xl_hood_wsurvivor" ], "fg": 6141 },
- { "id": [ "overlay_male_worn_hood_wsurvivor", "overlay_male_worn_xl_hood_wsurvivor" ], "fg": 6142 },
- { "id": [ "overlay_female_worn_wsurvivor_suit", "overlay_female_worn_xl_wsurvivor_suit" ], "fg": 6143 },
- { "id": [ "overlay_male_worn_wsurvivor_suit", "overlay_male_worn_xl_wsurvivor_suit" ], "fg": 6144 },
- { "id": "overlay_female_worn_bikini_bottom", "fg": 6145 },
- { "id": "overlay_male_worn_bikini_bottom", "fg": 6146 },
- { "id": "overlay_female_worn_bikini_top", "fg": 6147 },
- { "id": "overlay_male_worn_bikini_top", "fg": 6148 },
- { "id": "overlay_female_worn_bikini_top_fur", "fg": 6149 },
- { "id": "overlay_male_worn_bikini_top_fur", "fg": 6150 },
- { "id": "overlay_female_worn_bikini_top_leather", "fg": 6151 },
- { "id": "overlay_male_worn_bikini_top_leather", "fg": 6152 },
- { "id": "overlay_female_worn_winter_pants_army", "fg": 6153 },
- { "id": "overlay_male_worn_winter_pants_army", "fg": 6154 },
- { "id": "overlay_female_worn_bunker_pants", "fg": 6155 },
- { "id": "overlay_male_worn_bunker_pants", "fg": 6156 },
- { "id": "overlay_female_worn_striped_pants", "fg": 6179 },
- { "id": "overlay_male_worn_striped_pants", "fg": 6180 },
- { "id": "overlay_female_worn_technician_pants_gray", "fg": 6181 },
- { "id": "overlay_male_worn_technician_pants_gray", "fg": 6182 },
- { "id": "overlay_female_worn_jeans", "fg": 6157 },
- { "id": "overlay_male_worn_jeans", "fg": 6158 },
- { "id": "overlay_female_worn_jeans_red", "fg": 6159 },
- { "id": "overlay_male_worn_jeans_red", "fg": 6160 },
- { "id": "overlay_female_worn_motorbike_pants", "fg": 6161 },
- { "id": "overlay_male_worn_motorbike_pants", "fg": 6162 },
- { "id": "overlay_female_worn_pants_army", "fg": 6163 },
- { "id": "overlay_male_worn_pants_army", "fg": 6164 },
- { "id": "overlay_female_worn_pants_cargo", "fg": 6165 },
- { "id": "overlay_male_worn_pants_cargo", "fg": 6166 },
- { "id": "overlay_female_worn_pants_checkered", "fg": 6167 },
- { "id": "overlay_male_worn_pants_checkered", "fg": 6168 },
- { "id": "overlay_female_worn_pants_faux_fur", "fg": 6170 },
- { "id": "overlay_male_worn_pants_faux_fur", "fg": 6171 },
- { "id": "overlay_female_worn_pants_fur", "fg": 6172 },
- { "id": "overlay_male_worn_pants_fur", "fg": 6173 },
- { "id": "overlay_female_worn_pants_leather", "fg": 6174 },
- { "id": "overlay_male_worn_pants_leather", "fg": 6175 },
- { "id": "overlay_female_worn_pants", "fg": 6169 },
- { "id": "overlay_male_worn_pants", "fg": 6176 },
- { "id": "overlay_female_worn_pants_ski", "fg": 6177 },
- { "id": "overlay_male_worn_pants_ski", "fg": 6178 },
- { "id": "overlay_female_worn_bra", "fg": 6187 },
- { "id": "overlay_male_worn_bra", "fg": 6188 },
- { "id": "overlay_female_worn_corset", "fg": 6189 },
- { "id": "overlay_male_worn_corset", "fg": 6190 },
- { "id": "overlay_male_worn_undershirt", "fg": 6204 },
- { "id": "overlay_female_worn_undershirt", "fg": 6203 },
- { "id": "overlay_female_worn_socks", "fg": 6197 },
- { "id": "overlay_male_worn_socks", "fg": 6198 },
- { "id": "overlay_female_worn_stockings", "fg": 6201 },
- { "id": "overlay_male_worn_stockings", "fg": 6202 },
- { "id": "overlay_worn_socks_wool", "fg": 6207 },
- { "id": "overlay_female_worn_sports_bra", "fg": 6199 },
- { "id": "overlay_male_worn_sports_bra", "fg": 6200 },
- { "id": "overlay_female_worn_boxer_briefs", "fg": 6183 },
- { "id": "overlay_male_worn_boxer_briefs", "fg": 6184 },
- { "id": "overlay_female_worn_boxer_shorts", "fg": 6185 },
- { "id": "overlay_male_worn_boxer_shorts", "fg": 6186 },
- { "id": "overlay_female_worn_long_underpants", "fg": 6191 },
- { "id": "overlay_male_worn_long_underpants", "fg": 6192 },
- { "id": "overlay_female_worn_long_undertop", "fg": 6193 },
- { "id": "overlay_male_worn_long_undertop", "fg": 6194 },
- { "id": "overlay_female_worn_panties", "fg": 6195 },
- { "id": "overlay_male_worn_panties", "fg": 6196 },
- { "id": "overlay_female_worn_union_suit", "fg": 6205 },
- { "id": "overlay_male_worn_union_suit", "fg": 6206 },
- { "id": "overlay_male_worn_blanket", "fg": 6209 },
- { "id": "overlay_female_worn_blanket", "fg": 6208 },
- { "id": "overlay_male_worn_down_blanket", "fg": 6211 },
- { "id": "overlay_female_worn_down_blanket", "fg": 6210 },
- { "id": "overlay_female_worn_electric_blanket", "fg": 6212 },
- { "id": "overlay_male_worn_electric_blanket", "fg": 6213 },
- { "id": "overlay_female_worn_towel", "fg": 6214 },
- { "id": "overlay_male_worn_towel", "fg": 6215 },
- { "id": "overlay_female_worn_towel_wet", "fg": 6214 },
- { "id": "overlay_male_worn_towel_wet", "fg": 6215 },
- { "id": "overlay_female_worn_towel_soiled", "fg": 6214 },
- { "id": "overlay_male_worn_towel_soiled", "fg": 6215 },
- { "id": "overlay_mutation_bio_blaster", "fg": 4608 },
- { "id": "overlay_female_mutation_ARM_TENTACLES", "fg": 4733 },
- { "id": "overlay_male_mutation_ARM_TENTACLES", "fg": 4734 },
- { "id": "overlay_female_mutation_ARM_TENTACLES_4", "fg": 4735 },
- { "id": "overlay_male_mutation_ARM_TENTACLES_4", "fg": 4736 },
- { "id": "overlay_female_mutation_ARM_TENTACLES_8", "fg": 4737 },
- { "id": "overlay_male_mutation_ARM_TENTACLES_8", "fg": 4738 },
- { "id": "overlay_female_mutation_CANINE_EARS", "fg": 4747 },
- { "id": "overlay_male_mutation_CANINE_EARS", "fg": 4748 },
- { "id": "overlay_female_mutation_FELINE_EARS", "fg": 4751 },
- { "id": "overlay_male_mutation_FELINE_EARS", "fg": 4752 },
- { "id": "overlay_female_mutation_HORNS", "fg": 4753 },
- { "id": "overlay_male_mutation_HORNS", "fg": 4754 },
- { "id": "overlay_female_mutation_MINOTAUR", "fg": 4759 },
- { "id": "overlay_male_mutation_MINOTAUR", "fg": 4760 },
- { "id": "overlay_female_mutation_MOUTH_TENTACLES", "fg": 4761 },
- { "id": "overlay_male_mutation_MOUTH_TENTACLES", "fg": 4762 },
- { "id": "overlay_female_mutation_SHELL", "fg": 4765 },
- { "id": "overlay_male_mutation_SHELL", "fg": 4766 },
- { "id": "overlay_female_mutation_TAIL_CATTLE", "fg": 4767 },
- { "id": "overlay_male_mutation_TAIL_CATTLE", "fg": 4768 },
- { "id": "overlay_female_mutation_TAIL_LONG", "fg": 4769 },
- { "id": "overlay_male_mutation_TAIL_LONG", "fg": 4770 },
- { "id": "overlay_female_mutation_FUR", "fg": 4786 },
- { "id": "overlay_male_mutation_FUR", "fg": 4788 },
- { "id": "overlay_female_wielded_clay_teapot", "fg": 4843 },
- { "id": "overlay_female_worn_harmonica_holder", "fg": 4844 },
- { "id": "overlay_male_wielded_clay_teapot", "fg": 4845 },
- { "id": "overlay_male_worn_harmonica_holder", "fg": 4846 },
- { "id": "overlay_wielded_banjo", "fg": 4848 },
- { "id": "overlay_wielded_bodypillow", "fg": 4849 },
- { "id": "overlay_wielded_clay_pot", "fg": 4850 },
- { "id": "overlay_wielded_guitar_electric", "fg": 4851 },
- { "id": "overlay_wielded_laptop", "fg": 4852 },
- { "id": "overlay_wielded_makeshift_hammer", "fg": 4853 },
- { "id": "overlay_wielded_pot_makeshift", "fg": 4854 },
- { "id": "overlay_wielded_pot_makeshift_copper", "fg": 4855 },
- { "id": "overlay_wielded_tazer", "fg": 4856 },
- { "id": "overlay_wielded_1895sbl", "fg": 4860 },
- { "id": "overlay_wielded_2_shot_special", "fg": 4861 },
- { "id": "overlay_wielded_90two", "fg": 4862 },
- { "id": "overlay_wielded_90two40", "fg": 4863 },
- { "id": "overlay_wielded_AT4", "fg": 4864 },
- { "id": "overlay_wielded_LAW", "fg": 4865 },
- { "id": "overlay_wielded_LAW_Packed", "fg": 4866 },
- { "id": "overlay_wielded_M24", "fg": 4867 },
- { "id": "overlay_wielded_RPG", "fg": 4868 },
- { "id": "overlay_wielded_TDI", "fg": 4869 },
- { "id": "overlay_wielded_USAS_12", "fg": 4870 },
- { "id": "overlay_wielded_af2011a1_38super", "fg": 4871 },
- { "id": "overlay_wielded_airspeargun", "fg": 4872 },
- { "id": "overlay_wielded_ak74", "fg": 4874 },
- { "id": "overlay_wielded_american_180", "fg": 4875 },
- { "id": "overlay_wielded_an94", "fg": 4876 },
- { "id": "overlay_wielded_ar10", "fg": 4877 },
- { "id": "overlay_wielded_ar15", "fg": 4878 },
- { "id": "overlay_wielded_ar_pistol", "fg": 4879 },
- { "id": "overlay_wielded_arx160", "fg": 4880 },
- { "id": "overlay_wielded_ashot", "fg": 4881 },
- { "id": "overlay_wielded_atgm_launcher", "fg": 4882 },
- { "id": "overlay_wielded_bbgun", "fg": 4883 },
- { "id": "overlay_wielded_bfr", "fg": 4884 },
- { "id": "overlay_wielded_bh_m89", "fg": 4885 },
- { "id": "overlay_wielded_bigun", "fg": 4886 },
- { "id": "overlay_wielded_blunderbuss", "fg": 4887 },
- { "id": "overlay_wielded_bond_410", "fg": 4888 },
- { "id": "overlay_wielded_browning_blr", "fg": 4889 },
- { "id": "overlay_wielded_bt_apc9k", "fg": 4890 },
- { "id": "overlay_wielded_chemical_thrower", "fg": 4892 },
- { "id": "overlay_wielded_coilgun", "fg": 4893 },
- { "id": "overlay_wielded_colt_army", "fg": 4894 },
- { "id": "overlay_wielded_colt_lightning", "fg": 4895 },
- { "id": "overlay_wielded_colt_navy", "fg": 4896 },
- { "id": "overlay_wielded_colt_ro635", "fg": 4897 },
- { "id": "overlay_wielded_colt_saa", "fg": 4898 },
- { "id": "overlay_wielded_combination_gun", "fg": 4899 },
- { "id": "overlay_wielded_cop_38", "fg": 4900 },
- { "id": "overlay_wielded_cx4", "fg": 4901 },
- { "id": "overlay_wielded_cz75", "fg": 4902 },
- { "id": "overlay_wielded_deagle_44", "fg": 4903 },
- { "id": "overlay_wielded_doublespeargun", "fg": 4904 },
- { "id": "overlay_wielded_draco", "fg": 4905 },
- { "id": "overlay_wielded_emp_gun", "fg": 4906 },
- { "id": "overlay_wielded_famas", "fg": 4907 },
- { "id": "overlay_wielded_flamethrower", "fg": 4908 },
- { "id": "overlay_wielded_flamethrower_crude", "fg": 4909 },
- { "id": "overlay_wielded_flamethrower_simple", "fg": 4910 },
- { "id": "overlay_wielded_flaregun", "fg": 4911 },
- { "id": "overlay_wielded_fn1910", "fg": 4912 },
- { "id": "overlay_wielded_fn57", "fg": 4913 },
- { "id": "overlay_wielded_fn_fal", "fg": 4914 },
- { "id": "overlay_wielded_fn_p90", "fg": 4915 },
- { "id": "overlay_wielded_fs2000", "fg": 4916 },
- { "id": "overlay_wielded_ftk93", "fg": 4917 },
- { "id": "overlay_wielded_garand", "fg": 4918 },
- { "id": "overlay_wielded_glock_17", "fg": 4919 },
- { "id": "overlay_wielded_glock_18c", "fg": 4920 },
- { "id": "overlay_wielded_glock_19", "fg": 4921 },
- { "id": "overlay_wielded_glock_20", "fg": 4922 },
- { "id": "overlay_wielded_glock_20_var_glock_40", "fg": 4923 },
- { "id": "overlay_wielded_glock_21", "fg": 4924 },
- { "id": "overlay_wielded_glock_22", "fg": 4925 },
- { "id": "overlay_wielded_glock_29", "fg": 4926 },
- { "id": "overlay_wielded_glock_31", "fg": 4927 },
- { "id": "overlay_wielded_heavy_rail_rifle", "fg": 4928 },
- { "id": "overlay_wielded_helsing", "fg": 4929 },
- { "id": "overlay_wielded_henry_big_boy", "fg": 4930 },
- { "id": "overlay_wielded_hi_power_40", "fg": 4931 },
- { "id": "overlay_wielded_hi_power_9mm", "fg": 4932 },
- { "id": "overlay_wielded_hk417_13", "fg": 4933 },
- { "id": "overlay_wielded_hk_g3", "fg": 4934 },
- { "id": "overlay_wielded_hk_g36", "fg": 4935 },
- { "id": "overlay_wielded_hk_g80", "fg": 4936 },
- { "id": "overlay_wielded_hk_mp5_semi_pistol", "fg": 4938 },
- { "id": "overlay_wielded_hk_mp5k", "fg": 4939 },
- { "id": "overlay_wielded_hk_mp5sd", "fg": 4940 },
- { "id": "overlay_wielded_hk_mp7", "fg": 4941 },
- { "id": "overlay_wielded_hk_ump45", "fg": 4942 },
- { "id": "overlay_wielded_hptc9", "fg": 4943 },
- { "id": "overlay_wielded_hptcf380", "fg": 4944 },
- { "id": "overlay_wielded_iwi_tavor_x95_300blk", "fg": 4946 },
- { "id": "overlay_wielded_kp32", "fg": 4947 },
- { "id": "overlay_wielded_kp3at", "fg": 4948 },
- { "id": "overlay_wielded_kpf9", "fg": 4949 },
- { "id": "overlay_wielded_ksg-25", "fg": 4950 },
- { "id": "overlay_wielded_ksg", "fg": 4951 },
- { "id": "overlay_wielded_ksub2000", "fg": 4952 },
- { "id": "overlay_wielded_l_bak_223", "fg": 4953 },
- { "id": "overlay_wielded_laser_cannon", "fg": 4954 },
- { "id": "overlay_wielded_laser_rifle", "fg": 4955 },
- { "id": "overlay_wielded_launcher_simple", "fg": 4956 },
- { "id": "overlay_wielded_lemat_revolver", "fg": 4957 },
- { "id": "overlay_wielded_lever_shotgun", "fg": 4958 },
- { "id": "overlay_wielded_m11", "fg": 4960 },
- { "id": "overlay_wielded_m110a1", "fg": 4961 },
- { "id": "overlay_wielded_m14ebr", "fg": 4962 },
- { "id": "overlay_wielded_m17", "fg": 4965 },
- { "id": "overlay_wielded_m18", "fg": 4966 },
- { "id": "overlay_wielded_m1903", "fg": 4967 },
- { "id": "overlay_wielded_m1911-460", "fg": 4968 },
- { "id": "overlay_wielded_m1911_10", "fg": 4970 },
- { "id": "overlay_wielded_m1911_var_m1911_MEU", "fg": 4971 },
- { "id": "overlay_wielded_m1918", "fg": 4972 },
- { "id": "overlay_wielded_m1a", "fg": 4973 },
- { "id": "overlay_wielded_m2010", "fg": 4974 },
- { "id": "overlay_wielded_m231pfw", "fg": 4975 },
- { "id": "overlay_wielded_m240", "fg": 4976 },
- { "id": "overlay_wielded_m27_assault_rifle_var_h&k416a5", "fg": 4978 },
- { "id": "overlay_wielded_m27_assault_rifle_var_m27iar", "fg": 4979 },
- { "id": "overlay_wielded_m27_assault_rifle_var_m38dmr", "fg": 4980 },
- { "id": "overlay_wielded_m27_assault_rifle_var_scar_l", "fg": 4981 },
- { "id": "overlay_wielded_m2browning_sawn", "fg": 4982 },
- { "id": "overlay_wielded_m320", "fg": 4983 },
- { "id": "overlay_wielded_m3_carlgustav", "fg": 4984 },
- { "id": "overlay_wielded_m4_carbine_var_m4_cqbr", "fg": 4985 },
- { "id": "overlay_wielded_m4_carbine_var_m4a1", "fg": 4986 },
- { "id": "overlay_wielded_m4_carlgustav", "fg": 4987 },
- { "id": "overlay_wielded_m79", "fg": 4989 },
- { "id": "overlay_wielded_m9", "fg": 4990 },
- { "id": "overlay_wielded_mac_10", "fg": 4991 },
- { "id": "overlay_wielded_mac_11", "fg": 4992 },
- { "id": "overlay_wielded_makarov", "fg": 4993 },
- { "id": "overlay_wielded_marlin_9a", "fg": 4994 },
- { "id": "overlay_wielded_mauser_c96", "fg": 4995 },
- { "id": "overlay_wielded_mauser_m714", "fg": 4996 },
- { "id": "overlay_wielded_mgl", "fg": 4997 },
- { "id": "overlay_wielded_mininuke_launcher", "fg": 4998 },
- { "id": "overlay_wielded_minispeargun", "fg": 4999 },
- { "id": "overlay_wielded_model_10_revolver", "fg": 5000 },
- { "id": "overlay_wielded_mosin44", "fg": 5001 },
- { "id": "overlay_wielded_mosin44_ebr", "fg": 5002 },
- { "id": "overlay_wielded_mosin91_30", "fg": 5003 },
- { "id": "overlay_wielded_mosin91_30_ebr", "fg": 5004 },
- { "id": "overlay_wielded_moss_brownie", "fg": 5005 },
- { "id": "overlay_wielded_mossberg_500", "fg": 5006 },
- { "id": "overlay_wielded_mossberg_500_var_mossberg_500_security", "fg": 5007 },
- { "id": "overlay_wielded_mossberg_590", "fg": 5008 },
- { "id": "overlay_wielded_mossberg_590_var_SPAS_12", "fg": 5009 },
- { "id": "overlay_wielded_mossberg_930", "fg": 5010 },
- { "id": "overlay_wielded_mossberg_930_var_m1014", "fg": 5011 },
- { "id": "overlay_wielded_mp18", "fg": 5012 },
- { "id": "overlay_wielded_nailgun", "fg": 5014 },
- { "id": "overlay_wielded_nailrifle", "fg": 5015 },
- { "id": "overlay_wielded_needlegun", "fg": 5016 },
- { "id": "overlay_wielded_needlepistol", "fg": 5017 },
- { "id": "overlay_wielded_oa93", "fg": 5018 },
- { "id": "overlay_wielded_p08", "fg": 5019 },
- { "id": "overlay_wielded_p220_10", "fg": 5020 },
- { "id": "overlay_wielded_p226_357sig", "fg": 5021 },
- { "id": "overlay_wielded_p226_9mm", "fg": 5022 },
- { "id": "overlay_wielded_p320_357sig", "fg": 5023 },
- { "id": "overlay_wielded_paintballgun", "fg": 5024 },
- { "id": "overlay_wielded_pamd68", "fg": 5025 },
- { "id": "overlay_wielded_pamd71z", "fg": 5026 },
- { "id": "overlay_wielded_pipe_combination_gun", "fg": 5027 },
- { "id": "overlay_wielded_pipe_double_shotgun", "fg": 5028 },
- { "id": "overlay_wielded_pipe_shotgun", "fg": 5030 },
- { "id": "overlay_wielded_pistol_flintlock", "fg": 5031 },
- { "id": "overlay_wielded_plasma_gun", "fg": 5032 },
- { "id": "overlay_wielded_plasma_rifle", "fg": 5033 },
- { "id": "overlay_wielded_ppsh", "fg": 5034 },
- { "id": "overlay_wielded_px4", "fg": 5035 },
- { "id": "overlay_wielded_px4_40", "fg": 5036 },
- { "id": "overlay_wielded_raging_bull", "fg": 5037 },
- { "id": "overlay_wielded_raging_judge", "fg": 5038 },
- { "id": "overlay_wielded_rebar_rifle", "fg": 5039 },
- { "id": "overlay_wielded_remington700_270", "fg": 5040 },
- { "id": "overlay_wielded_remington_700", "fg": 5041 },
- { "id": "overlay_wielded_remington_870", "fg": 5042 },
- { "id": "overlay_wielded_remington_870_breacher", "fg": 5043 },
- { "id": "overlay_wielded_remington_870_express", "fg": 5044 },
- { "id": "overlay_wielded_remington_870_var_browning_a5", "fg": 5045 },
- { "id": "overlay_wielded_remington_870_var_remington_1100", "fg": 5046 },
- { "id": "overlay_wielded_revolver_shotgun", "fg": 5047 },
- { "id": "overlay_wielded_rm103a_pistol", "fg": 5048 },
- { "id": "overlay_wielded_rm120c", "fg": 5049 },
- { "id": "overlay_wielded_rm20", "fg": 5050 },
- { "id": "overlay_wielded_rm2000_smg", "fg": 5051 },
- { "id": "overlay_wielded_rm228", "fg": 5052 },
- { "id": "overlay_wielded_rm298", "fg": 5053 },
- { "id": "overlay_wielded_rm451_flamethrower", "fg": 5054 },
- { "id": "overlay_wielded_rm51_assault_rifle", "fg": 5055 },
- { "id": "overlay_wielded_rm614_lmg", "fg": 5056 },
- { "id": "overlay_wielded_rm802", "fg": 5057 },
- { "id": "overlay_wielded_rm88_battle_rifle", "fg": 5058 },
- { "id": "overlay_wielded_ruger_1022", "fg": 5059 },
- { "id": "overlay_wielded_ruger_lcr_22", "fg": 5060 },
- { "id": "overlay_wielded_ruger_lcr_38", "fg": 5061 },
- { "id": "overlay_wielded_ruger_mini", "fg": 5062 },
- { "id": "overlay_wielded_ruger_redhawk", "fg": 5063 },
- { "id": "overlay_wielded_rugerlcp", "fg": 5064 },
- { "id": "overlay_wielded_saiga_12", "fg": 5065 },
- { "id": "overlay_wielded_saiga_410", "fg": 5066 },
- { "id": "overlay_wielded_savage_111f", "fg": 5067 },
- { "id": "overlay_wielded_scar_h", "fg": 5068 },
- { "id": "overlay_wielded_sharps", "fg": 5069 },
- { "id": "overlay_wielded_shotgun_410", "fg": 5070 },
- { "id": "overlay_wielded_shotgun_d", "fg": 5071 },
- { "id": "overlay_wielded_shotgun_s", "fg": 5072 },
- { "id": "overlay_wielded_sig552", "fg": 5073 },
- { "id": "overlay_wielded_sig_40", "fg": 5074 },
- { "id": "overlay_wielded_sig_mcx_rattler_sbr", "fg": 5075 },
- { "id": "overlay_wielded_sig_mosquito", "fg": 5076 },
- { "id": "overlay_wielded_sig_p230", "fg": 5077 },
- { "id": "overlay_wielded_skorpion_61", "fg": 5078 },
- { "id": "overlay_wielded_skorpion_82", "fg": 5079 },
- { "id": "overlay_wielded_sks", "fg": 5080 },
- { "id": "overlay_wielded_smg_40", "fg": 5082 },
- { "id": "overlay_wielded_smg_45", "fg": 5083 },
- { "id": "overlay_wielded_smg_9mm", "fg": 5084 },
- { "id": "overlay_wielded_sp2022 - Copia", "fg": 5085 },
- { "id": "overlay_wielded_sp2022", "fg": 5086 },
- { "id": "overlay_wielded_speargun", "fg": 5087 },
- { "id": "overlay_wielded_sten", "fg": 5088 },
- { "id": "overlay_wielded_steyr_aug", "fg": 5089 },
- { "id": "overlay_wielded_streetsweeper", "fg": 5090 },
- { "id": "overlay_wielded_surv_hand_cannon", "fg": 5091 },
- { "id": "overlay_wielded_surv_rocket_launcher", "fg": 5092 },
- { "id": "overlay_wielded_surv_six_shooter", "fg": 5093 },
- { "id": "overlay_wielded_survivor_special_700", "fg": 5094 },
- { "id": "overlay_wielded_sw629", "fg": 5095 },
- { "id": "overlay_wielded_sw_22", "fg": 5096 },
- { "id": "overlay_wielded_sw_500", "fg": 5097 },
- { "id": "overlay_wielded_sw_610", "fg": 5098 },
- { "id": "overlay_wielded_sw_619", "fg": 5099 },
- { "id": "overlay_wielded_tac50", "fg": 5100 },
- { "id": "overlay_wielded_taurus_spectrum", "fg": 5101 },
- { "id": "overlay_wielded_tavor_12", "fg": 5102 },
- { "id": "overlay_wielded_tec9", "fg": 5103 },
- { "id": "overlay_wielded_tihar", "fg": 5104 },
- { "id": "overlay_wielded_tokarev", "fg": 5105 },
- { "id": "overlay_wielded_tommygun", "fg": 5106 },
- { "id": "overlay_wielded_trex_gun", "fg": 5107 },
- { "id": "overlay_wielded_triple_launcher_simple", "fg": 5108 },
- { "id": "overlay_wielded_unbio_blaster_gun", "fg": 5109 },
- { "id": "overlay_wielded_usp_45", "fg": 5110 },
- { "id": "overlay_wielded_usp_45_var_mk23", "fg": 5111 },
- { "id": "overlay_wielded_usp_9mm", "fg": 5112 },
- { "id": "overlay_wielded_uzi", "fg": 5113 },
- { "id": "overlay_wielded_v29", "fg": 5114 },
- { "id": "overlay_wielded_v29_cheap", "fg": 5115 },
- { "id": "overlay_wielded_walther_ccp", "fg": 5116 },
- { "id": "overlay_wielded_walther_p22", "fg": 5117 },
- { "id": "overlay_wielded_walther_p38", "fg": 5118 },
- { "id": "overlay_wielded_walther_ppq_40", "fg": 5119 },
- { "id": "overlay_wielded_walther_ppq_45", "fg": 5120 },
- { "id": "overlay_wielded_walther_ppq_9mm", "fg": 5121 },
- { "id": "overlay_wielded_weatherby_5", "fg": 5122 },
- { "id": "overlay_wielded_win70", "fg": 5123 },
- { "id": "overlay_wielded_winchester_1887", "fg": 5124 },
- { "id": "overlay_wielded_winchester_1897", "fg": 5125 },
- { "id": "overlay_wielded_witness_10", "fg": 5126 },
- { "id": "overlay_wielded_xd_10", "fg": 5127 },
- { "id": "overlay_wielded_brazier", "fg": 5155 },
- { "id": "overlay_wielded_cot", "fg": 5161 },
- { "id": "overlay_female_wielded_bat_nerf", "fg": 5162 },
- { "id": "overlay_female_wielded_golf_bag", "fg": 5163 },
- { "id": "overlay_male_wielded_bat_nerf", "fg": 5164 },
- { "id": "overlay_male_wielded_golf_bag", "fg": 5165 },
- { "id": "overlay_female_wielded_radio_car", "fg": 5166 },
- { "id": "overlay_female_wielded_radio_car_box", "fg": 5167 },
- { "id": "overlay_female_wielded_radio_car_on", "fg": 5168 },
- { "id": "overlay_female_wielded_radio_car_wheel", "fg": 5169 },
- { "id": "overlay_female_wielded_radiocontrol", "fg": 5170 },
- { "id": "overlay_female_wielded_rc_car_box", "fg": 5171 },
- { "id": "overlay_male_wielded_radio_car", "fg": 5172 },
- { "id": "overlay_male_wielded_radio_car_box", "fg": 5173 },
- { "id": "overlay_male_wielded_radio_car_on", "fg": 5174 },
- { "id": "overlay_male_wielded_radio_car_wheel", "fg": 5175 },
- { "id": "overlay_male_wielded_radiocontrol", "fg": 5176 },
- { "id": "overlay_male_wielded_rc_car_box", "fg": 5177 },
- { "id": "overlay_wielded_atomic_lamp", "fg": 5178 },
- { "id": "overlay_wielded_atomic_lamp_off", "fg": 5179 },
- { "id": "overlay_wielded_l-stick", "fg": 5180 },
- { "id": "overlay_wielded_l-stick_on", "fg": 5181 },
- { "id": "overlay_wielded_cattlefodder", "fg": 5182 },
- { "id": "overlay_wielded_bullet_crossbow", "fg": 5196 },
- { "id": "overlay_wielded_compcrossbow", "fg": 5197 },
- { "id": "overlay_wielded_compositecrossbow", "fg": 5198 },
- { "id": "overlay_wielded_crossbow", "fg": 5199 },
- { "id": "overlay_wielded_hand_crossbow", "fg": 5200 },
- { "id": "overlay_wielded_huge_crossbow", "fg": 5201 },
- { "id": "overlay_wielded_rep_crossbow", "fg": 5202 },
- { "id": "overlay_wielded_hoboreel", "fg": 5216 },
- { "id": "overlay_wielded_grenade", "fg": 5221 },
- { "id": "overlay_wielded_grenade_act", "fg": 5222 },
- { "id": "overlay_wielded_grenade_emp", "fg": 5223 },
- { "id": "overlay_wielded_grenade_emp_act", "fg": 5224 },
- { "id": "overlay_wielded_grenade_inc", "fg": 5225 },
- { "id": "overlay_wielded_grenade_inc_act", "fg": 5226 },
- { "id": "overlay_wielded_pipebomb", "fg": 5227 },
- { "id": "overlay_wielded_pipebomb_act", "fg": 5228 },
- { "id": "overlay_wielded_scrambler", "fg": 5229 },
- { "id": "overlay_wielded_scrambler_act", "fg": 5230 },
- { "id": "overlay_wielded_smokebomb", "fg": 5231 },
- { "id": "overlay_wielded_smokebomb_act", "fg": 5232 },
- { "id": "overlay_wielded_eyedrops", "fg": 5277 },
- { "id": "overlay_female_wielded_baseball", "fg": 5287 },
- { "id": "overlay_female_wielded_basketball", "fg": 5288 },
- { "id": "overlay_female_wielded_beach_volleyball", "fg": 5289 },
- { "id": "overlay_female_wielded_mre_beef_box", "fg": 5290 },
- { "id": "overlay_female_wielded_puck", "fg": 5291 },
- { "id": "overlay_male_wielded_baseball", "fg": 5292 },
- { "id": "overlay_male_wielded_basketball", "fg": 5293 },
- { "id": "overlay_male_wielded_beach_volleyball", "fg": 5294 },
- { "id": "overlay_male_wielded_mre_beef_box", "fg": 5295 },
- { "id": "overlay_male_wielded_puck", "fg": 5296 },
- { "id": "overlay_wielded_PR24-extended", "fg": 5297 },
- { "id": "overlay_wielded_PR24-retracted", "fg": 5298 },
- { "id": "overlay_wielded_baton-extended", "fg": 5299 },
- { "id": "overlay_wielded_baton", "fg": 5300 },
- { "id": "overlay_wielded_battery_car", "fg": 5301 },
- { "id": "overlay_wielded_bowling_ball", "fg": 5302 },
- { "id": "overlay_wielded_cell_phone", "fg": 5303 },
- { "id": "overlay_wielded_cell_phone_flashlight", "fg": 5304 },
- { "id": "overlay_wielded_codeine", "fg": 5305 },
- { "id": "overlay_wielded_flask_hip", "fg": 5306 },
- { "id": "overlay_wielded_football", "fg": 5307 },
- { "id": "overlay_wielded_golf_ball", "fg": 5308 },
- { "id": "overlay_wielded_indoor_volleyball", "fg": 5309 },
- { "id": "overlay_wielded_misc_repairkit", "fg": 5310 },
- { "id": "overlay_wielded_portable_game", "fg": 5311 },
- { "id": "overlay_wielded_two_way_radio", "fg": 5313 },
- { "id": "overlay_female_wielded_pool_cue", "fg": 5329 },
- { "id": "overlay_male_wielded_pool_cue", "fg": 5330 },
- { "id": "overlay_female_wielded_i_staff", "fg": 5338 },
- { "id": "overlay_female_wielded_q_staff", "fg": 5339 },
- { "id": "overlay_female_wielded_shock_staff", "fg": 5340 },
- { "id": "overlay_male_wielded_i_staff", "fg": 5341 },
- { "id": "overlay_male_wielded_q_staff", "fg": 5342 },
- { "id": "overlay_male_wielded_shock_staff", "fg": 5343 },
- { "id": "overlay_female_wielded_cigar", "fg": 5355 },
- { "id": "overlay_female_wielded_cigar_butt", "fg": 5356 },
- { "id": "overlay_male_wielded_cigar", "fg": 5364 },
- { "id": "overlay_male_wielded_cigar_butt", "fg": 5365 },
- { "id": "overlay_female_wielded_cig", "fg": 5373 },
- { "id": "overlay_female_wielded_cig_butt", "fg": 5374 },
- { "id": "overlay_male_wielded_cig", "fg": 5382 },
- { "id": "overlay_male_wielded_cig_butt", "fg": 5383 },
- { "id": "overlay_female_wielded_joint", "fg": 5391 },
- { "id": "overlay_female_wielded_joint_roach", "fg": 5399 },
- { "id": "overlay_male_wielded_joint", "fg": 5400 },
- { "id": "overlay_male_wielded_joint_roach", "fg": 5408 },
- { "id": "overlay_wielded_bokken", "fg": 5445 },
- { "id": "overlay_wielded_digging_stick", "fg": 5454 },
- { "id": "overlay_wielded_hoe", "fg": 5457 },
- { "id": "overlay_female_worn_aep_suit", "fg": 5565 },
- { "id": "overlay_female_worn_power_armor_basic", "fg": 5566 },
- { "id": "overlay_female_worn_power_armor_heavy", "fg": 5567 },
- { "id": "overlay_female_worn_power_armor_helmet_basic", "fg": 5568 },
- { "id": "overlay_female_worn_power_armor_helmet_heavy", "fg": 5569 },
- { "id": "overlay_female_worn_power_armor_helmet_light", "fg": 5570 },
- { "id": "overlay_female_worn_power_armor_light", "fg": 5571 },
- { "id": "overlay_female_worn_rm13_armor", "fg": 5572 },
- { "id": "overlay_female_worn_rm13_armor_on", "fg": 5573 },
- { "id": "overlay_male_worn_aep_suit", "fg": 5574 },
- { "id": "overlay_male_worn_power_armor_basic", "fg": 5575 },
- { "id": "overlay_male_worn_power_armor_heavy", "fg": 5576 },
- { "id": "overlay_male_worn_power_armor_helmet_basic", "fg": 5577 },
- { "id": "overlay_male_worn_power_armor_helmet_heavy", "fg": 5578 },
- { "id": "overlay_male_worn_power_armor_helmet_light", "fg": 5579 },
- { "id": "overlay_male_worn_power_armor_light", "fg": 5580 },
- { "id": "overlay_male_worn_rm13_armor", "fg": 5581 },
- { "id": "overlay_male_worn_rm13_armor_on", "fg": 5582 },
- { "id": "overlay_female_worn_chainmail_suit_faraday", "fg": 5597 },
- { "id": "overlay_female_worn_pot_helmet", "fg": 5598 },
- { "id": "overlay_male_worn_chainmail_suit_faraday", "fg": 5599 },
- { "id": "overlay_male_worn_pot_helmet", "fg": 5600 },
- { "id": "overlay_female_worn_duffelbag", "fg": 5621 },
- { "id": "overlay_female_worn_runner_bag", "fg": 5624 },
- { "id": "overlay_male_worn_duffelbag", "fg": 5625 },
- { "id": "overlay_male_worn_runner_bag", "fg": 5628 },
- { "id": "overlay_female_worn_chestrig", "fg": 5648 },
- { "id": "overlay_female_worn_grenadebandolier", "fg": 5649 },
- { "id": "overlay_female_worn_mbag", "fg": 5650 },
- { "id": "overlay_female_worn_slingpack", "fg": 5651 },
- { "id": "overlay_male_worn_chestrig", "fg": 5652 },
- { "id": "overlay_male_worn_grenadebandolier", "fg": 5653 },
- { "id": "overlay_male_worn_mbag", "fg": 5654 },
- { "id": "overlay_male_worn_slingpack", "fg": 5655 },
- { "id": "overlay_worn_wolfsuit", "fg": 5676 },
- { "id": "overlay_female_worn_chestwrap_leather", "fg": 5704 },
- { "id": "overlay_female_worn_tights", "fg": 5705 },
- { "id": "overlay_male_worn_chestwrap_leather", "fg": 5706 },
- { "id": "overlay_male_worn_tights", "fg": 5707 },
- { "id": "overlay_female_worn_copper_necklace", "fg": 5708 },
- { "id": "overlay_female_worn_gold_necklace", "fg": 5709 },
- { "id": "overlay_female_worn_platinum_necklace", "fg": 5710 },
- { "id": "overlay_female_worn_silver_necklace", "fg": 5711 },
- { "id": "overlay_male_worn_copper_necklace", "fg": 5712 },
- { "id": "overlay_male_worn_gold_necklace", "fg": 5713 },
- { "id": "overlay_male_worn_platinum_necklace", "fg": 5714 },
- { "id": "overlay_male_worn_silver_necklace", "fg": 5715 },
- { "id": "overlay_female_worn_golf_bag", "fg": 5716 },
- { "id": "overlay_male_worn_golf_bag", "fg": 5717 },
- { "id": "overlay_female_worn_nanoskirt", "fg": 5718 },
- { "id": "overlay_male_worn_nanoskirt", "fg": 5719 },
- { "id": "overlay_female_worn_motorbike_armor", "fg": 5720 },
- { "id": "overlay_male_worn_motorbike_armor", "fg": 5721 },
- { "id": "overlay_female_worn_headscarf", "fg": 5722 },
- { "id": "overlay_female_worn_long_knit_scarf", "fg": 5723 },
- { "id": "overlay_female_worn_long_patchwork_scarf", "fg": 5724 },
- { "id": "overlay_female_worn_marloss_scarf", "fg": 5725 },
- { "id": "overlay_female_worn_patchwork_scarf", "fg": 5726 },
- { "id": "overlay_female_worn_scarf_fur", "fg": 5727 },
- { "id": "overlay_female_worn_scarf_fur_long", "fg": 5728 },
- { "id": "overlay_male_worn_headscarf", "fg": 5729 },
- { "id": "overlay_male_worn_long_knit_scarf", "fg": 5730 },
- { "id": "overlay_male_worn_long_patchwork_scarf", "fg": 5731 },
- { "id": "overlay_male_worn_marloss_scarf", "fg": 5732 },
- { "id": "overlay_male_worn_patchwork_scarf", "fg": 5733 },
- { "id": "overlay_male_worn_scarf_fur", "fg": 5734 },
- { "id": "overlay_male_worn_scarf_fur_long", "fg": 5735 },
- { "id": "overlay_male_worn_scarf_long", "fg": 5736 },
- { "id": "overlay_female_worn_scuba_tank", "fg": 5747 },
- { "id": "overlay_female_worn_scuba_tank_on", "fg": 5748 },
- { "id": "overlay_female_worn_small_scuba_tank", "fg": 5749 },
- { "id": "overlay_female_worn_small_scuba_tank_on", "fg": 5750 },
- { "id": "overlay_female_worn_wetsuit", "fg": 5751 },
- { "id": "overlay_female_worn_wetsuit_gloves", "fg": 5752 },
- { "id": "overlay_female_worn_wetsuit_hood", "fg": 5753 },
- { "id": "overlay_female_worn_wetsuit_spring", "fg": 5754 },
- { "id": "overlay_male_worn_scuba_tank", "fg": 5755 },
- { "id": "overlay_male_worn_scuba_tank_on", "fg": 5756 },
- { "id": "overlay_male_worn_small_scuba_tank", "fg": 5757 },
- { "id": "overlay_male_worn_small_scuba_tank_on", "fg": 5758 },
- { "id": "overlay_male_worn_wetsuit", "fg": 5759 },
- { "id": "overlay_male_worn_wetsuit_gloves", "fg": 5760 },
- { "id": "overlay_male_worn_wetsuit_hood", "fg": 5761 },
- { "id": "overlay_male_worn_wetsuit_spring", "fg": 5762 },
- { "id": "overlay_worn_wetsuit_booties", "fg": 5763 },
- { "id": "overlay_female_worn_fitover_sunglasses", "fg": 5791 },
- { "id": "overlay_male_worn_fitover_sunglasses", "fg": 5792 },
- { "id": "overlay_female_worn_hat_chef", "fg": 5865 },
- { "id": "overlay_male_worn_hat_chef", "fg": 5866 },
- { "id": "overlay_female_worn_bead_ear", "fg": 5922 },
- { "id": "overlay_female_worn_copper_ear", "fg": 5923 },
- { "id": "overlay_female_worn_hairpin", "fg": 5925 },
- { "id": "overlay_male_worn_bead_ear", "fg": 5928 },
- { "id": "overlay_male_worn_copper_ear", "fg": 5929 },
- { "id": "overlay_male_worn_hairpin", "fg": 5931 },
- { "id": "overlay_female_worn_antarvasa", "fg": 5937 },
- { "id": "overlay_female_worn_kasaya", "fg": 5938 },
- { "id": "overlay_female_worn_samghati", "fg": 5939 },
- { "id": "overlay_female_worn_uttarasanga", "fg": 5940 },
- { "id": "overlay_male_worn_antarvasa", "fg": 5941 },
- { "id": "overlay_male_worn_kasaya", "fg": 5942 },
- { "id": "overlay_male_worn_samghati", "fg": 5943 },
- { "id": "overlay_male_worn_uttarasanga", "fg": 5944 },
- { "id": "overlay_female_worn_tourniquet_lower", "fg": 5987 },
- { "id": "overlay_female_worn_tourniquet_upper", "fg": 5988 },
- { "id": "overlay_female_worn_wristwatch", "fg": 5989 },
- { "id": "overlay_male_worn_tourniquet_lower", "fg": 5990 },
- { "id": "overlay_male_worn_tourniquet_upper", "fg": 5991 },
- { "id": "overlay_male_worn_wristwatch", "fg": 5992 },
- { "id": "overlay_worn_purse", "fg": 5993 },
- { "id": "overlay_worn_rad_badge", "fg": 5994 },
- { "id": "overlay_female_worn_survivor_goggles", "fg": 6066 },
- { "id": "overlay_male_worn_survivor_goggles", "fg": 6067 },
- { "id": "overlay_female_worn_survivor_duffel_bag", "fg": 6126 },
- { "id": "overlay_female_worn_survivor_pack", "fg": 6127 },
- { "id": "overlay_female_worn_survivor_rucksack", "fg": 6128 },
- { "id": "overlay_female_worn_survivor_runner_pack", "fg": 6129 },
- { "id": "overlay_male_worn_survivor_duffel_bag", "fg": 6130 },
- { "id": "overlay_male_worn_survivor_pack", "fg": 6131 },
- { "id": "overlay_male_worn_survivor_rucksack", "fg": 6132 },
- { "id": "overlay_male_worn_survivor_runner_pack", "fg": 6133 }
+ "fg": 6147
+ },
+ { "id": "overlay_worn_boots_h20survivor", "fg": 6156 },
+ { "id": "overlay_female_worn_gloves_h20survivor", "fg": 6157 },
+ { "id": "overlay_male_worn_gloves_h20survivor", "fg": 6158 },
+ { "id": "overlay_female_worn_hood_h20survivor", "fg": 6159 },
+ { "id": "overlay_male_worn_hood_h20survivor", "fg": 6160 },
+ { "id": "overlay_female_worn_h20survivor_suit", "fg": 6161 },
+ { "id": "overlay_male_worn_h20survivor_suit", "fg": 6162 },
+ { "id": [ "overlay_worn_boots_lsurvivor", "overlay_worn_xl_boots_lsurvivor" ], "fg": 6175 },
+ { "id": [ "overlay_female_worn_gloves_lsurvivor", "overlay_female_worn_xl_gloves_lsurvivor" ], "fg": 6180 },
+ { "id": [ "overlay_male_worn_gloves_lsurvivor", "overlay_male_worn_xl_gloves_lsurvivor" ], "fg": 6181 },
+ { "id": [ "overlay_female_worn_hood_lsurvivor", "overlay_female_worn_xl_hood_lsurvivor" ], "fg": 6182 },
+ { "id": [ "overlay_male_worn_hood_lsurvivor", "overlay_male_worn_xl_hood_lsurvivor" ], "fg": 6183 },
+ { "id": [ "overlay_female_worn_lsurvivor_suit", "overlay_female_worn_xl_lsurvivor_suit" ], "fg": 6184 },
+ { "id": [ "overlay_male_worn_lsurvivor_suit", "overlay_male_worn_xl_lsurvivor_suit" ], "fg": 6185 },
+ { "id": [ "overlay_female_worn_lsurvivor_armor", "overlay_female_worn_xl_lsurvivor_armor" ], "fg": 6176 },
+ { "id": [ "overlay_male_worn_lsurvivor_armor", "overlay_male_worn_xl_lsurvivor_armor" ], "fg": 6177 },
+ { "id": [ "overlay_female_worn_lsurvivor_pants", "overlay_female_worn_xl_lsurvivor_pants" ], "fg": 6178 },
+ { "id": [ "overlay_male_worn_lsurvivor_pants", "overlay_male_worn_xl_lsurvivor_pants" ], "fg": 6179 },
+ { "id": "overlay_female_worn_mask_hsurvivor", "fg": 6186 },
+ { "id": "overlay_male_worn_mask_hsurvivor", "fg": 6187 },
+ { "id": "overlay_female_worn_mask_lsurvivor", "fg": 6188 },
+ { "id": "overlay_male_worn_mask_lsurvivor", "fg": 6189 },
+ { "id": "overlay_female_worn_mask_fsurvivor", "fg": 6190 },
+ { "id": "overlay_male_worn_mask_fsurvivor", "fg": 6191 },
+ { "id": "overlay_female_worn_mask_fsurvivorxl", "fg": 6190 },
+ { "id": "overlay_male_worn_mask_fsurvivorxl", "fg": 6191 },
+ { "id": "overlay_female_worn_mask_survivor", "fg": 6192 },
+ { "id": "overlay_male_worn_mask_survivor", "fg": 6193 },
+ { "id": "overlay_female_worn_mask_survivorxl", "fg": 6192 },
+ { "id": "overlay_male_worn_mask_survivorxl", "fg": 6193 },
+ { "id": "overlay_female_worn_mask_wsurvivor", "fg": 6194 },
+ { "id": "overlay_male_worn_mask_wsurvivor", "fg": 6195 },
+ { "id": "overlay_female_worn_mask_wsurvivorxl", "fg": 6194 },
+ { "id": "overlay_male_worn_mask_wsurvivorxl", "fg": 6195 },
+ { "id": [ "overlay_worn_boots_wsurvivor", "overlay_worn_xl_boots_wsurvivor" ], "fg": 6208 },
+ { "id": [ "overlay_female_worn_gloves_wsurvivor", "overlay_female_worn_xl_gloves_wsurvivor" ], "fg": 6209 },
+ { "id": [ "overlay_male_worn_gloves_wsurvivor", "overlay_male_worn_xl_gloves_wsurvivor" ], "fg": 6210 },
+ { "id": [ "overlay_female_worn_hood_wsurvivor", "overlay_female_worn_xl_hood_wsurvivor" ], "fg": 6211 },
+ { "id": [ "overlay_male_worn_hood_wsurvivor", "overlay_male_worn_xl_hood_wsurvivor" ], "fg": 6212 },
+ { "id": [ "overlay_female_worn_wsurvivor_suit", "overlay_female_worn_xl_wsurvivor_suit" ], "fg": 6213 },
+ { "id": [ "overlay_male_worn_wsurvivor_suit", "overlay_male_worn_xl_wsurvivor_suit" ], "fg": 6214 },
+ { "id": "overlay_female_worn_bikini_bottom", "fg": 6215 },
+ { "id": "overlay_male_worn_bikini_bottom", "fg": 6216 },
+ { "id": "overlay_female_worn_bikini_top", "fg": 6217 },
+ { "id": "overlay_male_worn_bikini_top", "fg": 6218 },
+ { "id": "overlay_female_worn_bikini_top_fur", "fg": 6219 },
+ { "id": "overlay_male_worn_bikini_top_fur", "fg": 6220 },
+ { "id": "overlay_female_worn_bikini_top_leather", "fg": 6221 },
+ { "id": "overlay_male_worn_bikini_top_leather", "fg": 6222 },
+ { "id": "overlay_female_worn_winter_pants_army", "fg": 6223 },
+ { "id": "overlay_male_worn_winter_pants_army", "fg": 6224 },
+ { "id": "overlay_female_worn_bunker_pants", "fg": 6225 },
+ { "id": "overlay_male_worn_bunker_pants", "fg": 6226 },
+ { "id": "overlay_female_worn_striped_pants", "fg": 6249 },
+ { "id": "overlay_male_worn_striped_pants", "fg": 6250 },
+ { "id": "overlay_female_worn_technician_pants_gray", "fg": 6251 },
+ { "id": "overlay_male_worn_technician_pants_gray", "fg": 6252 },
+ { "id": "overlay_female_worn_jeans", "fg": 6227 },
+ { "id": "overlay_male_worn_jeans", "fg": 6228 },
+ { "id": "overlay_female_worn_jeans_red", "fg": 6229 },
+ { "id": "overlay_male_worn_jeans_red", "fg": 6230 },
+ { "id": "overlay_female_worn_motorbike_pants", "fg": 6231 },
+ { "id": "overlay_male_worn_motorbike_pants", "fg": 6232 },
+ { "id": "overlay_female_worn_pants_army", "fg": 6233 },
+ { "id": "overlay_male_worn_pants_army", "fg": 6234 },
+ { "id": "overlay_female_worn_pants_cargo", "fg": 6235 },
+ { "id": "overlay_male_worn_pants_cargo", "fg": 6236 },
+ { "id": "overlay_female_worn_pants_checkered", "fg": 6237 },
+ { "id": "overlay_male_worn_pants_checkered", "fg": 6238 },
+ { "id": "overlay_female_worn_pants_faux_fur", "fg": 6240 },
+ { "id": "overlay_male_worn_pants_faux_fur", "fg": 6241 },
+ { "id": "overlay_female_worn_pants_fur", "fg": 6242 },
+ { "id": "overlay_male_worn_pants_fur", "fg": 6243 },
+ { "id": "overlay_female_worn_pants_leather", "fg": 6244 },
+ { "id": "overlay_male_worn_pants_leather", "fg": 6245 },
+ { "id": "overlay_female_worn_pants", "fg": 6239 },
+ { "id": "overlay_male_worn_pants", "fg": 6246 },
+ { "id": "overlay_female_worn_pants_ski", "fg": 6247 },
+ { "id": "overlay_male_worn_pants_ski", "fg": 6248 },
+ { "id": "overlay_female_worn_bra", "fg": 6257 },
+ { "id": "overlay_male_worn_bra", "fg": 6258 },
+ { "id": "overlay_female_worn_corset", "fg": 6259 },
+ { "id": "overlay_male_worn_corset", "fg": 6260 },
+ { "id": "overlay_male_worn_undershirt", "fg": 6274 },
+ { "id": "overlay_female_worn_undershirt", "fg": 6273 },
+ { "id": "overlay_female_worn_socks", "fg": 6267 },
+ { "id": "overlay_male_worn_socks", "fg": 6268 },
+ { "id": "overlay_female_worn_stockings", "fg": 6271 },
+ { "id": "overlay_male_worn_stockings", "fg": 6272 },
+ { "id": "overlay_worn_socks_wool", "fg": 6277 },
+ { "id": "overlay_female_worn_sports_bra", "fg": 6269 },
+ { "id": "overlay_male_worn_sports_bra", "fg": 6270 },
+ { "id": "overlay_female_worn_boxer_briefs", "fg": 6253 },
+ { "id": "overlay_male_worn_boxer_briefs", "fg": 6254 },
+ { "id": "overlay_female_worn_boxer_shorts", "fg": 6255 },
+ { "id": "overlay_male_worn_boxer_shorts", "fg": 6256 },
+ { "id": "overlay_female_worn_long_underpants", "fg": 6261 },
+ { "id": "overlay_male_worn_long_underpants", "fg": 6262 },
+ { "id": "overlay_female_worn_long_undertop", "fg": 6263 },
+ { "id": "overlay_male_worn_long_undertop", "fg": 6264 },
+ { "id": "overlay_female_worn_panties", "fg": 6265 },
+ { "id": "overlay_male_worn_panties", "fg": 6266 },
+ { "id": "overlay_female_worn_union_suit", "fg": 6275 },
+ { "id": "overlay_male_worn_union_suit", "fg": 6276 },
+ { "id": "overlay_male_worn_blanket", "fg": 6279 },
+ { "id": "overlay_female_worn_blanket", "fg": 6278 },
+ { "id": "overlay_male_worn_down_blanket", "fg": 6281 },
+ { "id": "overlay_female_worn_down_blanket", "fg": 6280 },
+ { "id": "overlay_female_worn_electric_blanket", "fg": 6282 },
+ { "id": "overlay_male_worn_electric_blanket", "fg": 6283 },
+ { "id": "overlay_female_worn_towel", "fg": 6284 },
+ { "id": "overlay_male_worn_towel", "fg": 6285 },
+ { "id": "overlay_female_worn_towel_wet", "fg": 6284 },
+ { "id": "overlay_male_worn_towel_wet", "fg": 6285 },
+ { "id": "overlay_female_worn_towel_soiled", "fg": 6284 },
+ { "id": "overlay_male_worn_towel_soiled", "fg": 6285 },
+ { "id": "overlay_mutation_bio_blaster", "fg": 4656 },
+ { "id": "overlay_effect_attention", "fg": 4657 },
+ { "id": "overlay_effect_boomered", "fg": 4658 },
+ { "id": "overlay_effect_glare", "fg": 4659 },
+ { "id": "overlay_effect_laserlocked", "fg": 4660 },
+ { "id": "overlay_female_mutation_ARM_TENTACLES", "fg": 4785 },
+ { "id": "overlay_male_mutation_ARM_TENTACLES", "fg": 4786 },
+ { "id": "overlay_female_mutation_ARM_TENTACLES_4", "fg": 4787 },
+ { "id": "overlay_male_mutation_ARM_TENTACLES_4", "fg": 4788 },
+ { "id": "overlay_female_mutation_ARM_TENTACLES_8", "fg": 4789 },
+ { "id": "overlay_male_mutation_ARM_TENTACLES_8", "fg": 4790 },
+ { "id": "overlay_female_mutation_CANINE_EARS", "fg": 4799 },
+ { "id": "overlay_male_mutation_CANINE_EARS", "fg": 4800 },
+ { "id": "overlay_female_mutation_FELINE_EARS", "fg": 4803 },
+ { "id": "overlay_male_mutation_FELINE_EARS", "fg": 4804 },
+ { "id": "overlay_female_mutation_HORNS", "fg": 4805 },
+ { "id": "overlay_male_mutation_HORNS", "fg": 4806 },
+ { "id": "overlay_female_mutation_MINOTAUR", "fg": 4811 },
+ { "id": "overlay_male_mutation_MINOTAUR", "fg": 4812 },
+ { "id": "overlay_female_mutation_MOUTH_TENTACLES", "fg": 4813 },
+ { "id": "overlay_male_mutation_MOUTH_TENTACLES", "fg": 4814 },
+ { "id": "overlay_female_mutation_SHELL", "fg": 4817 },
+ { "id": "overlay_male_mutation_SHELL", "fg": 4818 },
+ { "id": "overlay_female_mutation_TAIL_CATTLE", "fg": 4819 },
+ { "id": "overlay_male_mutation_TAIL_CATTLE", "fg": 4820 },
+ { "id": "overlay_female_mutation_TAIL_LONG", "fg": 4821 },
+ { "id": "overlay_male_mutation_TAIL_LONG", "fg": 4822 },
+ { "id": "overlay_female_mutation_FUR", "fg": 4838 },
+ { "id": "overlay_male_mutation_FUR", "fg": 4840 },
+ { "id": "overlay_female_wielded_clay_teapot", "fg": 4895 },
+ { "id": "overlay_female_worn_harmonica_holder", "fg": 4896 },
+ { "id": "overlay_male_wielded_clay_teapot", "fg": 4897 },
+ { "id": "overlay_male_worn_harmonica_holder", "fg": 4898 },
+ { "id": "overlay_wielded_banjo", "fg": 4900 },
+ { "id": "overlay_wielded_bodypillow", "fg": 4901 },
+ { "id": "overlay_wielded_clay_pot", "fg": 4902 },
+ { "id": "overlay_wielded_guitar_electric", "fg": 4903 },
+ { "id": "overlay_wielded_laptop", "fg": 4904 },
+ { "id": "overlay_wielded_makeshift_hammer", "fg": 4905 },
+ { "id": "overlay_wielded_pot_makeshift", "fg": 4906 },
+ { "id": "overlay_wielded_pot_makeshift_copper", "fg": 4907 },
+ { "id": "overlay_wielded_tazer", "fg": 4908 },
+ { "id": "overlay_wielded_1895sbl", "fg": 4912 },
+ { "id": "overlay_wielded_2_shot_special", "fg": 4913 },
+ { "id": "overlay_wielded_90two", "fg": 4914 },
+ { "id": "overlay_wielded_90two40", "fg": 4915 },
+ { "id": "overlay_wielded_AT4", "fg": 4916 },
+ { "id": "overlay_wielded_LAW", "fg": 4917 },
+ { "id": "overlay_wielded_LAW_Packed", "fg": 4918 },
+ { "id": "overlay_wielded_M24", "fg": 4919 },
+ { "id": "overlay_wielded_RPG", "fg": 4920 },
+ { "id": "overlay_wielded_TDI", "fg": 4921 },
+ { "id": "overlay_wielded_USAS_12", "fg": 4922 },
+ { "id": "overlay_wielded_af2011a1_38super", "fg": 4923 },
+ { "id": "overlay_wielded_airspeargun", "fg": 4924 },
+ { "id": "overlay_wielded_ak74", "fg": 4926 },
+ { "id": "overlay_wielded_american_180", "fg": 4927 },
+ { "id": "overlay_wielded_an94", "fg": 4928 },
+ { "id": "overlay_wielded_ar10", "fg": 4929 },
+ { "id": "overlay_wielded_ar15", "fg": 4930 },
+ { "id": "overlay_wielded_ar_pistol", "fg": 4931 },
+ { "id": "overlay_wielded_arx160", "fg": 4932 },
+ { "id": "overlay_wielded_ashot", "fg": 4933 },
+ { "id": "overlay_wielded_atgm_launcher", "fg": 4934 },
+ { "id": "overlay_wielded_bbgun", "fg": 4935 },
+ { "id": "overlay_wielded_bfr", "fg": 4936 },
+ { "id": "overlay_wielded_bh_m89", "fg": 4937 },
+ { "id": "overlay_wielded_bigun", "fg": 4938 },
+ { "id": "overlay_wielded_blunderbuss", "fg": 4939 },
+ { "id": "overlay_wielded_bond_410", "fg": 4940 },
+ { "id": "overlay_wielded_browning_blr", "fg": 4941 },
+ { "id": "overlay_wielded_bt_apc9k", "fg": 4942 },
+ { "id": "overlay_wielded_chemical_thrower", "fg": 4944 },
+ { "id": "overlay_wielded_coilgun", "fg": 4945 },
+ { "id": "overlay_wielded_colt_army", "fg": 4946 },
+ { "id": "overlay_wielded_colt_lightning", "fg": 4947 },
+ { "id": "overlay_wielded_colt_navy", "fg": 4948 },
+ { "id": "overlay_wielded_colt_ro635", "fg": 4949 },
+ { "id": "overlay_wielded_colt_saa", "fg": 4950 },
+ { "id": "overlay_wielded_combination_gun", "fg": 4951 },
+ { "id": "overlay_wielded_cop_38", "fg": 4952 },
+ { "id": "overlay_wielded_cx4", "fg": 4953 },
+ { "id": "overlay_wielded_cz75", "fg": 4954 },
+ { "id": "overlay_wielded_deagle_44", "fg": 4955 },
+ { "id": "overlay_wielded_doublespeargun", "fg": 4956 },
+ { "id": "overlay_wielded_draco", "fg": 4957 },
+ { "id": "overlay_wielded_emp_gun", "fg": 4958 },
+ { "id": "overlay_wielded_famas", "fg": 4959 },
+ { "id": "overlay_wielded_flamethrower", "fg": 4960 },
+ { "id": "overlay_wielded_flamethrower_crude", "fg": 4961 },
+ { "id": "overlay_wielded_flamethrower_simple", "fg": 4962 },
+ { "id": "overlay_wielded_flaregun", "fg": 4963 },
+ { "id": "overlay_wielded_fn1910", "fg": 4964 },
+ { "id": "overlay_wielded_fn57", "fg": 4965 },
+ { "id": "overlay_wielded_fn_fal", "fg": 4966 },
+ { "id": "overlay_wielded_fn_p90", "fg": 4967 },
+ { "id": "overlay_wielded_fs2000", "fg": 4968 },
+ { "id": "overlay_wielded_ftk93", "fg": 4969 },
+ { "id": "overlay_wielded_garand", "fg": 4970 },
+ { "id": "overlay_wielded_glock_17", "fg": 4971 },
+ { "id": "overlay_wielded_glock_18c", "fg": 4972 },
+ { "id": "overlay_wielded_glock_19", "fg": 4973 },
+ { "id": "overlay_wielded_glock_20", "fg": 4974 },
+ { "id": "overlay_wielded_glock_20_var_glock_40", "fg": 4975 },
+ { "id": "overlay_wielded_glock_21", "fg": 4976 },
+ { "id": "overlay_wielded_glock_22", "fg": 4977 },
+ { "id": "overlay_wielded_glock_29", "fg": 4978 },
+ { "id": "overlay_wielded_glock_31", "fg": 4979 },
+ { "id": "overlay_wielded_heavy_rail_rifle", "fg": 4980 },
+ { "id": "overlay_wielded_helsing", "fg": 4981 },
+ { "id": "overlay_wielded_henry_big_boy", "fg": 4982 },
+ { "id": "overlay_wielded_hi_power_40", "fg": 4983 },
+ { "id": "overlay_wielded_hi_power_9mm", "fg": 4984 },
+ { "id": "overlay_wielded_hk417_13", "fg": 4985 },
+ { "id": "overlay_wielded_hk_g3", "fg": 4986 },
+ { "id": "overlay_wielded_hk_g36", "fg": 4987 },
+ { "id": "overlay_wielded_hk_g80", "fg": 4988 },
+ { "id": "overlay_wielded_hk_mp5_semi_pistol", "fg": 4990 },
+ { "id": "overlay_wielded_hk_mp5k", "fg": 4991 },
+ { "id": "overlay_wielded_hk_mp5sd", "fg": 4992 },
+ { "id": "overlay_wielded_hk_mp7", "fg": 4993 },
+ { "id": "overlay_wielded_hk_ump45", "fg": 4994 },
+ { "id": "overlay_wielded_hptc9", "fg": 4995 },
+ { "id": "overlay_wielded_hptcf380", "fg": 4996 },
+ { "id": "overlay_wielded_iwi_tavor_x95_300blk", "fg": 4998 },
+ { "id": "overlay_wielded_kp32", "fg": 4999 },
+ { "id": "overlay_wielded_kp3at", "fg": 5000 },
+ { "id": "overlay_wielded_kpf9", "fg": 5001 },
+ { "id": "overlay_wielded_ksg-25", "fg": 5002 },
+ { "id": "overlay_wielded_ksg", "fg": 5003 },
+ { "id": "overlay_wielded_ksub2000", "fg": 5004 },
+ { "id": "overlay_wielded_l_bak_223", "fg": 5005 },
+ { "id": "overlay_wielded_laser_cannon", "fg": 5006 },
+ { "id": "overlay_wielded_laser_rifle", "fg": 5007 },
+ { "id": "overlay_wielded_launcher_simple", "fg": 5008 },
+ { "id": "overlay_wielded_lemat_revolver", "fg": 5009 },
+ { "id": "overlay_wielded_lever_shotgun", "fg": 5010 },
+ { "id": "overlay_wielded_m11", "fg": 5012 },
+ { "id": "overlay_wielded_m110a1", "fg": 5013 },
+ { "id": "overlay_wielded_m14ebr", "fg": 5014 },
+ { "id": "overlay_wielded_m17", "fg": 5017 },
+ { "id": "overlay_wielded_m18", "fg": 5018 },
+ { "id": "overlay_wielded_m1903", "fg": 5019 },
+ { "id": "overlay_wielded_m1911-460", "fg": 5020 },
+ { "id": "overlay_wielded_m1911_10", "fg": 5022 },
+ { "id": "overlay_wielded_m1911_var_m1911_MEU", "fg": 5023 },
+ { "id": "overlay_wielded_m1918", "fg": 5024 },
+ { "id": "overlay_wielded_m1a", "fg": 5025 },
+ { "id": "overlay_wielded_m2010", "fg": 5026 },
+ { "id": "overlay_wielded_m202_flash", "fg": 5027 },
+ { "id": "overlay_wielded_m231pfw", "fg": 5028 },
+ { "id": "overlay_wielded_m240", "fg": 5029 },
+ { "id": "overlay_wielded_m27_assault_rifle_var_h&k416a5", "fg": 5031 },
+ { "id": "overlay_wielded_m27_assault_rifle_var_m27iar", "fg": 5032 },
+ { "id": "overlay_wielded_m27_assault_rifle_var_m38dmr", "fg": 5033 },
+ { "id": "overlay_wielded_m27_assault_rifle_var_scar_l", "fg": 5034 },
+ { "id": "overlay_wielded_m2browning_sawn", "fg": 5035 },
+ { "id": "overlay_wielded_m320", "fg": 5036 },
+ { "id": "overlay_wielded_m3_carlgustav", "fg": 5037 },
+ { "id": "overlay_wielded_m4_carbine_var_m4_cqbr", "fg": 5038 },
+ { "id": "overlay_wielded_m4_carbine_var_m4a1", "fg": 5039 },
+ { "id": "overlay_wielded_m4_carlgustav", "fg": 5040 },
+ { "id": "overlay_wielded_m79", "fg": 5042 },
+ { "id": "overlay_wielded_m9", "fg": 5043 },
+ { "id": "overlay_wielded_mac_10", "fg": 5044 },
+ { "id": "overlay_wielded_mac_11", "fg": 5045 },
+ { "id": "overlay_wielded_makarov", "fg": 5046 },
+ { "id": "overlay_wielded_marlin_9a", "fg": 5047 },
+ { "id": "overlay_wielded_mauser_c96", "fg": 5048 },
+ { "id": "overlay_wielded_mauser_m714", "fg": 5049 },
+ { "id": "overlay_wielded_mgl", "fg": 5050 },
+ { "id": "overlay_wielded_mininuke_launcher", "fg": 5051 },
+ { "id": "overlay_wielded_minispeargun", "fg": 5052 },
+ { "id": "overlay_wielded_model_10_revolver", "fg": 5053 },
+ { "id": "overlay_wielded_mosin44", "fg": 5054 },
+ { "id": "overlay_wielded_mosin44_ebr", "fg": 5055 },
+ { "id": "overlay_wielded_mosin91_30", "fg": 5056 },
+ { "id": "overlay_wielded_mosin91_30_ebr", "fg": 5057 },
+ { "id": "overlay_wielded_moss_brownie", "fg": 5058 },
+ { "id": "overlay_wielded_mossberg_500", "fg": 5059 },
+ { "id": "overlay_wielded_mossberg_500_var_mossberg_500_security", "fg": 5060 },
+ { "id": "overlay_wielded_mossberg_590", "fg": 5061 },
+ { "id": "overlay_wielded_mossberg_590_var_SPAS_12", "fg": 5062 },
+ { "id": "overlay_wielded_mossberg_930", "fg": 5063 },
+ { "id": "overlay_wielded_mossberg_930_var_m1014", "fg": 5064 },
+ { "id": "overlay_wielded_mp18", "fg": 5065 },
+ { "id": "overlay_wielded_nailgun", "fg": 5067 },
+ { "id": "overlay_wielded_nailrifle", "fg": 5068 },
+ { "id": "overlay_wielded_needlegun", "fg": 5069 },
+ { "id": "overlay_wielded_needlepistol", "fg": 5070 },
+ { "id": "overlay_wielded_oa93", "fg": 5071 },
+ { "id": "overlay_wielded_p08", "fg": 5072 },
+ { "id": "overlay_wielded_p220_10", "fg": 5073 },
+ { "id": "overlay_wielded_p226_357sig", "fg": 5074 },
+ { "id": "overlay_wielded_p226_9mm", "fg": 5075 },
+ { "id": "overlay_wielded_p320_357sig", "fg": 5076 },
+ { "id": "overlay_wielded_paintballgun", "fg": 5077 },
+ { "id": "overlay_wielded_pamd68", "fg": 5078 },
+ { "id": "overlay_wielded_pamd71z", "fg": 5079 },
+ { "id": "overlay_wielded_pipe_combination_gun", "fg": 5080 },
+ { "id": "overlay_wielded_pipe_double_shotgun", "fg": 5081 },
+ { "id": "overlay_wielded_pipe_shotgun", "fg": 5083 },
+ { "id": "overlay_wielded_pistol_flintlock", "fg": 5084 },
+ { "id": "overlay_wielded_plasma_gun", "fg": 5085 },
+ { "id": "overlay_wielded_plasma_rifle", "fg": 5086 },
+ { "id": "overlay_wielded_ppsh", "fg": 5087 },
+ { "id": "overlay_wielded_px4", "fg": 5088 },
+ { "id": "overlay_wielded_px4_40", "fg": 5089 },
+ { "id": "overlay_wielded_raging_bull", "fg": 5090 },
+ { "id": "overlay_wielded_raging_judge", "fg": 5091 },
+ { "id": "overlay_wielded_rebar_rifle", "fg": 5092 },
+ { "id": "overlay_wielded_remington700_270", "fg": 5093 },
+ { "id": "overlay_wielded_remington_700", "fg": 5094 },
+ { "id": "overlay_wielded_remington_870", "fg": 5095 },
+ { "id": "overlay_wielded_remington_870_breacher", "fg": 5096 },
+ { "id": "overlay_wielded_remington_870_express", "fg": 5097 },
+ { "id": "overlay_wielded_remington_870_var_browning_a5", "fg": 5098 },
+ { "id": "overlay_wielded_remington_870_var_remington_1100", "fg": 5099 },
+ { "id": "overlay_wielded_revolver_shotgun", "fg": 5100 },
+ { "id": "overlay_wielded_rm103a_pistol", "fg": 5101 },
+ { "id": "overlay_wielded_rm120c", "fg": 5102 },
+ { "id": "overlay_wielded_rm20", "fg": 5103 },
+ { "id": "overlay_wielded_rm2000_smg", "fg": 5104 },
+ { "id": "overlay_wielded_rm228", "fg": 5105 },
+ { "id": "overlay_wielded_rm298", "fg": 5106 },
+ { "id": "overlay_wielded_rm451_flamethrower", "fg": 5107 },
+ { "id": "overlay_wielded_rm51_assault_rifle", "fg": 5108 },
+ { "id": "overlay_wielded_rm614_lmg", "fg": 5109 },
+ { "id": "overlay_wielded_rm802", "fg": 5110 },
+ { "id": "overlay_wielded_rm88_battle_rifle", "fg": 5111 },
+ { "id": "overlay_wielded_ruger_1022", "fg": 5112 },
+ { "id": "overlay_wielded_ruger_lcr_22", "fg": 5113 },
+ { "id": "overlay_wielded_ruger_lcr_38", "fg": 5114 },
+ { "id": "overlay_wielded_ruger_mini", "fg": 5115 },
+ { "id": "overlay_wielded_ruger_redhawk", "fg": 5116 },
+ { "id": "overlay_wielded_rugerlcp", "fg": 5117 },
+ { "id": "overlay_wielded_saiga_12", "fg": 5118 },
+ { "id": "overlay_wielded_saiga_410", "fg": 5119 },
+ { "id": "overlay_wielded_savage_111f", "fg": 5120 },
+ { "id": "overlay_wielded_scar_h", "fg": 5121 },
+ { "id": "overlay_wielded_sharps", "fg": 5122 },
+ { "id": "overlay_wielded_shotgun_410", "fg": 5123 },
+ { "id": "overlay_wielded_shotgun_d", "fg": 5124 },
+ { "id": "overlay_wielded_shotgun_s", "fg": 5125 },
+ { "id": "overlay_wielded_sig552", "fg": 5126 },
+ { "id": "overlay_wielded_sig_40", "fg": 5127 },
+ { "id": "overlay_wielded_sig_mcx_rattler_sbr", "fg": 5128 },
+ { "id": "overlay_wielded_sig_mosquito", "fg": 5129 },
+ { "id": "overlay_wielded_sig_p230", "fg": 5130 },
+ { "id": "overlay_wielded_skorpion_61", "fg": 5131 },
+ { "id": "overlay_wielded_skorpion_82", "fg": 5132 },
+ { "id": "overlay_wielded_sks", "fg": 5133 },
+ { "id": "overlay_wielded_smg_40", "fg": 5135 },
+ { "id": "overlay_wielded_smg_45", "fg": 5136 },
+ { "id": "overlay_wielded_smg_9mm", "fg": 5137 },
+ { "id": "overlay_wielded_sp2022 - Copia", "fg": 5138 },
+ { "id": "overlay_wielded_sp2022", "fg": 5139 },
+ { "id": "overlay_wielded_speargun", "fg": 5140 },
+ { "id": "overlay_wielded_sten", "fg": 5141 },
+ { "id": "overlay_wielded_steyr_aug", "fg": 5142 },
+ { "id": "overlay_wielded_streetsweeper", "fg": 5143 },
+ { "id": "overlay_wielded_surv_hand_cannon", "fg": 5144 },
+ { "id": "overlay_wielded_surv_rocket_launcher", "fg": 5145 },
+ { "id": "overlay_wielded_surv_six_shooter", "fg": 5146 },
+ { "id": "overlay_wielded_survivor_special_700", "fg": 5147 },
+ { "id": "overlay_wielded_sw629", "fg": 5148 },
+ { "id": "overlay_wielded_sw_22", "fg": 5149 },
+ { "id": "overlay_wielded_sw_500", "fg": 5150 },
+ { "id": "overlay_wielded_sw_610", "fg": 5151 },
+ { "id": "overlay_wielded_sw_619", "fg": 5152 },
+ { "id": "overlay_wielded_tac50", "fg": 5153 },
+ { "id": "overlay_wielded_taurus_spectrum", "fg": 5154 },
+ { "id": "overlay_wielded_tavor_12", "fg": 5155 },
+ { "id": "overlay_wielded_tec9", "fg": 5156 },
+ { "id": "overlay_wielded_tihar", "fg": 5157 },
+ { "id": "overlay_wielded_tokarev", "fg": 5158 },
+ { "id": "overlay_wielded_tommygun", "fg": 5159 },
+ { "id": "overlay_wielded_trex_gun", "fg": 5160 },
+ { "id": "overlay_wielded_triple_launcher_simple", "fg": 5161 },
+ { "id": "overlay_wielded_unbio_blaster_gun", "fg": 5162 },
+ { "id": "overlay_wielded_usp_45", "fg": 5163 },
+ { "id": "overlay_wielded_usp_45_var_mk23", "fg": 5164 },
+ { "id": "overlay_wielded_usp_9mm", "fg": 5165 },
+ { "id": "overlay_wielded_uzi", "fg": 5166 },
+ { "id": "overlay_wielded_v29", "fg": 5167 },
+ { "id": "overlay_wielded_v29_cheap", "fg": 5168 },
+ { "id": "overlay_wielded_walther_ccp", "fg": 5169 },
+ { "id": "overlay_wielded_walther_p22", "fg": 5170 },
+ { "id": "overlay_wielded_walther_p38", "fg": 5171 },
+ { "id": "overlay_wielded_walther_ppq_40", "fg": 5172 },
+ { "id": "overlay_wielded_walther_ppq_45", "fg": 5173 },
+ { "id": "overlay_wielded_walther_ppq_9mm", "fg": 5174 },
+ { "id": "overlay_wielded_weatherby_5", "fg": 5175 },
+ { "id": "overlay_wielded_win70", "fg": 5176 },
+ { "id": "overlay_wielded_winchester_1887", "fg": 5177 },
+ { "id": "overlay_wielded_winchester_1897", "fg": 5178 },
+ { "id": "overlay_wielded_witness_10", "fg": 5179 },
+ { "id": "overlay_wielded_xd_10", "fg": 5180 },
+ { "id": "overlay_wielded_brazier", "fg": 5208 },
+ { "id": "overlay_wielded_cot", "fg": 5214 },
+ { "id": "overlay_female_wielded_bat_nerf", "fg": 5215 },
+ { "id": "overlay_female_wielded_golf_bag", "fg": 5216 },
+ { "id": "overlay_male_wielded_bat_nerf", "fg": 5217 },
+ { "id": "overlay_male_wielded_golf_bag", "fg": 5218 },
+ { "id": "overlay_female_wielded_radio_car", "fg": 5219 },
+ { "id": "overlay_female_wielded_radio_car_box", "fg": 5220 },
+ { "id": "overlay_female_wielded_radio_car_on", "fg": 5221 },
+ { "id": "overlay_female_wielded_radio_car_wheel", "fg": 5222 },
+ { "id": "overlay_female_wielded_radiocontrol", "fg": 5223 },
+ { "id": "overlay_female_wielded_rc_car_box", "fg": 5224 },
+ { "id": "overlay_male_wielded_radio_car", "fg": 5225 },
+ { "id": "overlay_male_wielded_radio_car_box", "fg": 5226 },
+ { "id": "overlay_male_wielded_radio_car_on", "fg": 5227 },
+ { "id": "overlay_male_wielded_radio_car_wheel", "fg": 5228 },
+ { "id": "overlay_male_wielded_radiocontrol", "fg": 5229 },
+ { "id": "overlay_male_wielded_rc_car_box", "fg": 5230 },
+ { "id": "overlay_wielded_atomic_lamp", "fg": 5231 },
+ { "id": "overlay_wielded_atomic_lamp_off", "fg": 5232 },
+ { "id": "overlay_wielded_l-stick", "fg": 5233 },
+ { "id": "overlay_wielded_l-stick_on", "fg": 5234 },
+ { "id": "overlay_wielded_cattlefodder", "fg": 5238 },
+ { "id": "overlay_wielded_bullet_crossbow", "fg": 5252 },
+ { "id": "overlay_wielded_compcrossbow", "fg": 5253 },
+ { "id": "overlay_wielded_compositecrossbow", "fg": 5254 },
+ { "id": "overlay_wielded_crossbow", "fg": 5255 },
+ { "id": "overlay_wielded_hand_crossbow", "fg": 5256 },
+ { "id": "overlay_wielded_huge_crossbow", "fg": 5257 },
+ { "id": "overlay_wielded_rep_crossbow", "fg": 5258 },
+ { "id": "overlay_wielded_hoboreel", "fg": 5272 },
+ { "id": "overlay_wielded_grenade", "fg": 5277 },
+ { "id": "overlay_wielded_grenade_act", "fg": 5278 },
+ { "id": "overlay_wielded_grenade_emp", "fg": 5279 },
+ { "id": "overlay_wielded_grenade_emp_act", "fg": 5280 },
+ { "id": "overlay_wielded_grenade_inc", "fg": 5281 },
+ { "id": "overlay_wielded_grenade_inc_act", "fg": 5282 },
+ { "id": "overlay_wielded_pipebomb", "fg": 5283 },
+ { "id": "overlay_wielded_pipebomb_act", "fg": 5284 },
+ { "id": "overlay_wielded_scrambler", "fg": 5285 },
+ { "id": "overlay_wielded_scrambler_act", "fg": 5286 },
+ { "id": "overlay_wielded_smokebomb", "fg": 5287 },
+ { "id": "overlay_wielded_smokebomb_act", "fg": 5288 },
+ { "id": "overlay_female_wielded_manhole_cover", "fg": 5326 },
+ { "id": "overlay_male_wielded_manhole_cover", "fg": 5327 },
+ { "id": "overlay_wielded_eyedrops", "fg": 5334 },
+ { "id": "overlay_female_wielded_baseball", "fg": 5344 },
+ { "id": "overlay_female_wielded_basketball", "fg": 5345 },
+ { "id": "overlay_female_wielded_beach_volleyball", "fg": 5346 },
+ { "id": "overlay_female_wielded_mre_beef_box", "fg": 5347 },
+ { "id": "overlay_female_wielded_puck", "fg": 5348 },
+ { "id": "overlay_male_wielded_baseball", "fg": 5349 },
+ { "id": "overlay_male_wielded_basketball", "fg": 5350 },
+ { "id": "overlay_male_wielded_beach_volleyball", "fg": 5351 },
+ { "id": "overlay_male_wielded_mre_beef_box", "fg": 5352 },
+ { "id": "overlay_male_wielded_puck", "fg": 5353 },
+ { "id": "overlay_wielded_PR24-extended", "fg": 5354 },
+ { "id": "overlay_wielded_PR24-retracted", "fg": 5355 },
+ { "id": "overlay_wielded_baton-extended", "fg": 5356 },
+ { "id": "overlay_wielded_baton", "fg": 5357 },
+ { "id": "overlay_wielded_battery_car", "fg": 5358 },
+ { "id": "overlay_wielded_bowling_ball", "fg": 5359 },
+ { "id": "overlay_wielded_cell_phone", "fg": 5360 },
+ { "id": "overlay_wielded_cell_phone_flashlight", "fg": 5361 },
+ { "id": "overlay_wielded_codeine", "fg": 5362 },
+ { "id": "overlay_wielded_flask_hip", "fg": 5363 },
+ { "id": "overlay_wielded_football", "fg": 5364 },
+ { "id": "overlay_wielded_golf_ball", "fg": 5365 },
+ { "id": "overlay_wielded_indoor_volleyball", "fg": 5366 },
+ { "id": "overlay_wielded_misc_repairkit", "fg": 5367 },
+ { "id": "overlay_wielded_portable_game", "fg": 5368 },
+ { "id": "overlay_wielded_two_way_radio", "fg": 5370 },
+ { "id": "overlay_female_wielded_pool_cue", "fg": 5386 },
+ { "id": "overlay_male_wielded_pool_cue", "fg": 5387 },
+ { "id": "overlay_female_wielded_i_staff", "fg": 5395 },
+ { "id": "overlay_female_wielded_q_staff", "fg": 5396 },
+ { "id": "overlay_female_wielded_shock_staff", "fg": 5397 },
+ { "id": "overlay_male_wielded_i_staff", "fg": 5398 },
+ { "id": "overlay_male_wielded_q_staff", "fg": 5399 },
+ { "id": "overlay_male_wielded_shock_staff", "fg": 5400 },
+ { "id": "overlay_female_wielded_cigar", "fg": 5412 },
+ { "id": "overlay_female_wielded_cigar_butt", "fg": 5413 },
+ { "id": "overlay_male_wielded_cigar", "fg": 5421 },
+ { "id": "overlay_male_wielded_cigar_butt", "fg": 5422 },
+ { "id": "overlay_female_wielded_cig", "fg": 5430 },
+ { "id": "overlay_female_wielded_cig_butt", "fg": 5431 },
+ { "id": "overlay_male_wielded_cig", "fg": 5439 },
+ { "id": "overlay_male_wielded_cig_butt", "fg": 5440 },
+ { "id": "overlay_female_wielded_joint", "fg": 5448 },
+ { "id": "overlay_female_wielded_joint_roach", "fg": 5456 },
+ { "id": "overlay_male_wielded_joint", "fg": 5457 },
+ { "id": "overlay_male_wielded_joint_roach", "fg": 5465 },
+ { "id": "overlay_wielded_bokken", "fg": 5515 },
+ { "id": "overlay_wielded_digging_stick", "fg": 5524 },
+ { "id": "overlay_wielded_hoe", "fg": 5527 },
+ { "id": "overlay_female_worn_aep_suit", "fg": 5635 },
+ { "id": "overlay_female_worn_power_armor_basic", "fg": 5636 },
+ { "id": "overlay_female_worn_power_armor_heavy", "fg": 5637 },
+ { "id": "overlay_female_worn_power_armor_helmet_basic", "fg": 5638 },
+ { "id": "overlay_female_worn_power_armor_helmet_heavy", "fg": 5639 },
+ { "id": "overlay_female_worn_power_armor_helmet_light", "fg": 5640 },
+ { "id": "overlay_female_worn_power_armor_light", "fg": 5641 },
+ { "id": "overlay_female_worn_rm13_armor", "fg": 5642 },
+ { "id": "overlay_female_worn_rm13_armor_on", "fg": 5643 },
+ { "id": "overlay_male_worn_aep_suit", "fg": 5644 },
+ { "id": "overlay_male_worn_power_armor_basic", "fg": 5645 },
+ { "id": "overlay_male_worn_power_armor_heavy", "fg": 5646 },
+ { "id": "overlay_male_worn_power_armor_helmet_basic", "fg": 5647 },
+ { "id": "overlay_male_worn_power_armor_helmet_heavy", "fg": 5648 },
+ { "id": "overlay_male_worn_power_armor_helmet_light", "fg": 5649 },
+ { "id": "overlay_male_worn_power_armor_light", "fg": 5650 },
+ { "id": "overlay_male_worn_rm13_armor", "fg": 5651 },
+ { "id": "overlay_male_worn_rm13_armor_on", "fg": 5652 },
+ { "id": "overlay_female_worn_chainmail_suit_faraday", "fg": 5667 },
+ { "id": "overlay_female_worn_pot_helmet", "fg": 5668 },
+ { "id": "overlay_male_worn_chainmail_suit_faraday", "fg": 5669 },
+ { "id": "overlay_male_worn_pot_helmet", "fg": 5670 },
+ { "id": "overlay_female_worn_duffelbag", "fg": 5691 },
+ { "id": "overlay_female_worn_runner_bag", "fg": 5694 },
+ { "id": "overlay_male_worn_duffelbag", "fg": 5695 },
+ { "id": "overlay_male_worn_runner_bag", "fg": 5698 },
+ { "id": "overlay_female_worn_chestrig", "fg": 5718 },
+ { "id": "overlay_female_worn_grenadebandolier", "fg": 5719 },
+ { "id": "overlay_female_worn_mbag", "fg": 5720 },
+ { "id": "overlay_female_worn_slingpack", "fg": 5721 },
+ { "id": "overlay_male_worn_chestrig", "fg": 5722 },
+ { "id": "overlay_male_worn_grenadebandolier", "fg": 5723 },
+ { "id": "overlay_male_worn_mbag", "fg": 5724 },
+ { "id": "overlay_male_worn_slingpack", "fg": 5725 },
+ { "id": "overlay_worn_wolfsuit", "fg": 5746 },
+ { "id": "overlay_female_worn_chestwrap_leather", "fg": 5774 },
+ { "id": "overlay_female_worn_tights", "fg": 5775 },
+ { "id": "overlay_male_worn_chestwrap_leather", "fg": 5776 },
+ { "id": "overlay_male_worn_tights", "fg": 5777 },
+ { "id": "overlay_female_worn_copper_necklace", "fg": 5778 },
+ { "id": "overlay_female_worn_gold_necklace", "fg": 5779 },
+ { "id": "overlay_female_worn_platinum_necklace", "fg": 5780 },
+ { "id": "overlay_female_worn_silver_necklace", "fg": 5781 },
+ { "id": "overlay_male_worn_copper_necklace", "fg": 5782 },
+ { "id": "overlay_male_worn_gold_necklace", "fg": 5783 },
+ { "id": "overlay_male_worn_platinum_necklace", "fg": 5784 },
+ { "id": "overlay_male_worn_silver_necklace", "fg": 5785 },
+ { "id": "overlay_female_worn_nanoskirt", "fg": 5786 },
+ { "id": "overlay_male_worn_nanoskirt", "fg": 5787 },
+ { "id": "overlay_female_worn_motorbike_armor", "fg": 5788 },
+ { "id": "overlay_male_worn_motorbike_armor", "fg": 5789 },
+ { "id": "overlay_female_worn_headscarf", "fg": 5790 },
+ { "id": "overlay_female_worn_long_knit_scarf", "fg": 5791 },
+ { "id": "overlay_female_worn_long_patchwork_scarf", "fg": 5792 },
+ { "id": "overlay_female_worn_marloss_scarf", "fg": 5793 },
+ { "id": "overlay_female_worn_patchwork_scarf", "fg": 5794 },
+ { "id": "overlay_female_worn_scarf_fur", "fg": 5795 },
+ { "id": "overlay_female_worn_scarf_fur_long", "fg": 5796 },
+ { "id": "overlay_male_worn_headscarf", "fg": 5797 },
+ { "id": "overlay_male_worn_long_knit_scarf", "fg": 5798 },
+ { "id": "overlay_male_worn_long_patchwork_scarf", "fg": 5799 },
+ { "id": "overlay_male_worn_marloss_scarf", "fg": 5800 },
+ { "id": "overlay_male_worn_patchwork_scarf", "fg": 5801 },
+ { "id": "overlay_male_worn_scarf_fur", "fg": 5802 },
+ { "id": "overlay_male_worn_scarf_fur_long", "fg": 5803 },
+ { "id": "overlay_male_worn_scarf_long", "fg": 5804 },
+ { "id": "overlay_female_worn_scuba_tank", "fg": 5815 },
+ { "id": "overlay_female_worn_scuba_tank_on", "fg": 5816 },
+ { "id": "overlay_female_worn_small_scuba_tank", "fg": 5817 },
+ { "id": "overlay_female_worn_small_scuba_tank_on", "fg": 5818 },
+ { "id": "overlay_female_worn_wetsuit", "fg": 5819 },
+ { "id": "overlay_female_worn_wetsuit_gloves", "fg": 5820 },
+ { "id": "overlay_female_worn_wetsuit_hood", "fg": 5821 },
+ { "id": "overlay_female_worn_wetsuit_spring", "fg": 5822 },
+ { "id": "overlay_male_worn_scuba_tank", "fg": 5823 },
+ { "id": "overlay_male_worn_scuba_tank_on", "fg": 5824 },
+ { "id": "overlay_male_worn_small_scuba_tank", "fg": 5825 },
+ { "id": "overlay_male_worn_small_scuba_tank_on", "fg": 5826 },
+ { "id": "overlay_male_worn_wetsuit", "fg": 5827 },
+ { "id": "overlay_male_worn_wetsuit_gloves", "fg": 5828 },
+ { "id": "overlay_male_worn_wetsuit_hood", "fg": 5829 },
+ { "id": "overlay_male_worn_wetsuit_spring", "fg": 5830 },
+ { "id": "overlay_worn_wetsuit_booties", "fg": 5831 },
+ { "id": "overlay_female_worn_fitover_sunglasses", "fg": 5859 },
+ { "id": "overlay_male_worn_fitover_sunglasses", "fg": 5860 },
+ { "id": "overlay_female_worn_golf_bag", "fg": 5897 },
+ { "id": "overlay_male_worn_golf_bag", "fg": 5898 },
+ { "id": "overlay_female_worn_hat_chef", "fg": 5935 },
+ { "id": "overlay_male_worn_hat_chef", "fg": 5936 },
+ { "id": "overlay_female_worn_bead_ear", "fg": 5992 },
+ { "id": "overlay_female_worn_copper_ear", "fg": 5993 },
+ { "id": "overlay_female_worn_hairpin", "fg": 5995 },
+ { "id": "overlay_male_worn_bead_ear", "fg": 5998 },
+ { "id": "overlay_male_worn_copper_ear", "fg": 5999 },
+ { "id": "overlay_male_worn_hairpin", "fg": 6001 },
+ { "id": "overlay_female_worn_antarvasa", "fg": 6007 },
+ { "id": "overlay_female_worn_kasaya", "fg": 6008 },
+ { "id": "overlay_female_worn_samghati", "fg": 6009 },
+ { "id": "overlay_female_worn_uttarasanga", "fg": 6010 },
+ { "id": "overlay_male_worn_antarvasa", "fg": 6011 },
+ { "id": "overlay_male_worn_kasaya", "fg": 6012 },
+ { "id": "overlay_male_worn_samghati", "fg": 6013 },
+ { "id": "overlay_male_worn_uttarasanga", "fg": 6014 },
+ { "id": "overlay_female_worn_tourniquet_lower", "fg": 6057 },
+ { "id": "overlay_female_worn_tourniquet_upper", "fg": 6058 },
+ { "id": "overlay_female_worn_wristwatch", "fg": 6059 },
+ { "id": "overlay_male_worn_tourniquet_lower", "fg": 6060 },
+ { "id": "overlay_male_worn_tourniquet_upper", "fg": 6061 },
+ { "id": "overlay_male_worn_wristwatch", "fg": 6062 },
+ { "id": "overlay_worn_purse", "fg": 6063 },
+ { "id": "overlay_worn_rad_badge", "fg": 6064 },
+ { "id": "overlay_female_worn_survivor_goggles", "fg": 6136 },
+ { "id": "overlay_male_worn_survivor_goggles", "fg": 6137 },
+ { "id": "overlay_female_worn_survivor_duffel_bag", "fg": 6196 },
+ { "id": "overlay_female_worn_survivor_pack", "fg": 6197 },
+ { "id": "overlay_female_worn_survivor_rucksack", "fg": 6198 },
+ { "id": "overlay_female_worn_survivor_runner_pack", "fg": 6199 },
+ { "id": "overlay_male_worn_survivor_duffel_bag", "fg": 6200 },
+ { "id": "overlay_male_worn_survivor_pack", "fg": 6201 },
+ { "id": "overlay_male_worn_survivor_rucksack", "fg": 6202 },
+ { "id": "overlay_male_worn_survivor_runner_pack", "fg": 6203 }
]
},
{
- "file": "centered.png",
- "//": "range 6224 to 6239",
- "sprite_width": 64,
- "sprite_height": 64,
- "sprite_offset_x": -16,
+ "file": "human_body_plus.png",
+ "//": "range 6288 to 6799",
+ "sprite_width": 32,
+ "sprite_height": 48,
+ "sprite_offset_x": 0,
"sprite_offset_y": -16,
"tiles": [
- { "id": "vp_wing_mirror", "fg": [ 6233, 6235, 6234, 6232 ], "rotates": true },
- { "id": "vp_wing_mirror_left", "fg": [ 6225, 6227, 6226, 6224 ], "rotates": true },
- { "id": "vp_wing_mirror_right", "fg": [ 6229, 6231, 6230, 6228 ], "rotates": true }
- ]
- },
- {
- "file": "large.png",
- "//": "range 6240 to 6399",
- "sprite_width": 64,
- "sprite_height": 64,
- "sprite_offset_x": -16,
- "sprite_offset_y": -32,
- "tiles": [
- { "id": "f_CTscan", "fg": 6241 },
- { "id": "f_MRI", "fg": 6242 },
- { "id": "f_rotary_clothesline", "fg": 6243 },
- { "id": "mon_troll", "fg": 6245, "bg": 6383 },
- { "id": "mon_albino_penguin", "fg": 6246, "bg": 6384 },
- { "id": "mon_gelatin", "fg": 6247, "bg": 6384 },
- { "id": "mon_smoker_brute", "fg": 6248, "bg": 6384 },
+ { "id": "npc_female", "fg": 6401, "bg": 6302 },
+ { "id": "npc_male", "fg": 6402, "bg": 6302 },
+ { "id": "player_female", "fg": 6401, "bg": 6302 },
+ { "id": "player_male", "fg": 6402, "bg": 6302 },
+ { "id": "mon_zombie_phase_skulker", "fg": 6289, "bg": 6302 },
+ { "id": "mon_zombie_phase_shrike", "fg": 6288, "bg": 6302 },
+ { "id": "mon_broken_cyborg", "fg": 6290, "bg": 6302 },
+ { "id": "mon_prototype_cyborg", "fg": 6291, "bg": 6302 },
+ { "id": "mon_boomer_fungus", "fg": 6293, "bg": 6302 },
+ { "id": "mon_zombie_soldier_acid_1", "fg": 6294, "bg": 6302 },
{
- "id": "mon_exodii_quad",
- "fg": [
- { "weight": 15, "sprite": 6256 },
- { "weight": 10, "sprite": 6257 },
- { "weight": 15, "sprite": 6258 },
- { "weight": 15, "sprite": 6259 }
- ],
- "bg": 6383
+ "id": "mon_zombie_reenactor",
+ "fg": [ { "weight": 2, "sprite": 6300 }, { "weight": 2, "sprite": 6299 }, { "weight": 1, "sprite": 6301 } ],
+ "bg": 6302
},
+ { "id": "mon_zombie_prisoner_tough", "fg": 6298, "bg": 6302 },
+ { "id": "mon_zombie_prisoner_fat", "fg": 6297, "bg": 6302 },
+ { "id": "mon_zombie_prisoner_brute", "fg": 6296, "bg": 6302 },
{
- "id": "mon_exodii_turret",
- "fg": [
- { "weight": 15, "sprite": 6260 },
- { "weight": 5, "sprite": 6261 },
- { "weight": 15, "sprite": 6262 },
- { "weight": 15, "sprite": 6263 }
- ],
- "bg": 6384
- },
- { "id": "mon_fungal_blossom", "fg": 6264, "bg": 6384 },
- { "id": "mon_gas_zombie", "fg": 6265, "bg": 6385 },
- { "id": "mon_giant_crayfish", "fg": 6266, "bg": 6385 },
- { "id": "mon_slug_giant", "fg": 6267, "bg": 6383 },
- { "id": "mon_spider_web", "fg": 6269, "bg": 6385 },
- { "id": "corpse_mon_spider_web", "fg": 6268 },
- { "id": "mon_dog_zombie_hulk", "fg": 6270, "bg": 6384 },
- { "id": "mon_zhark", "fg": 6271 },
- { "id": "mon_zombie_kevlar_1", "fg": 6272, "bg": 6384 },
- { "id": "mon_ant_soldier", "fg": 6280, "bg": 6383 },
- { "id": "mon_ant_acid_soldier", "fg": 6278, "bg": 6383 },
- { "id": "corpse_mon_ant_soldier", "fg": 6276 },
- { "id": "corpse_mon_ant_acid_soldier", "fg": 6274 },
- { "id": "mon_ant_queen", "fg": 6279, "bg": 6383 },
- { "id": "mon_ant_acid_queen", "fg": 6277, "bg": 6383 },
- { "id": "corpse_mon_ant_queen", "fg": 6275 },
- { "id": "corpse_mon_ant_acid_queen", "fg": 6273 },
- { "id": "mon_bear", "fg": 6281, "bg": 6384 },
- { "id": "mon_blob_large", "fg": 6282, "bg": 6383 },
- { "id": "mon_boomer", "fg": 6283, "bg": 6385 },
- { "id": "mon_boomer_huge", "fg": 6284, "bg": 6384 },
- {
- "id": "mon_cow",
- "fg": [
- { "weight": 1, "sprite": 6285 },
- { "weight": 12, "sprite": 6286 },
- { "weight": 6, "sprite": 6287 },
- { "weight": 6, "sprite": 6288 },
- { "weight": 12, "sprite": 6289 }
- ],
- "bg": 6384
+ "id": [ "mon_irradiated_wanderer_1", "mon_irradiated_wanderer_2", "mon_irradiated_wanderer_3", "mon_irradiated_wanderer_4" ],
+ "fg": 6295,
+ "bg": 6302
},
- { "id": "mon_zow", "fg": 6290, "bg": 6384 },
{
- "id": "mon_crawler",
- "fg": [ { "weight": 1, "sprite": 6291 }, { "weight": 1, "sprite": 6292 }, { "weight": 1, "sprite": 6293 } ],
- "bg": 6384
+ "id": "mon_feral_human_crowbar",
+ "fg": [ { "weight": 100, "sprite": 6305 }, { "weight": 50, "sprite": 6306 } ],
+ "bg": 6302
},
- { "id": "mon_dark_wyrm", "fg": 6294, "bg": 6383 },
- { "id": "mon_devourer", "fg": 6295, "bg": 6384 },
- { "id": "mon_dog_zombie_brute", "fg": 6296, "bg": 6384 },
{
- "id": "mon_flying_polyp",
- "fg": [ { "weight": 1, "sprite": 6297 }, { "weight": 1, "sprite": 6298 }, { "weight": 1, "sprite": 6299 } ]
+ "id": "mon_feral_human_pipe",
+ "fg": [ { "weight": 100, "sprite": 6309 }, { "weight": 50, "sprite": 6310 } ],
+ "bg": 6302
},
- { "id": "mon_gator", "fg": 6300, "bg": 6383 },
- { "id": "mon_horse", "fg": [ { "weight": 1, "sprite": 6301 }, { "weight": 1, "sprite": 6302 } ], "bg": 6384 },
- { "id": "mon_zombie_horse", "fg": 6303, "bg": 6384 },
- { "id": "mon_human_snail", "fg": 6304, "bg": 6383 },
- { "id": "mon_jabberwock", "fg": 6305, "bg": 6383 },
{
- "id": "mon_lady_bug_giant",
- "fg": [
- { "weight": 90, "sprite": 6306 },
- { "weight": 60, "sprite": 6307 },
- { "weight": 50, "sprite": 6308 },
- { "weight": 20, "sprite": 6309 },
- { "weight": 1, "sprite": 6310 }
- ],
- "bg": 6384
- },
- { "id": "mon_mech_lifter", "fg": 6311 },
- { "id": "rid_mon_mech_lifter", "fg": 6312 },
- { "id": "mon_mi_go", "fg": 6313, "bg": 6384 },
- { "id": "mon_mi_go_slaver", "fg": 6317, "bg": 6384 },
- { "id": "mon_mi_go_surgeon", "fg": 6318, "bg": 6384 },
- { "id": "mon_mi_go_scout", "fg": 6316, "bg": 6384 },
- { "id": "mon_mi_go_guard", "fg": 6314, "bg": 6383 },
- { "id": "mon_mi_go_myrmidon", "fg": 6315, "bg": 6383 },
- { "id": "mon_moose", "fg": [ { "weight": 2, "sprite": 6319 }, { "weight": 2, "sprite": 6320 } ], "bg": 6383 },
- { "id": "mon_sheep", "fg": 6321, "bg": 6385 },
- { "id": "mon_wasp", "fg": 6322, "bg": 6384 },
- { "id": "mon_darkman", "fg": 6323 },
- { "id": "mon_zombear", "fg": 6324, "bg": 6384 },
- { "id": "mon_zombear_skeleton", "fg": 6325, "bg": 6384 },
- { "id": "mon_zombie_biter", "fg": 6326, "bg": 6384 },
+ "id": "mon_feral_human_axe",
+ "fg": [ { "weight": 100, "sprite": 6303 }, { "weight": 50, "sprite": 6304 } ],
+ "bg": 6302
+ },
+ { "id": "mon_feral_labsecurity_9mm", "fg": 6307, "bg": 6302 },
+ { "id": "mon_feral_labsecurity_flashlight", "fg": 6308, "bg": 6302 },
+ { "id": "mon_feral_scientist_scalpel", "fg": 6311, "bg": 6302 },
+ { "id": "mon_zombie_grabber", "fg": 6312, "bg": 6302 },
+ { "id": "mon_zombie_kevlar_1", "fg": 6313, "bg": 6302 },
+ { "id": "mon_bee", "fg": 6314, "bg": 6302 },
+ { "id": "mon_blank", "fg": 6315, "bg": 6302 },
+ { "id": "mon_boomer", "fg": 6316, "bg": 6302 },
+ { "id": "mon_charred_nightmare", "fg": 6317, "bg": 6302 },
+ { "id": "mon_cougar", "fg": 6318, "bg": 6302 },
+ { "id": "mon_dermatik", "fg": 6319, "bg": 6302 },
+ { "id": "mon_dragonfly_giant", "fg": 6320, "bg": 6302 },
+ { "id": "mon_dragonfly_mega", "fg": 6321, "bg": 6302 },
+ { "id": "mon_fly", "fg": 6322, "bg": 6302 },
+ { "id": "mon_gozu", "fg": 6323, "bg": 6302 },
{
- "id": "mon_zombie_brute",
- "fg": [
- { "weight": 100, "sprite": 6327 },
- { "weight": 100, "sprite": 6328 },
- { "weight": 50, "sprite": 6329 },
- { "weight": 50, "sprite": 6330 }
- ],
- "bg": 6384
+ "id": "mon_hunting_horror",
+ "fg": [ { "weight": 1, "sprite": 6324 }, { "weight": 1, "sprite": 6325 }, { "weight": 1, "sprite": 6326 } ],
+ "bg": 6302
+ },
+ { "id": "mon_mutant_experimental", "fg": 6327, "bg": 6302 },
+ { "id": "mon_riotbot", "fg": 6328, "bg": 6302 },
+ { "id": "mon_skeleton", "fg": 6329, "bg": 6302 },
+ { "id": "mon_skeleton_brute", "fg": 6330, "bg": 6302 },
+ { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 2445 },
+ { "id": "mon_zombie_acidic", "fg": 6331, "bg": 6302 },
+ { "id": "mon_zombie_corrosive", "fg": 6332, "bg": 6302 },
+ { "id": "mon_zombie_spitter", "fg": 6333, "bg": 6302 },
+ { "id": "mon_zombie_bio_op", "fg": 6334, "bg": 6302 },
+ { "id": "mon_zombie_bio_op2", "fg": 6335, "bg": 6302 },
+ { "id": "mon_zombie_ears", "fg": 6336, "bg": 6302 },
+ {
+ "id": "mon_zombie_fat",
+ "fg": [ { "weight": 1, "sprite": 6337 }, { "weight": 1, "sprite": 6338 } ],
+ "bg": 6302
},
- { "id": "mon_zombie_brute_winged", "fg": 6331, "bg": 6383 },
+ { "id": "mon_zombie_fiend", "fg": 6339, "bg": 6302 },
{
- "id": "mon_zombie_electric",
- "fg": [ { "weight": 1, "sprite": 6333 }, { "weight": 1, "sprite": 6332 } ],
- "bg": 6385
+ "id": "mon_zombie_gasbag",
+ "fg": [ { "weight": 1, "sprite": 6340 }, { "weight": 1, "sprite": 6341 } ],
+ "bg": 6302
},
{
- "id": "mon_zombie_nullfield",
- "fg": [ { "weight": 1, "sprite": 6335 }, { "weight": 1, "sprite": 6334 } ],
- "bg": 6385
+ "id": "mon_zombie_grappler",
+ "fg": [ { "weight": 1, "sprite": 6342 }, { "weight": 1, "sprite": 6343 } ],
+ "bg": 6302
},
{
- "id": "mon_zombie_gasbag",
- "fg": [ { "weight": 1, "sprite": 6336 }, { "weight": 1, "sprite": 6337 } ],
- "bg": 6385
+ "id": "mon_zombie_brainless",
+ "fg": [ { "weight": 100, "sprite": 6345 }, { "weight": 100, "sprite": 6346 } ],
+ "bg": 6302
},
+ { "id": "mon_zombie_hunter", "fg": 6347, "bg": 6302 },
+ { "id": "mon_zombie_predator", "fg": 6348, "bg": 6302 },
{
- "id": "mon_zombie_grappler",
- "fg": [ { "weight": 1, "sprite": 6338 }, { "weight": 1, "sprite": 6339 } ],
- "bg": 6385
- },
- { "id": "mon_zombie_runner", "fg": 6340, "bg": 6385 },
- { "id": "mon_zombie_shady", "fg": 6341, "bg": 6385 },
- { "id": "mon_zombie_smoker", "fg": 6342, "bg": 6385 },
- { "id": "mon_zombie_soldier_acid_2", "fg": 6343, "bg": 6384 },
- { "id": "mon_zoose", "fg": 6345, "bg": 6383 },
- { "id": "mon_nursebot_defective", "fg": 6347, "bg": 6385 },
- { "id": "mon_nursebot", "fg": 6346, "bg": 6385 },
- { "id": "mon_zombie_brute_shocker", "fg": 6348, "bg": 6384 },
- { "id": "mon_skeleton_electric", "fg": 6349, "bg": 6385 },
- { "id": "mon_sludge_crawler", "fg": 6350, "bg": 6383 },
- { "id": "mon_spider_jumping_giant", "fg": 6353, "bg": 6385 },
- { "id": "corpse_mon_spider_jumping_giant", "fg": 6351 },
- { "id": "mon_spider_wolf_giant", "fg": 6354, "bg": 6385 },
- { "id": "corpse_mon_spider_wolf_giant", "fg": 6352 },
- { "id": "mon_dog_thing", "fg": 6355, "bg": 6384 },
- { "id": "mon_headless_dog_thing", "fg": 6356, "bg": 6384 },
- { "id": "mon_thing", "fg": 6357, "bg": 6383 },
- { "id": "mon_triffid_queen", "fg": 6358, "bg": 6383 },
- { "id": "mon_vinebeast", "fg": 6359, "bg": 6383 },
- { "id": "mon_zombie_brute_ninja", "fg": 6360, "bg": 6384 },
- { "id": "mon_zombie_brute_grappler", "fg": 6361, "bg": 6384 },
+ "id": "mon_zombie_mancroc",
+ "fg": [ { "weight": 100, "sprite": 6349 }, { "weight": 100, "sprite": 6350 } ],
+ "bg": 6302
+ },
+ { "id": "mon_zombie_runner", "fg": 6351, "bg": 6302 },
+ { "id": "mon_zombie_rust", "fg": 6352, "bg": 6302 },
+ { "id": "mon_zombie_scorched", "fg": 6353, "bg": 6302 },
+ { "id": "mon_zombie_shady", "fg": 6354, "bg": 6302 },
+ { "id": "mon_zombie_skull", "fg": 6355, "bg": 6302 },
{
- "id": [ "forest_thick", "special_forest_thick" ],
- "fg": [ { "weight": 4, "sprite": 6369 }, { "weight": 1, "sprite": 6370 } ],
- "bg": 6368,
- "rotates": false
+ "id": "mon_zombie_soldier",
+ "fg": [ { "weight": 100, "sprite": 6359 }, { "weight": 100, "sprite": 6360 } ],
+ "bg": 6302
},
- { "id": "bridgehead_ground", "fg": [ 6374, 6373, 6375, 6376 ], "bg": 6382, "rotates": true },
- { "id": "bridge", "fg": [ 6372, 6371, 6372, 6371 ], "bg": 6381, "rotates": true },
- { "id": "bridgehead_ramp", "fg": [ 6378, 6377, 6379, 6380 ], "rotates": true },
- { "id": "bridge_road", "fg": [ 6372, 6371, 6372, 6371 ], "rotates": true },
- { "id": "t_tree_young", "fg": 6391, "bg": 6388 },
- { "id": "t_tree_young_season_summer", "fg": 6390, "bg": 6389, "rotates": false },
+ { "id": "mon_zombie_military_pilot", "fg": 6358, "bg": 6302 },
+ { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 6356 },
+ { "id": "mon_zombie_static", "fg": 6361, "bg": 6302 },
{
- "id": "t_tree_young_season_autumn",
- "fg": [ { "weight": 100, "sprite": 6392 }, { "weight": 100, "sprite": 6393 } ],
- "bg": 6387,
- "rotates": false
+ "id": [ "mon_zombie_swimmer_base", "mon_zombie_swimmer" ],
+ "fg": [ { "weight": 1000, "sprite": 6363 }, { "weight": 1, "sprite": 6362 } ],
+ "bg": 6302
},
- { "id": "t_tree_young_season_winter", "fg": 6394, "bg": 6386, "rotates": false },
- { "id": "corpse_mon_zombie_spitter", "fg": 6240 },
- { "id": "f_magiclysm_translocator_gate", "fg": 6244 },
- { "id": "mon_zombie_gasbag_crawler", "fg": 6249 },
- { "id": "mon_zombie_gasbag_immobile", "fg": 6250 },
- { "id": "mon_zombie_gasbag_impaler", "fg": 6251 },
- { "id": "mon_zombie_giant_heart", "fg": 6252 },
- { "id": "mon_zombie_hanging_innards", "fg": 6253 },
- { "id": "mon_zombie_living_wall", "fg": 6254 },
- { "id": "mon_zombie_scissorlimbs", "fg": 6255 },
- { "id": "mon_zombie_soldier_blackops_2", "fg": 6344 },
- { "id": "overlay_wielded_as50", "fg": 6362 },
- { "id": "overlay_wielded_bfg50", "fg": 6363 },
- { "id": "overlay_wielded_m107a1", "fg": 6364 },
- { "id": "overlay_wielded_m134", "fg": 6365 },
- { "id": "overlay_wielded_m2browning", "fg": 6366 },
- { "id": "overlay_wielded_mark19", "fg": 6367 }
- ]
- },
- {
- "file": "large_ridden.png",
- "//": "range 6400 to 6415",
- "sprite_width": 64,
- "sprite_height": 64,
- "sprite_offset_x": -16,
- "sprite_offset_y": -27,
- "tiles": [
- { "id": "rid_mon_horse", "fg": [ { "weight": 1, "sprite": 6401 }, { "weight": 1, "sprite": 6402 } ] },
- { "id": "rid_mon_cow", "fg": 6400 }
- ]
- },
- {
- "file": "huge.png",
- "//": "range 6416 to 6447",
- "sprite_width": 64,
- "sprite_height": 96,
- "sprite_offset_x": -16,
- "sprite_offset_y": -64,
- "tiles": [
- { "id": "mon_fungaloid_queen", "fg": 6416, "bg": 6432 },
- { "id": "mon_fungaloid_seeder", "fg": 6417, "bg": 6432 },
- { "id": "mon_fungaloid_tower", "fg": 6418, "bg": 6432 },
- { "id": "mon_zombie_kevlar_2", "fg": 6421 },
- { "id": "mon_zombie_hulk", "fg": 6420, "bg": 6432 },
- { "id": "mon_skeleton_hulk", "fg": 6419 },
- { "id": "mon_amigara_horror", "fg": 6422 },
- { "id": "mon_blob_brain", "fg": 6423, "bg": 6432 },
- { "id": "mon_flaming_eye", "fg": 6424 },
- { "id": "mon_nakedmolerat_giant", "fg": 6428, "bg": 6432 },
- { "id": "mon_shoggoth", "fg": 6429, "bg": 6432 },
- { "id": "mon_triffid_heart", "fg": 6430 },
- { "id": "mon_yugg", "fg": 6431, "bg": 6432 },
- { "id": "mon_ frog_mother", "fg": 6425 },
- { "id": "mon_mutant_evolved", "fg": 6426 },
- { "id": "corpse_mon_nakedmolerat_giant", "fg": 6427 }
- ]
- },
- {
- "file": "giant.png",
- "//": "range 6448 to 6495",
- "sprite_width": 96,
- "sprite_height": 96,
- "sprite_offset_x": -32,
- "sprite_offset_y": -64,
- "tiles": [
- { "id": "t_tree", "fg": 6458, "bg": 6451 },
- { "id": "t_tree_season_summer", "fg": 6453, "bg": 6452 },
{
- "id": "t_tree_season_autumn",
+ "id": "mon_zombie",
"fg": [
- { "weight": 100, "sprite": 6454 },
- { "weight": 100, "sprite": 6455 },
- { "weight": 100, "sprite": 6456 },
- { "weight": 100, "sprite": 6457 }
+ { "weight": 100, "sprite": 6370 },
+ { "weight": 150, "sprite": 6371 },
+ { "weight": 100, "sprite": 6372 },
+ { "weight": 100, "sprite": 6373 },
+ { "weight": 150, "sprite": 6374 }
],
- "bg": 6450
+ "bg": 6302
},
- { "id": "t_tree_season_winter", "fg": 6482, "bg": 6449 },
- { "id": "t_tree_apple", "fg": 6459, "bg": 6451 },
- { "id": "t_tree_apple_season_summer", "fg": 6459, "bg": 6452 },
- { "id": "t_tree_apple_season_winter", "fg": 6464, "bg": 6449 },
+ { "id": "mon_zombie_hazmat", "fg": 6377, "bg": 6302 },
+ { "id": "mon_zombie_fireman", "fg": 6376, "bg": 6302 },
{
- "id": "t_tree_apple_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6460 }, { "weight": 1, "sprite": 6461 } ],
- "bg": 6450
+ "id": "mon_zombie_scientist",
+ "fg": [ { "weight": 1, "sprite": 6379 }, { "weight": 1, "sprite": 6380 } ],
+ "bg": 6302
},
+ { "id": "mon_zombie_cop", "fg": 6375, "bg": 6302 },
+ { "id": "mon_zombie_labsecurity", "fg": 6378, "bg": 6302 },
{
- "id": "t_tree_apple_harvested",
- "fg": [ { "weight": 1, "sprite": 6462 }, { "weight": 1, "sprite": 6463 } ],
- "bg": 6450
+ "id": "mon_zombie_tough",
+ "fg": [ { "weight": 1, "sprite": 6383 }, { "weight": 1, "sprite": 6384 } ],
+ "bg": 6302
},
- { "id": "t_tree_beech", "fg": 6466, "bg": 6451 },
- { "id": "t_tree_beech_season_summer", "fg": 6467, "bg": 6452 },
- { "id": "t_tree_beech_season_autumn", "fg": 6465, "bg": 6450 },
- { "id": "t_tree_beech_season_winter", "fg": 6468, "bg": 6449 },
- { "id": "t_tree_birch", "fg": 6469, "bg": 6451 },
- { "id": "t_tree_birch_season_summer", "fg": 6469, "bg": 6452 },
- { "id": "t_tree_birch_season_winter", "fg": 6472, "bg": 6449 },
{
- "id": "t_tree_birch_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6470 }, { "weight": 1, "sprite": 6471 } ],
- "bg": 6450
+ "id": "mon_zombie_technician",
+ "fg": [ { "weight": 1, "sprite": 6381 }, { "weight": 1, "sprite": 6382 } ],
+ "bg": 6302
},
- { "id": "t_tree_cherry", "fg": 6473, "bg": 6451 },
- { "id": "t_tree_cherry_season_summer", "fg": 6477, "bg": 6452 },
- { "id": "t_tree_cherry_harvested", "fg": 6476, "bg": 6452 },
- { "id": "t_tree_cherry_season_winter", "fg": 6478, "bg": 6449 },
{
- "id": "t_tree_cherry_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6474 }, { "weight": 1, "sprite": 6475 } ],
- "bg": 6450
+ "id": [
+ "corpse_mon_zombie",
+ "corpse_mon_zombie_grappler",
+ "corpse_mon_zombie_biter",
+ "corpse_mon_zombie_hunter",
+ "corpse_mon_zombie_predator",
+ "corpse_mon_zombie_thorny",
+ "corpse_mon_zombie_smoker",
+ "corpse_mon_zombie_shady",
+ "corpse_mon_zombie_acidic",
+ "corpse_mon_zombie_fat",
+ "corpse_mon_zombie_corrosive",
+ "corpse_mon_zombie_screecher",
+ "corpse_mon_zombie_runner",
+ "corpse_mon_zombie_child",
+ "corpse_mon_zombie_electric",
+ "corpse_mon_zombie_fungus",
+ "corpse_mon_zombie_child_fungus",
+ "corpse_mon_zombie_swimmer",
+ "corpse_mon_zombie_mancroc",
+ "corpse_mon_zombie_skull",
+ "corpse_mon_zombie_survivor",
+ "corpse_mon_zombie_soldier_acid_1",
+ "corpse_mon_zombie_soldier_acid_2",
+ "corpse_mon_zombie_shriekling",
+ "corpse_mon_zombie_ears",
+ "corpse_mon_zombie_nullfield",
+ "corpse_mon_zombie_waif",
+ "corpse_mon_zombie_sproglodyte",
+ "corpse_mon_zombie_creepy",
+ "corpse_mon_zombie_anklebiter",
+ "corpse_mon_zombie_bio_op",
+ "corpse_mon_zombie_prisoner",
+ "corpse_mon_zombie_winged"
+ ],
+ "fg": 6364
},
- { "id": "t_tree_cottonwood_season_spring", "fg": 6480, "bg": 6451 },
- { "id": "t_tree_cottonwood_season_summer", "fg": 6481, "bg": 6452 },
- { "id": "t_tree_cottonwood_season_autumn", "fg": 6479, "bg": 6450 },
- { "id": "t_tree_cottonwood_season_winter", "fg": 6482, "bg": 6449 },
+ { "id": "corpse_mon_zombie_scientist", "fg": 6366 },
+ { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 6367 },
+ { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 6365 },
{
- "id": "t_tree_dead",
- "fg": [ { "weight": 100, "sprite": 6482 }, { "weight": 100, "sprite": 7860 } ],
- "bg": 6451
- },
+ "id": [
+ "corpse_mon_zombie_tough",
+ "corpse_mon_zombie_brute",
+ "corpse_mon_zombie_hulk",
+ "corpse_mon_zombie_brute_grappler",
+ "corpse_mon_zombie_brute_ninja",
+ "corpse_mon_zombie_kevlar_2",
+ "corpse_mon_zombie_kevlar_1",
+ "corpse_mon_zombie_armored",
+ "corpse_mon_zombie_brute_shocker",
+ "corpse_mon_zombie_brute_winged",
+ "corpse_mon_zombie_soldier_blackops_2",
+ "corpse_mon_zombie_soldier_blackops_1"
+ ],
+ "fg": 6368
+ },
+ { "id": "mon_zombie_winged", "fg": 6385, "bg": 6302 },
+ { "id": "mon_zougar", "fg": 6386, "bg": 6302 },
+ { "id": "mon_copbot", "fg": 6387, "bg": 6302 },
+ { "id": "mon_zombie_screecher", "fg": 6388, "bg": 6302 },
+ { "id": "mon_zombie_shrieker", "fg": 6389, "bg": 6302 },
+ { "id": "mon_zombie_survivor", "fg": 6390, "bg": 6302 },
+ { "id": "mon_zombie_swat", "fg": 6391, "bg": 6302 },
+ { "id": "mon_zombie_thorny", "fg": 6392, "bg": 6302 },
+ { "id": "mon_zombie_flamer", "fg": 6393, "bg": 6302 },
{
- "id": "t_tree_dead_season_summer",
- "fg": [ { "weight": 100, "sprite": 6482 }, { "weight": 100, "sprite": 7860 } ],
- "bg": 6452
- },
+ "id": "mon_zombie_prisoner",
+ "fg": [ { "weight": 1, "sprite": 6394 }, { "weight": 1, "sprite": 6395 }, { "weight": 1, "sprite": 6396 } ],
+ "bg": 6302
+ },
+ { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 6401 },
+ { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 6402 },
+ { "id": "overlay_female_wielded_teleumbrella", "fg": 6404 },
+ { "id": "overlay_male_wielded_teleumbrella", "fg": 6405 },
+ { "id": "overlay_female_wielded_umbrella", "fg": 6404 },
+ { "id": "overlay_male_wielded_umbrella", "fg": 6405 },
+ { "id": "overlay_male_worn_welding_mask_raised", "fg": 6409 },
+ { "id": "overlay_female_worn_mossberg_500", "fg": 6410 },
+ { "id": "overlay_male_worn_mossberg_500", "fg": 6411 },
{
- "id": "t_tree_dead_season_autumn",
- "fg": [ { "weight": 100, "sprite": 6482 }, { "weight": 100, "sprite": 7860 } ],
- "bg": 6450
+ "id": "vp_board_ne",
+ "fg": [ 6419, 6422, 6421, 6420 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6419, 6422, 6421, 6420 ] } ]
},
{
- "id": "t_tree_dead_season_winter",
- "fg": [ { "weight": 100, "sprite": 6482 }, { "weight": 100, "sprite": 7860 } ],
- "bg": 6449
- },
- { "id": "t_tree_elm_season_spring", "fg": 6484, "bg": 6451 },
- { "id": "t_tree_elm_season_summer", "fg": 6485, "bg": 6452 },
- { "id": "t_tree_elm_season_autumn", "fg": 6483, "bg": 6450 },
- { "id": "t_tree_elm_season_winter", "fg": 6486, "bg": 6449 },
- { "id": "t_tree_maple", "fg": 6488, "bg": 6451 },
- { "id": "t_tree_maple_season_summer", "fg": 6489, "bg": 6452 },
- { "id": "t_tree_maple_season_autumn", "fg": 6487, "bg": 6450 },
- { "id": "t_tree_maple_season_winter", "fg": 6490, "bg": 6449 },
- { "id": "t_tree_peach_season_spring", "fg": 6491, "bg": 6451 },
- { "id": "t_tree_peach_season_summer", "fg": 6494, "bg": 6452 },
- { "id": "t_tree_peach_harvested", "fg": 6491, "bg": 6452 },
- { "id": "t_tree_peach_season_winter", "fg": 6495, "bg": 6449 },
- {
- "id": "t_tree_peach_season_autumn",
- "fg": [ { "weight": 1, "sprite": 6492 }, { "weight": 1, "sprite": 6493 } ],
- "bg": 6450
+ "id": "vp_board_nw",
+ "fg": [ 6423, 6426, 6425, 6424 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6423, 6426, 6425, 6424 ] } ]
},
- { "id": "mon_graboid", "fg": 6448 }
- ]
- },
- {
- "file": "incomplete.png",
- "//": "range 6496 to 7295",
- "tiles": [
- { "id": "unknown", "fg": 6496 },
{
- "id": "fd_blood",
- "fg": 6528,
+ "id": "vp_board_se",
+ "fg": [ 6427, 6429, 6423, 6428 ],
"multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 6497 },
- { "id": "corner", "fg": [ 6499, 6501, 6500, 6498 ] },
- { "id": "t_connection", "fg": [ 6525, 6527, 6526, 6524 ] },
- { "id": "edge", "fg": [ 6503, 6502 ] },
- { "id": "end_piece", "fg": [ 6505, 6507, 6506, 6504 ] },
- { "id": "unconnected", "fg": [ 6528, 6528 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6427, 6429, 6423, 6428 ] } ]
},
{
- "id": [ "fd_blood_insect", "fd_blood_invertebrate" ],
- "fg": 6523,
+ "id": "vp_board_sw",
+ "fg": [ 6430, 6432, 6419, 6431 ],
"multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 6508 },
- { "id": "corner", "fg": [ 6510, 6512, 6511, 6509 ] },
- { "id": "t_connection", "fg": [ 6520, 6522, 6521, 6519 ] },
- { "id": "edge", "fg": [ 6514, 6513 ] },
- { "id": "end_piece", "fg": [ 6516, 6518, 6517, 6515 ] },
- { "id": "unconnected", "fg": [ 6523, 6523 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6430, 6432, 6419, 6431 ] } ]
},
- { "id": "fd_electricity", "fg": [ { "weight": 100, "sprite": 6529 }, { "weight": 100, "sprite": 6530 } ] },
{
- "id": "fd_web",
- "fg": [
- { "weight": 100, "sprite": 6531 },
- { "weight": 100, "sprite": 6532 },
- { "weight": 25, "sprite": 6533 },
- { "weight": 25, "sprite": 6534 }
- ]
- },
- { "id": "fd_smoke", "fg": 6537 },
- { "id": "fd_fungal_haze", "fg": 6536 },
- { "id": "fd_nuke_gas", "fg": 6535 },
- { "id": "fd_spotlight", "fg": 6538 },
- { "id": "f_makeshift_bed", "fg": 6541 },
- { "id": "f_straw_bed", "fg": 6542 },
- { "id": "f_bed_frame", "fg": 6539 },
- { "id": "f_camp_chair", "fg": 6546 },
- { "id": "f_lane", "fg": 6547 },
- { "id": "f_piano", "fg": 6548 },
- { "id": "f_pinball_machine", "fg": 6549 },
- { "id": "f_seat_airplane", "fg": 6550 },
- {
- "id": "f_sink",
+ "id": "vp_board_vertical_left",
+ "fg": [ 6416, 6433, 6418, 6417 ],
"multitile": true,
- "fg": 6566,
- "additional_tiles": [
- { "id": "center", "fg": 6551 },
- { "id": "corner", "fg": [ 6553, 6555, 6554, 6552 ] },
- { "id": "t_connection", "fg": [ 6563, 6565, 6564, 6562 ] },
- { "id": "edge", "fg": [ 6557, 6556 ] },
- { "id": "end_piece", "fg": [ 6559, 6561, 6560, 6558 ] },
- { "id": "unconnected", "fg": 6566 }
- ]
- },
- { "id": "f_solar_unit", "fg": 6567 },
- { "id": "f_speaker_cabinet", "fg": 6568 },
- { "id": "f_water_mill", "fg": 6569 },
- { "id": "water_mill", "fg": 6570 },
- { "id": "f_water_purifier", "fg": 6571 },
- { "id": "f_wood_keg", "fg": 6709 },
- { "id": "30gal_barrel", "fg": 6572 },
- { "id": "30gal_drum", "fg": 6573 },
- { "id": "alarmclock", "fg": 6574 },
- { "id": "clock", "fg": 6574 },
- { "id": "anvil", "fg": 6578 },
- { "id": [ "autoclave", "vh_autoclave" ], "fg": 6579 },
- { "id": "bag_canvas_small", "fg": 6581 },
- { "id": "bathroom_scale", "fg": 6582 },
- { "id": "bead_necklace", "fg": 6583 },
- { "id": "brazier", "fg": 6584 },
- { "id": "bubblewrap", "fg": 6585 },
- { "id": "bucket", "fg": 6586 },
- { "id": "camera_pro", "fg": 6592 },
- { "id": "condom", "fg": 6593 },
- { "id": "craft", "fg": 6594 },
- { "id": "pomegranate", "fg": 6605 },
- { "id": "peach", "fg": 6603 },
- { "id": "strawberries", "fg": 6606 },
- { "id": "cabbage", "fg": 6595 },
- { "id": "mango", "fg": 6601 },
- { "id": "kiwi", "fg": 6600 },
- { "id": "papaya", "fg": 6602 },
- { "id": "grapefruit", "fg": 6599 },
- { "id": "pineapple", "fg": 6604 },
- { "id": "celery", "fg": 6597 },
- { "id": "chili_pepper", "fg": 6598 },
- { "id": "carrot", "fg": 6596 },
- { "id": "zucchini", "fg": 6607 },
- { "id": "akmag30", "fg": 6608 },
- { "id": "duct_tape", "fg": 6609 },
- { "id": "electric_lantern", "fg": 6610 },
- { "id": "extinguisher", "fg": 6611 },
- { "id": "sm_extinguisher", "fg": 6612 },
- { "id": "fan", "fg": 6613 },
- {
- "id": [
- "family_photo",
- "polaroid_photo",
- "checkers",
- "cards_magic",
- "pictionary",
- "monopoly",
- "g_warhammer",
- "g_warhammer40k",
- "catan",
- "battleship",
- "clue"
- ],
- "fg": 6614
- },
- { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 6615 },
- { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 6617 },
- { "id": "glock17_17", "fg": 6619 },
- { "id": "holy_symbol", "fg": 6620 },
- { "id": "holy_symbol_wood", "fg": 6621 },
- { "id": "hotplate", "fg": 6622 },
- { "id": "jerrycan", "fg": 6623 },
- { "id": "jerrycan_big", "fg": 6624 },
- { "id": "keg", "fg": 6625 },
- { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 6639 },
- { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 6632 },
- {
- "id": [
- "nyquil",
- "blueberries_cooked",
- "soysauce",
- "hickory_nut_ambrosia",
- "peanutbutter",
- "cola_meth",
- "syrup",
- "beet_syrup",
- "molasses",
- "coffee_syrup",
- "apple_cider",
- "chai_tea",
- "choc_drink",
- "coffee",
- "coffee_substitute",
- "chicory_coffee",
- "cola",
- "hot_chocolate",
- "mex_chocolate",
- "rootbeer",
- "spezi",
- "tea",
- "tea_bark",
- "brew_whiskey",
- "wash_whiskey",
- "brew_gin",
- "brew_hb_beer",
- "brew_moonshine",
- "wash_moonshine",
- "wine_barley",
- "whiskey",
- "irish_coffee",
- "long_island",
- "drink_wild_apple",
- "drink_rumcola",
- "beer",
- "hb_beer",
- "moonshine",
- "european_pilsner",
- "pale_ale",
- "india_pale_ale",
- "stout",
- "belgian_ale",
- "imperial_stout",
- "single_malt_whiskey",
- "sherry",
- "drink_boozeberry",
- "sewage",
- "water_sewage",
- "herbal_tea",
- "brew_pine_wine",
- "cattail_jelly",
- "salt_water",
- "soapy_water",
- "chem_DMSO",
- "chem_chloroform",
- "chem_phenol",
- "chem_glycerol",
- "disinfectant",
- "saline",
- "maple_sap",
- "rehydration_drink",
- "sweet_water",
- "brew_vodka",
- "wash_vodka",
- "brew_rum",
- "wash_rum",
- "vodka",
- "gin",
- "rum",
- "triple_sec",
- "protein_drink",
- "creamsoda",
- "sauce_pesto",
- "colamdew",
- "pine_tea",
- "pine_wine",
- "juice",
- "sports_drink",
- "brew_fruit_wine",
- "mixed_alcohol_weak",
- "fruit_wine",
- "brandy",
- "cranberry_juice",
- "energy_drink",
- "purple_drink",
- "crispycran",
- "drink_strawberry_surprise",
- "taint_tornado",
- "strawberries_cooked",
- "fruit_cooked",
- "jam_fruit",
- "sauce_red",
- "ketchup",
- "kompot",
- "V8",
- "wine_cabernet",
- "wine_noir",
- "wine_marsala",
- "wine_vermouth",
- "bum_wine",
- "mixed_alcohol_strong",
- "drink_kalimotxo",
- "drink_sewerbrew",
- "fertilizer_liquid",
- "nicotine_liquid",
- "broth",
- "broth_bone",
- "dayquil",
- "mustard",
- "honey_bottled",
- "dandelion_tea",
- "dandelionburdock_tea",
- "lemonade",
- "lemonlime",
- "oj",
- "orangesoda",
- "gin_mash",
- "brew_mead",
- "brew_dandelion_wine",
- "brew_burdock_wine",
- "brew_vinegar",
- "tequila",
- "drink_screwdriver",
- "mead",
- "dandelion_wine",
- "burdock_wine",
- "drink_hobo",
- "drink_beeknees",
- "drink_wsour",
- "honey_gold",
- "chem_ethanol",
- "ether",
- "bleach",
- "ammonia",
- "chem_sulphuric_acid",
- "chem_muriatic_acid",
- "chem_acetone",
- "chem_nitric_acid",
- "chem_hydrogen_peroxide_conc",
- "chem_acetic_acid",
- "chem_formaldehyde",
- "chem_hydrogen_peroxide",
- "vinegar",
- "horseradish",
- "wine_riesling",
- "wine_chardonnay",
- "drink_martini"
- ],
- "fg": 6642
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6416, 6433, 6418, 6417 ] } ]
},
{
- "id": [
- "lye",
- "soup_cullenskink",
- "pepto",
- "milkshake",
- "icecream",
- "mayonnaise",
- "almond_milk",
- "soy_milk",
- "can_coconut",
- "eggnog",
- "milk",
- "milk_evap",
- "buttermilk",
- "milk_curdled",
- "con_milk",
- "milk_cream",
- "brew_mycus_wine",
- "brew_milk_curdled",
- "wine_mycus",
- "eggnog_spiked",
- "milk_coffee",
- "milk_tea",
- "soup_fish",
- "soup_chicken",
- "soup_mushroom",
- "soup_dumplings",
- "pudding",
- "poppysyrup",
- "yoghurt",
- "soup_veggy",
- "soup_meat",
- "curry_veggy",
- "curry_meat",
- "soup_woods",
- "soup_tomato",
- "young_yeast"
- ],
- "fg": 6644
+ "id": "vp_board_vertical_right",
+ "fg": [ 6418, 6417, 6416, 6433 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6418, 6417, 6416, 6433 ] } ]
},
{
- "id": [
- "ghee",
- "cooking_oil",
- "mugwort_oil",
- "thyme_oil",
- "plut_slurry_dense",
- "plut_slurry",
- "hi_q_crude_oil",
- "lo_q_crude_oil",
- "lo_q_crude_oil_ethanol",
- "hi_q_crude_oil_ethanol",
- "lo_q_crude_oil_ethanol_filtered",
- "hi_q_crude_oil_ethanol_filtered",
- "lo_q_crude_oil_filtered",
- "hi_q_crude_oil_filtered",
- "hi_q_distillate_heads",
- "hi_q_distillate_tails",
- "hi_q_distillate"
- ],
- "fg": 6643
- },
- { "id": "longsword", "fg": 6645 },
- { "id": "longsword_inferior", "fg": 6647 },
- { "id": "longsword_fake", "fg": 6646 },
- { "id": "mask_gas", "fg": 6648 },
- { "id": "plastic_chunk", "fg": 6649 },
- { "id": "scrap_copper", "fg": 6650 },
- { "id": "oil_lamp", "fg": 6651 },
- { "id": "pickaxe", "fg": 6652 },
- { "id": "pitchfork", "fg": 6653 },
- { "id": "plunger_futuristic", "fg": 6654 },
- { "id": "plunger_toilet", "fg": 6655 },
- { "id": "pocketwatch", "fg": 6656 },
- { "id": "bacon", "fg": 6657 },
- { "id": "porkbelly", "fg": 6658 },
- { "id": "raw_cured_fatty_meat", "fg": 6659 },
- { "id": "raw_curing_fatty_meat", "fg": 6660 },
- { "id": "material_sand", "fg": 6687 },
- { "id": "material_soil", "fg": 6689 },
- { "id": "chem_aluminium_powder", "fg": 6661 },
- { "id": "chem_aluminium_sulphate", "fg": 6662 },
- { "id": "chem_ammonium_nitrate", "fg": 6663 },
- { "id": "chem_black_powder", "fg": 6664 },
- { "id": "cac2powder", "fg": 6665 },
- { "id": "chilly-p", "fg": 6666 },
- { "id": "meal_chitin_piece", "fg": 6667 },
- { "id": "chem_chromium_oxide", "fg": 6668 },
- { "id": "coffee_raw", "fg": 6669 },
- { "id": "curry_powder", "fg": 6670 },
- { "id": "powder_eggs", "fg": 6671 },
- { "id": "fungicide", "fg": 6672 },
- { "id": "insecticide", "fg": 6674 },
- { "id": "chem_hmtd", "fg": 6673 },
- { "id": "lemonade_powder", "fg": 6675 },
- { "id": "lye_powder", "fg": 6676 },
- { "id": "magnesium", "fg": 6677 },
- { "id": "chem_manganese_dioxide", "fg": 6678 },
- { "id": "chem_match_head_powder", "fg": 6679 },
- { "id": "mustard_powder", "fg": 6680 },
- { "id": "oxy_powder", "fg": 6681 },
- { "id": "chem_peptone_broth", "fg": 6682 },
- { "id": "protein_powder", "fg": 6683 },
- { "id": "material_quicklime", "fg": 6684 },
- { "id": "chem_rocket_fuel", "fg": 6685 },
- { "id": "chem_saltpetre", "fg": 6686 },
- { "id": "gunpowder", "fg": 6688 },
- { "id": "chem_thermite", "fg": 6690 },
- { "id": "tin", "fg": 6691 },
- { "id": "yeast", "fg": 6693 },
- { "id": "chem_zinc_powder", "fg": 6694 },
- {
- "id": [
- "sugar",
- "artificial_sweetener",
- "milk_powder",
- "meal_bone",
- "bfipowder",
- "detergent",
- "coke",
- "quikclot",
- "chem_acrylamide"
- ],
- "fg": 6692
- },
- { "id": "radio", "fg": 6695 },
- { "id": "ref_lighter", "fg": 6696 },
- { "id": "rhubarb", "fg": 6697 },
- { "id": "rope_6", "fg": 6698 },
- { "id": "spray_can", "fg": 6699 },
- { "id": "stanag30", "fg": 6700 },
- { "id": "stepladder", "fg": 6701 },
- { "id": "stereo", "fg": 6702 },
- { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 6703 },
- { "id": "waffleiron", "fg": 6704 },
- { "id": "warhammer", "fg": 6705 },
- { "id": "welding_mask", "fg": 6706 },
- { "id": "wind_mill", "fg": 6707 },
- { "id": "wood_beam", "fg": 6708 },
- { "id": "wooden_barrel", "fg": 6709 },
- { "id": "zweihander", "fg": 6710 },
- { "id": "zweihander_inferior", "fg": 6712 },
- { "id": "zweihander_fake", "fg": 6711 },
- { "id": "mon_grenade_hack", "fg": 6721, "bg": 2370 },
- { "id": "mon_mininuke_hack", "fg": 6723, "bg": 2370 },
- { "id": "bot_grenade_hack", "fg": 6715 },
- { "id": "bot_mininuke_hack", "fg": 6716 },
- { "id": "mon_manhack", "fg": 6722, "bg": 2370 },
- { "id": "mon_gasbomb_hack", "fg": 6720, "bg": 2370 },
- { "id": "mon_flashbang_hack", "fg": 6719, "bg": 2370 },
- { "id": "mon_c4_hack", "fg": 6718, "bg": 2370 },
- { "id": "mon_EMP_hack", "fg": 6717, "bg": 2370 },
- { "id": "mon_deer", "fg": 6724, "bg": 2369 },
- { "id": "mon_frog_giant", "fg": 6725, "bg": 2369 },
- { "id": "mon_grocerybot", "fg": 6726, "bg": 2370 },
- { "id": "mon_grocerybot_busted", "fg": 6727, "bg": 2370 },
- { "id": "mon_raccoon", "fg": 6728, "bg": 2370 },
- { "id": "mon_spider_widow_giant", "fg": 6729, "bg": 2369 },
- { "id": "mon_weasel", "fg": 6730, "bg": 2370 },
- { "id": "infrared_creature", "fg": 6731 },
+ "id": "vp_board_wheel_left",
+ "fg": [ 6416, 6435, 6418, 6417 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6416, 6435, 6418, 6417 ] } ]
+ },
{
- "id": "weather_rain_drop",
- "fg": [
- { "weight": 100, "sprite": 6733 },
- { "weight": 100, "sprite": 6735 },
- { "weight": 100, "sprite": 6736 },
- { "weight": 100, "sprite": 6737 },
- { "weight": 100, "sprite": 6738 },
- { "weight": 100, "sprite": 6739 },
- { "weight": 100, "sprite": 6740 },
- { "weight": 100, "sprite": 6741 },
- { "weight": 100, "sprite": 6742 },
- { "weight": 100, "sprite": 6734 }
- ]
- },
- { "id": "weather_snowflake", "fg": 6743 },
- { "id": "weather_acid_drop", "fg": 6732 },
- { "id": [ "t_card_science", "t_card_robofac" ], "fg": 6749 },
- { "id": "t_card_reader_broken", "fg": 6748 },
- { "id": "t_card_military", "fg": 6747 },
- { "id": "t_card_industrial", "fg": 6746 },
- { "id": "t_card_fp", "fg": 6745 },
- { "id": "t_floor_red", "fg": 6752 },
- { "id": "t_floor_green", "fg": 6751 },
- { "id": "t_floor_blue", "fg": 6750 },
- { "id": [ "t_searth_test", "t_searth" ], "fg": 6753 },
- { "id": "t_current_trans", "fg": 6754, "bg": 3689 },
- { "id": "t_potential_trans", "fg": 6755, "bg": 3689 },
- { "id": "graffiti", "fg": 6756 },
- { "id": "t_floor_olight", "fg": 6757, "bg": 3060 },
- { "id": "t_thconc_floor_olight", "fg": 6757, "bg": 3743 },
- { "id": "t_metal_floor_olight", "fg": 6757, "bg": 3298 },
- { "id": "t_pedestal_wyrm", "fg": 6759, "bg": 3497 },
+ "id": "vp_board_wheel_right",
+ "fg": [ 6418, 6417, 6416, 6435 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6418, 6417, 6416, 6435 ] } ]
+ },
{
- "id": "t_pedestal_temple",
- "fg": [ { "weight": 100, "sprite": 6760 }, { "weight": 100, "sprite": 6758 } ],
- "bg": 2972
+ "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ],
+ "fg": [ 6417, 6434, 6417, 6434 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6417, 6434, 6417, 6434 ] } ]
},
{
- "id": "t_pedestal_temple_season_winter",
- "fg": [ { "weight": 100, "sprite": 6760 }, { "weight": 100, "sprite": 6758 } ],
- "bg": 2627
+ "id": "vp_board_horizontal_front",
+ "fg": [ 6417, 6414, 6413, 6412 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6417, 6414, 6413, 6412 ] } ]
},
- { "id": "t_zebra", "fg": 6761 },
- { "id": "t_zebra_season_winter", "fg": 2626 },
{
- "id": [ "t_metal_railing", "t_concrete_railing", "t_glass_railing" ],
+ "id": "vp_board_horizontal_rear",
+ "fg": [ 6415, 6418, 6417, 6416 ],
"multitile": true,
- "fg": 3433,
- "bg": 2830,
- "additional_tiles": [
- { "id": "center", "bg": 2830, "fg": 3418 },
- { "id": "corner", "bg": 2830, "fg": [ 3420, 3422, 3421, 3419 ] },
- { "id": "t_connection", "bg": 2830, "fg": [ 3430, 3432, 3431, 3429 ] },
- { "id": "edge", "bg": 2830, "fg": [ 3424, 3423 ] },
- { "id": "end_piece", "bg": 2830, "fg": [ 3426, 3428, 3427, 3425 ] },
- { "bg": 2830, "id": "unconnected", "fg": [ 3433, 3433 ] }
- ]
- },
- { "id": "t_chaingate_c", "fg": 6763, "bg": 3365 },
- { "id": "t_chaingate_l", "fg": 6764, "bg": 3365 },
- { "id": "t_chaingate_o", "fg": 6765, "bg": 3365 },
- { "id": "t_chainfence_posts", "fg": 6762, "bg": 3365 },
- { "id": "t_chaingate_c_season_winter", "fg": 6763, "bg": 2627 },
- { "id": "t_chaingate_l_season_winter", "fg": 6764, "bg": 2627 },
- { "id": "t_chaingate_o_season_winter", "fg": 6765, "bg": 2627 },
- { "id": "t_chainfence_posts_season_winter", "fg": 6762, "bg": 2627 },
- { "id": "t_console", "fg": 6766 },
- { "id": "t_console_broken", "fg": 6767 },
- { "id": "t_dirtmound", "fg": 6768, "bg": 3163 },
- { "id": "t_dirtmound_season_summer", "fg": 6768, "bg": 3173 },
- { "id": "t_dirtmound_season_autumn", "fg": 6768, "bg": 3168 },
- { "id": "t_dirtmound_season_winter", "fg": 6769 },
- { "id": "t_door_metal_c", "fg": 6770 },
- { "id": "t_door_metal_o", "fg": 6771 },
- { "id": "t_fern", "fg": 6772, "bg": 3163 },
- { "id": "t_fern_harvested", "fg": 6773, "bg": 3163 },
- { "id": "t_fern_season_summer", "fg": 6772, "bg": 3173 },
- { "id": "t_fern_harvested_season_summer", "fg": 6773, "bg": 3173 },
- { "id": "t_fern_season_autumn", "fg": 6772, "bg": 3168 },
- { "id": "t_fern_harvested_season_autumn", "fg": 6773, "bg": 3168 },
- { "id": "t_fern_season_winter", "fg": 6772, "bg": 2625 },
- { "id": "t_fern_harvested_season_winter", "fg": 6773, "bg": 2625 },
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6415, 6418, 6417, 6416 ] } ]
+ },
{
- "id": [ "t_junk_palisade", "t_junk_wall" ],
- "fg": [
- { "weight": 100, "sprite": 6774 },
- { "weight": 100, "sprite": 6775 },
- { "weight": 100, "sprite": 6776 },
- { "weight": 100, "sprite": 6777 }
- ]
+ "id": [ "vp_board_vertical", "vp_board_vertical_2" ],
+ "fg": [ 6434, 6417, 6434, 6417 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6434, 6417, 6434, 6417 ] } ]
},
{
- "id": "t_paper",
- "fg": 6793,
+ "id": "vp_board_ne_edge",
+ "fg": [ 6419, 6437, 6421, 6436 ],
"multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 6778 },
- { "id": "corner", "fg": [ 6780, 6782, 6781, 6779 ] },
- { "id": "t_connection", "fg": [ 6790, 6792, 6791, 6789 ] },
- { "id": "edge", "fg": [ 6784, 6783 ] },
- { "id": "end_piece", "fg": [ 6786, 6788, 6787, 6785 ] },
- { "id": "unconnected", "fg": [ 6793, 6793 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6419, 6437, 6421, 6436 ] } ]
},
{
- "id": "t_pit_covered",
- "fg": 6795,
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ]
+ "id": "vp_board_nw_edge",
+ "fg": [ 6423, 6439, 6425, 6438 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6423, 6439, 6425, 6438 ] } ]
},
{
- "id": "t_pit_covered_season_summer",
- "fg": 6795,
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "id": "vp_clothboard_ne",
+ "fg": [ 6445, 6448, 6447, 6446 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6445, 6448, 6447, 6446 ] } ]
},
{
- "id": "t_pit_covered_season_autumn",
- "fg": 6795,
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "id": "vp_clothboard_nw",
+ "fg": [ 6448, 6450, 6449, 6445 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6448, 6450, 6449, 6445 ] } ]
},
- { "id": "t_pit_covered_season_winter", "fg": 6795, "bg": 2627 },
{
- "id": [
- "t_railroad_track",
- "t_railroad_track_h",
- "t_railroad_track_v",
- "t_railroad_track_d",
- "t_railroad_track_d1",
- "t_railroad_track_d2",
- "t_railroad_tie",
- "t_railroad_tie_h",
- "t_railroad_tie_v",
- "t_railroad_tie_d",
- "t_railroad_track_on_tie",
- "t_railroad_track_h_on_tie",
- "t_railroad_track_v_on_tie",
- "t_railroad_track_d_on_tie"
- ],
- "fg": 6811,
+ "id": "vp_clothboard_se",
+ "fg": [ 6451, 6453, 6448, 6452 ],
"multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 6796, "bg": 3434 },
- { "id": "corner", "fg": [ 6798, 6800, 6799, 6797 ], "bg": 3434 },
- { "id": "t_connection", "fg": [ 6808, 6810, 6809, 6807 ], "bg": 3434 },
- { "id": "edge", "fg": [ 6802, 6801 ], "bg": 3434 },
- { "id": "end_piece", "fg": [ 6804, 6806, 6805, 6803 ], "bg": 3434 },
- { "id": "unconnected", "fg": [ 6811, 6811 ], "bg": 3434 }
- ],
- "bg": 3434
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6451, 6453, 6448, 6452 ] } ]
},
- { "id": "t_reinforced_glass_shutter", "fg": 6812 },
- { "id": "t_reinforced_glass_shutter_open", "fg": 6813 },
{
- "id": "t_sandbox",
- "fg": 6829,
+ "id": "vp_clothboard_sw",
+ "fg": [ 6454, 6456, 6445, 6455 ],
"multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 6814 },
- { "id": "corner", "fg": [ 6816, 6818, 6817, 6815 ] },
- { "id": "t_connection", "fg": [ 6826, 6828, 6827, 6825 ] },
- { "id": "edge", "fg": [ 6820, 6819 ] },
- { "id": "end_piece", "fg": [ 6822, 6824, 6823, 6821 ] },
- { "id": "unconnected", "fg": [ 6829, 6829 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6454, 6456, 6445, 6455 ] } ]
},
- { "id": "t_slot_machine", "fg": 6830, "bg": 3060 },
- { "id": "t_strconc_wall", "fg": 6831 },
{
- "id": "t_trunk",
+ "id": "vp_clothboard_vertical_left",
+ "fg": [ 6442, 6457, 6440, 6444 ],
"multitile": true,
- "fg": [ 6833, 6832 ],
- "bg": [ { "weight": 100, "sprite": 3163 }, { "weight": 100, "sprite": 3165 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6442, 6457, 6440, 6444 ] } ]
},
{
- "id": "t_trunk_season_summer",
+ "id": "vp_clothboard_vertical_right",
+ "fg": [ 6440, 6444, 6442, 6457 ],
"multitile": true,
- "fg": [ 6833, 6832 ],
- "bg": [ { "weight": 100, "sprite": 3173 }, { "weight": 100, "sprite": 3175 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6440, 6444, 6442, 6457 ] } ]
},
{
- "id": "t_trunk_season_autumn",
+ "id": "vp_clothboard_wheel_left",
+ "fg": [ 6442, 6459, 6440, 6444 ],
"multitile": true,
- "fg": [ 6833, 6832 ],
- "bg": [ { "weight": 100, "sprite": 3168 }, { "weight": 100, "sprite": 3170 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6442, 6459, 6440, 6444 ] } ]
},
- { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 6833, 6832 ], "bg": 2627 },
- { "id": "t_wall_half", "fg": 6834, "bg": 3060 },
{
- "id": "t_wax",
- "fg": 6850,
+ "id": "vp_clothboard_wheel_right",
+ "fg": [ 6440, 6444, 6442, 6459 ],
"multitile": true,
- "additional_tiles": [
- { "id": "center", "fg": 6835 },
- { "id": "corner", "fg": [ 6837, 6839, 6838, 6836 ] },
- { "id": "t_connection", "fg": [ 6847, 6849, 6848, 6846 ] },
- { "id": "edge", "fg": [ 6841, 6840 ] },
- { "id": "end_piece", "fg": [ 6843, 6845, 6844, 6842 ] },
- { "id": "unconnected", "fg": [ 6850, 6850 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6440, 6444, 6442, 6459 ] } ]
},
- { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 6851, "bg": 4078 },
- { "id": "t_window_frame", "fg": 6852 },
- { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 6853, "bg": 4078 },
- { "id": "t_pit_glass", "fg": 2110, "bg": 3385 },
- { "id": "t_pit_spiked", "fg": 2176, "bg": 3385 },
- { "id": "tr_firewood_source", "fg": 6854 },
- { "id": "tr_unfinished_construction", "fg": 6855 },
{
- "id": "vp_hdboard_ne",
- "fg": [ 6882, 6885, 6884, 6883 ],
+ "id": [ "vp_clothboard", "vp_clothboard_horizontal", "vp_clothboard_horizontal_2" ],
+ "fg": [ 6444, 6458, 6444, 6458 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6882, 6885, 6884, 6883 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6444, 6458, 6444, 6458 ] } ]
},
{
- "id": "vp_hdboard_nw",
- "fg": [ 6886, 6889, 6888, 6887 ],
+ "id": "vp_clothboard_horizontal_front",
+ "fg": [ 6444, 6442, 6441, 6440 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6886, 6889, 6888, 6887 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6444, 6442, 6441, 6440 ] } ]
},
{
- "id": "vp_hdboard_se",
- "fg": [ 6890, 6892, 6886, 6891 ],
+ "id": "vp_clothboard_horizontal_rear",
+ "fg": [ 6443, 6440, 6444, 6442 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6890, 6892, 6886, 6891 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6443, 6440, 6444, 6442 ] } ]
},
{
- "id": "vp_hdboard_sw",
- "fg": [ 6893, 6895, 6882, 6894 ],
+ "id": [ "vp_clothboard_vertical", "vp_clothboard_vertical_2" ],
+ "fg": [ 6458, 6444, 6458, 6444 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6893, 6895, 6882, 6894 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6458, 6444, 6458, 6444 ] } ]
},
{
- "id": "vp_hdboard_vertical_left",
- "fg": [ 6896, 6898, 6899, 6897 ],
+ "id": "vp_clothboard_ne_edge",
+ "fg": [ 6445, 6461, 6447, 6460 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6896, 6898, 6899, 6897 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6445, 6461, 6447, 6460 ] } ]
},
{
- "id": "vp_hdboard_vertical_right",
- "fg": [ 6899, 6901, 6896, 6900 ],
+ "id": "vp_clothboard_nw_edge",
+ "fg": [ 6448, 6463, 6449, 6462 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6899, 6901, 6896, 6900 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6448, 6463, 6449, 6462 ] } ]
},
{
- "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ],
- "fg": 6878,
+ "id": "vp_clothboard_se_edge",
+ "fg": [ 6451, 6465, 6448, 6464 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6878 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6451, 6465, 6448, 6464 ] } ]
},
{
- "id": "vp_hdboard_horizontal_front",
- "fg": [ 6878, 6880, 6878, 6879 ],
+ "id": "vp_clothboard_sw_edge",
+ "fg": [ 6454, 6467, 6445, 6466 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6878, 6880, 6878, 6879 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6454, 6467, 6445, 6466 ] } ]
},
{
- "id": "vp_hdboard_horizontal_rear",
- "fg": [ 6881, 6879, 6878, 6880 ],
+ "id": [
+ "vp_door_full_left",
+ "vp_door_full_vertical_left",
+ "vp_door_full_nw",
+ "vp_door_full_front_left",
+ "vp_door_full_sw",
+ "vp_door_full_rear_left"
+ ],
+ "fg": [ 6536, 6543, 6542, 6541 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6881, 6879, 6878, 6880 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6537, 6540, 6539, 6538 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6537, 6540, 6539, 6538 ] }
+ ]
},
{
- "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ],
- "fg": 6896,
+ "id": [
+ "vp_door_full_right",
+ "vp_door_full_vertical_right",
+ "vp_door_full_ne",
+ "vp_door_full_front_right",
+ "vp_door_full_se",
+ "vp_door_full_rear_right"
+ ],
+ "fg": [ 6562, 6561, 6560, 6545 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6896 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6559, 6558, 6557, 6544 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6559, 6558, 6557, 6544 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_ne",
- "fg": [ 6916, 6919, 6918, 6917 ],
+ "id": "vp_door_opaque_full_left",
+ "fg": [ 6546, 6549, 6548, 6547 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6916, 6919, 6918, 6917 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6537, 6540, 6539, 6538 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6537, 6540, 6539, 6538 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_nw",
- "fg": [ 6920, 6923, 6922, 6921 ],
+ "id": "vp_door_opaque_full_right",
+ "fg": [ 6554, 6553, 6552, 6550 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6920, 6923, 6922, 6921 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6559, 6558, 6557, 6544 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6559, 6558, 6557, 6544 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_se",
- "fg": [ 6924, 6927, 6926, 6925 ],
+ "id": [ "vp_door_left", "vp_door_vertical_left" ],
+ "fg": [ 6472, 6475, 6474, 6473 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6924, 6927, 6926, 6925 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6481, 6483, 6482, 6480 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6481, 6483, 6482, 6480 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_sw",
- "fg": [ 6928, 6931, 6930, 6929 ],
+ "id": "vp_door_nw",
+ "fg": [ 6492, 6499, 6498, 6497 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6928, 6931, 6930, 6929 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6493, 6496, 6495, 6494 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6481, 6483, 6482, 6480 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_vertical_left",
- "fg": [ 6936, 6939, 6938, 6937 ],
+ "id": "vp_door_front_left",
+ "fg": [ 6583, 6590, 6589, 6588 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6936, 6939, 6938, 6937 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6584, 6587, 6586, 6585 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6584, 6587, 6586, 6585 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_vertical_right",
- "fg": [ 6940, 6943, 6942, 6941 ],
+ "id": [ "vp_door_sw", "vp_door_rear_left" ],
+ "fg": [ 6528, 6535, 6534, 6533 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6940, 6943, 6942, 6941 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6529, 6532, 6531, 6530 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6481, 6483, 6482, 6480 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_horizontal",
- "fg": [ 6911, 6914, 6913, 6912 ],
+ "id": [ "vp_door_right", "vp_door_vertical_right" ],
+ "fg": [ 6476, 6479, 6478, 6477 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6911, 6914, 6913, 6912 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6517, 6519, 6518, 6516 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6517, 6519, 6518, 6516 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_horizontal_2",
- "fg": 6906,
+ "id": "vp_door_ne",
+ "fg": [ 6484, 6491, 6490, 6489 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6906 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6485, 6488, 6487, 6486 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6517, 6519, 6518, 6516 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_horizontal_front",
- "fg": [ 6911, 6914, 6913, 6912 ],
+ "id": "vp_door_front_right",
+ "fg": [ 6575, 6582, 6581, 6580 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6911, 6914, 6913, 6912 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6576, 6579, 6578, 6577 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6576, 6579, 6578, 6577 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_horizontal_2_front",
- "fg": [ 6906, 6909, 6908, 6907 ],
+ "id": [ "vp_door_se", "vp_door_rear_right" ],
+ "fg": [ 6520, 6527, 6526, 6525 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6906, 6909, 6908, 6907 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6521, 6524, 6523, 6522 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6517, 6519, 6518, 6516 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_horizontal_rear",
- "fg": [ 6915, 6912, 6911, 6914 ],
+ "id": "vp_door_opaque_left",
+ "fg": [ 6505, 6507, 6506, 6504 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6915, 6912, 6911, 6914 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6501, 6503, 6502, 6500 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6501, 6503, 6502, 6500 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_horizontal_2_rear",
- "fg": [ 6910, 6907, 6906, 6909 ],
+ "id": "vp_door_opaque_right",
+ "fg": [ 6513, 6515, 6514, 6512 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6910, 6907, 6906, 6909 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6509, 6511, 6510, 6508 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6509, 6511, 6510, 6508 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_vertical",
- "fg": 6932,
+ "id": [ "vp_door_rear", "vp_door_horizontal_rear" ],
+ "fg": [ 6555, 6562, 6561, 6560 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6932 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6556, 6559, 6558, 6557 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6556, 6559, 6558, 6557 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_vertical_2",
- "fg": 6933,
+ "id": [ "vp_door_front", "vp_door_horizontal_front" ],
+ "fg": [ 6561, 6560, 6555, 6562 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6933 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6558, 6557, 6556, 6559 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6558, 6557, 6556, 6559 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_vertical_2_left",
- "fg": [ 6934, 6939, 6938, 6937 ],
+ "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ],
+ "fg": [ 6551, 6554, 6553, 6552 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6934, 6939, 6938, 6937 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6556, 6559, 6558, 6557 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6556, 6559, 6558, 6557 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_vertical_2_right",
- "fg": [ 6935, 6943, 6942, 6941 ],
+ "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ],
+ "fg": [ 6553, 6552, 6551, 6554 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6935, 6943, 6942, 6941 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6558, 6557, 6556, 6559 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6558, 6557, 6556, 6559 ] }
+ ]
},
{
- "id": "vp_hdhalfboard_cover",
- "fg": [ 6902, 6905, 6904, 6903 ],
+ "id": "vp_door_sliding",
+ "fg": [ 6554, 6553, 6552, 6550 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6902, 6905, 6904, 6903 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6601, 6602, 6603, 6604 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6601, 6602, 6603, 6604 ] }
+ ]
},
{
- "id": "vp_xlhalfboard_ne",
- "fg": [ 6865, 6868, 6867, 6866 ],
+ "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ],
+ "fg": [ 6571, 6570, 6573, 6570 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6865, 6868, 6867, 6866 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6572, 6569, 6574, 6569 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6572, 6569, 6574, 6569 ] }
+ ]
},
{
- "id": "vp_xlhalfboard_nw",
- "fg": [ 6869, 6872, 6871, 6870 ],
+ "id": "vp_door_internal_front",
+ "fg": [ 6553, 6568, 6567, 6566 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6869, 6872, 6871, 6870 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6558, 6565, 6564, 6563 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6558, 6565, 6564, 6563 ] }
+ ]
},
{
- "id": "vp_xlhalfboard_se",
- "fg": 6873,
+ "id": "vp_door_shutter",
+ "fg": [ 6593, 6591, 6592, 6594 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6873 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6598, 6596, 6597, 6599 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6598, 6596, 6597, 6599 ] }
+ ]
},
{
- "id": "vp_xlhalfboard_sw",
- "fg": 6874,
+ "id": "vp_door_shutter_left",
+ "fg": [ 6594, 6595, 6591, 6592 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6874 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6599, 6600, 6596, 6597 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6599, 6600, 6596, 6597 ] }
+ ]
},
{
- "id": "vp_xlhalfboard_vertical_left",
- "fg": 6876,
+ "id": "vp_door_shutter_right",
+ "fg": [ 6591, 6592, 6594, 6595 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6876 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6596, 6597, 6599, 6600 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6596, 6597, 6599, 6600 ] }
+ ]
},
{
- "id": "vp_xlhalfboard_vertical_right",
- "fg": 6877,
+ "id": "vp_halfboard_ne",
+ "fg": [ 6625, 6628, 6627, 6626 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6877 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6625, 6628, 6627, 6626 ] } ]
},
{
- "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ],
- "fg": 6860,
+ "id": "vp_halfboard_nw",
+ "fg": [ 6629, 6632, 6631, 6630 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6860 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6629, 6632, 6631, 6630 ] } ]
},
{
- "id": "vp_xlhalfboard_horizontal_front",
- "fg": [ 6860, 6863, 6862, 6861 ],
+ "id": "vp_halfboard_se",
+ "fg": [ 6633, 6636, 6635, 6634 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6860, 6863, 6862, 6861 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6633, 6636, 6635, 6634 ] } ]
},
{
- "id": "vp_xlhalfboard_horizontal_rear",
- "fg": 6864,
+ "id": "vp_halfboard_sw",
+ "fg": [ 6637, 6640, 6639, 6638 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6864 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6637, 6640, 6639, 6638 ] } ]
},
{
- "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ],
- "fg": 6875,
+ "id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ],
+ "fg": [ 6641, 6643, 6644, 6642 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6875 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6641, 6643, 6644, 6642 ] } ]
},
{
- "id": "vp_xlhalfboard_cover",
- "fg": [ 6856, 6859, 6858, 6857 ],
+ "id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ],
+ "fg": [ 6644, 6642, 6641, 6643 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6856, 6859, 6858, 6857 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6644, 6642, 6641, 6643 ] } ]
},
{
- "id": "vp_hdstowboard_ne",
- "fg": [ 6949, 6952, 6951, 6950 ],
+ "id": "vp_halfboard_vertical_t_left",
+ "fg": [ 6648, 6650, 6649, 6647 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6949, 6952, 6951, 6950 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6648, 6650, 6649, 6647 ] } ]
},
{
- "id": "vp_hdstowboard_nw",
- "fg": [ 6953, 6956, 6955, 6954 ],
+ "id": "vp_halfboard_vertical_t_right",
+ "fg": [ 6652, 6654, 6653, 6651 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6953, 6956, 6955, 6954 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6652, 6654, 6653, 6651 ] } ]
},
{
- "id": "vp_hdstowboard_se",
- "fg": [ 6957, 6959, 6953, 6958 ],
+ "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ],
+ "fg": [ 6622, 6624, 6623, 6621 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6957, 6959, 6953, 6958 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6622, 6624, 6623, 6621 ] } ]
},
{
- "id": "vp_hdstowboard_sw",
- "fg": [ 6960, 6962, 6949, 6961 ],
+ "id": [ "vp_halfboard_horizontal_front", "vp_halfboard_horizontal_2_front", "vp_halfboard_cover" ],
+ "fg": [ 6613, 6616, 6615, 6614 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6960, 6962, 6949, 6961 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6613, 6616, 6615, 6614 ] } ]
},
{
- "id": "vp_hdstowboard_vertical_left",
- "fg": [ 6963, 6965, 6966, 6964 ],
+ "id": "vp_halfboard_horizontal_rear",
+ "fg": [ 6617, 6620, 6619, 6618 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6963, 6965, 6966, 6964 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6617, 6620, 6619, 6618 ] } ]
},
{
- "id": "vp_hdstowboard_vertical_right",
- "fg": [ 6966, 6964, 6963, 6965 ],
+ "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ],
+ "fg": [ 6646, 6645, 6646, 6645 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6966, 6964, 6963, 6965 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6646, 6645, 6646, 6645 ] } ]
},
{
- "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ],
- "fg": 6944,
+ "id": "vp_halfboard_cover_left",
+ "fg": [ 6605, 6608, 6607, 6606 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6944 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6605, 6608, 6607, 6606 ] } ]
},
{
- "id": "vp_hdstowboard_horizontal_front",
- "fg": [ 6944, 6947, 6946, 6945 ],
+ "id": "vp_halfboard_cover_right",
+ "fg": [ 6609, 6612, 6611, 6610 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6944, 6947, 6946, 6945 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6609, 6612, 6611, 6610 ] } ]
},
{
- "id": "vp_hdstowboard_horizontal_rear",
- "fg": [ 6948, 6945, 6944, 6947 ],
+ "id": "vp_halfboard_wheel_left",
+ "fg": [ 6655, 6658, 6657, 6656 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6948, 6945, 6944, 6947 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6655, 6658, 6657, 6656 ] } ]
},
{
- "id": "vp_hdstowboard_vertical",
- "fg": 6964,
+ "id": "vp_halfboard_wheel_right",
+ "fg": [ 6659, 6662, 6661, 6660 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6964 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6659, 6662, 6661, 6660 ] } ]
},
{
- "id": "vp_woodboard_ne",
- "fg": [ 6971, 6972, 6977, 6978 ],
+ "id": "vp_hddoor_left",
+ "fg": [ 6664, 6666, 6665, 6663 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6971, 6972, 6977, 6978 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6672, 6674, 6673, 6671 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6672, 6674, 6673, 6671 ] }
+ ]
},
{
- "id": "vp_woodboard_nw",
- "fg": [ 6973, 6974, 6975, 6976 ],
+ "id": "vp_hddoor_right",
+ "fg": [ 6668, 6670, 6669, 6667 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6973, 6974, 6975, 6976 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6692, 6694, 6693, 6691 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6692, 6694, 6693, 6691 ] }
+ ]
},
{
- "id": "vp_woodboard_se",
- "fg": [ 6975, 6976, 6973, 6974 ],
+ "id": "vp_hddoor_opaque_left",
+ "fg": [ 6680, 6682, 6681, 6679 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6975, 6976, 6973, 6974 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6676, 6678, 6677, 6675 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6676, 6678, 6677, 6675 ] }
+ ]
},
{
- "id": "vp_woodboard_sw",
- "fg": [ 6977, 6978, 6971, 6972 ],
+ "id": "vp_hddoor_opaque_right",
+ "fg": [ 6688, 6690, 6689, 6687 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6977, 6978, 6971, 6972 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6684, 6686, 6685, 6683 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6684, 6686, 6685, 6683 ] }
+ ]
},
{
- "id": "vp_woodboard_vertical_left",
- "fg": [ 6979, 6969, 6980, 6967 ],
+ "id": [
+ "vp_hddoor_full_left",
+ "vp_hddoor_full_vertical_left",
+ "vp_hddoor_full_nw",
+ "vp_hddoor_full_front_left",
+ "vp_hddoor_full_sw",
+ "vp_hddoor_full_rear_left"
+ ],
+ "fg": [ 6664, 6666, 6665, 6663 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6979, 6969, 6980, 6967 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6672, 6674, 6673, 6671 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6672, 6674, 6673, 6671 ] }
+ ]
},
{
- "id": "vp_woodboard_vertical_right",
- "fg": [ 6980, 6967, 6979, 6969 ],
+ "id": [
+ "vp_hddoor_full_right",
+ "vp_hddoor_full_vertical_right",
+ "vp_hddoor_full_ne",
+ "vp_hddoor_full_front_right",
+ "vp_hddoor_full_se",
+ "vp_hddoor_full_rear_right"
+ ],
+ "fg": [ 6668, 6670, 6669, 6667 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6980, 6967, 6979, 6969 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6692, 6694, 6693, 6691 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6692, 6694, 6693, 6691 ] }
+ ]
},
{
- "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ],
- "fg": [ 6967, 6968, 6969, 6970 ],
+ "id": "vp_hddoor_opaque_full_left",
+ "fg": [ 6680, 6682, 6681, 6679 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6967, 6968, 6969, 6970 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6676, 6678, 6677, 6675 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6676, 6678, 6677, 6675 ] }
+ ]
},
{
- "id": "vp_woodboard_horizontal_rear",
- "fg": [ 6969, 6970, 6967, 6968 ],
+ "id": "vp_hddoor_opaque_full_right",
+ "fg": [ 6688, 6690, 6689, 6687 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6969, 6970, 6967, 6968 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6684, 6686, 6685, 6683 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6684, 6686, 6685, 6683 ] }
+ ]
},
+ { "id": "vp_saddle_scooter", "fg": [ 6696, 6698, 6697, 6695 ], "rotates": true },
{
- "id": [ "vp_woodhalfboard_ne" ],
- "fg": 6985,
- "rotates": true,
+ "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ],
+ "fg": [ 6700, 6702, 6701, 6699 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6985 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6700, 6702, 6701, 6699 ] } ]
},
{
- "id": "vp_woodhalfboard_nw",
- "fg": 6984,
+ "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ],
+ "fg": [ 6704, 6706, 6705, 6703 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6984 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6704, 6706, 6705, 6703 ] } ]
},
{
- "id": "vp_woodhalfboard_se",
- "fg": 6989,
+ "id": "vp_bed",
+ "fg": [ 6708, 6710, 6709, 6707 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6989 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 6708, 6710, 6709, 6707 ] } ]
},
{
- "id": "vp_woodhalfboard_sw",
- "fg": 6988,
+ "id": "vp_hatch_left",
+ "fg": [ 6713, 6720, 6719, 6718 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6988 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6714, 6717, 6716, 6715 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6714, 6717, 6716, 6715 ] }
+ ]
},
{
- "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ],
- "fg": 6986,
+ "id": "vp_hatch_right",
+ "fg": [ 6719, 6718, 6713, 6720 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6986 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6716, 6715, 6714, 6717 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6716, 6715, 6714, 6717 ] }
+ ]
},
{
- "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ],
- "fg": 6990,
+ "id": "vp_hatch_wheel_left",
+ "fg": [ 6713, 6734, 6719, 6718 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6990 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6714, 6733, 6716, 6715 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6714, 6717, 6716, 6715 ] }
+ ]
},
{
- "id": [
- "vp_woodhalfboard_horizontal",
- "vp_woodhalfboard_horizontal_2",
- "vp_woodhalfboard_horizontal_front",
- "vp_woodhalfboard_horizontal_2_front"
- ],
- "fg": 6983,
+ "id": "vp_hatch_wheel_right",
+ "fg": [ 6719, 6718, 6713, 6734 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6983 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6716, 6715, 6714, 6733 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6716, 6715, 6714, 6733 ] }
+ ]
},
{
- "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ],
- "fg": 6987,
+ "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ],
+ "fg": [ 6711, 6719, 6718, 6713 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6987 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6712, 6716, 6715, 6714 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6712, 6716, 6715, 6714 ] }
+ ]
},
{
- "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ],
- "fg": 6982,
+ "id": "vp_hatch_horizontal_front",
+ "fg": [ 6718, 6713, 6711, 6719 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6982 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6715, 6714, 6712, 6716 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6715, 6714, 6712, 6716 ] }
+ ]
},
{
- "id": [ "vp_woodhalfboard_cover" ],
- "fg": 6981,
+ "id": "vp_hatch_opaque_left",
+ "fg": [ 6723, 6730, 6729, 6728 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 6981 } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6724, 6727, 6726, 6725 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6724, 6727, 6726, 6725 ] }
+ ]
},
{
- "id": [ "vp_basketsm", "vp_basketsm_external" ],
- "fg": [ 7002, 7001 ],
+ "id": "vp_hatch_opaque_right",
+ "fg": [ 6729, 6728, 6723, 6730 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7002, 7001 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6726, 6725, 6724, 6727 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6726, 6725, 6724, 6727 ] }
+ ]
},
{
- "id": "vp_basketsm_bike_rear",
- "fg": [ 6998, 7000, 6999, 6997 ],
+ "id": "vp_hatch_opaque_wheel_left",
+ "fg": [ 6723, 6732, 6729, 6728 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6998, 7000, 6999, 6997 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6724, 6731, 6726, 6725 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6724, 6731, 6726, 6725 ] }
+ ]
},
{
- "id": [ "vp_basketlg", "vp_basketlg_external" ],
- "fg": [ 6996, 6995 ],
+ "id": "vp_hatch_opaque_wheel_right",
+ "fg": [ 6729, 6728, 6723, 6732 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6996, 6995 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6726, 6725, 6724, 6731 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6726, 6725, 6724, 6731 ] }
+ ]
},
{
- "id": "vp_basketlg_cart",
- "fg": [ 6992, 6994, 6993, 6991 ],
+ "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ],
+ "fg": [ 6721, 6729, 6728, 6723 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 6992, 6994, 6993, 6991 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6722, 6726, 6725, 6724 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6722, 6726, 6725, 6724 ] }
+ ]
},
{
- "id": "vp_box",
- "fg": [ 7003, 7004 ],
+ "id": "vp_hatch_opaque_horizontal_front",
+ "fg": [ 6728, 6723, 6721, 6729 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7003, 7004 ] } ]
+ "additional_tiles": [
+ { "id": "open", "fg": [ 6725, 6724, 6722, 6726 ] },
+ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6725, 6724, 6722, 6726 ] }
+ ]
},
{
- "id": "vp_wood box",
- "fg": [ 7013, 7012 ],
+ "id": [ "vp_wheel_wide", "vp_wheel_wide_steerable", "vp_wheel_wide_or", "vp_wheel_wide_or_steerable" ],
+ "fg": [ 6736, 6735, 6736, 6735 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7013, 7012 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 6736, 6735, 6736, 6735 ] } ]
},
{
- "id": "vp_box_wheelbarrow",
- "fg": [ 7006, 7008, 7007, 7005 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7006, 7008, 7007, 7005 ] } ]
+ "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ],
+ "fg": [ 6745, 6748, 6747, 6746 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6745, 6748, 6747, 6746 ] } ],
+ "multitile": true
},
{
- "id": "vp_trunk",
- "fg": 7010,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7010 } ]
+ "id": "vp_windshield_horizontal_rear",
+ "fg": [ 6762, 6763, 6762, 6761 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6762, 6763, 6762, 6761 ] } ],
+ "multitile": true
},
{
- "id": "vp_trunk_rear_edge",
- "fg": 7011,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7011 } ]
+ "id": "vp_windshield_nw",
+ "fg": [ 6757, 6760, 6759, 6758 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6470, 6470, 6470, 6470 ], "bg": [ 6757, 6760, 6759, 6758 ] } ],
+ "multitile": true
},
{
- "id": [ "vp_cargo_space", "animal_compartment" ],
- "fg": 7009,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7009 } ]
+ "id": "vp_windshield_ne",
+ "fg": [ 6753, 6756, 6755, 6754 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6469, 6469, 6469, 6469 ], "bg": [ 6753, 6756, 6755, 6754 ] } ],
+ "multitile": true
},
{
- "id": [ "vp_hddoor_trunk", "vp_hdhatch", "vp_hdhatch_opaque" ],
- "fg": [ 7037, 7043, 7042, 7041 ],
- "multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7038, 7040, 7038, 7039 ] }, { "id": "broken", "fg": 7017, "bg": [ 7038, 7040, 7038, 7039 ] } ]
+ "id": "vp_windshield_sw",
+ "fg": [ 6749, 6752, 6764, 6750 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6470, 6470, 6470, 6470 ], "bg": [ 6749, 6752, 6764, 6750 ] } ],
+ "multitile": true
},
{
- "id": [ "vp_hddoor", "vp_hddoor_front" ],
- "fg": [ 7025, 7026, 7025, 7024 ],
- "multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7019, 7020, 7019, 7018 ] }, { "id": "broken", "fg": 7017, "bg": [ 7019, 7020, 7019, 7018 ] } ]
+ "id": "vp_windshield_se",
+ "fg": [ 6751, 6767, 6749, 6765 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6469, 6469, 6469, 6469 ], "bg": [ 6751, 6767, 6749, 6765 ] } ],
+ "multitile": true
},
{
- "id": "vp_hddoor_rear",
- "fg": [ 7034, 7036, 7035, 7033 ],
- "multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7022, 7023, 7022, 7021 ] }, { "id": "broken", "fg": 7017, "bg": [ 7022, 7023, 7022, 7021 ] } ]
+ "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ],
+ "fg": [ 6749, 6752, 6751, 6750 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6469, 6469, 6469, 6469 ], "bg": [ 6749, 6752, 6751, 6750 ] } ],
+ "multitile": true
},
{
- "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ],
- "fg": [ 7028, 7029, 7028, 7027 ],
- "multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7019, 7020, 7019, 7018 ] }, { "id": "broken", "fg": 7017, "bg": [ 7019, 7020, 7019, 7018 ] } ]
+ "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ],
+ "fg": [ 6764, 6767, 6766, 6765 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6470, 6470, 6470, 6470 ], "bg": [ 6764, 6767, 6766, 6765 ] } ],
+ "multitile": true
},
{
- "id": "vp_hddoor_opaque_rear",
- "fg": [ 7031, 7032, 7031, 7030 ],
+ "id": "vp_windshield_cover_left",
+ "fg": [ 6737, 6740, 6739, 6738 ],
"multitile": true,
- "additional_tiles": [ { "id": "open", "fg": [ 7022, 7023, 7022, 7021 ] }, { "id": "broken", "fg": 7017, "bg": [ 7022, 7023, 7022, 7021 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6737, 6740, 6739, 6738 ] } ]
},
{
- "id": "vp_ram_spiked",
- "fg": 7045,
- "rotates": true,
+ "id": "vp_windshield_cover_right",
+ "fg": [ 6741, 6744, 6743, 6742 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7045 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6741, 6744, 6743, 6742 ] } ]
},
{
- "id": "vp_ram_steel",
- "fg": 7046,
- "rotates": true,
+ "id": "vp_windshield_wheel_left",
+ "fg": [ 6769, 6772, 6771, 6770 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7045 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6769, 6772, 6771, 6770 ] } ]
},
{
- "id": "vp_spike",
- "fg": 7047,
- "rotates": true,
+ "id": "vp_windshield_wheel_right",
+ "fg": [ 6773, 6776, 6775, 6774 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7047 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6471, 6471, 6471, 6471 ], "bg": [ 6773, 6776, 6775, 6774 ] } ]
},
{
- "id": "vp_frame_cover",
- "fg": 7049,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7049 } ]
+ "id": "vp_windshield_vertical_2_left",
+ "fg": [ 6749, 6768, 6751, 6750 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6469, 6469, 6469, 6469 ], "bg": [ 6749, 6768, 6751, 6750 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_cross",
- "fg": 7050,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7050 } ]
+ "id": "vp_windshield_vertical_2_right",
+ "fg": [ 6764, 6767, 6766, 6768 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6470, 6470, 6470, 6470 ], "bg": [ 6764, 6767, 6766, 6768 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_cross_unconnected",
- "fg": 7051,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7051 } ]
+ "id": [ "vp_windshield_full", "vp_windshield_full_horizontal_rear" ],
+ "fg": [ 6779, 6777, 6778, 6780 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7607, "bg": [ 6779, 6777, 6778, 6780 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_ne",
- "fg": 7064,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7064 } ]
+ "id": "vp_windshield_full_horizontal_front",
+ "fg": [ 6778, 6780, 6779, 6777 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7607, "bg": [ 6778, 6780, 6779, 6777 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_nw",
- "fg": 7065,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7065 } ]
+ "id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ],
+ "fg": [ 6780, 6781, 6777, 6778 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7607, "bg": [ 6780, 6781, 6777, 6778 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_se",
- "fg": 7066,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7066 } ]
+ "id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ],
+ "fg": [ 6777, 6778, 6780, 6781 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7607, "bg": [ 6777, 6778, 6780, 6781 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_sw",
- "fg": 7067,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7067 } ]
+ "id": "vp_windshield_full_wheel_left",
+ "fg": [ 6780, 6782, 6777, 6778 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7607, "bg": [ 6780, 6782, 6777, 6778 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_vertical_unconnected",
- "fg": 7075,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7075 } ]
+ "id": "vp_windshield_full_wheel_right",
+ "fg": [ 6777, 6778, 6780, 6782 ],
+ "additional_tiles": [ { "id": "broken", "fg": 7607, "bg": [ 6777, 6778, 6780, 6782 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_vertical_2_unconnected",
- "fg": 7072,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7072 } ]
+ "id": "vp_windshield_horizontal_front_edge",
+ "fg": [ 6784, 6786, 6785, 6783 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6784, 6786, 6785, 6783 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_vertical_left",
- "fg": 7073,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7073 } ]
+ "id": "vp_windshield_horizontal_rear_edge",
+ "fg": [ 6795, 6798, 6797, 6796 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6795, 6798, 6797, 6796 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_vertical_2_left",
- "fg": 7070,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7070 } ]
+ "id": "vp_windshield_nw_edge",
+ "fg": [ 6792, 6794, 6793, 6791 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6792, 6794, 6793, 6791 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_vertical_right",
- "fg": 7074,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7074 } ]
+ "id": "vp_windshield_ne_edge",
+ "fg": [ 6788, 6790, 6789, 6787 ],
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6788, 6790, 6789, 6787 ] } ],
+ "multitile": true
},
{
- "id": "vp_frame_vertical_2_right",
- "fg": 7071,
+ "id": "vp_windshield_sw_edge",
+ "fg": [ 6637, 6640, 6639, 6638 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7071 } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6637, 6640, 6639, 6638 ] } ]
},
{
- "id": "vp_frame_horizontal",
- "fg": 7052,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7052 } ]
+ "id": "vp_windshield_se_edge",
+ "fg": [ 6633, 6636, 6635, 6634 ],
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": [ 6468, 6468, 6468, 6468 ], "bg": [ 6633, 6636, 6635, 6634 ] } ]
+ },
+ { "id": "mon_shadow", "fg": 6292 },
+ { "id": "corpse_mon_zombie_brainless", "fg": 6344 },
+ { "id": "mon_zombie_armored", "fg": 6357 },
+ { "id": "mon_beekeeper", "fg": 6369 },
+ { "id": "overlay_effect_earphones", "fg": 6397 },
+ { "id": "overlay_effect_evil", "fg": 6398 },
+ { "id": "overlay_effect_sleep", "fg": 6399 },
+ { "id": "overlay_effect_teleglow", "fg": 6400 },
+ { "id": "overlay_wielded_woodgreatbow", "fg": 6403 },
+ { "id": "overlay_female_worn_helmet_riot_raised", "fg": 6406 },
+ { "id": "overlay_male_worn_helmet_riot_raised", "fg": 6407 }
+ ]
+ },
+ {
+ "file": "centered.png",
+ "//": "range 6800 to 6815",
+ "sprite_width": 64,
+ "sprite_height": 64,
+ "sprite_offset_x": -16,
+ "sprite_offset_y": -16,
+ "tiles": [
+ { "id": "vp_wing_mirror", "fg": [ 6809, 6811, 6810, 6808 ], "rotates": true },
+ { "id": "vp_wing_mirror_left", "fg": [ 6801, 6803, 6802, 6800 ], "rotates": true },
+ { "id": "vp_wing_mirror_right", "fg": [ 6805, 6807, 6806, 6804 ], "rotates": true }
+ ]
+ },
+ {
+ "file": "large.png",
+ "//": "range 6816 to 6991",
+ "sprite_width": 64,
+ "sprite_height": 64,
+ "sprite_offset_x": -16,
+ "sprite_offset_y": -32,
+ "tiles": [
+ { "id": "f_CTscan", "fg": 6817 },
+ { "id": "f_MRI", "fg": 6818 },
+ { "id": "f_rotary_clothesline", "fg": 6819 },
+ { "id": "mon_troll", "fg": 6821, "bg": 6832 },
+ { "id": "mon_albino_penguin", "fg": 6822, "bg": 6833 },
+ { "id": "mon_gelatin", "fg": 6823, "bg": 6833 },
+ { "id": "mon_smoker_brute", "fg": 6824, "bg": 6833 },
+ {
+ "id": "mon_exodii_quad",
+ "fg": [
+ { "weight": 15, "sprite": 6835 },
+ { "weight": 10, "sprite": 6836 },
+ { "weight": 15, "sprite": 6837 },
+ { "weight": 15, "sprite": 6838 }
+ ],
+ "bg": 6832
},
{
- "id": "vp_frame_horizontal_2",
- "fg": 7053,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7053 } ]
+ "id": "mon_exodii_turret",
+ "fg": [
+ { "weight": 15, "sprite": 6839 },
+ { "weight": 5, "sprite": 6840 },
+ { "weight": 15, "sprite": 6841 },
+ { "weight": 15, "sprite": 6842 }
+ ],
+ "bg": 6833
+ },
+ { "id": "mon_fungal_blossom", "fg": 6843, "bg": 6833 },
+ { "id": "mon_gas_zombie", "fg": 6844, "bg": 6834 },
+ { "id": "mon_giant_crayfish", "fg": 6845, "bg": 6834 },
+ { "id": "mon_slug_giant", "fg": 6846, "bg": 6832 },
+ { "id": "mon_dog_zombie_hulk", "fg": 6847, "bg": 6833 },
+ { "id": "mon_zhark", "fg": 6848 },
+ { "id": "mon_ant_soldier", "fg": 6856, "bg": 6832 },
+ { "id": "mon_ant_acid_soldier", "fg": 6854, "bg": 6832 },
+ { "id": "corpse_mon_ant_soldier", "fg": 6852 },
+ { "id": "corpse_mon_ant_acid_soldier", "fg": 6850 },
+ { "id": "mon_ant_queen", "fg": 6855, "bg": 6832 },
+ { "id": "mon_ant_acid_queen", "fg": 6853, "bg": 6832 },
+ { "id": "corpse_mon_ant_queen", "fg": 6851 },
+ { "id": "corpse_mon_ant_acid_queen", "fg": 6849 },
+ { "id": "mon_bear", "fg": 6857, "bg": 6833 },
+ { "id": "mon_blob_large", "fg": 6858, "bg": 6832 },
+ { "id": "mon_boomer_huge", "fg": 6859, "bg": 6833 },
+ {
+ "id": "mon_cow",
+ "fg": [
+ { "weight": 1, "sprite": 6860 },
+ { "weight": 12, "sprite": 6861 },
+ { "weight": 6, "sprite": 6862 },
+ { "weight": 6, "sprite": 6863 },
+ { "weight": 12, "sprite": 6864 }
+ ],
+ "bg": 6833
},
+ { "id": "mon_zow", "fg": 6865, "bg": 6833 },
{
- "id": "vp_frame_horizontal_unconnected",
- "fg": 7063,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7063 } ]
+ "id": "mon_crawler",
+ "fg": [ { "weight": 1, "sprite": 6866 }, { "weight": 1, "sprite": 6867 }, { "weight": 1, "sprite": 6868 } ],
+ "bg": 6833
},
+ { "id": "mon_dark_wyrm", "fg": 6869, "bg": 6832 },
+ { "id": "mon_devourer", "fg": 6870, "bg": 6833 },
+ { "id": "mon_dog_zombie_brute", "fg": 6871, "bg": 6833 },
{
- "id": "vp_frame_horizontal_2_unconnected",
- "fg": 7056,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7056 } ]
+ "id": "mon_flying_polyp",
+ "fg": [ { "weight": 1, "sprite": 6872 }, { "weight": 1, "sprite": 6873 }, { "weight": 1, "sprite": 6874 } ]
},
+ { "id": "mon_gator", "fg": 6876, "bg": 6832 },
+ { "id": "mon_horse", "fg": [ { "weight": 1, "sprite": 6877 }, { "weight": 1, "sprite": 6878 } ], "bg": 6833 },
+ { "id": "mon_zombie_horse", "fg": 6879, "bg": 6833 },
+ { "id": "mon_human_snail", "fg": 6880, "bg": 6832 },
+ { "id": "mon_jabberwock", "fg": 6881, "bg": 6832 },
{
- "id": "vp_frame_horizontal_front",
- "fg": 7059,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7059 } ]
+ "id": "mon_lady_bug_giant",
+ "fg": [
+ { "weight": 90, "sprite": 6882 },
+ { "weight": 60, "sprite": 6883 },
+ { "weight": 50, "sprite": 6884 },
+ { "weight": 20, "sprite": 6885 },
+ { "weight": 1, "sprite": 6886 }
+ ],
+ "bg": 6833
+ },
+ { "id": "mon_mantis_small", "fg": 6887, "bg": 6833 },
+ { "id": "mon_mech_lifter", "fg": 6888 },
+ { "id": "rid_mon_mech_lifter", "fg": 6889 },
+ { "id": "mon_mi_go", "fg": 6890, "bg": 6833 },
+ { "id": "mon_mi_go_slaver", "fg": 6894, "bg": 6833 },
+ { "id": "mon_mi_go_surgeon", "fg": 6895, "bg": 6833 },
+ { "id": "mon_mi_go_scout", "fg": 6893, "bg": 6833 },
+ { "id": "mon_mi_go_guard", "fg": 6891, "bg": 6832 },
+ { "id": "mon_mi_go_myrmidon", "fg": 6892, "bg": 6832 },
+ { "id": "mon_moose", "fg": [ { "weight": 2, "sprite": 6896 }, { "weight": 2, "sprite": 6897 } ], "bg": 6832 },
+ { "id": "mon_sheep", "fg": 6899, "bg": 6834 },
+ { "id": "mon_spider_fungus", "fg": 6900, "bg": 6834 },
+ { "id": "mon_wasp", "fg": 6901, "bg": 6833 },
+ { "id": "mon_darkman", "fg": 6902 },
+ { "id": "mon_zombear", "fg": 6903, "bg": 6833 },
+ { "id": "mon_zombear_skeleton", "fg": 6904, "bg": 6833 },
+ { "id": "mon_zombie_biter", "fg": 6905, "bg": 6833 },
+ {
+ "id": "mon_zombie_brute",
+ "fg": [
+ { "weight": 100, "sprite": 6906 },
+ { "weight": 100, "sprite": 6907 },
+ { "weight": 50, "sprite": 6908 },
+ { "weight": 50, "sprite": 6909 }
+ ],
+ "bg": 6833
},
+ { "id": "mon_zombie_brute_winged", "fg": 6910, "bg": 6832 },
+ { "id": "mon_zombie_dog_brute_acidic", "fg": 6911, "bg": 6833 },
{
- "id": "vp_frame_horizontal_2_front",
- "fg": 7054,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7054 } ]
+ "id": "mon_zombie_electric",
+ "fg": [ { "weight": 1, "sprite": 6913 }, { "weight": 1, "sprite": 6912 } ],
+ "bg": 6834
},
{
- "id": "vp_frame_horizontal_rear",
- "fg": 7061,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7061 } ]
+ "id": "mon_zombie_nullfield",
+ "fg": [ { "weight": 1, "sprite": 6915 }, { "weight": 1, "sprite": 6914 } ],
+ "bg": 6834
+ },
+ { "id": "mon_zombie_smoker", "fg": 6916, "bg": 6834 },
+ { "id": "mon_zombie_smoker_fungus", "fg": 6917, "bg": 6834 },
+ { "id": "mon_zombie_soldier_acid_2", "fg": 6918, "bg": 6833 },
+ { "id": "mon_zombull", "fg": 6920, "bg": 6833 },
+ { "id": "mon_zoose", "fg": 6921, "bg": 6832 },
+ { "id": "mon_nursebot_defective", "fg": 6923, "bg": 6834 },
+ { "id": "mon_nursebot", "fg": 6922, "bg": 6834 },
+ { "id": "mon_zombie_brute_shocker", "fg": 6924, "bg": 6833 },
+ { "id": "mon_skeleton_electric", "fg": 6925, "bg": 6834 },
+ { "id": "mon_sludge_crawler", "fg": 6926, "bg": 6832 },
+ { "id": "mon_spider_jumping_giant", "fg": 6932, "bg": 6834 },
+ { "id": "mon_spider_web", "fg": 6936, "bg": 6834 },
+ { "id": "corpse_mon_spider_web", "fg": 6927 },
+ { "id": "mon_spider_wolf_giant", "fg": 6940, "bg": 6834 },
+ { "id": "corpse_mon_spider_wolf_giant", "fg": 6928 },
+ { "id": "mon_dermatik_incubator_spider", "fg": 6929, "bg": 6834 },
+ { "id": "corpse_mon_dermatik_incubator_spider", "fg": 6927 },
+ { "id": "mon_spider_cellar_giant", "fg": 6930, "bg": 6834 },
+ { "id": "mon_spider_cellar_mega", "fg": 6931, "bg": 6833 },
+ { "id": "mon_spider_jumping_mega", "fg": 6933, "bg": 6833 },
+ { "id": "mon_spider_trapdoor_giant", "fg": 6934, "bg": 6834 },
+ { "id": "mon_spider_trapdoor_mega", "fg": 6935, "bg": 6832 },
+ { "id": "mon_spider_web_mega", "fg": 6937, "bg": 6832 },
+ { "id": "mon_spider_widow_giant", "fg": 6938, "bg": 6834 },
+ { "id": "mon_spider_widow_mega", "fg": 6939, "bg": 6832 },
+ { "id": "mon_spider_wolf_mega", "fg": 6941, "bg": 6832 },
+ { "id": "mon_dog_thing", "fg": 6942, "bg": 6833 },
+ { "id": "mon_headless_dog_thing", "fg": 6943, "bg": 6833 },
+ { "id": "mon_thing", "fg": 6944, "bg": 6832 },
+ { "id": "mon_triffid_queen", "fg": 6945, "bg": 6832 },
+ { "id": "mon_crows_m240", "fg": 6946, "bg": 6833 },
+ { "id": "mon_turret_bmg", "fg": 6947, "bg": 6833 },
+ { "id": "mon_turret_rifle", "fg": 6948, "bg": 6833 },
+ { "id": "mon_vinebeast", "fg": 6951, "bg": 6832 },
+ { "id": "mon_zombie_brute_ninja", "fg": 6952, "bg": 6833 },
+ { "id": "mon_zombie_brute_grappler", "fg": 6953, "bg": 6833 },
+ {
+ "id": [ "forest_thick", "special_forest_thick" ],
+ "fg": [ { "weight": 4, "sprite": 6959 }, { "weight": 1, "sprite": 6960 } ],
+ "bg": 6971,
+ "rotates": false
},
+ { "id": "bridgehead_ground", "fg": [ 6964, 6963, 6965, 6966 ], "bg": 6973, "rotates": true },
+ { "id": "bridge", "fg": [ 6962, 6961, 6962, 6961 ], "bg": 6972, "rotates": true },
+ { "id": "bridgehead_ramp", "fg": [ 6968, 6967, 6969, 6970 ], "rotates": true },
+ { "id": "bridge_road", "fg": [ 6962, 6961, 6962, 6961 ], "rotates": true },
+ { "id": "t_tree_young", "fg": 6980, "bg": 6976 },
+ { "id": "t_tree_young_season_summer", "fg": 6979, "bg": 6977, "rotates": false },
{
- "id": "vp_frame_horizontal_2_rear",
- "fg": 7055,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7055 } ]
+ "id": "t_tree_young_season_autumn",
+ "fg": [ { "weight": 100, "sprite": 6981 }, { "weight": 100, "sprite": 6982 } ],
+ "bg": 6975,
+ "rotates": false
+ },
+ { "id": "t_tree_young_season_winter", "fg": 6983, "bg": 6974, "rotates": false },
+ { "id": "t_vat", "fg": 6984, "bg": 6978 },
+ { "id": "corpse_mon_zombie_spitter", "fg": 6816 },
+ { "id": "f_magiclysm_translocator_gate", "fg": 6820 },
+ { "id": "mon_zombie_gasbag_crawler", "fg": 6825 },
+ { "id": "mon_zombie_gasbag_immobile", "fg": 6826 },
+ { "id": "mon_zombie_gasbag_impaler", "fg": 6827 },
+ { "id": "mon_zombie_giant_heart", "fg": 6828 },
+ { "id": "mon_zombie_hanging_innards", "fg": 6829 },
+ { "id": "mon_zombie_living_wall", "fg": 6830 },
+ { "id": "mon_zombie_scissorlimbs", "fg": 6831 },
+ { "id": "mon_fungal_wall", "fg": 6875 },
+ { "id": "mon_mutant_arthropod", "fg": 6898 },
+ { "id": "mon_zombie_soldier_blackops_2", "fg": 6919 },
+ { "id": "mon_secubot", "fg": 6949 },
+ { "id": "mon_talon_m202a1", "fg": 6950 },
+ { "id": "overlay_wielded_as50", "fg": 6954 },
+ { "id": "overlay_wielded_m107a1", "fg": 6955 },
+ { "id": "overlay_wielded_m134", "fg": 6956 },
+ { "id": "overlay_wielded_m2browning", "fg": 6957 },
+ { "id": "overlay_wielded_mark19", "fg": 6958 }
+ ]
+ },
+ {
+ "file": "large_ridden.png",
+ "//": "range 6992 to 7007",
+ "sprite_width": 64,
+ "sprite_height": 64,
+ "sprite_offset_x": -16,
+ "sprite_offset_y": -27,
+ "tiles": [
+ { "id": "rid_mon_horse", "fg": [ { "weight": 1, "sprite": 6993 }, { "weight": 1, "sprite": 6994 } ] },
+ { "id": "rid_mon_cow", "fg": 6992 }
+ ]
+ },
+ {
+ "file": "huge.png",
+ "//": "range 7008 to 7039",
+ "sprite_width": 64,
+ "sprite_height": 96,
+ "sprite_offset_x": -16,
+ "sprite_offset_y": -64,
+ "tiles": [
+ { "id": "mon_fungaloid_queen", "fg": 7009, "bg": 7008 },
+ { "id": "mon_fungaloid_seeder", "fg": 7010, "bg": 7008 },
+ { "id": "mon_fungaloid_tower", "fg": 7011, "bg": 7008 },
+ { "id": "mon_zombie_kevlar_2", "fg": 7014 },
+ { "id": "mon_zombie_hulk", "fg": 7013, "bg": 7008 },
+ { "id": "mon_skeleton_hulk", "fg": 7012 },
+ { "id": "mon_zombie_nemesis", "fg": 7015, "bg": 7008 },
+ { "id": "mon_amigara_horror", "fg": 7016 },
+ { "id": "mon_blob_brain", "fg": 7017, "bg": 7008 },
+ { "id": "mon_flaming_eye", "fg": 7018 },
+ { "id": "mon_nakedmolerat_giant", "fg": 7023, "bg": 7008 },
+ { "id": "mon_shoggoth", "fg": 7024, "bg": 7008 },
+ { "id": "mon_triffid_heart", "fg": 7025 },
+ { "id": "mon_yugg", "fg": 7026, "bg": 7008 },
+ { "id": "mon_ frog_mother", "fg": 7019 },
+ { "id": "mon_mutant_evolved", "fg": 7020 },
+ { "id": "mon_mutant_mollusk", "fg": 7021 },
+ { "id": "corpse_mon_nakedmolerat_giant", "fg": 7022 }
+ ]
+ },
+ {
+ "file": "giant.png",
+ "//": "range 7040 to 7087",
+ "sprite_width": 96,
+ "sprite_height": 96,
+ "sprite_offset_x": -32,
+ "sprite_offset_y": -64,
+ "tiles": [
+ { "id": "t_tree", "fg": 7050, "bg": 7043 },
+ { "id": "t_tree_season_summer", "fg": 7045, "bg": 7044 },
+ {
+ "id": "t_tree_season_autumn",
+ "fg": [
+ { "weight": 100, "sprite": 7046 },
+ { "weight": 100, "sprite": 7047 },
+ { "weight": 100, "sprite": 7048 },
+ { "weight": 100, "sprite": 7049 }
+ ],
+ "bg": 7042
},
+ { "id": "t_tree_season_winter", "fg": 7074, "bg": 7041 },
+ { "id": "t_tree_apple", "fg": 7051, "bg": 7043 },
+ { "id": "t_tree_apple_season_summer", "fg": 7051, "bg": 7044 },
+ { "id": "t_tree_apple_season_winter", "fg": 7056, "bg": 7041 },
{
- "id": [ "vp_frame_horizontal_left", "vp_frame_vertical_T_left" ],
- "fg": 7060,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7060 } ]
+ "id": "t_tree_apple_season_autumn",
+ "fg": [ { "weight": 1, "sprite": 7052 }, { "weight": 1, "sprite": 7053 } ],
+ "bg": 7042
},
{
- "id": "vp_frame_horizontal_2_left",
- "fg": 7057,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7057 } ]
+ "id": "t_tree_apple_harvested",
+ "fg": [ { "weight": 1, "sprite": 7054 }, { "weight": 1, "sprite": 7055 } ],
+ "bg": 7042
},
+ { "id": "t_tree_beech", "fg": 7058, "bg": 7043 },
+ { "id": "t_tree_beech_season_summer", "fg": 7059, "bg": 7044 },
+ { "id": "t_tree_beech_season_autumn", "fg": 7057, "bg": 7042 },
+ { "id": "t_tree_beech_season_winter", "fg": 7060, "bg": 7041 },
+ { "id": "t_tree_birch", "fg": 7061, "bg": 7043 },
+ { "id": "t_tree_birch_season_summer", "fg": 7061, "bg": 7044 },
+ { "id": "t_tree_birch_season_winter", "fg": 7064, "bg": 7041 },
{
- "id": [ "vp_frame_horizontal_right", "vp_frame_vertical_T_right" ],
- "fg": 7062,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7062 } ]
+ "id": "t_tree_birch_season_autumn",
+ "fg": [ { "weight": 1, "sprite": 7062 }, { "weight": 1, "sprite": 7063 } ],
+ "bg": 7042
},
+ { "id": "t_tree_cherry", "fg": 7065, "bg": 7043 },
+ { "id": "t_tree_cherry_season_summer", "fg": 7069, "bg": 7044 },
+ { "id": "t_tree_cherry_harvested", "fg": 7068, "bg": 7044 },
+ { "id": "t_tree_cherry_season_winter", "fg": 7070, "bg": 7041 },
{
- "id": "vp_frame_horizontal_2_right",
- "fg": 7058,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7058 } ]
+ "id": "t_tree_cherry_season_autumn",
+ "fg": [ { "weight": 1, "sprite": 7066 }, { "weight": 1, "sprite": 7067 } ],
+ "bg": 7042
},
+ { "id": "t_tree_cottonwood_season_spring", "fg": 7072, "bg": 7043 },
+ { "id": "t_tree_cottonwood_season_summer", "fg": 7073, "bg": 7044 },
+ { "id": "t_tree_cottonwood_season_autumn", "fg": 7071, "bg": 7042 },
+ { "id": "t_tree_cottonwood_season_winter", "fg": 7074, "bg": 7041 },
{
- "id": "vp_frame_vertical",
- "fg": 7068,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7068 } ]
+ "id": "t_tree_dead",
+ "fg": [ { "weight": 100, "sprite": 7074 }, { "weight": 100, "sprite": 8020 } ],
+ "bg": 7043
},
{
- "id": "vp_frame_vertical_2",
- "fg": 7069,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7069 } ]
+ "id": "t_tree_dead_season_summer",
+ "fg": [ { "weight": 100, "sprite": 7074 }, { "weight": 100, "sprite": 8020 } ],
+ "bg": 7044
},
{
- "id": "vp_hdframe_cover",
- "fg": 7076,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7076 } ]
+ "id": "t_tree_dead_season_autumn",
+ "fg": [ { "weight": 100, "sprite": 7074 }, { "weight": 100, "sprite": 8020 } ],
+ "bg": 7042
},
{
- "id": "vp_hdframe_cross",
- "fg": 7077,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7077 } ]
+ "id": "t_tree_dead_season_winter",
+ "fg": [ { "weight": 100, "sprite": 7074 }, { "weight": 100, "sprite": 8020 } ],
+ "bg": 7041
+ },
+ { "id": "t_tree_elm_season_spring", "fg": 7076, "bg": 7043 },
+ { "id": "t_tree_elm_season_summer", "fg": 7077, "bg": 7044 },
+ { "id": "t_tree_elm_season_autumn", "fg": 7075, "bg": 7042 },
+ { "id": "t_tree_elm_season_winter", "fg": 7078, "bg": 7041 },
+ { "id": "t_tree_maple", "fg": 7080, "bg": 7043 },
+ { "id": "t_tree_maple_season_summer", "fg": 7081, "bg": 7044 },
+ { "id": "t_tree_maple_season_autumn", "fg": 7079, "bg": 7042 },
+ { "id": "t_tree_maple_season_winter", "fg": 7082, "bg": 7041 },
+ { "id": "t_tree_peach_season_spring", "fg": 7083, "bg": 7043 },
+ { "id": "t_tree_peach_season_summer", "fg": 7086, "bg": 7044 },
+ { "id": "t_tree_peach_harvested", "fg": 7083, "bg": 7044 },
+ { "id": "t_tree_peach_season_winter", "fg": 7087, "bg": 7041 },
+ {
+ "id": "t_tree_peach_season_autumn",
+ "fg": [ { "weight": 1, "sprite": 7084 }, { "weight": 1, "sprite": 7085 } ],
+ "bg": 7042
},
+ { "id": "mon_graboid", "fg": 7040 }
+ ]
+ },
+ {
+ "file": "incomplete.png",
+ "//": "range 7088 to 7887",
+ "tiles": [
+ { "id": "unknown", "fg": 7088 },
{
- "id": "vp_hdframe_cross_unconnected",
- "fg": 7078,
+ "id": "fd_blood",
+ "fg": 7120,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7078 } ]
+ "additional_tiles": [
+ { "id": "center", "fg": 7089 },
+ { "id": "corner", "fg": [ 7091, 7093, 7092, 7090 ] },
+ { "id": "t_connection", "fg": [ 7117, 7119, 7118, 7116 ] },
+ { "id": "edge", "fg": [ 7095, 7094 ] },
+ { "id": "end_piece", "fg": [ 7097, 7099, 7098, 7096 ] },
+ { "id": "unconnected", "fg": [ 7120, 7120 ] }
+ ]
},
{
- "id": "vp_hdframe_ne",
- "fg": 7091,
+ "id": [ "fd_blood_insect", "fd_blood_invertebrate" ],
+ "fg": 7115,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7091 } ]
+ "additional_tiles": [
+ { "id": "center", "fg": 7100 },
+ { "id": "corner", "fg": [ 7102, 7104, 7103, 7101 ] },
+ { "id": "t_connection", "fg": [ 7112, 7114, 7113, 7111 ] },
+ { "id": "edge", "fg": [ 7106, 7105 ] },
+ { "id": "end_piece", "fg": [ 7108, 7110, 7109, 7107 ] },
+ { "id": "unconnected", "fg": [ 7115, 7115 ] }
+ ]
},
+ { "id": "fd_electricity", "fg": [ { "weight": 100, "sprite": 7121 }, { "weight": 100, "sprite": 7122 } ] },
{
- "id": "vp_hdframe_nw",
- "fg": 7092,
+ "id": "fd_web",
+ "fg": [
+ { "weight": 100, "sprite": 7123 },
+ { "weight": 100, "sprite": 7124 },
+ { "weight": 25, "sprite": 7125 },
+ { "weight": 25, "sprite": 7126 }
+ ]
+ },
+ { "id": "fd_smoke", "fg": 7129 },
+ { "id": "fd_fungal_haze", "fg": 7128 },
+ { "id": "fd_nuke_gas", "fg": 7127 },
+ { "id": "fd_spotlight", "fg": 7130 },
+ { "id": "f_makeshift_bed", "fg": 7133 },
+ { "id": "f_straw_bed", "fg": 7134 },
+ { "id": "f_bed_frame", "fg": 7131 },
+ { "id": "f_camp_chair", "fg": 7138 },
+ { "id": "f_lane", "fg": 7139 },
+ { "id": "f_piano", "fg": 7140 },
+ { "id": "f_pinball_machine", "fg": 7141 },
+ { "id": "f_seat_airplane", "fg": 7142 },
+ {
+ "id": "f_sink",
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7092 } ]
+ "fg": 7158,
+ "additional_tiles": [
+ { "id": "center", "fg": 7143 },
+ { "id": "corner", "fg": [ 7145, 7147, 7146, 7144 ] },
+ { "id": "t_connection", "fg": [ 7155, 7157, 7156, 7154 ] },
+ { "id": "edge", "fg": [ 7149, 7148 ] },
+ { "id": "end_piece", "fg": [ 7151, 7153, 7152, 7150 ] },
+ { "id": "unconnected", "fg": 7158 }
+ ]
+ },
+ { "id": "f_solar_unit", "fg": 7159 },
+ { "id": "f_speaker_cabinet", "fg": 7160 },
+ { "id": "f_water_mill", "fg": 7161 },
+ { "id": "water_mill", "fg": 7162 },
+ { "id": "f_water_purifier", "fg": 7163 },
+ { "id": "f_wood_keg", "fg": 7301 },
+ { "id": "30gal_barrel", "fg": 7164 },
+ { "id": "30gal_drum", "fg": 7165 },
+ { "id": "alarmclock", "fg": 7166 },
+ { "id": "clock", "fg": 7166 },
+ { "id": "anvil", "fg": 7170 },
+ { "id": [ "autoclave", "vh_autoclave" ], "fg": 7171 },
+ { "id": "bag_canvas_small", "fg": 7173 },
+ { "id": "bathroom_scale", "fg": 7174 },
+ { "id": "bead_necklace", "fg": 7175 },
+ { "id": "brazier", "fg": 7176 },
+ { "id": "bubblewrap", "fg": 7177 },
+ { "id": "bucket", "fg": 7178 },
+ { "id": "camera_pro", "fg": 7184 },
+ { "id": "condom", "fg": 7185 },
+ { "id": "craft", "fg": 7186 },
+ { "id": "pomegranate", "fg": 7197 },
+ { "id": "peach", "fg": 7195 },
+ { "id": "strawberries", "fg": 7198 },
+ { "id": "cabbage", "fg": 7187 },
+ { "id": "mango", "fg": 7193 },
+ { "id": "kiwi", "fg": 7192 },
+ { "id": "papaya", "fg": 7194 },
+ { "id": "grapefruit", "fg": 7191 },
+ { "id": "pineapple", "fg": 7196 },
+ { "id": "celery", "fg": 7189 },
+ { "id": "chili_pepper", "fg": 7190 },
+ { "id": "carrot", "fg": 7188 },
+ { "id": "zucchini", "fg": 7199 },
+ { "id": "akmag30", "fg": 7200 },
+ { "id": "duct_tape", "fg": 7201 },
+ { "id": "electric_lantern", "fg": 7202 },
+ { "id": "extinguisher", "fg": 7203 },
+ { "id": "sm_extinguisher", "fg": 7204 },
+ { "id": "fan", "fg": 7205 },
+ {
+ "id": [
+ "family_photo",
+ "polaroid_photo",
+ "checkers",
+ "cards_magic",
+ "pictionary",
+ "monopoly",
+ "g_warhammer",
+ "g_warhammer40k",
+ "catan",
+ "battleship",
+ "clue"
+ ],
+ "fg": 7206
+ },
+ { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7207 },
+ { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7209 },
+ { "id": "glock17_17", "fg": 7211 },
+ { "id": "holy_symbol", "fg": 7212 },
+ { "id": "holy_symbol_wood", "fg": 7213 },
+ { "id": "hotplate", "fg": 7214 },
+ { "id": "jerrycan", "fg": 7215 },
+ { "id": "jerrycan_big", "fg": 7216 },
+ { "id": "keg", "fg": 7217 },
+ { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7231 },
+ { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7224 },
+ {
+ "id": [
+ "nyquil",
+ "blueberries_cooked",
+ "soysauce",
+ "hickory_nut_ambrosia",
+ "peanutbutter",
+ "cola_meth",
+ "syrup",
+ "beet_syrup",
+ "molasses",
+ "coffee_syrup",
+ "apple_cider",
+ "chai_tea",
+ "choc_drink",
+ "coffee",
+ "coffee_substitute",
+ "chicory_coffee",
+ "cola",
+ "hot_chocolate",
+ "mex_chocolate",
+ "rootbeer",
+ "spezi",
+ "tea",
+ "tea_bark",
+ "brew_whiskey",
+ "wash_whiskey",
+ "brew_gin",
+ "brew_hb_beer",
+ "brew_moonshine",
+ "wash_moonshine",
+ "wine_barley",
+ "whiskey",
+ "irish_coffee",
+ "long_island",
+ "drink_wild_apple",
+ "drink_rumcola",
+ "beer",
+ "hb_beer",
+ "moonshine",
+ "european_pilsner",
+ "pale_ale",
+ "india_pale_ale",
+ "stout",
+ "belgian_ale",
+ "imperial_stout",
+ "single_malt_whiskey",
+ "sherry",
+ "drink_boozeberry",
+ "sewage",
+ "water_sewage",
+ "herbal_tea",
+ "brew_pine_wine",
+ "cattail_jelly",
+ "salt_water",
+ "soapy_water",
+ "chem_DMSO",
+ "chem_chloroform",
+ "chem_phenol",
+ "chem_glycerol",
+ "disinfectant",
+ "saline",
+ "maple_sap",
+ "rehydration_drink",
+ "sweet_water",
+ "brew_vodka",
+ "wash_vodka",
+ "brew_rum",
+ "wash_rum",
+ "vodka",
+ "gin",
+ "rum",
+ "triple_sec",
+ "protein_drink",
+ "creamsoda",
+ "sauce_pesto",
+ "colamdew",
+ "pine_tea",
+ "pine_wine",
+ "juice",
+ "sports_drink",
+ "brew_fruit_wine",
+ "mixed_alcohol_weak",
+ "fruit_wine",
+ "brandy",
+ "cranberry_juice",
+ "energy_drink",
+ "purple_drink",
+ "crispycran",
+ "drink_strawberry_surprise",
+ "taint_tornado",
+ "strawberries_cooked",
+ "fruit_cooked",
+ "jam_fruit",
+ "sauce_red",
+ "ketchup",
+ "kompot",
+ "V8",
+ "wine_cabernet",
+ "wine_noir",
+ "wine_marsala",
+ "wine_vermouth",
+ "bum_wine",
+ "mixed_alcohol_strong",
+ "drink_kalimotxo",
+ "drink_sewerbrew",
+ "fertilizer_liquid",
+ "nicotine_liquid",
+ "broth",
+ "broth_bone",
+ "dayquil",
+ "mustard",
+ "honey_bottled",
+ "dandelion_tea",
+ "dandelionburdock_tea",
+ "lemonade",
+ "lemonlime",
+ "oj",
+ "orangesoda",
+ "gin_mash",
+ "brew_mead",
+ "brew_dandelion_wine",
+ "brew_burdock_wine",
+ "brew_vinegar",
+ "tequila",
+ "drink_screwdriver",
+ "mead",
+ "dandelion_wine",
+ "burdock_wine",
+ "drink_hobo",
+ "drink_beeknees",
+ "drink_wsour",
+ "honey_gold",
+ "chem_ethanol",
+ "ether",
+ "bleach",
+ "ammonia",
+ "chem_sulphuric_acid",
+ "chem_muriatic_acid",
+ "chem_acetone",
+ "chem_nitric_acid",
+ "chem_hydrogen_peroxide_conc",
+ "chem_acetic_acid",
+ "chem_formaldehyde",
+ "chem_hydrogen_peroxide",
+ "vinegar",
+ "horseradish",
+ "wine_riesling",
+ "wine_chardonnay",
+ "drink_martini"
+ ],
+ "fg": 7234
},
{
- "id": "vp_hdframe_se",
- "fg": 7093,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7093 } ]
+ "id": [
+ "lye",
+ "soup_cullenskink",
+ "pepto",
+ "milkshake",
+ "icecream",
+ "mayonnaise",
+ "almond_milk",
+ "soy_milk",
+ "can_coconut",
+ "eggnog",
+ "milk",
+ "milk_evap",
+ "buttermilk",
+ "milk_curdled",
+ "con_milk",
+ "milk_cream",
+ "brew_mycus_wine",
+ "brew_milk_curdled",
+ "wine_mycus",
+ "eggnog_spiked",
+ "milk_coffee",
+ "milk_tea",
+ "soup_fish",
+ "soup_chicken",
+ "soup_mushroom",
+ "soup_dumplings",
+ "pudding",
+ "poppysyrup",
+ "yoghurt",
+ "soup_veggy",
+ "soup_meat",
+ "curry_veggy",
+ "curry_meat",
+ "soup_woods",
+ "soup_tomato",
+ "young_yeast"
+ ],
+ "fg": 7236
},
{
- "id": "vp_hdframe_sw",
- "fg": 7094,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7094 } ]
- },
+ "id": [
+ "ghee",
+ "cooking_oil",
+ "mugwort_oil",
+ "thyme_oil",
+ "plut_slurry_dense",
+ "plut_slurry",
+ "hi_q_crude_oil",
+ "lo_q_crude_oil",
+ "lo_q_crude_oil_ethanol",
+ "hi_q_crude_oil_ethanol",
+ "lo_q_crude_oil_ethanol_filtered",
+ "hi_q_crude_oil_ethanol_filtered",
+ "lo_q_crude_oil_filtered",
+ "hi_q_crude_oil_filtered",
+ "hi_q_distillate_heads",
+ "hi_q_distillate_tails",
+ "hi_q_distillate"
+ ],
+ "fg": 7235
+ },
+ { "id": "longsword", "fg": 7237 },
+ { "id": "longsword_inferior", "fg": 7239 },
+ { "id": "longsword_fake", "fg": 7238 },
+ { "id": "mask_gas", "fg": 7240 },
+ { "id": "plastic_chunk", "fg": 7241 },
+ { "id": "scrap_copper", "fg": 7242 },
+ { "id": "oil_lamp", "fg": 7243 },
+ { "id": "pickaxe", "fg": 7244 },
+ { "id": "pitchfork", "fg": 7245 },
+ { "id": "plunger_futuristic", "fg": 7246 },
+ { "id": "plunger_toilet", "fg": 7247 },
+ { "id": "pocketwatch", "fg": 7248 },
+ { "id": "bacon", "fg": 7249 },
+ { "id": "porkbelly", "fg": 7250 },
+ { "id": "raw_cured_fatty_meat", "fg": 7251 },
+ { "id": "raw_curing_fatty_meat", "fg": 7252 },
+ { "id": "material_sand", "fg": 7279 },
+ { "id": "material_soil", "fg": 7281 },
+ { "id": "chem_aluminium_powder", "fg": 7253 },
+ { "id": "chem_aluminium_sulphate", "fg": 7254 },
+ { "id": "chem_ammonium_nitrate", "fg": 7255 },
+ { "id": "chem_black_powder", "fg": 7256 },
+ { "id": "cac2powder", "fg": 7257 },
+ { "id": "chilly-p", "fg": 7258 },
+ { "id": "meal_chitin_piece", "fg": 7259 },
+ { "id": "chem_chromium_oxide", "fg": 7260 },
+ { "id": "coffee_raw", "fg": 7261 },
+ { "id": "curry_powder", "fg": 7262 },
+ { "id": "powder_eggs", "fg": 7263 },
+ { "id": "fungicide", "fg": 7264 },
+ { "id": "insecticide", "fg": 7266 },
+ { "id": "chem_hmtd", "fg": 7265 },
+ { "id": "lemonade_powder", "fg": 7267 },
+ { "id": "lye_powder", "fg": 7268 },
+ { "id": "magnesium", "fg": 7269 },
+ { "id": "chem_manganese_dioxide", "fg": 7270 },
+ { "id": "chem_match_head_powder", "fg": 7271 },
+ { "id": "mustard_powder", "fg": 7272 },
+ { "id": "oxy_powder", "fg": 7273 },
+ { "id": "chem_peptone_broth", "fg": 7274 },
+ { "id": "protein_powder", "fg": 7275 },
+ { "id": "material_quicklime", "fg": 7276 },
+ { "id": "chem_rocket_fuel", "fg": 7277 },
+ { "id": "chem_saltpetre", "fg": 7278 },
+ { "id": "gunpowder", "fg": 7280 },
+ { "id": "chem_thermite", "fg": 7282 },
+ { "id": "tin", "fg": 7283 },
+ { "id": "yeast", "fg": 7285 },
+ { "id": "chem_zinc_powder", "fg": 7286 },
{
- "id": "vp_hdframe_vertical_unconnected",
- "fg": 7102,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7102 } ]
- },
+ "id": [
+ "sugar",
+ "artificial_sweetener",
+ "milk_powder",
+ "meal_bone",
+ "bfipowder",
+ "detergent",
+ "coke",
+ "quikclot",
+ "chem_acrylamide"
+ ],
+ "fg": 7284
+ },
+ { "id": "radio", "fg": 7287 },
+ { "id": "ref_lighter", "fg": 7288 },
+ { "id": "rhubarb", "fg": 7289 },
+ { "id": "rope_6", "fg": 7290 },
+ { "id": "spray_can", "fg": 7291 },
+ { "id": "stanag30", "fg": 7292 },
+ { "id": "stepladder", "fg": 7293 },
+ { "id": "stereo", "fg": 7294 },
+ { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7295 },
+ { "id": "waffleiron", "fg": 7296 },
+ { "id": "warhammer", "fg": 7297 },
+ { "id": "welding_mask", "fg": 7298 },
+ { "id": "wind_mill", "fg": 7299 },
+ { "id": "wood_beam", "fg": 7300 },
+ { "id": "wooden_barrel", "fg": 7301 },
+ { "id": "zweihander", "fg": 7302 },
+ { "id": "zweihander_inferior", "fg": 7304 },
+ { "id": "zweihander_fake", "fg": 7303 },
+ { "id": "mon_grenade_hack", "fg": 7313, "bg": 2397 },
+ { "id": "mon_mininuke_hack", "fg": 7315, "bg": 2397 },
+ { "id": "bot_grenade_hack", "fg": 7307 },
+ { "id": "bot_mininuke_hack", "fg": 7308 },
+ { "id": "mon_manhack", "fg": 7314, "bg": 2397 },
+ { "id": "mon_gasbomb_hack", "fg": 7312, "bg": 2397 },
+ { "id": "mon_flashbang_hack", "fg": 7311, "bg": 2397 },
+ { "id": "mon_c4_hack", "fg": 7310, "bg": 2397 },
+ { "id": "mon_EMP_hack", "fg": 7309, "bg": 2397 },
+ { "id": "mon_deer", "fg": 7316, "bg": 2396 },
+ { "id": "mon_frog_giant", "fg": 7317, "bg": 2396 },
+ { "id": "mon_grocerybot", "fg": 7318, "bg": 2397 },
+ { "id": "mon_grocerybot_busted", "fg": 7319, "bg": 2397 },
+ { "id": "mon_raccoon", "fg": 7320, "bg": 2397 },
+ { "id": "mon_weasel", "fg": 7321, "bg": 2397 },
+ { "id": "infrared_creature", "fg": 7322 },
{
- "id": "vp_hdframe_vertical_2_unconnected",
- "fg": 7099,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7099 } ]
- },
+ "id": "weather_rain_drop",
+ "fg": [
+ { "weight": 100, "sprite": 7324 },
+ { "weight": 100, "sprite": 7326 },
+ { "weight": 100, "sprite": 7327 },
+ { "weight": 100, "sprite": 7328 },
+ { "weight": 100, "sprite": 7329 },
+ { "weight": 100, "sprite": 7330 },
+ { "weight": 100, "sprite": 7331 },
+ { "weight": 100, "sprite": 7332 },
+ { "weight": 100, "sprite": 7333 },
+ { "weight": 100, "sprite": 7325 }
+ ]
+ },
+ { "id": "weather_snowflake", "fg": 7334 },
+ { "id": "weather_acid_drop", "fg": 7323 },
+ { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7340 },
+ { "id": "t_card_reader_broken", "fg": 7339 },
+ { "id": "t_card_military", "fg": 7338 },
+ { "id": "t_card_industrial", "fg": 7337 },
+ { "id": "t_card_fp", "fg": 7336 },
+ { "id": "t_floor_red", "fg": 7343 },
+ { "id": "t_floor_green", "fg": 7342 },
+ { "id": "t_floor_blue", "fg": 7341 },
+ { "id": [ "t_searth_test", "t_searth" ], "fg": 7344 },
+ { "id": "t_current_trans", "fg": 7345, "bg": 3792 },
+ { "id": "t_potential_trans", "fg": 7346, "bg": 3792 },
+ { "id": "graffiti", "fg": 7347 },
+ { "id": "t_floor_olight", "fg": 7348, "bg": 3160 },
+ { "id": "t_thconc_floor_olight", "fg": 7348, "bg": 3846 },
+ { "id": "t_metal_floor_olight", "fg": 7348, "bg": 3400 },
+ { "id": "t_pedestal_wyrm", "fg": 7350, "bg": 3600 },
{
- "id": "vp_hdframe_vertical_left",
- "fg": 7100,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7100 } ]
+ "id": "t_pedestal_temple",
+ "fg": [ { "weight": 100, "sprite": 7351 }, { "weight": 100, "sprite": 7349 } ],
+ "bg": 3072
},
{
- "id": "vp_hdframe_vertical_2_left",
- "fg": 7097,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7097 } ]
+ "id": "t_pedestal_temple_season_winter",
+ "fg": [ { "weight": 100, "sprite": 7351 }, { "weight": 100, "sprite": 7349 } ],
+ "bg": 2727
},
+ { "id": "t_zebra", "fg": 7352 },
+ { "id": "t_zebra_season_winter", "fg": 2726 },
{
- "id": "vp_hdframe_vertical_right",
- "fg": 7101,
+ "id": [ "t_metal_railing", "t_concrete_railing", "t_glass_railing" ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7101 } ]
- },
+ "fg": 3536,
+ "bg": 2930,
+ "additional_tiles": [
+ { "id": "center", "bg": 2930, "fg": 3521 },
+ { "id": "corner", "bg": 2930, "fg": [ 3523, 3525, 3524, 3522 ] },
+ { "id": "t_connection", "bg": 2930, "fg": [ 3533, 3535, 3534, 3532 ] },
+ { "id": "edge", "bg": 2930, "fg": [ 3527, 3526 ] },
+ { "id": "end_piece", "bg": 2930, "fg": [ 3529, 3531, 3530, 3528 ] },
+ { "bg": 2930, "id": "unconnected", "fg": [ 3536, 3536 ] }
+ ]
+ },
+ { "id": "t_chaingate_c", "fg": 7354, "bg": 3468 },
+ { "id": "t_chaingate_l", "fg": 7355, "bg": 3468 },
+ { "id": "t_chaingate_o", "fg": 7356, "bg": 3468 },
+ { "id": "t_chainfence_posts", "fg": 7353, "bg": 3468 },
+ { "id": "t_chaingate_c_season_winter", "fg": 7354, "bg": 2727 },
+ { "id": "t_chaingate_l_season_winter", "fg": 7355, "bg": 2727 },
+ { "id": "t_chaingate_o_season_winter", "fg": 7356, "bg": 2727 },
+ { "id": "t_chainfence_posts_season_winter", "fg": 7353, "bg": 2727 },
+ { "id": "t_console", "fg": 7357 },
+ { "id": "t_console_broken", "fg": 7358 },
+ { "id": "t_dirtmound", "fg": 7359, "bg": 3263 },
+ { "id": "t_dirtmound_season_summer", "fg": 7359, "bg": 3273 },
+ { "id": "t_dirtmound_season_autumn", "fg": 7359, "bg": 3268 },
+ { "id": "t_dirtmound_season_winter", "fg": 7360 },
+ { "id": "t_door_metal_c", "fg": 7361 },
+ { "id": "t_door_metal_o", "fg": 7362 },
+ { "id": "t_fern", "fg": 7363, "bg": 3263 },
+ { "id": "t_fern_harvested", "fg": 7364, "bg": 3263 },
+ { "id": "t_fern_season_summer", "fg": 7363, "bg": 3273 },
+ { "id": "t_fern_harvested_season_summer", "fg": 7364, "bg": 3273 },
+ { "id": "t_fern_season_autumn", "fg": 7363, "bg": 3268 },
+ { "id": "t_fern_harvested_season_autumn", "fg": 7364, "bg": 3268 },
+ { "id": "t_fern_season_winter", "fg": 7363, "bg": 2725 },
+ { "id": "t_fern_harvested_season_winter", "fg": 7364, "bg": 2725 },
{
- "id": "vp_hdframe_vertical_2_right",
- "fg": 7098,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7098 } ]
+ "id": [ "t_junk_palisade", "t_junk_wall" ],
+ "fg": [
+ { "weight": 100, "sprite": 7365 },
+ { "weight": 100, "sprite": 7366 },
+ { "weight": 100, "sprite": 7367 },
+ { "weight": 100, "sprite": 7368 }
+ ]
},
{
- "id": "vp_hdframe_horizontal",
- "fg": 7079,
+ "id": "t_paper",
+ "fg": 7384,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7079 } ]
+ "additional_tiles": [
+ { "id": "center", "fg": 7369 },
+ { "id": "corner", "fg": [ 7371, 7373, 7372, 7370 ] },
+ { "id": "t_connection", "fg": [ 7381, 7383, 7382, 7380 ] },
+ { "id": "edge", "fg": [ 7375, 7374 ] },
+ { "id": "end_piece", "fg": [ 7377, 7379, 7378, 7376 ] },
+ { "id": "unconnected", "fg": [ 7384, 7384 ] }
+ ]
},
{
- "id": "vp_hdframe_horizontal_2",
- "fg": 7080,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7080 } ]
+ "id": "t_pit_covered",
+ "fg": 7386,
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ]
},
{
- "id": "vp_hdframe_horizontal_unconnected",
- "fg": 7090,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7090 } ]
+ "id": "t_pit_covered_season_summer",
+ "fg": 7386,
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
},
{
- "id": "vp_hdframe_horizontal_2_unconnected",
- "fg": 7083,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7083 } ]
+ "id": "t_pit_covered_season_autumn",
+ "fg": 7386,
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
},
+ { "id": "t_pit_covered_season_winter", "fg": 7386, "bg": 2727 },
{
- "id": "vp_hdframe_horizontal_front",
- "fg": 7086,
+ "id": [
+ "t_railroad_track",
+ "t_railroad_track_h",
+ "t_railroad_track_v",
+ "t_railroad_track_d",
+ "t_railroad_track_d1",
+ "t_railroad_track_d2",
+ "t_railroad_tie",
+ "t_railroad_tie_h",
+ "t_railroad_tie_v",
+ "t_railroad_tie_d",
+ "t_railroad_track_on_tie",
+ "t_railroad_track_h_on_tie",
+ "t_railroad_track_v_on_tie",
+ "t_railroad_track_d_on_tie"
+ ],
+ "fg": 7402,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7086 } ]
+ "additional_tiles": [
+ { "id": "center", "fg": 7387, "bg": 3537 },
+ { "id": "corner", "fg": [ 7389, 7391, 7390, 7388 ], "bg": 3537 },
+ { "id": "t_connection", "fg": [ 7399, 7401, 7400, 7398 ], "bg": 3537 },
+ { "id": "edge", "fg": [ 7393, 7392 ], "bg": 3537 },
+ { "id": "end_piece", "fg": [ 7395, 7397, 7396, 7394 ], "bg": 3537 },
+ { "id": "unconnected", "fg": [ 7402, 7402 ], "bg": 3537 }
+ ],
+ "bg": 3537
},
+ { "id": "t_reinforced_glass_shutter", "fg": 7403 },
+ { "id": "t_reinforced_glass_shutter_open", "fg": 7404 },
{
- "id": "vp_hdframe_horizontal_2_front",
- "fg": 7081,
+ "id": "t_sandbox",
+ "fg": 7420,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7081 } ]
+ "additional_tiles": [
+ { "id": "center", "fg": 7405 },
+ { "id": "corner", "fg": [ 7407, 7409, 7408, 7406 ] },
+ { "id": "t_connection", "fg": [ 7417, 7419, 7418, 7416 ] },
+ { "id": "edge", "fg": [ 7411, 7410 ] },
+ { "id": "end_piece", "fg": [ 7413, 7415, 7414, 7412 ] },
+ { "id": "unconnected", "fg": [ 7420, 7420 ] }
+ ]
},
+ { "id": "t_slot_machine", "fg": 7421, "bg": 3160 },
+ { "id": "t_strconc_wall", "fg": 7422 },
{
- "id": "vp_hdframe_horizontal_rear",
- "fg": 7088,
+ "id": "t_trunk",
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7088 } ]
+ "fg": [ 7424, 7423 ],
+ "bg": [ { "weight": 100, "sprite": 3263 }, { "weight": 100, "sprite": 3265 } ]
},
{
- "id": "vp_hdframe_horizontal_2_rear",
- "fg": 7082,
+ "id": "t_trunk_season_summer",
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7082 } ]
+ "fg": [ 7424, 7423 ],
+ "bg": [ { "weight": 100, "sprite": 3273 }, { "weight": 100, "sprite": 3275 } ]
},
{
- "id": [ "vp_hdframe_horizontal_left", "vp_hdframe_vertical_T_left" ],
- "fg": 7087,
+ "id": "t_trunk_season_autumn",
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7087 } ]
+ "fg": [ 7424, 7423 ],
+ "bg": [ { "weight": 100, "sprite": 3268 }, { "weight": 100, "sprite": 3270 } ]
},
+ { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7424, 7423 ], "bg": 2727 },
+ { "id": "t_wall_half", "fg": 7425, "bg": 3160 },
{
- "id": "vp_hdframe_horizontal_2_left",
- "fg": 7084,
+ "id": "t_wax",
+ "fg": 7441,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7084 } ]
+ "additional_tiles": [
+ { "id": "center", "fg": 7426 },
+ { "id": "corner", "fg": [ 7428, 7430, 7429, 7427 ] },
+ { "id": "t_connection", "fg": [ 7438, 7440, 7439, 7437 ] },
+ { "id": "edge", "fg": [ 7432, 7431 ] },
+ { "id": "end_piece", "fg": [ 7434, 7436, 7435, 7433 ] },
+ { "id": "unconnected", "fg": [ 7441, 7441 ] }
+ ]
},
+ { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7442, "bg": 4197 },
+ { "id": "t_window_frame", "fg": 7443 },
+ { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7444, "bg": 4197 },
+ { "id": "t_pit_glass", "fg": 2159, "bg": 3488 },
+ { "id": "t_pit_spiked", "fg": 2229, "bg": 3488 },
+ { "id": "tr_firewood_source", "fg": 7445 },
+ { "id": "tr_unfinished_construction", "fg": 7446 },
{
- "id": [ "vp_hdframe_horizontal_right", "vp_hdframe_vertical_T_right" ],
- "fg": 7089,
+ "id": "vp_hdboard_ne",
+ "fg": [ 7473, 7476, 7475, 7474 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7089 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7473, 7476, 7475, 7474 ] } ]
},
{
- "id": "vp_hdframe_horizontal_2_right",
- "fg": 7085,
+ "id": "vp_hdboard_nw",
+ "fg": [ 7477, 7480, 7479, 7478 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7085 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7477, 7480, 7479, 7478 ] } ]
},
{
- "id": "vp_hdframe_vertical",
- "fg": 7095,
+ "id": "vp_hdboard_se",
+ "fg": [ 7481, 7483, 7477, 7482 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7095 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7481, 7483, 7477, 7482 ] } ]
},
{
- "id": "vp_hdframe_vertical_2",
- "fg": 7096,
+ "id": "vp_hdboard_sw",
+ "fg": [ 7484, 7486, 7473, 7485 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7096 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7484, 7486, 7473, 7485 ] } ]
},
{
- "id": "vp_xlframe_cover",
- "fg": 7103,
+ "id": "vp_hdboard_vertical_left",
+ "fg": [ 7487, 7489, 7490, 7488 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7103 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7487, 7489, 7490, 7488 ] } ]
},
{
- "id": "vp_xlframe_cross",
- "fg": 7104,
+ "id": "vp_hdboard_vertical_right",
+ "fg": [ 7490, 7492, 7487, 7491 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7104 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7490, 7492, 7487, 7491 ] } ]
},
{
- "id": "vp_xlframe_cross_unconnected",
- "fg": 7105,
+ "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ],
+ "fg": 7469,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7105 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7469 } ]
},
{
- "id": "vp_xlframe_ne",
- "fg": 7118,
+ "id": "vp_hdboard_horizontal_front",
+ "fg": [ 7469, 7471, 7469, 7470 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7118 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7469, 7471, 7469, 7470 ] } ]
},
{
- "id": "vp_xlframe_nw",
- "fg": 7119,
+ "id": "vp_hdboard_horizontal_rear",
+ "fg": [ 7472, 7470, 7469, 7471 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7119 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7472, 7470, 7469, 7471 ] } ]
},
{
- "id": "vp_xlframe_se",
- "fg": 7120,
+ "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ],
+ "fg": 7487,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7120 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7487 } ]
},
{
- "id": "vp_xlframe_sw",
- "fg": 7121,
+ "id": "vp_hdhalfboard_ne",
+ "fg": [ 7507, 7510, 7509, 7508 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7121 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7507, 7510, 7509, 7508 ] } ]
},
{
- "id": "vp_xlframe_vertical_unconnected",
- "fg": 7129,
+ "id": "vp_hdhalfboard_nw",
+ "fg": [ 7511, 7514, 7513, 7512 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7129 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7511, 7514, 7513, 7512 ] } ]
},
{
- "id": "vp_xlframe_vertical_2_unconnected",
- "fg": 7126,
+ "id": "vp_hdhalfboard_se",
+ "fg": [ 7515, 7518, 7517, 7516 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7126 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7515, 7518, 7517, 7516 ] } ]
},
{
- "id": "vp_xlframe_vertical_left",
- "fg": 7127,
+ "id": "vp_hdhalfboard_sw",
+ "fg": [ 7519, 7522, 7521, 7520 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7127 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7519, 7522, 7521, 7520 ] } ]
},
{
- "id": "vp_xlframe_vertical_2_left",
- "fg": 7124,
+ "id": "vp_hdhalfboard_vertical_left",
+ "fg": [ 7527, 7530, 7529, 7528 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7124 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7527, 7530, 7529, 7528 ] } ]
},
{
- "id": "vp_xlframe_vertical_right",
- "fg": 7128,
+ "id": "vp_hdhalfboard_vertical_right",
+ "fg": [ 7531, 7534, 7533, 7532 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7128 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7531, 7534, 7533, 7532 ] } ]
},
{
- "id": "vp_xlframe_vertical_2_right",
- "fg": 7125,
+ "id": "vp_hdhalfboard_horizontal",
+ "fg": [ 7502, 7505, 7504, 7503 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7125 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7502, 7505, 7504, 7503 ] } ]
},
{
- "id": "vp_xlframe_horizontal",
- "fg": 7106,
+ "id": "vp_hdhalfboard_horizontal_2",
+ "fg": 7497,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7106 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7497 } ]
},
{
- "id": "vp_xlframe_horizontal_2",
- "fg": 7107,
+ "id": "vp_hdhalfboard_horizontal_front",
+ "fg": [ 7502, 7505, 7504, 7503 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7107 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7502, 7505, 7504, 7503 ] } ]
},
{
- "id": "vp_xlframe_horizontal_unconnected",
- "fg": 7117,
+ "id": "vp_hdhalfboard_horizontal_2_front",
+ "fg": [ 7497, 7500, 7499, 7498 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7117 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7497, 7500, 7499, 7498 ] } ]
},
{
- "id": "vp_xlframe_horizontal_2_unconnected",
- "fg": 7110,
+ "id": "vp_hdhalfboard_horizontal_rear",
+ "fg": [ 7506, 7503, 7502, 7505 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7110 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7506, 7503, 7502, 7505 ] } ]
},
{
- "id": "vp_xlframe_horizontal_front",
- "fg": 7113,
+ "id": "vp_hdhalfboard_horizontal_2_rear",
+ "fg": [ 7501, 7498, 7497, 7500 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7113 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7501, 7498, 7497, 7500 ] } ]
},
{
- "id": "vp_xlframe_horizontal_2_front",
- "fg": 7108,
+ "id": "vp_hdhalfboard_vertical",
+ "fg": 7523,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7108 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7523 } ]
},
{
- "id": "vp_xlframe_horizontal_rear",
- "fg": 7115,
+ "id": "vp_hdhalfboard_vertical_2",
+ "fg": 7524,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7115 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7524 } ]
},
{
- "id": "vp_xlframe_horizontal_2_rear",
- "fg": 7109,
+ "id": "vp_hdhalfboard_vertical_2_left",
+ "fg": [ 7525, 7530, 7529, 7528 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7109 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7525, 7530, 7529, 7528 ] } ]
},
{
- "id": [ "vp_xlframe_horizontal_left", "vp_xlframe_vertical_T_left" ],
- "fg": 7114,
+ "id": "vp_hdhalfboard_vertical_2_right",
+ "fg": [ 7526, 7534, 7533, 7532 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7114 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7526, 7534, 7533, 7532 ] } ]
},
{
- "id": "vp_xlframe_horizontal_2_left",
- "fg": 7111,
+ "id": "vp_hdhalfboard_cover",
+ "fg": [ 7493, 7496, 7495, 7494 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7111 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7493, 7496, 7495, 7494 ] } ]
},
{
- "id": [ "vp_xlframe_horizontal_right", "vp_xlframe_vertical_T_right" ],
- "fg": 7116,
+ "id": "vp_xlhalfboard_ne",
+ "fg": [ 7456, 7459, 7458, 7457 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7116 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7456, 7459, 7458, 7457 ] } ]
},
{
- "id": "vp_xlframe_horizontal_2_right",
- "fg": 7112,
+ "id": "vp_xlhalfboard_nw",
+ "fg": [ 7460, 7463, 7462, 7461 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7112 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7460, 7463, 7462, 7461 ] } ]
},
{
- "id": "vp_xlframe_vertical",
- "fg": 7122,
+ "id": "vp_xlhalfboard_se",
+ "fg": 7464,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7122 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7464 } ]
},
{
- "id": "vp_xlframe_vertical_2",
- "fg": 7123,
+ "id": "vp_xlhalfboard_sw",
+ "fg": 7465,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7123 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7465 } ]
},
{
- "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ],
- "fg": 7131
+ "id": "vp_xlhalfboard_vertical_left",
+ "fg": 7467,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7467 } ]
},
{
- "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ],
- "fg": 7130
+ "id": "vp_xlhalfboard_vertical_right",
+ "fg": 7468,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7468 } ]
},
{
- "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ],
- "fg": 7131
+ "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ],
+ "fg": 7451,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7451 } ]
},
{
- "id": "vp_light_blue",
- "fg": [ 7145, 7146 ],
+ "id": "vp_xlhalfboard_horizontal_front",
+ "fg": [ 7451, 7454, 7453, 7452 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7145, 7146 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7451, 7454, 7453, 7452 ] } ]
},
{
- "id": "vp_light_red",
- "fg": [ 7147, 7148 ],
+ "id": "vp_xlhalfboard_horizontal_rear",
+ "fg": 7455,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7147, 7148 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7455 } ]
},
{
- "id": [ "vp_floodlight", "vp_directed_floodlight" ],
- "fg": [ 7139, 7141, 7140, 7138 ],
+ "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ],
+ "fg": 7466,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7139, 7141, 7140, 7138 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7466 } ]
},
{
- "id": "vp_omnicam",
- "fg": 7154,
+ "id": "vp_xlhalfboard_cover",
+ "fg": [ 7447, 7450, 7449, 7448 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7154 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7447, 7450, 7449, 7448 ] } ]
},
{
- "id": [ "vp_veh_table", "vp_veh_table_wood" ],
- "fg": [ 7132, 7132 ],
- "bg": [ 7160, 7159 ],
+ "id": "vp_hdstowboard_ne",
+ "fg": [ 7540, 7543, 7542, 7541 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7133, "bg": [ 7160, 7159 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7540, 7543, 7542, 7541 ] } ]
},
{
- "id": "vp_workbench",
- "fg": [ 7161, 7161 ],
- "bg": 3313,
+ "id": "vp_hdstowboard_nw",
+ "fg": [ 7544, 7547, 7546, 7545 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7161, 7161 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7544, 7547, 7546, 7545 ] } ]
},
{
- "id": "vp_minifridge",
- "fg": [ 7152, 7152 ],
+ "id": "vp_hdstowboard_se",
+ "fg": [ 7548, 7550, 7544, 7549 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7152, 7152 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7548, 7550, 7544, 7549 ] } ]
},
{
- "id": "vp_minifreezer",
- "fg": [ 7151, 7151 ],
+ "id": "vp_hdstowboard_sw",
+ "fg": [ 7551, 7553, 7540, 7552 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7151, 7151 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7551, 7553, 7540, 7552 ] } ]
},
{
- "id": "vp_kitchen_unit",
- "fg": [ 7144, 7144 ],
+ "id": "vp_hdstowboard_vertical_left",
+ "fg": [ 7554, 7556, 7557, 7555 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7144, 7144 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7554, 7556, 7557, 7555 ] } ]
},
{
- "id": "vp_welding_rig",
- "fg": [ 7158, 7158 ],
+ "id": "vp_hdstowboard_vertical_right",
+ "fg": [ 7557, 7555, 7554, 7556 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7158, 7158 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7557, 7555, 7554, 7556 ] } ]
},
{
- "id": "vp_craft_rig",
- "fg": [ 7137, 7137 ],
+ "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ],
+ "fg": 7535,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7137, 7137 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7535 } ]
},
{
- "id": "vp_washing_machine",
- "fg": [ 7157, 7157 ],
+ "id": "vp_hdstowboard_horizontal_front",
+ "fg": [ 7535, 7538, 7537, 7536 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7157, 7157 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7535, 7538, 7537, 7536 ] } ]
},
{
- "id": "vp_veh_forge",
- "fg": [ 7142, 7142 ],
+ "id": "vp_hdstowboard_horizontal_rear",
+ "fg": [ 7539, 7536, 7535, 7538 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7142, 7142 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7539, 7536, 7535, 7538 ] } ]
},
{
- "id": "vp_veh_kiln",
- "fg": [ 7143, 7143 ],
+ "id": "vp_hdstowboard_vertical",
+ "fg": 7555,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7143, 7143 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7555 } ]
},
{
- "id": "vp_chemlab",
- "fg": [ 7136, 7136 ],
+ "id": "vp_woodboard_ne",
+ "fg": [ 7562, 7563, 7568, 7569 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7136, 7136 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7562, 7563, 7568, 7569 ] } ]
},
{
- "id": "vp_aisle_vertical",
- "fg": 7135,
+ "id": "vp_woodboard_nw",
+ "fg": [ 7564, 7565, 7566, 7567 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7135 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7564, 7565, 7566, 7567 ] } ]
},
{
- "id": "vp_aisle_horizontal",
- "fg": 7134,
+ "id": "vp_woodboard_se",
+ "fg": [ 7566, 7567, 7564, 7565 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7134 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7566, 7567, 7564, 7565 ] } ]
},
- { "id": "vp_trunk_floor", "fg": 7155, "bg": 7135 },
{
- "id": "vp_wooden_aisle_vertical",
- "fg": [ 7160, 7159 ],
+ "id": "vp_woodboard_sw",
+ "fg": [ 7568, 7569, 7562, 7563 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7160, 7159 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7568, 7569, 7562, 7563 ] } ]
},
{
- "id": "vp_wooden_aisle_horizontal",
- "fg": [ 7159, 7160 ],
+ "id": "vp_woodboard_vertical_left",
+ "fg": [ 7570, 7560, 7571, 7558 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7159, 7160 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7570, 7560, 7571, 7558 ] } ]
},
{
- "id": "vp_lit_aisle_vertical",
- "fg": 7150,
+ "id": "vp_woodboard_vertical_right",
+ "fg": [ 7571, 7558, 7570, 7560 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7150 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7571, 7558, 7570, 7560 ] } ]
},
{
- "id": "vp_lit_aisle_horizontal",
- "fg": 7149,
+ "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ],
+ "fg": [ 7558, 7559, 7560, 7561 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7149 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7558, 7559, 7560, 7561 ] } ]
},
{
- "id": "vp_mounted_spare_tire",
- "fg": 7153,
+ "id": "vp_woodboard_horizontal_rear",
+ "fg": [ 7560, 7561, 7558, 7559 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7153 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7560, 7561, 7558, 7559 ] } ]
},
{
- "id": [ "vp_saddle", "vp_saddle_pedal" ],
- "fg": [ 7163, 7165, 7164, 7162 ],
+ "id": [ "vp_woodhalfboard_ne" ],
+ "fg": 7576,
+ "rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7163, 7165, 7164, 7162 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7576 } ]
},
{
- "id": [ "vp_seat_wood", "seat_wood_bench" ],
- "fg": [ 7170, 7170, 7171, 7171 ],
- "bg": [ 7160, 7159 ],
+ "id": "vp_woodhalfboard_nw",
+ "fg": 7575,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7170, 7170, 7171, 7171 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7575 } ]
},
{
- "id": "vp_seat_wood_flimsy",
- "fg": [ 7168, 7168, 7169, 7169 ],
- "bg": [ 7160, 7159 ],
+ "id": "vp_woodhalfboard_se",
+ "fg": 7580,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7168, 7168, 7169, 7169 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7580 } ]
},
{
- "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ],
- "fg": [ 7203, 7201, 7196, 7202 ],
+ "id": "vp_woodhalfboard_sw",
+ "fg": 7579,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7203, 7201, 7196, 7202 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7579 } ]
},
{
- "id": "vp_seat_back",
- "fg": [ 7172, 7195, 7194, 7193 ],
+ "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ],
+ "fg": 7577,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7172, 7195, 7194, 7193 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7577 } ]
},
{
- "id": "vp_seat_back_left",
- "fg": [ 7185, 7188, 7187, 7186 ],
+ "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ],
+ "fg": 7581,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7185, 7188, 7187, 7186 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7581 } ]
},
{
- "id": "vp_seat_back_right",
- "fg": [ 7189, 7192, 7191, 7190 ],
+ "id": [
+ "vp_woodhalfboard_horizontal",
+ "vp_woodhalfboard_horizontal_2",
+ "vp_woodhalfboard_horizontal_front",
+ "vp_woodhalfboard_horizontal_2_front"
+ ],
+ "fg": 7574,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7189, 7192, 7191, 7190 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7574 } ]
},
{
- "id": "vp_seat_back_vertical",
- "fg": [ 7193, 7172, 7195, 7194 ],
+ "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ],
+ "fg": 7578,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7193, 7172, 7195, 7194 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7578 } ]
},
{
- "id": "vp_seat_back_vertical_left",
- "fg": [ 7186, 7185, 7188, 7187 ],
+ "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ],
+ "fg": 7573,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7186, 7185, 7188, 7187 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7573 } ]
},
{
- "id": "vp_seat_back_vertical_right",
- "fg": [ 7190, 7189, 7192, 7191 ],
+ "id": [ "vp_woodhalfboard_cover" ],
+ "fg": 7572,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7190, 7189, 7192, 7191 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7572 } ]
},
{
- "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ],
- "fg": [ 7200, 7198, 7197, 7199 ],
+ "id": [ "vp_basketsm", "vp_basketsm_external" ],
+ "fg": [ 7593, 7592 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7200, 7198, 7197, 7199 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7593, 7592 ] } ]
},
{
- "id": "vp_seat_back_leather",
- "fg": [ 7173, 7184, 7183, 7182 ],
+ "id": "vp_basketsm_bike_rear",
+ "fg": [ 7589, 7591, 7590, 7588 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7173, 7184, 7183, 7182 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7589, 7591, 7590, 7588 ] } ]
},
{
- "id": "vp_seat_back_leather_left",
- "fg": [ 7174, 7177, 7176, 7175 ],
+ "id": [ "vp_basketlg", "vp_basketlg_external" ],
+ "fg": [ 7587, 7586 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7174, 7177, 7176, 7175 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7587, 7586 ] } ]
},
{
- "id": "vp_seat_back_leather_right",
- "fg": [ 7178, 7181, 7180, 7179 ],
+ "id": "vp_basketlg_cart",
+ "fg": [ 7583, 7585, 7584, 7582 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7178, 7181, 7180, 7179 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7583, 7585, 7584, 7582 ] } ]
},
{
- "id": "vp_seat_back_leather_vertical",
- "fg": [ 7182, 7173, 7184, 7183 ],
+ "id": "vp_box",
+ "fg": [ 7594, 7595 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7182, 7173, 7184, 7183 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7594, 7595 ] } ]
},
{
- "id": "vp_seat_back_leather_vertical_left",
- "fg": [ 7175, 7174, 7177, 7176 ],
+ "id": "vp_wood box",
+ "fg": [ 7604, 7603 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7175, 7174, 7177, 7176 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7604, 7603 ] } ]
},
{
- "id": "vp_seat_back_leather_vertical_right",
- "fg": [ 7179, 7178, 7181, 7180 ],
+ "id": "vp_box_wheelbarrow",
+ "fg": [ 7597, 7599, 7598, 7596 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7179, 7178, 7181, 7180 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7597, 7599, 7598, 7596 ] } ]
},
{
- "id": "vp_seat_rear",
- "fg": [ 7196, 7202, 7203, 7201 ],
+ "id": "vp_trunk",
+ "fg": 7601,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7196, 7202, 7203, 7201 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7601 } ]
},
{
- "id": "vp_seat_leather_rear",
- "fg": [ 7197, 7199, 7200, 7198 ],
+ "id": "vp_trunk_rear_edge",
+ "fg": 7602,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7197, 7199, 7200, 7198 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7602 } ]
},
{
- "id": [ "vp_seed_drill" ],
- "fg": [ 7205, 7207, 7206, 7204 ],
+ "id": [ "vp_cargo_space", "animal_compartment" ],
+ "fg": 7600,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7793, "bg": [ 7205, 7207, 7206, 7204 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7600 } ]
},
{
- "id": "vp_solar_panel",
- "fg": 7208,
+ "id": [ "vp_hddoor_trunk", "vp_hdhatch", "vp_hdhatch_opaque" ],
+ "fg": [ 7628, 7634, 7633, 7632 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7208 } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7629, 7631, 7629, 7630 ] }, { "id": "broken", "fg": 7608, "bg": [ 7629, 7631, 7629, 7630 ] } ]
},
{
- "id": "vp_reinforced_solar_panel",
- "fg": 7211,
- "bg": 7208,
+ "id": [ "vp_hddoor", "vp_hddoor_front" ],
+ "fg": [ 7616, 7617, 7616, 7615 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7208 } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7610, 7611, 7610, 7609 ] }, { "id": "broken", "fg": 7608, "bg": [ 7610, 7611, 7610, 7609 ] } ]
},
{
- "id": "vp_solar_panel_v2",
- "fg": 7209,
+ "id": "vp_hddoor_rear",
+ "fg": [ 7625, 7627, 7626, 7624 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7209 } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7613, 7614, 7613, 7612 ] }, { "id": "broken", "fg": 7608, "bg": [ 7613, 7614, 7613, 7612 ] } ]
},
{
- "id": "vp_reinforced_solar_panel_v2",
- "fg": 7211,
- "bg": 7209,
+ "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ],
+ "fg": [ 7619, 7620, 7619, 7618 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7209 } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7610, 7611, 7610, 7609 ] }, { "id": "broken", "fg": 7608, "bg": [ 7610, 7611, 7610, 7609 ] } ]
},
{
- "id": "vp_solar_panel_v3",
- "fg": 7210,
+ "id": "vp_hddoor_opaque_rear",
+ "fg": [ 7622, 7623, 7622, 7621 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7210 } ]
+ "additional_tiles": [ { "id": "open", "fg": [ 7613, 7614, 7613, 7612 ] }, { "id": "broken", "fg": 7608, "bg": [ 7613, 7614, 7613, 7612 ] } ]
},
{
- "id": [
- "vp_mounted_browning",
- "vp_mounted_mk19",
- "vp_mounted_abzats",
- "vp_m249",
- "vp_m249_semi",
- "vp_mounted_m1918",
- "vp_mounted_rm298",
- "vp_mounted_rm614",
- "vp_mounted_m240",
- "vp_mounted_m60",
- "vp_mounted_m60_semi"
- ],
- "//": "rifles and machineguns",
- "fg": 7214,
- "bg": 7212,
+ "id": "vp_ram_spiked",
+ "fg": 7636,
+ "rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7214 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7636 } ]
},
{
- "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ],
- "//": "energy weapons",
- "fg": 7213,
- "bg": 7212,
+ "id": "vp_ram_steel",
+ "fg": 7637,
+ "rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7213 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7636 } ]
},
{
- "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ],
- "//": "railguns",
- "fg": 7215,
- "bg": 7212,
+ "id": "vp_spike",
+ "fg": 7638,
+ "rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7215 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7638 } ]
},
{
- "id": [ "vp_mounted_bigun", "vp_mounted_m134" ],
- "//": "multibarrel weapons",
- "fg": 7214,
- "bg": 7212,
+ "id": "vp_frame_cover",
+ "fg": 7640,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7214 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7640 } ]
},
{
- "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ],
- "//": "liquid sprayers",
- "fg": 7214,
- "bg": 7212,
+ "id": "vp_frame_cross",
+ "fg": 7641,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7214 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7641 } ]
},
{
- "id": "vp_tow_launcher",
- "//": "rocket tubes",
- "fg": 7214,
- "bg": 7212,
+ "id": "vp_frame_cross_unconnected",
+ "fg": 7642,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7214 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7642 } ]
},
{
- "id": "vp_animal_compartment",
- "fg": [ 7216, 7216, 7216, 7216 ],
+ "id": "vp_frame_ne",
+ "fg": 7655,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7216, 7216, 7216, 7216 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7655 } ]
},
{
- "id": "vp_basketsm_wheelchair",
- "fg": [ 7218, 7220, 7219, 7217 ],
+ "id": "vp_frame_nw",
+ "fg": 7656,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7218, 7220, 7219, 7217 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7656 } ]
},
{
- "id": [ "vp_wheel", "vp_wheel_steerable" ],
- "fg": 7221,
+ "id": "vp_frame_se",
+ "fg": 7657,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7221 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7657 } ]
},
{
- "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable", "vp_wheel_bicycle_or", "vp_wheel_bicycle_or_steerable" ],
- "fg": [ 7223, 7225, 7224, 7222 ],
+ "id": "vp_frame_sw",
+ "fg": 7658,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7223, 7225, 7224, 7222 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7658 } ]
},
{
- "id": [ "vp_wheel_bicycle_rear", "vp_wheel_bicycle_or_rear" ],
- "fg": [ 7224, 7222, 7223, 7225 ],
+ "id": "vp_frame_vertical_unconnected",
+ "fg": 7666,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7224, 7222, 7223, 7225 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7666 } ]
},
{
- "id": [
- "vp_reinforced_windshield",
- "vp_reinforced_windshield_horizontal",
- "vp_reinforced_windshield_horizontal_front",
- "vp_reinforced_windshield_front_edge"
- ],
- "fg": [ 7226, 7229, 7228, 7227 ],
+ "id": "vp_frame_vertical_2_unconnected",
+ "fg": 7663,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7226, 7229, 7228, 7227 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7663 } ]
},
{
- "id": "vp_reinforced_windshield_horizontal_rear",
- "fg": 7230,
+ "id": "vp_frame_vertical_left",
+ "fg": 7664,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7230 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7664 } ]
},
{
- "id": "vp_reinforced_windshield_horizontal_rear_edge",
- "fg": 7231,
+ "id": "vp_frame_vertical_2_left",
+ "fg": 7661,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7231 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7661 } ]
},
{
- "id": "vp_reinforced_windshield_nw",
- "fg": [ 7236, 7239, 7238, 7237 ],
+ "id": "vp_frame_vertical_right",
+ "fg": 7665,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7236, 7239, 7238, 7237 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7665 } ]
},
{
- "id": "vp_reinforced_windshield_ne",
- "fg": [ 7232, 7235, 7234, 7233 ],
+ "id": "vp_frame_vertical_2_right",
+ "fg": 7662,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7232, 7235, 7234, 7233 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7662 } ]
},
{
- "id": "vp_reinforced_windshield_sw",
- "fg": 7245,
+ "id": "vp_frame_horizontal",
+ "fg": 7643,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7245 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7643 } ]
},
{
- "id": "vp_reinforced_windshield_se",
- "fg": 7240,
+ "id": "vp_frame_horizontal_2",
+ "fg": 7644,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": 7240 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7644 } ]
},
{
- "id": "vp_reinforced_windshield_sw_edge",
- "fg": [ 7246, 7249, 7248, 7247 ],
+ "id": "vp_frame_horizontal_unconnected",
+ "fg": 7654,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7246, 7249, 7248, 7247 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7654 } ]
},
{
- "id": "vp_reinforced_windshield_se_edge",
- "fg": [ 7241, 7244, 7243, 7242 ],
+ "id": "vp_frame_horizontal_2_unconnected",
+ "fg": 7647,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7241, 7244, 7243, 7242 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7647 } ]
},
{
- "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ],
- "fg": [ 7250, 7253, 7252, 7251 ],
+ "id": "vp_frame_horizontal_front",
+ "fg": 7650,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7250, 7253, 7252, 7251 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7650 } ]
},
{
- "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ],
- "fg": [ 7254, 7257, 7256, 7255 ],
+ "id": "vp_frame_horizontal_2_front",
+ "fg": 7645,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7254, 7257, 7256, 7255 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7645 } ]
},
{
- "id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ],
- "fg": [ 7250, 7253, 7252, 7251 ],
+ "id": "vp_frame_horizontal_rear",
+ "fg": 7652,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7250, 7253, 7252, 7251 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7652 } ]
},
{
- "id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ],
- "fg": [ 7254, 7257, 7256, 7255 ],
+ "id": "vp_frame_horizontal_2_rear",
+ "fg": 7646,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7014, "bg": [ 7254, 7257, 7256, 7255 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7646 } ]
},
{
- "id": "vp_frame_wood_vertical_2",
- "fg": 7278,
+ "id": [ "vp_frame_horizontal_left", "vp_frame_vertical_T_left" ],
+ "fg": 7651,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7278 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7651 } ]
},
{
- "id": "vp_frame_wood_vertical_2_unconnected",
- "fg": 7281,
+ "id": "vp_frame_horizontal_2_left",
+ "fg": 7648,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7281 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7648 } ]
},
{
- "id": "vp_frame_wood_vertical_2_right",
- "fg": 7280,
+ "id": [ "vp_frame_horizontal_right", "vp_frame_vertical_T_right" ],
+ "fg": 7653,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7280 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7653 } ]
},
{
- "id": "vp_frame_wood_vertical_2_left",
- "fg": 7279,
+ "id": "vp_frame_horizontal_2_right",
+ "fg": 7649,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7279 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7649 } ]
},
{
- "id": "vp_frame_wood_vertical",
- "fg": 7277,
+ "id": "vp_frame_vertical",
+ "fg": 7659,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7277 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7659 } ]
},
{
- "id": "vp_frame_wood_vertical_unconnected",
- "fg": 7284,
+ "id": "vp_frame_vertical_2",
+ "fg": 7660,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7284 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7660 } ]
},
{
- "id": "vp_frame_wood_vertical_right",
- "fg": 7283,
+ "id": "vp_hdframe_cover",
+ "fg": 7667,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7283 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7667 } ]
},
{
- "id": "vp_frame_wood_vertical_left",
- "fg": 7282,
+ "id": "vp_hdframe_cross",
+ "fg": 7668,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7282 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7668 } ]
},
{
- "id": "vp_frame_wood_sw",
- "fg": 7276,
+ "id": "vp_hdframe_cross_unconnected",
+ "fg": 7669,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7276 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7669 } ]
},
{
- "id": "vp_frame_wood_se",
- "fg": 7275,
+ "id": "vp_hdframe_ne",
+ "fg": 7682,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7275 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7682 } ]
},
{
- "id": "vp_frame_wood_nw",
- "fg": 7274,
+ "id": "vp_hdframe_nw",
+ "fg": 7683,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7274 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7683 } ]
},
{
- "id": "vp_frame_wood_ne",
- "fg": 7273,
+ "id": "vp_hdframe_se",
+ "fg": 7684,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7273 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7684 } ]
},
{
- "id": "vp_frame_wood_horizontal_2",
- "fg": 7262,
+ "id": "vp_hdframe_sw",
+ "fg": 7685,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7262 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7685 } ]
},
{
- "id": "vp_frame_wood_horizontal_2_unconnected",
- "fg": 7267,
+ "id": "vp_hdframe_vertical_unconnected",
+ "fg": 7693,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7267 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7693 } ]
},
{
- "id": "vp_frame_wood_horizontal_2_right",
- "fg": 7266,
+ "id": "vp_hdframe_vertical_2_unconnected",
+ "fg": 7690,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7266 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7690 } ]
},
{
- "id": "vp_frame_wood_horizontal_2_rear",
- "fg": 7265,
+ "id": "vp_hdframe_vertical_left",
+ "fg": 7691,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7265 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7691 } ]
},
{
- "id": "vp_frame_wood_horizontal_2_left",
- "fg": 7264,
+ "id": "vp_hdframe_vertical_2_left",
+ "fg": 7688,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7264 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7688 } ]
},
{
- "id": "vp_frame_wood_horizontal_2_front",
- "fg": 7263,
+ "id": "vp_hdframe_vertical_right",
+ "fg": 7692,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7263 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7692 } ]
},
{
- "id": "vp_frame_wood_horizontal",
- "fg": 7261,
+ "id": "vp_hdframe_vertical_2_right",
+ "fg": 7689,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7261 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7689 } ]
},
{
- "id": "vp_frame_wood_horizontal_unconnected",
- "fg": 7272,
+ "id": "vp_hdframe_horizontal",
+ "fg": 7670,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7272 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7670 } ]
},
{
- "id": "vp_frame_wood_horizontal_right",
- "fg": 7271,
+ "id": "vp_hdframe_horizontal_2",
+ "fg": 7671,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7271 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7671 } ]
},
{
- "id": "vp_frame_wood_horizontal_rear",
- "fg": 7270,
+ "id": "vp_hdframe_horizontal_unconnected",
+ "fg": 7681,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7270 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7681 } ]
},
{
- "id": "vp_frame_wood_horizontal_left",
- "fg": 7269,
+ "id": "vp_hdframe_horizontal_2_unconnected",
+ "fg": 7674,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7269 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7674 } ]
},
{
- "id": "vp_frame_wood_horizontal_front",
- "fg": 7268,
+ "id": "vp_hdframe_horizontal_front",
+ "fg": 7677,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7268 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7677 } ]
},
{
- "id": "vp_frame_wood_cross",
- "fg": 7259,
+ "id": "vp_hdframe_horizontal_2_front",
+ "fg": 7672,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7259 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7672 } ]
},
{
- "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ],
- "fg": 7260,
+ "id": "vp_hdframe_horizontal_rear",
+ "fg": 7679,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7260 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7679 } ]
},
{
- "id": "vp_frame_wood_cover",
- "fg": 7258,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7258 } ]
- },
- { "id": "f_floor_mattress", "fg": 6540 },
- { "id": "f_fungal_mass", "fg": 6543 },
- { "id": "f_fungal_tangle", "fg": 6544 },
- { "id": "f_brazier", "fg": 6545 },
- { "id": "emer_blanket", "fg": 6575 },
- { "id": "emer_blanket_on", "fg": 6576 },
- { "id": "jacket_evac", "fg": 6577 },
- { "id": "f_autoclave", "fg": 6580 },
- { "id": "jeans_red", "fg": 6587 },
- { "id": "tights", "fg": 6588 },
- { "id": "blade", "fg": 6589 },
- { "id": "rm13_armor", "fg": 6590 },
- { "id": "55gal_drum", "fg": 6591 },
- { "id": "leather_funnel", "fg": 6616 },
- { "id": "tr_leather_funnel", "fg": 6618 },
- { "id": "brush", "fg": 6626 },
- { "id": "casserole", "fg": 6627 },
- { "id": "curling_iron", "fg": 6628 },
- { "id": "cutting_board", "fg": 6629 },
- { "id": "elec_hairtrimmer", "fg": 6630 },
- { "id": "hairbrush", "fg": 6631 },
- { "id": "metal_file", "fg": 6633 },
- { "id": "mobile_memory_card", "fg": 6634 },
- { "id": "plastic_straw", "fg": 6635 },
- { "id": "razor_blade", "fg": 6636 },
- { "id": "razor_shaving", "fg": 6637 },
- { "id": "string_floss", "fg": 6638 },
- { "id": "tumbler_plastic", "fg": 6640 },
- { "id": "xacto", "fg": 6641 },
- { "id": "mon_creeper_hub", "fg": 6713 },
- { "id": "mon_creeper_vine", "fg": 6714 },
- { "id": "f_rubble_landfill", "fg": 6744 },
- { "id": "t_roof_paper", "fg": 6794 },
- { "id": "crack_glass_left", "fg": 7015 },
- { "id": "vp_ram_mattress", "fg": 7044 },
- { "id": "vp_tearer", "fg": 7048 },
- { "id": "vp_vehicle_scoop", "fg": 7156 },
- { "id": "seat", "fg": 7166 },
- { "id": "seat_leather", "fg": 7167 }
- ]
- },
- {
- "file": "incomplete_tall.png",
- "//": "range 7296 to 7727",
- "sprite_width": 32,
- "sprite_height": 64,
- "sprite_offset_x": 0,
- "sprite_offset_y": -32,
- "tiles": [
- { "id": "mon_boomer_fungus", "fg": 7296, "bg": 4436 },
- { "id": "mon_zombie_soldier_acid_1", "fg": 7297, "bg": 4436 },
- { "id": "mon_zombie_ears", "fg": 7298, "bg": 4436 },
- { "id": "overlay_female_worn_helmet_riot_raised", "fg": 7299 },
- { "id": "overlay_male_worn_helmet_riot_raised", "fg": 7300 },
- {
- "id": "vp_board_ne",
- "fg": [ 7310, 7313, 7312, 7311 ],
+ "id": "vp_hdframe_horizontal_2_rear",
+ "fg": 7673,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7310, 7313, 7312, 7311 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7673 } ]
},
{
- "id": "vp_board_nw",
- "fg": [ 7314, 7317, 7316, 7315 ],
+ "id": [ "vp_hdframe_horizontal_left", "vp_hdframe_vertical_T_left" ],
+ "fg": 7678,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7314, 7317, 7316, 7315 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7678 } ]
},
{
- "id": "vp_board_se",
- "fg": [ 7318, 7320, 7314, 7319 ],
+ "id": "vp_hdframe_horizontal_2_left",
+ "fg": 7675,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7318, 7320, 7314, 7319 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7675 } ]
},
{
- "id": "vp_board_sw",
- "fg": [ 7321, 7323, 7310, 7322 ],
+ "id": [ "vp_hdframe_horizontal_right", "vp_hdframe_vertical_T_right" ],
+ "fg": 7680,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7321, 7323, 7310, 7322 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7680 } ]
},
{
- "id": "vp_board_vertical_left",
- "fg": [ 7307, 7324, 7309, 7308 ],
+ "id": "vp_hdframe_horizontal_2_right",
+ "fg": 7676,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7307, 7324, 7309, 7308 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7676 } ]
},
{
- "id": "vp_board_vertical_right",
- "fg": [ 7309, 7308, 7307, 7324 ],
+ "id": "vp_hdframe_vertical",
+ "fg": 7686,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7309, 7308, 7307, 7324 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7686 } ]
},
{
- "id": "vp_board_wheel_left",
- "fg": [ 7307, 7326, 7309, 7308 ],
+ "id": "vp_hdframe_vertical_2",
+ "fg": 7687,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7307, 7326, 7309, 7308 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7687 } ]
},
{
- "id": "vp_board_wheel_right",
- "fg": [ 7309, 7308, 7307, 7326 ],
+ "id": "vp_xlframe_cover",
+ "fg": 7694,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7309, 7308, 7307, 7326 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7694 } ]
},
{
- "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ],
- "fg": [ 7308, 7325, 7308, 7325 ],
+ "id": "vp_xlframe_cross",
+ "fg": 7695,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7308, 7325, 7308, 7325 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7695 } ]
},
{
- "id": "vp_board_horizontal_front",
- "fg": [ 7308, 7305, 7304, 7303 ],
+ "id": "vp_xlframe_cross_unconnected",
+ "fg": 7696,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7308, 7305, 7304, 7303 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7696 } ]
},
{
- "id": "vp_board_horizontal_rear",
- "fg": [ 7306, 7309, 7308, 7307 ],
+ "id": "vp_xlframe_ne",
+ "fg": 7709,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7306, 7309, 7308, 7307 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7709 } ]
},
{
- "id": [ "vp_board_vertical", "vp_board_vertical_2" ],
- "fg": [ 7325, 7308, 7325, 7308 ],
+ "id": "vp_xlframe_nw",
+ "fg": 7710,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7325, 7308, 7325, 7308 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7710 } ]
},
{
- "id": "vp_board_ne_edge",
- "fg": [ 7310, 7328, 7312, 7327 ],
+ "id": "vp_xlframe_se",
+ "fg": 7711,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7310, 7328, 7312, 7327 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7711 } ]
},
{
- "id": "vp_board_nw_edge",
- "fg": [ 7314, 7330, 7316, 7329 ],
+ "id": "vp_xlframe_sw",
+ "fg": 7712,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7314, 7330, 7316, 7329 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7712 } ]
},
{
- "id": "vp_stowboard_ne",
- "fg": [ 7336, 7339, 7338, 7337 ],
+ "id": "vp_xlframe_vertical_unconnected",
+ "fg": 7720,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7336, 7339, 7338, 7337 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7720 } ]
},
{
- "id": "vp_stowboard_nw",
- "fg": [ 7340, 7343, 7342, 7341 ],
+ "id": "vp_xlframe_vertical_2_unconnected",
+ "fg": 7717,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7340, 7343, 7342, 7341 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7717 } ]
},
{
- "id": "vp_stowboard_se",
- "fg": [ 7344, 7346, 7340, 7345 ],
+ "id": "vp_xlframe_vertical_left",
+ "fg": 7718,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7344, 7346, 7340, 7345 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7718 } ]
},
{
- "id": "vp_stowboard_sw",
- "fg": [ 7347, 7349, 7336, 7348 ],
+ "id": "vp_xlframe_vertical_2_left",
+ "fg": 7715,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7347, 7349, 7336, 7348 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7715 } ]
},
{
- "id": "vp_stowboard_vertical_left",
- "fg": [ 7350, 7352, 7353, 7351 ],
+ "id": "vp_xlframe_vertical_right",
+ "fg": 7719,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7350, 7352, 7353, 7351 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7719 } ]
},
{
- "id": "vp_stowboard_vertical_right",
- "fg": [ 7353, 7351, 7350, 7352 ],
+ "id": "vp_xlframe_vertical_2_right",
+ "fg": 7716,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7353, 7351, 7350, 7352 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7716 } ]
},
{
- "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ],
- "fg": [ 7331, 7354, 7331, 7354 ],
+ "id": "vp_xlframe_horizontal",
+ "fg": 7697,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7331, 7354, 7331, 7354 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7697 } ]
},
{
- "id": "vp_stowboard_horizontal_front",
- "fg": [ 7331, 7334, 7333, 7332 ],
+ "id": "vp_xlframe_horizontal_2",
+ "fg": 7698,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7331, 7334, 7333, 7332 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7698 } ]
},
{
- "id": "vp_stowboard_horizontal_rear",
- "fg": [ 7335, 7332, 7331, 7334 ],
+ "id": "vp_xlframe_horizontal_unconnected",
+ "fg": 7708,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7335, 7332, 7331, 7334 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7708 } ]
},
{
- "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ],
- "fg": [ 7354, 7331, 7354, 7331 ],
+ "id": "vp_xlframe_horizontal_2_unconnected",
+ "fg": 7701,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7354, 7331, 7354, 7331 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7701 } ]
},
{
- "id": "vp_stowboard_wheel_left",
- "fg": [ 7334, 7355, 7332, 7351 ],
+ "id": "vp_xlframe_horizontal_front",
+ "fg": 7704,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7334, 7355, 7332, 7351 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7704 } ]
},
{
- "id": "vp_stowboard_wheel_right",
- "fg": [ 7332, 7351, 7334, 7355 ],
+ "id": "vp_xlframe_horizontal_2_front",
+ "fg": 7699,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7332, 7351, 7334, 7355 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7699 } ]
},
{
- "id": "vp_clothboard_ne",
- "fg": [ 7361, 7364, 7363, 7362 ],
+ "id": "vp_xlframe_horizontal_rear",
+ "fg": 7706,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7361, 7364, 7363, 7362 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7706 } ]
},
{
- "id": "vp_clothboard_nw",
- "fg": [ 7364, 7366, 7365, 7361 ],
+ "id": "vp_xlframe_horizontal_2_rear",
+ "fg": 7700,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7364, 7366, 7365, 7361 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7700 } ]
},
{
- "id": "vp_clothboard_se",
- "fg": [ 7367, 7369, 7364, 7368 ],
+ "id": [ "vp_xlframe_horizontal_left", "vp_xlframe_vertical_T_left" ],
+ "fg": 7705,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7367, 7369, 7364, 7368 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7705 } ]
},
{
- "id": "vp_clothboard_sw",
- "fg": [ 7370, 7372, 7361, 7371 ],
+ "id": "vp_xlframe_horizontal_2_left",
+ "fg": 7702,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7370, 7372, 7361, 7371 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7702 } ]
},
{
- "id": "vp_clothboard_vertical_left",
- "fg": [ 7358, 7373, 7356, 7360 ],
+ "id": [ "vp_xlframe_horizontal_right", "vp_xlframe_vertical_T_right" ],
+ "fg": 7707,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7358, 7373, 7356, 7360 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7707 } ]
},
{
- "id": "vp_clothboard_vertical_right",
- "fg": [ 7356, 7360, 7358, 7373 ],
+ "id": "vp_xlframe_horizontal_2_right",
+ "fg": 7703,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7356, 7360, 7358, 7373 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7703 } ]
},
{
- "id": "vp_clothboard_wheel_left",
- "fg": [ 7358, 7375, 7356, 7360 ],
+ "id": "vp_xlframe_vertical",
+ "fg": 7713,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7358, 7375, 7356, 7360 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7713 } ]
},
{
- "id": "vp_clothboard_wheel_right",
- "fg": [ 7356, 7360, 7358, 7375 ],
+ "id": "vp_xlframe_vertical_2",
+ "fg": 7714,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7356, 7360, 7358, 7375 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7714 } ]
},
{
- "id": [ "vp_clothboard", "vp_clothboard_horizontal", "vp_clothboard_horizontal_2" ],
- "fg": [ 7360, 7374, 7360, 7374 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7360, 7374, 7360, 7374 ] } ]
+ "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ],
+ "fg": 7722
},
{
- "id": "vp_clothboard_horizontal_front",
- "fg": [ 7360, 7358, 7357, 7356 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7360, 7358, 7357, 7356 ] } ]
+ "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ],
+ "fg": 7721
},
{
- "id": "vp_clothboard_horizontal_rear",
- "fg": [ 7359, 7356, 7360, 7358 ],
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7359, 7356, 7360, 7358 ] } ]
+ "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ],
+ "fg": 7722
},
{
- "id": [ "vp_clothboard_vertical", "vp_clothboard_vertical_2" ],
- "fg": [ 7374, 7360, 7374, 7360 ],
+ "id": "vp_light_blue",
+ "fg": [ 7736, 7737 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7374, 7360, 7374, 7360 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7736, 7737 ] } ]
},
{
- "id": "vp_clothboard_ne_edge",
- "fg": [ 7361, 7377, 7363, 7376 ],
+ "id": "vp_light_red",
+ "fg": [ 7738, 7739 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7361, 7377, 7363, 7376 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7738, 7739 ] } ]
},
{
- "id": "vp_clothboard_nw_edge",
- "fg": [ 7364, 7379, 7365, 7378 ],
+ "id": [ "vp_floodlight", "vp_directed_floodlight" ],
+ "fg": [ 7730, 7732, 7731, 7729 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7364, 7379, 7365, 7378 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7730, 7732, 7731, 7729 ] } ]
},
{
- "id": "vp_clothboard_se_edge",
- "fg": [ 7367, 7381, 7364, 7380 ],
+ "id": "vp_omnicam",
+ "fg": 7745,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7367, 7381, 7364, 7380 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7745 } ]
},
{
- "id": "vp_clothboard_sw_edge",
- "fg": [ 7370, 7383, 7361, 7382 ],
+ "id": [ "vp_veh_table", "vp_veh_table_wood" ],
+ "fg": [ 7723, 7723 ],
+ "bg": [ 7751, 7750 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7370, 7383, 7361, 7382 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7724, "bg": [ 7751, 7750 ] } ]
},
{
- "id": [
- "vp_door_full_left",
- "vp_door_full_vertical_left",
- "vp_door_full_nw",
- "vp_door_full_front_left",
- "vp_door_full_sw",
- "vp_door_full_rear_left"
- ],
- "fg": [ 7452, 7459, 7458, 7457 ],
+ "id": "vp_workbench",
+ "fg": [ 7752, 7752 ],
+ "bg": 3415,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7453, 7456, 7455, 7454 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7453, 7456, 7455, 7454 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7752, 7752 ] } ]
},
{
- "id": [
- "vp_door_full_right",
- "vp_door_full_vertical_right",
- "vp_door_full_ne",
- "vp_door_full_front_right",
- "vp_door_full_se",
- "vp_door_full_rear_right"
- ],
- "fg": [ 7478, 7477, 7476, 7461 ],
+ "id": "vp_minifridge",
+ "fg": [ 7743, 7743 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7475, 7474, 7473, 7460 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7475, 7474, 7473, 7460 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7743, 7743 ] } ]
},
{
- "id": "vp_door_opaque_full_left",
- "fg": [ 7462, 7465, 7464, 7463 ],
+ "id": "vp_minifreezer",
+ "fg": [ 7742, 7742 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7453, 7456, 7455, 7454 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7453, 7456, 7455, 7454 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7742, 7742 ] } ]
},
{
- "id": "vp_door_opaque_full_right",
- "fg": [ 7470, 7469, 7468, 7466 ],
+ "id": "vp_kitchen_unit",
+ "fg": [ 7735, 7735 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7475, 7474, 7473, 7460 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7475, 7474, 7473, 7460 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7735, 7735 ] } ]
},
{
- "id": [ "vp_door_left", "vp_door_vertical_left" ],
- "fg": [ 7388, 7391, 7390, 7389 ],
+ "id": "vp_welding_rig",
+ "fg": [ 7749, 7749 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7397, 7399, 7398, 7396 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7397, 7399, 7398, 7396 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7749, 7749 ] } ]
},
{
- "id": "vp_door_nw",
- "fg": [ 7408, 7415, 7414, 7413 ],
+ "id": "vp_craft_rig",
+ "fg": [ 7728, 7728 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7409, 7412, 7411, 7410 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7397, 7399, 7398, 7396 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7728, 7728 ] } ]
},
{
- "id": "vp_door_front_left",
- "fg": [ 7499, 7506, 7505, 7504 ],
+ "id": "vp_washing_machine",
+ "fg": [ 7748, 7748 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7500, 7503, 7502, 7501 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7500, 7503, 7502, 7501 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7748, 7748 ] } ]
},
{
- "id": [ "vp_door_sw", "vp_door_rear_left" ],
- "fg": [ 7444, 7451, 7450, 7449 ],
+ "id": "vp_veh_forge",
+ "fg": [ 7733, 7733 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7445, 7448, 7447, 7446 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7397, 7399, 7398, 7396 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7733, 7733 ] } ]
},
{
- "id": [ "vp_door_right", "vp_door_vertical_right" ],
- "fg": [ 7392, 7395, 7394, 7393 ],
+ "id": "vp_veh_kiln",
+ "fg": [ 7734, 7734 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7433, 7435, 7434, 7432 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7433, 7435, 7434, 7432 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7734, 7734 ] } ]
},
{
- "id": "vp_door_ne",
- "fg": [ 7400, 7407, 7406, 7405 ],
+ "id": "vp_chemlab",
+ "fg": [ 7727, 7727 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7401, 7404, 7403, 7402 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7433, 7435, 7434, 7432 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7727, 7727 ] } ]
},
{
- "id": "vp_door_front_right",
- "fg": [ 7491, 7498, 7497, 7496 ],
+ "id": "vp_aisle_vertical",
+ "fg": 7726,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7492, 7495, 7494, 7493 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7492, 7495, 7494, 7493 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7726 } ]
},
{
- "id": [ "vp_door_se", "vp_door_rear_right" ],
- "fg": [ 7436, 7443, 7442, 7441 ],
+ "id": "vp_aisle_horizontal",
+ "fg": 7725,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7437, 7440, 7439, 7438 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7433, 7435, 7434, 7432 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7725 } ]
},
+ { "id": "vp_trunk_floor", "fg": 7746, "bg": 7726 },
{
- "id": "vp_door_opaque_left",
- "fg": [ 7421, 7423, 7422, 7420 ],
+ "id": "vp_wooden_aisle_vertical",
+ "fg": [ 7751, 7750 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7417, 7419, 7418, 7416 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7417, 7419, 7418, 7416 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7751, 7750 ] } ]
},
{
- "id": "vp_door_opaque_right",
- "fg": [ 7429, 7431, 7430, 7428 ],
+ "id": "vp_wooden_aisle_horizontal",
+ "fg": [ 7750, 7751 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7425, 7427, 7426, 7424 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7425, 7427, 7426, 7424 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7750, 7751 ] } ]
},
{
- "id": [ "vp_door_rear", "vp_door_horizontal_rear" ],
- "fg": [ 7471, 7478, 7477, 7476 ],
+ "id": "vp_lit_aisle_vertical",
+ "fg": 7741,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7472, 7475, 7474, 7473 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7472, 7475, 7474, 7473 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7741 } ]
},
{
- "id": [ "vp_door_front", "vp_door_horizontal_front" ],
- "fg": [ 7477, 7476, 7471, 7478 ],
+ "id": "vp_lit_aisle_horizontal",
+ "fg": 7740,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7474, 7473, 7472, 7475 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7474, 7473, 7472, 7475 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7740 } ]
},
{
- "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ],
- "fg": [ 7467, 7470, 7469, 7468 ],
+ "id": "vp_mounted_spare_tire",
+ "fg": 7744,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7472, 7475, 7474, 7473 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7472, 7475, 7474, 7473 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7744 } ]
},
{
- "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ],
- "fg": [ 7469, 7468, 7467, 7470 ],
+ "id": [ "vp_saddle", "vp_saddle_pedal" ],
+ "fg": [ 7754, 7756, 7755, 7753 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7474, 7473, 7472, 7475 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7474, 7473, 7472, 7475 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7754, 7756, 7755, 7753 ] } ]
},
{
- "id": "vp_door_sliding",
- "fg": [ 7470, 7469, 7468, 7466 ],
+ "id": [ "vp_seat_wood", "seat_wood_bench" ],
+ "fg": [ 7761, 7761, 7762, 7762 ],
+ "bg": [ 7751, 7750 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7517, 7518, 7519, 7520 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7517, 7518, 7519, 7520 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7761, 7761, 7762, 7762 ] } ]
},
{
- "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ],
- "fg": [ 7487, 7486, 7489, 7486 ],
+ "id": "vp_seat_wood_flimsy",
+ "fg": [ 7759, 7759, 7760, 7760 ],
+ "bg": [ 7751, 7750 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7488, 7485, 7490, 7485 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7488, 7485, 7490, 7485 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7759, 7759, 7760, 7760 ] } ]
},
{
- "id": "vp_door_internal_front",
- "fg": [ 7469, 7484, 7483, 7482 ],
+ "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ],
+ "fg": [ 7794, 7792, 7787, 7793 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7474, 7481, 7480, 7479 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7474, 7481, 7480, 7479 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7794, 7792, 7787, 7793 ] } ]
},
{
- "id": "vp_door_shutter",
- "fg": [ 7509, 7507, 7508, 7510 ],
+ "id": "vp_seat_back",
+ "fg": [ 7763, 7786, 7785, 7784 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7514, 7512, 7513, 7515 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7514, 7512, 7513, 7515 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7763, 7786, 7785, 7784 ] } ]
},
{
- "id": "vp_door_shutter_left",
- "fg": [ 7510, 7511, 7507, 7508 ],
+ "id": "vp_seat_back_left",
+ "fg": [ 7776, 7779, 7778, 7777 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7515, 7516, 7512, 7513 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7515, 7516, 7512, 7513 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7776, 7779, 7778, 7777 ] } ]
},
{
- "id": "vp_door_shutter_right",
- "fg": [ 7507, 7508, 7510, 7511 ],
+ "id": "vp_seat_back_right",
+ "fg": [ 7780, 7783, 7782, 7781 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7512, 7513, 7515, 7516 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7512, 7513, 7515, 7516 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7780, 7783, 7782, 7781 ] } ]
},
{
- "id": "vp_halfboard_ne",
- "fg": [ 7541, 7544, 7543, 7542 ],
+ "id": "vp_seat_back_vertical",
+ "fg": [ 7784, 7763, 7786, 7785 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7541, 7544, 7543, 7542 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7784, 7763, 7786, 7785 ] } ]
},
{
- "id": "vp_halfboard_nw",
- "fg": [ 7545, 7548, 7547, 7546 ],
+ "id": "vp_seat_back_vertical_left",
+ "fg": [ 7777, 7776, 7779, 7778 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7545, 7548, 7547, 7546 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7777, 7776, 7779, 7778 ] } ]
},
{
- "id": "vp_halfboard_se",
- "fg": [ 7549, 7552, 7551, 7550 ],
+ "id": "vp_seat_back_vertical_right",
+ "fg": [ 7781, 7780, 7783, 7782 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7549, 7552, 7551, 7550 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7781, 7780, 7783, 7782 ] } ]
},
{
- "id": "vp_halfboard_sw",
- "fg": [ 7553, 7556, 7555, 7554 ],
+ "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ],
+ "fg": [ 7791, 7789, 7788, 7790 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7553, 7556, 7555, 7554 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7791, 7789, 7788, 7790 ] } ]
},
{
- "id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ],
- "fg": [ 7557, 7559, 7560, 7558 ],
+ "id": "vp_seat_back_leather",
+ "fg": [ 7764, 7775, 7774, 7773 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7557, 7559, 7560, 7558 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7764, 7775, 7774, 7773 ] } ]
},
{
- "id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ],
- "fg": [ 7560, 7558, 7557, 7559 ],
+ "id": "vp_seat_back_leather_left",
+ "fg": [ 7765, 7768, 7767, 7766 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7560, 7558, 7557, 7559 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7765, 7768, 7767, 7766 ] } ]
},
{
- "id": "vp_halfboard_vertical_t_left",
- "fg": [ 7564, 7566, 7565, 7563 ],
+ "id": "vp_seat_back_leather_right",
+ "fg": [ 7769, 7772, 7771, 7770 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7564, 7566, 7565, 7563 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7769, 7772, 7771, 7770 ] } ]
},
{
- "id": "vp_halfboard_vertical_t_right",
- "fg": [ 7568, 7570, 7569, 7567 ],
+ "id": "vp_seat_back_leather_vertical",
+ "fg": [ 7773, 7764, 7775, 7774 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7568, 7570, 7569, 7567 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7773, 7764, 7775, 7774 ] } ]
},
{
- "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ],
- "fg": [ 7538, 7540, 7539, 7537 ],
+ "id": "vp_seat_back_leather_vertical_left",
+ "fg": [ 7766, 7765, 7768, 7767 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7538, 7540, 7539, 7537 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7766, 7765, 7768, 7767 ] } ]
},
{
- "id": [ "vp_halfboard_horizontal_front", "vp_halfboard_horizontal_2_front", "vp_halfboard_cover" ],
- "fg": [ 7529, 7532, 7531, 7530 ],
+ "id": "vp_seat_back_leather_vertical_right",
+ "fg": [ 7770, 7769, 7772, 7771 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7529, 7532, 7531, 7530 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7770, 7769, 7772, 7771 ] } ]
},
{
- "id": "vp_halfboard_horizontal_rear",
- "fg": [ 7533, 7536, 7535, 7534 ],
+ "id": "vp_seat_rear",
+ "fg": [ 7787, 7793, 7794, 7792 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7533, 7536, 7535, 7534 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7787, 7793, 7794, 7792 ] } ]
},
{
- "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ],
- "fg": [ 7562, 7561, 7562, 7561 ],
+ "id": "vp_seat_leather_rear",
+ "fg": [ 7788, 7790, 7791, 7789 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7562, 7561, 7562, 7561 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7788, 7790, 7791, 7789 ] } ]
},
{
- "id": "vp_halfboard_cover_left",
- "fg": [ 7521, 7524, 7523, 7522 ],
+ "id": [ "vp_seed_drill" ],
+ "fg": [ 7796, 7798, 7797, 7795 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7521, 7524, 7523, 7522 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7951, "bg": [ 7796, 7798, 7797, 7795 ] } ]
},
{
- "id": "vp_halfboard_cover_right",
- "fg": [ 7525, 7528, 7527, 7526 ],
+ "id": "vp_solar_panel",
+ "fg": 7799,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7525, 7528, 7527, 7526 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7799 } ]
},
{
- "id": "vp_halfboard_wheel_left",
- "fg": [ 7571, 7574, 7573, 7572 ],
+ "id": "vp_reinforced_solar_panel",
+ "fg": 7802,
+ "bg": 7799,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7571, 7574, 7573, 7572 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7799 } ]
},
{
- "id": "vp_halfboard_wheel_right",
- "fg": [ 7575, 7578, 7577, 7576 ],
+ "id": "vp_solar_panel_v2",
+ "fg": 7800,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7575, 7578, 7577, 7576 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7800 } ]
},
{
- "id": "vp_hddoor_left",
- "fg": [ 7580, 7582, 7581, 7579 ],
+ "id": "vp_reinforced_solar_panel_v2",
+ "fg": 7802,
+ "bg": 7800,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7588, 7590, 7589, 7587 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7588, 7590, 7589, 7587 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7800 } ]
},
{
- "id": "vp_hddoor_right",
- "fg": [ 7584, 7586, 7585, 7583 ],
+ "id": "vp_solar_panel_v3",
+ "fg": 7801,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7608, 7610, 7609, 7607 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7608, 7610, 7609, 7607 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7801 } ]
},
{
- "id": "vp_hddoor_opaque_left",
- "fg": [ 7596, 7598, 7597, 7595 ],
+ "id": [
+ "vp_mounted_browning",
+ "vp_mounted_mk19",
+ "vp_mounted_abzats",
+ "vp_m249",
+ "vp_m249_semi",
+ "vp_mounted_m1918",
+ "vp_mounted_rm298",
+ "vp_mounted_rm614",
+ "vp_mounted_m240",
+ "vp_mounted_m60",
+ "vp_mounted_m60_semi"
+ ],
+ "//": "rifles and machineguns",
+ "fg": 7805,
+ "bg": 7803,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7592, 7594, 7593, 7591 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7592, 7594, 7593, 7591 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7805 } ]
},
{
- "id": "vp_hddoor_opaque_right",
- "fg": [ 7604, 7606, 7605, 7603 ],
+ "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ],
+ "//": "energy weapons",
+ "fg": 7804,
+ "bg": 7803,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7600, 7602, 7601, 7599 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7600, 7602, 7601, 7599 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7804 } ]
},
{
- "id": [
- "vp_hddoor_full_left",
- "vp_hddoor_full_vertical_left",
- "vp_hddoor_full_nw",
- "vp_hddoor_full_front_left",
- "vp_hddoor_full_sw",
- "vp_hddoor_full_rear_left"
- ],
- "fg": [ 7580, 7582, 7581, 7579 ],
+ "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ],
+ "//": "railguns",
+ "fg": 7806,
+ "bg": 7803,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7588, 7590, 7589, 7587 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7588, 7590, 7589, 7587 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7806 } ]
},
{
- "id": [
- "vp_hddoor_full_right",
- "vp_hddoor_full_vertical_right",
- "vp_hddoor_full_ne",
- "vp_hddoor_full_front_right",
- "vp_hddoor_full_se",
- "vp_hddoor_full_rear_right"
- ],
- "fg": [ 7584, 7586, 7585, 7583 ],
+ "id": [ "vp_mounted_bigun", "vp_mounted_m134" ],
+ "//": "multibarrel weapons",
+ "fg": 7805,
+ "bg": 7803,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7608, 7610, 7609, 7607 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7608, 7610, 7609, 7607 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7805 } ]
},
{
- "id": "vp_hddoor_opaque_full_left",
- "fg": [ 7596, 7598, 7597, 7595 ],
+ "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ],
+ "//": "liquid sprayers",
+ "fg": 7805,
+ "bg": 7803,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7592, 7594, 7593, 7591 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7592, 7594, 7593, 7591 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7805 } ]
},
{
- "id": "vp_hddoor_opaque_full_right",
- "fg": [ 7604, 7606, 7605, 7603 ],
+ "id": "vp_tow_launcher",
+ "//": "rocket tubes",
+ "fg": 7805,
+ "bg": 7803,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7600, 7602, 7601, 7599 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7600, 7602, 7601, 7599 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7805 } ]
},
{
- "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ],
- "fg": [ 7612, 7614, 7613, 7611 ],
+ "id": "vp_animal_compartment",
+ "fg": [ 7807, 7807, 7807, 7807 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7612, 7614, 7613, 7611 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7807, 7807, 7807, 7807 ] } ]
},
{
- "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ],
- "fg": [ 7616, 7618, 7617, 7615 ],
+ "id": "vp_basketsm_wheelchair",
+ "fg": [ 7809, 7811, 7810, 7808 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7616, 7618, 7617, 7615 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7809, 7811, 7810, 7808 ] } ]
},
{
- "id": "vp_bed",
- "fg": [ 7620, 7622, 7621, 7619 ],
+ "id": [ "vp_wheel", "vp_wheel_steerable" ],
+ "fg": 7812,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7620, 7622, 7621, 7619 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7812 } ]
},
{
- "id": "vp_door_trunk",
- "fg": [ 7623, 7630, 7629, 7628 ],
+ "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable", "vp_wheel_bicycle_or", "vp_wheel_bicycle_or_steerable" ],
+ "fg": [ 7814, 7816, 7815, 7813 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7624, 7627, 7626, 7625 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7624, 7627, 7626, 7625 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7814, 7816, 7815, 7813 ] } ]
},
{
- "id": "vp_door_trunk_horizontal_2",
- "fg": [ 7631, 7638, 7637, 7636 ],
+ "id": [ "vp_wheel_bicycle_rear", "vp_wheel_bicycle_or_rear" ],
+ "fg": [ 7815, 7813, 7814, 7816 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7632, 7635, 7634, 7633 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7632, 7635, 7634, 7633 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": [ 7815, 7813, 7814, 7816 ] } ]
},
{
- "id": "vp_hatch_left",
- "fg": [ 7641, 7648, 7647, 7646 ],
+ "id": [
+ "vp_reinforced_windshield",
+ "vp_reinforced_windshield_horizontal",
+ "vp_reinforced_windshield_horizontal_front",
+ "vp_reinforced_windshield_front_edge"
+ ],
+ "fg": [ 7817, 7820, 7819, 7818 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7642, 7645, 7644, 7643 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7642, 7645, 7644, 7643 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7817, 7820, 7819, 7818 ] } ]
},
{
- "id": "vp_hatch_right",
- "fg": [ 7647, 7646, 7641, 7648 ],
+ "id": "vp_reinforced_windshield_horizontal_rear",
+ "fg": 7821,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7644, 7643, 7642, 7645 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7644, 7643, 7642, 7645 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7821 } ]
},
{
- "id": "vp_hatch_wheel_left",
- "fg": [ 7641, 7662, 7647, 7646 ],
+ "id": "vp_reinforced_windshield_horizontal_rear_edge",
+ "fg": 7822,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7642, 7661, 7644, 7643 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7642, 7645, 7644, 7643 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7822 } ]
},
{
- "id": "vp_hatch_wheel_right",
- "fg": [ 7647, 7646, 7641, 7662 ],
+ "id": "vp_reinforced_windshield_nw",
+ "fg": [ 7827, 7830, 7829, 7828 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7644, 7643, 7642, 7661 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7644, 7643, 7642, 7661 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7827, 7830, 7829, 7828 ] } ]
},
{
- "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ],
- "fg": [ 7639, 7647, 7646, 7641 ],
+ "id": "vp_reinforced_windshield_ne",
+ "fg": [ 7823, 7826, 7825, 7824 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7640, 7644, 7643, 7642 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7640, 7644, 7643, 7642 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7823, 7826, 7825, 7824 ] } ]
},
{
- "id": "vp_hatch_horizontal_front",
- "fg": [ 7646, 7641, 7639, 7647 ],
+ "id": "vp_reinforced_windshield_sw",
+ "fg": 7836,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7643, 7642, 7640, 7644 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7643, 7642, 7640, 7644 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7836 } ]
},
{
- "id": "vp_hatch_opaque_left",
- "fg": [ 7651, 7658, 7657, 7656 ],
+ "id": "vp_reinforced_windshield_se",
+ "fg": 7831,
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7652, 7655, 7654, 7653 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7652, 7655, 7654, 7653 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": 7831 } ]
},
{
- "id": "vp_hatch_opaque_right",
- "fg": [ 7657, 7656, 7651, 7658 ],
+ "id": "vp_reinforced_windshield_sw_edge",
+ "fg": [ 7837, 7840, 7839, 7838 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7654, 7653, 7652, 7655 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7654, 7653, 7652, 7655 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7837, 7840, 7839, 7838 ] } ]
},
{
- "id": "vp_hatch_opaque_wheel_left",
- "fg": [ 7651, 7660, 7657, 7656 ],
+ "id": "vp_reinforced_windshield_se_edge",
+ "fg": [ 7832, 7835, 7834, 7833 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7652, 7659, 7654, 7653 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7652, 7659, 7654, 7653 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7832, 7835, 7834, 7833 ] } ]
},
{
- "id": "vp_hatch_opaque_wheel_right",
- "fg": [ 7657, 7656, 7651, 7660 ],
+ "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ],
+ "fg": [ 7841, 7844, 7843, 7842 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7654, 7653, 7652, 7659 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7654, 7653, 7652, 7659 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7841, 7844, 7843, 7842 ] } ]
},
{
- "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ],
- "fg": [ 7649, 7657, 7656, 7651 ],
+ "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ],
+ "fg": [ 7845, 7848, 7847, 7846 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7650, 7654, 7653, 7652 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7650, 7654, 7653, 7652 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7845, 7848, 7847, 7846 ] } ]
},
{
- "id": "vp_hatch_opaque_horizontal_front",
- "fg": [ 7656, 7651, 7649, 7657 ],
+ "id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ],
+ "fg": [ 7841, 7844, 7843, 7842 ],
"multitile": true,
- "additional_tiles": [
- { "id": "open", "fg": [ 7653, 7652, 7650, 7654 ] },
- { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7653, 7652, 7650, 7654 ] }
- ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7841, 7844, 7843, 7842 ] } ]
},
{
- "id": [ "vp_wheel_wide", "vp_wheel_wide_steerable", "vp_wheel_wide_or", "vp_wheel_wide_or_steerable" ],
- "fg": [ 7664, 7663, 7664, 7663 ],
+ "id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ],
+ "fg": [ 7845, 7848, 7847, 7846 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": [ 7664, 7663, 7664, 7663 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7605, "bg": [ 7845, 7848, 7847, 7846 ] } ]
},
{
- "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ],
- "fg": [ 7673, 7676, 7675, 7674 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7673, 7676, 7675, 7674 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical_2",
+ "fg": 7869,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7869 } ]
},
{
- "id": "vp_windshield_horizontal_rear",
- "fg": [ 7690, 7691, 7690, 7689 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7690, 7691, 7690, 7689 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical_2_unconnected",
+ "fg": 7872,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7872 } ]
},
{
- "id": "vp_windshield_nw",
- "fg": [ 7685, 7688, 7687, 7686 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7386, 7386, 7386, 7386 ], "bg": [ 7685, 7688, 7687, 7686 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical_2_right",
+ "fg": 7871,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7871 } ]
},
{
- "id": "vp_windshield_ne",
- "fg": [ 7681, 7684, 7683, 7682 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7385, 7385, 7385, 7385 ], "bg": [ 7681, 7684, 7683, 7682 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical_2_left",
+ "fg": 7870,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7870 } ]
},
{
- "id": "vp_windshield_sw",
- "fg": [ 7677, 7680, 7692, 7678 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7386, 7386, 7386, 7386 ], "bg": [ 7677, 7680, 7692, 7678 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical",
+ "fg": 7868,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7868 } ]
},
{
- "id": "vp_windshield_se",
- "fg": [ 7679, 7695, 7677, 7693 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7385, 7385, 7385, 7385 ], "bg": [ 7679, 7695, 7677, 7693 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical_unconnected",
+ "fg": 7875,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7875 } ]
},
{
- "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ],
- "fg": [ 7677, 7680, 7679, 7678 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7385, 7385, 7385, 7385 ], "bg": [ 7677, 7680, 7679, 7678 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical_right",
+ "fg": 7874,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7874 } ]
},
{
- "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ],
- "fg": [ 7692, 7695, 7694, 7693 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7386, 7386, 7386, 7386 ], "bg": [ 7692, 7695, 7694, 7693 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_vertical_left",
+ "fg": 7873,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7873 } ]
},
{
- "id": "vp_windshield_cover_left",
- "fg": [ 7665, 7668, 7667, 7666 ],
+ "id": "vp_frame_wood_sw",
+ "fg": 7867,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7665, 7668, 7667, 7666 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7867 } ]
},
{
- "id": "vp_windshield_cover_right",
- "fg": [ 7669, 7672, 7671, 7670 ],
+ "id": "vp_frame_wood_se",
+ "fg": 7866,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7669, 7672, 7671, 7670 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7866 } ]
},
{
- "id": "vp_windshield_wheel_left",
- "fg": [ 7697, 7700, 7699, 7698 ],
+ "id": "vp_frame_wood_nw",
+ "fg": 7865,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7697, 7700, 7699, 7698 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7865 } ]
},
{
- "id": "vp_windshield_wheel_right",
- "fg": [ 7701, 7704, 7703, 7702 ],
+ "id": "vp_frame_wood_ne",
+ "fg": 7864,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7387, 7387, 7387, 7387 ], "bg": [ 7701, 7704, 7703, 7702 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7864 } ]
},
{
- "id": "vp_windshield_vertical_2_left",
- "fg": [ 7677, 7696, 7679, 7678 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7385, 7385, 7385, 7385 ], "bg": [ 7677, 7696, 7679, 7678 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_2",
+ "fg": 7853,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7853 } ]
},
{
- "id": "vp_windshield_vertical_2_right",
- "fg": [ 7692, 7695, 7694, 7696 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7386, 7386, 7386, 7386 ], "bg": [ 7692, 7695, 7694, 7696 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_2_unconnected",
+ "fg": 7858,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7858 } ]
},
{
- "id": [ "vp_windshield_full", "vp_windshield_full_horizontal_rear" ],
- "fg": [ 7707, 7705, 7706, 7708 ],
- "additional_tiles": [ { "id": "broken", "fg": 7016, "bg": [ 7707, 7705, 7706, 7708 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_2_right",
+ "fg": 7857,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7857 } ]
},
{
- "id": "vp_windshield_full_horizontal_front",
- "fg": [ 7706, 7708, 7707, 7705 ],
- "additional_tiles": [ { "id": "broken", "fg": 7016, "bg": [ 7706, 7708, 7707, 7705 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_2_rear",
+ "fg": 7856,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7856 } ]
},
{
- "id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ],
- "fg": [ 7708, 7709, 7705, 7706 ],
- "additional_tiles": [ { "id": "broken", "fg": 7016, "bg": [ 7708, 7709, 7705, 7706 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_2_left",
+ "fg": 7855,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7855 } ]
},
{
- "id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ],
- "fg": [ 7705, 7706, 7708, 7709 ],
- "additional_tiles": [ { "id": "broken", "fg": 7016, "bg": [ 7705, 7706, 7708, 7709 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_2_front",
+ "fg": 7854,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7854 } ]
},
{
- "id": "vp_windshield_full_wheel_left",
- "fg": [ 7708, 7710, 7705, 7706 ],
- "additional_tiles": [ { "id": "broken", "fg": 7016, "bg": [ 7708, 7710, 7705, 7706 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal",
+ "fg": 7852,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7852 } ]
},
{
- "id": "vp_windshield_full_wheel_right",
- "fg": [ 7705, 7706, 7708, 7710 ],
- "additional_tiles": [ { "id": "broken", "fg": 7016, "bg": [ 7705, 7706, 7708, 7710 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_unconnected",
+ "fg": 7863,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7863 } ]
},
{
- "id": "vp_windshield_horizontal_front_edge",
- "fg": [ 7712, 7714, 7713, 7711 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7712, 7714, 7713, 7711 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_right",
+ "fg": 7862,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7862 } ]
},
{
- "id": "vp_windshield_horizontal_rear_edge",
- "fg": [ 7723, 7726, 7725, 7724 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7723, 7726, 7725, 7724 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_rear",
+ "fg": 7861,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7861 } ]
},
{
- "id": "vp_windshield_nw_edge",
- "fg": [ 7720, 7722, 7721, 7719 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7720, 7722, 7721, 7719 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_left",
+ "fg": 7860,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7860 } ]
},
{
- "id": "vp_windshield_ne_edge",
- "fg": [ 7716, 7718, 7717, 7715 ],
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7716, 7718, 7717, 7715 ] } ],
- "multitile": true
+ "id": "vp_frame_wood_horizontal_front",
+ "fg": 7859,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7859 } ]
},
{
- "id": "vp_windshield_sw_edge",
- "fg": [ 7553, 7556, 7555, 7554 ],
+ "id": "vp_frame_wood_cross",
+ "fg": 7850,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7553, 7556, 7555, 7554 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7850 } ]
},
{
- "id": "vp_windshield_se_edge",
- "fg": [ 7549, 7552, 7551, 7550 ],
+ "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ],
+ "fg": 7851,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7384, 7384, 7384, 7384 ], "bg": [ 7549, 7552, 7551, 7550 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7851 } ]
},
- { "id": "f_street_light", "fg": 7301 },
- { "id": "f_traffic_light", "fg": 7302 }
+ {
+ "id": "vp_frame_wood_cover",
+ "fg": 7849,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7849 } ]
+ },
+ { "id": "f_floor_mattress", "fg": 7132 },
+ { "id": "f_fungal_mass", "fg": 7135 },
+ { "id": "f_fungal_tangle", "fg": 7136 },
+ { "id": "f_brazier", "fg": 7137 },
+ { "id": "emer_blanket", "fg": 7167 },
+ { "id": "emer_blanket_on", "fg": 7168 },
+ { "id": "jacket_evac", "fg": 7169 },
+ { "id": "f_autoclave", "fg": 7172 },
+ { "id": "jeans_red", "fg": 7179 },
+ { "id": "tights", "fg": 7180 },
+ { "id": "blade", "fg": 7181 },
+ { "id": "rm13_armor", "fg": 7182 },
+ { "id": "55gal_drum", "fg": 7183 },
+ { "id": "leather_funnel", "fg": 7208 },
+ { "id": "tr_leather_funnel", "fg": 7210 },
+ { "id": "brush", "fg": 7218 },
+ { "id": "casserole", "fg": 7219 },
+ { "id": "curling_iron", "fg": 7220 },
+ { "id": "cutting_board", "fg": 7221 },
+ { "id": "elec_hairtrimmer", "fg": 7222 },
+ { "id": "hairbrush", "fg": 7223 },
+ { "id": "metal_file", "fg": 7225 },
+ { "id": "mobile_memory_card", "fg": 7226 },
+ { "id": "plastic_straw", "fg": 7227 },
+ { "id": "razor_blade", "fg": 7228 },
+ { "id": "razor_shaving", "fg": 7229 },
+ { "id": "string_floss", "fg": 7230 },
+ { "id": "tumbler_plastic", "fg": 7232 },
+ { "id": "xacto", "fg": 7233 },
+ { "id": "mon_creeper_hub", "fg": 7305 },
+ { "id": "mon_creeper_vine", "fg": 7306 },
+ { "id": "f_rubble_landfill", "fg": 7335 },
+ { "id": "t_roof_paper", "fg": 7385 },
+ { "id": "crack_glass_left", "fg": 7606 },
+ { "id": "crack_glass_right", "fg": 7607 },
+ { "id": "vp_ram_mattress", "fg": 7635 },
+ { "id": "vp_tearer", "fg": 7639 },
+ { "id": "vp_vehicle_scoop", "fg": 7747 },
+ { "id": "seat", "fg": 7757 },
+ { "id": "seat_leather", "fg": 7758 }
]
},
{
"file": "incomplete_large.png",
- "//": "range 7728 to 7775",
+ "//": "range 7888 to 7935",
"sprite_width": 64,
"sprite_height": 64,
"sprite_offset_x": -16,
"sprite_offset_y": -32,
"tiles": [
- { "id": "mon_alpha_razorclaw", "fg": 7728, "bg": 6385 },
- { "id": "mon_chickenbot", "fg": 7729, "bg": 6385 },
- { "id": "mon_razorclaw", "fg": 7730, "bg": 6385 },
- { "id": "mon_science_bot", "fg": 7731, "bg": 6385 },
+ { "id": "mon_alpha_razorclaw", "fg": 7888, "bg": 6834 },
+ { "id": "mon_chickenbot", "fg": 7889, "bg": 6834 },
+ { "id": "mon_razorclaw", "fg": 7890, "bg": 6834 },
+ { "id": "mon_science_bot", "fg": 7891, "bg": 6834 },
{
"id": "vp_halfboard_hatch_wheel_left",
- "fg": [ 7734, 7737, 7736, 7735 ],
+ "fg": [ 7894, 7897, 7896, 7895 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7733, 7733, 7733, 7733 ], "bg": [ 7734, 7737, 7736, 7735 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7893, 7893, 7893, 7893 ], "bg": [ 7894, 7897, 7896, 7895 ] } ]
},
{
"id": "vp_halfboard_hatch_wheel_right",
- "fg": [ 7738, 7741, 7740, 7739 ],
+ "fg": [ 7898, 7901, 7900, 7899 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7733, 7733, 7733, 7733 ], "bg": [ 7738, 7741, 7740, 7739 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7893, 7893, 7893, 7893 ], "bg": [ 7898, 7901, 7900, 7899 ] } ]
},
{
"id": "vp_halfboard_horizontal_2_rear",
- "fg": [ 7742, 7745, 7744, 7743 ],
+ "fg": [ 7902, 7905, 7904, 7903 ],
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": [ 7733, 7733, 7733, 7733 ], "bg": [ 7742, 7745, 7744, 7743 ] } ]
+ "additional_tiles": [ { "id": "broken", "fg": [ 7893, 7893, 7893, 7893 ], "bg": [ 7902, 7905, 7904, 7903 ] } ]
},
{
"id": "vp_hatch",
- "fg": [ 7746, 7761, 7760, 7759 ],
+ "fg": [ 7906, 7921, 7920, 7919 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7755, 7758, 7757, 7756 ] },
- { "id": "broken", "fg": [ 7733, 7733, 7733, 7733 ], "bg": [ 7755, 7758, 7757, 7756 ] }
+ { "id": "open", "fg": [ 7915, 7918, 7917, 7916 ] },
+ { "id": "broken", "fg": [ 7893, 7893, 7893, 7893 ], "bg": [ 7915, 7918, 7917, 7916 ] }
]
},
{
"id": "vp_hatch_opaque",
- "fg": [ 7747, 7754, 7753, 7752 ],
+ "fg": [ 7907, 7914, 7913, 7912 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7748, 7751, 7750, 7749 ] },
- { "id": "broken", "fg": [ 7733, 7733, 7733, 7733 ], "bg": [ 7748, 7751, 7750, 7749 ] }
+ { "id": "open", "fg": [ 7908, 7911, 7910, 7909 ] },
+ { "id": "broken", "fg": [ 7893, 7893, 7893, 7893 ], "bg": [ 7908, 7911, 7910, 7909 ] }
]
},
{
"id": "vp_door_trunk_hatch_wheel_left",
- "fg": [ 7762, 7769, 7768, 7767 ],
+ "fg": [ 7922, 7929, 7928, 7927 ],
"multitile": true,
"additional_tiles": [
- { "id": "open", "fg": [ 7763, 7766, 7765, 7764 ] },
- { "id": "broken", "fg": [ 7733, 7733, 7733, 7733 ], "bg": [ 7763, 7766, 7765, 7764 ] }
+ { "id": "open", "fg": [ 7923, 7926, 7925, 7924 ] },
+ { "id": "broken", "fg": [ 7893, 7893, 7893, 7893 ], "bg": [ 7923, 7926, 7925, 7924 ] }
]
},
- { "id": "mon_worm", "fg": 7732 }
+ { "id": "mon_worm", "fg": 7892 }
]
},
{
"file": "fillerhoder.png",
- "//": "range 7776 to 7855",
+ "//": "range 7936 to 8015",
"tiles": [
{
"id": "f_sandbag_wall",
- "fg": 7776,
+ "fg": 7936,
"rotates": true,
"multitile": true,
"additional_tiles": [
- { "id": "unconnected", "fg": 7776 },
- { "id": "center", "fg": 7777 },
- { "id": "corner", "fg": 7778 },
- { "id": "edge", "fg": 7779 },
- { "id": "end_piece", "fg": 7780 },
- { "id": "t_connection", "fg": 7781 }
+ { "id": "unconnected", "fg": 7936 },
+ { "id": "center", "fg": 7937 },
+ { "id": "corner", "fg": 7938 },
+ { "id": "edge", "fg": 7939 },
+ { "id": "end_piece", "fg": 7940 },
+ { "id": "t_connection", "fg": 7941 }
]
},
- { "id": "f_slab", "fg": 7782 },
- { "id": "animation_bullet_flame", "fg": 7783, "rotates": false },
- { "id": "animation_bullet_normal", "fg": 7784, "rotates": false },
- { "id": "animation_bullet_shrapnel", "fg": 7785 },
+ { "id": "f_slab", "fg": 7942 },
+ { "id": "animation_bullet_flame", "fg": 7943, "rotates": false },
+ { "id": "animation_bullet_normal", "fg": 7944, "rotates": false },
+ { "id": "animation_bullet_shrapnel", "fg": 7945 },
{
"id": "explosion",
- "fg": 7786,
+ "fg": 7946,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 7786 }, { "id": "edge", "fg": 7787 } ]
+ "additional_tiles": [ { "id": "corner", "fg": 7946 }, { "id": "edge", "fg": 7947 } ]
},
{
"id": "explosion_medium",
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 7786 }, { "id": "edge", "fg": 7787 } ],
- "fg": 7786
+ "additional_tiles": [ { "id": "corner", "fg": 7946 }, { "id": "edge", "fg": 7947 } ],
+ "fg": 7946
},
{
"id": "explosion_weak",
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "corner", "fg": 7786 }, { "id": "edge", "fg": 7787 } ],
- "fg": 7786
+ "additional_tiles": [ { "id": "corner", "fg": 7946 }, { "id": "edge", "fg": 7947 } ],
+ "fg": 7946
},
{
"id": "vp_chimes",
- "fg": 7788,
+ "fg": 7948,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7788 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7948 } ]
},
{
"id": "vp_robot_controls",
- "fg": 7789,
+ "fg": 7949,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7789 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7949 } ]
},
- { "id": "t_manhole", "fg": 7790, "bg": 3365, "rotates": false },
- { "id": "t_manhole_cover", "fg": 7791, "bg": 3365 },
- { "id": "manhole_cover", "fg": 7791 },
- { "id": "t_pit_corpsed", "fg": 7792, "bg": 2896 },
- { "id": "t_pit_corpsed_season_winter", "fg": 7792, "bg": 2627 },
+ { "id": "t_pit_corpsed", "fg": 7950, "bg": 2996 },
+ { "id": "t_pit_corpsed_season_winter", "fg": 7950, "bg": 2727 },
{
"id": [ "vp_external_tank", "vp_external_tank_small" ],
- "fg": 7794,
+ "fg": 7952,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7794 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7952 } ]
},
- { "id": "vp_ram_wood", "fg": [ 7807, 7809, 7808, 7810 ], "rotates": true },
- { "id": "vp_ram_military", "fg": [ 7803, 7805, 7804, 7806 ], "rotates": true },
- { "id": "vp_ram_hardsteel", "fg": [ 7799, 7801, 7800, 7802 ], "rotates": true },
- { "id": "vp_ram_alloy", "fg": [ 7795, 7797, 7796, 7798 ], "rotates": true },
+ { "id": "vp_ram_wood", "fg": [ 7965, 7967, 7966, 7968 ], "rotates": true },
+ { "id": "vp_ram_military", "fg": [ 7961, 7963, 7962, 7964 ], "rotates": true },
+ { "id": "vp_ram_hardsteel", "fg": [ 7957, 7959, 7958, 7960 ], "rotates": true },
+ { "id": "vp_ram_alloy", "fg": [ 7953, 7955, 7954, 7956 ], "rotates": true },
{
"id": "vp_roller_drum",
- "fg": 7811,
+ "fg": 7969,
"rotates": true,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7793, "bg": 7811 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7951, "bg": 7969 } ]
},
{
"id": "vp_battery_motorbike",
- "fg": 7823,
+ "fg": 7981,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7823 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7981 } ]
},
{
"id": "vp_blade_horizontal",
- "fg": 7832,
+ "fg": 7990,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7832 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7990 } ]
},
{
"id": "vp_blade_vertical",
- "fg": 7833,
+ "fg": 7991,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7833 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7991 } ]
},
{
"id": "vp_controls",
- "fg": 7827,
+ "fg": 7985,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7827 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7985 } ]
},
{
"id": "vp_engine_1cyl",
- "fg": 7816,
+ "fg": 7974,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7816 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7974 } ]
},
{
"id": "vp_engine_electric",
- "fg": 7820,
+ "fg": 7978,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7820 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7978 } ]
},
{
"id": "vp_engine_electric_large",
- "fg": 7821,
+ "fg": 7979,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7821 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7979 } ]
},
- { "id": "vp_engine_v12", "fg": 7818, "bg": 7819 },
+ { "id": "vp_engine_v12", "fg": 7976, "bg": 7977 },
{
"id": "vp_engine_v6",
- "fg": 7818,
+ "fg": 7976,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7818 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7976 } ]
},
{
"id": "vp_engine_v8",
- "fg": 7819,
+ "fg": 7977,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7819 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7977 } ]
},
{
"id": "vp_engine_vtwin",
- "fg": 7817,
+ "fg": 7975,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7817 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7975 } ]
},
{
"id": "vp_foot_pedals",
- "fg": 7822,
+ "fg": 7980,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7822 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7980 } ]
},
{
"id": "vp_fusion_gun",
- "fg": 7835,
+ "fg": 7993,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7835 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7993 } ]
},
{
"id": "vp_hdroof",
- "fg": 7837,
+ "fg": 7995,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7837 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7995 } ]
},
{
"id": "vp_hydrogen_tank",
- "fg": 7825,
+ "fg": 7983,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7825 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7983 } ]
},
{
"id": "vp_minireactor",
- "fg": 7824,
+ "fg": 7982,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7824 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7982 } ]
},
{
"id": "vp_muffler",
- "fg": 7826,
+ "fg": 7984,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7826 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7984 } ]
},
{
"id": "vp_plating_hard",
- "fg": 7831,
+ "fg": 7989,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7831 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7989 } ]
},
{
"id": "vp_plating_military",
- "fg": 7828,
+ "fg": 7986,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7828 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7986 } ]
},
{
"id": "vp_plating_spiked",
- "fg": 7830,
+ "fg": 7988,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7830 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7988 } ]
},
{
"id": "vp_plating_steel",
- "fg": 7828,
+ "fg": 7986,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7828 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7986 } ]
},
{
"id": "vp_plating_superalloy",
- "fg": 7829,
+ "fg": 7987,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7829 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7987 } ]
},
{
"id": "vp_plating_wood",
- "fg": 7840,
+ "fg": 7998,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7840 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7998 } ]
},
{
"id": "vp_roof",
- "fg": 7838,
+ "fg": 7996,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7838 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7996 } ]
},
{
"id": "vp_roof_cloth",
- "fg": 7839,
+ "fg": 7997,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7839 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7997 } ]
},
{
"id": "vp_seatbelt",
- "fg": 7815,
+ "fg": 7973,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7815 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7973 } ]
},
{
"id": "vp_seatbelt_heavyduty",
- "fg": 7815,
+ "fg": 7973,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7815 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7973 } ]
},
{
"id": "vp_small_storage_battery",
- "fg": 7823,
+ "fg": 7981,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7823 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7981 } ]
},
{
"id": "vp_storage_battery",
- "fg": 7823,
+ "fg": 7981,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7823 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7981 } ]
},
{
"id": "vp_v_curtain",
- "fg": 7841,
+ "fg": 7999,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7841 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7999 } ]
},
{
"id": "vp_wheel_armor",
- "fg": 7812,
+ "fg": 7970,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7812 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7970 } ]
},
{
"id": "vp_wheel_armor_steerable",
- "fg": 7812,
+ "fg": 7970,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7812 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7970 } ]
},
{
"id": "vp_wheel_caster",
- "fg": 7836,
+ "fg": 7994,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7836 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7994 } ]
},
{
"id": "vp_wheel_small",
- "fg": 7814,
+ "fg": 7972,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7814 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7972 } ]
},
{
"id": "vp_wheel_small_steerable",
- "fg": 7814,
+ "fg": 7972,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7814 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7972 } ]
},
{
"id": "vp_wheel_wheelchair",
- "fg": 7813,
+ "fg": 7971,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7813 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 7971 } ]
},
{
"id": "vp_wheel_wood",
- "fg": 7843,
+ "fg": 8001,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7843 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 8001 } ]
},
{
"id": [ "wheel_wood", "wheel_wood_b" ],
- "fg": 7843,
+ "fg": 8001,
"multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7843 } ]
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 8001 } ]
},
{
"id": "vp_wheel_wood_b",
- "fg": 7843,
- "multitile": true,
- "additional_tiles": [ { "id": "broken", "fg": 7017, "bg": 7843 } ]
- },
- { "id": "foot_crank", "fg": 7822 },
- { "id": "frame", "fg": 7842 },
- { "id": "hard_plate", "fg": 7831 },
- { "id": "kitchen_unit", "fg": 7834 },
- { "id": "motor", "fg": 7820 },
- { "id": "motor_large", "fg": 7821 },
- { "id": "muffler", "fg": 7826 },
- { "id": "spiked_plate", "fg": 7830 },
- { "id": "storage_battery", "fg": 7823 },
- { "id": "vehicle_controls", "fg": 7827 },
- { "id": "1cyl_combustion", "fg": 7816 },
- { "id": "v2_combustion", "fg": 7817 },
- { "id": [ "v6_combustion", "v6_diesel" ], "fg": 7818 },
- { "id": "v8_combustion", "fg": 7819 }
+ "fg": 8001,
+ "multitile": true,
+ "additional_tiles": [ { "id": "broken", "fg": 7608, "bg": 8001 } ]
+ },
+ { "id": "foot_crank", "fg": 7980 },
+ { "id": "frame", "fg": 8000 },
+ { "id": "hard_plate", "fg": 7989 },
+ { "id": "kitchen_unit", "fg": 7992 },
+ { "id": "motor", "fg": 7978 },
+ { "id": "motor_large", "fg": 7979 },
+ { "id": "muffler", "fg": 7984 },
+ { "id": "spiked_plate", "fg": 7988 },
+ { "id": "storage_battery", "fg": 7981 },
+ { "id": "vehicle_controls", "fg": 7985 },
+ { "id": "1cyl_combustion", "fg": 7974 },
+ { "id": "v2_combustion", "fg": 7975 },
+ { "id": [ "v6_combustion", "v6_diesel" ], "fg": 7976 },
+ { "id": "v8_combustion", "fg": 7977 }
]
},
{
"file": "fillergiant.png",
- "//": "range 7856 to 7871",
+ "//": "range 8016 to 8031",
"sprite_width": 96,
"sprite_height": 96,
"sprite_offset_x": -32,
@@ -12665,18 +12849,18 @@
"t_tree_pear_season_spring",
"t_tree_plum_season_spring"
],
- "fg": 6458,
- "bg": 6451
+ "fg": 7050,
+ "bg": 7043
},
- { "id": "t_tree_apricot_season_summer", "fg": 7856, "bg": 6452 },
- { "id": "t_tree_mulberry_season_summer", "fg": 7857, "bg": 6452 },
- { "id": "t_tree_elderberry_season_summer", "fg": 7857, "bg": 6452 },
- { "id": "t_tree_pear_season_autumn", "fg": 7858, "bg": 6452 },
- { "id": "t_tree_plum_season_summer", "fg": 7859, "bg": 6452 },
+ { "id": "t_tree_apricot_season_summer", "fg": 8016, "bg": 7044 },
+ { "id": "t_tree_mulberry_season_summer", "fg": 8017, "bg": 7044 },
+ { "id": "t_tree_elderberry_season_summer", "fg": 8017, "bg": 7044 },
+ { "id": "t_tree_pear_season_autumn", "fg": 8018, "bg": 7044 },
+ { "id": "t_tree_plum_season_summer", "fg": 8019, "bg": 7044 },
{
"id": [ "t_tree_apricot_harvested", "t_tree_mulberry_harvested", "t_tree_plum_harvested", "t_tree_pear_season_summer" ],
- "fg": 6453,
- "bg": 6452
+ "fg": 7045,
+ "bg": 7044
},
{
"id": [
@@ -12686,12 +12870,12 @@
"t_tree_pear_harvested"
],
"fg": [
- { "weight": 100, "sprite": 6454 },
- { "weight": 100, "sprite": 6455 },
- { "weight": 100, "sprite": 6456 },
- { "weight": 100, "sprite": 6457 }
+ { "weight": 100, "sprite": 7046 },
+ { "weight": 100, "sprite": 7047 },
+ { "weight": 100, "sprite": 7048 },
+ { "weight": 100, "sprite": 7049 }
],
- "bg": 6450
+ "bg": 7042
},
{
"id": [
@@ -12700,29 +12884,29 @@
"t_tree_pear_season_winter",
"t_tree_plum_season_winter"
],
- "fg": 6482,
- "bg": 6449
- },
- { "id": "t_tree_chestnut", "fg": 7861, "bg": 6451 },
- { "id": "t_tree_chestnut_season_summer", "fg": 7860, "bg": 6452 },
- { "id": "t_tree_chestnut_season_autumn", "fg": 7860, "bg": 6450 },
- { "id": "t_tree_chestnut_season_winter", "fg": 7860, "bg": 6449 },
- { "id": "t_tree_pine", "fg": 7865, "bg": 6451 },
- { "id": "t_tree_pine_season_summer", "fg": 7865, "bg": 6452 },
- { "id": "t_tree_pine_season_autumn", "fg": 7865, "bg": 6450 },
- { "id": "t_tree_pine_season_winter", "fg": 7865, "bg": 6449 },
- { "id": "t_tree_deadpine", "fg": 7862, "bg": 6451 },
- { "id": "t_tree_deadpine_season_summer", "fg": 7862, "bg": 6452 },
- { "id": "t_tree_deadpine_season_autumn", "fg": 7862, "bg": 6450 },
- { "id": "t_tree_deadpine_season_winter", "fg": 7862, "bg": 6449 },
- { "id": "t_tree_hickory", "fg": 7864, "bg": 6451 },
- { "id": "t_tree_hickory_season_summer", "fg": 7864, "bg": 6452 },
- { "id": "t_tree_hickory_season_autumn", "fg": 7864, "bg": 6450 },
- { "id": "t_tree_hickory_season_winter", "fg": 7863, "bg": 6449 },
- { "id": "t_tree_hickory_dead", "fg": 7863, "bg": 6451 },
- { "id": "t_tree_hickory_dead_season_summer", "fg": 7863, "bg": 6452 },
- { "id": "t_tree_hickory_dead_season_autumn", "fg": 7863, "bg": 6450 },
- { "id": "t_tree_hickory_dead_season_winter", "fg": 7863, "bg": 6449 }
+ "fg": 7074,
+ "bg": 7041
+ },
+ { "id": "t_tree_chestnut", "fg": 8021, "bg": 7043 },
+ { "id": "t_tree_chestnut_season_summer", "fg": 8020, "bg": 7044 },
+ { "id": "t_tree_chestnut_season_autumn", "fg": 8020, "bg": 7042 },
+ { "id": "t_tree_chestnut_season_winter", "fg": 8020, "bg": 7041 },
+ { "id": "t_tree_pine", "fg": 8025, "bg": 7043 },
+ { "id": "t_tree_pine_season_summer", "fg": 8025, "bg": 7044 },
+ { "id": "t_tree_pine_season_autumn", "fg": 8025, "bg": 7042 },
+ { "id": "t_tree_pine_season_winter", "fg": 8025, "bg": 7041 },
+ { "id": "t_tree_deadpine", "fg": 8022, "bg": 7043 },
+ { "id": "t_tree_deadpine_season_summer", "fg": 8022, "bg": 7044 },
+ { "id": "t_tree_deadpine_season_autumn", "fg": 8022, "bg": 7042 },
+ { "id": "t_tree_deadpine_season_winter", "fg": 8022, "bg": 7041 },
+ { "id": "t_tree_hickory", "fg": 8024, "bg": 7043 },
+ { "id": "t_tree_hickory_season_summer", "fg": 8024, "bg": 7044 },
+ { "id": "t_tree_hickory_season_autumn", "fg": 8024, "bg": 7042 },
+ { "id": "t_tree_hickory_season_winter", "fg": 8023, "bg": 7041 },
+ { "id": "t_tree_hickory_dead", "fg": 8023, "bg": 7043 },
+ { "id": "t_tree_hickory_dead_season_summer", "fg": 8023, "bg": 7044 },
+ { "id": "t_tree_hickory_dead_season_autumn", "fg": 8023, "bg": 7042 },
+ { "id": "t_tree_hickory_dead_season_winter", "fg": 8023, "bg": 7041 }
]
},
{
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index fb0eea5883e40..c9da05a60c22d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -6,6 +6,15 @@ set(MAIN_CPP ${CMAKE_SOURCE_DIR}/src/main.cpp)
set(MESSAGES_CPP ${CMAKE_SOURCE_DIR}/src/messages.cpp)
set(RESOURCE_RC ${CMAKE_SOURCE_DIR}/src/resource.rc)
+if (WIN32)
+ set(RSRC_RC_DEP "${CMAKE_SOURCE_DIR}/data/cataicon.ico")
+ set(RSRC_RC_DEP "${RSRC_RC_DEP};${CMAKE_SOURCE_DIR}/data/application_manifest.xml")
+ set_source_files_properties(
+ ${RESOURCE_RC}
+ PROPERTIES
+ OBJECT_DEPENDS "${RSRC_RC_DEP}")
+endif ()
+
file(GLOB CATACLYSM_DDA_SOURCES ${CMAKE_SOURCE_DIR}/src/*.cpp)
list(REMOVE_ITEM CATACLYSM_DDA_SOURCES ${MAIN_CPP} ${MESSAGES_CPP})
diff --git a/src/action.cpp b/src/action.cpp
index 57fc64ba27474..6fd3421c0165a 100644
--- a/src/action.cpp
+++ b/src/action.cpp
@@ -732,8 +732,9 @@ action_id handle_action_menu()
if( !player_character.controlling_vehicle ) {
action_weightings[ACTION_CYCLE_MOVE] = 400;
}
+ const item *weapon = player_character.get_wielded_item();
// Only prioritize fire weapon options if we're wielding a ranged weapon.
- if( player_character.weapon.is_gun() || player_character.weapon.has_flag( flag_REACH_ATTACK ) ) {
+ if( weapon->is_gun() || weapon->has_flag( flag_REACH_ATTACK ) ) {
action_weightings[ACTION_FIRE] = 350;
}
}
diff --git a/src/active_item_cache.cpp b/src/active_item_cache.cpp
index 9a2567f209416..fca0c4b315887 100644
--- a/src/active_item_cache.cpp
+++ b/src/active_item_cache.cpp
@@ -123,3 +123,16 @@ void active_item_cache::rotate_locations( int turns, const point &dim )
}
}
}
+
+void active_item_cache::mirror( const point &dim, bool horizontally )
+{
+ for( std::pair> &pair : active_items ) {
+ for( item_reference &ir : pair.second ) {
+ if( horizontally ) {
+ ir.location.x = dim.x - 1 - ir.location.x;
+ } else {
+ ir.location.y = dim.y - 1 - ir.location.y;
+ }
+ }
+ }
+}
diff --git a/src/active_item_cache.h b/src/active_item_cache.h
index fc40a14a6e496..8e697815717e5 100644
--- a/src/active_item_cache.h
+++ b/src/active_item_cache.h
@@ -82,6 +82,7 @@ class active_item_cache
/** Subtract delta from every item_reference's location */
void subtract_locations( const point &delta );
void rotate_locations( int turns, const point &dim );
+ void mirror( const point &dim, bool horizontally );
};
#endif // CATA_SRC_ACTIVE_ITEM_CACHE_H
diff --git a/src/activity_actor.cpp b/src/activity_actor.cpp
index cfb45367c4a48..7430c30826715 100644
--- a/src/activity_actor.cpp
+++ b/src/activity_actor.cpp
@@ -297,7 +297,7 @@ item *aim_activity_actor::get_weapon()
} else {
// Check for lost gun (e.g. yanked by zombie technician)
// TODO: check that this is the same gun that was used to start aiming
- item *weapon = &get_player_character().weapon;
+ item *weapon = get_player_character().get_wielded_item();
return weapon->is_null() ? nullptr : weapon;
}
}
@@ -3873,7 +3873,7 @@ void reload_activity_actor::finish( player_activity &act, Character &who )
reloadable_name );
if( who.has_wield_conflicts( reloadable ) ) {
reload_query.addentry( 1, wield_check, 'w',
- _( "Dispose of %s and wield %s" ), who.weapon.display_name(),
+ _( "Dispose of %s and wield %s" ), who.get_wielded_item()->display_name(),
reloadable_name );
} else {
reload_query.addentry( 1, wield_check, 'w', _( "Wield %s" ), reloadable_name );
diff --git a/src/activity_handlers.cpp b/src/activity_handlers.cpp
index 057f39d11e1b1..d87edb4cd2b5d 100644
--- a/src/activity_handlers.cpp
+++ b/src/activity_handlers.cpp
@@ -1808,18 +1808,19 @@ void activity_handlers::pulp_do_turn( player_activity *act, Character *you )
map &here = get_map();
const tripoint &pos = here.getlocal( act->placement );
+ const item *weapon = you->get_wielded_item();
// Stabbing weapons are a lot less effective at pulping
- const int cut_power = std::max( you->weapon.damage_melee( damage_type::CUT ),
- you->weapon.damage_melee( damage_type::STAB ) / 2 );
+ const int cut_power = std::max( weapon->damage_melee( damage_type::CUT ),
+ weapon->damage_melee( damage_type::STAB ) / 2 );
///\EFFECT_STR increases pulping power, with diminishing returns
- float pulp_power = std::sqrt( ( you->str_cur + you->weapon.damage_melee( damage_type::BASH ) ) *
+ float pulp_power = std::sqrt( ( you->str_cur + weapon->damage_melee( damage_type::BASH ) ) *
( cut_power + 1.0f ) );
- float pulp_effort = you->str_cur + you->weapon.damage_melee( damage_type::BASH );
+ float pulp_effort = you->str_cur + weapon->damage_melee( damage_type::BASH );
// Multiplier to get the chance right + some bonus for survival skill
pulp_power *= 40 + you->get_skill_level( skill_survival ) * 5;
- const int mess_radius = you->weapon.has_flag( flag_MESSY ) ? 2 : 1;
+ const int mess_radius = weapon->has_flag( flag_MESSY ) ? 2 : 1;
int moves = 0;
// use this to collect how many corpse are pulped
@@ -4155,8 +4156,11 @@ void activity_handlers::study_spell_do_turn( player_activity *act, Character *yo
const int xp = roll_remainder( studying.exp_modifier( *you ) / to_turns( 6_seconds ) );
act->values[0] += xp;
studying.gain_exp( xp );
- you->practice( studying.skill(), xp, studying.get_difficulty() );
-
+ bool leveled_up = you->practice( studying.skill(), xp, studying.get_difficulty(), true );
+ if( leveled_up && studying.get_difficulty() < you->get_skill_level( studying.skill() ) ) {
+ you->handle_skill_warning( studying.skill(),
+ true ); // show the skill warning on level up, since we suppress it in practice() above
+ }
// Notify player if the spell leveled up
if( studying.get_level() > old_level ) {
you->add_msg_if_player( m_good, _( "You gained a level in %s!" ), studying.name() );
diff --git a/src/activity_item_handling.cpp b/src/activity_item_handling.cpp
index 0f73aa5217634..2e9028c215e5d 100644
--- a/src/activity_item_handling.cpp
+++ b/src/activity_item_handling.cpp
@@ -1386,7 +1386,7 @@ static activity_reason_info can_do_activity_there( const activity_id &act, Chara
return activity_reason_info::ok( do_activity_reason::CAN_DO_FETCH );
} else if( act == ACT_MULTIPLE_DIS ) {
// Is there anything to be disassembled?
- const inventory inv = you.crafting_inventory( src_loc, PICKUP_RANGE - 1 );
+ const inventory inv = you.crafting_inventory( src_loc, PICKUP_RANGE - 1, false );
requirement_data req;
for( item &i : here.i_at( src_loc ) ) {
// Skip items marked by other ppl.
@@ -1399,7 +1399,7 @@ static activity_reason_info can_do_activity_there( const activity_id &act, Chara
// Are the requirements fulfilled?
const recipe &r = recipe_dictionary::get_uncraft( ( i.typeId() == itype_id( "disassembly" ) ) ?
i.components.front().typeId() : i.typeId() );
- const auto &req = r.disassembly_requirements();
+ req = r.disassembly_requirements();
if( !std::all_of( req.get_qualities().begin(),
req.get_qualities().end(), [&inv]( const std::vector &cur ) {
return cur.empty() ||
@@ -2648,7 +2648,6 @@ static requirement_check_result generic_multi_activity_check_requirement( Charac
// is it even worth fetching anything if there isn't enough nearby?
if( !are_requirements_nearby( tool_pickup ? loot_zone_spots : combined_spots, what_we_need, you,
act_id, tool_pickup, src_loc ) ) {
-
you.add_msg_player_or_npc( m_info,
_( "The required items are not available to complete this task." ),
_( "The required items are not available to complete this task." ) );
diff --git a/src/advanced_inv_pane.cpp b/src/advanced_inv_pane.cpp
index 03d0695ff0142..ac2627bb098c8 100644
--- a/src/advanced_inv_pane.cpp
+++ b/src/advanced_inv_pane.cpp
@@ -146,11 +146,11 @@ std::vector avatar::get_AIM_inventory( const advanced_inv
}
}
}
-
- if( weapon.is_container() ) {
+ item *weapon = get_wielded_item();
+ if( weapon->is_container() ) {
for( const std::vector &it_stack : item_list_to_stack(
- item_location( *this, &weapon ),
- weapon.all_items_top( item_pocket::pocket_type::CONTAINER ) ) ) {
+ item_location( *this, weapon ),
+ weapon->all_items_top( item_pocket::pocket_type::CONTAINER ) ) ) {
advanced_inv_listitem adv_it( it_stack, item_index++, square.id, false );
if( !pane.is_filtered( *adv_it.items.front() ) ) {
square.volume += adv_it.volume;
@@ -181,8 +181,9 @@ void advanced_inventory_pane::add_items_from_area( advanced_inv_area &square,
square.volume = 0_ml;
square.weight = 0_gram;
- if( !u.weapon.is_null() ) {
- advanced_inv_listitem it( item_location( u, &u.weapon ), 0, 1, square.id, false );
+ item *weapon = u.get_wielded_item();
+ if( !weapon->is_null() ) {
+ advanced_inv_listitem it( item_location( u, weapon ), 0, 1, square.id, false );
if( !is_filtered( *it.items.front() ) ) {
square.volume += it.volume;
square.weight += it.weight;
diff --git a/src/avatar.cpp b/src/avatar.cpp
index 5f642ad5102b7..381ba081179b2 100644
--- a/src/avatar.cpp
+++ b/src/avatar.cpp
@@ -692,29 +692,29 @@ void avatar::identify( const item &item )
reading->time );
}
- std::vector recipe_list;
+ std::vector crafting_recipes;
+ std::vector practice_recipes;
for( const auto &elem : reading->recipes ) {
- // Practice recipes are hidden. They're not written down in the book, they're
- // just things that the avatar can figure out with help from the book.
- if( elem.recipe->is_practice() ) {
- continue;
- }
// If the player knows it, they recognize it even if it's not clearly stated.
if( elem.is_hidden() && !knows_recipe( elem.recipe ) ) {
continue;
}
- recipe_list.push_back( elem.name() );
- }
- if( !recipe_list.empty() ) {
- std::string recipe_line =
- string_format( ngettext( "This book contains %1$zu crafting recipe: %2$s",
- "This book contains %1$zu crafting recipes: %2$s",
- recipe_list.size() ),
- recipe_list.size(),
- enumerate_as_string( recipe_list ) );
- add_msg( m_info, recipe_line );
- }
- if( recipe_list.size() != reading->recipes.size() ) {
+ if( elem.recipe->is_practice() ) {
+ practice_recipes.emplace_back( elem.recipe->result_name() );
+ } else {
+ crafting_recipes.emplace_back( elem.name() );
+ }
+ }
+ if( !crafting_recipes.empty() ) {
+ add_msg( m_info, string_format( _( "This book can help you craft: %s" ),
+ enumerate_as_string( crafting_recipes ) ) );
+ }
+ if( !practice_recipes.empty() ) {
+ add_msg( m_info, string_format( _( "This book can help you practice: %s" ),
+ enumerate_as_string( practice_recipes ) ) );
+ }
+ const std::size_t num_total_recipes = crafting_recipes.size() + practice_recipes.size();
+ if( num_total_recipes < reading->recipes.size() ) {
add_msg( m_info, _( "It might help you figuring out some more recipes." ) );
}
}
@@ -794,6 +794,16 @@ int avatar::print_info( const catacurses::window &w, int vStart, int, int column
get_name() ) - 1;
}
+
+mfaction_id avatar::get_monster_faction() const
+{
+ // Can't be a static int_id, because mods add factions
+ static const string_id player_fac( "player" );
+
+ return player_fac.id();
+}
+
+
void avatar::disp_morale()
{
int equilibrium = calc_focus_equilibrium();
@@ -1319,7 +1329,8 @@ bool avatar::wield( item &target, const int obtain_cost )
return true;
}
- if( weapon.has_item( target ) ) {
+ item *weapon = get_wielded_item();
+ if( weapon->has_item( target ) ) {
add_msg( m_info, _( "You need to put the bag away before trying to wield something from it." ) );
return false;
}
@@ -1328,7 +1339,7 @@ bool avatar::wield( item &target, const int obtain_cost )
return false;
}
- bool combine_stacks = target.can_combine( weapon );
+ bool combine_stacks = target.can_combine( *weapon );
if( !combine_stacks && !unwield() ) {
return false;
}
@@ -1355,27 +1366,28 @@ bool avatar::wield( item &target, const int obtain_cost )
if( has_item( target ) ) {
item removed = i_rem( &target );
if( combine_stacks ) {
- weapon.combine( removed );
+ weapon->combine( removed );
} else {
- weapon = removed;
+ set_wielded_item( removed );
+
}
} else {
if( combine_stacks ) {
- weapon.combine( target );
+ weapon->combine( target );
} else {
- weapon = target;
+ set_wielded_item( target );
}
}
- last_item = weapon.typeId();
+ last_item = weapon->typeId();
recoil = MAX_RECOIL;
- weapon.on_wield( *this );
+ weapon->on_wield( *this );
get_event_bus().send( getID(), last_item );
- inv->update_invlet( weapon );
- inv->update_cache_with_item( weapon );
+ inv->update_invlet( *weapon );
+ inv->update_cache_with_item( *weapon );
return true;
}
diff --git a/src/avatar.h b/src/avatar.h
index 67b39c7d6b330..b93e8cd3fd795 100644
--- a/src/avatar.h
+++ b/src/avatar.h
@@ -103,6 +103,8 @@ class avatar : public Character
return this;
}
+ mfaction_id get_monster_faction() const override;
+
std::string get_save_id() const {
return save_id.empty() ? name : save_id;
}
diff --git a/src/avatar_action.cpp b/src/avatar_action.cpp
index fc5e110ea1ad0..ad124ae309f88 100644
--- a/src/avatar_action.cpp
+++ b/src/avatar_action.cpp
@@ -155,7 +155,7 @@ bool avatar_action::move( avatar &you, map &m, const tripoint &d )
}
// If any leg broken without crutches and not already on the ground topple over
- if( ( you.get_working_leg_count() < 2 && !you.weapon.has_flag( flag_CRUTCHES ) ) &&
+ if( ( you.get_working_leg_count() < 2 && !you.get_wielded_item()->has_flag( flag_CRUTCHES ) ) &&
!you.is_prone() ) {
you.set_movement_mode( move_mode_id( "prone" ) );
you.add_msg_if_player( m_bad,
@@ -187,19 +187,20 @@ bool avatar_action::move( avatar &you, map &m, const tripoint &d )
via_ramp = true;
}
+ item *weapon = you.get_wielded_item();
if( m.has_flag( ter_furn_flag::TFLAG_MINEABLE, dest_loc ) && g->mostseen == 0 &&
get_option( "AUTO_FEATURES" ) && get_option( "AUTO_MINING" ) &&
!m.veh_at( dest_loc ) && !you.is_underwater() && !you.has_effect( effect_stunned ) &&
!is_riding && !you.has_effect( effect_incorporeal ) ) {
- if( you.weapon.has_flag( flag_DIG_TOOL ) ) {
- if( you.weapon.type->can_use( "JACKHAMMER" ) &&
- you.weapon.ammo_sufficient( &you ) ) {
- you.invoke_item( &you.weapon, "JACKHAMMER", dest_loc );
+ if( weapon->has_flag( flag_DIG_TOOL ) ) {
+ if( weapon->type->can_use( "JACKHAMMER" ) &&
+ weapon->ammo_sufficient( &you ) ) {
+ you.invoke_item( weapon, "JACKHAMMER", dest_loc );
// don't move into the tile until done mining
you.defer_move( dest_loc );
return true;
- } else if( you.weapon.type->can_use( "PICKAXE" ) ) {
- you.invoke_item( &you.weapon, "PICKAXE", dest_loc );
+ } else if( weapon->type->can_use( "PICKAXE" ) ) {
+ you.invoke_item( weapon, "PICKAXE", dest_loc );
// don't move into the tile until done mining
you.defer_move( dest_loc );
return true;
@@ -657,7 +658,7 @@ static float rate_critter( const Creature &c )
{
const npc *np = dynamic_cast( &c );
if( np != nullptr ) {
- return np->weapon_value( np->weapon );
+ return np->weapon_value( np->get_wielded_item() );
}
const monster *m = dynamic_cast( &c );
@@ -666,7 +667,8 @@ static float rate_critter( const Creature &c )
void avatar_action::autoattack( avatar &you, map &m )
{
- int reach = you.weapon.reach_range( you );
+ const item *weapon = you.get_wielded_item();
+ int reach = weapon->reach_range( you );
std::vector critters = you.get_targetable_creatures( reach, true );
critters.erase( std::remove_if( critters.begin(), critters.end(), [&you,
reach]( const Creature * c ) {
@@ -792,17 +794,18 @@ static bool can_fire_turret( avatar &you, const map &m, const turret_data &turre
void avatar_action::fire_wielded_weapon( avatar &you )
{
- item &weapon = you.weapon;
- if( weapon.is_gunmod() ) {
+ const item *weapon = you.get_wielded_item();
+ if( weapon->is_gunmod() ) {
add_msg( m_info,
_( "The %s must be attached to a gun, it can not be fired separately." ),
- weapon.tname() );
+ weapon->tname() );
return;
- } else if( !weapon.is_gun() ) {
+ } else if( !weapon->is_gun() ) {
return;
- } else if( weapon.ammo_data() && !weapon.ammo_types().count( weapon.loaded_ammo().ammo_type() ) ) {
+ } else if( weapon->ammo_data() &&
+ !weapon->ammo_types().count( weapon->loaded_ammo().ammo_type() ) ) {
add_msg( m_info, _( "The %s can't be fired while loaded with incompatible ammunition %s" ),
- weapon.tname(), weapon.ammo_current()->nname( 1 ) );
+ weapon->tname(), weapon->ammo_current()->nname( 1 ) );
return;
}
@@ -846,7 +849,7 @@ void avatar_action::mend( avatar &you, item_location loc )
if( !loc ) {
if( you.is_armed() ) {
- loc = item_location( you, &you.weapon );
+ loc = item_location( you, you.get_wielded_item() );
} else {
add_msg( m_info, _( "You're not wielding anything." ) );
return;
@@ -1024,7 +1027,8 @@ void avatar_action::plthrow( avatar &you, item_location loc,
g->temp_exit_fullscreen();
- target_handler::trajectory trajectory = target_handler::mode_throw( you, you.weapon,
+ item *weapon = you.get_wielded_item();
+ target_handler::trajectory trajectory = target_handler::mode_throw( you, *weapon,
blind_throw_from_pos.has_value() );
// If we previously shifted our position, put ourselves back now that we've picked our target.
@@ -1036,8 +1040,8 @@ void avatar_action::plthrow( avatar &you, item_location loc,
return;
}
- if( you.weapon.count_by_charges() && you.weapon.charges > 1 ) {
- you.weapon.mod_charges( -1 );
+ if( weapon->count_by_charges() && weapon->charges > 1 ) {
+ weapon->mod_charges( -1 );
thrown.charges = 1;
} else {
you.remove_weapon();
diff --git a/src/bionics.cpp b/src/bionics.cpp
index a22a7bebc5a0e..97e7dd724bd24 100644
--- a/src/bionics.cpp
+++ b/src/bionics.cpp
@@ -553,7 +553,7 @@ void npc::discharge_cbm_weapon()
}
const bionic &bio = ( *my_bionics )[cbm_weapon_index];
mod_power_level( -bio.info().power_activate );
- weapon = real_weapon;
+ set_wielded_item( real_weapon );
cbm_weapon_index = -1;
}
@@ -583,6 +583,7 @@ void npc::check_or_use_weapon_cbm( const bionic_id &cbm_id )
}
bionic &bio = ( *my_bionics )[index];
+ item *weapon = get_wielded_item();
if( bio.info().has_flag( json_flag_BIONIC_GUN ) ) {
if( !bio.has_weapon() ) {
debugmsg( "NPC tried to activate gun bionic \"%s\" without fake_weapon",
@@ -597,19 +598,19 @@ void npc::check_or_use_weapon_cbm( const bionic_id &cbm_id )
return;
}
- int ammo_count = weapon.ammo_remaining( this );
- const int ups_drain = weapon.get_gun_ups_drain();
+ int ammo_count = weapon->ammo_remaining( this );
+ const int ups_drain = weapon->get_gun_ups_drain();
if( ups_drain > 0 ) {
ammo_count = ammo_count / ups_drain;
}
const int cbm_ammo = free_power / bio.info().power_activate;
- if( weapon_value( weapon, ammo_count ) < weapon_value( cbm_weapon, cbm_ammo ) ) {
- real_weapon = weapon;
- weapon = cbm_weapon;
+ if( weapon_value( *weapon, ammo_count ) < weapon_value( cbm_weapon, cbm_ammo ) ) {
+ real_weapon = *weapon;
+ set_wielded_item( cbm_weapon );
cbm_weapon_index = index;
}
- } else if( bio.info().has_flag( json_flag_BIONIC_WEAPON ) && !weapon.has_flag( flag_NO_UNWIELD ) &&
+ } else if( bio.info().has_flag( json_flag_BIONIC_WEAPON ) && !weapon->has_flag( flag_NO_UNWIELD ) &&
free_power > bio.info().power_activate ) {
if( !bio.has_weapon() ) {
@@ -619,12 +620,12 @@ void npc::check_or_use_weapon_cbm( const bionic_id &cbm_id )
}
if( is_armed() ) {
- stow_item( weapon );
+ stow_item( *weapon );
}
add_msg_if_player_sees( pos(), m_info, _( "%s activates their %s." ),
disp_name(), bio.info().name );
- weapon = bio.get_weapon();
+ set_wielded_item( bio.get_weapon() );
mod_power_level( -bio.info().power_activate );
bio.powered = true;
cbm_weapon_index = index;
@@ -638,6 +639,8 @@ void npc::check_or_use_weapon_cbm( const bionic_id &cbm_id )
// share functions....
bool Character::activate_bionic( int b, bool eff_only, bool *close_bionics_ui )
{
+
+ item *weapon = get_wielded_item();
bionic &bio = ( *my_bionics )[b];
const bool mounted = is_mounted();
if( bio.incapacitated_time > 0_turns ) {
@@ -647,9 +650,9 @@ bool Character::activate_bionic( int b, bool eff_only, bool *close_bionics_ui )
}
// Special compatibility code for people who updated saves with their claws out
- if( ( weapon.typeId().str() == bio_claws_weapon.str() &&
+ if( ( weapon->typeId().str() == bio_claws_weapon.str() &&
bio.id == bio_claws_weapon ) ||
- ( weapon.typeId().str() == bio_blade_weapon.str() &&
+ ( weapon->typeId().str() == bio_blade_weapon.str() &&
bio.id == bio_blade_weapon ) ) {
return deactivate_bionic( b );
}
@@ -725,7 +728,7 @@ bool Character::activate_bionic( int b, bool eff_only, bool *close_bionics_ui )
return false;
}
- if( weapon.has_flag( flag_NO_UNWIELD ) ) {
+ if( weapon->has_flag( flag_NO_UNWIELD ) ) {
cata::optional active_bio_weapon_index = active_bionic_weapon_index();
if( active_bio_weapon_index && deactivate_bionic( *active_bio_weapon_index, eff_only ) ) {
// restore state and try again
@@ -735,15 +738,15 @@ bool Character::activate_bionic( int b, bool eff_only, bool *close_bionics_ui )
return activate_bionic( b, eff_only, close_bionics_ui );
}
- add_msg_if_player( m_info, _( "Deactivate your %s first!" ), weapon.tname() );
+ add_msg_if_player( m_info, _( "Deactivate your %s first!" ), weapon->tname() );
refund_power();
bio.powered = false;
return false;
}
- if( !weapon.is_null() ) {
- const std::string query = string_format( _( "Stop wielding %s?" ), weapon.tname() );
- if( !dispose_item( item_location( *this, &weapon ), query ) ) {
+ if( !weapon->is_null() ) {
+ const std::string query = string_format( _( "Stop wielding %s?" ), weapon->tname() );
+ if( !dispose_item( item_location( *this, weapon ), query ) ) {
refund_power();
bio.powered = false;
return false;
@@ -751,8 +754,9 @@ bool Character::activate_bionic( int b, bool eff_only, bool *close_bionics_ui )
}
add_msg_activate();
- weapon = bio.get_weapon();
- weapon.invlet = '#';
+
+ set_wielded_item( bio.get_weapon() );
+ get_wielded_item()->invlet = '#';
//if( bio.ammo_count > 0 ) {
// weapon.ammo_set( bio.ammo_loaded, bio.ammo_count );
// avatar_action::fire_wielded_weapon( player_character );
@@ -1141,6 +1145,7 @@ bool Character::activate_bionic( int b, bool eff_only, bool *close_bionics_ui )
cata::optional Character::active_bionic_weapon_index() const
{
+ const item weapon = get_wielded_item();
if( weapon.is_null() ) {
return cata::nullopt;
}
@@ -1210,20 +1215,20 @@ bool Character::deactivate_bionic( int b, bool eff_only )
bio.powered = false;
add_msg_if_player( m_neutral, _( "You deactivate your %s." ), bio.info().name );
}
-
+ const item &w_weapon = *get_wielded_item();
// Deactivation effects go here
if( bio.info().has_flag( json_flag_BIONIC_WEAPON ) && !bio.info().fake_weapon.is_empty() ) {
- if( weapon.typeId() == bio.info().fake_weapon ) {
- add_msg_if_player( _( "You withdraw your %s." ), weapon.tname() );
+ if( w_weapon.typeId() == bio.info().fake_weapon ) {
+ add_msg_if_player( _( "You withdraw your %s." ), w_weapon.tname() );
if( get_player_view().sees( pos() ) ) {
if( male ) {
- add_msg_if_npc( m_info, _( " withdraws his %s." ), weapon.tname() );
+ add_msg_if_npc( m_info, _( " withdraws his %s." ), w_weapon.tname() );
} else {
- add_msg_if_npc( m_info, _( " withdraws her %s." ), weapon.tname() );
+ add_msg_if_npc( m_info, _( " withdraws her %s." ), w_weapon.tname() );
}
}
- bio.set_weapon( weapon );
- weapon = item();
+ bio.set_weapon( *get_wielded_item() );
+ set_wielded_item( item() );
}
} else if( bio.id == bio_cqb ) {
martial_arts_data->selected_style_check();
diff --git a/src/character.cpp b/src/character.cpp
index 93adc940ca6e1..c889c2295d653 100644
--- a/src/character.cpp
+++ b/src/character.cpp
@@ -522,6 +522,21 @@ void Character::randomize_height()
init_height = clamp( x, Character::min_height(), Character::max_height() );
}
+const item &Character::get_wielded_item() const
+{
+ return weapon;
+}
+
+item *Character::get_wielded_item()
+{
+ return &weapon;
+}
+
+void Character::set_wielded_item( const item &to_wield )
+{
+ weapon = to_wield;
+}
+
void Character::randomize_blood()
{
// Blood type distribution data is taken from this study on blood types of
@@ -1268,13 +1283,14 @@ bool Character::is_mounted() const
void Character::forced_dismount()
{
+ item *weapon = get_wielded_item();
remove_effect( effect_riding );
bool mech = false;
if( mounted_creature ) {
auto *mon = mounted_creature.get();
if( mon->has_flag( MF_RIDEABLE_MECH ) && !mon->type->mech_weapon.is_empty() ) {
mech = true;
- remove_item( weapon );
+ remove_item( *weapon );
}
mon->mounted_player_id = character_id();
mon->remove_effect( effect_ridden );
@@ -1379,12 +1395,13 @@ void Character::dismount()
add_msg( m_warning, _( "You cannot dismount there!" ) );
return;
}
+ item *weapon = get_wielded_item();
remove_effect( effect_riding );
monster *critter = mounted_creature.get();
critter->mounted_player_id = character_id();
if( critter->has_flag( MF_RIDEABLE_MECH ) && !critter->type->mech_weapon.is_empty() &&
- weapon.typeId() == critter->type->mech_weapon ) {
- remove_item( weapon );
+ weapon->typeId() == critter->type->mech_weapon ) {
+ remove_item( *weapon );
}
avatar &player_character = get_avatar();
if( is_avatar() && player_character.get_grab_type() != object_type::NONE ) {
@@ -1438,10 +1455,10 @@ void Character::on_dodge( Creature *source, float difficulty )
// Each avoided hit consumes an available dodge
// When no more available we are likely to fail player::dodge_roll
dodges_left--;
-
+ const item *weapon = get_wielded_item();
// dodging throws of our aim unless we are either skilled at dodging or using a small weapon
- if( is_armed() && weapon.is_gun() ) {
- recoil += std::max( weapon.volume() / 250_ml - get_skill_level( skill_dodge ), 0 ) * rng( 0, 100 );
+ if( is_armed() && weapon->is_gun() ) {
+ recoil += std::max( weapon->volume() / 250_ml - get_skill_level( skill_dodge ), 0 ) * rng( 0, 100 );
recoil = std::min( MAX_RECOIL, recoil );
}
@@ -2290,12 +2307,13 @@ void Character::conduct_blood_analysis()
int Character::get_standard_stamina_cost( const item *thrown_item ) const
{
+ const item weapon = get_wielded_item();
// Previously calculated as 2_gram * std::max( 1, str_cur )
// using 16_gram normalizes it to 8 str. Same effort expenditure
// for each strike, regardless of weight. This is compensated
// for by the additional move cost as weapon weight increases
//If the item is thrown, override with the thrown item instead.
- const int weight_cost = ( thrown_item == nullptr ) ? this->weapon.weight() /
+ const int weight_cost = ( thrown_item == nullptr ) ? weapon.weight() /
( 16_gram ) : thrown_item->weight() / ( 16_gram );
return ( weight_cost + 50 ) * -1 * melee_stamina_cost_modifier();
}
@@ -2333,6 +2351,7 @@ std::vector Character::nearby( const
return res;
}
+
std::list- Character::remove_worn_items_with( const std::function &filter )
{
invalidate_inventory_validity_cache();
@@ -2467,6 +2486,7 @@ units::mass Character::weight_carried_with_tweaks( const item_tweaks &tweaks ) c
}
// Wielded item
+ const item weapon = get_wielded_item();
units::mass weaponweight = 0_gram;
if( !without.count( &weapon ) ) {
weaponweight += weapon.weight();
@@ -2530,6 +2550,7 @@ units::volume Character::volume_carried_with_tweaks( const item_tweaks &tweaks )
}
// Wielded item
+ const item weapon = get_wielded_item();
if( !without.count( &weapon ) ) {
ret += weapon.get_contents_volume_with_tweaks( without );
}
@@ -2577,6 +2598,7 @@ units::mass Character::weight_capacity() const
bool Character::can_pickVolume( const item &it, bool, const item *avoid ) const
{
+ const item weapon = get_wielded_item();
if( weapon.can_contain( it ).success() && ( avoid == nullptr || &weapon != avoid ) ) {
return true;
}
@@ -2638,6 +2660,7 @@ bool Character::can_use( const item &it, const item &context ) const
return true;
}
+
ret_val Character::can_unwield( const item &it ) const
{
if( it.has_flag( flag_NO_UNWIELD ) ) {
@@ -2656,7 +2679,6 @@ void Character::invalidate_inventory_validity_cache()
{
cache_inventory_is_valid = false;
}
-
bool Character::is_wielding( const item &target ) const
{
return &weapon == ⌖
@@ -6497,6 +6519,7 @@ ret_val Character::can_wield( const item &it ) const
return ret_val::make_failure( _( "Can't wield spilt liquids." ) );
}
+ const item weapon = get_wielded_item();
if( is_armed() && !can_unwield( weapon ).success() ) {
return ret_val::make_failure( _( "The %s is preventing you from wielding the %s." ),
weapname(), it.tname() );
diff --git a/src/character.h b/src/character.h
index 7b91f2ba9ca50..016c3847c3fa8 100644
--- a/src/character.h
+++ b/src/character.h
@@ -2228,7 +2228,12 @@ class Character : public Creature, public visitable
cata::optional destination_point;
pimpl inv;
itype_id last_item;
+ private:
item weapon;
+ public:
+ const item &get_wielded_item() const;
+ item *get_wielded_item();
+ void set_wielded_item( const item &to_wield );
int scent = 0;
pimpl my_bionics;
diff --git a/src/character_martial_arts.cpp b/src/character_martial_arts.cpp
index b2aa3241f5fcd..c086de31cdbfd 100644
--- a/src/character_martial_arts.cpp
+++ b/src/character_martial_arts.cpp
@@ -126,7 +126,7 @@ std::string character_martial_arts::enumerate_known_styles( const itype_id &weap
std::string character_martial_arts::selected_style_name( const Character &owner ) const
{
- if( style_selected->force_unarmed || style_selected->weapon_valid( owner.weapon ) ) {
+ if( style_selected->force_unarmed || style_selected->weapon_valid( owner.get_wielded_item() ) ) {
return style_selected->name.translated();
} else if( owner.is_armed() ) {
return _( "Normal" );
diff --git a/src/computer.cpp b/src/computer.cpp
index d8c789b65208c..d9e582d892f78 100644
--- a/src/computer.cpp
+++ b/src/computer.cpp
@@ -308,6 +308,8 @@ std::string enum_to_string( const computer_action act )
case COMPACT_MAPS: return "maps";
case COMPACT_MISS_DISARM: return "miss_disarm";
case COMPACT_OPEN: return "open";
+ case COMPACT_OPEN_GATE: return "open_gate";
+ case COMPACT_CLOSE_GATE: return "close_gate";
case COMPACT_OPEN_DISARM: return "open_disarm";
case COMPACT_PORTAL: return "portal";
case COMPACT_RADIO_ARCHIVE: return "radio_archive";
diff --git a/src/computer.h b/src/computer.h
index 3e96434b2ea50..145af08d31566 100644
--- a/src/computer.h
+++ b/src/computer.h
@@ -38,6 +38,8 @@ enum computer_action {
COMPACT_MISS_DISARM,
COMPACT_OPEN,
COMPACT_OPEN_DISARM,
+ COMPACT_OPEN_GATE,
+ COMPACT_CLOSE_GATE,
COMPACT_PORTAL,
COMPACT_RADIO_ARCHIVE,
COMPACT_RELEASE,
diff --git a/src/computer_session.cpp b/src/computer_session.cpp
index 1535b9c928c8e..a82973bb29210 100644
--- a/src/computer_session.cpp
+++ b/src/computer_session.cpp
@@ -288,6 +288,8 @@ computer_session::computer_action_functions = {
{ COMPACT_MAPS, &computer_session::action_maps },
{ COMPACT_MISS_DISARM, &computer_session::action_miss_disarm },
{ COMPACT_OPEN, &computer_session::action_open },
+ { COMPACT_OPEN_GATE, &computer_session::action_open_gate },
+ { COMPACT_CLOSE_GATE, &computer_session::action_close_gate },
{ COMPACT_OPEN_DISARM, &computer_session::action_open_disarm },
{ COMPACT_PORTAL, &computer_session::action_portal },
{ COMPACT_RADIO_ARCHIVE, &computer_session::action_radio_archive },
@@ -378,6 +380,20 @@ void computer_session::action_open()
query_any( _( "Doors opened. Press any key…" ) );
}
+void computer_session::action_open_gate()
+{
+ get_map().translate_radius( t_wall_metal, t_metal_floor, 8.0, get_player_character().pos(),
+ true );
+ query_any( _( "Gates opened. Press any key…" ) );
+}
+
+void computer_session::action_close_gate()
+{
+ get_map().translate_radius( t_metal_floor, t_wall_metal, 8.0, get_player_character().pos(),
+ true );
+ query_any( _( "Gates closed. Press any key…" ) );
+}
+
//LOCK AND UNLOCK are used to build more complex buildings
// that can have multiple doors that can be locked and be
// unlocked by different computers.
diff --git a/src/computer_session.h b/src/computer_session.h
index 47b686cc31406..3937995a99f64 100644
--- a/src/computer_session.h
+++ b/src/computer_session.h
@@ -108,6 +108,8 @@ class computer_session
void action_maps();
void action_miss_disarm();
void action_open();
+ void action_open_gate();
+ void action_close_gate();
void action_open_disarm();
void action_portal();
void action_radio_archive();
diff --git a/src/construction.cpp b/src/construction.cpp
index 33a1c95e9a13e..f0523f20bb578 100644
--- a/src/construction.cpp
+++ b/src/construction.cpp
@@ -34,6 +34,7 @@
#include "item_stack.h"
#include "iuse.h"
#include "json.h"
+#include "make_static.h"
#include "map.h"
#include "map_iterator.h"
#include "mapdata.h"
@@ -1300,7 +1301,8 @@ void construct::done_vehicle( const tripoint &p )
return;
}
veh->name = name;
- veh->install_part( point_zero, vpart_from_item( get_avatar().lastconsumed ) );
+ veh->install_part( point_zero, vpart_from_item( get_avatar().has_trait( trait_DEBUG_HS ) ?
+ STATIC( itype_id( "frame" ) ) : get_avatar().lastconsumed ) );
// Update the vehicle cache immediately,
// or the vehicle will be invisible for the first couple of turns.
diff --git a/src/consumption.cpp b/src/consumption.cpp
index e333623e47928..8b2f62900f99e 100644
--- a/src/consumption.cpp
+++ b/src/consumption.cpp
@@ -805,14 +805,11 @@ ret_val Character::will_eat( const item &food, bool interactive )
}
}
- if( food.has_flag( flag_STRICT_HUMANITARIANISM ) &&
- !has_trait_flag( json_flag_STRICT_HUMANITARIAN ) ) {
- add_consequence( _( "The thought of eating demihuman flesh makes you feel sick." ), CANNIBALISM );
- }
-
const bool carnivore = has_trait( trait_CARNIVORE );
- if( food.has_flag( flag_CANNIBALISM ) &&
- !has_trait_flag( STATIC( json_character_flag( "CANNIBAL" ) ) ) ) {
+ const bool food_is_human_flesh = food.has_flag( flag_CANNIBALISM ) ||
+ ( food.has_flag( flag_STRICT_HUMANITARIANISM ) &&
+ !has_trait_flag( json_flag_STRICT_HUMANITARIAN ) );
+ if( food_is_human_flesh && !has_trait_flag( STATIC( json_character_flag( "CANNIBAL" ) ) ) ) {
add_consequence( _( "The thought of eating human flesh makes you feel sick." ), CANNIBALISM );
}
@@ -1178,7 +1175,10 @@ void Character::modify_morale( item &food, const int nutr )
}
}
- if( food.has_flag( flag_CANNIBALISM ) ) {
+ const bool food_is_human_flesh = food.has_flag( flag_CANNIBALISM ) ||
+ ( food.has_flag( flag_STRICT_HUMANITARIANISM ) &&
+ !has_trait_flag( json_flag_STRICT_HUMANITARIAN ) );
+ if( food_is_human_flesh ) {
// Sapiovores don't recognize humans as the same species.
// But let them possibly feel cool about eating sapient stuff - treat like psycho
// However, spiritual sapiovores should still recognize humans as having a soul or special for religious reasons
diff --git a/src/crafting.cpp b/src/crafting.cpp
index b85cb12b3f4c0..17132add328e1 100644
--- a/src/crafting.cpp
+++ b/src/crafting.cpp
@@ -468,7 +468,7 @@ static std::vector get_eligible_containers_recursive( const item &
std::vector Character::get_eligible_containers_for_crafting() const
{
std::vector conts;
-
+ const item &weapon = get_wielded_item();
conts = get_eligible_containers_recursive( weapon, true );
for( const auto &it : worn ) {
@@ -640,13 +640,14 @@ static void set_components( std::list
- &components, const std::list
- &
static cata::optional wield_craft( Character &p, item &craft )
{
+ item *weapon = p.get_wielded_item();
if( p.wield( craft ) ) {
- if( p.weapon.invlet ) {
- p.add_msg_if_player( m_info, _( "Wielding %c - %s" ), p.weapon.invlet, p.weapon.display_name() );
+ if( weapon->invlet ) {
+ p.add_msg_if_player( m_info, _( "Wielding %c - %s" ), weapon->invlet, weapon->display_name() );
} else {
- p.add_msg_if_player( m_info, _( "Wielding - %s" ), p.weapon.display_name() );
+ p.add_msg_if_player( m_info, _( "Wielding - %s" ), weapon->display_name() );
}
- return item_location( p, &p.weapon );
+ return item_location( p, weapon );
}
return cata::nullopt;
}
@@ -787,8 +788,8 @@ static item_location place_craft_or_disassembly(
amenu.text = string_format( pgettext( "in progress craft", "What to do with the %s?" ),
craft.display_name() );
- amenu.addentry( WIELD_CRAFT, ch.can_unwield( ch.weapon ).success(),
- '1', _( "Dispose of your wielded %s and start working." ), ch.weapon.tname() );
+ amenu.addentry( WIELD_CRAFT, ch.can_unwield( *ch.get_wielded_item() ).success(),
+ '1', _( "Dispose of your wielded %s and start working." ), ch.get_wielded_item()->tname() );
amenu.addentry( DROP_CRAFT, true, '2', _( "Put it down and start working." ) );
const bool can_stash = ch.can_pickVolume( craft ) &&
ch.can_pickWeight( craft, !get_option( "DANGEROUS_PICKUPS" ) );
@@ -1718,7 +1719,7 @@ static void empty_buckets( Character &p )
{
// First grab (remove) all items that are non-empty buckets and not wielded
auto buckets = p.remove_items_with( [&p]( const item & it ) {
- return it.is_bucket_nonempty() && &it != &p.weapon;
+ return it.is_bucket_nonempty() && &it != p.get_wielded_item();
}, INT_MAX );
for( auto &it : buckets ) {
for( const item *in : it.all_items_top() ) {
@@ -2523,7 +2524,7 @@ void Character::complete_disassemble( item_location &target, const recipe &dis )
if( this->is_avatar() ) {
add_msg( m_bad, _( "You fail to recover %s." ), newit.tname() );
} else {
- add_msg_if_player_sees( *this, m_bad, _( "%1s fails to recover %2s." ), this->disp_name( false,
+ add_msg_if_player_sees( *this, m_bad, _( "%1$s fails to recover %2$s." ), this->disp_name( false,
true ), newit.tname() );
}
continue;
@@ -2534,7 +2535,7 @@ void Character::complete_disassemble( item_location &target, const recipe &dis )
if( this->is_avatar() ) {
add_msg( m_bad, _( "You fail to recover %1$s from the %2$s." ), newit.tname(), dis_item.tname() );
} else {
- add_msg_if_player_sees( *this, m_bad, _( "%1s fails to recover %2$s from the %3$s." ),
+ add_msg_if_player_sees( *this, m_bad, _( "%1$s fails to recover %2$s from the %3$s." ),
this->disp_name( false, true ), newit.tname(), dis_item.tname() );
}
continue;
@@ -2565,7 +2566,8 @@ void Character::complete_disassemble( item_location &target, const recipe &dis )
}
}
- if( act_item.made_of( phase_id::LIQUID ) ) {
+ //NPCs are too dumb to be able to handle liquid (for now)
+ if( act_item.made_of( phase_id::LIQUID ) && !is_npc() ) {
liquid_handler::handle_all_liquid( act_item, PICKUP_RANGE );
} else {
drop_items.push_back( act_item );
diff --git a/src/creature.cpp b/src/creature.cpp
index b84975405034b..0e06f7a8c991e 100644
--- a/src/creature.cpp
+++ b/src/creature.cpp
@@ -1233,7 +1233,7 @@ void Creature::add_effect( const effect_source &source, const efftype_id &eff_id
// If we do, mod the duration, factoring in the mod value
e.mod_duration( dur * e.get_dur_add_perc() / 100 );
// Limit to max duration
- if( e.get_max_duration() > 0_turns && e.get_duration() > e.get_max_duration() ) {
+ if( e.get_duration() > e.get_max_duration() ) {
e.set_duration( e.get_max_duration() );
}
// Adding a permanent effect makes it permanent
@@ -1282,7 +1282,7 @@ void Creature::add_effect( const effect_source &source, const efftype_id &eff_id
// Now we can make the new effect for application
effect e( effect_source( source ), &type, dur, bp.id(), permanent, intensity, calendar::turn );
// Bound to max duration
- if( e.get_max_duration() > 0_turns && e.get_duration() > e.get_max_duration() ) {
+ if( e.get_duration() > e.get_max_duration() ) {
e.set_duration( e.get_max_duration() );
}
diff --git a/src/creature.h b/src/creature.h
index 26f6312b56505..50f22d2ec0107 100644
--- a/src/creature.h
+++ b/src/creature.h
@@ -267,6 +267,7 @@ class Creature : public viewer
virtual const monster *as_monster() const {
return nullptr;
}
+ virtual mfaction_id get_monster_faction() const = 0;
/** return the direction the creature is facing, for sdl horizontal flip **/
FacingDirection facing = FacingDirection::RIGHT;
/** Returns true for non-real Creatures used temporarily; i.e. fake NPC's used for turret fire. */
diff --git a/src/debug.h b/src/debug.h
index d7e2ffe2f605a..f22415be1ed38 100644
--- a/src/debug.h
+++ b/src/debug.h
@@ -87,13 +87,13 @@ inline void realDebugmsg( const char *const filename, const char *const line,
} while( false )
// A fatal error for use in constexpr functions
-// This exists for compatibility reasons. On gcc 5.3 we need a
+// This exists for compatibility reasons. On gcc before 9 we need a
// different implementation that is messier.
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67371
-// Pass a placeholder return value to be used on gcc 5.3 (it won't
+// Pass a placeholder return value to be used on old gcc (it won't
// actually be returned, it's just needed for the type), and then
// args as if to debugmsg for the remaining args.
-#if defined(__GNUC__) && __GNUC__ < 6
+#if defined(__GNUC__) && __GNUC__ < 9
#define constexpr_fatal(ret, ...) \
do { return false ? ( ret ) : ( abort(), ( ret ) ); } while(false)
#else
diff --git a/src/debug_menu.cpp b/src/debug_menu.cpp
index 9219d1ed2ac0f..c14d5d1d641a8 100644
--- a/src/debug_menu.cpp
+++ b/src/debug_menu.cpp
@@ -1343,8 +1343,9 @@ static void character_edit_menu()
you.on_item_wear( to_wear );
you.worn.push_back( to_wear );
} else if( !to_wear.is_null() ) {
- you.weapon = to_wear;
- get_event_bus().send( you.getID(), you.weapon.typeId() );
+ you.set_wielded_item( to_wear );
+ get_event_bus().send( you.getID(),
+ you.get_wielded_item()->typeId() );
}
}
break;
diff --git a/src/effect.cpp b/src/effect.cpp
index 08e47fd973e31..358abe16ebcc8 100644
--- a/src/effect.cpp
+++ b/src/effect.cpp
@@ -818,12 +818,15 @@ std::string effect::disp_short_desc( bool reduced ) const
void effect::decay( std::vector &rem_ids, std::vector &rem_bps,
const time_point &time, const bool player )
{
- // Decay intensity if supposed to do so
- // TODO: Remove effects that would decay to 0 intensity?
- if( intensity > 1 && eff_type->int_decay_tick != 0 &&
+ // Decay intensity if supposed to do so, removing effects at zero intensity
+ if( intensity > 0 && eff_type->int_decay_tick != 0 &&
to_turn( time ) % eff_type->int_decay_tick == 0 &&
get_max_duration() > get_duration() ) {
set_intensity( intensity + eff_type->int_decay_step, player );
+ if( intensity <= 0 ) {
+ rem_ids.push_back( get_id() );
+ rem_bps.push_back( bp.id() );
+ }
}
// Add to removal list if duration is <= 0
@@ -852,8 +855,8 @@ time_duration effect::get_max_duration() const
void effect::set_duration( const time_duration &dur, bool alert )
{
duration = dur;
- // Cap to max_duration if it exists
- if( eff_type->max_duration > 0_turns && duration > eff_type->max_duration ) {
+ // Cap to max_duration
+ if( duration > eff_type->max_duration ) {
duration = eff_type->max_duration;
}
@@ -989,17 +992,23 @@ int effect::set_intensity( int val, bool alert )
intensity = 1;
}
- val = std::max( std::min( val, eff_type->max_intensity ), 1 );
+ val = std::max( std::min( val, eff_type->max_intensity ), 0 );
if( val == intensity ) {
// Nothing to change
return intensity;
}
- if( alert && val < intensity && val - 1 < static_cast( eff_type->decay_msgs.size() ) ) {
+ // Filter out intensity falling to zero (the effect will be removed later)
+ if( alert && val < intensity && val != 0 &&
+ val - 1 < static_cast( eff_type->decay_msgs.size() ) ) {
add_msg( eff_type->decay_msgs[ val - 1 ].second,
eff_type->decay_msgs[ val - 1 ].first.translated() );
}
+ if( val == 0 && !eff_type->int_decay_remove ) {
+ val = 1;
+ }
+
intensity = val;
return intensity;
@@ -1333,6 +1342,21 @@ int effect::get_int_add_val() const
return eff_type->int_add_val;
}
+int effect::get_int_decay_step() const
+{
+ return eff_type->int_decay_step;
+}
+
+int effect::get_int_decay_tick() const
+{
+ return eff_type->int_decay_tick;
+}
+
+bool effect::get_int_decay_remove() const
+{
+ return eff_type->int_decay_remove;
+}
+
const std::vector> &effect::get_miss_msgs() const
{
return eff_type->miss_msgs;
@@ -1449,13 +1473,7 @@ void load_effect_type( const JsonObject &jo )
for( auto &&f : jo.get_string_array( "blocks_effects" ) ) { // *NOPAD*
new_etype.blocks_effects.emplace_back( f );
}
-
- if( jo.has_string( "max_duration" ) ) {
- new_etype.max_duration = read_from_json_string( jo.get_member( "max_duration" ),
- time_duration::units );
- } else {
- new_etype.max_duration = time_duration::from_turns( jo.get_int( "max_duration", 0 ) );
- }
+ optional( jo, false, "max_duration", new_etype.max_duration, 365_days );
if( jo.has_string( "int_dur_factor" ) ) {
new_etype.int_dur_factor = read_from_json_string( jo.get_member( "int_dur_factor" ),
@@ -1476,6 +1494,7 @@ void load_effect_type( const JsonObject &jo )
new_etype.int_add_val = jo.get_int( "int_add_val", 0 );
new_etype.int_decay_step = jo.get_int( "int_decay_step", -1 );
new_etype.int_decay_tick = jo.get_int( "int_decay_tick", 0 );
+ optional( jo, false, "int_decay_remove", new_etype.int_decay_remove, true );
new_etype.load_miss_msgs( jo, "miss_messages" );
new_etype.load_decay_msgs( jo, "decay_messages" );
diff --git a/src/effect.h b/src/effect.h
index 1fe950606f7e1..2bd714b4cae68 100644
--- a/src/effect.h
+++ b/src/effect.h
@@ -131,7 +131,7 @@ class effect_type
protected:
int max_intensity = 0;
int max_effective_intensity = 0;
- time_duration max_duration = 0_turns;
+ time_duration max_duration = 365_days;
int dur_add_perc = 0;
int int_add_val = 0;
@@ -139,6 +139,7 @@ class effect_type
int int_decay_step = 0;
int int_decay_tick = 0 ;
time_duration int_dur_factor = 0_turns;
+ bool int_decay_remove = true;
std::set flags;
@@ -244,11 +245,11 @@ class effect
time_duration get_duration() const;
/** Returns the maximum duration of an effect. */
time_duration get_max_duration() const;
- /** Sets the duration, capping at max_duration if it exists. */
+ /** Sets the duration, capping at max duration. */
void set_duration( const time_duration &dur, bool alert = false );
- /** Mods the duration, capping at max_duration if it exists. */
+ /** Mods the duration, capping at max_duration. */
void mod_duration( const time_duration &dur, bool alert = false );
- /** Multiplies the duration, capping at max_duration if it exists. */
+ /** Multiplies the duration, capping at max_duration. */
void mult_duration( double dur, bool alert = false );
std::vector vit_effects( bool reduced ) const;
@@ -338,6 +339,12 @@ class effect
time_duration get_int_dur_factor() const;
/** Returns the amount an already existing effect intensity is modified by further applications of the same effect. */
int get_int_add_val() const;
+ /** Returns the step of intensity decay */
+ int get_int_decay_step() const;
+ /** Returns the number of ticks between intensity changes */
+ int get_int_decay_tick() const;
+ /** Returns if the effect is not protected from intensity decay-based removal */
+ bool get_int_decay_remove() const;
/** Returns a vector of the miss message messages and chances for use in add_miss_reason() while the effect is in effect. */
const std::vector> &get_miss_msgs() const;
@@ -348,6 +355,7 @@ class effect
/** Returns if the effect is supposed to be handed in Creature::movement */
bool impairs_movement() const;
+
/** Returns the effect's matching effect_type id. */
const efftype_id &get_id() const {
return eff_type->id;
diff --git a/src/explosion.cpp b/src/explosion.cpp
index b4e1553ebf3d8..bc880364c0862 100644
--- a/src/explosion.cpp
+++ b/src/explosion.cpp
@@ -774,12 +774,13 @@ void emp_blast( const tripoint &p )
}
// TODO: More effects?
//e-handcuffs effects
- if( player_character.weapon.typeId() == itype_e_handcuffs && player_character.weapon.charges > 0 ) {
- player_character.weapon.unset_flag( STATIC( flag_id( "NO_UNWIELD" ) ) );
- player_character.weapon.charges = 0;
- player_character.weapon.active = false;
+ item *weapon = player_character.get_wielded_item();
+ if( weapon->typeId() == itype_e_handcuffs && weapon->charges > 0 ) {
+ weapon->unset_flag( STATIC( flag_id( "NO_UNWIELD" ) ) );
+ weapon->charges = 0;
+ weapon->active = false;
add_msg( m_good, _( "The %s on your wrists spark briefly, then release your hands!" ),
- player_character.weapon.tname() );
+ weapon->tname() );
}
}
// Drain any items of their battery charge
diff --git a/src/faction.cpp b/src/faction.cpp
index 3f5169b606e23..c63a0d6b38a3b 100644
--- a/src/faction.cpp
+++ b/src/faction.cpp
@@ -653,7 +653,7 @@ int npc::faction_display( const catacurses::window &fac_w, const int width ) con
mvwprintz( fac_w, point( width, ++y ), fatigue_pair.second,
_( "Fatigue: " ) + ( fatigue_pair.first.empty() ? nominal : fatigue_pair.first ) );
int lines = fold_and_print( fac_w, point( width, ++y ), getmaxx( fac_w ) - width - 2, c_white,
- _( "Wielding: " ) + weapon.tname() );
+ _( "Wielding: " ) + get_wielded_item().tname() );
y += lines;
const auto skillslist = Skill::get_skills_sorted_by( [&]( const Skill & a, const Skill & b ) {
diff --git a/src/faction_camp.cpp b/src/faction_camp.cpp
index b6a910f6d5d2e..764b8493e75d1 100644
--- a/src/faction_camp.cpp
+++ b/src/faction_camp.cpp
@@ -501,6 +501,96 @@ static bool update_time_fixed( std::string &entry, const comp_list &npc_list,
return avail;
}
+static bool extract_and_check_orientation_flags( const recipe_id recipe,
+ const point &dir,
+ bool &mirror_horizontal,
+ bool &mirror_vertical,
+ int &rotation,
+ const std::string base_error_message,
+ const std::string actor )
+{
+ mirror_horizontal = recipe->has_flag( "MAP_MIRROR_HORIZONTAL" );
+ mirror_vertical = recipe->has_flag( "MAP_MIRROR_VERTICAL" );
+ rotation = 0;
+ std::string dir_string;
+
+ const auto check_rotation = [&]( const std::string & flag, int rotation_value ) {
+ if( recipe->has_flag( flag ) ) {
+ if( rotation != 0 ) {
+ debugmsg( "%s, the blueprint specifies multiple concurrent rotations, which is not supported",
+ string_format( base_error_message, actor, recipe->get_blueprint() ) );
+ return false;
+ }
+ rotation = rotation_value;
+ }
+ return true;
+ };
+
+ if( !check_rotation( "MAP_ROTATE_90", 1 ) ) {
+ return false;
+ }
+
+ if( !check_rotation( "MAP_ROTATE_180", 2 ) ) {
+ return false;
+ }
+
+ if( !check_rotation( "MAP_ROTATE_270", 3 ) ) {
+ return false;
+ }
+
+ if( dir.x == -1 && dir.y == -1 ) {
+ dir_string = "NW";
+ } else if( dir.x == 0 && dir.y == -1 ) {
+ dir_string = "N";
+ } else if( dir.x == 1 && dir.y == -1 ) {
+ dir_string = "NE";
+ } else if( dir.x == -1 && dir.y == 0 ) {
+ dir_string = "W";
+ } else if( dir.x == 0 && dir.y == 0 ) {
+ dir_string = ""; // Will result in "hidden" flags that can actually affect the core.
+ } else if( dir.x == 1 && dir.y == 0 ) {
+ dir_string = "E";
+ } else if( dir.x == -1 && dir.y == 1 ) {
+ dir_string = "SW";
+ } else if( dir.x == 0 && dir.y == 1 ) {
+ dir_string = "S";
+ } else if( dir.x == 1 && dir.y == 1 ) {
+ dir_string = "SE";
+ }
+
+ if( recipe->has_flag( "MAP_MIRROR_HORIZONTAL_IF_" + dir_string ) ) {
+ if( mirror_horizontal ) {
+ debugmsg( "%s, the blueprint specifies multiple concurrent horizontal mirroring, which is not supported",
+ string_format( base_error_message, actor, recipe->get_blueprint() ) );
+ return false;
+ }
+ mirror_horizontal = true;
+ }
+
+ if( recipe->has_flag( "MAP_MIRROR_VERTICAL_IF_" + dir_string ) ) {
+ if( mirror_vertical ) {
+ debugmsg( "%s, the blueprint specifies multiple concurrent vertical mirroring, which is not supported",
+ string_format( base_error_message, actor, recipe->get_blueprint() ) );
+ return false;
+ }
+ mirror_vertical = true;
+ }
+
+ if( !check_rotation( "MAP_ROTATE_90_IF_" + dir_string, 1 ) ) {
+ return false;
+ }
+
+ if( !check_rotation( "MAP_ROTATE_180_IF_" + dir_string, 2 ) ) {
+ return false;
+ }
+
+ if( !check_rotation( "MAP_ROTATE_270_IF_" + dir_string, 3 ) ) {
+ return false;
+ }
+
+ return true;
+}
+
static cata::optional get_basecamp( npc &p, const std::string &camp_type = "default" )
{
@@ -2571,7 +2661,23 @@ bool basecamp::upgrade_return( const point &dir, const std::string &miss,
if( comp == nullptr ) {
return false;
}
- if( !run_mapgen_update_func( making.get_blueprint(), upos ) ) {
+
+ bool mirror_horizontal;
+ bool mirror_vertical;
+ int rotation;
+
+ if( !extract_and_check_orientation_flags( making.ident(),
+ dir,
+ mirror_horizontal,
+ mirror_vertical,
+ rotation,
+ "%s failed to build the %s upgrade",
+ comp->disp_name() ) ) {
+ return false;
+ }
+
+ if( !run_mapgen_update_func( making.get_blueprint(), upos, nullptr, true, mirror_horizontal,
+ mirror_vertical, rotation ) ) {
popup( _( "%s failed to build the %s upgrade, perhaps there is a vehicle in the way." ),
comp->disp_name(),
making.get_blueprint() );
@@ -2911,7 +3017,22 @@ bool basecamp::survey_return()
const recipe_id expansion_type = base_camps::select_camp_option( pos_expansions,
_( "Select an expansion:" ) );
- if( !run_mapgen_update_func( expansion_type.str(), where ) ) {
+ bool mirror_horizontal;
+ bool mirror_vertical;
+ int rotation;
+
+ if( !extract_and_check_orientation_flags( expansion_type,
+ dir,
+ mirror_horizontal,
+ mirror_vertical,
+ rotation,
+ "%s failed to build the %s expansion",
+ comp->disp_name() ) ) {
+ return false;
+ }
+
+ if( !run_mapgen_update_func( expansion_type.str(), where, nullptr, true, mirror_horizontal,
+ mirror_vertical, rotation ) ) {
popup( _( "%s failed to add the %s expansion, perhaps there is a vehicle in the way." ),
comp->disp_name(),
expansion_type->blueprint_name() );
diff --git a/src/filesystem.cpp b/src/filesystem.cpp
index efb6d16fe1bdd..ee44afdbcb9b6 100644
--- a/src/filesystem.cpp
+++ b/src/filesystem.cpp
@@ -299,3 +299,25 @@ std::string ensure_valid_file_name( const std::string &file_name )
return new_file_name;
}
+
+#if defined(_WIN32) && defined(__GLIBCXX__)
+// GLIBCXX does not offer the wchar_t extension for fstream paths
+std::string cata::_details::path_to_native( const fs::path &p )
+{
+ if( GetACP() == 65001 ) { // utf-8 code page
+ return p.u8string();
+ } else {
+ return wstr_to_native( p.wstring() );
+ }
+}
+#elif defined(_WIN32)
+std::wstring cata::_details::path_to_native( const fs::path &p )
+{
+ return p.wstring();
+}
+#else
+std::string cata::_details::path_to_native( const fs::path &p )
+{
+ return p.u8string();
+}
+#endif
diff --git a/src/filesystem.h b/src/filesystem.h
index 7489db35421c6..a32f048b9604a 100644
--- a/src/filesystem.h
+++ b/src/filesystem.h
@@ -73,22 +73,10 @@ namespace cata
{
namespace _details
{
-#if defined(_WIN32) && defined(__GLIBCXX__)
-// GLIBCXX does not offer the wchar_t extension for fstream paths
-inline std::string path_to_native( const fs::path &p )
-{
- return wstr_to_native( p.wstring() );
-}
-#elif defined(_WIN32)
-inline std::wstring path_to_native( const fs::path &p )
-{
- return p.wstring();
-}
+#if defined(_WIN32) && !defined(__GLIBCXX__)
+std::wstring path_to_native( const fs::path &p );
#else
-inline std::string path_to_native( const fs::path &p )
-{
- return p.string();
-}
+std::string path_to_native( const fs::path &p );
#endif
} // namespace _details
diff --git a/src/game.cpp b/src/game.cpp
index 39134ac7a02f7..2d230e3f981c6 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -557,6 +557,15 @@ void game::reload_tileset()
} catch( const std::exception &err ) {
popup( _( "Loading the tileset failed: %s" ), err.what() );
}
+ try {
+ overmap_tilecontext->reinit();
+ overmap_tilecontext->load_tileset( get_option( "OVERMAP_TILES" ),
+ /*precheck=*/false, /*force=*/true,
+ /*pump_events=*/true );
+ overmap_tilecontext->do_tile_loading_report();
+ } catch( const std::exception &err ) {
+ popup( _( "Loading the overmap tileset failed: %s" ), err.what() );
+ }
g->reset_zoom();
g->mark_main_ui_adaptor_resize();
#endif // TILES
@@ -687,6 +696,11 @@ bool game::start_game()
load_master();
u.setID( assign_npc_id() ); // should be as soon as possible, but *after* load_master
+ // Make sure the items are added after the calendar is started
+ u.add_profession_items();
+ // Move items from the inventory. eventually the inventory should not contain items at all.
+ u.migrate_items_to_storage( true );
+
const start_location &start_loc = u.random_start_location ? scen->random_start_location().obj() :
u.start_location.obj();
const tripoint_abs_omt omtstart = start_loc.find_player_initial_location();
@@ -1648,7 +1662,8 @@ int game::inventory_item_menu( item_location locThisItem,
std::vector vDummy;
const bool bHPR = get_auto_pickup().has_rule( &oThisItem );
- const hint_rating rate_drop_item = u.weapon.has_flag( flag_NO_UNWIELD ) ? hint_rating::cant :
+ const hint_rating rate_drop_item = u.get_wielded_item()->has_flag( flag_NO_UNWIELD ) ?
+ hint_rating::cant :
hint_rating::good;
uilist action_menu;
@@ -2259,7 +2274,7 @@ bool game::try_get_right_click_action( action_id &act, const tripoint &mouse_tar
return false;
}
- if( !u.weapon.is_gun() ) {
+ if( !u.get_wielded_item()->is_gun() ) {
add_msg( m_info, _( "You are not wielding a ranged weapon." ) );
return false;
}
@@ -2420,11 +2435,11 @@ bool game::load( const save_t &name )
// Now load up the master game data; factions (and more?)
load_master();
u = avatar();
+ u.set_save_id( name.decoded_name() );
const std::string save_filename = playerpath + SAVE_EXTENSION;
if( !read_from_file( save_filename, std::bind( &game::unserialize, this, _1, save_filename ) ) ) {
return false;
}
- u.set_save_id( name.decoded_name() );
u.load_map_memory();
@@ -6436,6 +6451,7 @@ look_around_result game::look_around( const bool show_window, tripoint ¢er,
ctxt.register_action( "LEVEL_UP" );
ctxt.register_action( "LEVEL_DOWN" );
ctxt.register_action( "TOGGLE_FAST_SCROLL" );
+ ctxt.register_action( "CHANGE_MONSTER_NAME" );
ctxt.register_action( "EXTENDED_DESCRIPTION" );
ctxt.register_action( "SELECT" );
if( peeking ) {
@@ -6481,6 +6497,16 @@ look_around_result game::look_around( const bool show_window, tripoint ¢er,
center_print( w_info, 0, c_white, string_format( _( "< Look Around >" ) ) );
+
+ creature_tracker &creatures = get_creature_tracker();
+ monster *const mon = creatures.creature_at( lp, true );
+ if( mon ) {
+ std::string mon_name_text = string_format( _( "%s - %s" ),
+ ctxt.get_desc( "CHANGE_MONSTER_NAME" ),
+ ctxt.get_action_name( "CHANGE_MONSTER_NAME" ) );
+ mvwprintz( w_info, point( 1, getmaxy( w_info ) - 2 ), c_red, mon_name_text );
+ }
+
std::string fast_scroll_text = string_format( _( "%s - %s" ),
ctxt.get_desc( "TOGGLE_FAST_SCROLL" ),
ctxt.get_action_name( "TOGGLE_FAST_SCROLL" ) );
@@ -6615,6 +6641,16 @@ look_around_result game::look_around( const bool show_window, tripoint ¢er,
toggle_debug_hour_timer();
} else if( action == "EXTENDED_DESCRIPTION" ) {
extended_description( lp );
+ } else if( action == "CHANGE_MONSTER_NAME" ) {
+ creature_tracker &creatures = get_creature_tracker();
+ monster *const mon = creatures.creature_at( lp, true );
+ if( mon ) {
+ string_input_popup popup;
+ popup
+ .title( _( "Nickname:" ) )
+ .width( 85 )
+ .edit( mon->nickname );
+ }
} else if( action == "CENTER" ) {
center = u.pos();
lp = u.pos();
@@ -7533,7 +7569,7 @@ game::vmenu_ret game::list_monsters( const std::vector &monster_list
} );
ui.mark_resize();
- const int max_gun_range = u.weapon.gun_range( &u );
+ const int max_gun_range = u.get_wielded_item()->gun_range( &u );
const tripoint stored_view_offset = u.view_offset;
u.view_offset = tripoint_zero;
@@ -8513,11 +8549,12 @@ void game::reload_item()
void game::reload_wielded( bool prompt )
{
- if( u.weapon.is_null() || !u.weapon.is_reloadable() ) {
+ item *weapon = u.get_wielded_item();
+ if( weapon->is_null() || !weapon->is_reloadable() ) {
add_msg( _( "You aren't holding something you can reload." ) );
return;
}
- item_location item_loc = item_location( u, &u.weapon );
+ item_location item_loc = item_location( u, weapon );
reload( item_loc, prompt );
}
@@ -8543,9 +8580,9 @@ void game::reload_weapon( bool try_everything )
return true;
}
// Second sort by affiliation with wielded gun
- const std::set compatible_magazines = this->u.weapon.magazine_compatible();
- const bool mag_ap = this->u.weapon.can_contain( *ap, true ).success();
- const bool mag_bp = this->u.weapon.can_contain( *bp, true ).success();
+ const std::set compatible_magazines = this->u.get_wielded_item()->magazine_compatible();
+ const bool mag_ap = this->u.get_wielded_item()->can_contain( *ap, true ).success();
+ const bool mag_bp = this->u.get_wielded_item()->can_contain( *bp, true ).success();
if( mag_ap != mag_bp ) {
return mag_ap;
}
@@ -8593,7 +8630,8 @@ void game::wield( item_location loc )
debugmsg( "ERROR: tried to wield null item" );
return;
}
- if( &u.weapon != &*loc && u.weapon.has_item( *loc ) ) {
+ const item *weapon = u.get_wielded_item();
+ if( weapon != &*loc && weapon->has_item( *loc ) ) {
add_msg( m_info, _( "You need to put the bag away before trying to wield something from it." ) );
return;
}
diff --git a/src/game_inventory.cpp b/src/game_inventory.cpp
index 21a03d4f2de29..bf0fa5d3cbd74 100644
--- a/src/game_inventory.cpp
+++ b/src/game_inventory.cpp
@@ -1457,7 +1457,7 @@ class steal_inventory_preset : public pickup_inventory_preset
pickup_inventory_preset( you ), victim( victim ) {}
bool is_shown( const item_location &loc ) const override {
- return !victim.is_worn( *loc ) && &victim.weapon != &( *loc );
+ return !victim.is_worn( *loc ) && &victim.get_wielded_item() != &( *loc );
}
private:
diff --git a/src/gamemode_tutorial.cpp b/src/gamemode_tutorial.cpp
index 752a3e5d8cb66..4500af8416c83 100644
--- a/src/gamemode_tutorial.cpp
+++ b/src/gamemode_tutorial.cpp
@@ -192,11 +192,11 @@ void tutorial_game::per_turn()
}
}
- if( !player_character.weapon.is_null() ) {
+ if( !player_character.get_wielded_item()->is_null() ) {
add_message( tut_lesson::LESSON_WIELD_NO_SPACE );
}
- if( player_character.weapon.ammo_remaining( &player_character ) > 0 ) {
+ if( player_character.get_wielded_item()->ammo_remaining( &player_character ) > 0 ) {
add_message( tut_lesson::LESSON_GUN_FIRE );
}
@@ -308,7 +308,7 @@ void tutorial_game::post_action( action_id act )
break;
case ACTION_FIRE:
- if( player_character.weapon.is_gun() ) {
+ if( player_character.get_wielded_item()->is_gun() ) {
add_message( tut_lesson::LESSON_RECOIL );
}
break;
diff --git a/src/handle_action.cpp b/src/handle_action.cpp
index 70ab3dd8d8830..4789a1b10b017 100644
--- a/src/handle_action.cpp
+++ b/src/handle_action.cpp
@@ -664,7 +664,8 @@ static void smash()
}
}
}
- const int move_cost = !player_character.is_armed() ? 80 : player_character.weapon.attack_time() *
+ const int move_cost = !player_character.is_armed() ? 80 :
+ player_character.get_wielded_item()->attack_time() *
0.8;
bool didit = false;
bool mech_smash = false;
@@ -676,7 +677,8 @@ static void smash()
mon->type->melee_sides;
mech_smash = true;
} else {
- smashskill = player_character.str_cur + player_character.weapon.damage_melee( damage_type::BASH );
+ smashskill = player_character.str_cur + player_character.get_wielded_item()->damage_melee(
+ damage_type::BASH );
}
const bool allow_floor_bash = debug_mode; // Should later become "true"
@@ -797,10 +799,11 @@ static void smash()
didit = here.bash( smashp, smashskill, false, false, smash_floor ).did_bash;
// Weariness scaling
float weary_mult = 1.0f;
+ item *weapon = player_character.get_wielded_item();
if( didit ) {
if( !mech_smash ) {
player_character.set_activity_level( MODERATE_EXERCISE );
- player_character.handle_melee_wear( player_character.weapon );
+ player_character.handle_melee_wear( *weapon );
weary_mult = 1.0f / player_character.exertion_adjusted_move_multiplier( MODERATE_EXERCISE );
const int mod_sta = 2 * player_character.get_standard_stamina_cost();
@@ -809,11 +812,11 @@ static void smash()
if( player_character.get_skill_level( skill_melee ) == 0 ) {
player_character.practice( skill_melee, rng( 0, 1 ) * rng( 0, 1 ) );
}
- const int vol = player_character.weapon.volume() / units::legacy_volume_factor;
- if( player_character.weapon.made_of( material_id( "glass" ) ) &&
+ const int vol = weapon->volume() / units::legacy_volume_factor;
+ if( weapon->made_of( material_id( "glass" ) ) &&
rng( 0, vol + 3 ) < vol ) {
- add_msg( m_bad, _( "Your %s shatters!" ), player_character.weapon.tname() );
- player_character.weapon.spill_contents( player_character.pos() );
+ add_msg( m_bad, _( "Your %s shatters!" ), weapon->tname() );
+ weapon->spill_contents( player_character.pos() );
sounds::sound( player_character.pos(), 24, sounds::sound_t::combat, "CRACK!", true, "smash",
"glass" );
player_character.deal_damage( nullptr, bodypart_id( "hand_r" ), damage_instance( damage_type::CUT,
@@ -1328,7 +1331,7 @@ static void reach_attack( avatar &you )
{
g->temp_exit_fullscreen();
- target_handler::trajectory traj = target_handler::mode_reach( you, you.weapon );
+ target_handler::trajectory traj = target_handler::mode_reach( you, *you.get_wielded_item() );
if( !traj.empty() ) {
you.reach_attack( traj.back() );
@@ -1390,10 +1393,10 @@ static void fire()
}
}
}
-
- if( player_character.weapon.is_gun() && !player_character.weapon.gun_current_mode().melee() ) {
+ const item *weapon = player_character.get_wielded_item();
+ if( weapon->is_gun() && !weapon->gun_current_mode().melee() ) {
avatar_action::fire_wielded_weapon( player_character );
- } else if( player_character.weapon.current_reach_range( player_character ) > 1 ) {
+ } else if( weapon->current_reach_range( player_character ) > 1 ) {
if( player_character.has_effect( effect_relax_gas ) ) {
if( one_in( 8 ) ) {
add_msg( m_good, _( "Your willpower asserts itself, and so do you!" ) );
@@ -1480,7 +1483,7 @@ bool Character::cast_spell( spell &sp, bool fake_spell,
const cata::optional target = cata::nullopt )
{
if( is_armed() && !sp.has_flag( spell_flag::NO_HANDS ) &&
- !weapon.has_flag( flag_MAGIC_FOCUS ) && !sp.check_if_component_in_hand( *this ) ) {
+ !get_wielded_item()->has_flag( flag_MAGIC_FOCUS ) && !sp.check_if_component_in_hand( *this ) ) {
add_msg( game_message_params{ m_bad, gmf_bypass_cooldown },
_( "You need your hands free to cast this spell!" ) );
return false;
@@ -1759,6 +1762,7 @@ static void do_deathcam_action( const action_id &act, avatar &player_character )
bool game::do_regular_action( action_id &act, avatar &player_character,
const cata::optional &mouse_target )
{
+ item *weapon = player_character.get_wielded_item();
switch( act ) {
case ACTION_NULL: // dummy entry
case NUM_ACTIONS: // dummy entry
@@ -2124,22 +2128,22 @@ bool game::do_regular_action( action_id &act, avatar &player_character,
break;
case ACTION_FIRE_BURST: {
- gun_mode_id original_mode = player_character.weapon.gun_get_mode_id();
- if( player_character.weapon.gun_set_mode( gun_mode_id( "AUTO" ) ) ) {
+ gun_mode_id original_mode = weapon->gun_get_mode_id();
+ if( weapon->gun_set_mode( gun_mode_id( "AUTO" ) ) ) {
avatar_action::fire_wielded_weapon( player_character );
- player_character.weapon.gun_set_mode( original_mode );
+ weapon->gun_set_mode( original_mode );
}
break;
}
case ACTION_SELECT_FIRE_MODE:
if( player_character.is_armed() ) {
- if( player_character.weapon.is_gun() && !player_character.weapon.is_gunmod() &&
- player_character.weapon.gun_all_modes().size() > 1 ) {
- player_character.weapon.gun_cycle_mode();
- } else if( player_character.weapon.has_flag( flag_RELOAD_ONE ) ||
- player_character.weapon.has_flag( flag_RELOAD_AND_SHOOT ) ) {
- item::reload_option opt = player_character.select_ammo( player_character.weapon, false );
+ if( weapon->is_gun() && !weapon->is_gunmod() &&
+ weapon->gun_all_modes().size() > 1 ) {
+ weapon->gun_cycle_mode();
+ } else if( weapon->has_flag( flag_RELOAD_ONE ) ||
+ weapon->has_flag( flag_RELOAD_AND_SHOOT ) ) {
+ item::reload_option opt = player_character.select_ammo( *weapon, false );
if( !opt ) {
break;
} else if( player_character.ammo_location && opt.ammo == player_character.ammo_location ) {
diff --git a/src/inventory_ui.cpp b/src/inventory_ui.cpp
index a79176defefb5..d8ca784f1a0bf 100644
--- a/src/inventory_ui.cpp
+++ b/src/inventory_ui.cpp
@@ -125,7 +125,7 @@ class selection_column_preset : public inventory_selector_preset
nc_color get_color( const inventory_entry &entry ) const override {
Character &player_character = get_player_character();
if( entry.is_item() ) {
- if( &*entry.any_item() == &player_character.weapon ) {
+ if( &*entry.any_item() == player_character.get_wielded_item() ) {
return c_light_blue;
} else if( player_character.is_worn( *entry.any_item() ) ) {
return c_cyan;
@@ -1478,7 +1478,7 @@ void inventory_selector::add_contained_ebooks( item_location &container )
void inventory_selector::add_character_items( Character &character, bool include_hidden )
{
character.visit_items( [ this, &character, &include_hidden ]( item * it, item * ) {
- if( it == &character.weapon ) {
+ if( it == character.get_wielded_item() ) {
add_item( own_gear_column, item_location( character, it ),
&item_category_id( "WEAPON_HELD" ).obj(), include_hidden );
} else if( character.is_worn( *it ) ) {
@@ -1932,9 +1932,9 @@ void inventory_selector::query_set_filter()
}
}
-int inventory_selector::query_count( std::string init )
+int inventory_selector::query_count()
{
- std::pair< bool, std::string > query = query_string( init );
+ std::pair< bool, std::string > query = query_string( "" );
int ret = -1;
if( query.first ) {
try {
@@ -2284,7 +2284,7 @@ void inventory_selector::toggle_categorize_contained()
if( ancestor.where() != item_location::type::character ) {
// might have been merged from the map column
custom_category = entry->get_category_ptr();
- } else if( &*ancestor == &u.weapon ) {
+ } else if( &*ancestor == u.get_wielded_item() ) {
custom_category = &item_category_id( "WEAPON_HELD" ).obj();
} else if( u.is_worn( *ancestor ) ) {
custom_category = &item_category_id( "ITEMS_WORN" ).obj();
@@ -2599,18 +2599,6 @@ void inventory_multiselector::toggle_entries( const toggle_mode mode, int count
}
}
-int inventory_multiselector::get_count( const inventory_input input,
- const bool no_mark_count_bound )
-{
- int count = 0;
- if( input.action == "MARK_WITH_COUNT" || ( no_mark_count_bound && input.ch >= '0' &&
- input.ch <= '9' ) ) {
- count = query_count( no_mark_count_bound ? std::string( 1, input.ch ) : "" );
- }
-
- return count;
-}
-
inventory_compare_selector::inventory_compare_selector( Character &p ) :
inventory_multiselector( p, default_preset, _( "ITEMS TO COMPARE" ) ) {}
@@ -2696,6 +2684,7 @@ inventory_iuse_selector::inventory_iuse_selector(
inventory_multiselector( p, preset, selector_title, /*allow_select_contained=*/true ),
get_stats( get_st )
{}
+
drop_locations inventory_iuse_selector::execute()
{
shared_ptr_fast ui = create_or_get_ui_adaptor();
@@ -2712,6 +2701,7 @@ drop_locations inventory_iuse_selector::execute()
}
}
}
+ int count = 0;
while( true ) {
ui_manager::redraw();
@@ -2723,14 +2713,18 @@ drop_locations inventory_iuse_selector::execute()
toggle_entries();
} else if( input.action == "TOGGLE_NON_FAVORITE" ) {
toggle_entries( toggle_mode::NON_FAVORITE_NON_WORN );
- } else if( input.action == "TOGGLE_ENTRY" || // Mark selected
- input.action == "MARK_WITH_COUNT" || // Set count and mark selected with specific key
- ( noMarkCountBound && input.ch >= '0' && input.ch <= '9' ) ) { // Ditto with numkey capture
- int count = get_count( input, noMarkCountBound );
- if( count < 0 ) {
+ } else if( input.action == "MARK_WITH_COUNT" ) { // Set count and mark selected with specific key
+ int query_result = query_count();
+ if( query_result < 0 ) {
continue; // Skip selecting any if invalid result or user canceled prompt
}
+ toggle_entries( toggle_mode::SELECTED, query_result );
+ } else if( input.action == "TOGGLE_ENTRY" ) { // Mark selected
toggle_entries( toggle_mode::SELECTED, count );
+ } else if( noMarkCountBound && input.ch >= '0' && input.ch <= '9' ) {
+ count = std::min( count, INT_MAX / 10 - 10 );
+ count *= 10;
+ count += input.ch - '0';
} else if( input.action == "CONFIRM" ) {
if( to_use.empty() ) {
popup_getkey( _( "No items were selected. Use %s to select them." ),
@@ -2823,6 +2817,7 @@ drop_locations inventory_drop_selector::execute()
{
shared_ptr_fast ui = create_or_get_ui_adaptor();
+ int count = 0;
while( true ) {
ui_manager::redraw();
@@ -2834,14 +2829,18 @@ drop_locations inventory_drop_selector::execute()
toggle_entries();
} else if( input.action == "TOGGLE_NON_FAVORITE" ) {
toggle_entries( toggle_mode::NON_FAVORITE_NON_WORN );
- } else if( input.action == "TOGGLE_ENTRY" || // Mark selected
- input.action == "MARK_WITH_COUNT" || // Set count and mark selected with specific key
- ( noMarkCountBound && input.ch >= '0' && input.ch <= '9' ) ) { // Ditto with numkey capture
- int count = get_count( input, noMarkCountBound );
- if( count < 0 ) {
+ } else if( input.action == "MARK_WITH_COUNT" ) { // Set count and mark selected with specific key
+ int query_result = query_count();
+ if( query_result < 0 ) {
continue; // Skip selecting any if invalid result or user canceled prompt
}
+ toggle_entries( toggle_mode::SELECTED, query_result );
+ } else if( input.action == "TOGGLE_ENTRY" ) { // Mark selected
toggle_entries( toggle_mode::SELECTED, count );
+ } else if( noMarkCountBound && input.ch >= '0' && input.ch <= '9' ) {
+ count = std::min( count, INT_MAX / 10 - 10 );
+ count *= 10;
+ count += input.ch - '0';
} else if( input.action == "CONFIRM" ) {
if( to_use.empty() ) {
popup_getkey( _( "No items were selected. Use %s to select them." ),
diff --git a/src/inventory_ui.h b/src/inventory_ui.h
index f2b7416ab05d8..d49ee2e90c2fe 100644
--- a/src/inventory_ui.h
+++ b/src/inventory_ui.h
@@ -589,7 +589,7 @@ class inventory_selector
/** Query the user for a filter and apply it. */
void query_set_filter();
/** Query the user for count and return it. */
- int query_count( std::string init );
+ int query_count();
/** Tackles screen overflow */
virtual void rearrange_columns( size_t client_width );
@@ -762,7 +762,6 @@ class inventory_multiselector : public inventory_selector
void set_chosen_count( inventory_entry &entry, size_t count );
void deselect_contained_items();
void toggle_entries( const toggle_mode mode = toggle_mode::SELECTED, int count = 0 );
- int get_count( const inventory_input input, bool no_mark_count_bound );
std::vector> to_use;
std::vector usable_locs;
bool allow_select_contained;
diff --git a/src/item.cpp b/src/item.cpp
index 0b0f0a4f05d20..deede77ad19a1 100644
--- a/src/item.cpp
+++ b/src/item.cpp
@@ -3439,103 +3439,80 @@ void item::book_info( std::vector &info, const iteminfo_query *parts,
};
const std::string profs = string_format(
_( "This book can help with the following proficiencies: %s" ),
- enumerate_as_string(
- book.proficiencies.begin(),
- book.proficiencies.end(),
- enumerate_profs ) );
+ enumerate_as_string( book.proficiencies, enumerate_profs ) );
info.emplace_back( "BOOK", profs );
}
if( parts->test( iteminfo_parts::BOOK_INCLUDED_RECIPES ) ) {
std::vector known_recipe_list;
std::vector learnable_recipe_list;
+ std::vector practice_recipe_list;
std::vector unlearnable_recipe_list;
for( const islot_book::recipe_with_description_t &elem : book.recipes ) {
- // Practice recipes are hidden. They're not written down in the book, they're
- // just things that the avatar can figure out with help from the book.
- if( elem.recipe->is_practice() ) {
- continue;
- }
const bool knows_it = player_character.knows_recipe( elem.recipe );
- const bool can_learn = player_character.get_skill_level( elem.recipe->skill_used ) >=
- elem.skill_level;
// If the player knows it, they recognize it even if it's not clearly stated.
if( elem.is_hidden() && !knows_it ) {
continue;
}
- if( knows_it ) {
+ const bool can_learn = player_character.get_knowledge_level( elem.recipe->skill_used ) >=
+ elem.skill_level;
+ if( elem.recipe->is_practice() ) {
+ const char *const format = can_learn ? "%s" : "%s";
+ practice_recipe_list.emplace_back( string_format( format, elem.recipe->result_name() ) );
+ } else if( knows_it ) {
// In case the recipe is known, but has a different name in the book, use the
// real name to avoid confusing the player.
- const std::string name = elem.recipe->result_name( /*decorated=*/true );
- known_recipe_list.push_back( "" + name + "" );
+ known_recipe_list.emplace_back( string_format( "%s", elem.recipe->result_name() ) );
} else if( !can_learn ) {
- unlearnable_recipe_list.push_back( "" + elem.name() + "" );
+ unlearnable_recipe_list.emplace_back( string_format( "%s", elem.name() ) );
} else {
- learnable_recipe_list.push_back( "" + elem.name() + "" );
+ learnable_recipe_list.emplace_back( string_format( "%s", elem.name() ) );
}
}
- int total_recipes = known_recipe_list.size() + learnable_recipe_list.size() +
- unlearnable_recipe_list.size();
-
- if( ( !known_recipe_list.empty() || !learnable_recipe_list.empty() ||
- !unlearnable_recipe_list.empty() ) &&
- parts->test( iteminfo_parts::DESCRIPTION_BOOK_RECIPES ) ) {
- std::string recipe_line =
- string_format( ngettext( "This book contains %1$d crafting recipe:",
- "This book contains %1$d crafting recipes:",
- total_recipes ), total_recipes );
-
- insert_separation_line( info );
- info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
-
+ const std::size_t num_crafting_recipes = known_recipe_list.size() + learnable_recipe_list.size() +
+ unlearnable_recipe_list.size();
+ const std::size_t num_total_recipes = num_crafting_recipes + practice_recipe_list.size();
+ if( num_total_recipes > 0 && parts->test( iteminfo_parts::DESCRIPTION_BOOK_RECIPES ) ) {
+ std::vector lines;
+ if( num_crafting_recipes > 0 ) {
+ lines.emplace_back(
+ string_format( ngettext( "This book contains %u crafting recipe.",
+ "This book contains %u crafting recipes.",
+ num_crafting_recipes ), num_crafting_recipes ) );
+ }
if( !known_recipe_list.empty() ) {
- std::string recipe_line =
- string_format( ngettext( "\nYou already know %1$d recipe:\n%2$s",
- "\nYou already know %1$d recipes:\n%2$s",
- known_recipe_list.size() ),
- known_recipe_list.size(),
- enumerate_as_string( known_recipe_list ) );
-
- info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ lines.emplace_back( _( "You already know how to craft:" ) );
+ lines.emplace_back( enumerate_as_string( known_recipe_list ) );
}
-
if( !learnable_recipe_list.empty() ) {
- std::string recipe_line =
- string_format( ngettext( "\nYou have the skills to craft %1$d recipe:\n%2$s",
- "\nYou have the skills to craft %1$d recipes:\n%2$s",
- learnable_recipe_list.size() ),
- learnable_recipe_list.size(),
- enumerate_as_string( learnable_recipe_list ) );
-
- info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ lines.emplace_back( _( "You understand how to craft:" ) );
+ lines.emplace_back( enumerate_as_string( learnable_recipe_list ) );
}
-
if( !unlearnable_recipe_list.empty() ) {
- std::string recipe_line =
- string_format( ngettext( "\nYou lack the skills to craft %1$d recipe:\n%2$s",
- "\nYou lack the skills to craft %1$d recipes:\n%2$s",
- unlearnable_recipe_list.size() ),
- unlearnable_recipe_list.size(),
- enumerate_as_string( unlearnable_recipe_list ) );
-
- info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ lines.emplace_back( _( "You lack the skills to understand:" ) );
+ lines.emplace_back( enumerate_as_string( unlearnable_recipe_list ) );
+ }
+ if( !practice_recipe_list.empty() ) {
+ lines.emplace_back( _( "This book can help you practice:" ) );
+ lines.emplace_back( enumerate_as_string( practice_recipe_list ) );
+ }
+ insert_separation_line( info );
+ for( const std::string &recipe_line : lines ) {
+ info.emplace_back( "DESCRIPTION", recipe_line );
}
}
- if( total_recipes != static_cast( book.recipes.size() ) &&
+ if( num_total_recipes < book.recipes.size() &&
parts->test( iteminfo_parts::DESCRIPTION_BOOK_ADDITIONAL_RECIPES ) ) {
- info.emplace_back( iteminfo( "DESCRIPTION",
- _( "It might help you figuring out some more "
- "recipes." ) ) );
+ info.emplace_back( "DESCRIPTION",
+ _( "It might help you figuring out some more recipes." ) );
}
}
} else {
if( parts->test( iteminfo_parts::BOOK_UNREAD ) ) {
- info.emplace_back( "BOOK",
- _( "You need to read this book to see its "
- "contents." ) );
+ info.emplace_back( "BOOK", _( "You need to read this book to see its contents." ) );
}
}
}
@@ -3565,6 +3542,8 @@ void item::battery_info( std::vector &info, const iteminfo_query * /*p
void item::tool_info( std::vector &info, const iteminfo_query *parts, int /*batch*/,
bool /*debug*/ ) const
{
+ avatar &player_character = get_avatar();
+
if( !is_tool() ) {
return;
}
@@ -3676,6 +3655,201 @@ void item::tool_info( std::vector &info, const iteminfo_query *parts,
feedback = _( "Fuel: " ) + feedback;
info.emplace_back( "DESCRIPTION", feedback );
}
+
+ // Display e-ink tablet copied recipes from SD cards
+ if( has_var( "EIPC_RECIPES" ) ) {
+ std::vector known_recipe_list;
+ std::vector learnable_recipe_list;
+ std::vector unlearnable_recipe_list;
+
+ const std::string recipes = get_var( "EIPC_RECIPES" );
+ // Capture the index one past the delimiter, i.e. start of target string.
+ size_t first_string_index = recipes.find_first_of( ',' ) + 1;
+ while( first_string_index != std::string::npos ) {
+ size_t next_string_index = recipes.find_first_of( ',', first_string_index );
+ if( next_string_index == std::string::npos ) {
+ break;
+ }
+ std::string new_recipe = recipes.substr( first_string_index,
+ next_string_index - first_string_index );
+
+ const recipe *r = &recipe_id( new_recipe ).obj();
+
+ const bool knows_it = player_character.knows_recipe( r );
+ const bool can_learn = player_character.get_skill_level( r->skill_used ) >= r->difficulty;
+
+ // In case the recipe is known, but has a different name in the item, use the
+ // real name to avoid confusing the player.
+ const std::string name = r->result_name();
+
+ if( knows_it ) {
+ known_recipe_list.emplace_back( "" + name + "" );
+ } else if( !can_learn ) {
+ unlearnable_recipe_list.emplace_back( "" + name + "" );
+ } else {
+ learnable_recipe_list.emplace_back( "" + name + "" );
+ }
+
+ first_string_index = next_string_index + 1;
+ }
+
+ int total_recipes = known_recipe_list.size() + learnable_recipe_list.size() +
+ unlearnable_recipe_list.size();
+
+ if( ( !known_recipe_list.empty() || !learnable_recipe_list.empty() ||
+ !unlearnable_recipe_list.empty() ) &&
+ parts->test( iteminfo_parts::DESCRIPTION_BOOK_RECIPES ) ) {
+ std::string recipe_line =
+ string_format( ngettext( "Contains %1$d copied crafting recipe:",
+ "Contains %1$d copied crafting recipes:",
+ total_recipes ), total_recipes );
+
+ insert_separation_line( info );
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+
+ if( !known_recipe_list.empty() ) {
+ std::vector sorted_known_recipes = known_recipe_list;
+ std::sort( sorted_known_recipes.begin(), sorted_known_recipes.end(), localized_compare );
+ std::string recipe_line =
+ string_format( ngettext( "\nYou already know %1$d recipe:\n%2$s",
+ "\nYou already know %1$d recipes:\n%2$s",
+ known_recipe_list.size() ),
+ known_recipe_list.size(), enumerate_as_string( sorted_known_recipes ) );
+
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ }
+
+ if( !learnable_recipe_list.empty() ) {
+ std::vector sorted_learnable_recipes = learnable_recipe_list;
+ std::sort( sorted_learnable_recipes.begin(), sorted_learnable_recipes.end(), localized_compare );
+ std::string recipe_line =
+ string_format( ngettext( "\nYou have the skills to craft %1$d recipe:\n%2$s",
+ "\nYou have the skills to craft %1$d recipes:\n%2$s",
+ learnable_recipe_list.size() ),
+ learnable_recipe_list.size(), enumerate_as_string( sorted_learnable_recipes ) );
+
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ }
+
+ if( !unlearnable_recipe_list.empty() ) {
+ std::vector sorted_unlearnable_recipes = unlearnable_recipe_list;
+ std::sort( sorted_unlearnable_recipes.begin(), sorted_unlearnable_recipes.end(),
+ localized_compare );
+ std::string recipe_line =
+ string_format( ngettext( "\nYou lack the skills to craft %1$d recipe:\n%2$s",
+ "\nYou lack the skills to craft %1$d recipes:\n%2$s",
+ unlearnable_recipe_list.size() ),
+ unlearnable_recipe_list.size(), enumerate_as_string( sorted_unlearnable_recipes ) );
+
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ }
+ }
+ }
+
+ // Display e-ink tablet ebook recipes
+ if( is_ebook_storage() ) {
+ std::vector known_recipe_list;
+ std::vector learnable_recipe_list;
+ std::vector unlearnable_recipe_list;
+ std::vector book_list = ebooks();
+ int total_ebooks = book_list.size();
+
+ for( auto iter = book_list.begin(); iter != book_list.end(); ++iter ) {
+ const item *ebook = *iter;
+
+ const islot_book &book = *ebook->type->book;
+ for( const islot_book::recipe_with_description_t &elem : book.recipes ) {
+ const bool knows_it = player_character.knows_recipe( elem.recipe );
+ const bool can_learn = player_character.get_skill_level( elem.recipe->skill_used ) >=
+ elem.skill_level;
+ // If the player knows it, they recognize it even if it's not clearly stated.
+ if( elem.is_hidden() && !knows_it ) {
+ continue;
+ }
+
+ // In case the recipe is known, but has a different name in the book, use the
+ // real name to avoid confusing the player.
+ const std::string name = elem.recipe->result_name( /*decorated=*/true );
+
+ if( knows_it ) {
+ std::string recipe_formated = "" + name + "";
+ if( known_recipe_list.end() == std::find( known_recipe_list.begin(), known_recipe_list.end(),
+ name ) ) {
+ known_recipe_list.emplace_back( "" + name + "" );
+ }
+ } else if( !can_learn ) {
+ std::string recipe_formated = "" + elem.name() + "";
+ if( unlearnable_recipe_list.end() == std::find( unlearnable_recipe_list.begin(),
+ unlearnable_recipe_list.end(), recipe_formated ) ) {
+ unlearnable_recipe_list.emplace_back( recipe_formated );
+ }
+ } else {
+ std::string recipe_formated = "" + elem.name() + "";
+ if( learnable_recipe_list.end() == std::find( learnable_recipe_list.begin(),
+ learnable_recipe_list.end(), recipe_formated ) ) {
+ learnable_recipe_list.emplace_back( "" + elem.name() + "" );
+ }
+ }
+ }
+ }
+
+ int total_recipes = known_recipe_list.size() + learnable_recipe_list.size() +
+ unlearnable_recipe_list.size();
+
+ if( ( !known_recipe_list.empty() || !learnable_recipe_list.empty() ||
+ !unlearnable_recipe_list.empty() ) &&
+ parts->test( iteminfo_parts::DESCRIPTION_BOOK_RECIPES ) ) {
+ std::string recipe_line =
+ string_format( ngettext( "Contains %1$d unique crafting recipe,",
+ "Contains %1$d unique crafting recipes,",
+ total_recipes ), total_recipes );
+ std::string source_line =
+ string_format( ngettext( "from %1$d stored ebook:",
+ "from %1$d stored ebooks:",
+ total_ebooks ), total_ebooks );
+
+ insert_separation_line( info );
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ info.emplace_back( iteminfo( "DESCRIPTION", source_line ) );
+
+ if( !known_recipe_list.empty() ) {
+ std::vector sorted_known_recipes = known_recipe_list;
+ std::sort( sorted_known_recipes.begin(), sorted_known_recipes.end(), localized_compare );
+ std::string recipe_line =
+ string_format( ngettext( "\nYou already know %1$d recipe:\n%2$s",
+ "\nYou already know %1$d recipes:\n%2$s",
+ known_recipe_list.size() ),
+ known_recipe_list.size(), enumerate_as_string( sorted_known_recipes ) );
+
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ }
+
+ if( !learnable_recipe_list.empty() ) {
+ std::vector sorted_learnable_recipes = learnable_recipe_list;
+ std::sort( sorted_learnable_recipes.begin(), sorted_learnable_recipes.end(), localized_compare );
+ std::string recipe_line =
+ string_format( ngettext( "\nYou have the skills to craft %1$d recipe:\n%2$s",
+ "\nYou have the skills to craft %1$d recipes:\n%2$s",
+ learnable_recipe_list.size() ),
+ learnable_recipe_list.size(), enumerate_as_string( sorted_learnable_recipes ) );
+
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ }
+
+ if( !unlearnable_recipe_list.empty() ) {
+ std::vector sorted_unlearnable_recipes = unlearnable_recipe_list;
+ std::sort( sorted_unlearnable_recipes.begin(), sorted_unlearnable_recipes.end(),
+ localized_compare );
+ std::string recipe_line =
+ string_format( ngettext( "\nYou lack the skills to craft %1$d recipe:\n%2$s",
+ "\nYou lack the skills to craft %1$d recipes:\n%2$s",
+ unlearnable_recipe_list.size() ),
+ unlearnable_recipe_list.size(), enumerate_as_string( sorted_unlearnable_recipes ) );
+
+ info.emplace_back( iteminfo( "DESCRIPTION", recipe_line ) );
+ }
+ }
+ }
}
void item::component_info( std::vector &info, const iteminfo_query *parts, int /*batch*/,
@@ -7883,12 +8057,8 @@ std::vector> item::get_available_recipes(
{
std::vector> recipe_entries;
if( is_book() ) {
- // NPCs don't need to identify books
- // TODO: remove this cast
- if( const avatar *a = dynamic_cast( &u ) ) {
- if( !a->has_identified( typeId() ) ) {
- return recipe_entries;
- }
+ if( !u.has_identified( typeId() ) ) {
+ return {};
}
for( const islot_book::recipe_with_description_t &elem : type->book->recipes ) {
@@ -9244,7 +9414,7 @@ int item::get_remaining_capacity_for_liquid( const item &liquid, bool allow_buck
int item::get_remaining_capacity_for_liquid( const item &liquid, const Character &p,
std::string *err ) const
{
- const bool allow_bucket = this == &p.weapon || !p.has_item( *this );
+ const bool allow_bucket = this == &p.get_wielded_item() || !p.has_item( *this );
int res = get_remaining_capacity_for_liquid( liquid, allow_bucket, err );
if( res > 0 ) {
@@ -10467,7 +10637,7 @@ bool item::process_extinguish( Character *carrier, const tripoint &pos )
extinguish = true;
}
if( !extinguish ||
- ( in_inv && precipitation && carrier->weapon.has_flag( flag_RAIN_PROTECT ) ) ) {
+ ( in_inv && precipitation && carrier->get_wielded_item()->has_flag( flag_RAIN_PROTECT ) ) ) {
return false; //nothing happens
}
if( carrier != nullptr ) {
diff --git a/src/item_factory.cpp b/src/item_factory.cpp
index a46d3fd7b88fc..36f49834d7359 100644
--- a/src/item_factory.cpp
+++ b/src/item_factory.cpp
@@ -2627,6 +2627,14 @@ void Item_factory::check_and_create_magazine_pockets( itype &def )
return;
}
+ // Thing uses no ammo
+ if( def.magazine && def.magazine->type.empty() ) {
+ return;
+ }
+ if( def.tool && def.tool->ammo_id.empty() ) {
+ return;
+ }
+
pocket_data mag_data;
mag_data.holster = true;
mag_data.volume_capacity = 200_liter;
@@ -2672,6 +2680,7 @@ void Item_factory::check_and_create_magazine_pockets( itype &def )
}
}
def.pockets.push_back( mag_data );
+ debugmsg( _( "%s needs pocket definitions" ), def.get_id().str() );
}
void Item_factory::add_special_pockets( itype &def )
diff --git a/src/iuse.cpp b/src/iuse.cpp
index 31ee6f51d7629..f2ad93555e0b8 100644
--- a/src/iuse.cpp
+++ b/src/iuse.cpp
@@ -5995,7 +5995,9 @@ static void init_memory_card_with_random_stuff( item &it )
//add random recipes
if( one_in( recipe_chance ) || ( encrypted && one_in( recipe_retry ) ) ) {
- it.set_var( "MC_RECIPE", "SIMPLE" );
+ const std::string recipe_category[6] = { "CC_AMMO", "CC_ARMOR", "CC_CHEM", "CC_ELECTRONIC", "CC_FOOD", "CC_WEAPON" };
+ int cc_random = rng( 0, 5 );
+ it.set_var( "MC_RECIPE", recipe_category[cc_random] );
}
if( it.has_flag( flag_MC_SCIENCE_STUFF ) ) {
@@ -6045,7 +6047,13 @@ static bool einkpc_download_memory_card( Character &p, item &eink, item &mc )
}
if( !mc.get_var( "MC_RECIPE" ).empty() ) {
- const bool science = mc.get_var( "MC_RECIPE" ) == "SCIENCE";
+ std::string category = mc.get_var( "MC_RECIPE" );
+ const bool science = category == "SCIENCE";
+ int recipe_num = rng( 1, 3 );
+
+ if( category == "SIMPLE" ) {
+ category = "CC_FOOD";
+ }
mc.erase_var( "MC_RECIPE" );
@@ -6057,33 +6065,52 @@ static bool einkpc_download_memory_card( Character &p, item &eink, item &mc )
continue;
}
if( science ) {
- if( r.difficulty >= 3 && one_in( r.difficulty + 1 ) ) {
+ if( r.difficulty >= 6 && r.category == "CC_CHEM" ) {
candidates.push_back( &r );
}
} else {
- if( r.category == "CC_FOOD" ) {
- if( r.difficulty <= 3 && one_in( r.difficulty ) ) {
- candidates.push_back( &r );
- }
+ if( r.difficulty <= 5 && ( r.category == category ) ) {
+ candidates.push_back( &r );
}
-
}
-
}
if( !candidates.empty() ) {
+ std::vector new_recipes;
+
+ for( int i = 0; i < recipe_num; i++ ) {
+ const recipe *r = random_entry( candidates );
+ if( std::find( new_recipes.begin(), new_recipes.end(), r ) != new_recipes.end() ) {
+ // Avoid duplicate. Try again.
+ i--;
+ } else {
+ new_recipes.push_back( r );
+ }
+ }
- const recipe *r = random_entry( candidates );
+ for( auto rec = new_recipes.begin(); rec != new_recipes.end(); ++rec ) {
+ const recipe *r = *rec;
+ const recipe_id &rident = r->ident();
- bool rec_added = eink.eipc_recipe_add( r->ident() );
+ const auto old_recipes = eink.get_var( "EIPC_RECIPES" );
+ if( old_recipes.empty() ) {
+ something_downloaded = true;
+ eink.set_var( "EIPC_RECIPES", "," + rident.str() + "," );
- if( rec_added ) {
- something_downloaded = true;
- p.add_msg_if_player( m_good, _( "You download a recipe for %s into the tablet's memory." ),
- r->result_name() );
- } else {
- p.add_msg_if_player( m_good, _( "Your tablet already has a recipe for %s." ),
- r->result_name() );
+ p.add_msg_if_player( m_good, _( "You download a recipe for %s into the tablet's memory." ),
+ r->result_name() );
+ } else {
+ if( old_recipes.find( "," + rident.str() + "," ) == std::string::npos ) {
+ something_downloaded = true;
+ eink.set_var( "EIPC_RECIPES", old_recipes + rident.str() + "," );
+
+ p.add_msg_if_player( m_good, _( "You download a recipe for %s into the tablet's memory." ),
+ r->result_name() );
+ } else {
+ p.add_msg_if_player( m_good, _( "The recipe for %s is already stored in the tablet's memory." ),
+ r->result_name() );
+ }
+ }
}
}
}
@@ -7638,7 +7665,7 @@ cata::optional iuse::ehandcuffs( Character *p, item *it, bool t, const trip
it->unset_flag( flag_NO_UNWIELD );
it->active = false;
- if( p->has_item( *it ) && p->weapon.typeId() == itype_e_handcuffs ) {
+ if( p->has_item( *it ) && p->get_wielded_item()->typeId() == itype_e_handcuffs ) {
add_msg( m_good, _( "%s on your wrists opened!" ), it->tname() );
}
@@ -7670,7 +7697,7 @@ cata::optional iuse::ehandcuffs( Character *p, item *it, bool t, const trip
if( ( it->ammo_remaining() > it->type->maximum_charges() - 1000 ) && ( p2.x != pos.x ||
p2.y != pos.y ) ) {
- if( p->has_item( *it ) && p->weapon.typeId() == itype_e_handcuffs ) {
+ if( p->has_item( *it ) && p->get_wielded_item()->typeId() == itype_e_handcuffs ) {
if( p->is_elec_immune() ) {
if( one_in( 10 ) ) {
@@ -9577,7 +9604,7 @@ static item *wield_before_use( Character *const p, item *const it, const std::st
return nullptr;
}
// `it` is no longer the item we are using (note that `player::wielded` is a value).
- return &p->weapon;
+ return p->get_wielded_item();
} else {
return nullptr;
}
diff --git a/src/iuse_actor.cpp b/src/iuse_actor.cpp
index b666a14087106..87309976235d1 100644
--- a/src/iuse_actor.cpp
+++ b/src/iuse_actor.cpp
@@ -1472,7 +1472,7 @@ bool salvage_actor::try_to_cut_up( Character &p, item &it ) const
return false;
}
// Softer warnings at the end so we don't ask permission and then tell them no.
- if( &it == &p.weapon ) {
+ if( &it == p.get_wielded_item() ) {
if( !query_yn( _( "You are wielding that, are you sure?" ) ) ) {
return false;
}
@@ -2377,6 +2377,11 @@ cata::optional learn_spell_actor::use( Character &p, item &, bool, const tr
return cata::nullopt;
}
study_spell.moves_total = study_time;
+ spell &studying = p.magic->get_spell( spell_id( spells[action] ) );
+ if( studying.get_difficulty() < p.get_skill_level( studying.skill() ) ) {
+ p.handle_skill_warning( studying.skill(),
+ true ); // show the skill warning on start reading, since we don't show it during
+ }
}
study_spell.moves_left = study_spell.moves_total;
if( study_spell.moves_total == 10100 ) {
diff --git a/src/magic.cpp b/src/magic.cpp
index c54528ec5841f..0a2422306ba9f 100644
--- a/src/magic.cpp
+++ b/src/magic.cpp
@@ -889,7 +889,7 @@ bool spell::check_if_component_in_hand( Character &guy ) const
const requirement_data &spell_components = type->spell_components.obj();
if( guy.has_weapon() ) {
- if( spell_components.can_make_with_inventory( guy.weapon, return_true
- ) ) {
+ if( spell_components.can_make_with_inventory( *guy.get_wielded_item(), return_true
- ) ) {
return true;
}
}
diff --git a/src/map.h b/src/map.h
index 74ffcd014974a..cee6ec56a1f27 100644
--- a/src/map.h
+++ b/src/map.h
@@ -1671,7 +1671,7 @@ class map
return zlevels;
}
- // Not protected/private for mapgen_functions.cpp access
+ // Not protected/private for mapgen.cpp and mapgen_functions.cpp access
// Rotates the current map 90*turns degrees clockwise
// Useful for houses, shops, etc
// @param turns number of 90 clockwise turns to make
@@ -1679,6 +1679,19 @@ class map
// set NPC positions. if false, cannot use setpos
void rotate( int turns, bool setpos_safe = false );
+ // Not protected/private for mapgen.cpp access
+ // Mirrors the current map horizontally and/or vertically (both is technically
+ // equivalent to a 180 degree rotation, while neither is a null operation).
+ // Intended to base recipe usage to allow recipes to specify the mirroring of
+ // a common blueprint. Note that the operation is NOT safe to use for purposes
+ // other than mirroring the map, place assets on it, and then mirroring it
+ // back (so the asset modification takes place in between calls to this
+ // operation). This allows us to skip the shuffling of NPCs and zones
+ // that the rotate operation above has to deal with.
+ // @param mirror_horizontal causes horizontal mirroring of the map
+ // @param mirror_vertical causes vertical mirroring of the map
+ void mirror( bool mirror_horizontal, bool mirror_vertical );
+
// Monster spawning:
public:
/**
diff --git a/src/mapgen.cpp b/src/mapgen.cpp
index b396b2438fcfc..81458dde363a9 100644
--- a/src/mapgen.cpp
+++ b/src/mapgen.cpp
@@ -487,6 +487,9 @@ load_mapgen_function( const JsonObject &jio, const std::string &id_base, const p
jio.throw_error( "function does not exist", "name" );
}
} else if( mgtype == "json" ) {
+ if( !jio.has_object( "object" ) ) {
+ jio.throw_error( R"(mapgen with method "json" must define key "object")" );
+ }
JsonObject jo = jio.get_object( "object" );
const json_source_location jsrc = jo.get_source_location();
jo.allow_omitted_members();
@@ -3779,6 +3782,8 @@ void mapgen_function_json::generate( mapgendata &md )
if( fill_ter != t_null ) {
m->draw_fill_background( fill_ter );
}
+ const oter_t &ter = *md.terrain_type();
+
if( predecessor_mapgen != oter_str_id::NULL_ID() ) {
mapgendata predecessor_mapgen_dat( md, predecessor_mapgen );
run_mapgen_func( predecessor_mapgen.id().str(), predecessor_mapgen_dat );
@@ -3793,8 +3798,8 @@ void mapgen_function_json::generate( mapgendata &md )
m->rotate( ( -rotation.get() + 4 ) % 4 );
- if( md.terrain_type()->is_rotatable() ) {
- m->rotate( ( -static_cast( md.terrain_type()->get_dir() ) + 4 ) % 4 );
+ if( ter.is_rotatable() || ter.is_linear() ) {
+ m->rotate( ( -ter.get_rotation() + 4 ) % 4 );
}
}
@@ -3810,8 +3815,8 @@ void mapgen_function_json::generate( mapgendata &md )
m->rotate( rotation.get() );
- if( md.terrain_type()->is_rotatable() ) {
- mapgen_rotate( m, md.terrain_type(), false );
+ if( ter.is_rotatable() || ter.is_linear() ) {
+ m->rotate( ter.get_rotation() );
}
}
@@ -3907,8 +3912,6 @@ void map::draw_map( mapgendata &dat )
draw_temple( dat );
} else if( is_ot_match( "mine", terrain_type, ot_match_type::prefix ) ) {
draw_mine( dat );
- } else if( is_ot_match( "anthill", terrain_type, ot_match_type::contains ) ) {
- draw_anthill( dat );
} else if( is_ot_match( "lab", terrain_type, ot_match_type::contains ) ) {
draw_lab( dat );
} else {
@@ -5459,24 +5462,6 @@ void map::draw_spider_pit( const mapgendata &dat )
}
}
-void map::draw_anthill( const mapgendata &dat )
-{
- const oter_id &terrain_type = dat.terrain_type();
- if( terrain_type == "anthill" || terrain_type == "acid_anthill" ) {
- for( int i = 0; i < SEEX * 2; i++ ) {
- for( int j = 0; j < SEEY * 2; j++ ) {
- if( i < 8 || j < 8 || i > SEEX * 2 - 9 || j > SEEY * 2 - 9 ) {
- ter_set( point( i, j ), dat.groundcover() );
- } else if( ( i == 11 || i == 12 ) && ( j == 11 || j == 12 ) ) {
- ter_set( point( i, j ), t_slope_down );
- } else {
- ter_set( point( i, j ), t_dirtmound );
- }
- }
- }
- }
-}
-
void map::draw_slimepit( const mapgendata &dat )
{
const oter_id &terrain_type = dat.terrain_type();
@@ -5637,14 +5622,6 @@ void map::draw_connections( const mapgendata &dat )
ter_set( point( SEEX - 3, SEEY ), t_door_metal_c );
ter_set( point( SEEX - 3, SEEY - 1 ), t_door_metal_c );
}
- } else if( is_ot_match( "ants", terrain_type, ot_match_type::type ) ) {
- if( dat.above() == "anthill" ) {
- if( const auto p = random_point( *this, [this]( const tripoint & n ) {
- return ter( n ) == t_dirt;
- } ) ) {
- ter_set( *p, t_slope_up );
- }
- }
}
// finally, any terrain with SIDEWALKS should contribute sidewalks to neighboring diagonal roads
@@ -6237,6 +6214,62 @@ void map::rotate( int turns, const bool setpos_safe )
mgr.rotate_zones( *this, turns );
}
+/**
+ * Mirrors this map, and all of its contents along with all its contents in the
+ * directions specified.
+ */
+void map::mirror( bool mirror_horizontal, bool mirror_vertical )
+{
+ if( !mirror_horizontal && !mirror_vertical ) {
+ return;
+ }
+
+
+
+ real_coords rc;
+ const tripoint &abs_sub = get_abs_sub();
+ rc.fromabs( point( abs_sub.x * SEEX, abs_sub.y * SEEY ) );
+
+ submap *pz = get_submap_at_grid( point_zero );
+ submap *pse = get_submap_at_grid( point_south_east );
+ submap *pe = get_submap_at_grid( point_east );
+ submap *ps = get_submap_at_grid( point_south );
+ if( pz == nullptr || pse == nullptr || pe == nullptr || ps == nullptr ) {
+ debugmsg( "Tried to mirror map at (%d,%d) but the submap is not loaded", point_zero.x,
+ point_zero.y );
+ return;
+ }
+
+ // Move the submaps around. Note that the order doesn't matter as the outcome is the same.
+ if( mirror_horizontal ) {
+ std::swap( *pz, *pe );
+ std::swap( *ps, *pse );
+ }
+ if( mirror_vertical ) {
+ std::swap( *pz, *ps );
+ std::swap( *pe, *pse );
+ }
+
+ // Then mirror them.
+ for( int j = 0; j < 2; ++j ) {
+ for( int i = 0; i < 2; ++i ) {
+ point p( i, j );
+ submap *sm = get_submap_at_grid( p );
+ if( sm == nullptr ) {
+ debugmsg( "Tried to mirror map at (%d,%d) but the submap is not loaded", p.x, p.y );
+ continue;
+ }
+
+ if( mirror_horizontal ) {
+ sm->mirror( true );
+ }
+ if( mirror_vertical ) {
+ sm->mirror( false );
+ }
+ }
+ }
+}
+
// Hideous function, I admit...
bool connects_to( const oter_id &there, int dir )
{
@@ -6875,7 +6908,7 @@ bool update_mapgen_function_json::setup_internal( const JsonObject &/*jo*/ )
}
bool update_mapgen_function_json::update_map( const tripoint_abs_omt &omt_pos, const point &offset,
- mission *miss, bool verify ) const
+ mission *miss, bool verify, bool mirror_horizontal, bool mirror_vertical, int rotation ) const
{
if( omt_pos == overmap::invalid_tripoint ) {
debugmsg( "Mapgen update function called with overmap::invalid_tripoint" );
@@ -6884,10 +6917,15 @@ bool update_mapgen_function_json::update_map( const tripoint_abs_omt &omt_pos, c
tinymap update_tmap;
const tripoint_abs_sm sm_pos = project_to( omt_pos );
update_tmap.load( sm_pos, true );
+ update_tmap.rotate( 4 - rotation );
+ update_tmap.mirror( mirror_horizontal, mirror_vertical );
mapgendata md( omt_pos, update_tmap, 0.0f, calendar::start_of_cataclysm, miss );
- return update_map( md, offset, verify );
+ bool const u = update_map( md, offset, verify );
+ update_tmap.mirror( mirror_horizontal, mirror_vertical );
+ update_tmap.rotate( rotation );
+ return u;
}
bool update_mapgen_function_json::update_map( const mapgendata &md, const point &offset,
@@ -6965,14 +7003,16 @@ mapgen_update_func add_mapgen_update_func( const JsonObject &jo, bool &defer )
}
bool run_mapgen_update_func( const std::string &update_mapgen_id, const tripoint_abs_omt &omt_pos,
- mission *miss, bool cancel_on_collision )
+ mission *miss, bool cancel_on_collision,
+ bool mirror_horizontal, bool mirror_vertical, int rotation )
{
const auto update_function = update_mapgen.find( update_mapgen_id );
if( update_function == update_mapgen.end() || update_function->second.empty() ) {
return false;
}
- return update_function->second[0]->update_map( omt_pos, point_zero, miss, cancel_on_collision );
+ return update_function->second[0]->update_map( omt_pos, point_zero, miss, cancel_on_collision,
+ mirror_horizontal, mirror_vertical, rotation );
}
bool run_mapgen_update_func( const std::string &update_mapgen_id, mapgendata &dat,
diff --git a/src/mapgen.h b/src/mapgen.h
index f1856d762ef4e..eef2c7410166f 100644
--- a/src/mapgen.h
+++ b/src/mapgen.h
@@ -462,7 +462,8 @@ class update_mapgen_function_json : public mapgen_function_json_base
void finalize_parameters();
void check() const;
bool update_map( const tripoint_abs_omt &omt_pos, const point &offset,
- mission *miss, bool verify = false ) const;
+ mission *miss, bool verify = false,
+ bool mirror_horizontal = false, bool mirror_vertical = false, int rotation = 0 ) const;
bool update_map( const mapgendata &md, const point &offset = point_zero,
bool verify = false ) const;
@@ -546,7 +547,6 @@ enum room_type {
// helpful functions
bool connects_to( const oter_id &there, int dir );
-void mapgen_rotate( map *m, oter_id terrain_type, bool north_is_down = false );
// wrappers for map:: functions
void line( map *m, const ter_id &type, const point &p1, const point &p2 );
void line_furn( map *m, const furn_id &type, const point &p1, const point &p2 );
diff --git a/src/mapgen_functions.cpp b/src/mapgen_functions.cpp
index f24274e997528..b99760d49f51e 100644
--- a/src/mapgen_functions.cpp
+++ b/src/mapgen_functions.cpp
@@ -39,10 +39,6 @@ static const itype_id itype_hat_hard( "hat_hard" );
static const itype_id itype_jackhammer( "jackhammer" );
static const itype_id itype_mask_dust( "mask_dust" );
-static const mtype_id mon_ant_larva( "mon_ant_larva" );
-static const mtype_id mon_ant_acid_larva( "mon_ant_acid_larva" );
-static const mtype_id mon_ant_queen( "mon_ant_queen" );
-static const mtype_id mon_ant_acid_queen( "mon_ant_acid_queen" );
static const mtype_id mon_bee( "mon_bee" );
static const mtype_id mon_beekeeper( "mon_beekeeper" );
static const mtype_id mon_zombie_jackson( "mon_zombie_jackson" );
@@ -139,17 +135,6 @@ building_gen_pointer get_mapgen_cfunction( const std::string &ident )
{ "sewer_tee", &mapgen_sewer_tee },
{ "sewer_four_way", &mapgen_sewer_four_way },
- { "ants_straight", &mapgen_ants_straight },
- { "ants_curved", &mapgen_ants_curved },
- // TODO: Add a dedicated dead-end function. For now it copies the straight section above.
- { "ants_end", &mapgen_ants_straight },
- { "ants_tee", &mapgen_ants_tee },
- { "ants_four_way", &mapgen_ants_four_way },
- { "ants_food", &mapgen_ants_food },
- { "ants_larvae", &mapgen_ants_larvae },
- { "ants_larvae_acid", &mapgen_ants_larvae_acid },
- { "ants_queen", &mapgen_ants_queen },
- { "ants_queen_acid", &mapgen_ants_queen_acid },
{ "lake_shore", &mapgen_lake_shore },
{ "ravine_edge", &mapgen_ravine_edge },
}
@@ -174,12 +159,6 @@ ter_id clay_or_sand()
return t_clay;
}
-void mapgen_rotate( map *m, oter_id terrain_type, bool north_is_down )
-{
- const om_direction::type dir = terrain_type->get_dir();
- m->rotate( static_cast( north_is_down ? om_direction::opposite( dir ) : dir ) );
-}
-
/////////////////////////////////////////////////////////////////////////////////////////////////
///// builtin terrain-specific mapgen functions. big multi-overmap-tile terrains are located in
///// mapgen_functions_big.cpp
@@ -2249,295 +2228,6 @@ void mapgen_hellmouth( mapgendata &dat )
}
-void mapgen_ants_curved( mapgendata &dat )
-{
- static const ter_str_id t_soil( "t_soil" );
- static const ter_str_id t_dirt_underground( "t_dirt_underground" );
- map *const m = &dat.m;
- point p( SEEX, 1 );
- int rn = 0;
- // First, set it all to rock
- fill_background( m, t_soil );
-
- for( int i = SEEX - 2; i <= SEEX + 3; i++ ) {
- m->ter_set( point( i, 0 ), t_dirt_underground );
- m->ter_set( point( i, 1 ), t_dirt_underground );
- m->ter_set( point( i, 2 ), t_dirt_underground );
- m->ter_set( point( SEEX * 2 - 1, i ), t_dirt_underground );
- m->ter_set( point( SEEX * 2 - 2, i ), t_dirt_underground );
- m->ter_set( point( SEEX * 2 - 3, i ), t_dirt_underground );
- }
- do {
- for( int i = p.x - 2; i <= p.x + 3; i++ ) {
- for( int j = p.y - 2; j <= p.y + 3; j++ ) {
- if( i > 0 && i < SEEX * 2 - 1 && j > 0 && j < SEEY * 2 - 1 ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
- if( rn < SEEX ) {
- p.x += rng( -1, 1 );
- p.y++;
- } else {
- p.x++;
- if( !one_in( p.x - SEEX ) ) {
- p.y += rng( -1, 1 );
- } else if( p.y < SEEY ) {
- p.y++;
- } else if( p.y > SEEY ) {
- p.y--;
- }
- }
- rn++;
- } while( p.x < SEEX * 2 - 1 || p.y != SEEY );
- for( int i = p.x - 2; i <= p.x + 3; i++ ) {
- for( int j = p.y - 2; j <= p.y + 3; j++ ) {
- if( i > 0 && i < SEEX * 2 - 1 && j > 0 && j < SEEY * 2 - 1 ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
- if( dat.terrain_type() == "ants_es" ) {
- m->rotate( 1 );
- }
- if( dat.terrain_type() == "ants_sw" ) {
- m->rotate( 2 );
- }
- if( dat.terrain_type() == "ants_wn" ) {
- m->rotate( 3 );
- }
-
-}
-
-void mapgen_ants_four_way( mapgendata &dat )
-{
- static const ter_str_id t_soil( "t_soil" );
- static const ter_str_id t_dirt_underground( "t_dirt_underground" );
- map *const m = &dat.m;
- fill_background( m, t_soil );
- int x = SEEX;
- for( int j = 0; j < SEEY * 2; j++ ) {
- for( int i = x - 2; i <= x + 3; i++ ) {
- if( i >= 1 && i < SEEX * 2 - 1 ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- x += rng( -1, 1 );
- while( std::abs( SEEX - x ) > SEEY * 2 - j - 1 ) {
- if( x < SEEX ) {
- x++;
- }
- if( x > SEEX ) {
- x--;
- }
- }
- }
-
- int y = SEEY;
- for( int i = 0; i < SEEX * 2; i++ ) {
- for( int j = y - 2; j <= y + 3; j++ ) {
- if( j >= 1 && j < SEEY * 2 - 1 ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- y += rng( -1, 1 );
- while( std::abs( SEEY - y ) > SEEX * 2 - i - 1 ) {
- if( y < SEEY ) {
- y++;
- }
- if( y > SEEY ) {
- y--;
- }
- }
- }
-
-}
-
-void mapgen_ants_straight( mapgendata &dat )
-{
- static const ter_str_id t_soil( "t_soil" );
- static const ter_str_id t_dirt_underground( "t_dirt_underground" );
- map *const m = &dat.m;
- int x = SEEX;
- fill_background( m, t_soil );
- for( int j = 0; j < SEEY * 2; j++ ) {
- for( int i = x - 2; i <= x + 3; i++ ) {
- if( i >= 1 && i < SEEX * 2 - 1 ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- x += rng( -1, 1 );
- while( std::abs( SEEX - x ) > SEEX * 2 - j - 1 ) {
- if( x < SEEX ) {
- x++;
- }
- if( x > SEEX ) {
- x--;
- }
- }
- }
- if( dat.terrain_type() == "ants_ew" ) {
- m->rotate( 1 );
- }
-
-}
-
-void mapgen_ants_tee( mapgendata &dat )
-{
- static const ter_str_id t_soil( "t_soil" );
- static const ter_str_id t_dirt_underground( "t_dirt_underground" );
- map *const m = &dat.m;
- fill_background( m, t_soil );
- int x = SEEX;
- for( int j = 0; j < SEEY * 2; j++ ) {
- for( int i = x - 2; i <= x + 3; i++ ) {
- if( i >= 1 && i < SEEX * 2 - 1 ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- x += rng( -1, 1 );
- while( std::abs( SEEX - x ) > SEEY * 2 - j - 1 ) {
- if( x < SEEX ) {
- x++;
- }
- if( x > SEEX ) {
- x--;
- }
- }
- }
- int y = SEEY;
- for( int i = SEEX; i < SEEX * 2; i++ ) {
- for( int j = y - 2; j <= y + 3; j++ ) {
- if( j >= 1 && j < SEEY * 2 - 1 ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- y += rng( -1, 1 );
- while( std::abs( SEEY - y ) > SEEX * 2 - 1 - i ) {
- if( y < SEEY ) {
- y++;
- }
- if( y > SEEY ) {
- y--;
- }
- }
- }
- if( dat.terrain_type() == "ants_new" ) {
- m->rotate( 3 );
- }
- if( dat.terrain_type() == "ants_nsw" ) {
- m->rotate( 2 );
- }
- if( dat.terrain_type() == "ants_esw" ) {
- m->rotate( 1 );
- }
-
-}
-
-static void mapgen_ants_generic( mapgendata &dat )
-{
- static const ter_str_id t_soil( "t_soil" );
- static const ter_str_id t_dirt_underground( "t_dirt_underground" );
- map *const m = &dat.m;
-
- for( int i = 0; i < SEEX * 2; i++ ) {
- for( int j = 0; j < SEEY * 2; j++ ) {
- if( i < SEEX - 4 || i > SEEX + 5 || j < SEEY - 4 || j > SEEY + 5 ) {
- m->ter_set( point( i, j ), t_soil );
- } else {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
- int rn = rng( 10, 20 );
- point p;
- for( int n = 0; n < rn; n++ ) {
- int cw = rng( 1, 8 );
- do {
- p.x = rng( 1 + cw, SEEX * 2 - 2 - cw );
- p.y = rng( 1 + cw, SEEY * 2 - 2 - cw );
- } while( m->ter( p ) == t_soil );
- for( int i = p.x - cw; i <= p.x + cw; i++ ) {
- for( int j = p.y - cw; j <= p.y + cw; j++ ) {
- if( trig_dist( p, point( i, j ) ) <= cw ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
- }
- if( connects_to( dat.north(), 2 ) ||
- is_ot_match( "ants_lab", dat.north(), ot_match_type::contains ) ) {
- for( int i = SEEX - 2; i <= SEEX + 3; i++ ) {
- for( int j = 0; j <= SEEY; j++ ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
- if( connects_to( dat.east(), 3 ) ||
- is_ot_match( "ants_lab", dat.east(), ot_match_type::contains ) ) {
- for( int i = SEEX; i <= SEEX * 2 - 1; i++ ) {
- for( int j = SEEY - 2; j <= SEEY + 3; j++ ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
- if( connects_to( dat.south(), 0 ) ||
- is_ot_match( "ants_lab", dat.south(), ot_match_type::contains ) ) {
- for( int i = SEEX - 2; i <= SEEX + 3; i++ ) {
- for( int j = SEEY; j <= SEEY * 2 - 1; j++ ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
- if( connects_to( dat.west(), 1 ) ||
- is_ot_match( "ants_lab", dat.west(), ot_match_type::contains ) ) {
- for( int i = 0; i <= SEEX; i++ ) {
- for( int j = SEEY - 2; j <= SEEY + 3; j++ ) {
- m->ter_set( point( i, j ), t_dirt_underground );
- }
- }
- }
-}
-
-void mapgen_ants_food( mapgendata &dat )
-{
- mapgen_ants_generic( dat );
- dat.m.place_items( item_group_id( "ant_food" ), 92, point_zero,
- point( SEEX * 2 - 1, SEEY * 2 - 1 ), true, dat.when() );
-}
-
-void mapgen_ants_larvae( mapgendata &dat )
-{
- mapgen_ants_generic( dat );
- dat.m.place_items( item_group_id( "ant_egg" ), 98, point_zero,
- point( SEEX * 2 - 1, SEEY * 2 - 1 ), true, dat.when() );
- dat.m.add_spawn( mon_ant_larva, 10, { SEEX, SEEY, dat.m.get_abs_sub().z } );
-}
-
-void mapgen_ants_larvae_acid( mapgendata &dat )
-{
- mapgen_ants_generic( dat );
- dat.m.place_items( item_group_id( "ant_egg" ), 98, point_zero,
- point( SEEX * 2 - 1, SEEY * 2 - 1 ), true, dat.when() );
- dat.m.add_spawn( mon_ant_acid_larva, 10, { SEEX, SEEY, dat.m.get_abs_sub().z } );
-}
-
-void mapgen_ants_queen( mapgendata &dat )
-{
- mapgen_ants_generic( dat );
- dat.m.place_items( item_group_id( "ant_egg" ), 98, point_zero,
- point( SEEX * 2 - 1, SEEY * 2 - 1 ), true, dat.when() );
- dat.m.add_spawn( mon_ant_queen, 1, { SEEX, SEEY, dat.m.get_abs_sub().z } );
-}
-
-void mapgen_ants_queen_acid( mapgendata &dat )
-{
- mapgen_ants_generic( dat );
- dat.m.place_items( item_group_id( "ant_egg" ), 98, point_zero,
- point( SEEX * 2 - 1, SEEY * 2 - 1 ), true, dat.when() );
- dat.m.add_spawn( mon_ant_acid_queen, 1, { SEEX, SEEY, dat.m.get_abs_sub().z } );
-}
-
void mapgen_forest( mapgendata &dat )
{
map *const m = &dat.m;
diff --git a/src/mapgen_functions.h b/src/mapgen_functions.h
index 2b3381f82f582..c8688fa3e5fb7 100644
--- a/src/mapgen_functions.h
+++ b/src/mapgen_functions.h
@@ -66,15 +66,6 @@ void mapgen_sewer_curved( mapgendata &dat );
void mapgen_sewer_four_way( mapgendata &dat );
void mapgen_sewer_straight( mapgendata &dat );
void mapgen_sewer_tee( mapgendata &dat );
-void mapgen_ants_curved( mapgendata &dat );
-void mapgen_ants_four_way( mapgendata &dat );
-void mapgen_ants_straight( mapgendata &dat );
-void mapgen_ants_tee( mapgendata &dat );
-void mapgen_ants_food( mapgendata &dat );
-void mapgen_ants_larvae( mapgendata &dat );
-void mapgen_ants_larvae_acid( mapgendata &dat );
-void mapgen_ants_queen( mapgendata &dat );
-void mapgen_ants_queen_acid( mapgendata &dat );
void mapgen_lake_shore( mapgendata &dat );
void mapgen_ravine_edge( mapgendata &dat );
@@ -85,7 +76,8 @@ void madd_field( map *m, const point &, field_type_id type, int intensity );
mapgen_update_func add_mapgen_update_func( const JsonObject &jo, bool &defer );
bool run_mapgen_update_func( const std::string &update_mapgen_id, const tripoint_abs_omt &omt_pos,
- mission *miss = nullptr, bool cancel_on_collision = true );
+ mission *miss = nullptr, bool cancel_on_collision = true,
+ bool mirror_horizontal = false, bool mirror_vertical = false, int rotation = 0 );
bool run_mapgen_update_func( const std::string &update_mapgen_id, mapgendata &dat,
bool cancel_on_collision = true );
bool run_mapgen_func( const std::string &mapgen_id, mapgendata &dat );
diff --git a/src/martialarts.cpp b/src/martialarts.cpp
index abfb7f71b83d1..d777194c7f512 100644
--- a/src/martialarts.cpp
+++ b/src/martialarts.cpp
@@ -392,6 +392,7 @@ class ma_buff_effect_type : public effect_type
int_decay_step = -1;
int_decay_tick = 1;
int_dur_factor = 0_turns;
+ int_decay_remove = false;
name.push_back( buff.name );
desc.push_back( buff.description );
rating = e_good;
@@ -449,12 +450,13 @@ bool ma_requirements::is_valid_character( const Character &u ) const
bool cqb = u.has_active_bionic( bio_cqb );
// There are 4 different cases of "armedness":
// Truly unarmed, unarmed weapon, style-allowed weapon, generic weapon
+ const item weapon = u.get_wielded_item();
bool melee_style = u.martial_arts_data->selected_strictly_melee();
bool is_armed = u.is_armed();
bool unarmed_weapon = is_armed && u.used_weapon().has_flag( json_flag_UNARMED_WEAPON );
bool forced_unarmed = u.martial_arts_data->selected_force_unarmed();
- bool weapon_ok = is_valid_weapon( u.weapon );
- bool style_weapon = u.martial_arts_data->selected_has_weapon( u.weapon.typeId() );
+ bool weapon_ok = is_valid_weapon( weapon );
+ bool style_weapon = u.martial_arts_data->selected_has_weapon( weapon.typeId() );
bool all_weapons = u.martial_arts_data->selected_allow_melee();
bool unarmed_ok = !is_armed || ( unarmed_weapon && unarmed_weapons_allowed );
@@ -906,7 +908,7 @@ static ma_technique get_valid_technique( const Character &owner, bool ma_techniq
{
const auto &ma_data = owner.martial_arts_data;
- for( const matec_id &candidate_id : ma_data->get_all_techniques( owner.weapon ) ) {
+ for( const matec_id &candidate_id : ma_data->get_all_techniques( owner.get_wielded_item() ) ) {
ma_technique candidate = candidate_id.obj();
if( candidate.*purpose && candidate.is_valid_character( owner ) ) {
@@ -1241,15 +1243,16 @@ bool Character::can_autolearn( const matype_id &ma_id ) const
void character_martial_arts::martialart_use_message( const Character &owner ) const
{
martialart ma = style_selected.obj();
- if( ma.force_unarmed || ma.weapon_valid( owner.weapon ) ) {
+ if( ma.force_unarmed || ma.weapon_valid( owner.get_wielded_item() ) ) {
owner.add_msg_if_player( m_info, "%s", ma.get_initiate_avatar_message() );
} else if( ma.strictly_melee && !owner.is_armed() ) {
owner.add_msg_if_player( m_bad, _( "%s cannot be used unarmed." ), ma.name );
} else if( ma.strictly_unarmed && owner.is_armed() ) {
owner.add_msg_if_player( m_bad, _( "%s cannot be used with weapons." ), ma.name );
} else {
- owner.add_msg_if_player( m_bad, _( "The %1$s is not a valid %2$s weapon." ), owner.weapon.tname( 1,
- false ), ma.name );
+ owner.add_msg_if_player( m_bad, _( "The %1$s is not a valid %2$s weapon." ),
+ owner.get_wielded_item().tname( 1,
+ false ), ma.name );
}
}
@@ -1498,7 +1501,7 @@ bool ma_style_callback::key( const input_context &ctxt, const input_event &event
std::back_inserter( weapons ), []( const itype_id & wid )-> std::string {
// Colorize wielded weapon and move it to the front of the list
Character &player_character = get_player_character();
- if( item::nname( wid ) == player_character.weapon.display_name() )
+ if( item::nname( wid ) == player_character.get_wielded_item()->display_name() )
{
return colorize( item::nname( wid ) + _( " (wielded)" ), c_light_cyan );
} else
diff --git a/src/mattack_actors.cpp b/src/mattack_actors.cpp
index 7ed19d019876f..a48c95fe370d8 100644
--- a/src/mattack_actors.cpp
+++ b/src/mattack_actors.cpp
@@ -27,6 +27,7 @@
#include "mtype.h"
#include "npc.h"
#include "point.h"
+#include "projectile.h"
#include "ret_val.h"
#include "rng.h"
#include "sounds.h"
@@ -611,16 +612,24 @@ void gun_actor::shoot( monster &z, Creature &target, const gun_mode_id &mode ) c
tmp.set_attitude( z.friendly ? NPCATT_FOLLOW : NPCATT_KILL );
tmp.recoil = 0; // no need to aim
+ bool throwing = false;
for( const auto &pr : fake_skills ) {
tmp.set_skill_level( pr.first, pr.second );
+ throwing |= pr.first == skill_id( "throw" );
}
- tmp.weapon = gun;
+ tmp.set_wielded_item( gun );
tmp.i_add( item( "UPS_off", calendar::turn, 1000 ) );
- add_msg_if_player_sees( z, m_warning, description.translated(), z.name(), tmp.weapon.tname() );
+ add_msg_if_player_sees( z, m_warning, description.translated(), z.name(),
+ tmp.get_wielded_item()->tname() );
- z.ammo[ammo] -= tmp.fire_gun( target.pos(), gun.gun_current_mode().qty );
+ if( throwing ) {
+ tmp.throw_item( target.pos(), item( ammo, calendar::turn, 1 ) );
+ z.ammo[ammo]--;
+ } else {
+ z.ammo[ammo] -= tmp.fire_gun( target.pos(), gun.gun_current_mode().qty );
+ }
if( require_targeting ) {
z.add_effect( effect_targeted, time_duration::from_turns( targeting_timeout_extend ) );
diff --git a/src/melee.cpp b/src/melee.cpp
index 5689aa4479b28..378f8db301b2f 100644
--- a/src/melee.cpp
+++ b/src/melee.cpp
@@ -2150,7 +2150,7 @@ static damage_instance hardcoded_mutation_attack( const Character &u, const trai
num_attacks = 7;
}
// Note: we're counting arms, so we want wielded item here, not weapon used for attack
- if( u.weapon.is_two_handed( u ) || !u.has_two_arms_lifting() ||
+ if( u.get_wielded_item().is_two_handed( u ) || !u.has_two_arms_lifting() ||
u.worn_with_flag( flag_RESTRICT_HANDS ) ) {
num_attacks--;
}
@@ -2572,13 +2572,13 @@ void avatar::disarm( npc &target )
their_roll += dice( 3, target.get_per() );
their_roll += dice( 3, target.get_skill_level( skill_melee ) );
- item &it = target.weapon;
-
+ item &it = *target.get_wielded_item();
+ const item *weapon = get_wielded_item();
// roll your melee and target's dodge skills to check if grab/smash attack succeeds
int hitspread = target.deal_melee_attack( this, hit_roll() );
if( hitspread < 0 ) {
add_msg( _( "You lunge for the %s, but miss!" ), it.tname() );
- mod_moves( -100 - stumble( *this, weapon ) - attack_speed( weapon ) );
+ mod_moves( -100 - stumble( *this, *weapon ) - attack_speed( *weapon ) );
target.on_attacked( *this );
return;
}
@@ -2613,7 +2613,7 @@ void avatar::disarm( npc &target )
}
// Make their weapon fall on floor if we've rolled enough.
- mod_moves( -100 - attack_speed( weapon ) );
+ mod_moves( -100 - attack_speed( *get_wielded_item() ) );
if( my_roll >= their_roll ) {
add_msg( _( "You smash %s with all your might forcing their %s to drop down nearby!" ),
target.get_name(), it.tname() );
diff --git a/src/memorial_logger.cpp b/src/memorial_logger.cpp
index f7c8c3e829565..7a602de7fb4da 100644
--- a/src/memorial_logger.cpp
+++ b/src/memorial_logger.cpp
@@ -352,8 +352,9 @@ void memorial_logger::write_text_memorial( std::ostream &file,
file << eol;
//Equipment
+ const item *weapon = u.get_wielded_item();
file << _( "Weapon:" ) << eol;
- file << indent << u.weapon.invlet << " - " << u.weapon.tname( 1, false ) << eol;
+ file << indent << weapon->invlet << " - " << weapon->tname( 1, false ) << eol;
file << eol;
file << _( "Equipment:" ) << eol;
diff --git a/src/monattack.cpp b/src/monattack.cpp
index f3ea88e695373..8431524f60541 100644
--- a/src/monattack.cpp
+++ b/src/monattack.cpp
@@ -796,11 +796,12 @@ bool mattack::pull_metal_weapon( monster *z )
Character *foe = dynamic_cast< Character * >( target );
if( foe != nullptr ) {
// Wielded steel or iron items except for built-in things like bionic claws or monomolecular blade
- if( !foe->weapon.has_flag( flag_NO_UNWIELD ) &&
- ( foe->weapon.made_of( material_id( "iron" ) ) ||
- foe->weapon.made_of( material_id( "hardsteel" ) ) ||
- foe->weapon.made_of( material_id( "steel" ) ) ||
- foe->weapon.made_of( material_id( "budget_steel" ) ) ) ) {
+ const item *weapon = foe->get_wielded_item();
+ if( !weapon->has_flag( flag_NO_UNWIELD ) &&
+ ( weapon->made_of( material_id( "iron" ) ) ||
+ weapon->made_of( material_id( "hardsteel" ) ) ||
+ weapon->made_of( material_id( "steel" ) ) ||
+ weapon->made_of( material_id( "budget_steel" ) ) ) ) {
const int wp_skill = foe->get_skill_level( skill_melee );
// It takes a while
z->moves -= att_cost_pull;
@@ -2720,7 +2721,7 @@ bool mattack::grab( monster *z )
target->add_msg_if_player( m_info, _( "The %s tries to grab you as well, but you bat it away!" ),
z->name() );
} else if( pl->is_throw_immune() && ( !pl->is_armed() ||
- pl->martial_arts_data->selected_has_weapon( pl->weapon.typeId() ) ) ) {
+ pl->martial_arts_data->selected_has_weapon( pl->get_wielded_item()->typeId() ) ) ) {
target->add_msg_if_player( m_info, _( "The %s tries to grab you…" ), z->name() );
thrown_by_judo( z );
} else {
@@ -3246,7 +3247,7 @@ bool mattack::photograph( monster *z )
}
}
- if( z->friendly || player_character.weapon.typeId() == itype_e_handcuffs ) {
+ if( z->friendly || player_character.get_wielded_item()->typeId() == itype_e_handcuffs ) {
// Friendly (hacked?) bot ignore the player. Arrested suspect ignored too.
// TODO: might need to be revisited when it can target npcs.
return false;
@@ -3264,7 +3265,7 @@ bool mattack::photograph( monster *z )
string_format( _( "a robotic voice boom, \"Citizen %s!\"" ), cname ), false, "speech",
z->type->id.str() );
- if( player_character.weapon.is_gun() ) {
+ if( player_character.get_wielded_item()->is_gun() ) {
sounds::sound( z->pos(), 15, sounds::sound_t::alert, _( "\"Drop your gun! Now!\"" ) );
} else if( player_character.is_armed() ) {
sounds::sound( z->pos(), 15, sounds::sound_t::alert, _( "\"Drop your weapon! Now!\"" ) );
@@ -3354,10 +3355,12 @@ void mattack::rifle( monster *z, Creature *target )
}
add_msg_if_player_sees( *z, m_warning, _( "The %s opens up with its rifle!" ), z->name() );
- tmp.weapon = item( "m4_carbine" ).ammo_set( ammo_type, z->ammo[ ammo_type ] );
- int burst = std::max( tmp.weapon.gun_get_mode( gun_mode_id( "AUTO" ) ).qty, 1 );
+ tmp.set_wielded_item( item( "m4_carbine" ).ammo_set( ammo_type, z->ammo[ ammo_type ] ) );
- z->ammo[ ammo_type ] -= tmp.fire_gun( target->pos(), burst ) * tmp.weapon.ammo_required();
+ item *weapon = tmp.get_wielded_item();
+ int burst = std::max( weapon->gun_get_mode( gun_mode_id( "AUTO" ) ).qty, 1 );
+
+ z->ammo[ ammo_type ] -= tmp.fire_gun( target->pos(), burst ) * weapon->ammo_required();
if( target && target->is_avatar() ) {
z->add_effect( effect_targeted, 3_turns );
@@ -3413,10 +3416,11 @@ void mattack::frag( monster *z, Creature *target ) // This is for the bots, not
}
add_msg_if_player_sees( *z, m_warning, _( "The %s's grenade launcher fires!" ), z->name() );
- tmp.weapon = item( "mgl" ).ammo_set( ammo_type, z->ammo[ ammo_type ] );
- int burst = std::max( tmp.weapon.gun_get_mode( gun_mode_id( "AUTO" ) ).qty, 1 );
+ tmp.set_wielded_item( item( "mgl" ).ammo_set( ammo_type, z->ammo[ ammo_type ] ) );
+ const item *weapon = tmp.get_wielded_item();
+ int burst = std::max( weapon->gun_get_mode( gun_mode_id( "AUTO" ) ).qty, 1 );
- z->ammo[ ammo_type ] -= tmp.fire_gun( target->pos(), burst ) * tmp.weapon.ammo_required();
+ z->ammo[ ammo_type ] -= tmp.fire_gun( target->pos(), burst ) * weapon->ammo_required();
if( target && target->is_avatar() ) {
z->add_effect( effect_targeted, 3_turns );
@@ -3470,10 +3474,11 @@ void mattack::tankgun( monster *z, Creature *target )
return;
}
add_msg_if_player_sees( *z, m_warning, _( "The %s's 120mm cannon fires!" ), z->name() );
- tmp.weapon = item( "TANK" ).ammo_set( ammo_type, z->ammo[ ammo_type ] );
- int burst = std::max( tmp.weapon.gun_get_mode( gun_mode_id( "AUTO" ) ).qty, 1 );
+ tmp.set_wielded_item( item( "TANK" ).ammo_set( ammo_type, z->ammo[ ammo_type ] ) );
+ const item *weapon = tmp.get_wielded_item();
+ int burst = std::max( weapon->gun_get_mode( gun_mode_id( "AUTO" ) ).qty, 1 );
- z->ammo[ ammo_type ] -= tmp.fire_gun( target->pos(), burst ) * tmp.weapon.ammo_required();
+ z->ammo[ ammo_type ] -= tmp.fire_gun( target->pos(), burst ) * weapon->ammo_required();
}
bool mattack::searchlight( monster *z )
@@ -3760,7 +3765,7 @@ bool mattack::copbot( monster *z )
// TODO: Make it recognize zeds as human, but ignore animals
Character *foe = dynamic_cast( target );
bool sees_u = foe != nullptr && z->sees( *foe );
- bool cuffed = foe != nullptr && foe->weapon.typeId() == itype_e_handcuffs;
+ bool cuffed = foe != nullptr && foe->get_wielded_item()->typeId() == itype_e_handcuffs;
// Taze first, then ask questions (simplifies later checks for non-humans)
if( !cuffed && z->is_adjacent( target, true ) ) {
taze( z, target );
@@ -4714,7 +4719,7 @@ bool mattack::riotbot( monster *z )
//already arrested?
//and yes, if the player has no hands, we are not going to arrest him.
if( foe != nullptr &&
- ( foe->weapon.typeId() == itype_e_handcuffs || !foe->has_two_arms_lifting() ) ) {
+ ( foe->get_wielded_item()->typeId() == itype_e_handcuffs || !foe->has_two_arms_lifting() ) ) {
z->anger = 0;
if( calendar::once_every( 25_turns ) ) {
@@ -5227,7 +5232,7 @@ bool mattack::bio_op_takedown( monster *z )
foe->add_effect( effect_downed, 3_turns );
}
} else if( ( !foe->is_armed() ||
- foe->martial_arts_data->selected_has_weapon( foe->weapon.typeId() ) ) &&
+ foe->martial_arts_data->selected_has_weapon( foe->get_wielded_item()->typeId() ) ) &&
!thrown_by_judo( z ) ) {
// Saved by the tentacle-bracing! :)
hit = bodypart_id( "torso" );
@@ -5365,7 +5370,7 @@ bool mattack::bio_op_disarm( monster *z )
their_roll += dice( 3, foe->get_per() );
their_roll += dice( 3, foe->get_skill_level( skill_melee ) );
- item &it = foe->weapon;
+ item &it = *foe->get_wielded_item();
target->add_msg_if_player( m_bad, _( "The zombie grabs your %s…" ), it.tname() );
@@ -5877,8 +5882,9 @@ bool mattack::dsa_drone_scan( monster *z )
}
target->set_value( timestamp_str, string_format( "%d", to_turn( calendar::turn ) ) );
if( weapons_count < 3 ) {
- if( target->weapon.is_gun() ) {
- const gun_type_type &guntype = target->weapon.gun_type();
+ const item *weapon = target->get_wielded_item();
+ if( weapon->is_gun() ) {
+ const gun_type_type &guntype = weapon->gun_type();
if( guntype == gun_type_type( "rifle" ) ||
guntype == gun_type_type( "shotgun" ) ||
guntype == gun_type_type( "launcher" ) ) {
diff --git a/src/mondefense.cpp b/src/mondefense.cpp
index 4d26d1d4959f0..ed38db86c33be 100644
--- a/src/mondefense.cpp
+++ b/src/mondefense.cpp
@@ -60,7 +60,7 @@ void mdefense::zapback( monster &m, Creature *const source,
}
}
// Players/NPCs can avoid the shock by using non-conductive weapons
- if( !foe->weapon.conductive() ) {
+ if( !foe->get_wielded_item().conductive() ) {
if( foe->reach_attacking ) {
return;
}
@@ -108,7 +108,8 @@ void mdefense::acidsplash( monster &m, Creature *const source,
}
} else {
if( const Character *const foe = dynamic_cast( source ) ) {
- if( foe->weapon.is_melee( damage_type::CUT ) || foe->weapon.is_melee( damage_type::STAB ) ) {
+ if( foe->get_wielded_item().is_melee( damage_type::CUT ) ||
+ foe->get_wielded_item().is_melee( damage_type::STAB ) ) {
num_drops += rng( 3, 4 );
}
if( foe->unarmed_attack() ) {
@@ -159,7 +160,8 @@ void mdefense::return_fire( monster &m, Creature *source, const dealt_projectile
const Character *const foe = dynamic_cast( source );
// No return fire for quiet or completely silent projectiles (bows, throwing etc).
- if( foe == nullptr || foe->weapon.gun_noise().volume < rl_dist( m.pos(), source->pos() ) ) {
+ if( foe == nullptr ||
+ foe->get_wielded_item().gun_noise().volume < rl_dist( m.pos(), source->pos() ) ) {
return;
}
@@ -196,12 +198,13 @@ void mdefense::return_fire( monster &m, Creature *source, const dealt_projectile
}
// ...and weapon, everything based on turret's properties
- tmp.weapon = item( gunactor->gun_type ).ammo_set( gunactor->ammo_type,
- m.ammo[ gunactor->ammo_type ] );
- const int burst = std::max( tmp.weapon.gun_get_mode( gun_mode_id( "DEFAULT" ) ).qty, 1 );
+ tmp.set_wielded_item( item( gunactor->gun_type ).ammo_set( gunactor->ammo_type,
+ m.ammo[ gunactor->ammo_type ] ) );
+ const item *weapon = tmp.get_wielded_item();
+ const int burst = std::max( weapon->gun_get_mode( gun_mode_id( "DEFAULT" ) ).qty, 1 );
// Fire the weapon and consume ammo
- m.ammo[ gunactor->ammo_type ] -= tmp.fire_gun( fire_point, burst ) * tmp.weapon.ammo_required();
+ m.ammo[ gunactor->ammo_type ] -= tmp.fire_gun( fire_point, burst ) * weapon->ammo_required();
}
}
}
diff --git a/src/monexamine.cpp b/src/monexamine.cpp
index d2a774e1fe54e..41d2c90a7f5a0 100644
--- a/src/monexamine.cpp
+++ b/src/monexamine.cpp
@@ -690,9 +690,9 @@ bool monexamine::pet_menu( monster &z )
}
amenu.addentry( check_bat, false, 'c', _( "%s battery level is %d%%" ), z.get_name(),
static_cast( charge_percent ) );
- if( player_character.weapon.is_null() && z.battery_item ) {
+ if( player_character.get_wielded_item()->is_null() && z.battery_item ) {
amenu.addentry( mount, true, 'r', _( "Climb into the mech and take control" ) );
- } else if( !player_character.weapon.is_null() ) {
+ } else if( !player_character.get_wielded_item()->is_null() ) {
amenu.addentry( mount, false, 'r', _( "You cannot pilot the mech whilst wielding something" ) );
} else if( !z.battery_item ) {
amenu.addentry( mount, false, 'r', _( "This mech has a dead battery and won't turn on" ) );
diff --git a/src/monmove.cpp b/src/monmove.cpp
index 8b284a53a7410..43bb1b2c765e1 100644
--- a/src/monmove.cpp
+++ b/src/monmove.cpp
@@ -317,7 +317,7 @@ void monster::plan()
bool swarms = has_flag( MF_SWARMS );
monster_attitude mood = attitude();
Character &player_character = get_player_character();
- // If we can see the player, move toward them or flee, simpleminded animals are too dumb to follow the player.
+ // If we can see the player, move toward them or flee.
if( friendly == 0 && seen_levels.test( player_character.pos().z + OVERMAP_DEPTH ) &&
sees( player_character ) ) {
dist = rate_target( player_character, dist, smart_planning );
@@ -330,9 +330,11 @@ void monster::plan()
morale -= fears_hostile_seen;
}
if( dist <= 5 ) {
- anger += angers_hostile_near;
+ if( anger <= 30 ) {
+ anger += angers_hostile_near;
+ }
morale -= fears_hostile_near;
- if( angers_mating_season > 0 ) {
+ if( angers_mating_season > 0 && anger <= 30 ) {
bool mating_angry = false;
season_type season = season_of_year( calendar::turn );
for( const std::string &elem : type->baby_flags ) {
@@ -413,9 +415,11 @@ void monster::plan()
}
fleeing = fleeing || fleeing_from;
if( rating <= 5 ) {
- anger += angers_hostile_near;
+ if( anger <= 30 ) {
+ anger += angers_hostile_near;
+ }
morale -= fears_hostile_near;
- if( angers_mating_season > 0 ) {
+ if( angers_mating_season > 0 && anger <= 30 ) {
bool mating_angry = false;
season_type season = season_of_year( calendar::turn );
for( const std::string &elem : type->baby_flags ) {
@@ -478,7 +482,9 @@ void monster::plan()
valid_targets = 1;
}
if( rating <= 5 ) {
- anger += angers_hostile_near;
+ if( anger <= 30 ) {
+ anger += angers_hostile_near;
+ }
morale -= fears_hostile_near;
}
if( !fleeing && anger <= 20 && valid_targets != 0 ) {
@@ -609,9 +615,6 @@ void monster::plan()
next_stop = patrol_route.at( next_patrol_point );
}
set_dest( next_stop );
- } else if( friendly > 0 && one_in( 3 ) ) {
- // Grow restless with no targets
- friendly--;
} else if( friendly != 0 && has_effect( effect_led_by_leash ) ) {
// visibility doesn't matter, we're getting pulled by a leash
if( rl_dist( get_location(), player_character.get_location() ) > 1 ) {
@@ -619,7 +622,16 @@ void monster::plan()
} else {
unset_dest();
}
- } else if( friendly < 0 && sees( player_character ) && !has_flag( MF_PET_WONT_FOLLOW ) ) {
+ if( friendly > 0 && one_in( 3 ) ) {
+ // Grow restless with no targets
+ friendly--;
+ }
+ } else if( friendly > 0 && one_in( 3 ) ) {
+ // Grow restless with no targets
+ friendly--;
+ } else if( friendly < 0 && sees( player_character ) &&
+ // Simpleminded animals are too dumb to follow the player.
+ !has_flag( MF_PET_WONT_FOLLOW ) ) {
if( rl_dist( get_location(), player_character.get_location() ) > 2 ) {
set_dest( player_character.get_location() );
} else {
diff --git a/src/monster.cpp b/src/monster.cpp
index d0979d0c837ad..149ba9430c338 100644
--- a/src/monster.cpp
+++ b/src/monster.cpp
@@ -509,6 +509,9 @@ std::string monster::name( unsigned int quantity ) const
return std::string();
}
std::string result = type->nname( quantity );
+ if( !nickname.empty() ) {
+ return nickname;
+ }
if( !unique_name.empty() ) {
//~ %1$s: monster name, %2$s: unique name
result = string_format( pgettext( "unique monster name", "%1$s: %2$s" ),
@@ -1338,7 +1341,8 @@ void monster::process_triggers()
// It's hard to ever see it in action
// and even harder to balance it without making it exploitable
- if( morale != type->morale && one_in( 10 ) ) {
+ if( morale != type->morale && one_in( 4 ) &&
+ ( ( std::abs( morale - type->morale ) > 15 ) || one_in( 2 ) ) ) {
if( morale < type->morale ) {
morale++;
} else {
@@ -1346,7 +1350,8 @@ void monster::process_triggers()
}
}
- if( anger != type->agro && one_in( 10 ) ) {
+ if( anger != type->agro && one_in( 4 ) &&
+ ( ( std::abs( anger - type->agro ) > 15 ) || one_in( 2 ) ) ) {
if( anger < type->agro ) {
anger++;
} else {
@@ -2702,24 +2707,26 @@ void monster::process_effects()
}
}
- //Monster will regen morale and aggression if it is on max HP
+ //Monster will regen morale and aggression if it is at/above max HP
//It regens more morale and aggression if is currently fleeing.
if( type->regen_morale && hp >= type->hp ) {
if( is_fleeing( player_character ) ) {
morale = type->morale;
anger = type->agro;
}
- if( morale <= type->morale ) {
+ if( morale < type->morale ) {
morale += 1;
}
- if( anger <= type->agro ) {
+ if( anger < type->agro ) {
anger += 1;
}
- if( morale < 0 ) {
+ if( morale < 0 && morale < type->morale ) {
morale += 5;
+ morale = std::min( morale, type->morale );
}
- if( anger < 0 ) {
+ if( anger < 0 && anger < type->agro ) {
anger += 5;
+ anger = std::min( anger, type->agro );
}
}
@@ -2945,8 +2952,10 @@ item monster::to_item() const
float monster::power_rating() const
{
+ // This should probably be replaced by something based on difficulty,
+ // at least for smarter critters using it for evaluation.
float ret = get_size() - 2.0f; // Zed gets 1, cat -1, hulk 3
- ret += has_flag( MF_ELECTRONIC ) ? 2.0f : 0.0f; // Robots tend to have guns
+ ret += is_ranged_attacker() ? 2.0f : 0.0f;
// Hostile stuff gets a big boost
// Neutral moose will still get burned if it comes close
return ret;
@@ -3144,6 +3153,55 @@ void monster::on_load()
if( dt <= 0_turns ) {
return;
}
+
+ if( morale != type->morale ) { // if works, will put into helper function
+ int dt_left_m = to_turns( dt );
+
+ if( std::abs( morale - type->morale ) > 15 ) {
+ const int adjust_by_m = std::min( ( dt_left_m / 4 ),
+ ( std::abs( morale - type->morale ) - 15 ) );
+ dt_left_m -= adjust_by_m * 4;
+ if( morale < type->morale ) {
+ morale += adjust_by_m;
+ } else {
+ morale -= adjust_by_m;
+ }
+ }
+
+ // Avoiding roll_remainder - PC out of situation, monster can calm down
+ if( morale < type->morale ) {
+ morale += std::min( static_cast( std::ceil( dt_left_m / 8.0 ) ),
+ std::abs( morale - type->morale ) );
+ } else {
+ morale -= std::min( ( dt_left_m / 8 ),
+ std::abs( morale - type->morale ) );
+ }
+ }
+ if( anger != type->agro ) {
+ int dt_left_a = to_turns( dt );
+
+ if( std::abs( anger - type->agro ) > 15 ) {
+ const int adjust_by_a = std::min( ( dt_left_a / 4 ),
+ ( std::abs( anger - type->agro ) - 15 ) );
+ dt_left_a -= adjust_by_a * 4;
+ if( anger < type->agro ) {
+ anger += adjust_by_a;
+ } else {
+ anger -= adjust_by_a;
+ }
+ }
+
+ if( anger > type->agro ) {
+ anger -= std::min( static_cast( std::ceil( dt_left_a / 8.0 ) ),
+ std::abs( anger - type->agro ) );
+ } else {
+ anger += std::min( ( dt_left_a / 8 ),
+ std::abs( anger - type->agro ) );
+ }
+ }
+
+
+ // TODO: regen_morale
float regen = type->regenerates;
if( regen <= 0 ) {
if( has_flag( MF_REVIVES ) ) {
diff --git a/src/monster.h b/src/monster.h
index f4c14d2047219..ed38903a5b08a 100644
--- a/src/monster.h
+++ b/src/monster.h
@@ -103,6 +103,9 @@ class monster : public Creature
return this;
}
+ mfaction_id get_monster_faction() const override {
+ return faction.id();
+ }
void poly( const mtype_id &id );
bool can_upgrade() const;
void hasten_upgrade();
@@ -508,6 +511,8 @@ class monster : public Creature
bool is_nemesis() const;
// If we're unique
std::string unique_name;
+ // Player given nickname
+ std::string nickname;
bool hallucination = false;
// abstract for a fish monster representing a hidden stock of population in that area.
int fish_population = 1;
diff --git a/src/monstergenerator.cpp b/src/monstergenerator.cpp
index ed2e6ee688fef..181727a8a20ef 100644
--- a/src/monstergenerator.cpp
+++ b/src/monstergenerator.cpp
@@ -729,21 +729,21 @@ void mtype::load( const JsonObject &jo, const std::string &src )
optional( jo, was_loaded, "regenerates_in_dark", regenerates_in_dark, false );
optional( jo, was_loaded, "regen_morale", regen_morale, false );
- if( !was_loaded || jo.has_member( "regeneration_modifers" ) ) {
+ if( !was_loaded || jo.has_member( "regeneration_modifiers" ) ) {
regeneration_modifiers.clear();
- add_regeneration_modifiers( jo, "regeneration_modifers", src );
+ add_regeneration_modifiers( jo, "regeneration_modifiers", src );
} else {
// Note: regeneration_modifers left as is, new modifiers are added to it!
// Note: member name prefixes are compatible with those used by generic_typed_reader
if( jo.has_object( "extend" ) ) {
JsonObject tmp = jo.get_object( "extend" );
tmp.allow_omitted_members();
- add_regeneration_modifiers( tmp, "regeneration_modifers", src );
+ add_regeneration_modifiers( tmp, "regeneration_modifiers", src );
}
if( jo.has_object( "delete" ) ) {
JsonObject tmp = jo.get_object( "delete" );
tmp.allow_omitted_members();
- remove_regeneration_modifiers( tmp, "regeneration_modifers", src );
+ remove_regeneration_modifiers( tmp, "regeneration_modifiers", src );
}
}
diff --git a/src/newcharacter.cpp b/src/newcharacter.cpp
index f80408d5bb989..60baca55aef5b 100644
--- a/src/newcharacter.cpp
+++ b/src/newcharacter.cpp
@@ -556,7 +556,7 @@ static int calculate_cumulative_experience( int level )
bool avatar::create( character_type type, const std::string &tempname )
{
- weapon = item();
+ set_wielded_item( item() );
prof = profession::generic();
set_scenario( scenario::generic() );
@@ -693,7 +693,7 @@ bool avatar::create( character_type type, const std::string &tempname )
scent = 300;
}
- weapon = item();
+ set_wielded_item( item() );
// Grab skills from profession and increment level
// We want to do this before the recipes
@@ -745,11 +745,6 @@ bool avatar::create( character_type type, const std::string &tempname )
starting_vehicle = prof->vehicle();
}
- add_profession_items();
-
- // Move items from the inventory. eventually the inventory should not contain items at all.
- migrate_items_to_storage( true );
-
std::vector prof_addictions = prof->addictions();
for( const addiction &iter : prof_addictions ) {
addictions.push_back( iter );
diff --git a/src/npc.cpp b/src/npc.cpp
index 424018bb30a77..8ea403759e1b8 100644
--- a/src/npc.cpp
+++ b/src/npc.cpp
@@ -386,7 +386,7 @@ void npc::randomize( const npc_class_id &type )
setID( g->assign_npc_id() );
}
- weapon = item( "null", calendar::turn_zero );
+ set_wielded_item( item( "null", calendar::turn_zero ) );
inv->clear();
personality.aggression = rng( -10, 10 );
personality.bravery = rng( -3, 10 );
@@ -659,15 +659,16 @@ void starting_inv( npc &who, const npc_class_id &type )
}
res.emplace_back( lighter );
// If wielding a gun, get some additional ammo for it
- if( who.weapon.is_gun() ) {
+ const item *weapon = who.get_wielded_item();
+ if( weapon->is_gun() ) {
item ammo;
- if( !who.weapon.magazine_default().is_null() ) {
- item mag( who.weapon.magazine_default() );
+ if( !weapon->magazine_default().is_null() ) {
+ item mag( weapon->magazine_default() );
mag.ammo_set( mag.ammo_default() );
ammo = item( mag.ammo_default() );
res.push_back( mag );
- } else if( !who.weapon.ammo_default().is_null() ) {
- ammo = item( who.weapon.ammo_default() );
+ } else if( !weapon->ammo_default().is_null() ) {
+ ammo = item( weapon->ammo_default() );
// TODO: Move to npc_class
// NC_COWBOY and NC_BOUNTY_HUNTER get 5-15 whilst all others get 3-6
int qty = 1 + ( type == NC_COWBOY ||
@@ -847,7 +848,7 @@ int npc::best_skill_level() const
void npc::starting_weapon( const npc_class_id &type )
{
if( item_group::group_is_defined( type->weapon_override ) ) {
- weapon = item_group::item_from( type->weapon_override, calendar::turn );
+ set_wielded_item( item_group::item_from( type->weapon_override, calendar::turn ) );
return;
}
@@ -855,53 +856,53 @@ void npc::starting_weapon( const npc_class_id &type )
// if NPC has no suitable skills default to stabbing weapon
if( !best || best == skill_stabbing ) {
- weapon = random_item_from( type, "stabbing", item_group_id( "survivor_stabbing" ) );
+ set_wielded_item( random_item_from( type, "stabbing", item_group_id( "survivor_stabbing" ) ) );
} else if( best == skill_bashing ) {
- weapon = random_item_from( type, "bashing", item_group_id( "survivor_bashing" ) );
+ set_wielded_item( random_item_from( type, "bashing", item_group_id( "survivor_bashing" ) ) );
} else if( best == skill_cutting ) {
- weapon = random_item_from( type, "cutting", item_group_id( "survivor_cutting" ) );
+ set_wielded_item( random_item_from( type, "cutting", item_group_id( "survivor_cutting" ) ) );
} else if( best == skill_throw ) {
- weapon = random_item_from( type, "throw" );
+ set_wielded_item( random_item_from( type, "throw" ) );
} else if( best == skill_archery ) {
- weapon = random_item_from( type, "archery" );
+ set_wielded_item( random_item_from( type, "archery" ) );
} else if( best == skill_pistol ) {
- weapon = random_item_from( type, "pistol", item_group_id( "guns_pistol_common" ) );
+ set_wielded_item( random_item_from( type, "pistol", item_group_id( "guns_pistol_common" ) ) );
} else if( best == skill_shotgun ) {
- weapon = random_item_from( type, "shotgun", item_group_id( "guns_shotgun_common" ) );
+ set_wielded_item( random_item_from( type, "shotgun", item_group_id( "guns_shotgun_common" ) ) );
} else if( best == skill_smg ) {
- weapon = random_item_from( type, "smg", item_group_id( "guns_smg_common" ) );
+ set_wielded_item( random_item_from( type, "smg", item_group_id( "guns_smg_common" ) ) );
} else if( best == skill_rifle ) {
- weapon = random_item_from( type, "rifle", item_group_id( "guns_rifle_common" ) );
- }
-
- if( weapon.is_gun() ) {
- if( !weapon.magazine_default().is_null() ) {
- weapon.ammo_set( weapon.magazine_default()->magazine->default_ammo );
- } else if( !weapon.ammo_default().is_null() ) {
- weapon.ammo_set( weapon.ammo_default() );
+ set_wielded_item( random_item_from( type, "rifle", item_group_id( "guns_rifle_common" ) ) );
+ }
+ item *weapon = get_wielded_item();
+ if( weapon->is_gun() ) {
+ if( !weapon->magazine_default().is_null() ) {
+ weapon->ammo_set( weapon->magazine_default()->magazine->default_ammo );
+ } else if( !weapon->ammo_default().is_null() ) {
+ weapon->ammo_set( weapon->ammo_default() );
} else {
- debugmsg( "tried setting ammo for %s which has no magazine or ammo", weapon.typeId().c_str() );
+ debugmsg( "tried setting ammo for %s which has no magazine or ammo", weapon->typeId().c_str() );
}
//You should be able to wield your starting weapon
- if( !meets_stat_requirements( weapon ) ) {
- if( weapon.get_min_str() > get_str() ) {
- str_max = weapon.get_min_str();
+ if( !meets_stat_requirements( *weapon ) ) {
+ if( weapon->get_min_str() > get_str() ) {
+ str_max = weapon->get_min_str();
}
- if( weapon.type->min_dex > get_dex() ) {
- dex_max = weapon.type->min_dex;
+ if( weapon->type->min_dex > get_dex() ) {
+ dex_max = weapon->type->min_dex;
}
- if( weapon.type->min_int > get_int() ) {
- int_max = weapon.type->min_int;
+ if( weapon->type->min_int > get_int() ) {
+ int_max = weapon->type->min_int;
}
- if( weapon.type->min_per > get_per() ) {
- per_max = weapon.type->min_per;
+ if( weapon->type->min_per > get_per() ) {
+ per_max = weapon->type->min_per;
}
}
}
- get_event_bus().send( getID(), weapon.typeId() );
+ get_event_bus().send( getID(), weapon->typeId() );
- weapon.set_owner( get_faction()->id );
+ weapon->set_owner( get_faction()->id );
}
bool npc::can_read( const item &book, std::vector &fail_reasons )
@@ -1114,27 +1115,28 @@ bool npc::wield( item &it )
invalidate_inventory_validity_cache();
cached_info.erase( "weapon_value" );
+ item *weapon = get_wielded_item();
if( has_wield_conflicts( to_wield ) ) {
- stow_item( weapon );
+ stow_item( *weapon );
}
if( to_wield.is_null() ) {
- weapon = item();
- get_event_bus().send( getID(), weapon.typeId() );
+ set_wielded_item( item() );
+ get_event_bus().send( getID(), weapon->typeId() );
return true;
}
moves -= 15;
- if( to_wield.can_combine( weapon ) ) {
- weapon.combine( to_wield );
+ if( to_wield.can_combine( *weapon ) ) {
+ weapon->combine( to_wield );
} else {
- weapon = to_wield;
+ set_wielded_item( to_wield );
}
- get_event_bus().send( getID(), weapon.typeId() );
+ get_event_bus().send( getID(), weapon->typeId() );
if( get_player_view().sees( pos() ) ) {
- add_msg_if_npc( m_info, _( " wields a %s." ), weapon.tname() );
+ add_msg_if_npc( m_info, _( " wields a %s." ), weapon->tname() );
}
invalidate_range_cache();
return true;
@@ -1151,24 +1153,26 @@ void npc::drop( const drop_locations &what, const tripoint &target,
void npc::invalidate_range_cache()
{
- if( weapon.is_gun() ) {
- confident_range_cache = confident_shoot_range( weapon, get_most_accurate_sight( weapon ) );
+ const item *weapon = get_wielded_item();
+ if( weapon->is_gun() ) {
+ confident_range_cache = confident_shoot_range( *weapon, get_most_accurate_sight( *weapon ) );
} else {
- confident_range_cache = weapon.reach_range( *this );
+ confident_range_cache = weapon->reach_range( *this );
}
}
void npc::form_opinion( const Character &you )
{
+ const item weapon = you.get_wielded_item();
// FEAR
- if( you.weapon.is_gun() ) {
+ if( weapon.is_gun() ) {
// TODO: Make bows not guns
if( weapon.is_gun() ) {
op_of_u.fear += 2;
} else {
op_of_u.fear += 6;
}
- } else if( you.weapon_value( you.weapon ) > 20 ) {
+ } else if( you.weapon_value( weapon ) > 20 ) {
op_of_u.fear += 2;
} else if( !you.is_armed() ) {
// Unarmed, but actually unarmed ("unarmed weapons" are not unarmed)
@@ -1233,7 +1237,7 @@ void npc::form_opinion( const Character &you )
op_of_u.trust += 1;
}
- if( you.weapon.is_gun() ) {
+ if( weapon.is_gun() ) {
op_of_u.trust -= 2;
} else if( !you.is_armed() ) {
op_of_u.trust += 2;
@@ -1467,17 +1471,18 @@ std::vector npc::spells_offered_to( Character &you )
void npc::decide_needs()
{
+ const item *weapon = get_wielded_item();
double needrank[num_needs];
for( auto &elem : needrank ) {
elem = 20;
}
- if( weapon.is_gun() ) {
- int ups_drain = weapon.get_gun_ups_drain();
+ if( weapon->is_gun() ) {
+ int ups_drain = weapon->get_gun_ups_drain();
if( ups_drain > 0 ) {
int ups_charges = available_ups();
needrank[need_ammo] = static_cast( ups_charges ) / ups_drain;
} else {
- const ammotype ammo_type = weapon.ammo_type();
+ const ammotype ammo_type = weapon->ammo_type();
if( ammo_type != ammotype::NULL_ID() ) {
needrank[need_ammo] = get_ammo( ammo_type ).size();
}
@@ -1488,7 +1493,7 @@ void npc::decide_needs()
needrank[need_safety] = 1;
}
- needrank[need_weapon] = weapon_value( weapon );
+ needrank[need_weapon] = weapon_value( *weapon );
needrank[need_food] = 15 - get_hunger();
needrank[need_drink] = 15 - get_thirst();
const auto inv_food = items_with( []( const item & itm ) {
@@ -1756,7 +1761,7 @@ int npc::value( const item &it, int market_price ) const
if( my_fac && my_fac->currency == it.typeId() ) {
return market_price;
}
-
+ const item weapon = get_wielded_item();
int ret = 0;
// TODO: Cache own weapon value (it can be a bit expensive to compute 50 times/turn)
double weapon_val = weapon_value( it ) - weapon_value( weapon );
@@ -2172,7 +2177,7 @@ void npc::npc_dismount()
remove_effect( effect_riding );
if( mounted_creature->has_flag( MF_RIDEABLE_MECH ) &&
!mounted_creature->type->mech_weapon.is_empty() ) {
- remove_item( weapon );
+ remove_item( *get_wielded_item() );
}
mounted_creature->remove_effect( effect_ridden );
mounted_creature->add_effect( effect_controlled, 5_turns );
@@ -2185,7 +2190,7 @@ int npc::smash_ability() const
{
if( !is_hallucination() && ( !is_player_ally() || rules.has_flag( ally_rule::allow_bash ) ) ) {
///\EFFECT_STR_NPC increases smash ability
- return str_cur + weapon.damage_melee( damage_type::BASH );
+ return str_cur + get_wielded_item().damage_melee( damage_type::BASH );
}
// Not allowed to bash
@@ -2199,7 +2204,7 @@ float npc::danger_assessment()
float npc::average_damage_dealt()
{
- return static_cast( melee_value( weapon ) );
+ return static_cast( melee_value( *get_wielded_item() ) );
}
bool npc::bravery_check( int diff )
@@ -2299,7 +2304,7 @@ int npc::print_info( const catacurses::window &w, int line, int vLines, int colu
if( is_armed() ) {
line += fold_and_print( w, point( column, line ), iWidth, c_red,
std::string( "" ) + _( "Wielding: " ) + std::string( "" ) +
- weapon.tname() );
+ get_wielded_item().tname() );
}
// Worn gear list on following lines.
diff --git a/src/npc.h b/src/npc.h
index 165244a0cd92f..ad7b32741f96b 100644
--- a/src/npc.h
+++ b/src/npc.h
@@ -913,7 +913,7 @@ class npc : public Character
void mutiny();
/** For mutant NPCs. Returns how monsters perceive said NPC. Doesn't imply NPC sees them the same. */
- mfaction_id get_monster_faction() const;
+ mfaction_id get_monster_faction() const override;
// What happens when the player makes a request
// How closely do we follow the player?
int follow_distance() const;
diff --git a/src/npc_attack.cpp b/src/npc_attack.cpp
index 0561f09714a27..970e8f53d7566 100644
--- a/src/npc_attack.cpp
+++ b/src/npc_attack.cpp
@@ -93,7 +93,7 @@ npc_attack_rating npc_attack_rating::operator-=( const int rhs )
void npc_attack_spell::use( npc &source, const tripoint &location ) const
{
spell &sp = source.magic->get_spell( attack_spell_id );
- if( source.has_weapon() && !source.weapon.has_flag( flag_id( "MAGIC_FOCUS" ) ) &&
+ if( source.has_weapon() && !source.get_wielded_item()->has_flag( flag_id( "MAGIC_FOCUS" ) ) &&
!sp.has_flag( spell_flag::NO_HANDS ) ) {
source.unwield();
}
@@ -154,7 +154,7 @@ int npc_attack_spell::base_time_penalty( const npc &source ) const
{
const spell &attack_spell = source.magic->get_spell( attack_spell_id );
int time_penalty = 0;
- if( source.has_weapon() && !source.weapon.has_flag( flag_id( "MAGIC_FOCUS" ) ) &&
+ if( source.has_weapon() && !source.get_wielded_item().has_flag( flag_id( "MAGIC_FOCUS" ) ) &&
!attack_spell.has_flag( spell_flag::NO_HANDS ) ) {
time_penalty += npc_attack_constants::base_time_penalty;
}
@@ -563,8 +563,8 @@ std::vector npc_attack_activate_item::all_evaluations( const
void npc_attack_throw::use( npc &source, const tripoint &location ) const
{
- if( !source.is_wielding( source.weapon ) ) {
- if( !source.wield( source.weapon ) ) {
+ if( !source.is_wielding( *source.get_wielded_item() ) ) {
+ if( !source.wield( *source.get_wielded_item() ) ) {
debugmsg( "ERROR: npc tried to equip a weapon it couldn't wield" );
}
return;
@@ -582,10 +582,10 @@ void npc_attack_throw::use( npc &source, const tripoint &location ) const
}
add_msg_debug( debugmode::debug_filter::DF_NPC, "%s throws the %s", source.disp_name(),
- source.weapon.display_name() );
- item thrown( source.weapon );
- if( source.weapon.count_by_charges() && source.weapon.charges > 1 ) {
- source.weapon.mod_charges( -1 );
+ source.get_wielded_item()->display_name() );
+ item thrown( *source.get_wielded_item() );
+ if( source.get_wielded_item()->count_by_charges() && source.get_wielded_item()->charges > 1 ) {
+ source.get_wielded_item()->mod_charges( -1 );
thrown.charges = 1;
} else {
source.remove_weapon();
diff --git a/src/npcmove.cpp b/src/npcmove.cpp
index 1a3f0d8329e6e..d56905fd70fda 100644
--- a/src/npcmove.cpp
+++ b/src/npcmove.cpp
@@ -209,7 +209,8 @@ bool good_for_pickup( const item &it, npc &who )
if( ( !it.made_of_from_type( phase_id::LIQUID ) ) &&
( ( !whitelisting && who.value( it ) > min_value ) || who.item_whitelisted( it ) ) &&
( it.weight() <= weight_allowed ) &&
- ( who.can_stash( it ) || who.weapon_value( it ) > who.weapon_value( who.weapon ) ) ) {
+ ( who.can_stash( it ) ||
+ who.weapon_value( it ) > who.weapon_value( *who.get_wielded_item() ) ) ) {
good = true;
}
@@ -693,9 +694,9 @@ float npc::character_danger( const Character &uc ) const
{
// TODO: Remove this when possible
float ret = 0.0f;
- bool u_gun = uc.weapon.is_gun();
- bool my_gun = weapon.is_gun();
- double u_weap_val = uc.weapon_value( uc.weapon );
+ bool u_gun = uc.get_wielded_item().is_gun();
+ bool my_gun = get_wielded_item().is_gun();
+ double u_weap_val = uc.weapon_value( uc.get_wielded_item() );
const double &my_weap_val = ai_cache.my_weapon_value;
if( u_gun && !my_gun ) {
u_weap_val *= 1.5f;
@@ -744,7 +745,7 @@ void npc::regen_ai_cache()
ai_cache.can_heal.clear_all();
ai_cache.danger = 0.0f;
ai_cache.total_danger = 0.0f;
- ai_cache.my_weapon_value = weapon_value( weapon );
+ ai_cache.my_weapon_value = weapon_value( *get_wielded_item() );
ai_cache.dangerous_explosives = find_dangerous_explosives();
assess_danger();
@@ -794,12 +795,13 @@ void npc::move()
npc_action action = npc_undecided;
+ const item *weapon = get_wielded_item();
static const std::string no_target_str = "none";
const Creature *target = current_target();
const std::string &target_name = target != nullptr ? target->disp_name() : no_target_str;
add_msg_debug( debugmode::DF_NPC, "NPC %s: target = %s, danger = %.1f, range = %d",
- get_name(), target_name, ai_cache.danger, weapon.is_gun() ? confident_shoot_range( weapon,
- recoil_total() ) : weapon.reach_range( *this ) );
+ get_name(), target_name, ai_cache.danger, weapon->is_gun() ? confident_shoot_range( *weapon,
+ recoil_total() ) : weapon->reach_range( *this ) );
Character &player_character = get_player_character();
//faction opinion determines if it should consider you hostile
@@ -1052,7 +1054,7 @@ void npc::execute_action( npc_action action )
worker_downtime();
break;
case npc_reload: {
- do_reload( weapon );
+ do_reload( *get_wielded_item() );
}
break;
@@ -1173,7 +1175,7 @@ void npc::execute_action( npc_action action )
break;
case npc_shoot: {
- gun_mode mode = weapon.gun_current_mode();
+ gun_mode mode = get_wielded_item()->gun_current_mode();
if( !mode ) {
debugmsg( "NPC tried to shoot without valid mode" );
break;
@@ -1540,11 +1542,12 @@ const item &npc::find_reloadable() const
bool npc::can_reload_current()
{
- if( !weapon.is_gun() || !wants_to_reload( *this, weapon ) ) {
+ const item *weapon = get_wielded_item();
+ if( !weapon->is_gun() || !wants_to_reload( *this, *weapon ) ) {
return false;
}
- return static_cast( find_usable_ammo( weapon ) );
+ return static_cast( find_usable_ammo( *weapon ) );
}
item_location npc::find_usable_ammo( const item &weap )
@@ -2122,9 +2125,10 @@ bool npc::enough_time_to_reload( const item &gun ) const
const float turns_til_reached = distance / target_speed;
if( target->is_avatar() || target->is_npc() ) {
const auto &c = dynamic_cast( *target );
+ const item weapon = c.get_wielded_item();
// TODO: Allow reloading if the player has a low accuracy gun
- if( sees( c ) && c.weapon.is_gun() && rltime > 200 &&
- c.weapon.gun_range( true ) > distance + turns_til_reloaded / target_speed ) {
+ if( sees( c ) && weapon.is_gun() && rltime > 200 &&
+ weapon.gun_range( true ) > distance + turns_til_reloaded / target_speed ) {
// Don't take longer than 2 turns if player has a gun
return false;
}
@@ -2136,12 +2140,13 @@ bool npc::enough_time_to_reload( const item &gun ) const
void npc::aim()
{
- double aim_amount = aim_per_move( weapon, recoil );
+ const item *weapon = get_wielded_item();
+ double aim_amount = aim_per_move( *weapon, recoil );
while( aim_amount > 0 && recoil > 0 && moves > 0 ) {
moves--;
recoil -= aim_amount;
recoil = std::max( 0.0, recoil );
- aim_amount = aim_per_move( weapon, recoil );
+ aim_amount = aim_per_move( *weapon, recoil );
}
}
@@ -2373,7 +2378,7 @@ void npc::move_to( const tripoint &pt, bool no_bashing, std::set *nomo
}
} else if( !no_bashing && smash_ability() > 0 && here.is_bashable( p ) &&
here.bash_rating( smash_ability(), p ) > 0 ) {
- moves -= !is_armed() ? 80 : weapon.attack_time() * 0.8;
+ moves -= !is_armed() ? 80 : get_wielded_item()->attack_time() * 0.8;
here.bash( p, smash_ability() );
} else {
if( attitude == NPCATT_MUG ||
@@ -2576,7 +2581,7 @@ void npc::worker_downtime()
// already know of a chair, go there - if there isn't already another creature there.
// this is a bit of behind the scene omniscience for the npc, since ideally the npc
// should walk to the chair and then change their destination due to the seat being taken.
- tripoint local_chair_pos = here.getlocal( *chair_pos );
+ tripoint local_chair_pos = chair_pos ? here.getlocal( *chair_pos ) : tripoint_zero;
if( chair_pos && !creatures.creature_at( local_chair_pos ) ) {
if( here.has_flag_furn( ter_furn_flag::TFLAG_CAN_SIT, local_chair_pos ) ) {
update_path( local_chair_pos );
@@ -2661,7 +2666,7 @@ void npc::move_pause()
}
// NPCs currently always aim when using a gun, even with no target
// This simulates them aiming at stuff just at the edge of their range
- if( !weapon.is_gun() ) {
+ if( !get_wielded_item()->is_gun() ) {
pause();
return;
}
@@ -3343,8 +3348,10 @@ bool npc::wield_better_weapon()
bool can_use_gun = ( !is_player_ally() || rules.has_flag( ally_rule::use_guns ) );
bool use_silent = ( is_player_ally() && rules.has_flag( ally_rule::use_silent ) );
+ item *weapon = get_wielded_item();
+
// Check if there's something better to wield
- item *best = &weapon;
+ item *best = weapon;
double best_value = -100.0;
const int ups_charges = available_ups();
@@ -3371,7 +3378,7 @@ bool npc::wield_better_weapon()
}
};
- compare_weapon( weapon );
+ compare_weapon( *weapon );
// To prevent changing to barely better stuff
best_value *= std::max( 1.0f, ai_cache.danger_assessment / 10.0f );
@@ -3394,7 +3401,7 @@ bool npc::wield_better_weapon()
// Needs to check reload speed, RELOAD_ONE etc.
// Until then, the NPCs should reload the guns as a last resort
- if( best == &weapon ) {
+ if( best == weapon ) {
add_msg_debug( debugmode::DF_NPC, "Wielded %s is best at %.1f, not switching",
best->type->get_id().str(),
best_value );
@@ -3489,7 +3496,7 @@ bool npc::alt_attack()
used_dangerous = used_dangerous || dangerous;
};
- check_alt_item( weapon );
+ check_alt_item( *get_wielded_item() );
const auto inv_all = items_with( []( const item & ) {
return true;
} );
diff --git a/src/npctalk.cpp b/src/npctalk.cpp
index b773f83b7481b..aa9d5c3482417 100644
--- a/src/npctalk.cpp
+++ b/src/npctalk.cpp
@@ -1176,7 +1176,9 @@ bool talk_trial::roll( dialogue &d ) const
}
const int chance = calc_chance( d );
const bool success = rng( 0, 99 ) < chance;
- if( d.actor( false )->get_character() ) {
+ const bool speech_trial = type == TALK_TRIAL_PERSUADE || type == TALK_TRIAL_INTIMIDATE ||
+ type == TALK_TRIAL_LIE;
+ if( speech_trial && d.actor( false )->get_character() ) {
Character &u = *d.actor( false )->get_character();
if( success ) {
u.practice( skill_speech, ( 100 - chance ) / 10 );
@@ -1288,20 +1290,22 @@ void parse_tags( std::string &phrase, const Character &u, const Character &me,
return;
}
+ const item &u_weapon = u.get_wielded_item();
+ const item &me_weapon = me.get_wielded_item();
// Special, dynamic tags go here
if( tag == "" ) {
- phrase.replace( fa, l, remove_color_tags( u.weapon.tname() ) );
+ phrase.replace( fa, l, remove_color_tags( u_weapon.tname() ) );
} else if( tag == "" ) {
if( !me.is_armed() ) {
phrase.replace( fa, l, _( "fists" ) );
} else {
- phrase.replace( fa, l, remove_color_tags( me.weapon.tname() ) );
+ phrase.replace( fa, l, remove_color_tags( me_weapon.tname() ) );
}
} else if( tag == "" ) {
- if( !me.weapon.is_gun() ) {
+ if( !me_weapon.is_gun() ) {
phrase.replace( fa, l, _( "BADAMMO" ) );
} else {
- phrase.replace( fa, l, me.weapon.ammo_current()->nname( 1 ) );
+ phrase.replace( fa, l, me_weapon.ammo_current()->nname( 1 ) );
}
} else if( tag == "" ) {
std::string activity_name;
@@ -2161,7 +2165,8 @@ void talk_effect_fun_t::set_message( const JsonObject &jo, const std::string &me
function = [message, outdoor_only, sound, snippet, type, popup_msg, is_npc]( const dialogue & d ) {
std::string translated_message;
if( snippet ) {
- translated_message = SNIPPET.random_from_category( message ).value_or( translation() ).translated();
+ translated_message = SNIPPET.expand( SNIPPET.random_from_category( message ).value_or(
+ translation() ).translated() );
} else {
translated_message = _( message );
}
diff --git a/src/npctrade.cpp b/src/npctrade.cpp
index 9e9e9bf68754d..3678e815e67e1 100644
--- a/src/npctrade.cpp
+++ b/src/npctrade.cpp
@@ -116,12 +116,13 @@ std::vector npc_trading::init_selling( npc &np )
}
}
+ item *weapon = np.get_wielded_item();
if(
np.will_exchange_items_freely() &&
- !np.weapon.is_null() &&
- !np.weapon.has_flag( json_flag_NO_UNWIELD )
+ !weapon->is_null() &&
+ !weapon->has_flag( json_flag_NO_UNWIELD )
) {
- result.emplace_back( np, np.weapon, np.value( np.weapon ), false );
+ result.emplace_back( np, *weapon, np.value( *weapon ), false );
}
return result;
@@ -379,7 +380,7 @@ void trading_window::update_win( npc &np, const std::string &deal )
for( size_t i = offset; i < list.size() && i < entries_per_page + offset; i++ ) {
const item_pricing &ip = list[i];
const item *it = ip.loc.get_item();
- nc_color color = it == &person.weapon ? c_yellow : c_light_gray;
+ nc_color color = it == &person.get_wielded_item() ? c_yellow : c_light_gray;
const int &owner_sells = they ? ip.u_has : ip.npc_has;
const int &owner_sells_charge = they ? ip.u_charges : ip.npc_charges;
std::string itname = it->display_name();
diff --git a/src/omdata.h b/src/omdata.h
index acbd1bf88f0f3..e9a9e3eea23af 100644
--- a/src/omdata.h
+++ b/src/omdata.h
@@ -300,6 +300,9 @@ struct oter_t {
return from_land_use_code ? type->land_use_code->color : type->color;
}
+ // dir is only meaningful for rotatable, non-linear terrain. If you
+ // need an answer that also works for linear terrain, call
+ // get_rotation() instead.
om_direction::type get_dir() const {
return dir;
}
@@ -308,6 +311,7 @@ struct oter_t {
return line;
}
void get_rotation_and_subtile( int &rotation, int &subtile ) const;
+ int get_rotation() const;
unsigned char get_see_cost() const {
return type->see_cost;
diff --git a/src/options.cpp b/src/options.cpp
index 22c5d4f1745a7..0ce06c545a9ba 100644
--- a/src/options.cpp
+++ b/src/options.cpp
@@ -1885,6 +1885,13 @@ void options_manager::add_options_graphics()
get_option( "USE_TILES_OVERMAP" ).setPrerequisite( "USE_TILES" );
+ add( "OVERMAP_TILES", "graphics", to_translation( "Choose overmap tileset" ),
+ to_translation( "Choose the overmap tileset you want to use." ),
+ build_tilesets_list(), "retrodays", COPT_CURSES_HIDE
+ ); // populate the options dynamically
+
+ get_option( "OVERMAP_TILES" ).setPrerequisite( "USE_TILES_OVERMAP" );
+
add_empty_line();
add( "MEMORY_MAP_MODE", "graphics", to_translation( "Memory map overlay preset" ),
@@ -2571,6 +2578,20 @@ static void refresh_tiles( bool used_tiles_changed, bool pixel_minimap_height_ch
use_tiles = false;
use_tiles_overmap = false;
}
+ try {
+ overmap_tilecontext->reinit();
+ overmap_tilecontext->load_tileset( get_option( "OVERMAP_TILES" ),
+ /*precheck=*/false, /*force=*/false,
+ /*pump_events=*/true );
+ //game_ui::init_ui is called when zoom is changed
+ g->reset_zoom();
+ g->mark_main_ui_adaptor_resize();
+ overmap_tilecontext->do_tile_loading_report();
+ } catch( const std::exception &err ) {
+ popup( _( "Loading the overmap tileset failed: %s" ), err.what() );
+ use_tiles = false;
+ use_tiles_overmap = false;
+ }
} else if( ingame && pixel_minimap_option && pixel_minimap_height_changed ) {
g->mark_main_ui_adaptor_resize();
}
diff --git a/src/overmap.cpp b/src/overmap.cpp
index d0708fd069c54..a0b725631d920 100644
--- a/src/overmap.cpp
+++ b/src/overmap.cpp
@@ -71,8 +71,6 @@ class map_extra;
#define dbg(x) DebugLog((x),D_MAP_GEN) << __FILE__ << ":" << __LINE__ << ": "
static constexpr int BUILDINGCHANCE = 4;
-static constexpr int MIN_ANT_SIZE = 8;
-static constexpr int MAX_ANT_SIZE = 20;
static constexpr int MIN_GOO_SIZE = 1;
static constexpr int MAX_GOO_SIZE = 2;
@@ -731,6 +729,20 @@ void oter_t::get_rotation_and_subtile( int &rotation, int &subtile ) const
}
}
+int oter_t::get_rotation() const
+{
+ if( is_linear() ) {
+ const om_lines::type &t = om_lines::all[line];
+ // It turns out the rotation used for linear things is the opposite of
+ // the rotation used for other things. Sigh.
+ return ( 4 - t.rotation ) % 4;
+ }
+ if( is_rotatable() ) {
+ return static_cast( get_dir() );
+ }
+ return 0;
+}
+
bool oter_t::type_is( const int_id &type_id ) const
{
return type->id.id() == type_id;
@@ -755,8 +767,6 @@ bool oter_t::is_hardcoded() const
{
// TODO: This set only exists because so does the monstrous 'if-else' statement in @ref map::draw_map(). Get rid of both.
static const std::set hardcoded_mapgen = {
- "acid_anthill",
- "anthill",
"ants_lab",
"ants_lab_stairs",
"ice_lab",
@@ -943,7 +953,7 @@ static constexpr cube_direction operator-( const cube_direction d, int i )
case cube_direction::last:
break;
}
- return cube_direction::last;
+ constexpr_fatal( cube_direction::last, "Invalid cube_direction" );
}
static constexpr cube_direction operator+( const cube_direction l, const om_direction::type r )
@@ -961,7 +971,7 @@ static constexpr cube_direction operator+( const cube_direction l, const om_dire
case cube_direction::last:
break;
}
- return cube_direction::last;
+ constexpr_fatal( cube_direction::last, "Invalid cube_direction" );
}
static_assert( cube_direction::north - 0 == cube_direction::north, "" );
@@ -1334,6 +1344,8 @@ class joins_tracker
if( resolved_position_index.count( other_side ) ) {
erase_unresolved( this_side );
+ } else if( postponed_points.count( pos ) ) {
+ postponed.push_back( { other_side, join, 0 } );
} else {
add_unresolved( other_side, join );
}
@@ -1367,6 +1379,7 @@ class joins_tracker
auto it = unresolved_position_index.find( p );
if( it != unresolved_position_index.end() ) {
postponed.push_back( *it->second );
+ postponed_points.insert( pos );
erase_unresolved( p );
}
}
@@ -1375,6 +1388,7 @@ class joins_tracker
for( const join &conn : postponed ) {
add_unresolved( conn.where, conn.join_id );
}
+ postponed_points.clear();
postponed.clear();
}
private:
@@ -1436,6 +1450,7 @@ class joins_tracker
std::list resolved;
std::unordered_map resolved_position_index;
+ std::unordered_set postponed_points;
std::vector postponed;
std::vector orphaned;
@@ -2452,9 +2467,6 @@ bool overmap::generate_sub( const int z )
sewer_points.emplace_back( i, j );
} else if( oter_above == "sewage_treatment" ) {
sewer_points.emplace_back( i, j );
- } else if( oter_above == "anthill" || oter_above == "acid_anthill" ) {
- const int size = rng( MIN_ANT_SIZE, MAX_ANT_SIZE );
- ant_points.emplace_back( p.xy(), size );
} else if( oter_above == "slimepit_down" || oter_above == "slimepit_bottom" ) {
const int size = rng( MIN_GOO_SIZE, MAX_GOO_SIZE );
goo_points.emplace_back( p.xy(), size );
@@ -2639,19 +2651,6 @@ bool overmap::generate_sub( const int z )
build_mine( tripoint_om_omt( i.pos, z ), i.size );
}
- for( auto &i : ant_points ) {
- const tripoint_om_omt p_loc( i.pos, z );
- if( ter( p_loc ) != "empty_rock" && ter( p_loc ) != "solid_earth" ) {
- continue;
- }
- mongroup_id ant_group( ter( p_loc + tripoint_above ) == "anthill" ?
- "GROUP_ANT" : "GROUP_ANT_ACID" );
- spawn_mon_group(
- mongroup( ant_group, tripoint_om_sm( project_to( i.pos ), z ),
- ( i.size * 3 ) / 2, rng( 6000, 8000 ) ) );
- build_anthill( p_loc, i.size, ter( p_loc + tripoint_above ) == "anthill" );
- }
-
return requires_sub;
}
@@ -4276,117 +4275,6 @@ bool overmap::build_lab(
return numstairs > 0;
}
-void overmap::build_anthill( const tripoint_om_omt &p, int s, bool ordinary_ants )
-{
- for( om_direction::type dir : om_direction::all ) {
- build_tunnel( p, s - rng( 0, 3 ), dir, ordinary_ants );
- }
-
- // TODO: This should follow the tunnel network,
- // as of now it can pick a tile from an adjacent ant network.
- std::vector queenpoints;
- for( int i = -s; i <= s; i++ ) {
- for( int j = -s; j <= s; j++ ) {
- const tripoint_om_omt qp = p + point( i, j );
- if( check_ot( "ants", ot_match_type::type, qp ) ) {
- queenpoints.push_back( qp );
- }
- }
- }
- if( queenpoints.empty() ) {
- debugmsg( "No queenpoints when building anthill, anthill over %s", ter( p ).id().str() );
- }
- const tripoint_om_omt target = random_entry( queenpoints );
- ter_set( target, ordinary_ants ? oter_id( "ants_queen" ) : oter_id( "ants_queen_acid" ) );
-
- const oter_id root_id( "ants_isolated" );
-
- for( int i = -s; i <= s; i++ ) {
- for( int j = -s; j <= s; j++ ) {
- const tripoint_om_omt root = p + point( i, j );
- if( !inbounds( root ) ) {
- continue;
- }
- if( root_id == ter( root )->id ) {
- const oter_id &oter = ter( root );
- for( om_direction::type dir : om_direction::all ) {
- const tripoint_om_omt neighbor = root + om_direction::displace( dir );
- if( check_ot( "ants", ot_match_type::prefix, neighbor ) ) {
- size_t line = oter->get_line();
- line = om_lines::set_segment( line, dir );
- if( line != oter->get_line() ) {
- ter_set( root, oter->get_type_id()->get_linear( line ) );
- }
- }
- }
- }
- }
- }
-}
-
-void overmap::build_tunnel( const tripoint_om_omt &p, int s, om_direction::type dir,
- bool ordinary_ants )
-{
- if( s <= 0 ) {
- return;
- }
- if( !inbounds( p ) ) {
- return;
- }
-
- const oter_id root_id( "ants_isolated" );
- if( root_id != ter( p )->id ) {
- if( check_ot( "ants", ot_match_type::type, p ) ) {
- return;
- }
- if( !is_ot_match( "empty_rock", ter( p ), ot_match_type::type ) &&
- !is_ot_match( "solid_earth", ter( p ), ot_match_type::type ) ) {
- return;
- }
- }
-
- ter_set( p, oter_id( root_id ) );
-
- std::vector valid;
- valid.reserve( om_direction::size );
- for( om_direction::type r : om_direction::all ) {
- const tripoint_om_omt cand = p + om_direction::displace( r );
- if( !check_ot( "ants", ot_match_type::type, cand ) && (
- is_ot_match( "empty_rock", ter( cand ), ot_match_type::type ) ||
- is_ot_match( "solid_earth", ter( cand ), ot_match_type::type ) ) ) {
- valid.push_back( r );
- }
- }
-
- const oter_id ants_food( "ants_food" );
- const oter_id ants_larvae( "ants_larvae" );
- const oter_id ants_larvae_acid( "ants_larvae_acid" );
- const tripoint_om_omt next =
- s != 1 ? p + om_direction::displace( dir ) : tripoint_om_omt( -1, -1, -1 );
-
- for( om_direction::type r : valid ) {
- const tripoint_om_omt cand = p + om_direction::displace( r );
- if( !inbounds( cand ) ) {
- continue;
- }
-
- if( cand.xy() != next.xy() ) {
- if( one_in( s * 2 ) ) {
- // Spawn a special chamber
- if( one_in( 2 ) ) {
- ter_set( cand, ants_food );
- } else {
- ter_set( cand, ordinary_ants ? ants_larvae : ants_larvae_acid );
- }
- } else if( one_in( 5 ) ) {
- // Branch off a side tunnel
- build_tunnel( cand, s - rng( 1, 3 ), r, ordinary_ants );
- }
- }
- }
- build_tunnel( next, s - 1, dir, ordinary_ants );
-}
-
bool overmap::build_slimepit( const tripoint_om_omt &origin, int s )
{
const oter_id slimepit_down( "slimepit_down" );
diff --git a/src/overmap.h b/src/overmap.h
index 14ed46a17d8f4..45a9eac019301 100644
--- a/src/overmap.h
+++ b/src/overmap.h
@@ -456,9 +456,6 @@ class overmap
om_direction::type dir, const city &town, int block_width = 2 );
bool build_lab( const tripoint_om_omt &p, int s, std::vector *lab_train_points,
const std::string &prefix, int train_odds );
- void build_anthill( const tripoint_om_omt &p, int s, bool ordinary_ants = true );
- void build_tunnel( const tripoint_om_omt &p, int s, om_direction::type dir,
- bool ordinary_ants = true );
bool build_slimepit( const tripoint_om_omt &origin, int s );
void build_mine( const tripoint_om_omt &origin, int s );
void place_ravines();
diff --git a/src/pathfinding.cpp b/src/pathfinding.cpp
index f1c84c0fd72d5..fb1adac8349f4 100644
--- a/src/pathfinding.cpp
+++ b/src/pathfinding.cpp
@@ -114,30 +114,22 @@ struct pathfinder {
}
};
-// Modifies `t` to be a tile with `flag` in the overmap tile that `t` was originally on
+// Modifies `t` to point to a tile with `flag` in a 1-submap radius of `t`'s original value,
+// searching nearest points first (starting with `t` itself).
// return false if it could not find a suitable point
-template
-bool vertical_move_destination( const map &m, tripoint &t )
+static bool vertical_move_destination( const map &m, ter_furn_flag flag, tripoint &t )
{
if( !m.has_zlevels() ) {
return false;
}
- constexpr point omtilesz( SEEX * 2, SEEY * 2 );
- real_coords rc( m.getabs( t.xy() ) );
- const point omtile_align_start(
- m.getlocal( rc.begin_om_pos() )
- );
-
const auto &pf_cache = m.get_pathfinding_cache_ref( t.z );
- for( int x = omtile_align_start.x; x < omtile_align_start.x + omtilesz.x; x++ ) {
- for( int y = omtile_align_start.y; y < omtile_align_start.y + omtilesz.y; y++ ) {
- if( pf_cache.special[x][y] & PF_UPDOWN ) {
- const tripoint p( x, y, t.z );
- if( m.has_flag( flag, p ) ) {
- t = p;
- return true;
- }
+ for( const point &p : closest_points_first( t.xy(), SEEX ) ) {
+ if( pf_cache.special[p.x][p.y] & PF_UPDOWN ) {
+ const tripoint t2( p, t.z );
+ if( m.has_flag( flag, t2 ) ) {
+ t = t2;
+ return true;
}
}
}
@@ -146,7 +138,7 @@ bool vertical_move_destination( const map &m, tripoint &t )
}
template
-bool is_disjoint( const Set1 &set1, const Set2 &set2 )
+static bool is_disjoint( const Set1 &set1, const Set2 &set2 )
{
if( set1.empty() || set2.empty() ) {
return true;
@@ -436,7 +428,7 @@ std::vector map::route( const tripoint &f, const tripoint &t,
if( settings.allow_climb_stairs && cur.z > min.z &&
parent_terrain.has_flag( ter_furn_flag::TFLAG_GOES_DOWN ) ) {
tripoint dest( cur.xy(), cur.z - 1 );
- if( vertical_move_destination( *this, dest ) ) {
+ if( vertical_move_destination( *this, ter_furn_flag::TFLAG_GOES_UP, dest ) ) {
auto &layer = pf.get_layer( dest.z );
pf.add_point( layer.gscore[parent_index] + 2,
layer.score[parent_index] + 2 * rl_dist( dest, t ),
@@ -446,7 +438,7 @@ std::vector map::route( const tripoint &f, const tripoint &t,
if( settings.allow_climb_stairs && cur.z < max.z &&
parent_terrain.has_flag( ter_furn_flag::TFLAG_GOES_UP ) ) {
tripoint dest( cur.xy(), cur.z + 1 );
- if( vertical_move_destination( *this, dest ) ) {
+ if( vertical_move_destination( *this, ter_furn_flag::TFLAG_GOES_DOWN, dest ) ) {
auto &layer = pf.get_layer( dest.z );
pf.add_point( layer.gscore[parent_index] + 2,
layer.score[parent_index] + 2 * rl_dist( dest, t ),
diff --git a/src/pickup.cpp b/src/pickup.cpp
index 8f9890efb26c8..b53a71abffd73 100644
--- a/src/pickup.cpp
+++ b/src/pickup.cpp
@@ -148,10 +148,11 @@ static pickup_answer handle_problematic_pickup( const item &it, bool &offered_sw
amenu.text = explain;
offered_swap = true;
+ const item *weapon = u.get_wielded_item();
// TODO: Gray out if not enough hands
if( u.has_wield_conflicts( it ) ) {
- amenu.addentry( WIELD, u.can_unwield( u.weapon ).success(), 'w',
- _( "Dispose of %s and wield %s" ), u.weapon.display_name(),
+ amenu.addentry( WIELD, u.can_unwield( *weapon ).success(), 'w',
+ _( "Dispose of %s and wield %s" ), weapon->display_name(),
it.display_name() );
} else {
amenu.addentry( WIELD, true, 'w', _( "Wield %s" ), it.display_name() );
@@ -309,11 +310,12 @@ bool pick_one_up( item_location &loc, int quantity, bool &got_water, bool &offer
const auto wield_check = player_character.can_wield( newit );
if( wield_check.success() ) {
picked_up = player_character.wield( newit );
- if( player_character.weapon.invlet ) {
- add_msg( m_info, _( "Wielding %c - %s" ), player_character.weapon.invlet,
- player_character.weapon.display_name() );
+ const item *weapon = player_character.get_wielded_item();
+ if( weapon->invlet ) {
+ add_msg( m_info, _( "Wielding %c - %s" ), weapon->invlet,
+ weapon->display_name() );
} else {
- add_msg( m_info, _( "Wielding - %s" ), player_character.weapon.display_name() );
+ add_msg( m_info, _( "Wielding - %s" ), player_character.get_wielded_item()->display_name() );
}
} else {
add_msg( m_neutral, wield_check.c_str() );
@@ -342,8 +344,9 @@ bool pick_one_up( item_location &loc, int quantity, bool &got_water, bool &offer
// failed to add, fill pockets if it's a stack
if( newit.count_by_charges() ) {
int remaining_charges = newit.charges;
- if( player_character.weapon.can_contain_partial( newit ) ) {
- int used_charges = player_character.weapon.fill_with( newit, remaining_charges );
+ item *weapon = player_character.get_wielded_item();
+ if( weapon->can_contain_partial( newit ) ) {
+ int used_charges = weapon->fill_with( newit, remaining_charges );
remaining_charges -= used_charges;
}
for( item &i : player_character.worn ) {
diff --git a/src/player_hardcoded_effects.cpp b/src/player_hardcoded_effects.cpp
index 57fb9f2ca111a..4bc410f7a3b36 100644
--- a/src/player_hardcoded_effects.cpp
+++ b/src/player_hardcoded_effects.cpp
@@ -1605,7 +1605,7 @@ void Character::hardcoded_effects( effect &it )
mod_dex_bonus( -8 );
recoil = MAX_RECOIL;
} else if( limb == "hand" ) {
- if( is_armed() && can_drop( weapon ).success() ) {
+ if( is_armed() && can_drop( *get_wielded_item() ).success() ) {
if( dice( 4, 4 ) > get_dex() ) {
cancel_activity(); //Prevent segfaults from activities trying to access missing item
put_into_vehicle_or_drop( *this, item_drop_reason::tumbling, { remove_weapon() } );
diff --git a/src/profession.cpp b/src/profession.cpp
index 5c4a048a7ce09..a68a0eb19a9a2 100644
--- a/src/profession.cpp
+++ b/src/profession.cpp
@@ -388,8 +388,7 @@ std::string profession::description( bool male ) const
static time_point advanced_spawn_time()
{
- const int initial_days = get_option( "INITIAL_DAY" );
- return calendar::before_time_starts + 1_days * initial_days;
+ return calendar::start_of_game;
}
signed int profession::point_cost() const
diff --git a/src/ranged.cpp b/src/ranged.cpp
index 45dfc7a0afe41..aa4bc7f492f7c 100644
--- a/src/ranged.cpp
+++ b/src/ranged.cpp
@@ -717,7 +717,7 @@ void npc::pretend_fire( npc *source, int shots, item &gun )
int Character::fire_gun( const tripoint &target, int shots )
{
- return fire_gun( target, shots, weapon );
+ return fire_gun( target, shots, *get_wielded_item() );
}
int Character::fire_gun( const tripoint &target, int shots, item &gun )
@@ -1551,7 +1551,8 @@ static int print_aim( const Character &you, const catacurses::window &w, int lin
dispersion.add_range( you.recoil_vehicle() );
const double min_recoil = calculate_aim_cap( you, pos );
- const double effective_recoil = you.effective_dispersion( you.weapon.sight_dispersion() );
+ const double effective_recoil = you.effective_dispersion(
+ you.get_wielded_item().sight_dispersion() );
const double min_dispersion = std::max( min_recoil, effective_recoil );
const double steadiness_range = MAX_RECOIL - min_dispersion;
// This is a relative measure of how steady the player's aim is,
@@ -2003,7 +2004,7 @@ double Character::gun_value( const item &weap, int ammo ) const
// Penalty for dodging in melee makes the gun unusable in melee
// Until NPCs get proper kiting, at least
- int melee_penalty = weapon.volume() / 250_ml - get_skill_level( skill_dodge );
+ int melee_penalty = get_wielded_item().volume() / 250_ml - get_skill_level( skill_dodge );
if( melee_penalty <= 0 ) {
// Dispersion matters less if you can just use the gun in melee
total_dispersion = std::min( total_dispersion / move_cost_factor, total_dispersion );
diff --git a/src/recipe_dictionary.cpp b/src/recipe_dictionary.cpp
index cde0ac95aaf66..e192b5d4d6d91 100644
--- a/src/recipe_dictionary.cpp
+++ b/src/recipe_dictionary.cpp
@@ -160,6 +160,9 @@ std::vector recipe_subset::search(
return !lcmatch( r->result_name(), txt );
case search_type::skill: {
+ if( r->skill_used && lcmatch( r->skill_used->name(), txt ) ) {
+ return true;
+ }
const auto &skills = r->required_skills;
return std::any_of( skills.begin(), skills.end(), [&]( const std::pair &e ) {
return lcmatch( e.first->name(), txt );
diff --git a/src/resource.rc b/src/resource.rc
index d491551467e71..753f317b0e251 100644
--- a/src/resource.rc
+++ b/src/resource.rc
@@ -1,6 +1,8 @@
#ifndef RESOURCE_RC_INCLUDED
#define RESOURCE_RC_INCLUDED
+#include
0 ICON "../data/cataicon.ico"
+1 RT_MANIFEST "../data/application_manifest.xml"
#endif // RESOURCE_RC_INCLUDED
diff --git a/src/savegame.cpp b/src/savegame.cpp
index aee98181389e5..ddb2abd27c191 100644
--- a/src/savegame.cpp
+++ b/src/savegame.cpp
@@ -413,6 +413,21 @@ void overmap::convert_terrain(
ter_set( pos + point_west, oter_id( "office_tower_underground_nw_north" ) );
ter_set( pos + point_south, oter_id( "office_tower_underground_se_north" ) );
ter_set( pos + point_south_west, oter_id( "office_tower_underground_sw_north" ) );
+ } else if( old == "anthill" ||
+ old == "acid_anthill" ||
+ old == "ants_larvae" ||
+ old == "ants_larvae_acid" ||
+ old == "ants_queen" ||
+ old == "ants_queen_acid" ||
+ old == "ants_food" ) {
+ std::string new_ = old;
+ if( string_ends_with( new_, "_acid" ) ) {
+ new_.erase( new_.end() - 5, new_.end() );
+ }
+ if( string_starts_with( new_, "acid_" ) ) {
+ new_.erase( new_.begin(), new_.begin() + 5 );
+ }
+ ter_set( pos, oter_id( new_ + "_north" ) );
}
for( const auto &conv : nearby ) {
diff --git a/src/savegame_json.cpp b/src/savegame_json.cpp
index ce1f2623fbffd..254680e93126a 100644
--- a/src/savegame_json.cpp
+++ b/src/savegame_json.cpp
@@ -870,7 +870,7 @@ void Character::load( const JsonObject &data )
stashed_outbounds_backlog.migrate_item_position( *this );
}
- weapon = item();
+ set_wielded_item( item() );
data.read( "weapon", weapon );
data.read( "move_mode", move_mode );
@@ -1047,6 +1047,10 @@ void Character::store( JsonOut &json ) const
{
Creature::store( json );
+ if( !weapon.is_null() ) {
+ json.member( "weapon", weapon ); // also saves contents
+ }
+
// stat
json.member( "str_cur", str_cur );
json.member( "str_max", str_max );
@@ -1197,10 +1201,6 @@ void Character::store( JsonOut &json ) const
json.member( "inv" );
inv->json_save_items( json );
- if( !weapon.is_null() ) {
- json.member( "weapon", weapon ); // also saves contents
- }
-
if( const auto lt_ptr = last_target.lock() ) {
if( const npc *const guy = dynamic_cast( lt_ptr.get() ) ) {
json.member( "last_target", guy->getID() );
@@ -2182,6 +2182,7 @@ void monster::load( const JsonObject &data )
type = &mtype_id( sidtmp ).obj();
data.read( "unique_name", unique_name );
+ data.read( "nickname", nickname );
data.read( "goal", goal );
data.read( "provocative_sound", provocative_sound );
data.read( "wandf", wandf );
@@ -2329,6 +2330,7 @@ void monster::store( JsonOut &json ) const
Creature::store( json );
json.member( "typeid", type->id );
json.member( "unique_name", unique_name );
+ json.member( "nickname", nickname );
json.member( "goal", goal );
json.member( "wander_pos", wander_pos );
json.member( "wandf", wandf );
diff --git a/src/sdltiles.cpp b/src/sdltiles.cpp
index 1ea31b8a91a2d..d2b4979ea76cb 100644
--- a/src/sdltiles.cpp
+++ b/src/sdltiles.cpp
@@ -101,6 +101,7 @@
//***********************************
std::unique_ptr tilecontext;
+std::unique_ptr overmap_tilecontext;
static uint32_t lastupdate = 0;
static uint32_t interval = 25;
static bool needupdate = false;
@@ -1525,7 +1526,8 @@ void cata_cursesport::curses_drawwindow( const catacurses::window &w )
// Special font for the terrain window
update = draw_window( map_font, w );
} else if( g && w == g->w_overmap && use_tiles && use_tiles_overmap ) {
- tilecontext->draw_om( win->pos, overmap_ui::redraw_info.center, overmap_ui::redraw_info.blink );
+ overmap_tilecontext->draw_om( win->pos, overmap_ui::redraw_info.center,
+ overmap_ui::redraw_info.blink );
update = true;
} else if( g && w == g->w_overmap && overmap_font ) {
// Special font for the terrain window
@@ -2262,7 +2264,7 @@ void remove_stale_inventory_quick_shortcuts()
}
if( !in_inventory ) {
// We couldn't find it in worn items either, check weapon held
- if( player_character.weapon.invlet == key ) {
+ if( player_character.get_wielded_item()->invlet == key ) {
in_inventory = true;
}
}
@@ -2397,8 +2399,8 @@ void draw_quick_shortcuts()
}
if( hint_text == "none" ) {
// We couldn't find it in worn items either, must be weapon held
- if( player_character.weapon.invlet == key ) {
- hint_text = player_character.weapon.display_name();
+ if( player_character.get_wielded_item()->invlet == key ) {
+ hint_text = player_character.get_wielded_item()->display_name();
}
}
} else {
@@ -2771,7 +2773,8 @@ static void CheckMessages()
actions.insert( ACTION_CYCLE_MOVE );
}
// Only prioritize fire weapon options if we're wielding a ranged weapon.
- if( player_character.weapon.is_gun() || player_character.weapon.has_flag( flag_REACH_ATTACK ) ) {
+ if( player_character.get_wielded_item()->is_gun() ||
+ player_character.get_wielded_item()->has_flag( flag_REACH_ATTACK ) ) {
actions.insert( ACTION_FIRE );
}
}
@@ -3580,6 +3583,20 @@ void catacurses::init_interface()
// Setting it to false disables this from getting used.
use_tiles = false;
}
+ overmap_tilecontext = std::make_unique( renderer, geometry );
+ try {
+ // Disable UIs below to avoid accessing the tile context during loading.
+ ui_adaptor dummy( ui_adaptor::disable_uis_below{} );
+ overmap_tilecontext->load_tileset( get_option( "OVERMAP_TILES" ),
+ /*precheck=*/true, /*force=*/false,
+ /*pump_events=*/true );
+ } catch( const std::exception &err ) {
+ dbg( D_ERROR ) << "failed to check for overmap tileset: " << err.what();
+ // use_tiles is the cached value of the USE_TILES option.
+ // most (all?) code refers to this to see if cata_tiles should be used.
+ // Setting it to false disables this from getting used.
+ use_tiles = false;
+ }
color_loader().load( windowsPalette );
init_colors();
@@ -3615,6 +3632,13 @@ void load_tileset()
/*precheck=*/false, /*force=*/false,
/*pump_events=*/true );
tilecontext->do_tile_loading_report();
+
+ if( overmap_tilecontext ) {
+ overmap_tilecontext->load_tileset( get_option( "OVERMAP_TILES" ),
+ /*precheck=*/false, /*force=*/false,
+ /*pump_events=*/true );
+ overmap_tilecontext->do_tile_loading_report();
+ }
}
//Ends the terminal, destroy everything
diff --git a/src/sdltiles.h b/src/sdltiles.h
index 6115e4ac7bc7b..aa1b1bf9bc67d 100644
--- a/src/sdltiles.h
+++ b/src/sdltiles.h
@@ -36,6 +36,7 @@ class window;
} // namespace catacurses
extern std::unique_ptr tilecontext;
+extern std::unique_ptr overmap_tilecontext;
extern std::array::COLOR_NAMES_COUNT> windowsPalette;
extern int fontheight;
extern int fontwidth;
diff --git a/src/sounds.cpp b/src/sounds.cpp
index 87f4e64826854..15b1ee58a9df1 100644
--- a/src/sounds.cpp
+++ b/src/sounds.cpp
@@ -1159,9 +1159,10 @@ sfx::sound_thread::sound_thread( const tripoint &source, const tripoint &target,
vol_src = std::max( heard_volume - 30, 0 );
vol_targ = std::max( heard_volume - 20, 0 );
}
+ const item weapon = you.get_wielded_item();
ang_targ = get_heard_angle( target );
- weapon_skill = you.weapon.melee_skill();
- weapon_volume = you.weapon.volume() / units::legacy_volume_factor;
+ weapon_skill = weapon.melee_skill();
+ weapon_volume = weapon.volume() / units::legacy_volume_factor;
}
// Operator overload required for thread API.
diff --git a/src/submap.cpp b/src/submap.cpp
index 506a5268dbb3e..d46b4e7bb0b3e 100644
--- a/src/submap.cpp
+++ b/src/submap.cpp
@@ -289,3 +289,44 @@ void submap::rotate( int turns )
}
computers = rot_comp;
}
+
+void submap::mirror( bool horizontally )
+{
+ std::map mirror_comp;
+
+ if( horizontally ) {
+ for( int i = 0, ie = SEEX / 2; i < ie; i++ ) {
+ for( int k = 0; k < SEEY; k++ ) {
+ swap_soa_tile( { i, k }, { SEEX - 1 - i, k } );
+ }
+ }
+
+ for( auto &elem : cosmetics ) {
+ elem.pos = point( -elem.pos.x, elem.pos.y ) + point( SEEX - 1, 0 );
+ }
+
+ active_items.mirror( { SEEX, SEEY }, true );
+
+ for( auto &elem : computers ) {
+ mirror_comp.emplace( point( -elem.first.x, elem.first.y ) + point( SEEX - 1, 0 ), elem.second );
+ }
+ computers = mirror_comp;
+ } else {
+ for( int k = 0, ke = SEEY / 2; k < ke; k++ ) {
+ for( int i = 0; i < SEEX; i++ ) {
+ swap_soa_tile( { i, k }, { i, SEEY - 1 - k } );
+ }
+ }
+
+ for( auto &elem : cosmetics ) {
+ elem.pos = point( elem.pos.x, -elem.pos.y ) + point( 0, SEEY - 1 );
+ }
+
+ active_items.mirror( { SEEX, SEEY }, false );
+
+ for( auto &elem : computers ) {
+ mirror_comp.emplace( point( elem.first.x, -elem.first.y ) + point( 0, SEEY - 1 ), elem.second );
+ }
+ computers = mirror_comp;
+ }
+}
diff --git a/src/submap.h b/src/submap.h
index 661f6dc5cff3a..d63dd2380eaf1 100644
--- a/src/submap.h
+++ b/src/submap.h
@@ -225,6 +225,7 @@ class submap : maptile_soa
bool contains_vehicle( vehicle * );
void rotate( int turns );
+ void mirror( bool horizontally );
void store( JsonOut &jsout ) const;
void load( JsonIn &jsin, const std::string &member_name, int version );
diff --git a/src/suffer.cpp b/src/suffer.cpp
index 28ce7fe288895..18199a8e15848 100644
--- a/src/suffer.cpp
+++ b/src/suffer.cpp
@@ -437,10 +437,11 @@ void suffer::from_chemimbalance( Character &you )
void suffer::from_schizophrenia( Character &you )
{
std::string i_name_w;
- if( !you.weapon.is_null() ) {
- i_name_w = you.weapon.has_var( "item_label" ) ? you.weapon.get_var( "item_label" ) :
+ if( !you.get_wielded_item()->is_null() ) {
+ i_name_w = you.get_wielded_item()->has_var( "item_label" ) ?
+ you.get_wielded_item()->get_var( "item_label" ) :
//~ %1$s: weapon name
- string_format( _( "your %1$s" ), you.weapon.type_name() );
+ string_format( _( "your %1$s" ), you.get_wielded_item()->type_name() );
}
// Start with the effects that both NPCs and avatars can suffer from
// Delusions
@@ -497,14 +498,14 @@ void suffer::from_schizophrenia( Character &you )
return;
}
// Drop weapon
- if( one_turn_in( 2_days ) && !you.weapon.is_null() ) {
+ if( one_turn_in( 2_days ) && !you.get_wielded_item()->is_null() ) {
const translation snip = SNIPPET.random_from_category( "schizo_weapon_drop" ).value_or(
translation() );
std::string str = string_format( snip, i_name_w );
str[0] = toupper( str[0] );
you.add_msg_if_player( m_bad, "%s", str );
- item_location loc( you, &you.weapon );
+ item_location loc( you, you.get_wielded_item() );
you.drop( loc, you.pos() );
return;
}
@@ -580,7 +581,7 @@ void suffer::from_schizophrenia( Character &you )
}
// Talking weapon
- if( !you.weapon.is_null() ) {
+ if( !you.get_wielded_item()->is_null() ) {
// If player has a weapon, picks a message from said weapon
// Weapon tells player to kill a monster if any are nearby
// Weapon is concerned for player if bleeding
@@ -608,7 +609,8 @@ void suffer::from_schizophrenia( Character &you )
i_talk_w = SNIPPET.random_from_category( "schizo_weapon_talk_bleeding" ).value_or(
translation() ).translated();
does_talk = true;
- } else if( you.weapon.damage() >= you.weapon.max_damage() / 3 && one_turn_in( 1_hours ) ) {
+ } else if( you.get_wielded_item()->damage() >= you.get_wielded_item()->max_damage() / 3 &&
+ one_turn_in( 1_hours ) ) {
i_talk_w = SNIPPET.random_from_category( "schizo_weapon_talk_damaged" ).value_or(
translation() ).translated();
does_talk = true;
@@ -856,7 +858,7 @@ void suffer::from_sunburn( Character &you )
}
}
// Umbrellas can keep the sun off the skin
- if( you.weapon.has_flag( flag_RAIN_PROTECT ) ) {
+ if( you.get_wielded_item()->has_flag( flag_RAIN_PROTECT ) ) {
return;
}
@@ -1202,14 +1204,14 @@ void suffer::from_bad_bionics( Character &you )
you.moves -= 150;
you.mod_power_level( -bio_dis_shock->power_trigger );
- if( you.weapon.typeId() == itype_e_handcuffs && you.weapon.charges > 0 ) {
- you.weapon.charges -= rng( 1, 3 ) * 50;
- if( you.weapon.charges < 1 ) {
- you.weapon.charges = 1;
+ if( you.get_wielded_item()->typeId() == itype_e_handcuffs && you.get_wielded_item()->charges > 0 ) {
+ you.get_wielded_item()->charges -= rng( 1, 3 ) * 50;
+ if( you.get_wielded_item()->charges < 1 ) {
+ you.get_wielded_item()->charges = 1;
}
you.add_msg_if_player( m_good, _( "The %s seems to be affected by the discharge." ),
- you.weapon.tname() );
+ you.get_wielded_item()->tname() );
}
sfx::play_variant_sound( "bionics", "elec_discharge", 100 );
}
diff --git a/src/talker_character.cpp b/src/talker_character.cpp
index 83039f14e5d3f..66fe92e2be202 100644
--- a/src/talker_character.cpp
+++ b/src/talker_character.cpp
@@ -305,7 +305,7 @@ bool talker_character::unarmed_attack() const
bool talker_character::can_stash_weapon() const
{
- return me_chr->can_pickVolume( me_chr->weapon );
+ return me_chr->can_pickVolume( *me_chr->get_wielded_item() );
}
bool talker_character::has_stolen_item( const talker &guy ) const
@@ -397,7 +397,7 @@ bool talker_character::worn_with_flag( const flag_id &flag ) const
bool talker_character::wielded_with_flag( const flag_id &flag ) const
{
- return me_chr->weapon.has_flag( flag );
+ return me_chr->get_wielded_item()->has_flag( flag );
}
units::energy talker_character::power_cur() const
diff --git a/src/talker_npc.cpp b/src/talker_npc.cpp
index 97e5d328df0d6..6e49c41a2e733 100644
--- a/src/talker_npc.cpp
+++ b/src/talker_npc.cpp
@@ -508,7 +508,7 @@ std::string talker_npc::give_item_to( const bool to_use )
}
item &given = *loc;
- if( ( &given == &player_character.weapon &&
+ if( ( &given == player_character.get_wielded_item() &&
given.has_flag( STATIC( flag_id( "NO_UNWIELD" ) ) ) ) ||
( player_character.is_worn( given ) &&
given.has_flag( STATIC( flag_id( "NO_TAKEOFF" ) ) ) ) ) {
@@ -522,12 +522,13 @@ std::string talker_npc::give_item_to( const bool to_use )
bool taken = false;
std::string reason = _( "Nope." );
- int our_ammo = me_npc->ammo_count_for( me_npc->weapon );
+ const item *weapon = me_npc->get_wielded_item();
+ int our_ammo = me_npc->ammo_count_for( *weapon );
int new_ammo = me_npc->ammo_count_for( given );
const double new_weapon_value = me_npc->weapon_value( given, new_ammo );
- const double cur_weapon_value = me_npc->weapon_value( me_npc->weapon, our_ammo );
+ const double cur_weapon_value = me_npc->weapon_value( *weapon, our_ammo );
add_msg_debug( debugmode::DF_TALKER, "NPC evaluates own %s (%d ammo): %0.1f",
- me_npc->weapon.typeId().str(), our_ammo, cur_weapon_value );
+ weapon->typeId().str(), our_ammo, cur_weapon_value );
add_msg_debug( debugmode::DF_TALKER, "NPC evaluates your %s (%d ammo): %0.1f",
given.typeId().str(), new_ammo, new_weapon_value );
if( to_use ) {
diff --git a/src/weather.cpp b/src/weather.cpp
index d9a1f3c0e4f37..784f3544e2e37 100644
--- a/src/weather.cpp
+++ b/src/weather.cpp
@@ -407,7 +407,7 @@ void wet_character( Character &target, int amount )
{
if( amount <= 0 ||
target.has_trait( trait_FEATHERS ) ||
- target.weapon.has_flag( json_flag_RAIN_PROTECT ) ||
+ target.get_wielded_item()->has_flag( json_flag_RAIN_PROTECT ) ||
( !one_in( 50 ) && target.worn_with_flag( json_flag_RAINPROOF ) ) ) {
return;
}
diff --git a/tests/active_item_test.cpp b/tests/active_item_test.cpp
index 2a89e295f5097..1d09b2cce3431 100644
--- a/tests/active_item_test.cpp
+++ b/tests/active_item_test.cpp
@@ -30,7 +30,7 @@ TEST_CASE( "active_items_processed_regularly", "[item]" )
bool wield_success = player_character.wield( active_item );
REQUIRE( wield_success );
- REQUIRE( player_character.weapon.charges == active_item_ticks );
+ REQUIRE( player_character.get_wielded_item()->charges == active_item_ticks );
here.add_item( player_character.pos(), active_item );
REQUIRE( here.i_at( player_character.pos() ).only_item().charges == active_item_ticks );
@@ -42,6 +42,6 @@ TEST_CASE( "active_items_processed_regularly", "[item]" )
const int expected_ticks = active_item_ticks - 1;
CHECK( inventory_item->charges == expected_ticks );
- CHECK( player_character.weapon.charges == expected_ticks );
+ CHECK( player_character.get_wielded_item()->charges == expected_ticks );
CHECK( here.i_at( player_character.pos() ).only_item().charges == expected_ticks );
}
diff --git a/tests/char_suffer_test.cpp b/tests/char_suffer_test.cpp
index ceba9cc43c70d..de00129886a23 100644
--- a/tests/char_suffer_test.cpp
+++ b/tests/char_suffer_test.cpp
@@ -140,7 +140,7 @@ TEST_CASE( "suffering from albinism", "[char][suffer][albino]" )
WHEN( "wielding an umbrella and wearing sunglasses" ) {
dummy.wield( umbrella );
- REQUIRE( dummy.weapon.has_flag( flag_RAIN_PROTECT ) );
+ REQUIRE( dummy.get_wielded_item()->has_flag( flag_RAIN_PROTECT ) );
dummy.wear_item( shades, false );
REQUIRE( dummy.worn_with_flag( flag_SUN_GLASSES ) );
@@ -240,7 +240,7 @@ TEST_CASE( "suffering from sunburn", "[char][suffer][sunburn]" )
WHEN( "naked and wielding an umbrella, with or without sunglasses" ) {
dummy.worn.clear();
dummy.wield( umbrella );
- REQUIRE( dummy.weapon.has_flag( flag_RAIN_PROTECT ) );
+ REQUIRE( dummy.get_wielded_item()->has_flag( flag_RAIN_PROTECT ) );
// Umbrella completely shields the skin from exposure when wielded
THEN( "they suffer no injury" ) {
diff --git a/tests/crafting_test.cpp b/tests/crafting_test.cpp
index 9d57ff67fc52a..0614ffa21259a 100644
--- a/tests/crafting_test.cpp
+++ b/tests/crafting_test.cpp
@@ -646,18 +646,20 @@ static void verify_inventory( const std::vector &has,
for( const item *i : player_character.inv_dump() ) {
os << " " << i->typeId().str() << " (" << i->charges << ")\n";
}
- os << "Wielded:\n" << player_character.weapon.tname() << "\n";
+ os << "Wielded:\n" << player_character.get_wielded_item()->tname() << "\n";
INFO( os.str() );
for( const std::string &i : has ) {
INFO( "expecting " << i );
const bool has_item =
- player_has_item_of_type( i ) || player_character.weapon.type->get_id() == itype_id( i );
+ player_has_item_of_type( i ) ||
+ player_character.get_wielded_item()->type->get_id() == itype_id( i );
REQUIRE( has_item );
}
for( const std::string &i : hasnt ) {
INFO( "not expecting " << i );
const bool hasnt_item =
- !player_has_item_of_type( i ) && !( player_character.weapon.type->get_id() == itype_id( i ) );
+ !player_has_item_of_type( i ) &&
+ !( player_character.get_wielded_item()->type->get_id() == itype_id( i ) );
REQUIRE( hasnt_item );
}
}
diff --git a/tests/effect_test.cpp b/tests/effect_test.cpp
index 7b692eafc458f..8eabc17412c28 100644
--- a/tests/effect_test.cpp
+++ b/tests/effect_test.cpp
@@ -148,11 +148,11 @@ TEST_CASE( "effect intensity", "[effect][intensity]" )
REQUIRE( eff_debugged.get_intensity() == 1 );
REQUIRE( eff_debugged.get_max_intensity() == 10 );
- SECTION( "intensity cannot be set less than 1" ) {
+ SECTION( "intensity cannot be set less than 0" ) {
eff_debugged.set_intensity( 0 );
- CHECK( eff_debugged.get_intensity() == 1 );
+ CHECK( eff_debugged.get_intensity() == 0 );
eff_debugged.set_intensity( -1 );
- CHECK( eff_debugged.get_intensity() == 1 );
+ CHECK( eff_debugged.get_intensity() == 0 );
}
SECTION( "intensity cannot be set greater than maximum" ) {
@@ -166,6 +166,24 @@ TEST_CASE( "effect intensity", "[effect][intensity]" )
}
}
+TEST_CASE( "effect intensity removal", "[effect][intensity]" )
+{
+
+ const efftype_id eff_id( "test_int_remove" );
+ effect eff_test_int_remove( effect_source::empty(), &eff_id.obj(), 3_turns,
+ bodypart_str_id( "bp_null" ),
+ false, 1, calendar::turn );
+
+ REQUIRE( eff_test_int_remove.get_intensity() == 1 );
+ REQUIRE( eff_test_int_remove.get_int_decay_remove() == false );
+
+ SECTION( "effects protected from intensity-based removal can't be set to less than 1 intensity" ) {
+ eff_test_int_remove.set_intensity( 0 );
+ CHECK( eff_test_int_remove.get_intensity() == 1 );
+ }
+
+}
+
TEST_CASE( "max effective intensity", "[effect][max][intensity]" )
{
const efftype_id eff_id( "max_effected" );
@@ -210,13 +228,14 @@ TEST_CASE( "max effective intensity", "[effect][max][intensity]" )
TEST_CASE( "effect decay", "[effect][decay]" )
{
const efftype_id eff_id( "debugged" );
+ const efftype_id eff_id2( "test_int_remove" );
std::vector rem_ids;
std::vector rem_bps;
- SECTION( "decay reduces effect duration by 1 turn" ) {
+ SECTION( "decay reduces effect duration by 1 turn and triggers intensity decay" ) {
effect eff_debugged( effect_source::empty(), &eff_id.obj(), 2_turns, bodypart_str_id( "bp_null" ),
- false, 1, calendar::turn );
+ false, 5, calendar::turn );
// Ensure it will last 2 turns, and is not permanent/paused
REQUIRE( to_turns( eff_debugged.get_duration() ) == 2 );
REQUIRE_FALSE( eff_debugged.is_permanent() );
@@ -260,13 +279,123 @@ TEST_CASE( "effect decay", "[effect][decay]" )
CHECK( to_turns( eff_debugged.get_duration() ) == 2 );
}
- // TODO:
- // When intensity > 1
- // - and duration < max_duration
- // - and int_decay_tick is set (from effect JSON)
- // - and time % decay_tick == 0
- // Then:
- // - add int_decay_step to intensity (default -1)
+ SECTION( "intensity decay triggers on the appropriate turns" ) {
+ effect eff_debugged( effect_source::empty(), &eff_id.obj(), 1_hours, bodypart_str_id( "bp_null" ),
+ false, 10, calendar::turn );
+ // Ensure it has a decay tick of 2 turns and a decay step of -1, and int removal is allwed
+ // Also check max duration
+ REQUIRE( eff_debugged.get_max_duration() == 1_hours );
+ REQUIRE( eff_debugged.get_intensity() == 10 );
+ REQUIRE( eff_debugged.get_int_decay_step() == -1 );
+ REQUIRE( eff_debugged.get_int_decay_tick() == 2 );
+ REQUIRE( eff_debugged.get_int_decay_remove() == true );
+ // Reset time
+ calendar::turn = calendar::start_of_cataclysm;
+
+ // First decay - at max duration, no intensity decay
+ CHECK( eff_debugged.get_duration() == eff_debugged.get_max_duration() );
+ eff_debugged.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( eff_debugged.get_intensity() == 10 );
+ // Effect not removed
+ CHECK( rem_ids.empty() );
+ CHECK( rem_bps.empty() );
+
+ // Progress turns, checking for the appropriate intensity and no removal
+
+ // Turn 1, no intensity change
+ calendar::turn += 1_turns;
+ eff_debugged.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( eff_debugged.get_intensity() == 10 );
+ // Effect not removed
+ CHECK( rem_ids.empty() );
+ CHECK( rem_bps.empty() );
+
+ // Turn 2, intensity decays
+ calendar::turn += 1_turns;
+ eff_debugged.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( eff_debugged.get_intensity() == 9 );
+ // Effect not removed
+ CHECK( rem_ids.empty() );
+ CHECK( rem_bps.empty() );
+
+ // Turn 3, no intensity change
+ calendar::turn += 1_turns;
+ eff_debugged.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( eff_debugged.get_intensity() == 9 );
+ // Effect not removed
+ CHECK( rem_ids.empty() );
+ CHECK( rem_bps.empty() );
+
+ // Skip the intermediate levels, set intensity to 1 manually before proceeding
+ eff_debugged.set_intensity( 1 );
+ calendar::turn += 1_turns;
+ eff_debugged.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( eff_debugged.get_intensity() == 0 );
+ // Effect is removed
+ CHECK( rem_ids.size() == 1 );
+ CHECK( rem_bps.size() == 1 );
+ // Effect ID and body part are pushed to the arrays
+ REQUIRE( !rem_ids.empty() );
+ CHECK( rem_ids.front() == eff_debugged.get_id() );
+ REQUIRE( !rem_ids.empty() );
+ CHECK( rem_bps.front() == bodypart_id( "bp_null" ) );
+
+ }
+
+ SECTION( "int_decay_remove == false protects an effect from removal" ) {
+ effect eff_test_int_remove( effect_source::empty(), &eff_id2.obj(), 3_turns,
+ bodypart_str_id( "bp_null" ),
+ false, 3, calendar::turn );
+ // Ensure it has the -2 int decay step, is protected from removal and has a decay tick of 1
+ REQUIRE( eff_test_int_remove.get_int_decay_step() == -2 );
+ REQUIRE( eff_test_int_remove.get_int_decay_tick() == 1 );
+ REQUIRE( eff_test_int_remove.get_int_decay_remove() == false );
+ // Ensure it will last 3 turns, and is not permanent/paused
+ REQUIRE( to_turns( eff_test_int_remove.get_duration() ) == 3 );
+ REQUIRE_FALSE( eff_test_int_remove.is_permanent() );
+
+ // First decay - 2 turns left, intensity decay procs
+ eff_test_int_remove.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( to_turns( eff_test_int_remove.get_duration() ) == 2 );
+ CHECK( eff_test_int_remove.get_intensity() == 1 );
+ // Effect not removed
+ CHECK( rem_ids.empty() );
+ CHECK( rem_bps.empty() );
+
+ // Second decay - 1 turns left, intensity stays 1 (but wouldn't proc anyway)
+ calendar::turn += 1_turns;
+ eff_test_int_remove.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( to_turns( eff_test_int_remove.get_duration() ) == 1 );
+ CHECK( eff_test_int_remove.get_intensity() == 1 );
+ // Effect not removed
+ CHECK( rem_ids.empty() );
+ CHECK( rem_bps.empty() );
+
+ // Third decay - 0 turn left, intensity decay procs but intensity is capped to 1
+ calendar::turn += 1_turns;
+ eff_test_int_remove.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( to_turns( eff_test_int_remove.get_duration() ) == 0 );
+ CHECK( eff_test_int_remove.get_intensity() == 1 );
+ // Effect not removed
+ CHECK( rem_ids.empty() );
+ CHECK( rem_bps.empty() );
+
+ // Fourth decay - 0 turns left, intensity stays 1 (but wouldn't proc anyway)
+ calendar::turn += 1_turns;
+ eff_test_int_remove.decay( rem_ids, rem_bps, calendar::turn, false );
+ CHECK( to_turns( eff_test_int_remove.get_duration() ) == 0 );
+ CHECK( eff_test_int_remove.get_intensity() == 1 );
+ // Effect is removed
+ CHECK( rem_ids.size() == 1 );
+ CHECK( rem_bps.size() == 1 );
+ // Effect ID and body part are pushed to the arrays
+ REQUIRE( !rem_ids.empty() );
+ CHECK( rem_ids.front() == eff_test_int_remove.get_id() );
+ REQUIRE( !rem_ids.empty() );
+ CHECK( rem_bps.front() == bodypart_id( "bp_null" ) );
+
+
+ }
}
// Effect description
diff --git a/tests/invlet_test.cpp b/tests/invlet_test.cpp
index 4b1e05a9b1088..0ec2b8656c713 100644
--- a/tests/invlet_test.cpp
+++ b/tests/invlet_test.cpp
@@ -359,7 +359,7 @@ static void move_item( Character &you, const int id, const inventory_location fr
wear_from_feet( you, id );
break;
case WIELDED_OR_WORN:
- if( you.weapon.is_null() ) {
+ if( you.get_wielded_item()->is_null() ) {
wield_from_feet( you, id );
} else {
// since we can only wield one item, wear the item instead
@@ -381,7 +381,7 @@ static void move_item( Character &you, const int id, const inventory_location fr
you.wear( item_location( *you.as_character(), &item_at( you, id, from ) ), false );
break;
case WIELDED_OR_WORN:
- if( you.weapon.is_null() ) {
+ if( you.get_wielded_item()->is_null() ) {
you.wield( item_at( you, id, from ) );
} else {
// since we can only wield one item, wear the item instead
diff --git a/tests/item_test.cpp b/tests/item_test.cpp
index 0edd02630deb3..dc84715a5617e 100644
--- a/tests/item_test.cpp
+++ b/tests/item_test.cpp
@@ -512,7 +512,7 @@ TEST_CASE( "water affect items while swimming check", "[item][water][swimming]"
THEN( "should get wet from water" ) {
g->water_affect_items( guy );
- CHECK( guy.weapon.wetness > 0 );
+ CHECK( guy.get_wielded_item()->wetness > 0 );
}
}
@@ -529,7 +529,7 @@ TEST_CASE( "water affect items while swimming check", "[item][water][swimming]"
THEN( "should get wet from water" ) {
g->water_affect_items( guy );
- const item *test_item = guy.weapon.all_items_top().front();
+ const item *test_item = guy.get_wielded_item()->all_items_top().front();
REQUIRE( test_item->typeId() == itype_test_mp3 );
CHECK( test_item->wetness > 0 );
}
@@ -548,7 +548,7 @@ TEST_CASE( "water affect items while swimming check", "[item][water][swimming]"
THEN( "should not be broken by water" ) {
g->water_affect_items( guy );
- const item *test_item = guy.weapon.all_items_top().front();
+ const item *test_item = guy.get_wielded_item()->all_items_top().front();
REQUIRE( test_item->typeId() == itype_test_mp3 );
CHECK( test_item->wetness == 0 );
}
@@ -569,7 +569,7 @@ TEST_CASE( "water affect items while swimming check", "[item][water][swimming]"
THEN( "should get wet from water" ) {
g->water_affect_items( guy );
- const item *test_item = guy.weapon.all_items_top().front()->all_items_top().front();
+ const item *test_item = guy.get_wielded_item()->all_items_top().front()->all_items_top().front();
REQUIRE( test_item->typeId() == itype_test_mp3 );
CHECK( test_item->wetness > 0 );
}
@@ -590,7 +590,7 @@ TEST_CASE( "water affect items while swimming check", "[item][water][swimming]"
THEN( "should not be broken by water" ) {
g->water_affect_items( guy );
- const item *test_item = guy.weapon.all_items_top().front()->all_items_top().front();
+ const item *test_item = guy.get_wielded_item()->all_items_top().front()->all_items_top().front();
REQUIRE( test_item->typeId() == itype_test_mp3 );
CHECK( test_item->wetness == 0 );
}
@@ -606,7 +606,7 @@ TEST_CASE( "water affect items while swimming check", "[item][water][swimming]"
THEN( "should be wet for around 8664 seconds" ) {
g->water_affect_items( guy );
- CHECK( guy.weapon.wetness == Approx( 8664 ).margin( 20 ) );
+ CHECK( guy.get_wielded_item()->wetness == Approx( 8664 ).margin( 20 ) );
}
}
@@ -625,7 +625,7 @@ TEST_CASE( "water affect items while swimming check", "[item][water][swimming]"
g->water_affect_items( guy );
g->water_affect_items( guy );
AND_THEN( "should be wet for around 43320 seconds" ) {
- CHECK( guy.weapon.wetness == Approx( 43320 ).margin( 100 ) );
+ CHECK( guy.get_wielded_item()->wetness == Approx( 43320 ).margin( 100 ) );
}
}
}
diff --git a/tests/melee_test.cpp b/tests/melee_test.cpp
index ce3732dea9a86..bb0dd4d74ef6c 100644
--- a/tests/melee_test.cpp
+++ b/tests/melee_test.cpp
@@ -45,7 +45,7 @@ static std::string full_attack_details( const Character &dude )
ss << "Details for " << dude.disp_name() << std::endl;
ss << "get_hit() == " << dude.get_hit() << std::endl;
ss << "get_melee_hit_base() == " << dude.get_melee_hit_base() << std::endl;
- ss << "get_hit_weapon() == " << dude.get_hit_weapon( dude.weapon ) << std::endl;
+ ss << "get_hit_weapon() == " << dude.get_hit_weapon( dude.get_wielded_item() ) << std::endl;
return ss.str();
}
@@ -86,7 +86,7 @@ TEST_CASE( "Character attacking a zombie", "[.melee]" )
SECTION( "8/8/8/8, 3 all skills, plank" ) {
standard_npc dude( "TestCharacter", dude_pos, {}, 3, 8, 8, 8, 8 );
- dude.weapon = item( "2x4" );
+ dude.set_wielded_item( item( "2x4" ) );
const float prob = brute_probability( dude, zed, num_iters );
INFO( full_attack_details( dude ) );
check_near( prob, 0.8f, 0.05f );
@@ -94,7 +94,7 @@ TEST_CASE( "Character attacking a zombie", "[.melee]" )
SECTION( "10/10/10/10, 8 all skills, katana" ) {
standard_npc dude( "TestCharacter", dude_pos, {}, 8, 10, 10, 10, 10 );
- dude.weapon = item( "katana" );
+ dude.set_wielded_item( item( "katana" ) );
const float prob = brute_probability( dude, zed, num_iters );
INFO( full_attack_details( dude ) );
check_near( prob, 0.975f, 0.025f );
@@ -115,7 +115,7 @@ TEST_CASE( "Character attacking a manhack", "[.melee]" )
SECTION( "8/8/8/8, 3 all skills, plank" ) {
standard_npc dude( "TestCharacter", dude_pos, {}, 3, 8, 8, 8, 8 );
- dude.weapon = item( "2x4" );
+ dude.set_wielded_item( item( "2x4" ) );
const float prob = brute_probability( dude, manhack, num_iters );
INFO( full_attack_details( dude ) );
check_near( prob, 0.4f, 0.05f );
@@ -123,7 +123,7 @@ TEST_CASE( "Character attacking a manhack", "[.melee]" )
SECTION( "10/10/10/10, 8 all skills, katana" ) {
standard_npc dude( "TestCharacter", dude_pos, {}, 8, 10, 10, 10, 10 );
- dude.weapon = item( "katana" );
+ dude.set_wielded_item( item( "katana" ) );
const float prob = brute_probability( dude, manhack, num_iters );
INFO( full_attack_details( dude ) );
check_near( prob, 0.7f, 0.05f );
diff --git a/tests/monster_attack_test.cpp b/tests/monster_attack_test.cpp
index dbb31b84d810b..07598ae6721f2 100644
--- a/tests/monster_attack_test.cpp
+++ b/tests/monster_attack_test.cpp
@@ -18,6 +18,7 @@
#include "type_id.h"
#include "weather.h"
#include "weather_type.h"
+#include "game.h"
static constexpr tripoint attacker_location{ 65, 65, 0 };
@@ -25,6 +26,7 @@ static void reset_caches( int a_zlev, int t_zlev )
{
Character &you = get_player_character();
map &here = get_map();
+ g->reset_light_level();
// Why twice? See vision_test.cpp
here.update_visibility_cache( a_zlev );
here.invalidate_map_cache( a_zlev );
@@ -171,32 +173,58 @@ TEST_CASE( "monster_special_attack", "[vision][reachability]" )
TEST_CASE( "monster_throwing_sanity_test", "[throwing],[balance]" )
{
+ float expected_average_damage_at_range[] = { 0, 0, 8.5, 6.5, 5, 3.25 };
clear_map();
+ map &here = get_map();
+ restore_on_out_of_scope restore_calendar_turn( calendar::turn );
+ calendar::turn = sunrise( calendar::turn );
+ scoped_weather_override weather_clear( WEATHER_CLEAR );
const tripoint target_location = { 65, 65, 0 };
- const tripoint attacker_location = { 65, 67, 0 };
// You got a player
Character &you = get_player_character();
clear_avatar();
+ you.dodges_left = 1;
+ REQUIRE( Approx( you.get_dodge() ) == 4.0 );
you.setpos( target_location );
- // and you got a monster
+ const tripoint_abs_ms abs_target_location = you.get_location();
+ reset_caches( target_location.z, target_location.z );
+ REQUIRE( g->natural_light_level( 0 ) > 50.0 );
+ CHECK( here.ambient_light_at( target_location ) > 50.0 );
const std::string monster_type = "mon_feral_human_pipe";
- monster &test_monster = spawn_test_monster( monster_type, attacker_location );
- test_monster.set_dest( you.get_location() );
- const mtype_special_attack &attack = test_monster.type->special_attacks.at( "gun" );
- reset_caches( attacker_location.z, target_location.z );
- statistics damage_dealt;
- do {
- you.set_all_parts_hp_to_max();
- int prev_hp = you.get_hp();
- // monster shoots the player
- REQUIRE( attack->call( test_monster ) == true );
- // how much damage did it do?
- // Player-centric test in throwing_test.cpp ranges from 2 - 8 damage at point-blank range.
- int current_hp = you.get_hp();
- damage_dealt.add( prev_hp - current_hp );
- test_monster.ammo[ itype_id( "rock" ) ]++;
- } while( damage_dealt.n() < 100 );
- INFO( "Avg total damage: " << damage_dealt.avg() );
- INFO( "Dmg Lower: " << damage_dealt.lower() << " Dmg Upper: " << damage_dealt.upper() );
- CHECK( damage_dealt.test_threshold( epsilon_threshold{ 5, 3 } ) );
+ for( int distance = 2; distance <= 5; ++distance ) {
+ float expected_damage = expected_average_damage_at_range[ distance ];
+ // and you got a monster
+ const tripoint attacker_location = target_location + tripoint_east * distance;
+ monster &test_monster = spawn_test_monster( monster_type, attacker_location );
+ test_monster.set_dest( you.get_location() );
+ const mtype_special_attack &attack = test_monster.type->special_attacks.at( "gun" );
+ REQUIRE( test_monster.get_dest() == abs_target_location );
+ REQUIRE( test_monster.sees( target_location ) );
+ Creature *target = test_monster.attack_target();
+ REQUIRE( target );
+ REQUIRE( test_monster.sees( *target ) );
+ REQUIRE( rl_dist( test_monster.pos(), target->pos() ) <= 5 );
+ statistics damage_dealt;
+ statistics hits;
+ do {
+ you.set_all_parts_hp_to_max();
+ you.dodges_left = 1;
+ int prev_hp = you.get_hp();
+ // monster shoots the player
+ REQUIRE( attack->call( test_monster ) == true );
+ // how much damage did it do?
+ // Player-centric test in throwing_test.cpp ranges from 2 - 8 damage at point-blank range.
+ int current_hp = you.get_hp();
+ hits.add( current_hp < prev_hp );
+ damage_dealt.add( prev_hp - current_hp );
+ test_monster.ammo[ itype_id( "rock" ) ]++;
+ } while( damage_dealt.n() < 100 );
+ clear_creatures();
+ CAPTURE( expected_damage );
+ CAPTURE( distance );
+ INFO( "Hit rate: " << hits.avg() );
+ INFO( "Avg total damage: " << damage_dealt.avg() );
+ INFO( "Dmg Lower: " << damage_dealt.lower() << " Dmg Upper: " << damage_dealt.upper() );
+ CHECK( damage_dealt.test_threshold( epsilon_threshold{ expected_damage, 2.5 } ) );
+ }
}
diff --git a/tests/npc_attack_test.cpp b/tests/npc_attack_test.cpp
index 8ae814d5fb9c8..3256d8344fe6e 100644
--- a/tests/npc_attack_test.cpp
+++ b/tests/npc_attack_test.cpp
@@ -65,8 +65,8 @@ TEST_CASE( "NPC faces zombies", "[npc_attack]" )
WHEN( "NPC only has a chef knife" ) {
item weapon( "knife_chef" );
- main_npc.weapon = weapon;
- REQUIRE( main_npc.weapon.typeId() == itype_id( "knife_chef" ) );
+ main_npc.set_wielded_item( weapon );
+ REQUIRE( main_npc.get_wielded_item()->typeId() == itype_id( "knife_chef" ) );
THEN( "NPC attempts to melee the enemy target" ) {
main_npc.evaluate_best_weapon( zombie );
@@ -124,8 +124,8 @@ TEST_CASE( "NPC faces zombies", "[npc_attack]" )
}
WHEN( "NPC only has a bunch of rocks" ) {
item weapon( "rock" );
- main_npc.weapon = weapon;
- REQUIRE( main_npc.weapon.typeId() == itype_id( "rock" ) );
+ main_npc.set_wielded_item( weapon );
+ REQUIRE( main_npc.get_wielded_item()->typeId() == itype_id( "rock" ) );
THEN( "NPC doesn't bother throwing the rocks so close" ) {
main_npc.evaluate_best_weapon( zombie );
@@ -140,8 +140,8 @@ TEST_CASE( "NPC faces zombies", "[npc_attack]" )
WHEN( "NPC only has a chef knife" ) {
item weapon( "knife_chef" );
- main_npc.weapon = weapon;
- REQUIRE( main_npc.weapon.typeId() == itype_id( "knife_chef" ) );
+ main_npc.set_wielded_item( weapon );
+ REQUIRE( main_npc.get_wielded_item()->typeId() == itype_id( "knife_chef" ) );
THEN( "NPC attempts to melee the enemy target" ) {
main_npc.evaluate_best_weapon( zombie );
@@ -157,8 +157,8 @@ TEST_CASE( "NPC faces zombies", "[npc_attack]" )
WHEN( "NPC only has a bunch of rocks" ) {
item weapon( "rock" );
- main_npc.weapon = weapon;
- REQUIRE( main_npc.weapon.typeId() == itype_id( "rock" ) );
+ main_npc.set_wielded_item( weapon );
+ REQUIRE( main_npc.get_wielded_item()->typeId() == itype_id( "rock" ) );
THEN( "NPC throws rocks at the zombie" ) {
main_npc.evaluate_best_weapon( zombie );
@@ -174,8 +174,8 @@ TEST_CASE( "NPC faces zombies", "[npc_attack]" )
WHEN( "NPC only has a chef knife" ) {
item weapon( "knife_chef" );
- main_npc.weapon = weapon;
- REQUIRE( main_npc.weapon.typeId() == itype_id( "knife_chef" ) );
+ main_npc.set_wielded_item( weapon );
+ REQUIRE( main_npc.get_wielded_item()->typeId() == itype_id( "knife_chef" ) );
WHEN( "NPC is targetting closest zombie" ) {
main_npc.evaluate_best_weapon( zombie );
diff --git a/tests/player_activities_test.cpp b/tests/player_activities_test.cpp
index 1916bde400e6a..9922b57f0752f 100644
--- a/tests/player_activities_test.cpp
+++ b/tests/player_activities_test.cpp
@@ -407,8 +407,8 @@ TEST_CASE( "shearing", "[activity][shearing][animals]" )
dummy.process_items();
}
- CHECK( dummy.weapon.ammo_remaining() == 0 );
- REQUIRE( dummy.weapon.typeId().str() == itype_test_shears_off.str() );
+ CHECK( dummy.get_wielded_item()->ammo_remaining() == 0 );
+ REQUIRE( dummy.get_wielded_item()->typeId().str() == itype_test_shears_off.str() );
CHECK( dummy.max_quality( qual_SHEAR ) <= 0 );
@@ -530,9 +530,9 @@ TEST_CASE( "boltcut", "[activity][boltcut]" )
item it_boltcut( itype_test_boltcutter );
dummy.wield( it_boltcut );
- REQUIRE( dummy.weapon.typeId() == itype_test_boltcutter );
+ REQUIRE( dummy.get_wielded_item()->typeId() == itype_test_boltcutter );
- return item_location{dummy, &dummy.weapon};
+ return item_location{dummy, dummy.get_wielded_item()};
};
auto setup_activity = [&dummy]( const item_location & torch ) -> void {
@@ -656,9 +656,9 @@ TEST_CASE( "boltcut", "[activity][boltcut]" )
it_boltcut_elec.put_in( battery, item_pocket::pocket_type::MAGAZINE_WELL );
dummy.wield( it_boltcut_elec );
- REQUIRE( dummy.weapon.typeId() == itype_test_boltcutter_elec );
+ REQUIRE( dummy.get_wielded_item()->typeId() == itype_test_boltcutter_elec );
- item_location boltcutter_elec{dummy, &dummy.weapon};
+ item_location boltcutter_elec{dummy, dummy.get_wielded_item()};
setup_activity( boltcutter_elec );
REQUIRE( dummy.activity.id() == ACT_BOLTCUTTING );
@@ -795,10 +795,10 @@ TEST_CASE( "oxytorch", "[activity][oxytorch]" )
it_welding_torch.ammo_set( itype_oxyacetylene );
dummy.wield( it_welding_torch );
- REQUIRE( dummy.weapon.typeId() == itype_test_oxytorch );
+ REQUIRE( dummy.get_wielded_item()->typeId() == itype_test_oxytorch );
REQUIRE( dummy.max_quality( qual_WELD ) == 10 );
- return item_location{dummy, &dummy.weapon};
+ return item_location{dummy, dummy.get_wielded_item()};
};
auto setup_activity = [&dummy]( const item_location & torch ) -> void {
diff --git a/tests/ranged_balance_test.cpp b/tests/ranged_balance_test.cpp
index 4ca8d40b8d5ac..4c39e8bf499bb 100644
--- a/tests/ranged_balance_test.cpp
+++ b/tests/ranged_balance_test.cpp
@@ -126,7 +126,7 @@ static std::vector firing_test( const dispersion_sources &dis
static dispersion_sources get_dispersion( npc &shooter, const int aim_time )
{
- item &gun = shooter.weapon;
+ item &gun = *shooter.get_wielded_item();
dispersion_sources dispersion = shooter.get_weapon_dispersion( gun );
shooter.moves = aim_time;
@@ -152,8 +152,8 @@ static void test_shooting_scenario( npc &shooter, const int min_quickdraw_range,
} );
INFO( dispersion );
INFO( "Range: " << min_quickdraw_range );
- INFO( "Max aim speed: " << shooter.aim_per_move( shooter.weapon, MAX_RECOIL ) );
- INFO( "Min aim speed: " << shooter.aim_per_move( shooter.weapon, shooter.recoil ) );
+ INFO( "Max aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), MAX_RECOIL ) );
+ INFO( "Min aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), shooter.recoil ) );
CAPTURE( shooter.ranged_dispersion_modifier_hands() );
CAPTURE( minimum_stats[0].n() );
CAPTURE( minimum_stats[0].margin_of_error() );
@@ -168,8 +168,8 @@ static void test_shooting_scenario( npc &shooter, const int min_quickdraw_range,
0.5 ) );
INFO( dispersion );
INFO( "Range: " << min_good_range );
- INFO( "Max aim speed: " << shooter.aim_per_move( shooter.weapon, MAX_RECOIL ) );
- INFO( "Min aim speed: " << shooter.aim_per_move( shooter.weapon, shooter.recoil ) );
+ INFO( "Max aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), MAX_RECOIL ) );
+ INFO( "Min aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), shooter.recoil ) );
CAPTURE( shooter.ranged_dispersion_modifier_hands() );
CAPTURE( good_stats.n() );
CAPTURE( good_stats.margin_of_error() );
@@ -181,8 +181,8 @@ static void test_shooting_scenario( npc &shooter, const int min_quickdraw_range,
0.1 ) );
INFO( dispersion );
INFO( "Range: " << max_good_range );
- INFO( "Max aim speed: " << shooter.aim_per_move( shooter.weapon, MAX_RECOIL ) );
- INFO( "Min aim speed: " << shooter.aim_per_move( shooter.weapon, shooter.recoil ) );
+ INFO( "Max aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), MAX_RECOIL ) );
+ INFO( "Min aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), shooter.recoil ) );
CAPTURE( shooter.ranged_dispersion_modifier_hands() );
CAPTURE( good_stats.n() );
CAPTURE( good_stats.margin_of_error() );
@@ -201,13 +201,13 @@ static void test_fast_shooting( npc &shooter, const int moves, float hit_rate )
Threshold( accuracy_standard, hit_rate_cap ) );
INFO( dispersion );
INFO( "Range: " << fast_shooting_range );
- INFO( "Max aim speed: " << shooter.aim_per_move( shooter.weapon, MAX_RECOIL ) );
- INFO( "Min aim speed: " << shooter.aim_per_move( shooter.weapon, shooter.recoil ) );
+ INFO( "Max aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), MAX_RECOIL ) );
+ INFO( "Min aim speed: " << shooter.aim_per_move( *shooter.get_wielded_item(), shooter.recoil ) );
CAPTURE( shooter.ranged_dispersion_modifier_hands() );
- CAPTURE( shooter.weapon.gun_skill().str() );
- CAPTURE( shooter.get_skill_level( shooter.weapon.gun_skill() ) );
+ CAPTURE( shooter.get_wielded_item()->gun_skill().str() );
+ CAPTURE( shooter.get_skill_level( shooter.get_wielded_item()->gun_skill() ) );
CAPTURE( shooter.get_dex() );
- CAPTURE( to_milliliter( shooter.weapon.volume() ) );
+ CAPTURE( to_milliliter( shooter.get_wielded_item()->volume() ) );
CAPTURE( fast_stats.n() );
CAPTURE( fast_stats.margin_of_error() );
CHECK( fast_stats.avg() > hit_rate );
diff --git a/tests/reloading_test.cpp b/tests/reloading_test.cpp
index 3e91003273f50..bc6994b847b89 100644
--- a/tests/reloading_test.cpp
+++ b/tests/reloading_test.cpp
@@ -137,19 +137,19 @@ static void reload_a_revolver( Character &dummy, item &gun, item &ammo )
if( !dummy.is_wielding( gun ) ) {
if( dummy.has_weapon() ) {
// to avoid dispose_option in player::unwield()
- dummy.i_add( dummy.weapon );
+ dummy.i_add( *dummy.get_wielded_item() );
dummy.remove_weapon();
}
dummy.wield( gun );
}
- while( dummy.weapon.remaining_ammo_capacity() > 0 ) {
+ while( dummy.get_wielded_item()->remaining_ammo_capacity() > 0 ) {
g->reload_weapon( false );
REQUIRE( dummy.activity );
process_activity( dummy );
- CAPTURE( dummy.weapon.typeId() );
+ CAPTURE( dummy.get_wielded_item()->typeId() );
CAPTURE( ammo.typeId() );
- CHECK( !dummy.weapon.empty() );
- CHECK( dummy.weapon.ammo_current() == ammo.type->get_id() );
+ CHECK( !dummy.get_wielded_item()->empty() );
+ CHECK( dummy.get_wielded_item()->ammo_current() == ammo.type->get_id() );
}
}
@@ -175,12 +175,12 @@ TEST_CASE( "automatic_reloading_action", "[reload],[gun]" )
item &ammo = dummy.i_add( item( "40sw", calendar::turn_zero, 100 ) );
REQUIRE( ammo.is_ammo() );
- dummy.weapon = item( "sw_610", calendar::turn_zero, 0 );
- REQUIRE( dummy.weapon.ammo_remaining() == 0 );
- REQUIRE( dummy.weapon.can_reload_with( ammo.type->get_id() ) );
+ dummy.set_wielded_item( item( "sw_610", calendar::turn_zero, 0 ) );
+ REQUIRE( dummy.get_wielded_item()->ammo_remaining() == 0 );
+ REQUIRE( dummy.get_wielded_item()->can_reload_with( ammo.type->get_id() ) );
WHEN( "the player triggers auto reload until the revolver is full" ) {
- reload_a_revolver( dummy, dummy.weapon, ammo );
+ reload_a_revolver( dummy, *dummy.get_wielded_item(), ammo );
WHEN( "the player triggers auto reload again" ) {
g->reload_weapon( false );
THEN( "no activity is generated" ) {
@@ -193,7 +193,7 @@ TEST_CASE( "automatic_reloading_action", "[reload],[gun]" )
REQUIRE( gun2.ammo_remaining() == 0 );
REQUIRE( gun2.can_reload_with( ammo.type->get_id() ) );
WHEN( "the player triggers auto reload until the first revolver is full" ) {
- reload_a_revolver( dummy, dummy.weapon, ammo );
+ reload_a_revolver( dummy, *dummy.get_wielded_item(), ammo );
WHEN( "the player triggers auto reload until the second revolver is full" ) {
reload_a_revolver( dummy, gun2, ammo );
WHEN( "the player triggers auto reload again" ) {
@@ -220,8 +220,8 @@ TEST_CASE( "automatic_reloading_action", "[reload],[gun]" )
REQUIRE( magazine_type->type.count( ammo_type->type ) != 0 );
REQUIRE( mag.ammo_remaining() == 0 );
- dummy.weapon = item( "glock_19", calendar::turn_zero, 0 );
- REQUIRE( dummy.weapon.ammo_remaining() == 0 );
+ dummy.set_wielded_item( item( "glock_19", calendar::turn_zero, 0 ) );
+ REQUIRE( dummy.get_wielded_item()->ammo_remaining() == 0 );
WHEN( "the player triggers auto reload" ) {
g->reload_weapon( false );
@@ -242,7 +242,7 @@ TEST_CASE( "automatic_reloading_action", "[reload],[gun]" )
process_activity( dummy );
THEN( "The magazine is loaded into the gun" ) {
- CHECK( dummy.weapon.ammo_remaining() > 0 );
+ CHECK( dummy.get_wielded_item()->ammo_remaining() > 0 );
}
WHEN( "the player triggers auto reload again" ) {
g->reload_weapon( false );
@@ -278,7 +278,7 @@ TEST_CASE( "automatic_reloading_action", "[reload],[gun]" )
process_activity( dummy );
THEN( "The magazine is loaded into the gun" ) {
- CHECK( dummy.weapon.ammo_remaining() > 0 );
+ CHECK( dummy.get_wielded_item()->ammo_remaining() > 0 );
}
WHEN( "the player triggers auto reload again" ) {
g->reload_weapon( false );
@@ -326,42 +326,42 @@ TEST_CASE( "reload_liquid_container", "[reload],[liquid]" )
g->reload_wielded();
REQUIRE( dummy.activity );
process_activity( dummy );
- CHECK( dummy.weapon.total_contained_volume() == ammo_volume );
+ CHECK( dummy.get_wielded_item()->total_contained_volume() == ammo_volume );
CHECK( ammo_jug.total_contained_volume() == units::volume() );
}
SECTION( "reload liquid into partially filled container with same type liquid" ) {
item water_one( "water_clean", calendar::turn_zero, 1 );
units::volume initial_volume = water_one.volume();
- dummy.weapon.put_in( water_one, item_pocket::pocket_type::CONTAINER );
+ dummy.get_wielded_item()->put_in( water_one, item_pocket::pocket_type::CONTAINER );
g->reload_wielded();
REQUIRE( dummy.activity );
process_activity( dummy );
- CHECK( dummy.weapon.total_contained_volume() == ammo_volume + initial_volume );
+ CHECK( dummy.get_wielded_item()->total_contained_volume() == ammo_volume + initial_volume );
CHECK( ammo_jug.total_contained_volume() == units::volume() );
}
SECTION( "reload liquid into partially filled container with different type liquid" ) {
item milk_one( "milk", calendar::turn_zero, 1 );
units::volume initial_volume = milk_one.volume();
- dummy.weapon.put_in( milk_one, item_pocket::pocket_type::CONTAINER );
+ dummy.get_wielded_item()->put_in( milk_one, item_pocket::pocket_type::CONTAINER );
g->reload_wielded();
if( !!dummy.activity ) {
process_activity( dummy );
}
- CHECK( dummy.weapon.total_contained_volume() == initial_volume );
+ CHECK( dummy.get_wielded_item()->total_contained_volume() == initial_volume );
CHECK( ammo_jug.total_contained_volume() == ammo_volume );
}
SECTION( "reload liquid into container containing a non-liquid" ) {
item pebble( "pebble", calendar::turn_zero, 1 );
units::volume initial_volume = pebble.volume();
- dummy.weapon.put_in( pebble, item_pocket::pocket_type::CONTAINER );
+ dummy.get_wielded_item()->put_in( pebble, item_pocket::pocket_type::CONTAINER );
g->reload_wielded();
if( !!dummy.activity ) {
process_activity( dummy );
}
- CHECK( dummy.weapon.total_contained_volume() == initial_volume );
+ CHECK( dummy.get_wielded_item()->total_contained_volume() == initial_volume );
CHECK( ammo_jug.total_contained_volume() == ammo_volume );
}
@@ -371,9 +371,10 @@ TEST_CASE( "reload_liquid_container", "[reload],[liquid]" )
g->reload_wielded();
REQUIRE( dummy.activity );
process_activity( dummy );
- CHECK( dummy.weapon.get_total_capacity() == dummy.weapon.total_contained_volume() );
+ CHECK( dummy.get_wielded_item()->get_total_capacity() ==
+ dummy.get_wielded_item()->total_contained_volume() );
CHECK( ammo_jug.total_contained_volume() +
- dummy.weapon.total_contained_volume() == ammo_volume );
+ dummy.get_wielded_item()->total_contained_volume() == ammo_volume );
}
SECTION( "liquid reload from map" ) {
@@ -389,7 +390,7 @@ TEST_CASE( "reload_liquid_container", "[reload],[liquid]" )
g->reload_wielded();
REQUIRE( dummy.activity );
process_activity( dummy );
- CHECK( dummy.weapon.total_contained_volume() == ammo_volume );
+ CHECK( dummy.get_wielded_item()->total_contained_volume() == ammo_volume );
CHECK( ammo_jug.total_contained_volume() == units::volume() );
}
@@ -400,7 +401,7 @@ TEST_CASE( "reload_liquid_container", "[reload],[liquid]" )
process_activity( dummy );
}
CHECK( ammo_jug.total_contained_volume() == units::volume() );
- CHECK( dummy.weapon.total_contained_volume() == units::volume() );
+ CHECK( dummy.get_wielded_item()->total_contained_volume() == units::volume() );
}
}
}
diff --git a/tests/unload_naked_test.cpp b/tests/unload_naked_test.cpp
index b90dfe999abad..4a7192e85830e 100644
--- a/tests/unload_naked_test.cpp
+++ b/tests/unload_naked_test.cpp
@@ -34,16 +34,16 @@ TEST_CASE( "unload_revolver_naked_one_bullet", "[unload][nonmagzine]" )
REQUIRE( player_character.wield( revolver ) );
REQUIRE( player_character.is_armed( ) );
- CHECK( player_character.weapon.ammo_remaining() == 1 );
+ CHECK( player_character.get_wielded_item()->ammo_remaining() == 1 );
// Unload weapon
- item_location revo_loc( dummy, &player_character.weapon );
+ item_location revo_loc( dummy, player_character.get_wielded_item() );
player_character.moves = 100;
REQUIRE( player_character.unload( revo_loc ) );
player_character.activity.do_turn( player_character );
// No bullets in wielded gun
- CHECK( player_character.weapon.ammo_remaining() == 0 );
+ CHECK( player_character.get_wielded_item()->ammo_remaining() == 0 );
// No bullets in inventory
const std::vector
- bullets = dummy.items_with( []( const item & item ) {
@@ -69,16 +69,16 @@ TEST_CASE( "unload_revolver_naked_fully_loaded", "[unload][nonmagzine]" )
REQUIRE( player_character.wield( revolver ) );
REQUIRE( player_character.is_armed( ) );
- CHECK( player_character.weapon.remaining_ammo_capacity() == 0 );
+ CHECK( player_character.get_wielded_item()->remaining_ammo_capacity() == 0 );
// Unload weapon
- item_location revo_loc( dummy, &player_character.weapon );
+ item_location revo_loc( dummy, player_character.get_wielded_item() );
player_character.moves = 100;
REQUIRE( player_character.unload( revo_loc ) );
player_character.activity.do_turn( player_character );
// No bullets in wielded gun
- CHECK( player_character.weapon.ammo_remaining() == 0 );
+ CHECK( player_character.get_wielded_item()->ammo_remaining() == 0 );
// No bullets in inventory
const std::vector
- bullets = dummy.items_with( []( const item & item ) {
diff --git a/tests/unseal_and_spill_test.cpp b/tests/unseal_and_spill_test.cpp
index 6a2e992a8b96b..9cf9a489a8f40 100644
--- a/tests/unseal_and_spill_test.cpp
+++ b/tests/unseal_and_spill_test.cpp
@@ -423,7 +423,7 @@ void test_scenario::run()
}
case container_location::wielded: {
REQUIRE( guy.wield( it ) );
- it_loc = item_location( guy, &guy.weapon );
+ it_loc = item_location( guy, guy.get_wielded_item() );
break;
}
case container_location::vehicle: {
@@ -449,7 +449,7 @@ void test_scenario::run()
return;
}
}
- if( guy.weapon.is_null() ) {
+ if( guy.get_wielded_item()->is_null() ) {
// so the guy does not wield spilled solid items
item rag( test_rag );
REQUIRE( guy.wield( rag ) );
@@ -864,7 +864,7 @@ void test_scenario::run()
match( guy, guy.worn, worn_results );
INFO( "checking wielded item" );
if( wielded_results ) {
- match( item_location( guy, &guy.weapon ), *wielded_results );
+ match( item_location( guy, guy.get_wielded_item() ), *wielded_results );
} else {
REQUIRE( !guy.is_armed() );
}
diff --git a/tests/vehicle_part_test.cpp b/tests/vehicle_part_test.cpp
index 610bd86dfca12..017fc5b955614 100644
--- a/tests/vehicle_part_test.cpp
+++ b/tests/vehicle_part_test.cpp
@@ -180,7 +180,7 @@ static void test_craft_via_rig( const std::vector
- &items, int give_battery
character.activity.do_turn( character );
}
- REQUIRE( character.weapon.type->get_id() == recipe.result() );
+ REQUIRE( character.get_wielded_item()->type->get_id() == recipe.result() );
} else {
REQUIRE_FALSE( can_craft );
}
diff --git a/tests/visitable_remove_test.cpp b/tests/visitable_remove_test.cpp
index 48e8633d28b36..26c08edf630d0 100644
--- a/tests/visitable_remove_test.cpp
+++ b/tests/visitable_remove_test.cpp
@@ -147,7 +147,7 @@ TEST_CASE( "visitable_remove", "[visitable]" )
WHEN( "one of the bottles is wielded" ) {
p.wield( p.worn.front().legacy_front() );
- REQUIRE( p.weapon.typeId() == container_id );
+ REQUIRE( p.get_wielded_item()->typeId() == container_id );
REQUIRE( count_items( p, container_id ) == count );
REQUIRE( count_items( p, liquid_id ) == count );
@@ -163,7 +163,7 @@ TEST_CASE( "visitable_remove", "[visitable]" )
REQUIRE( count_items( p, liquid_id ) == 0 );
}
THEN( "there is no currently wielded item" ) {
- REQUIRE( p.weapon.is_null() );
+ REQUIRE( p.get_wielded_item()->is_null() );
}
THEN( "the correct number of items were removed" ) {
REQUIRE( del.size() == count );
@@ -189,11 +189,11 @@ TEST_CASE( "visitable_remove", "[visitable]" )
THEN( "there is only one bottle remaining in the players possession" ) {
REQUIRE( count_items( p, container_id ) == 1 );
AND_THEN( "the remaining bottle is currently wielded" ) {
- REQUIRE( p.weapon.typeId() == container_id );
+ REQUIRE( p.get_wielded_item()->typeId() == container_id );
AND_THEN( "the remaining water is contained by the currently wielded bottle" ) {
- REQUIRE( p.weapon.num_item_stacks() == 1 );
- REQUIRE( p.weapon.has_item_with( has_liquid_filter ) );
+ REQUIRE( p.get_wielded_item()->num_item_stacks() == 1 );
+ REQUIRE( p.get_wielded_item()->has_item_with( has_liquid_filter ) );
}
}
}
diff --git a/tests/weakpoint_test.cpp b/tests/weakpoint_test.cpp
new file mode 100644
index 0000000000000..d9ac2bec75164
--- /dev/null
+++ b/tests/weakpoint_test.cpp
@@ -0,0 +1,97 @@
+#include
+
+#include "cata_catch.h"
+#include "damage.h"
+#include "game_constants.h"
+#include "monster.h"
+#include "point.h"
+#include "type_id.h"
+
+struct weakpoint_report_item {
+ std::string weakpoint;
+ int totaldamage;
+ int hits;
+ weakpoint_report_item( std::string wp, int dam ) : weakpoint{ wp }, totaldamage{ dam }, hits{ 1 } { }
+ weakpoint_report_item() : weakpoint_report_item( "", 0 ) { }
+};
+
+struct weakpoint_report {
+ int hits;
+ std::map items;
+
+ void Accumulate( dealt_damage_instance dd ) {
+ if( items.find( dd.wp_hit ) == items.end() ) {
+ items[dd.wp_hit] = weakpoint_report_item( dd.wp_hit, dd.total_damage() );
+ } else {
+ items[dd.wp_hit].hits += 1;
+ items[dd.wp_hit].totaldamage += dd.total_damage();
+ }
+ hits += 1;
+ }
+
+ float PercHits( std::string wp ) {
+ if( items.find( wp ) == items.end() || hits == 0 ) {
+ return 0.0f;
+ } else {
+ return static_cast( items[wp].hits ) / static_cast( hits );
+ }
+ }
+
+ float AveDam( std::string wp ) {
+ if( items.find( wp ) == items.end() ) {
+ return 0.0f;
+ } else {
+ return static_cast( items[wp].totaldamage ) / static_cast( items[wp].hits );
+ }
+ }
+
+ void Reset() {
+ hits = 0;
+ items.clear();
+ }
+};
+
+static weakpoint_report damage_monster( const std::string &target_type, const damage_instance &dam,
+ int attacks )
+{
+ weakpoint_report ret{};
+ for( int i = 0; i < attacks; i++ ) {
+ monster target{ mtype_id( target_type ), tripoint_zero };
+ ret.Accumulate( target.deal_damage( nullptr, bodypart_id( "torso" ), dam ) );
+ }
+
+ return ret;
+}
+
+TEST_CASE( "monster_weakpoint", "[monster]" )
+{
+ // Debug Monster has two weakpoints at 25% each, one leaves 0 armor the other 25 bullet armor, down from 100 bullet armor
+ weakpoint_report wr1 = damage_monster( "debug_mon", damage_instance( damage_type::BULLET, 100.0f,
+ 0.0f ), 1000 );
+ CHECK( wr1.PercHits( "the knee" ) == Approx( 0.25f ).epsilon( 0.20f ) );
+ CHECK( wr1.AveDam( "the knee" ) == Approx( 75.0f ).epsilon( 0.20f ) ); // 25 armor
+ CHECK( wr1.PercHits( "the bugs" ) == Approx( 0.25f ).epsilon( 0.20f ) );
+ CHECK( wr1.AveDam( "the bugs" ) == Approx( 100.0f ).epsilon( 0.20f ) ); // No armor
+ CHECK( wr1.PercHits( "" ) == Approx( 0.50f ).epsilon( 0.20f ) );
+ CHECK( wr1.AveDam( "" ) == Approx( 0.0f ).epsilon( 0.20f ) ); // Full 100 armor
+
+ // With 25 ap, adjust no weakpoint and the knee damage
+ weakpoint_report wr2 = damage_monster( "debug_mon", damage_instance( damage_type::BULLET, 100.0f,
+ 25.0f ), 1000 );
+ CHECK( wr2.PercHits( "the knee" ) == Approx( 0.25f ).epsilon( 0.20f ) );
+ CHECK( wr2.AveDam( "the knee" ) == Approx( 100.0f ).epsilon( 0.20f ) ); // 25 armor with 25 ap
+ CHECK( wr2.PercHits( "the bugs" ) == Approx( 0.25f ).epsilon( 0.20f ) );
+ CHECK( wr2.AveDam( "the bugs" ) == Approx( 100.0f ).epsilon( 0.20f ) ); // No armor with 25 ap
+ CHECK( wr2.PercHits( "" ) == Approx( 0.50f ).epsilon( 0.20f ) );
+ CHECK( wr2.AveDam( "" ) == Approx( 25.0f ).epsilon( 0.20f ) ); // Full 100 armor with 25 ap
+
+ // No cut armor
+ weakpoint_report wr3 = damage_monster( "debug_mon", damage_instance( damage_type::CUT, 100.0f,
+ 0.0f ), 1000 );
+ CHECK( wr3.PercHits( "the knee" ) == Approx( 0.25f ).epsilon( 0.20f ) );
+ CHECK( wr3.AveDam( "the knee" ) == Approx( 100.0f ).epsilon( 0.20f ) );
+ CHECK( wr3.PercHits( "the bugs" ) == Approx( 0.25f ).epsilon( 0.20f ) );
+ CHECK( wr3.AveDam( "the bugs" ) == Approx( 100.0f ).epsilon( 0.20f ) );
+ CHECK( wr3.PercHits( "" ) == Approx( 0.50f ).epsilon( 0.20f ) );
+ CHECK( wr3.AveDam( "" ) == Approx( 100.0f ).epsilon( 0.20f ) );
+}
diff --git a/tests/wield_times_test.cpp b/tests/wield_times_test.cpp
index 6c31375dd210b..80bd685d3ef8c 100644
--- a/tests/wield_times_test.cpp
+++ b/tests/wield_times_test.cpp
@@ -34,7 +34,7 @@ static void wield_check_from_inv( avatar &guy, const itype_id &item_name, const
guy.set_moves( 1000 );
const int old_moves = guy.moves;
REQUIRE( guy.wield( item_loc ) );
- CAPTURE( guy.weapon.typeId() );
+ CAPTURE( guy.get_wielded_item()->typeId() );
int move_cost = old_moves - guy.moves;
INFO( "Strength:" << guy.get_str() );
diff --git a/tools/gfx_tools/compose.py b/tools/gfx_tools/compose.py
index 1bc767f224219..9b71d04c0dc97 100644
--- a/tools/gfx_tools/compose.py
+++ b/tools/gfx_tools/compose.py
@@ -140,6 +140,7 @@ def __init__(
palette_copies: bool = False,
palette: bool = False,
format_json: bool = False,
+ only_json: bool = False,
) -> None:
self.source_dir = source_dir
self.output_dir = output_dir
@@ -148,6 +149,7 @@ def __init__(
self.palette_copies = palette_copies
self.palette = palette
self.format_json = format_json
+ self.only_json = only_json
self.output_conf_file = None
self.pngnum = 0
@@ -444,7 +446,10 @@ def process_png(self, filepath, filename) -> None:
return
- self.sprites.append(self.load_image(filepath))
+ if not self.tileset.only_json:
+ self.sprites.append(self.load_image(filepath))
+ else:
+ self.sprites.append(None)
self.tileset.pngnum += 1
self.tileset.pngname_to_pngnum[pngname] = self.tileset.pngnum
self.tileset.unreferenced_pngnames[
@@ -517,23 +522,24 @@ def write_composite_png(self) -> bool:
self.tileset.pngnum += self.sheet_width - \
((len(self.sprites) % self.sheet_width) or self.sheet_width)
- if self.sprites:
- sheet_image = Vips.Image.arrayjoin(
- self.sprites, across=self.sheet_width)
+ if self.tileset.only_json:
+ return True
- pngsave_args = PNGSAVE_ARGS
+ sheet_image = Vips.Image.arrayjoin(
+ self.sprites, across=self.sheet_width)
- if self.tileset.palette:
- pngsave_args['palette'] = True
+ pngsave_args = PNGSAVE_ARGS.copy()
- sheet_image.pngsave(self.output, **pngsave_args)
+ if self.tileset.palette:
+ pngsave_args['palette'] = True
- if self.tileset.palette_copies and not self.tileset.palette:
- sheet_image.pngsave(
- self.output + '8', palette=True, **pngsave_args)
+ sheet_image.pngsave(self.output, **pngsave_args)
- return True
- return False
+ if self.tileset.palette_copies and not self.tileset.palette:
+ sheet_image.pngsave(
+ self.output + '8', palette=True, **pngsave_args)
+
+ return True
class TileEntry:
@@ -710,18 +716,25 @@ def append_sprite_index(self, sprite_name: str, entry: list) -> bool:
'--format-json', dest='format_json', action='store_true',
help='Use either CDDA formatter or Python json.tool '
'to format the tile_config.json')
+ arg_parser.add_argument(
+ '--only-json', dest='only_json', action='store_true',
+ help='Only output the tile_config.json')
args_dict = vars(arg_parser.parse_args())
# compose the tileset
try:
tileset_worker = Tileset(
- args_dict.get('source_dir'),
- args_dict.get('output_dir') or args_dict.get('source_dir'),
- args_dict.get('use_all', False),
- args_dict.get('obsolete_fillers', False),
- args_dict.get('palette_copies', False),
- args_dict.get('palette', False),
- args_dict.get('format_json', False),
+ source_dir=args_dict.get('source_dir'),
+ output_dir=(
+ args_dict.get('output_dir') or
+ args_dict.get('source_dir')
+ ),
+ use_all=args_dict.get('use_all', False),
+ obsolete_fillers=args_dict.get('obsolete_fillers', False),
+ palette_copies=args_dict.get('palette_copies', False),
+ palette=args_dict.get('palette', False),
+ format_json=args_dict.get('format_json', False),
+ only_json=args_dict.get('only_json', False),
)
tileset_worker.compose()
except ComposingException as exception: